@charset "UTF-8";
.fv {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10rem;
}
.fv__text1 {
  position: absolute;
  right: clamp(0rem, 22vw, 48rem);
  top: 16rem;
  font-size: 1.6rem;
  color: #af1c1c;
  font-family: "aw-conqueror-didot", serif;
  letter-spacing: 0.1em;
}
.fv__text2 {
  position: absolute;
  right: 42vw;
  top: 280px;
  font-size: 3rem;
  color: #af1c1c;
  transform: rotate(-10deg);
  font-weight: 400;
  font-style: normal;
}
.fv__text2 span {
  font-family: adorn-coronet, sans-serif;
}

.fv__img {
  margin-top: 40rem;
  max-height: 36vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 49% 26%;
     object-position: 49% 26%;
}

.fv__h {
  font-size: clamp(5rem, 13vw, 9rem);
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  white-space: nowrap; /* ←追加！ */
  line-height: 0.8;
}
.fv__h span {
  font-family: "fleur", sans-serif;
  font-weight: 700;
  line-height: 0.4;
}

.bg {
  position: relative;
  background-image: url(../../img/top-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.scrolldown1 {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*全体の高さ*/
  height: 50px;
  z-index: 1;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -25px;
  top: -55px;
  /*テキストの形状*/
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 50px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: -20px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.envelope {
  position: relative;
  width: 300px; /* 好きなサイズに調整 */
  margin: 100px auto;
  transition: transform 0.5s ease;
}

.envelope__image {
  width: 100%;
  height: auto;
  display: block;
}

.envelope__letter-area {
  position: absolute;
  top: 20px; /* 白い部分に合わせて調整 */
  left: 30px; /* 左右マージン調整 */
  right: 30px;
  height: 100px; /* 手紙の白い部分に合わせる */
  cursor: pointer;
  /* 透明だけどhover検知する */
}

@media screen and (max-width: 1023px) {
  .fv__img {
    margin-top: 0;
    max-height: none;
    height: 550px;
    -o-object-position: 58% 70%;
       object-position: 58% 70%;
    height: 100vh;
  }
  .fv {
    padding-top: 0rem;
  }
  .fv__h {
    text-align: right;
    color: #ffffff;
    margin-top: 100px;
    left: 50%;
  }
  .title img {
    padding: 1rem;
    max-width: 100px !important;
  }
  .fv__text1 {
    position: absolute;
    right: clamp(0rem, 1vw, 48rem);
    top: clamp(14rem, 21vw, 29rem);
    font-size: 2rem;
    color: #a20202;
  }
  .fv__text2 {
    position: absolute;
    right: clamp(0rem, 16vw, 48rem);
    top: clamp(58rem, 20vw, 33rem);
    font-size: 3.5rem;
    color: #af1c1c;
    transform: rotate(-10deg);
  }
}
@media screen and (max-width: 500px) {
  .fv__block .sub__ttl {
    font-size: 1.8rem;
  }
  .fv__h {
    text-align: right;
    color: #ffffff;
    margin-top: 0px;
    top: 29%;
  }
  .fv__text1 {
    position: absolute;
    right: clamp(0rem, 4vw, 48rem);
    top: 33.5%;
    font-size: 1.8rem;
    color: #a20202;
  }
  .fv__text2 {
    position: absolute;
    right: clamp(0rem, 6vw, 48rem);
    top: clamp(42rem, 20vw, 33rem);
    font-size: 3.5rem;
    color: #af1c1c;
    transform: rotate(-10deg);
  }
}
.footer {
  padding: 5rem 0 2rem 0;
  background-color: #B4B4B4;
}
.footer img {
  margin: 0 auto;
}
.footer .title {
  align-items: baseline;
  margin-bottom: 3rem;
}
.footer__inner {
  margin-bottom: 8rem;
}
.footer__inner ul {
  padding-top: 3rem;
  border-top: solid 1px #000000;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 3rem;
}
.footer__inner li {
  display: block;
  width: 100%;
  max-width: 100px;
  font-size: 2rem;
  color: #000000;
  text-align: center;
}
.footer small {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  color: #000000;
}

@media screen and (max-width: 1023px) {
  .footer iframe {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer iframe {
    margin-left: 0px;
  }
}
@media screen and (max-width: 500px) {
  .footer iframe {
    margin-left: 0;
    width: 90%;
    max-height: 300px;
  }
  .footer ul {
    margin-bottom: 0;
  }
  .footer ul li {
    margin-bottom: 4rem;
  }
  .footer .title {
    justify-content: center;
    margin-bottom: 15px;
  }
  .footer__inner ul {
    flex-direction: column;
  }
  .footer img {
    margin-bottom: 2rem;
  }
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
  transition: 0.5s;
  padding: 0 3rem;
}

.header__wrap {
  position: fixed;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.5rem 3rem;
  border-radius: 1rem;
  padding-top: 1rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.header__list li {
  margin: 0 1.5rem;
}
.header__list a {
  font-weight: 400;
  color: #000000;
  font-size: 2rem;
}
.header__block {
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.7411764706);
  font-size: 1.6rem;
  color: #000000;
}
.header__block .tell {
  display: flex;
  align-items: center;
}
.header__block .tell img {
  max-width: 30px;
}
.header__block .tell a {
  font-size: 2.4rem;
}
.header__block p {
  font-size: 1.8rem;
}
.header__block .cta {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__block .cta > * {
  margin: 0 10px;
}

.header__wrapper .btn-gNav {
  position: fixed;
  top: 10px;
  right: 15px;
  width: 45px;
  height: 40px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
  border-radius: 5px;
}

.header__wrapper .btn-gNav span {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #ffffff;
  border-radius: 10px;
  transition: all 400ms;
}

.header__wrapper .btn-gNav span:nth-child(1) {
  top: 8px;
}

.header__wrapper .btn-gNav span:nth-child(2) {
  top: 18px;
}

.header__wrapper .btn-gNav span:nth-child(3) {
  top: 28px;
}

.logo-sp {
  display: none;
}

.btn-gNav {
  display: none;
}

.hb-change {
  background-color: #000000 !important; /* スクロール後の色 */
}

@media screen and (max-width: 1200px) {
  .header__block .tell a p {
    font-size: 1.6rem;
  }
  .header__block p {
    font-size: 12px;
  }
  .header__block .tell img {
    max-width: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .gNav ul {
    margin: 0;
    padding: 0;
  }
  .gNav li {
    list-style: none;
    display: inline-block;
  }
  .gNav a {
    transition: 0.3s;
    text-decoration: none;
    color: #000000;
    border: none;
  }
}
@media screen and (max-width: 1023px) {
  .header__wrap {
    background-color: inherit;
    padding: 0.5rem 0;
  }
  header {
    padding: 0 1rem;
  }
  .header__block {
    padding-top: 20px;
    background-color: #ffffff;
  }
  .btn-gNav {
    display: block;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-image: url(../../img/top-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    z-index: 0;
    transition: 0.3s;
  }
  .pNav {
    position: fixed;
    right: -100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: 0.3s;
  }
  .pNav .cta {
    text-align: center;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
  }
  .pNav .tell {
    justify-content: center;
    margin-bottom: 10px;
  }
  .pNav .tell a {
    font-size: 2rem;
  }
  .gNav.open {
    right: 0;
  }
  .pNav.open {
    z-index: 6;
    top: 425px;
    right: -50%;
    width: 100%;
  }
  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }
  .gNav .gNav-menu li {
    width: 90%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 2rem;
  }
  .gNav .gNav-menu li a {
    position: relative;
    color: #000000;
    padding: 15px;
    border-bottom: #000000 solid 1px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gNav .gNav-menu li a .br-1023 {
    position: relative;
    height: unset;
    opacity: 1;
  }
  .toggle__wrap {
    position: relative;
  }
  .btn-gNav span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 35px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .btn-gNav.open span {
    background-color: #000000;
  }
  .btn-gNav.open span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
    left: 7px;
  }
  .btn-gNav.open span:nth-child(2) {
    opacity: 0;
  }
  .btn-gNav.open span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
    left: 7px;
  }
  .header__block {
    color: #000000;
  }
  .list-top {
    padding-top: 10rem !important;
  }
  .tell__wrap {
    padding-top: 2rem;
  }
  .tell__wrap .br-1023 {
    position: relative;
    height: auto;
    opacity: 1;
  }
  .tell {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .tell p {
    font-size: 2rem !important;
  }
  .tell img {
    max-width: 10px;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .header__wrap {
    padding-left: 0;
  }
}
.blog__ttl {
  background-color: #ffffff;
  margin-bottom: 30px;
}
.blog__ttl h3 {
  color: #e14444;
  text-shadow: none;
}
.blog__btn {
  text-align: center;
}
.blog__btn .btn {
  padding: 15px 50px;
}
.blog__inner2 .sale__list-text h5 {
  color: #e14444;
  font-size: 2rem;
}

.about {
  position: relative;
  padding: 8rem 2rem;
  background-color: #ededed;
}
.about__text p {
  text-align: center;
  line-height: 2;
  margin-bottom: 4rem;
}
.about__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.about__block {
  margin: 0 1.8vw;
  max-width: 500px;
  width: 100%;
}
.about__block img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.about__block h3 {
  font-weight: 700;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.about__img {
  margin-bottom: 2rem;
  height: 350px;
}
.about__logo {
  max-width: 1600px;
  width: 100%;
  text-align: right;
  position: absolute;
  z-index: 1;
  bottom: 440px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.about__logo img {
  display: inline-block;
  z-index: 4;
  max-width: 180px;
}
.about__wrapper {
  position: relative;
}

.about2 {
  position: relative;
  z-index: 0;
  padding: 10rem 2rem;
  padding-bottom: 12rem;
}
.about2 .about__inner {
  max-width: 1100px;
}
.about2 .about__block {
  margin: 0 1vw;
  max-width: 500px;
  width: 100%;
}
.about2 .about__block img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.about2 .about__block h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.about2 .about__img {
  margin-bottom: 1rem;
  height: 220px;
}

/*--------------------------------------
  モーダル表示上から_002
--------------------------------------*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  align-self: center;
  width: 60%;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}

.modal_content p {
  padding-top: 0;
}

.close_button {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}

.dli-close {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
  top: -2px;
  left: -5px;
}

.dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: translateY(20px);
}

.about__modal {
  text-align: right;
  margin-top: 2rem;
}

.open_button {
  font-size: 1.6rem;
  border-bottom: solid 1px #707070;
}

.open-button:active {
  /*ボタンを押したとき*/
  transform: translateY(2px); /*下に動く*/
}

/*アイコンを表示*/
.open-button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  padding-left: 8px;
}

/*ラベルホバー時*/
.open-button:hover {
  color: #ffffff;
  background-color: #4f96f6;
  transition: 0.6s;
}

.modal_title2 {
  font-size: 1.5em;
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.modal_content img {
  max-width: 65%;
  margin: 0 auto;
}

@media screen and (max-width: 1300px) {
  .about__img {
    margin-bottom: 2rem;
    height: 250px;
  }
  .about2 .about__img {
    height: 180px;
  }
  .about__logo {
    bottom: 480px;
  }
  .about__logo img {
    max-width: 110px;
  }
}
@media screen and (max-width: 1023px) {
  .about__img {
    margin-bottom: 2rem;
    height: 175px;
  }
  .about2 .about__img {
    height: 150px;
  }
  .about__logo {
    bottom: 400px;
  }
}
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column;
  }
  .about__block {
    margin: 0 auto;
    margin-bottom: 5rem;
  }
  .about__img {
    height: 300px;
  }
  .about2 .about__block {
    margin: 0 auto;
    margin-bottom: 5rem;
  }
  .about2 .about__img {
    height: 250px;
  }
  .about__logo {
    bottom: 1240px;
  }
}
@media screen and (max-width: 500px) {
  .about__img {
    height: auto;
  }
  .about__text p {
    text-align: left;
  }
  .about__logo img {
    max-width: 90px;
  }
  .about__logo {
    bottom: 1315px;
  }
  .modal_content {
    width: 100%;
  }
}
.syaken__wrap {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 0 10px;
}
.syaken__ttl {
  background-color: #FF914D;
  margin-bottom: 30px;
}
.syaken__inner {
  background-color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 50px;
}
.syaken__block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.syaken__block img {
  max-width: 450px;
  margin-left: 20px;
}
.syaken__block p {
  font-size: 1.8rem;
  line-height: 2em;
}
.syaken__btn {
  text-align: center;
}
.syaken__btn :hover {
  background-color: #fed42c;
  color: #ffffff;
  transition: 0.3s;
  border: 2px solid #ffffff;
}

@media screen and (max-width: 500px) {
  .syaken__inner {
    padding: 20px;
    border-radius: 10px;
  }
  .syaken__block img {
    margin-left: 0;
  }
  .syaken__ttl　 {
    margin-bottom: 20px;
  }
}
.service {
  position: relative;
  padding-bottom: clamp(200px, 104vw, 550px);
}
.service__img1 {
  max-width: clamp(10rem, 52vw, 48rem);
  opacity: 0.3;
  position: absolute;
  left: -3rem;
  top: 80px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__img2 {
  max-width: clamp(10rem, 52vw, 48rem);
  opacity: 0.3;
  margin-left: auto;
  position: absolute;
  right: -5rem;
  bottom: 70px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .mail {
  max-width: clamp(57rem, 56vw, 57rem);
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.service__text {
  position: absolute;
  color: #fff;
  font-size: 1.8rem;
  right: clamp(1rem, 14vw, 22rem);
  top: clamp(10rem, 52vw, 26rem);
  z-index: 2;
  font-weight: 400;
  transform: rotate(-15deg);
  letter-spacing: 0.1em;
  font-family: "adobe-handwriting-ernie", sans-serif;
}
.service__title {
  padding-left: 2rem;
}
.service__subtitle {
  padding-left: 2rem;
}

.service-img3 {
  max-width: 200px;
  z-index: 2;
}

.beju {
  background-color: #e5ceba;
  position: absolute;
  width: 300px;
  height: 300px;
  right: 200px;
  top: 100px;
  z-index: 1;
  transform: rotate(-5deg);
}

.accordion {
  position: relative;
  width: 100%;
  margin-bottom: 0rem;
}
.accordion > div {
  max-width: 880px;
  margin: 0 auto;
}
.accordion > div p {
  top: -120px;
  position: absolute;
  transform: rotate(-5deg);
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.accordion > div h2 {
  top: -80px;
  position: absolute;
  transform: rotate(-5deg);
  font-size: 1.6rem;
}

.message {
  max-width: clamp(54.5rem, 53vw, 54.5rem);
  background-color: #2b2b2b;
  margin: 0 auto;
  position: relative;
  left: 1.5px;
}

.message {
  position: relative;
  top: 200px;
  color: #e6e6e6;
  text-align: center;
  padding: 40px 20px;
  line-height: 2.2;
  padding-bottom: 16rem;
  transition: transform 0.6s ease;
}

.message:hover {
  transform: translateY(-100px); /* 上に30px移動 */
}

.message__title {
  font-family: "fleur", sans-serif;
  font-size: 6rem;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 8px;
  margin-bottom: 20px;
  position: relative;
}

.message__highlight {
  font-size: 2.4rem;
  font-weight: 400;
  color: #ffffff;
  margin: 20px 0.4rem;
  font-family: "STIX Two Text", serif;
}

.message__text {
  margin-bottom: 4rem;
  font-size: 13px;
  font-family: "STIX Two Text", serif;
}

.block {
  transform: skewY(-5deg);
  transform-origin: top left;
  overflow: hidden;
  transition: max-height 0.5s ease;
  max-height: 60px;
  cursor: pointer;
  position: relative;
}
.block * {
  font-family: "STIX Two Text", serif !important;
}

.block.open,
.block:hover {
  max-height: 600px; /* コンテンツの高さに合わせて調整（十分大きめに） */
}

.header,
.content {
  transform: rotate(-1deg);
  padding: 5px 20px;
  padding-top: 1rem;
  color: #fff;
  max-width: 1100px;
}

.service__wrap {
  max-width: 880px;
  margin: 0 auto;
}

.service__flex {
  display: flex;
  align-items: center;
}
.service__flex .circle {
  border: 2px solid #ffffff;
  transition: 0.5s;
}
.service__flex .circle:hover {
  border: 2px solid rgb(0, 0, 0);
  background: black;
  transition: 0.5s;
}
.service__flex .circle .arrow-line,
.service__flex .circle .arrow-head {
  background: #ffffff;
}
.service__flex .circle .arrow-head {
  top: 13px;
  left: 20px;
}

.header {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  font-family: stix-two-math, serif;
  font-weight: 400;
  font-style: normal;
}
.header span {
  font-size: 1.6rem;
  font-family: stix-two-text, serif;
  font-weight: 400;
}

.content {
  position: relative;
  font-size: 16px;
  transition: opacity 0.5s ease;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 6vw;
  padding-top: 30px;
  top: -15px;
}

.content p {
  margin-left: 0;
  max-width: 500px;
  font-family: "aw-conqueror-didot", serif;
}

.block.open .content {
  opacity: 1;
}

.bg-dark {
  background: #454545;
}

.bg-darkgray {
  background: #626262;
}

.bg-gray {
  background: #9a9a9a;
}

@media screen and (max-width: 1023px) {
  .accordion {
    margin-bottom: 16rem;
  }
  .block {
    transform: skewY(-5deg);
    transform-origin: top left;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-height: 80px;
    cursor: pointer;
    position: relative;
  }
  .service-img3 {
    max-width: clamp(10rem, 42vw, 68rem);
    top: 0;
    right: 0px;
  }
  .beju {
    width: clamp(10rem, 42vw, 68rem);
    height: clamp(10rem, 42vw, 68rem);
    right: clamp(1rem, 5vw, 18rem);
  }
  .accordion > div p {
    top: -120px;
  }
  .header,
  .content {
    transform: rotate(-1deg);
    padding: 20px 20px;
    color: #fff;
    max-width: 1100px;
  }
}
@media screen and (max-width: 768px) {
  .service-img3 {
    max-width: clamp(10rem, 30vw, 68rem);
    top: 0;
    right: 0px;
  }
  .beju {
    width: clamp(10rem, 30vw, 68rem);
    height: clamp(10rem, 30vw, 68rem);
    right: clamp(1rem, 5vw, 18rem);
  }
  .accordion > div p {
    top: -180px;
  }
  .service__text {
    font-size: 2.2rem;
    top: clamp(10rem, 52vw, 16rem);
  }
  .service {
    position: relative;
    padding-bottom: clamp(200px, 130vw, 1180px);
  }
  .service .mail {
    max-width: 90vw;
    top: 50%;
  }
  .message {
    top: 220px;
    max-width: 85.5vw;
  }
}
@media screen and (max-width: 500px) {
  .block {
    max-height: 70px;
  }
  .message:hover {
    transform: translateY(-40px); /* 上に30px移動 */
  }
  .accordion > div p {
    top: -94px;
  }
  .accordion > div h2 {
    top: -65px;
  }
  .service {
    position: relative;
    padding-bottom: clamp(200px, 260vw, 320px);
  }
  .service .mail {
    top: 60%;
  }
  .service-img3 {
    max-width: clamp(10rem, 30vw, 68rem);
    top: -130px;
    right: 0px;
  }
  .beju {
    top: -70px;
  }
  .service__img2 {
    bottom: 10px;
  }
  .service__img1 {
    max-width: clamp(10rem, 52vw, 68rem);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    bottom: 100px;
    left: unset;
  }
  .service__text {
    font-size: 1.4rem;
    top: clamp(10rem, 40vw, 10rem);
    right: clamp(1rem, 7vw, 22rem);
  }
  .message {
    top: 100px;
    max-width: 85vw;
    padding-right: 10px;
    padding-left: 10px;
    left: 1px;
  }
  .message__highlight,
  .message__text {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .message__highlight {
    font-size: 2rem;
    font-weight: 400;
  }
  .message__title {
    letter-spacing: 5px;
  }
  .service__flex .circle .arrow-head {
    top: 11px;
    left: 15px;
  }
  .header {
    font-size: 2rem;
  }
  .header span {
    font-size: 1.4rem;
  }
  .header,
  .content {
    transform: rotate(-1deg);
    padding: 15px 20px;
    color: #fff;
    max-width: 1100px;
    line-height: 1;
    padding-top: 20px;
  }
  .content {
    padding-bottom: 4rem;
    top: -5px;
  }
  .accordion {
    position: relative;
    width: 100%;
    margin-bottom: 15rem;
  }
  .service__flex {
    justify-content: space-between;
    padding-right: 2rem;
  }
}
.voice {
  margin-bottom: 80px;
}
.voice__wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  background-color: #ffffff;
  background-repeat: no-repeat;
  padding: 50px 0px;
  padding-top: 10px;
}
.voice__wrap a {
  padding: 30px 20px 10px 0px;
  text-align: end;
  color: rgb(91, 164, 229);
}
.voice__goo {
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #ffffff;
  margin-bottom: 50px;
  border-radius: 10px;
}
.voice__goo img {
  margin: 0 auto;
  max-width: 300px;
  margin-bottom: 10px;
}
.voice__goo h5 {
  text-align: center;
  font-size: 4rem;
  color: #eb2c2c;
}
.voice__ttl {
  background-color: #ff4c4c;
  margin-bottom: 50px;
}
.voice__block {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.voice__block .head {
  font-size: 2.2rem;
  margin-bottom: 0;
}
.voice__block img {
  max-width: 130px;
  margin-left: 10px;
}
.voice__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.voice__inner img {
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.voice__inner > :nth-child(3) .voice__img img {
  margin-bottom: 0;
}
.voice__inner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice__inner-flex > :nth-child(1) {
  max-width: 150px;
  margin-right: 50px;
}
.voice__inner-flex > :nth-child(2) {
  position: relative;
}
.voice__inner-flex .voice__img::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0%;
  margin-top: -15px;
  margin-left: -50px;
  border: 25px solid transparent;
  border-right: 30px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .voice__inner-flex > :nth-child(1),
  .voice__inner-flex .voice__img::before {
    display: none;
  }
  .voice__inner-flex {
    justify-content: center;
  }
  .voice__wrap {
    min-height: initial;
  }
  .voice__goo {
    max-width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .voice__block img {
    max-width: 75px;
  }
  .voice__goo h5 {
    font-size: 2.4rem;
  }
  .voice__goo img {
    max-width: 200px;
  }
  .voice__goo {
    border-bottom: 2px solid rgb(255, 29, 29);
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 0;
  }
  .voice {
    margin-bottom: 40px;
  }
}
.contact {
  position: relative;
  position: relative;
  background-image: url(../../img/contact-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: -20vw;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20rem 20px;
  overflow: hidden;
}

.contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.7254901961);
  z-index: 1;
}

.contact__content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.contact__title {
  font-size: 48px;
  margin: 0 0 8px;
}

.contact__subtitle {
  font-size: 16px;
  margin-bottom: 16px;
}

.contact__button {
  display: inline-block;
  background: #666;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "STIXTwoMath-Regular", serif;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact {
    height: 200px;
    padding: 0 16px;
  }
  .contact__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 500px) {
  .contact {
    background-position-y: 0px;
    height: 300px;
  }
  .contact__title {
    padding-left: 0 !important;
  }
  .footer__inner {
    display: none;
  }
}
.single__wrap {
  padding: 0 2rem;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 180px;
}

.single__wrap p {
  font-size: 1.8rem;
  margin: 0.5em 0 1em;
}

.single__wrap h1 {
  font-size: 3.2rem;
  margin: 0;
}

.single__wrap h2 {
  font-size: 2.6rem;
  margin: 35px 0;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #b1bcca;
  background-color: #a0202d;
  color: #ffffff;
  padding: 16px 16px;
  line-height: 1.5;
}

.single__wrap h3 {
  font-weight: bold;
  margin: 10px 0;
  font-size: 2.4rem;
  display: inline-block;
  padding-bottom: 8px;
  line-height: 1.5;
  border-bottom: 2px solid #00a3d6;
}

.single__wrap img {
  width: 100%;
  height: auto;
}

.single__day {
  display: flex;
}

.single__day p {
  margin-right: 20px;
}

.breadcrumbs {
  padding: 2rem;
  padding-left: 0;
  max-width: 1100px;
  margin: 0 auto;
  height: 0px;
  font-size: 1.6rem;
  margin-bottom: 80px;
  display: flex;
}
.breadcrumbs a span {
  margin-left: 0;
}
.breadcrumbs span {
  display: flex;
  align-items: center;
  height: 26px;
  margin: 0 0.5rem;
}

.breadcrumbs span[property=name] {
  padding: 0;
  vertical-align: text-bottom;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1023px) {
  .breadcrumbs span {
    height: 23px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 0px;
  }
}
.single__example-wrap .bg {
  padding: 0 2rem;
  padding-bottom: 10rem !important;
}

.single__example {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 10rem;
  padding: 4rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.single__example-thumb img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.single__example-date {
  font-size: 14px;
  color: #888;
  display: block;
  margin-top: 20px;
}

.single__example-title {
  font-size: 22px;
  font-weight: bold;
  margin: 16px 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.single__example-body {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
  color: #333;
}

.single__example-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
}

.single__example-links .btn--top {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  position: relative;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center;
}
.single__example-links .btn--top .circle {
  transform: scale(-1, 1);
  width: 25px;
  height: 25px;
  border: 1px solid black;
  margin-right: 1rem;
}
.single__example-links .btn--top .circle .arrow-line {
  width: 12px;
  height: 1px;
  background: black;
  position: absolute;
  top: 13px;
  left: 5px;
  transform: translateY(-50%);
}
.single__example-links .btn--top .circle .arrow-head {
  width: 10px;
  height: 1px;
  background: black;
  position: absolute;
  top: 6px !important;
  left: 10px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.single__example-links .btn--list {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single__example-links .btn--list .circle {
  width: 25px;
  height: 25px;
  border: 1px solid black;
  margin-left: 1rem;
}
.single__example-links .btn--list .circle .arrow-line {
  width: 12px;
  height: 1px;
  background: black;
  position: absolute;
  top: 13px;
  left: 5px;
  transform: translateY(-50%);
}
.single__example-links .btn--list .circle .arrow-head {
  width: 10px;
  height: 1px;
  background: black;
  position: absolute;
  top: 6px !important;
  left: 10px;
  transform: rotate(45deg);
  transform-origin: left center;
}

@media screen and (max-width: 500px) {
  .single__example {
    padding: 2rem;
  }
  .single__example-links a span {
    font-size: 12px;
  }
}
.single__works-wrap .single__example {
  background-color: rgba(31, 31, 31, 0.7490196078);
}
.single__works-wrap .single__example * {
  color: #ffffff;
}
.single__works-wrap .single__example-links .btn--list .circle {
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  margin-left: 1rem;
}
.single__works-wrap .single__example-links .btn--list .circle .arrow-head,
.single__works-wrap .single__example-links .btn--list .circle .arrow-line {
  background: #ffffff;
}
.single__works-wrap .single__example-links {
  justify-content: flex-end;
}

.archive-example * {
  font-family: "STIX Two Text", serif;
}
.archive-example__ttl {
  font-size: 3rem;
  text-align: center;
  padding: 6rem 0;
}
.archive-example .page__fv {
  position: relative;
  background-image: url(../../img/example-fv2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.archive-example .page__fv__wrap {
  padding: 42rem 0;
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.archive-example .page__fv-ttl {
  font-family: "fleur", sans-serif;
  font-size: 10rem;
  line-height: 1;
}
.archive-example .page__fv-subttl {
  font-size: 2.4rem;
}
.archive-example .page__fv h1 {
  font-size: 1.2rem;
  position: absolute;
  bottom: 10px;
}
.archive-example .breadcrumbs {
  margin-bottom: 0;
}
.archive-example .information__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #707070;
}

@media screen and (min-width: 1300px) {
  .archive-example .page__fv__wrap {
    padding: 27vw 0;
  }
  .services__page .page__fv__wrap {
    padding: 27vw 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .archive-example .breadcrumbs {
    margin-bottom: 10rem;
  }
  .archive-example .page__fv {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: -280px;
    height: 100vh;
  }
  .archive-example .page__fv__wrap {
    position: absolute;
    left: 0;
    bottom: 70px;
    padding: 5rem 1rem;
  }
  .archive-example .page__fv h1 {
    opacity: 0;
  }
}
@media screen and (max-width: 500px) {
  .archive-example .information__item {
    align-items: flex-start;
  }
}
.archive-works .card-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  flex-wrap: wrap;
}
.archive-works .card-list li {
  max-width: 25%;
}
.archive-works .archive__container {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 0;
}
.archive-works .page__fv {
  background-image: url(../../img/service-bg1.jpg);
}
.archive-works .breadcrumbs {
  max-width: 1300px;
  margin-bottom: 14rem;
}
.archive-works .card-text {
  margin-bottom: 1rem;
}

.jisseki-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.jisseki-buttons a {
  font-size: 1.6rem;
  color: #ffffff;
  border-radius: 4px;
  padding: 0.5rem 2rem;
  background-color: #505050;
}

.tax-ttl {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  .archive-works .card-list li {
    max-width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .archive-works .page__fv {
    background-image: url(../../img/service-bg1-sp.jpg);
    background-position-x: unset;
    background-position: center;
  }
  .archive-works .card-list li {
    max-width: 90%;
  }
  .jisseki-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
  }
  .archive-works .breadcrumbs {
    margin-bottom: 12rem;
  }
}
.sidebar {
  width: 100%;
  max-width: 300px;
}
.sidebar li {
  list-style: none;
}
.sidebar h2 {
  font-size: 2.1rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 3px solid #A0202D;
}
.sidebar .wp-block-group__inner-container {
  margin-bottom: 50px;
}
.sidebar .wp-block-latest-posts.wp-block-latest-posts__list li,
.sidebar .wp-block-archives-list li,
.sidebar .wp-block-categories-list li {
  padding: 5px 0;
  border-bottom: 1px dotted #d5d5d5;
  margin-bottom: 10px;
}
.sidebar .wp-block-calendar table caption {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.sidebar .wp-block-calendar table th {
  text-align: center;
}
.sidebar .wp-block-calendar table tbody,
.sidebar .wp-block-calendar table th {
  font-size: 1.3rem;
}
.sidebar .wp-block-calendar a {
  color: #1571da;
}
.sidebar a {
  display: block;
  width: 100%;
}
.sidebar .wp-block-calendar table {
  margin-bottom: 10px;
}
.sidebar .wp-calendar-nav {
  display: flex;
}
.sidebar .wp-calendar-nav a {
  text-align: left;
  margin-left: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .sidebar {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .sidebar .wp-calendar-nav a {
    font-size: 12px;
  }
}
.layout {
  background-color: #A0202D;
  padding: 0 2rem;
  padding-bottom: 10rem;
}
.layout__ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 10rem;
  color: #717171;
  text-align: right;
  margin-right: 4rem;
  line-height: 1;
}
.layout__wrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-top: 6rem;
}
.layout__wrap * {
  text-align: center;
  color: #ffffff;
}
.layout__wrap p {
  margin-bottom: 3rem;
  line-height: 2;
}
.layout__head {
  text-align: center;
  margin-bottom: 3rem;
}
.layout__head h3 {
  display: inline-block;
  font-size: 4rem;
  padding: 2rem 12rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  .layout__ttl {
    font-size: 6rem;
    margin-right: 2rem;
  }
  .layout__wrap p {
    text-align: left;
  }
  .layout {
    margin-bottom: 6rem;
  }
  .layout__head h3 {
    padding: 2rem 9rem;
  }
}
.commitment {
  position: relative;
  margin-bottom: 0rem;
}

.commitment__title {
  font-size: 12rem;
  font-weight: 300;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-left: 2rem;
}

.commitment__subtitle {
  font-size: 2.4rem;
  margin: 0rem 0 7rem;
  padding-left: 2rem;
}

.commitment__item {
  margin-bottom: 6rem;
}

.commitment__item h3 {
  font-family: "STIX Two Text", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.commitment__item h3 span {
  font-weight: 500;
  margin-right: 1rem;
  font-size: 3.2rem;
  font-family: "STIX Two Text", serif;
}

.commitment__item p {
  font-size: 2rem;
  line-height: 1.6;
  margin: 0;
  font-family: "STIX Two Text", serif;
}

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

.achive-wrap {
  position: relative;
  z-index: 0;
}

.achive-bg {
  position: absolute;
  bottom: -340px;
  left: -100px;
  opacity: 0.3;
  max-width: clamp(10rem, 52vw, 42rem);
}

.achive-bg2 {
  position: absolute;
  bottom: 240px;
  right: -50px;
  opacity: 0.3;
  max-width: clamp(10rem, 52vw, 48rem);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.achive-bg3 {
  position: absolute;
  top: -950px;
  left: 0px;
  opacity: 0.3;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: clamp(10rem, 61vw, 42rem);
  -o-object-position: top;
     object-position: top;
}

.cominfo {
  position: relative;
  z-index: 0;
}

.cominfo-bg {
  position: absolute;
  bottom: -507px;
  right: -20px;
  opacity: 0.3;
  max-width: clamp(10rem, 52vw, 45rem);
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

@media screen and (min-width: 1024px) {
  .services-sec4 .ttl {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 500px) {
  .achive-bg3 {
    top: -1040px;
    left: -30px;
    max-width: clamp(10rem, 52vw, 42rem);
  }
  .commitment__item h3 span {
    display: block;
    font-size: 3rem;
  }
  .commitment__item * {
    text-align: center;
  }
  .commitment__item p {
    font-size: 1.6rem;
  }
  .achive-bg2 {
    position: absolute;
    top: -150px;
    right: -60px;
    opacity: 0.3;
    max-width: clamp(10rem, 61vw, 68rem);
  }
  .achive-bg {
    position: absolute;
    bottom: -180px;
    left: -100px;
    opacity: 0.3;
    max-width: clamp(10rem, 70vw, 68rem);
  }
  .commitment__subtitle {
    margin-bottom: 3rem;
  }
  .commitment {
    margin-bottom: 2ch;
  }
}
.circle {
  width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 50%;
  position: relative;
  transition: 0.5s;
  transform: scale(0.6);
}

.arrow-line {
  width: 17px;
  height: 2px;
  background: black;
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translateY(-50%);
}

.arrow-head {
  width: 10px;
  height: 2px;
  background: black;
  position: absolute;
  top: 14px;
  left: 20px;
  transform: rotate(45deg);
  transform-origin: left center;
}

h1 {
  font-size: 48px;
  margin: 0;
}

h2 {
  font-size: 16px;
  margin: 0px 0 24px;
}

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

.company {
  position: relative;
  margin-bottom: 5rem;
}
.company__title {
  padding-left: 2rem;
}
.company__subtitle {
  padding-left: 2rem;
  font-size: 1.6rem !important;
}

.company__wrap {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 6rem;
}

.company__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.company__info {
  background: rgba(67, 67, 67, 0.7568627451);
  color: #fff;
  padding: 5rem 6rem;
  padding-left: 0;
  border-radius: 0 40px 40px 0;
  flex: 1;
  max-width: clamp(20rem, 52vw, 305rem);
}

.company__list {
  max-width: 880px;
  margin-left: clamp(10rem, 14vw, 38rem);
}
.company__list * {
  font-weight: 300;
}

.company__list li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-family: "STIX Two Text", serif;
}

.page-company .company__list li {
  color: #000 !important;
}

.company__list span {
  display: block;
  width: 80px;
  margin-right: 8px;
}

.company__container img {
  width: 52vw;
  position: absolute;
  top: 47%;
  right: 0%;
  transform: translate(0%, -50%);
  border-radius: 40px 0px 0 40px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 310px;
}

/* Information Section */
.information {
  padding: 60px 20px 140px 20px;
  padding-bottom: 10rem;
}

.information__container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 75%;
}

.information__item:hover .circle {
  border: 2px solid rgb(0, 0, 0);
  background: black;
  transition: 0.5s;
}

.information__item:hover .circle .arrow-line,
.information__item:hover .circle .arrow-head {
  background: #ffffff;
}

.information__list {
  margin-top: 32px;
  margin-bottom: 4rem;
}

.information__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}

.information__date {
  min-width: 100px;
  font-size: 1.8rem;
  font-family: "STIXTwoMath-Regular", serif;
}

.information__tag {
  background: #505050;
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 14px;
  padding-bottom: 4px;
  vertical-align: middle;
  border-radius: 4px;
  margin: 0 0 0 3rem;
  font-family: "STIXTwoMath-Regular", serif;
}

.information__text {
  font-family: "STIXTwoMath-Regular", serif;
  flex: 1;
  font-size: 1.8rem;
  margin: 0 8px;
}

.information__arrow {
  font-size: 20px;
}

.information__viewmore {
  text-align: right;
  margin-top: 24px;
}

.information__viewmore a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 2.2rem;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
  font-family: "STIX Two Text", serif;
  letter-spacing: 0.1em;
}
.information__viewmore a .circle {
  border: 2px solid rgb(0, 0, 0);
  background: black;
}
.information__viewmore a .arrow-line {
  background: rgb(255, 255, 255);
}
.information__viewmore a .arrow-head {
  background: rgb(255, 255, 255);
}

.information__arrow .arrow-head {
  top: 14px;
}

.info-block {
  width: -moz-max-content;
  width: max-content;
}

.company__list2 span {
  font-family: "STIX Two Text", serif;
}

@media screen and (min-width: 1024px) {
  .company .ttl {
    transform: scale(0.8);
  }
  .company .subttl {
    position: relative;
    top: -5px;
    transform: scale(0.8);
    font-size: 1.9rem !important;
  }
  .company__list * {
    color: transparent;
  }
  .company__list2 {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 880px;
  }
  .company__list2 li {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: "STIX Two Text", serif;
  }
  .company__list2 span {
    display: block;
    width: 80px;
    margin-right: 8px;
  }
}
.company__info a,
.company__info a[href^=tel],
.company__info a[href^=mailto],
.company__list a,
.company__list a[href^=tel],
.company__list a[href^=mailto],
.company__list2 a,
.company__list2 a[href^=tel],
.company__list2 a[href^=mailto] {
  text-decoration: none !important;
  border-bottom: none !important;
  color: inherit !important;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

/* ユーザーエージェントが自動挿入するリンクにも保険を掛ける */
a[href^=tel],
a[href^=mailto] {
  text-decoration: none !important;
  color: inherit !important;
}

@media screen and (max-width: 1023px) {
  .company__list2 {
    display: none;
  }
  .company__list {
    margin-left: clamp(2rem, 4vw, 38rem);
  }
  .company__list li {
    text-decoration: none !important;
  }
  .info-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .cominfo-bg {
    display: none;
  }
  .company__container img {
    width: 50vw;
  }
}
/* Responsive */
@media screen and (max-width: 768px) {
  .company__container img {
    width: 85%;
    position: absolute;
    top: 73%;
    right: 0%;
    transform: translate(0%, -50%);
    border-radius: 40px 0px 0 40px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 270px;
  }
  .company__image img {
    border-radius: 16px;
  }
  h1 {
    font-size: 36px;
  }
  .information__item {
    flex-wrap: wrap;
  }
  .company__info {
    background: rgba(67, 67, 67, 0.7568627451);
    color: #fff;
    padding: 4rem 4rem;
    padding-left: 0;
    border-radius: 0 40px 40px 0;
    max-width: 90%;
  }
  .company {
    padding-bottom: 36rem;
  }
  .company__wrap {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .information__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0rem;
    margin-bottom: 3rem;
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .information__item .circle {
    top: -7px;
  }
  .information__arrow {
    align-self: flex-end;
  }
  .information__viewmore a {
    font-size: 1.6rem;
    gap: 1rem;
  }
  .information__viewmore a .circle {
    border: none;
    background: unset;
  }
  .information__viewmore a .circle .arrow-line {
    width: 21px;
    height: 2px;
    background: black;
    position: absolute;
    top: 60%;
    left: 30%;
    transform: translateY(-50%);
  }
  .information__viewmore a .circle .arrow-head {
    width: 10px;
    height: 2px;
    background: black;
    position: absolute;
    top: 10px;
    left: 22px;
    transform: rotate(45deg);
    transform-origin: left center;
  }
  .circle {
    width: 30px;
    height: 30px;
    border: 2px solid black;
    border-radius: 50%;
    position: relative;
  }
  .arrow-head {
    width: 10px;
    height: 2px;
    background: black;
    position: absolute;
    top: 8px;
    left: 14px;
    transform: rotate(45deg);
    transform-origin: left center;
  }
  .arrow-line {
    width: 13px;
    height: 2px;
    background: black;
    position: absolute;
    top: 16px;
    left: 7px;
    transform: translateY(-50%);
  }
  .company__info {
    background: rgba(67, 67, 67, 0.7568627451);
    color: #fff;
    padding: 4rem 4rem;
    padding-right: 1rem;
    padding-left: 0;
    border-radius: 0 40px 40px 0;
    max-width: 95%;
  }
  .company {
    padding-bottom: 36rem;
  }
  .company__wrap {
    margin-bottom: 2rem;
  }
  .company__container img {
    top: 71.5%;
    height: 240px;
    width: 95%;
  }
  .information {
    padding: 0px 0px 14rem 0;
  }
  .information__subtitle {
    padding-left: 2rem;
  }
  .info-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
  }
  .info-block {
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
  .circle {
    border: 1px solid black;
  }
  .arrow-line {
    height: 1px;
  }
  .arrow-head {
    height: 1px;
    width: 7px;
    top: 10px !important;
    left: 14px;
  }
  .information__viewmore {
    margin-right: 4rem;
  }
  .information__tag {
    margin: 0 40px 0 20px;
  }
  .information__list {
    margin-top: 0;
  }
  .information__subtitle {
    margin-bottom: 4rem;
  }
  .company {
    margin-bottom: 8rem;
  }
  .page-company .company {
    padding-top: 0 !important;
  }
  .page-company .breadcrumbs {
    margin-bottom: 12rem;
  }
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.customers {
  display: flex;
  align-items: center;
  padding: 0rem 2rem 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  margin-bottom: 18rem;
}

.customers__text {
  flex: 1 1 400px;
  padding-right: 2rem;
}

.customers__title {
  font-size: 12rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-left: 2rem;
}

.customers__subtitle {
  font-size: 2.4rem;
  margin: 0rem 0 2rem;
  padding-left: 2rem;
}

.customers__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.customers__list li {
  font-family: "STIX Two Text", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.customers__list li p {
  font-family: "STIX Two Text", serif;
  font-size: 2rem;
}

.customers__list li span {
  font-family: "STIX Two Text", serif;
  margin-right: 3rem;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.customers__images img {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

.customers__images-wrapper {
  position: relative;
  display: inline-block;
}

.customers__images-wrapper::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 100%;
  height: 100%;
  background-color: #333; /* 黒っぽい背景 */
  z-index: 1;
}

@media screen and (min-width: 1023px) {
  .wrap {
    transform: scale(0.8);
  }
}
/* レスポンシブ（スマホ用） */
@media (max-width: 768px) {
  .customers__images {
    grid-template-columns: 1fr;
  }
  .customers__text {
    flex: 1 1 300px;
    width: 80%;
    padding-right: 0rem;
  }
  .customers__list li span {
    font-size: 3rem;
  }
  .customers__list li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .customers__subtitle {
    margin: 0rem 0 0rem;
  }
  .customers__list li span {
    font-size: 3.2rem;
    margin-right: 1rem;
  }
  .customers__list li p {
    font-size: 1.6rem;
    width: 75%;
  }
  .customers__list li {
    justify-content: end;
    align-items: baseline;
    padding-bottom: 0;
  }
  .customers__images img {
    max-width: 125px;
  }
  .customers {
    margin-bottom: 15rem;
    padding-top: 0;
    gap: 1rem;
  }
}
.achive__container {
  margin-left: auto;
  max-width: 1600px;
  width: 100%;
  padding-top: 0rem;
  padding-bottom: 16rem;
  position: relative;
  margin-bottom: 3rem;
}
.achive__container .information__viewmore {
  position: absolute;
  bottom: 10px;
  right: 200px;
}

.achive__wrap {
  transform: scale(0.8);
  position: relative;
  left: 100px;
}
.achive__wrap .circle {
  transition: 0.5s;
}
.achive__wrap .circle:hover {
  border: 2px solid rgb(0, 0, 0);
  background: black;
  transition: 0.5s;
}
.achive__wrap .circle:hover .arrow-line,
.achive__wrap .circle:hover .arrow-head {
  background: #ffffff;
}
.achive__wrap .arrow-head {
  top: 13px;
  left: 21px;
}

.slick-prev {
  position: absolute !important;
  top: inherit !important;
  bottom: -60px;
  left: 0px !important;
}
.slick-prev .arrow-head {
  top: 13px;
  left: 19px;
  transform: rotate(135deg);
}

.slick-next {
  position: absolute !important;
  top: inherit !important;
  bottom: -60px;
  left: 70px;
}

/* 中央以外のスライド */
.slick-img {
  height: auto;
  transform: scale(0.8);
  width: 100%;
}

/* 中央のスライド */
.slider .slick-center {
  opacity: 1;
  width: 100%;
  border-radius: 16px;
  padding-top: 4rem;
}

.slider .slick-center img {
  opacity: 1;
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-slide:not(.slick-current) {
  transform: scale(0.9);
  position: relative;
  top: -10px;
}
.slick-slide:not(.slick-current) .card-text {
  display: none;
}

.slick-current .card {
  transform: scale(1.25);
  margin-right: 1.5rem;
  margin-bottom: 3rem;
}
.slick-current .card .card-text {
  display: block;
}

.card {
  position: relative;
  background-color: #434343;
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.223);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none; /* ← aタグっぽさを消す */
  color: #ffffff; /* ← 親要素の色を引き継ぐ（白文字維持） */
}
.card .circle {
  border: none;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.card .arrow-line {
  width: 21px;
  height: 2px;
  background: rgb(255, 255, 255);
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translateY(-50%);
}
.card .arrow-head {
  width: 10px;
  height: 2px;
  background: rgb(255, 255, 255);
  position: absolute;
  top: 15px;
  left: 59%;
  transform: rotate(45deg);
  transform-origin: left center;
}

.card:hover {
  background-color: #811f1f;
}

.slick-slide:not(.slick-current) .card:hover {
  background-color: #434343;
}

.card-tag {
  margin: 1rem 0;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #505050;
  font-size: 1.3rem;
  font-family: "STIX Two Text", serif;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: "STIX Two Text", serif;
}

.card-text {
  font-family: "STIX Two Text", serif;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}

.card-date {
  font-size: 1.4rem;
  font-family: "STIX Two Text", serif;
}

@media screen and (min-width: 1024px) {
  .achive__container .wrap {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .achive__wrap {
    left: 0;
  }
  .slick-prev {
    position: absolute !important;
    top: inherit !important;
    bottom: -25px;
    left: 10vw !important;
  }
  .slick-next {
    position: absolute !important;
    top: inherit !important;
    bottom: -25px;
    left: 21vw;
  }
  .achive__container .information__viewmore {
    position: absolute;
    bottom: -42px;
    right: 10vw;
  }
  .slick-slide:not(.slick-current) .card-text {
    display: block;
  }
  .card {
    transform: none;
    width: 90%;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 500px) {
  .card .arrow-head {
    top: 10px;
    left: 18px !important;
  }
  .card .arrow-line {
    width: 21px;
    height: 2px;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 60%;
    left: 5px;
    transform: translateY(-50%);
  }
  .slick-prev .arrow-head {
    top: 10px;
    left: 13px !important;
    transform: rotate(135deg);
  }
  .card-text,
  .card-tag {
    font-size: 12px;
  }
  .slick-slide:not(.slick-current) {
    transform: unset;
    position: relative;
    top: 0px;
  }
  .slick-slide:not(.slick-current) .card-text {
    display: block;
  }
  .slick-img {
    height: auto;
    transform: unset;
  }
  .slick-current .card {
    margin: 0 auto;
    transform: none;
  }
  .card {
    transform: none;
    width: 90%;
  }
  .slick-prev,
  .slick-next {
    bottom: -40px;
  }
  .achive__container .information__viewmore {
    position: absolute;
    bottom: -42px;
    right: 10vw;
  }
  .achive__wrap .arrow-head {
    top: 10px;
    left: 14px;
  }
  .achive__container .ttl {
    padding: 0 30px;
    font-size: 5rem !important;
  }
  .achive__container .subttl {
    margin-top: 2rem;
  }
  .achive__container {
    margin-bottom: 4rem;
    padding-bottom: 10rem;
  }
}
.page__price .price {
  margin-bottom: 16rem;
}
.page__price__wrap {
  position: relative;
  background-image: url(.././img/price-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem;
}
.page__price__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0.82;
}
.page__price__inner {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.page__price__inner * {
  text-align: center;
}
.page__price__inner > div {
  margin-bottom: 2rem;
}
.page__price__inner > div p {
  color: #a0202d;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
.page__price__inner > div h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.page__price__inner span {
  display: block;
  width: 100px;
  height: 2px;
  background-color: #a0202d;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.page__price__inner > p {
  line-height: 2;
}
.page__price__wrapper2 {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.page__price__wrapper2-text {
  position: absolute;
  top: -12rem;
  left: 0;
  z-index: 0;
}
.page__price__wrapper2-text p {
  font-size: 12rem;
  line-height: 1.3;
  color: #f6f6f6;
  font-weight: 700;
}
.page__price__wrap2 {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
  padding: 0 2rem;
  z-index: 2;
}
.page__price__inner2 {
  max-width: 50%;
  position: relative;
  z-index: 2;
}
.page__price__inner2 h3 {
  font-size: 4rem;
  font-weight: 700;
  color: #a0202d;
  margin-bottom: 2rem;
}
.page__price__inner2 > :nth-child(2) {
  margin-bottom: 2rem;
}
.page__price__inner2 p {
  margin-right: 6rem;
}
.page__price__img {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page__price__img img {
  max-width: 230px;
}
.page__price__img > :nth-child(1) {
  position: relative;
}
.page__price__img > :nth-child(2) {
  position: relative;
  top: -6rem;
  margin-left: 3rem;
}
.page__price__wrap3 {
  margin-bottom: 6rem;
  padding: 0 2rem;
}
.page__price__inner3 {
  padding: 4rem 2rem;
  max-width: 875px;
  margin: 0 auto;
  margin-bottom: 5rem;
  background-color: #f5f5f5;
}
.page__price__inner3 > :nth-child(1) {
  text-align: center;
  margin-bottom: 3rem;
}
.page__price__inner3 > :nth-child(1) h2 {
  font-size: 3.2rem;
  font-weight: 700;
}
.page__price__inner3 > :nth-child(1) span {
  font-size: 1.6rem;
}
.page__price__inner4 {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.page__price__inner4 div {
  margin: 0 auto;
}
.page__price__inner4 p {
  text-align: center;
  font-weight: 700;
}
.page__price__inner4 img {
  max-width: 85px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1023px) {
  .page__price__img img {
    max-width: 170px;
  }
  .page__price__inner2 h3 {
    font-size: 3.4rem;
  }
  .page__price__wrapper2-text p {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .page__price__wrap2 {
    flex-direction: column;
  }
  .page__price__inner2 {
    max-width: 80%;
    margin-bottom: 4rem;
  }
  .page__price__inner2 p {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .page__price__inner > p {
    text-align: left;
  }
  .page__price__wrap {
    padding: 5rem 3rem;
  }
  .page__price__inner > div p {
    margin-bottom: 1rem;
  }
  .page__price__inner2 {
    max-width: 100%;
  }
  .page__price__wrapper2-text p {
    font-size: 8rem;
  }
  .page__price__inner2 h3 {
    font-size: 3rem;
  }
  .page__price .price {
    margin-bottom: 8rem;
  }
  .page__price__wrapper2-text {
    position: absolute;
    top: -7rem;
  }
  .page__price__img img {
    max-width: 135px;
  }
  .page__price__inner4 img {
    max-width: 60px;
  }
  .page__price__inner > div p {
    font-size: 1.8rem;
  }
  .page__price__inner > div h2 {
    font-size: 2rem;
  }
}
.page__access {
  background-color: #ffffff;
  margin-bottom: 8rem;
}
.page__access__flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 8rem;
}
.page__access__flex > :nth-child(1) {
  max-width: 70%;
}
.page__access__flex > :nth-child(1) > :nth-child(1) > :nth-child(1) {
  height: 500px;
}
.page__access__flex > :nth-child(1) > :nth-child(2) > :nth-child(1) {
  height: 300px;
}
.page__access__flex > :nth-child(2) {
  max-width: 30%;
}
.page__access__flex > :nth-child(2) > :nth-child(1) > :nth-child(1) {
  height: 400px;
}
.page__access__flex > :nth-child(2) > :nth-child(2) > :nth-child(1) {
  height: 400px;
}
.page__access__img div {
  margin-bottom: 1rem;
}
.page__access__img div img {
  -o-object-fit: cover;
     object-fit: cover;
}

.services__page * {
  font-family: "STIX Two Text", serif;
}
.services__page .services {
  padding-top: 0rem;
  margin-bottom: 0;
}
.services__page .breadcrumbs {
  margin-bottom: 0;
}
.services__page__ttl {
  font-size: 3rem;
  text-align: center;
  padding: 6rem 0;
}
.services__page .page__fv {
  position: relative;
  background-image: url(../../img/services-fv.JPG);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.services__page .page__fv__wrap {
  padding: 42rem 0;
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.services__page .page__fv-ttl {
  font-family: "fleur", sans-serif;
  font-size: 10rem;
  line-height: 1;
}
.services__page .page__fv-subttl {
  font-size: 2.4rem;
}
.services__page .page__fv h1 {
  font-size: 1.2rem;
  position: absolute;
  bottom: 10px;
}

/* オーバーレイ初期状態 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
}

/* 表示ON */
.popup-overlay.active {
  display: flex;
}

/* 背景＋中身 両方にアニメーション */
.popup-overlay.fade-in {
  animation: overlayFadeIn 0.4s ease forwards;
}

.popup-overlay.fade-out {
  animation: overlayFadeOut 0.3s ease forwards;
}

.popup-content {
  background: #484848;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
}
.popup-content h2 {
  font-size: 2.4rem;
  margin-bottom: 0;
}
.popup-content * {
  color: #ffffff;
}
.popup-content .popup-wrap {
  margin-bottom: 2rem;
}

.popup-overlay.fade-in .popup-content {
  animation: popupFadeIn 0.4s ease forwards;
}

.popup-overlay.fade-out .popup-content {
  animation: popupFadeOut 0.3s ease forwards;
}

/* 背景ふわっと出る */
@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 背景ふわっと消える */
@keyframes overlayFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* 中身のふわっと（拡大縮小） */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popupFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.close-btn {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}

.services {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 2rem 0 2rem;
  margin-bottom: 10rem;
}
.services__bg {
  top: 85px;
  position: absolute;
  right: -2vw;
  width: 24%;
  opacity: 0.3;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-sec2 {
  margin-bottom: 0rem;
}

.services__bg2 {
  position: relative;
}
.services__bg2 img {
  position: absolute;
  width: -20vw;
  right: -20px;
  bottom: -345px;
  opacity: 0.3;
  max-width: clamp(10rem, 26vw, 68rem);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__bg3 {
  max-width: clamp(10rem, 42vw, 64rem);
  opacity: 0.3;
  position: absolute;
  top: -188px;
  left: -38px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.services__bg4 {
  max-width: clamp(10rem, 52vw, 68rem);
  opacity: 0.3;
  margin-left: auto;
  position: absolute;
  right: -15rem;
  bottom: 0;
}

.our__bg2 {
  position: relative;
  top: -100px;
}

.services__grid {
  display: grid;
  gap: 40px 20px;
}

.services__grid--top {
  display: flex;
  justify-content: center;
  gap: 20rem;
  margin-bottom: 15rem;
}

/* 下段：3列＋中央寄せ */
.services__grid--bottom {
  display: flex;
  justify-content: center;
  gap: 20rem;
}

.services__item {
  text-align: center;
  max-width: 220px;
}
.services__item :hover {
  cursor: pointer;
}

.services__img-wrapper {
  position: relative;
  border-radius: 3rem 0 0 0;
}

.services__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3rem 0 0 0;
}

.services__label {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: rgb(72, 72, 72);
  color: #fff;
  font-size: 3rem;
  padding: 2px 10px;
  border-radius: 1.5rem 0 0 0;
  line-height: 1.4;
}

.services__text1 {
  margin-top: 3rem;
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 200;
  font-family: "TheanoDidot-Regular";
}

.services__text2 {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "STIX Two Text", serif;
}
.services__text2 span {
  font-size: 1.2rem;
}

.services__subtext {
  font-size: 14px;
  color: #666;
}

.services-sec2 .overlay {
  padding: 4rem 2rem;
  text-align: center;
}
.services-sec2 .box-container {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  margin-top: 5rem;
}
.services-sec2 .box-container img {
  max-width: 370px;
  margin: 0 auto;
  margin-bottom: 8rem;
}
.services-sec2 .box-container .services-sec2__img2 {
  position: relative;
}
.services-sec2 .box {
  position: absolute;
  background-color: #ffffff;
  padding: 3rem 4rem;
  font-size: 1.8rem;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 1.5rem 0 0 0;
}
.services-sec2 .box1 {
  left: -50px;
  top: -15px;
}
.services-sec2 .box2 {
  top: -20px;
  right: 30px;
}
.services-sec2 .box3 {
  top: 190px;
  left: 35px;
}
.services-sec2 .box4 {
  top: 190px;
  right: -90px;
}
.services-sec2 .box5 {
  top: 405px;
  left: -40px;
}
.services-sec2 .box6 {
  top: 390px;
  right: -85px;
}
.services-sec2 .box7 {
  top: 520px;
  left: 70px;
}

.services-sec3 {
  margin-bottom: 6rem;
}
.services-sec3 .reason-section {
  background-color: rgba(72, 72, 72, 0.8078431373); /* 半透明ダーク背景 */
  color: white;
  padding: 6rem 4rem;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.services-sec3 .reason-section h3 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.services-sec3 .reason-block {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.services-sec3 .reason-block h4 {
  font-size: 2rem;
}
.services-sec3 .reason-block p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}
.services-sec3 .reason-number {
  font-size: 3.2rem;
  margin-right: 2rem;
  display: inline-block;
  color: #fff;
}

.services-sec4 {
  margin-bottom: 0rem;
}
.services-sec4 .reason-section {
  position: relative;
  z-index: 1;
}
.services-sec4 .category-list {
  margin: 0 auto;
}
.services-sec4 .category-list-wrap {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  color: white;
  font-size: 1.1rem;
}
.services-sec4 .category-item:nth-child(odd) {
  background-color: rgba(101, 101, 101, 0.5921568627); /* 薄い背景 */
}
.services-sec4 .category-item:nth-child(even) {
  background-color: rgba(101, 101, 101, 0.8431372549); /* 濃い背景 */
}
.services-sec4 .category-number {
  font-size: 3rem;
  width: 60px;
}
.services-sec4 .category-name {
  text-align: center;
  flex: 1;
  font-size: 2rem;
}

.services-sec5 {
  padding-bottom: 0rem;
  position: relative;
  z-index: 2;
  /* モバイル対応 */
}
.services-sec5 .flow-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
  z-index: 1;
}
.services-sec5 .flow-section :last-child {
  margin-bottom: 0;
}
.services-sec5 .flow-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.8rem;
}
.services-sec5 .step {
  display: flex;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.services-sec5 .step-text {
  flex: 1;
  padding: 4rem 6rem;
}
.services-sec5 .step-label {
  font-size: 2.8rem;
  margin-right: 0.5rem;
}
.services-sec5 .step-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.services-sec5 .step-text p {
  margin: 0.5rem 0;
  color: #333;
  line-height: 1.6;
}
.services-sec5 .step img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-sec5 .step-image {
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .services-sec5 .step-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .services-sec5 .step-text p {
    color: #000000;
    font-size: 14px;
  }
  .services-sec2 .overlay {
    padding-bottom: 0;
  }
  .services__page .breadcrumbs {
    margin-bottom: 4rem;
  }
  .services {
    transform: scale(0.8);
  }
  .services-sec2 {
    transform: scale(0.8);
  }
  .services-sec3 {
    transform: scale(0.8);
  }
  .services-sec3-h3 {
    font-size: 2.4rem;
    padding-bottom: 10rem;
  }
  .services-sec4 img,
  .services-sec4 h2,
  .services-sec4 .category-list-wrap {
    transform: scale(0.8);
  }
  .services-sec4 .category-list-wrap {
    padding: 0.5rem 1.5rem;
  }
  .services-sec5 {
    transform: scale(0.8);
  }
  .services__page__ttl {
    padding-bottom: 12rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 1023px) {
  .commitment__wrap {
    padding: 0 2rem;
  }
  .page-company .company__wrap {
    padding: 0 2rem;
  }
  .services-sec3 .commitment__wrap {
    padding: 0;
  }
  .services-sec4 .ttl,
  .services-sec4 .subttl,
  .services-sec5 .ttl,
  .services-sec5 .subttl {
    padding: 0 2rem !important;
  }
}
@media screen and (max-width: 1023px) {
  .page-company .company-info .ttl,
  .page-company .company-info .subttl {
    transform: scale(1) !important;
  }
  .services-sec2 .subttl {
    margin-bottom: 0rem !important;
  }
  .services__page .services {
    margin-bottom: 10rem;
  }
  .services-sec4 .category-list {
    margin-bottom: 10rem;
  }
  .services-sec3 {
    padding: 0 2rem;
  }
  .services-sec3 .commitment__wrap {
    margin-bottom: 0rem;
  }
  .services__page .breadcrumbs {
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .services .br-768-1 {
    display: flex;
  }
  .services__bg2 {
    position: relative;
  }
  .services__bg2 img {
    bottom: -120px;
  }
  .services-sec2 .overlay {
    padding-bottom: 10rem;
  }
  .services__page .page__fv {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-image: url(../../img/service-fv.jpg);
  }
  .services__page .page__fv__wrap {
    position: absolute;
    left: 0;
    bottom: 70px;
    padding: 5rem 1rem;
  }
  .services__page .page__fv h1 {
    opacity: 0;
  }
  .services__grid--top {
    display: flex;
    justify-content: center;
    gap: 5rem;
    row-gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .services__item {
    text-align: left;
    max-width: 36%;
  }
  .services__item p {
    position: relative;
    left: -22px;
    white-space: nowrap;
    font-size: 15px;
  }
  .services__label {
    padding: 4px 8px;
    font-size: 2.4rem;
  }
  .services__grid--bottom {
    flex-wrap: wrap;
    gap: 5rem;
    row-gap: 2rem;
  }
  .services__text2 {
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: "STIX Two Text", serif;
  }
  .services-sec2 .box {
    position: absolute;
    background-color: #ffffff;
    padding: 1rem 4rem;
    font-size: 1.6rem;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 1.5rem 0 0 0;
    text-align: left;
  }
  .services-sec2 .box1 {
    top: -50px;
  }
  .services-sec2 .box2 {
    top: -50px;
    right: 0px;
  }
  .services-sec2 .box3 {
    top: 140px;
    left: 0px;
  }
  .services-sec2 .box4 {
    top: 140px;
    right: 0px;
  }
  .services-sec2 .box5 {
    top: 330px;
  }
  .services-sec2 .box6 {
    top: 330px;
    right: 0;
  }
  .services-sec2 .box7 {
    display: none;
    top: 520px;
    left: 0px;
  }
  .services-sec2 .box-container .services-sec2__img2 {
    position: relative;
    left: 0px;
  }
  .services-sec2 .box-container img {
    max-width: 60vw;
    margin-bottom: 10rem;
  }
  .services-sec3 .reason-number {
    font-size: 3.2rem;
  }
  .services-sec4 .category-number {
    font-size: 3.2rem;
  }
  .services-sec3 .reason-section h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .services-sec2 {
    margin-bottom: 8rem;
  }
  .services-sec2 .box-container img {
    max-width: 60vw;
    margin-bottom: 20rem;
  }
  .services-sec3 .reason-block p {
    font-size: 1.4rem;
  }
  .services-sec2 .box {
    position: absolute;
    background-color: #ffffff;
    padding: 3rem;
    font-size: 1.4rem;
  }
  .services-sec2 .box1 {
    top: -115px;
  }
  .services-sec2 .box2 {
    top: -115px;
    right: 0px;
  }
  .services-sec2 .box3 {
    top: 122px;
    left: 0px;
    padding: 4rem 3rem;
  }
  .services-sec2 .box4 {
    top: 120px;
    right: 0px;
  }
  .services-sec2 .box5 {
    top: 390px;
    right: 0;
  }
  .services-sec2 .box6 {
    top: 390px;
    right: unset;
  }
  .services-sec2 .box7 {
    display: none;
    top: 520px;
    left: 0px;
  }
  .services-sec3 .reason-section * {
    text-align: center;
  }
  .services-sec4 .category-list-wrap {
    padding: 1.2rem 9rem;
  }
  .services-sec5 .step-text {
    flex: unset;
    padding: 3rem 4rem;
    width: 70%;
  }
  .services-sec5 .step-label {
    font-size: 2.6rem;
  }
  .services-sec5 .step {
    margin-bottom: 6rem;
    border-radius: 24px;
  }
  .services__page__ttl {
    font-size: 2.4rem;
    padding-bottom: 4rem;
  }
  .services-sec2 .overlay {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .services-sec2 .services__page__ttl {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
  .services__bg3 {
    max-width: clamp(10rem, 64vw, 64rem);
    opacity: 0.3;
    position: absolute;
    top: -35px;
    left: -31px;
  }
  .services__bg4 {
    right: -5rem;
  }
  .services__bg2 img {
    bottom: -98px;
    max-width: clamp(10rem, 60vw, 68rem);
  }
  .services {
    padding-bottom: 18rem;
    position: relative;
    margin-bottom: 1rem;
  }
  .services__bg {
    left: unset;
    right: 0;
    width: 52%;
    top: 65px;
  }
  .services-sec4 .category-name {
    font-size: 1.6rem;
  }
  .services-sec4 .category-number {
    font-size: 2.8rem;
    width: 20px;
  }
  .services-sec5 .step-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .services-sec3 .reason-section {
    margin-bottom: 8rem;
  }
  .services-sec5 .flow-section {
    padding-top: 0;
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .services-sec4 {
    margin-bottom: 0rem;
  }
  .services-sec5 {
    padding-bottom: 12rem;
  }
  .popup-content {
    padding: 40px 15px;
  }
  .box-sp {
    position: relative;
  }
  .box-sp * {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .box-sp .box-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .box-sp .box-flex .box {
    width: 100%;
    max-width: 45%;
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .box-sp .box-flex .ib {
    display: inline-block;
    text-align: left;
  }
  .box-sp img {
    margin: 2rem auto !important;
  }
  .services-sec3 {
    margin-bottom: 4rem;
  }
  .services__page .services {
    padding-bottom: 0rem;
    margin-bottom: 7rem;
  }
}
.page-company .company__subtitle {
  font-size: 2.8rem !important;
}
.page-company .page__fv {
  position: relative;
  background-image: url(../../img/company-fv2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page-company .company {
  padding: 8rem 0;
}
.page-company .company__info {
  background: unset;
  color: #000000;
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
  z-index: 3;
  padding: 5rem 0rem !important;
}
.page-company .company__info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4196078431);
  border-radius: 0 4rem 4rem 0;
  z-index: 0;
}
.page-company .company__container img {
  z-index: 4;
  top: 23%;
}
.page-company .company__list {
  position: relative;
  margin-left: 0;
  z-index: 3;
  margin: 0 auto;
}
.page-company .company__container {
  position: relative;
  margin-bottom: 16rem;
  z-index: 0;
}
.page-company .company__text {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-company .company__text .company__subtitle {
  padding-left: 0;
  margin-bottom: 4rem;
}
.page-company .company__text-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.page-company .company__text-wrap p {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.8;
}
.page-company .sign {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-company .sign img {
  max-width: 300px;
}
.page-company .company-info {
  background: rgba(255, 255, 255, 0.4196078431);
  border-radius: 4rem;
  padding: 6rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
}
.page-company .company-info .ttl,
.page-company .company-info .subttl {
  transform: scale(0.8);
}
.page-company .info-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 6rem;
}
.page-company .info-row {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 2rem;
}
.page-company .info-row dt {
  width: 20%;
  font-size: 1.6rem;
}
.page-company .info-row dd {
  font-size: 1.6rem;
  width: 80%;
  margin: 0;
}
.page-company .bg {
  padding-bottom: 16rem;
}

@media screen and (min-width: 1024px) {
  .page-company .company__text {
    padding: 0;
  }
  .page-company .company-info {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .page-company .company-info {
    padding: 6rem 2rem;
    width: 95%;
    border-radius: 2rem;
  }
  .page-company .info-row dt {
    width: 30%;
    font-size: 1.6rem;
  }
  .page-company .company__list {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company .company__container {
    position: relative;
    margin-bottom: 44rem;
  }
  .page-company .company__info:before {
    content: "";
    position: absolute;
    width: 70%;
  }
  .page-company .company__container img {
    top: 130%;
  }
}
@media screen and (max-width: 500px) {
  .company__list li {
    font-size: 1.6rem;
  }
  .page-company .company__text-wrap p {
    padding: 0rem;
  }
  .company__list span {
    width: 45px;
  }
  .page-company .company__info:before {
    content: "";
    position: absolute;
    width: 95%;
  }
  .page-company .info-list {
    margin-bottom: 0rem;
  }
  .page-company .company-info {
    padding: 4rem 2rem;
  }
}
.page-contact .page__fv {
  position: relative;
  background-image: url(../../img/contact-fv.JPG);
}
.page-contact .page__contact-wrap {
  padding: 16rem 0;
}
.page-contact .page__contact-wrap .wpcf7-spinner {
  display: none;
}
.page-contact .page__contact-wrap h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 4rem;
  margin-top: 4rem;
}
.page-contact .page__contact-wrap .wpcf7-form {
  background: rgba(255, 255, 255, 0.6745098039);
  padding: 4rem 8rem;
  border-radius: 20px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
}
.page-contact .page__contact-wrap .wpcf7-form p * {
  font-size: 1.6rem !important;
}
.page-contact .page__contact-wrap .form-select {
  width: 100%;
  padding: 4px 10px 4px 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 8px;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.page-contact .page__contact-wrap .wpcf7-form label {
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}
.page-contact .page__contact-wrap .form-input,
.page-contact .page__contact-wrap .form-textarea {
  width: 100%;
  padding: 4px 10px 4px 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 8px;
  box-sizing: border-box;
}
.page-contact .page__contact-wrap .form-textarea {
  height: 150px;
  resize: vertical;
}
.page-contact .page__contact-wrap .privacy-check {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 20px;
}
.page-contact .page__contact-wrap .submit-wrap {
  text-align: center;
}
.page-contact .page__contact-wrap .submit-button {
  margin: 0 auto;
  margin-top: 30px;
  padding: 14px 5rem;
  font-size: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.page-contact .page__contact-wrap .submit-button:hover {
  background: #333;
}
.page-contact .page__contact-wrap .required {
  color: #ff0000;
}
.page-contact .thanks {
  padding: 10rem 0;
  font-size: 3.2rem;
}

@media screen and (max-width: 500px) {
  .page-contact .page__contact-wrap .wpcf7-form {
    background: rgba(255, 255, 255, 0.6745098039);
    padding: 4rem 3rem;
    border-radius: 1rem;
    max-width: 95%;
  }
  .page-contact .page__contact-wrap h2 {
    text-align: center;
    font-size: 2.4rem;
  }
  .page-contact .page__contact-wrap {
    padding-top: 0 !important;
  }
  .page-contact .breadcrumbs {
    margin-bottom: 12rem;
  }
}
* {
  font-family: "TheanoDidot-Regular";
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 400;
}

@font-face {
  font-family: "STIXTwoMath-Regular";
  src: url("../../fonts/STIXTwoMath-Regular.woff") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TheanoDidot-Regular";
  src: url("../../fonts/TheanoDidot-Regular.woff") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
}

a {
  display: block;
  font-weight: 400;
  transition: 0.5s;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
  transition: 0.7s;
}

main {
  background-color: #ffffff;
  overflow: hidden;
}

section {
  overflow: hidden;
}

input[type=text]:focus {
  outline: 0;
  background-color: #ffffff;
}

.top__h1 {
  position: absolute;
  font-size: 0.8rem;
  z-index: -5;
}

.js {
  font-family: "Josefin Sans", sans-serif;
}

.zom {
  font-family: "Zen Old Mincho", serif;
}

.title {
  display: flex;
  align-items: center;
}
.title img {
  max-width: 120px;
  position: relative;
}

.ttl {
  font-size: 6rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 0.8;
  font-family: "fleur", sans-serif;
}

.subttl {
  font-size: 1.6rem;
  font-family: "STIX Two Text", serif;
}

.btn {
  display: inline-block;
  font-size: 1.6rem;
  border: solid 2px #000000;
  padding: 15px 50px;
  border-radius: 30px;
  background-color: #ffffff;
}

#wave-text {
  text-align: center;
  display: inline-block;
  white-space: normal; /* ←こちらもnormalに */
}

#wave-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wave-up 0.6s forwards;
}

#wave-text {
  visibility: hidden;
}

#wave-text1 {
  display: inline-block;
  white-space: normal; /* ←こちらもnormalに */
}

#wave-text1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wave-up 0.6s forwards;
}

#wave-text1 {
  visibility: hidden;
}

@keyframes wave-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slick-prev:before {
  content: none !important;
}

.slick-next:before {
  content: none !important;
}

.cta__line {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  background-color: #06c755;
  border-radius: 10px;
  height: 70px;
  justify-content: center;
  padding: 10px 20px;
}
.cta__line > span {
  color: #ffffff;
  font-size: 2.4rem;
  text-align: left;
  margin-left: 10px;
  line-height: 1.3;
}
.cta__line .yellow {
  color: #ffde59;
  margin-left: 0;
}
.cta__line img {
  max-width: 50px;
}

.cta__mail {
  max-width: 90%;
  margin: 10px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0076cb;
  border-radius: 10px;
  height: 70px;
  padding: 10px 20px;
}
.cta__mail > span {
  color: #ffffff;
  font-size: 2.4rem;
  text-align: left;
  margin-left: 10px;
  line-height: 1.3;
}
.cta__mail .yellow {
  color: #ffde59;
  margin-left: 0;
}
.cta__mail img {
  max-width: 50px;
}

iframe {
  width: 100%;
}

.br-500-1 {
  display: none !important;
}

::-moz-placeholder {
  color: #bababa;
}

::placeholder {
  color: #bababa;
}

.preview {
  margin-bottom: 0px;
  padding-bottom: 8rem;
}
.preview .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.preview .page-numbers li {
  color: #505050;
  border: 1px solid #aaaaaa;
  border-right: none;
  background-color: #ffffff;
  border-radius: 50% !important;
  margin: 0 0.6rem;
}
.preview .page-numbers li:first-child {
  border-radius: 5px 0 0 5px;
}
.preview .page-numbers li:last-child {
  border-right: 1px solid #aaaaaa;
  border-radius: 0 5px 5px 0;
}
.preview .page-numbers li span,
.preview .page-numbers li a {
  padding: 5px 15px;
}
.preview .next {
  color: #707070;
}
.preview .current {
  background-color: #505050;
  color: #ffffff;
  border-radius: 50% !important;
}

.single-post .page__sale__inner {
  padding-left: 20px;
}
.single-post .page__sale__inner * {
  font-size: 14px;
}
.single-post .page__sale__inner a {
  padding-left: 10px;
  color: #5b94ce;
}
.single-post .page__sale__inner div {
  display: flex;
  align-items: center;
}

.paged-2 .page__sale__inner-wrap {
  display: none;
}

.fade-u {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
}

.fade-u.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-l {
  opacity: 0.5;
  transform: translateX(-50px);
  transition: opacity 0.2s ease-in-out, transform 0.5s ease-in-out;
}

.fade-l.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-r {
  opacity: 0.5;
  transform: translateX(50px);
  transition: opacity 0.2s ease-in-out, transform 0.5s ease-in-out;
}

.fade-r.is-visible2 {
  opacity: 1;
  transform: translateX(0);
}

.article {
  display: none;
  position: fixed;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.article {
  display: flex;
  width: 100%;
}
.article .line {
  width: 100%;
  max-width: 100%;
}
.article .line:hover {
  opacity: 1;
  transform: initial;
}
.article .cta__line,
.article .cta__mail {
  max-width: 100%;
  height: 60px;
  margin-bottom: 0;
  border-radius: 0;
}
.article .cta__line > span,
.article .cta__mail > span {
  font-size: 1.6rem;
}

.page-id-2627 .article,
.page-id-2648 .article {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border-color: #46b450;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1em 2em;
  font-size: 1.6rem;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

.error404 section {
  padding-bottom: 200px;
  padding-top: 200px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.br-1023 {
  display: none;
}

.br-768-1 {
  display: none;
}

.trans {
  transform: scale(0.6);
}

.nav-links {
  transform: scale(0.6);
}

.services__page .ttl {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.services__page .subttl {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 5rem;
  margin-top: 1rem;
}

.services-sec2 .subttl {
  margin-bottom: 10rem;
}

.page-company .ttl {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.page-company .subttl {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 10rem;
  margin-top: 1rem;
}

.wpcf7 select,
.wpcf7 select option {
  font-family: "STIX Two Text", serif;
  font-size: 16px; /* フォントサイズ */
  color: #333; /* 文字色 */
}

@media screen and (max-width: 1200px) {
  .title h1 {
    font-size: 4rem;
  }
  .title span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 1023px) {
  .services-sec2 .box-container {
    transform: scale(0.8);
  }
}
@media screen and (min-width: 1024px) {
  .p-flex {
    display: flex;
  }
  .subttl {
    font-size: 1.9rem;
  }
  html {
    font-size: 50%; /* 通常の14px程度 (デフォルト16pxの87.5%) */
  }
  .commitment__wrap .ttl {
    padding-left: 2px;
  }
  .commitment__item {
    max-width: 880px;
    margin: 0 auto;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 1023px) {
  .commitment__wrap {
    margin-bottom: 16rem;
  }
  .br-1023 {
    display: block;
    opacity: 0.1;
    position: absolute;
    height: 100vh;
  }
  .title {
    opacity: 1;
  }
  #wave-text {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .br-768-1 {
    display: block;
  }
  .br-768 {
    display: none;
  }
  .head__wrap .head::before {
    display: none;
  }
  .head__wrap .head::after {
    display: none;
  }
  .ttl {
    font-size: 7rem !important;
  }
}
@media screen and (max-width: 500px) {
  .services__page .ttl {
    padding-left: 2rem;
  }
  .services__page .subttl {
    padding-left: 2rem;
  }
  .page-company .ttl {
    padding-left: 2rem;
  }
  .page-company .subttl {
    padding-left: 2rem;
  }
  .services .ttl,
  .services-sec2 .ttl,
  .services-sec3 .ttl,
  .company__text .ttl {
    padding-left: 0rem;
  }
  .services .subttl,
  .services-sec2 .subttl,
  .services-sec3 .subttl,
  .company__text .subttl {
    padding-left: 0rem;
  }
  .company__text .ttl {
    margin-bottom: 0.5rem;
  }
  .services__page .subttl {
    margin-bottom: 4rem;
  }
  .page-company .subttl {
    margin-bottom: 4rem;
  }
  .page-company .company-info .ttl,
  .page-company .company-info .subttl {
    transform: scale(1);
    padding-left: 0rem;
  }
  .title h1 {
    font-size: 3rem;
  }
  .article {
    display: flex;
    width: 100%;
  }
  .article .line {
    max-width: 100%;
  }
  .article .line:hover {
    opacity: 1;
    transform: initial;
  }
  .article .cta__line,
  .article .cta__mail {
    max-width: 100%;
    height: 60px;
    margin-bottom: 0;
    border-radius: 0;
  }
  .article .cta__line > span,
  .article .cta__mail > span {
    font-size: 1.6rem;
  }
  .br-500-1 {
    display: block !important;
  }
  .ttl {
    font-size: 5rem !important;
    padding: 0px 10px;
    line-height: 0.7;
  }
  .subttl {
    margin-top: 1rem;
  }
  .br-500 {
    display: none !important;
  }
  .btn {
    padding: 12px 35px;
  }
  .head {
    font-size: 2.4rem;
  }
  .marker:after {
    width: 308px;
    height: 118px;
  }
  .title span {
    font-size: 1.6rem;
  }
  .blog .head {
    margin-bottom: 20px;
  }
  .cta__line img,
  .cta__mail img {
    max-width: 40px;
  }
  .cta__line,
  .cta__mail {
    max-width: 90%;
    height: 60px;
  }
  .cta__line > span,
  .cta__mail > span {
    font-size: 2.2rem;
  }
  .line {
    width: 100%;
  }
  .fade-l {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }
  .fade-r {
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }
  .sale__ttl,
  .syaken__ttl {
    margin-bottom: 20px;
  }
  .sale__inner2 .head {
    margin-bottom: 10px;
  }
  .breadcrumbs span[property=name] {
    display: inline-block;
    max-width: 120px; /* 必要に応じて調整 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
  }
  .page__fv-ttl {
    line-height: 0.8 !important;
  }
}/*# sourceMappingURL=style.css.map */