@charset "UTF-8";
@keyframes underline-exit {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  40% {
    transform: scaleX(0.1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes underline-hover {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes current {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes rotateText {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(360deg);
  }
}
@keyframes rightToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes leftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --enji02: #76161b;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--black02);
  background: #fff;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
  position: relative;
}
@media screen and (max-width:768px) {
  body {
    font-size: 1.5rem;
  }
}

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

a {
  color: var(--text-black);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, back-ground 0.3s ease-in-out, color 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

section {
  padding: 150px 0;
}
@media screen and (max-width:768px) {
  section {
    padding: 80px 0;
  }
}
section .sec-ttl-wrapper {
  margin-bottom: 60px;
}

.inner {
  width: 84.9194729136%;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .inner {
    width: 88.2666666667%;
  }
}

.ta-c {
  text-align: center;
}

.ta-j {
  text-align: justify;
}

.ta-r {
  text-align: right;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

address {
  font-style: normal;
  text-decoration: none;
}

.btn-menu {
  display: none;
  width: 64px;
  height: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  border-radius: 20px;
  color: white;
  right: 5.9701492537vw;
  z-index: 9999;
}
@media screen and (max-width:768px) {
  .btn-menu {
    display: block;
  }
}

.has-hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--enji-gousei);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 1;
}
.has-hover-line:hover::after {
  -webkit-animation: underline-hover 0.2s ease forwards;
  animation: underline-hover 0.2s ease forwards;
}
.has-hover-line:not(:hover)::after {
  -webkit-animation: underline-exit 0.8s ease forwards;
  animation: underline-exit 0.8s ease forwards;
}

.pageCover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.pageCover.show {
  visibility: hidden;
}
.pageCover.show .bges span {
  transform: translateX(101%);
}
.pageCover .bges span {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transition: 0.8s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0.1s;
}
.pageCover .bges span.bg-2 {
  background: white;
  transition: 0.8s cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

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

.sec-ttl01 {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .sec-ttl01 {
    margin-bottom: 30px;
  }
}
.sec-ttl01 .sub-ttl {
  color: var(--enji-gousei);
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .sec-ttl01 .sub-ttl {
    font-size: 1.4rem;
  }
}
.sec-ttl01 .sec-ttl {
  font-weight: 500;
  font-size: clamp(38px, 3.074670571vw, 42px);
  line-height: 1.5;
}

.btn01 {
  width: 190px;
  height: 45px;
  border: 1px solid var(--enji-gousei);
  color: var(--enji-gousei);
  background: var(--enji-gousei);
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  background-size: contain;
  text-align: left;
  padding: 12px 20px 11px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
  margin-top: 60px;
}
@media screen and (max-width:768px) {
  .btn01 {
    margin-top: 30px;
  }
}
.btn01 .btn-text {
  color: white;
  transition: color 0.3s var(--cubic-bezier);
  z-index: 1;
  position: relative;
  display: block;
}
.btn01 .btn-bg {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--enji-gousei);
}
.btn01 .btn-bg::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: 0.3s var(--cubic-bezier);
}
.btn01::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  top: 50%;
  right: -12px;
  width: 28px;
  background: var(--gray02);
  transition: transform 0.3s var(--cubic-bezier);
  transform: translateX(0);
  z-index: 2;
}
.btn01:hover::before {
  transform: translateX(6px);
}
.btn01:hover .btn-text {
  color: var(--enji-gousei);
}
.btn01:hover .btn-bg::after {
  left: 0;
  width: 100%;
}

.btn02 {
  width: 190px;
  height: 45px;
  color: var(--enji-gousei);
  background: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  background-size: contain;
  text-align: left;
  padding: 12px 20px 11px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
  margin-top: 60px;
}
.btn02 .btn-text {
  color: var(--enji-gousei);
  transition: color 0.3s var(--cubic-bezier);
  z-index: 1;
  position: relative;
  display: block;
}
.btn02::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  top: 50%;
  right: -12px;
  width: 28px;
  background: var(--gray02);
  transition: transform 0.3s var(--cubic-bezier);
  transform: translateX(0);
  z-index: 2;
}
.btn02:hover::before {
  transform: translateX(6px);
}
.btn02:hover .btn-text {
  color: var(--orange01);
}

.btn03 {
  width: 190px;
  height: 45px;
  color: var(--enji-gousei);
  background: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  background-size: contain;
  text-align: left;
  padding: 12px 20px 11px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
  margin-top: 60px;
}
.btn03 .btn-text {
  color: var(--enji-gousei);
  transition: color 0.3s var(--cubic-bezier);
  z-index: 1;
  position: relative;
  display: block;
}
.btn03::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  top: 50%;
  right: -12px;
  width: 28px;
  background: var(--gray02);
  transition: transform 0.3s var(--cubic-bezier);
  transform: translateX(0);
  z-index: 2;
}
.btn03:hover {
  background: var(--orange01);
}
.btn03:hover::before {
  transform: translateX(6px);
}
.btn03:hover .btn-text {
  color: white;
}

.lh21 {
  line-height: 2.1;
}

.text {
  text-align: justify;
}

.pr3 {
  padding-right: 3em;
}

a:hover .img-ov img {
  transform: scale(1.1);
}

.img-ov {
  backface-visibility: hidden;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.img-ov img {
  transition: all 0.3s var(--cubic-bezier) 0s;
}

.fade-img-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fade-img-wrapper img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--orange01);
  transform: translateX(0);
  transition: transform 1s ease;
  z-index: 2;
}
.fade-img-wrapper.show img {
  opacity: 1;
  transform: translateY(0);
}
.fade-img-wrapper.show::before {
  transform: translateX(101%);
}

.page-ttl-area {
  height: 300px;
}
@media screen and (max-width:768px) {
  .page-ttl-area {
    height: 160px;
  }
}
.page-ttl-area .inner {
  position: relative;
}
.page-ttl-area .bg {
  margin-right: calc(50% - 50vw);
  height: 300px;
  padding-left: 103px;
  display: block;
}
@media screen and (max-width:768px) {
  .page-ttl-area .bg {
    height: 160px;
    padding-left: 0;
  }
}
.page-ttl-area .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-ttl01 {
  color: var(--black02);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-ttl01 .sub-ttl {
  font-size: 1.8rem;
  color: var(--black02);
  font-weight: 600;
  height: 29px;
  background-color: white;
  width: fit-content;
  padding: calc(var(--leading-trim) + 5px) 8px;
  padding-left: 0;
  margin-bottom: 6px;
  white-space: nowrap;
}
.page-ttl01 .sub-ttl .br-space {
  display: none;
}
.page-ttl01 .sub-ttl .br-space br {
  display: none;
}
@media screen and (max-width:768px) {
  .page-ttl01 .sub-ttl {
    font-size: 1.5rem;
    margin-bottom: 0;
    padding-left: 8px;
    height: 24px;
  }
}
.page-ttl01 .page-ttl {
  font-size: 5.5rem;
  background: white;
  line-height: 66px;
  padding: calc(var(--leading-trim) + 5px) 8px;
  padding-left: 0;
  height: 66px;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .page-ttl01 .page-ttl {
    font-size: 3.2rem;
    padding: calc(var(--leading-trim) + 5px) 10px;
    padding-left: 8px;
    height: 48px;
    line-height: 48px;
  }
}

.breadcrumb {
  font-size: 1.3rem;
  padding: 10px 0;
  text-align: right;
}
@media screen and (max-width:768px) {
  .breadcrumb {
    padding: 6px 0;
  }
}
.breadcrumb .current-item {
  font-weight: 600;
}

.lower {
  overflow: hidden;
}

.sec-ttl02 {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.sec-ttl02::before {
  content: "";
  height: 2px;
  width: 0.8em;
  background: var(--enji02);
  margin-right: 0.5em;
}

.sec-ttl05 {
  font-size: clamp(22px, 2.0497803807vw, 28px);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .sec-ttl05 {
    margin-bottom: 30px;
  }
}
.sec-ttl05::before {
  content: "";
  height: 2px;
  width: 0.8em;
  background: var(--enji02);
  margin-right: 0.5em;
}

.sec-ttl03 {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .sec-ttl03 {
    margin-bottom: 30px;
  }
}
.sec-ttl03 .sub-ttl {
  font-size: clamp(16px, 2.196193265vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.sec-ttl03 .sec-ttl {
  color: var(--enji-gousei);
  font-size: clamp(28px, 2.635431918vw, 36px);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.sec-ttl03 .sec-ttl::before {
  content: "";
  width: 0.6em;
  height: 2px;
  background: var(--enji-gousei);
  margin-right: 0.3em;
}

.sec-ttl04 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .sec-ttl04 {
    margin-bottom: 30px;
  }
}
.sec-ttl04 .sub-ttl {
  font-weight: 700;
  font-size: clamp(16px, 2.196193265vw, 30px);
  line-height: 1.5;
  margin-bottom: 14px;
}
@media screen and (max-width:768px) {
  .sec-ttl04 .sub-ttl {
    margin-bottom: 10px;
  }
}
.sec-ttl04 .sec-ttl {
  color: var(--enji-gousei);
  font-weight: 600;
  font-size: clamp(28px, 2.635431918vw, 36px);
}

.lower {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lower.show {
  opacity: 1;
  transform: translateY(0);
}

.pagination {
  justify-content: center;
  align-items: center;
  position: relative;
}
.pagination .pager-item a,
.pagination .pager-item span {
  width: 31px;
  height: 32px;
  display: block;
  line-height: 32px;
  margin: 0 5px;
  text-align: center;
  transition: all 0.3s var(--cubic-bezier);
}
.pagination .pager-item .current {
  background: var(--enji-gousei);
  color: white;
}
.pagination .pager-item:hover a {
  background: var(--enji-gousei);
  color: white;
}
.pagination .pager-item.next, .pagination .pager-item.prev {
  position: absolute;
}
.pagination .pager-item.next a, .pagination .pager-item.prev a {
  width: fit-content;
  margin: 0;
}
.pagination .pager-item.next:hover a, .pagination .pager-item.prev:hover a {
  background-color: white;
  color: var(--black02);
}
.pagination .pager-item.next {
  right: 0;
  display: flex;
  align-items: center;
}
.pagination .pager-item.next::after {
  content: "";
  background: url(../../assets/images/arrow-red02.svg) no-repeat center/contain;
  width: 0.5em;
  height: 0.8em;
  display: inline-block;
  margin-left: 0.3em;
}
.pagination .pager-item.prev {
  left: 0;
  display: flex;
  align-items: center;
}
.pagination .pager-item.prev::before {
  content: "";
  background: url(../../assets/images/arrow-red03.svg) no-repeat center/contain;
  margin-right: 0.3em;
  width: 0.5em;
  height: 0.8em;
  display: inline-block;
}

.pagination-top {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.pagination-top .pager-item.next {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
}
.pagination-top .pager-item.next::after {
  content: "";
  background: url(../../assets/images/arrow-red02.svg) no-repeat center/contain;
  width: 0.5em;
  height: 0.8em;
  display: inline-block;
  margin-left: 0.3em;
}
.pagination-top .pager-item.prev {
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
}
.pagination-top .pager-item.prev::before {
  content: "";
  background: url(../../assets/images/arrow-red03.svg) no-repeat center/contain;
  margin-right: 0.3em;
  width: 0.5em;
  height: 0.8em;
  display: inline-block;
}

main.privacy .inner {
  max-width: 920px;
}
main.privacy section {
  padding: 80px 0;
}
@media screen and (max-width:768px) {
  main.privacy section {
    padding: 40px 0;
  }
}
main.privacy .lead {
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  main.privacy .lead {
    margin-bottom: 50px;
  }
}
main.privacy .wp-block-group {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  main.privacy .wp-block-group {
    margin-bottom: 30px;
  }
}
main.privacy .wp-block-group h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  main.privacy .wp-block-group h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
main.privacy .wp-block-group p {
  font-weight: 400;
  line-height: 2;
}
main.privacy p + .wp-block-list {
  margin-top: 1em;
}
main.privacy .wp-block-list li {
  font-weight: 400;
  line-height: 2;
}
main.privacy .wp-block-list li::before {
  content: "・";
}
main.privacy .contact-to .flex {
  justify-content: flex-start;
  margin-bottom: 1em;
  line-height: 2;
  font-weight: 400;
  align-items: flex-start;
}
main.privacy .contact-to .flex dt::before {
  content: "■";
}

main.lower {
  padding-top: 86px;
}
@media screen and (max-width:768px) {
  main.lower {
    padding-top: 64px;
  }
}

/* 管理バー表示中は固定ヘッダーを少し下げる */
.admin-bar header {
  top: 32px;
}

/* スマホ（管理バーが46pxのとき） */
@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 0px;
  }
}
html {
  margin-top: 0 !important;
}

/* SP: max-width 768px では改行を非表示に */
@media screen and (max-width: 768px) {
  .br-space,
  .br-space br {
    display: none !important;
  }
}
/* PC: min-width 769px では表示 */
@media screen and (min-width: 769px) {
  .br-space {
    display: inline;
  }
}
.header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  height: 86px;
  z-index: 20;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  background: rgb(255, 255, 255);
  height: 100%;
}
@media screen and (max-width:768px) {
  .header {
    height: 64px;
  }
}
.header .header-inner {
  width: 100%;
  padding: 0 40px 0 103px;
  margin: 0 auto;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .header .header-inner {
    width: 88.2666666667%;
    padding: 0;
  }
}
.header .header-inner .header-logo {
  width: 300px;
  z-index: 2;
  margin-left: -5px;
}
@media screen and (max-width:768px) {
  .header .header-inner .header-logo {
    width: 197px;
  }
}
.header .header-inner .header-logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.header .header-inner .header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .header-inner .header-nav .gnav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .header-inner .header-nav .gnav-list li {
  margin-left: 2.196193265vw;
}
.header .header-inner .header-nav .gnav-list li a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 5px;
  display: block;
  position: relative;
}
.header .header-inner .header-nav .gnav-list li.contact {
  margin-bottom: 5px;
}
.header .header-inner .header-nav .gnav-list li.contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--enji-gousei);
  border-radius: 20px;
  line-height: 1;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.header .header-inner .header-nav .gnav-list li.contact a:hover {
  background-color: var(--black02);
}
@media screen and (max-width:1140px) {
  .header .header-inner .header-nav {
    display: none;
  }
}

.openbtn {
  display: none;
  position: relative;
  width: 30px;
  height: 33px;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width:1140px) {
  .openbtn {
    display: block;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s var(--cubic-bezier);
  position: absolute;
  left: 0px;
  height: 3px;
  display: block;
  background-color: var(--orange01);
}
.openbtn span:nth-of-type(1) {
  top: 2px;
  width: 100%;
}
.openbtn span:nth-of-type(2) {
  opacity: 0;
  top: 15px;
  width: 100%;
}
.openbtn span:nth-of-type(3) {
  width: 100%;
  background: var(--enji-gousei);
  top: 15px;
}
.openbtn span:nth-of-type(4) {
  top: 28px;
  width: 100%;
}
.openbtn.active span:nth-of-type(1) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 1;
  transform: rotate(135deg);
  z-index: 2;
}
.openbtn.active span:nth-of-type(3) {
  transform: rotate(-135deg);
  z-index: 1;
}
.openbtn.active span:nth-of-type(4) {
  opacity: 0;
}

.menu-panel {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 86px;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 1;
  transition: all 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .menu-panel {
    padding-top: 64px;
  }
}
.menu-panel.panelactive {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  transform: translateX(0);
}
.menu-panel .contents-outer {
  padding-top: 35px;
  padding-bottom: 60px;
}
.menu-panel .gnav-sp {
  width: 88.2666666667%;
  margin: 0 auto;
}
.menu-panel .gnav-list {
  width: fit-content;
  margin: 0 auto 30px;
}
.menu-panel .gnav-list .nav-item:not(:last-child) {
  margin-bottom: 10px;
}
.menu-panel .gnav-list .nav-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
}
.menu-panel .gnav-list .nav-item a::before {
  content: "";
  background-color: var(--enji-gousei);
  height: 2px;
  width: 0.6em;
  margin-right: 0.4em;
  display: inline-block;
}
.menu-panel .bnr-list {
  width: 200px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.menu-panel .bnr-list .item.size-small {
  max-width: 64px;
}
.menu-panel .contact-list {
  display: flex;
  justify-content: space-between;
}
.menu-panel .contact-list .item {
  width: 46.8277945619%;
  height: 70px;
  color: white;
  text-align: center;
}
.menu-panel .contact-list .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.6rem;
  height: 100%;
}
.menu-panel .contact-list .item.contact-email {
  background: var(--enji-gousei);
}
.menu-panel .contact-list .item.contact-email .icon {
  width: 16px;
  height: 12px;
  background: url(../../assets/images/icon-email.svg) no-repeat center/contain;
  margin: 0 auto;
  display: block;
}
.menu-panel .contact-list .item.contact-recruit {
  background-color: var(--orange01);
}
.menu-panel .contact-list .item.contact-recruit .icon {
  width: 13px;
  height: 15px;
  background: url(../../assets/images/icon-user.svg) no-repeat center/contain;
  margin: 0 auto;
  display: block;
}
.menu-panel .contact-list .item .small {
  font-size: 1.1rem;
  line-height: 1;
}

.footer {
  padding: 100px 0 0;
}
@media screen and (max-width:768px) {
  .footer {
    padding: 60px 0 0;
  }
}
.footer .footer-inner {
  max-width: 1160px;
  width: 84.9194729136%;
  margin: 0 auto;
}
.footer .flex-wrapper {
  align-items: flex-start;
  border-bottom: 1px solid var(--gray02);
  padding-bottom: 50px;
}
@media screen and (max-width:940px) {
  .footer .flex-wrapper {
    flex-direction: column;
    padding-bottom: 30px;
  }
}
@media screen and (max-width:940px) {
  .footer .left-contents {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .left-contents .footer-logo {
  width: 353px;
  display: block;
  margin-bottom: 20px;
  margin-left: -7px;
}
@media screen and (max-width:940px) {
  .footer .left-contents .footer-logo {
    width: 278px;
  }
}
.footer .left-contents address {
  margin-bottom: 6px;
}
@media screen and (max-width:940px) {
  .footer .left-contents address {
    margin-bottom: 10px;
  }
}
.footer .left-contents .tel {
  font-weight: 600;
  font-size: 2rem;
}
.footer .left-contents .tel .num {
  font-size: 2.7rem;
}
.footer .right-contents {
  width: 51.8965517241%;
}
@media screen and (max-width:940px) {
  .footer .right-contents {
    width: 100%;
  }
}
.footer .right-contents .footer-nav {
  justify-content: flex-start;
  margin-bottom: 40px;
  align-items: flex-start;
}
.footer .right-contents .footer-nav .nav-list {
  width: 41.5282392027%;
}
@media screen and (max-width:940px) {
  .footer .right-contents .footer-nav .nav-list {
    width: 50%;
  }
}
.footer .right-contents .footer-nav .nav-list:first-child {
  margin-right: 20px;
}
@media screen and (max-width:940px) {
  .footer .right-contents .footer-nav .nav-list:first-child {
    margin-right: 0px;
  }
}
.footer .right-contents .footer-nav .nav-list .item {
  margin-bottom: 10px;
  padding-left: 0.4em;
}
@media screen and (max-width:940px) {
  .footer .right-contents .footer-nav .nav-list .item {
    margin-bottom: 8px;
  }
}
.footer .right-contents .footer-nav .nav-list .item a {
  display: flex;
  align-items: center;
  line-height: 1.6;
}
@media screen and (max-width:940px) {
  .footer .right-contents .footer-nav .nav-list .item a {
    font-size: 1.4rem;
  }
}
.footer .right-contents .footer-nav .nav-list .item a::before {
  content: "";
  height: 2px;
  width: 9px;
  margin-right: 0.3em;
  background-color: var(--enji-gousei);
}
@media screen and (max-width:940px) {
  .footer .right-contents .footer-nav .nav-list .item a::before {
    height: 1px;
  }
}
.footer .right-contents .footer-nav .nav-list .item.none a {
  cursor: default;
  pointer-events: none;
}
.footer .right-contents .footer-nav .nav-list .item.none a::before {
  content: none;
}
.footer .footer-bnr .bnr-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .footer .footer-bnr .bnr-list {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-bnr .bnr-list .item a {
  display: block;
}
@media screen and (max-width:768px) {
  .footer .footer-bnr .bnr-list .item {
    width: 200px;
  }
}
.footer .footer-bnr .bnr-list .item.size-small {
  max-width: 64px;
}
.footer .footer-bottom {
  padding: 40px 0;
}
@media screen and (max-width:768px) {
  .footer .footer-bottom {
    padding: 20px 0;
  }
}
.footer .copy {
  text-align: right;
  font-size: 1.3rem;
  display: block;
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .footer .copy {
    text-align: center;
  }
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --leading-trim: calc((1em - 1lh) / 2);
}

.mv {
  width: 100%;
  position: relative;
  padding-top: 86px;
}
@media screen and (max-width:768px) {
  .mv {
    padding-top: 64px;
  }
}
.mv .mv-swiper {
  width: 100%;
  height: 100%;
}
.mv .mv-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .mv-swiper .swiper-slide-active img,
.mv .mv-swiper .swiper-slide-dupulicate-active img,
.mv .mv-swiper .swiper-slide-prev img {
  animation: current 20s linear infinite normal;
}
.mv .swiper-slide {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.mv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-text-wrapper {
  width: 84.9194729136%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  max-width: 1160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  justify-content: flex-end;
  margin-bottom: 6.0761346999vw;
  transition: color 2s ease;
}
@media screen and (max-width:768px) {
  .mv-text-wrapper {
    position: relative;
    padding-top: 18px;
    transform: none;
    top: auto;
    left: auto;
    color: var(--black02) !important;
    width: 88.2666666667%;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.mv-text-wrapper.white {
  color: white;
}
.mv-text-wrapper.black {
  color: var(--black02);
}
.mv-text-wrapper .main-text {
  font-weight: 700;
  font-size: clamp(38px, 3.6603221083vw, 50px);
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width:768px) {
  .mv-text-wrapper .main-text {
    margin-bottom: 15px;
    line-height: 1.3;
  }
}
.mv-text-wrapper .com-name {
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mv-text-wrapper .com-name::before {
  content: "";
  width: 2em;
  height: 1px;
  background: var(--enji-gousei);
  margin-right: 0.6em;
}
@media screen and (max-width:768px) {
  .mv-text-wrapper .com-name {
    font-size: 1.6rem;
  }
}

.fixed-btn {
  position: fixed;
  z-index: 3;
  right: 30px;
  bottom: 50px;
  background-color: var(--orange01);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 280px;
  gap: 12px;
  height: 80px;
}
@media screen and (max-width:768px) {
  .fixed-btn {
    display: none;
  }
}
.fixed-btn .img-wrapper {
  width: 100px;
  height: 67px;
  overflow: hidden;
}
.fixed-btn .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  transform-origin: center;
  transform: scale(1);
}
.fixed-btn .text-wrapper {
  color: white;
}
.fixed-btn .text-wrapper .text-top {
  font-weight: 600;
  font-size: 1.9rem;
}
.fixed-btn .text-wrapper .hover-under {
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}
.fixed-btn .text-wrapper .hover-under::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: white;
  transition: width 0.1s ease;
}
.fixed-btn .arrow {
  background: url(../../assets/images/arrow-right.svg) no-repeat center;
  display: inline-block;
  margin-left: auto;
  width: 6px;
  height: 12px;
  transition: all 0.3s ease;
  transform: none;
}
.fixed-btn:hover .img-wrapper img {
  transform: scale(1.1);
  transform-origin: center;
}
.fixed-btn:hover .text-wrapper .hover-under::after {
  width: 100%;
}
.fixed-btn:hover .arrow {
  transform: translateX(3px);
}

.top .lead {
  font-size: clamp(22px, 2.3426061493vw, 32px);
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .top .lead {
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

.top-aboutus {
  margin-top: 110px;
  padding-top: 40px;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 40px;
  margin-bottom: 90px;
}
@media screen and (max-width:768px) {
  .top-aboutus {
    padding-top: 50px;
    margin-top: 22px;
    padding-bottom: 70px;
    margin-bottom: 0;
  }
}
.top-aboutus::before {
  content: "";
  background: url(../../assets/images/top-aboutus-text-bg.svg) no-repeat left center;
  background-size: contain;
  height: 100%;
  width: 16.1054172767vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width:940px) {
  .top-aboutus::before {
    background: url(../../assets/images/top-aboutus-text-bg.svg) no-repeat top left;
    width: 38.9333333333vw;
    position: absolute;
    background-size: contain;
    top: 0;
    left: 0;
    transform: none;
    transform: none;
    height: 102.6666666667vw;
  }
}
.top-aboutus .flex-wrapper {
  gap: 64px;
  align-items: flex-end;
}
@media screen and (max-width:940px) {
  .top-aboutus .flex-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.top-aboutus .img-wrapper {
  width: 53.7335285505vw;
  margin-right: calc(50% - 50vw);
  height: 550px;
  overflow: hidden;
}
@media screen and (max-width:940px) {
  .top-aboutus .img-wrapper {
    width: 100%;
    margin-right: 0;
    height: auto;
  }
}
.top-aboutus .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-aboutus .text-wrapper {
  flex: 1;
  padding-left: 75px;
}
@media screen and (max-width:940px) {
  .top-aboutus .text-wrapper {
    padding-left: 0;
  }
}
@media screen and (max-width:768px) {
  .top-aboutus .text-wrapper .text {
    padding-right: 0;
    line-height: 1.7;
  }
}
.top-aboutus .text-wrapper .lead {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .top-aboutus .text-wrapper .lead {
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

.top-movie {
  padding-top: 110px;
  padding-bottom: 93px;
  position: relative;
}
@media screen and (max-width:768px) {
  .top-movie {
    padding-top: 60px;
    padding-bottom: 75px;
  }
}
.top-movie::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60.7613469985%;
  background: var(--enji-gousei);
  height: 100%;
  z-index: -1;
}
.top-movie .inner {
  padding: 0 20px;
}
@media screen and (max-width:768px) {
  .top-movie .inner {
    padding: 0;
  }
}
.top-movie .iframe-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 1122/650;
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper {
    padding: 0;
    aspect-ratio: 331/250;
  }
}
.top-movie .iframe-wrapper.movie {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper.movie {
    margin-bottom: 30px;
  }
}
.top-movie .iframe-wrapper h3 {
  font-size: clamp(20px, 3.8799414348vw, 53px);
  margin-top: 10vw;
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper h3 {
    margin-top: 20.5333333333vw;
    line-height: 1.5;
  }
}
.top-movie .iframe-wrapper .sub-ttl {
  margin-bottom: 24px;
  line-height: 2.1;
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper .sub-ttl {
    margin-bottom: 0px;
  }
}
.top-movie .iframe-wrapper .rotating-text {
  width: 118px;
  height: 118px;
  animation: rotateText 15s linear infinite;
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper .rotating-text {
    width: 60px;
    height: 60px;
  }
}
.top-movie .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-movie .iframe-wrapper .custom-thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.top-movie .iframe-wrapper .custom-thumbnail .overlay {
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  flex-direction: column;
  pointer-events: none;
  background-color: rgba(3, 3, 3, 0.2);
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper .custom-thumbnail .overlay {
    justify-content: flex-start;
  }
}
.top-movie .iframe-wrapper .fade-out {
  animation: fadeOut 0.5s forwards;
}
.top-movie .iframe-wrapper .fade-in {
  animation: fadeIn 0.5s forwards;
}
.top-movie .iframe-wrapper .play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  position: relative;
}
.top-movie .iframe-wrapper .play-btn:hover .icon-play {
  transform: scale(1.1) translate(-30%, -50%);
  transform-origin: center;
}
.top-movie .iframe-wrapper .play-btn .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
  transform-origin: center;
}
@media screen and (max-width:768px) {
  .top-movie .iframe-wrapper .play-btn .icon-play {
    width: 12px;
    height: 12px;
  }
}

.slide-text-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: -100px;
}
@media screen and (max-width:768px) {
  .slide-text-wrapper {
    margin-top: -55px;
  }
}
.slide-text-wrapper .slide-text-content {
  display: flex;
  width: max-content;
}
.slide-text-wrapper .slide-text-content.top {
  animation: rightToLeft 40s linear infinite;
}
.slide-text-wrapper .slide-text-content.bottom {
  animation: leftToRight 40s linear infinite;
}
@media screen and (max-width:768px) {
  .slide-text-wrapper .slide-text-content.bottom {
    margin-top: -10px;
  }
}
.slide-text-wrapper .item {
  display: flex;
  align-items: center;
  margin-right: 30px;
  white-space: nowrap;
}
.slide-text-wrapper .item img {
  height: 120px;
  width: 170px;
  object-fit: cover;
  margin-left: 30px;
  display: inline-block;
}
@media screen and (max-width:768px) {
  .slide-text-wrapper .item img {
    width: 150px;
    height: 85px;
    margin-left: 20px;
  }
}
.slide-text-wrapper .item span {
  color: var(--orange01);
  font-weight: 700;
  font-size: clamp(96px, 11.7130307467vw, 160px);
  line-height: 1.1;
  display: inline-block;
}

.top-services {
  overflow: hidden;
}
.top-services .sec-head.flex-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 95px;
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 80px;
  }
}
.top-services .sec-head.flex-wrapper .text-wrapper {
  width: 35.4310344828%;
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper .text-wrapper {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper .text-wrapper .text {
    line-height: 1.7;
  }
}
.top-services .sec-head.flex-wrapper .lead {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper .lead {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
.top-services .sec-head.flex-wrapper .img-wrapper {
  width: 57.6724137931%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper .img-wrapper {
    width: 100%;
  }
}
.top-services .sec-head.flex-wrapper .img-wrapper .item {
  width: 48.5799701046%;
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper .img-wrapper .item {
    width: 48.3383685801%;
  }
}
.top-services .sec-head.flex-wrapper .img-wrapper .item:nth-child(2) {
  margin-top: 90px;
}
@media screen and (max-width:768px) {
  .top-services .sec-head.flex-wrapper .img-wrapper .item:nth-child(2) {
    margin-top: 25px;
  }
}
.top-services .sec-body .service-list {
  counter-reset: servise-counter;
}
.top-services .sec-body .service-list .item {
  counter-increment: service-counter;
  gap: 44px;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item {
    flex-direction: column;
    gap: 20px;
  }
}
.top-services .sec-body .service-list .item hgroup {
  margin-bottom: 20px;
  margin-top: 36px;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item hgroup {
    margin-top: 0;
    z-index: 2;
    position: relative;
  }
}
.top-services .sec-body .service-list .item hgroup h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 2px;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item hgroup h3 {
    font-size: 2.7rem;
    margin-bottom: 5px;
  }
}
.top-services .sec-body .service-list .item hgroup .sub-ttl {
  font-weight: 600;
  color: var(--enji-gousei);
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item hgroup .sub-ttl {
    font-size: 1.6rem;
  }
}
.top-services .sec-body .service-list .item .btn01 {
  margin-top: 20px;
}
.top-services .sec-body .service-list .item .img-wrapper {
  height: 355px;
  width: 100%;
  flex: 1;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item .img-wrapper {
    height: 160px;
  }
}
.top-services .sec-body .service-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-services .sec-body .service-list .item .text-wrapper {
  position: relative;
  width: 43.1034482759%;
  max-width: 500px;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item .text-wrapper {
    width: 100%;
  }
}
.top-services .sec-body .service-list .item .text-wrapper::before {
  content: "0" counter(service-counter);
  font-size: clamp(140px, 18.3016105417vw, 250px);
  color: var(--gray01);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: -24px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item .text-wrapper::before {
    margin-top: -48px;
    z-index: 1;
    right: -28px;
  }
}
.top-services .sec-body .service-list .item .text-wrapper .text {
  max-width: 320px;
  line-height: 2;
  font-size: 1.5rem;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item .text-wrapper .text {
    max-width: 100%;
    line-height: 1.7;
  }
}
.top-services .sec-body .service-list .item:nth-child(odd) {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item:nth-child(odd) {
    margin-left: 0;
  }
}
.top-services .sec-body .service-list .item:nth-child(even) {
  flex-direction: row-reverse;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item:nth-child(even) {
    margin-right: 0;
    flex-direction: column;
  }
}
.top-services .sec-body .service-list .item:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width:768px) {
  .top-services .sec-body .service-list .item:not(:last-child) {
    margin-bottom: 60px;
  }
}

.top-works {
  background-color: var(--gray01);
  overflow-x: hidden;
}
.top-works .lead {
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .top-works .lead {
    font-size: 2.2rem;
  }
}
.top-works .swiper-area {
  position: relative;
}
.top-works .swiper-area .top-works-swiper {
  overflow: visible;
  margin-top: 50px;
}
.top-works .swiper-area .swiper-wrapper {
  transition-timing-function: var(--cubic-bezier);
}
.top-works .swiper-area .swiper-controller-wrapper {
  align-items: flex-end;
}
@media screen and (max-width:768px) {
  .top-works .swiper-area .swiper-controller-wrapper {
    display: block;
  }
}
.top-works .swiper-area .swiper-controller {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 52px;
  gap: 5px;
}
@media screen and (max-width:768px) {
  .top-works .swiper-area .swiper-controller {
    height: 40px;
    margin-bottom: 0;
    position: absolute;
    top: 193px;
    width: 100%;
    margin: 0 auto;
  }
  .top-works .swiper-area .swiper-controller .swiper-button-next {
    transform: none;
  }
  .top-works .swiper-area .swiper-controller .swiper-button-prev {
    transform: none;
  }
}
.swiper-button-prev,
.swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0;
  transition: all 0.3s var(--cubic-bezier);
  width: 52px;
  height: 52px;
  background-color: var(--enji-gousei);
}
@media screen and (max-width:768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--orange01);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  width: 10px;
  height: 10px;
}
@media screen and (max-width:768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width:768px) {
  .swiper-button-prev {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
  }
}
.swiper-button-prev::after {
  transform: rotate(-135deg);
}

@media screen and (max-width:768px) {
  .swiper-button-next {
    position: absolute;
    right: 0;
    transform: translateX(50%);
  }
}
.swiper-button-next::after {
  transform: rotate(45deg);
}

.top-works .swiper-slide {
  width: 340px;
}
@media screen and (max-width:768px) {
  .top-works .swiper-slide {
    width: 260px;
  }
}
.top-works .swiper-slide .img-wrapper {
  margin-bottom: 10px;
  aspect-ratio: 340/250;
  overflow: hidden;
}
.top-works .swiper-slide .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-works .swiper-slide .text-wrapper h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
@media screen and (max-width:768px) {
  .top-works .swiper-slide .text-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.cate-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cate-list .item {
  font-size: 1.5rem;
  font-weight: 600;
  padding: calc(var(--leading-trim) + 5px) 12px;
  border: 1px solid var(--enji-gousei);
  color: var(--enji-gousei);
  line-height: 1.5rem;
  height: 25px;
}
@media screen and (max-width:1140px) {
  .cate-list .item {
    padding: calc(var(--leading-trim) + 5px) 8px;
  }
}

.top-partner {
  position: relative;
}
.top-partner::before {
  content: "";
  width: 60.7613469985%;
  height: 100%;
  background: var(--enji-gousei);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width:768px) {
  .top-partner::before {
    width: 66.4%;
  }
}
.top-partner .text-box {
  padding: 49px 112px 51px;
  background-color: white;
  width: 89.8275862069%;
  margin-left: auto;
  margin-top: -60px;
  position: relative;
}
@media screen and (max-width:768px) {
  .top-partner .text-box {
    margin-top: 0;
    width: 100%;
    padding: 40px 30px;
  }
}
.top-partner .text-box .text {
  line-height: 2;
}
@media screen and (max-width:768px) {
  .top-partner .text-box .text {
    line-height: 1.7;
  }
}
.top-partner .btn01 {
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .top-partner .btn01 {
    margin-top: 30px;
  }
}
.top-partner .img-wrapper {
  width: 100%;
  aspect-ratio: 1160/579;
}
@media screen and (max-width:768px) {
  .top-partner .img-wrapper {
    aspect-ratio: 331/219;
  }
}
.top-partner .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-news {
  padding: 120px 0;
}
@media screen and (max-width:768px) {
  .top-news {
    padding: 80px 0;
  }
}
.top-news .sec-ttl01 {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .top-news .sec-ttl01 {
    margin-bottom: 30px;
  }
}
.top-news .sec-head {
  margin-bottom: 60px;
  align-items: flex-end;
}
@media screen and (max-width:768px) {
  .top-news .sec-head {
    margin-bottom: 0px;
  }
}
.top-news.news-archive .tab-body {
  margin-bottom: 0;
}
.top-news.news-archive .news-list {
  margin-bottom: 0;
}

.news-archive .tab-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(110px, 100%), 1fr));
  justify-content: space-between;
  list-style: none;
  border-bottom: 1px solid var(--gray02);
  gap: 10px;
}
@media screen and (max-width:480px) {
  .news-archive .tab-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    width: fit-content;
    position: relative;
    justify-content: flex-start;
  }
}
.news-archive .tab-list .item {
  text-align: center;
  margin-bottom: -1px;
}
@media screen and (max-width:480px) {
  .news-archive .tab-list .item {
    flex: 0 0 calc((100% - 16px) / 3);
    min-width: 105px;
  }
}
.news-archive .tab-list .item a {
  display: grid;
  place-content: center;
  padding: 10px 26px 10px 10px;
  background: var(--gray01);
  line-height: 1;
  height: 65px;
  position: relative;
  font-weight: 600;
  border: #f5f5f5 1px solid;
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (max-width:768px) {
  .news-archive .tab-list .item a {
    height: 37px;
    font-size: 1.4rem;
    padding: 8px 20px 7px 10px;
  }
}
.news-archive .tab-list .item a::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 16px;
  height: 9px;
  background: url(../../assets/images/arrow-red01.svg) no-repeat center/contain;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width:768px) {
  .news-archive .tab-list .item a::before {
    width: 10px;
    height: 5px;
    right: 6px;
  }
}
.news-archive .tab-list .item.active a {
  background: white;
  border: 1px solid var(--gray02);
  border-bottom-color: white !important;
}
.news-list .item:not(:last-child) {
  margin-bottom: 30px;
}
.news-list .item > a {
  display: flex;
  justify-content: flex-start;
  gap: 35px;
}
@media screen and (max-width:768px) {
  .news-list .item > a {
    flex-direction: column;
    row-gap: 10px;
  }
}
.news-list .item > a > div {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.news-list .item > a .date {
  font-size: 1.5rem;
  width: 120px;
}
@media screen and (max-width:768px) {
  .news-list .item > a .date {
    font-size: 1.4rem;
    width: 97px;
  }
}
.news-list .item > a .cate {
  color: var(--enji-gousei);
  font-size: 1.5rem;
  font-weight: 600;
  padding: calc(var(--leading-trim) + 5px) 8px;
  width: 110px;
  min-height: 25px;
  text-align: center;
  border: 1px solid var(--enji-gousei);
}
@media screen and (max-width:768px) {
  .news-list .item > a .cate {
    font-size: 1.4rem;
    height: 22px;
    min-width: 97px;
    width: max-content;
    padding: calc(var(--leading-trim) + 5px) 8px;
  }
}
.news-list .item > a .ttl {
  font-size: 1.8rem;
  font-weight: 500;
  flex: 1;
  align-self: center;
}
@media screen and (max-width:768px) {
  .news-list .item > a .ttl {
    font-size: 1.6rem;
    align-self: flex-start;
  }
}

.news-archive .tab-body .area {
  display: none;
  opacity: 0;
  padding-top: 70px;
}
@media screen and (max-width:768px) {
  .news-archive .tab-body .area {
    padding-top: 50px;
  }
}
.news-archive .tab-body .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.news-list .tab-list .item {
  margin-bottom: -1px;
}

.top-recruit {
  background: var(--orange01);
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .top-recruit {
    padding: 60px 0;
  }
}
.top-recruit hgroup {
  margin-bottom: 20px;
}
.top-recruit hgroup .sec-ttl {
  color: var(--enji-gousei);
}
.top-recruit .lead {
  color: var(--enji-gousei);
  line-height: 1.6;
  width: max-content;
  margin: 0 auto 25px;
  font-size: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .top-recruit .lead {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
.top-recruit .flex-wrapper {
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper {
    flex-direction: column;
  }
}
.top-recruit .flex-wrapper .contents {
  padding: 130px 6.2957540264%;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .contents {
    padding: 40px 0 50px;
    width: 88.2666666667%;
    margin: 0 auto;
  }
}
.top-recruit .flex-wrapper .contents .text {
  color: var(--enji-gousei);
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .contents .text {
    width: 100% !important;
    text-align: center;
  }
}
.top-recruit .flex-wrapper .recruit-slider {
  flex: 1;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .recruit-slider {
    flex: auto;
  }
}
.top-recruit .flex-wrapper .recruit-slider .slide-wrapper {
  display: flex;
  flex-direction: column;
  animation: scroll-up 40s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
  contain: layout paint;
  animation-timing-function: linear;
  backface-visibility: hidden;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .recruit-slider .slide-wrapper {
    flex-direction: row !important;
    width: max-content;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    touch-action: pan-y;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    animation: scroll-left 20s linear infinite;
  }
  .top-recruit .flex-wrapper .recruit-slider .slide-wrapper * {
    pointer-events: none;
    touch-action: pan-y;
  }
}
.top-recruit .flex-wrapper .recruit-slider .slide-wrapper.reverse {
  animation: scroll-down 40s linear infinite;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .recruit-slider .slide-wrapper.reverse {
    animation: scroll-right 20s linear infinite;
  }
}
.top-recruit .flex-wrapper .recruit-slider .slide-wrapper .slide {
  flex-shrink: 0;
  padding-bottom: 30px;
  aspect-ratio: 400/330;
  contain: layout paint;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .recruit-slider .slide-wrapper .slide {
    flex: 0 0 185px;
    height: 130px;
    padding-right: 15px;
    padding-bottom: 0;
    width: 185px;
    aspect-ratio: auto;
  }
}
.top-recruit .flex-wrapper .recruit-slider .slide-wrapper .slide img {
  display: block;
  aspect-ratio: 400/330;
  object-fit: contain;
  transform: translateZ(0);
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-position: center;
}
@media screen and (max-width:768px) {
  .top-recruit .flex-wrapper .recruit-slider .slide-wrapper .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
    contain: none;
  }
}
.top-recruit .flex-wrapper .recruit-slider .slide-wrapper .slide:last-child {
  margin-bottom: 0;
}

.youtube-wrapper iframe {
  opacity: 0;
  transition: opacity 0.8s var(--cubic-bezier);
}
.youtube-wrapper iframe.is-visible {
  opacity: 1;
}

.custom-thumbnail.fade-out {
  opacity: 0;
  transition: opacity 0.6s var(--cubic-bezier);
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.lower-page-head-nav-box {
  background: var(--gray01);
  padding: 60px 0;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box {
    padding: 30px 0;
  }
}
.lower-page-head-nav-box .nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
  -moz-column-gap: 36px;
  column-gap: 36px;
  justify-content: center;
  align-items: flex-end;
  row-gap: 25px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width:940px) {
  .lower-page-head-nav-box .nav-list {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 12px;
    justify-content: center;
  }
}
.lower-page-head-nav-box .nav-list .item {
  width: auto;
}
@media screen and (max-width:940px) {
  .lower-page-head-nav-box .nav-list .item {
    width: auto;
  }
}
.lower-page-head-nav-box .nav-list .item a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black02);
  transition: all 0.3s var(--cubic-bezier);
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .nav-list .item a {
    font-size: 1.4rem;
  }
}
.lower-page-head-nav-box .nav-list .item a::after {
  content: "";
  background: url(../../assets/images/nav-arrow-red.svg) no-repeat center/contain;
  width: 8px;
  height: 5px;
  margin-left: 1em;
  flex-shrink: 0;
}
.lower-page-head-nav-box .nav-list .item a:hover {
  color: var(--enji-gousei);
}

.message {
  padding: 120px 0 80px;
}
@media screen and (max-width:768px) {
  .message {
    padding: 60px 0 80px;
  }
}
.message .message-container {
  max-width: 794px;
  margin: 0 auto 90px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .message .message-container {
    margin-bottom: 40px;
  }
}
.message .message-container .text {
  font-size: 1.7rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .message .message-container .text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.message .message-container .text-bottom-name {
  margin-top: 25px;
  line-height: 2.2;
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .message .message-container .text-bottom-name {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 30px;
  }
}
.message .vision-wrapper {
  position: relative;
}
.message .vision-wrapper .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--enji-gousei);
  font-size: clamp(18px, 1.8301610542vw, 25px);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.message .vision-wrapper .center-text::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--enji-gousei);
  display: inline-block;
  margin-right: 15px;
}
.message .vision-wrapper .center-text::after {
  content: "";
  width: 36px;
  height: 1px;
  margin-left: 15px;
  display: inline-block;
  background-color: var(--enji-gousei);
}
.message .vision-wrapper .vision-text {
  font-size: clamp(30px, 5.270863836vw, 72px);
  color: rgba(3, 3, 3, 0.3);
  letter-spacing: 0.01em;
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .message .vision-wrapper .vision-text {
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
  }
}
.message .vision-wrapper.sp-vision-wrapper .center-text {
  top: auto;
  left: auto;
  transform: none;
  position: relative;
}

.philosophy {
  position: relative;
  padding: 120px 0 142px;
}
@media screen and (max-width:768px) {
  .philosophy {
    padding: 80px 0;
  }
}
.philosophy .inner {
  position: relative;
  color: white;
}
.philosophy::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(3, 3, 3, 0.7);
}
.philosophy .sec-ttl05 {
  color: white;
}
.philosophy .sec-ttl05::before {
  content: "";
  background: var(--orange01);
}
.philosophy .text-big {
  font-size: clamp(32px, 4.0263543192vw, 55px);
  font-weight: 500;
  margin-bottom: 70px;
}
@media screen and (max-width:768px) {
  .philosophy .text-big {
    margin-bottom: 40px;
  }
}
.philosophy .philosophy-list {
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5862068966%;
}
@media screen and (max-width:768px) {
  .philosophy .philosophy-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    width: max-content;
    margin: 0;
  }
}
.philosophy .philosophy-list .item {
  border: 1px solid white;
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: clamp(16px, 2.0497803807vw, 28px);
  font-weight: 600;
  text-align: center;
  display: grid;
  place-content: center;
}
@media screen and (max-width:768px) {
  .philosophy .philosophy-list .item {
    width: 146px;
    height: 146px;
  }
}

.company {
  padding-bottom: 0;
}
.company dl {
  border-top: 1px solid #bebebe;
}
.company dl > div {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #bebebe;
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .company dl > div {
    font-size: 1.5rem;
    flex-direction: column;
    padding: 20px 0;
  }
}
.company dl dt {
  padding: 24px 0;
  width: 160px;
  flex-shrink: 0;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .company dl dt {
    padding: 0;
    width: 100%;
    margin-bottom: 8px;
  }
}
.company dl dd {
  flex: 1;
  font-weight: 500;
  padding: 24px 0;
}
@media screen and (max-width:768px) {
  .company dl dd {
    padding: 0;
  }
}
.company dl dd .num::after {
  content: "名";
}
.company dl dd .flex span {
  width: 50%;
}
@media screen and (max-width:768px) {
  .company dl dd .flex span.license {
    width: 64%;
  }
  .company dl dd .flex span.num {
    flex: 1;
  }
}

address {
  font-style: normal;
}

.access {
  padding-bottom: 0;
}
.access .flex-wrapper {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
}
@media screen and (max-width:940px) {
  .access .flex-wrapper {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.access .text-wrapper {
  flex-shrink: 0;
}
.access .text-wrapper address {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .access .text-wrapper address {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.access .text-wrapper .by-car-list {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width:940px) {
  .access .text-wrapper .by-car-list {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.access .img-wrapper {
  width: 57.7586206897%;
  aspect-ratio: 670/400;
}
@media screen and (max-width:940px) {
  .access .img-wrapper {
    width: 100%;
  }
}
.access .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.access .iframe-wrapper {
  width: 100%;
  aspect-ratio: 1160/500;
}
.access .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.history {
  padding-bottom: 0;
}
.history dl > div {
  display: flex;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .history dl > div {
    font-size: 1.5rem;
    padding: 20px;
    flex-direction: column;
  }
}
.history dl > div:nth-child(odd) {
  background-color: var(--gray01);
}
.history dl > div:nth-child(even) {
  background-color: white;
}
.history dl > div dt {
  font-weight: 600;
  width: 250px;
  padding: 40px 30px 36px;
}
@media screen and (max-width:768px) {
  .history dl > div dt {
    width: 100%;
    margin-bottom: 8px;
    padding: 0;
  }
}
.history dl > div dd {
  font-weight: 500;
  padding: 40px 30px 36px 0;
  flex: 1;
}
@media screen and (max-width:768px) {
  .history dl > div dd {
    padding: 0;
  }
}

.associate .associate-list .item {
  position: relative;
  align-items: flex-start;
}
@media screen and (max-width:940px) {
  .associate .associate-list .item {
    flex-direction: column;
  }
}
.associate .associate-list .item:not(:last-of-type) {
  margin-bottom: 50px;
}
.associate .associate-list .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #d9d9d9;
}
.associate .associate-list .item .text-wrapper {
  padding: 0 56px;
  flex: 1;
}
@media screen and (max-width:940px) {
  .associate .associate-list .item .text-wrapper {
    padding: 0;
    padding-left: 30px;
    margin-bottom: 30px;
  }
}
.associate .associate-list .item .text-wrapper h4 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width:768px) {
  .associate .associate-list .item .text-wrapper h4 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.associate .associate-list .item .text-wrapper dl > div {
  display: flex;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 15px;
}
@media screen and (max-width:768px) {
  .associate .associate-list .item .text-wrapper dl > div {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.associate .associate-list .item .text-wrapper dl > div:last-of-type {
  margin-bottom: 0;
}
.associate .associate-list .item .text-wrapper dl > div dt {
  width: 164px;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .associate .associate-list .item .text-wrapper dl > div dt {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.associate .associate-list .item .text-wrapper dl > div dd {
  flex: 1;
}
@media screen and (max-width:768px) {
  .associate .associate-list .item .text-wrapper dl > div dd {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.associate .associate-list .item .img-wrapper {
  width: 377px;
  aspect-ratio: 377/350;
  flex-shrink: 0;
}
@media screen and (max-width:940px) {
  .associate .associate-list .item .img-wrapper {
    padding-left: 30px;
    width: 100%;
    padding-right: 25px;
  }
}
.associate .associate-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.commendation {
  background: #f5f5f5;
  padding: 120px 0;
}
@media screen and (max-width:768px) {
  .commendation {
    padding: 80px 0;
  }
}
.commendation .sec-ttl02 {
  margin-bottom: 0;
}
.commendation-swiper,
.estate-swiper {
  overflow: hidden;
}

.commendation-swiper-area,
.estate-swiper-area {
  position: relative;
  margin-top: -26px;
}
@media screen and (max-width:480px) {
  .commendation-swiper-area,
  .estate-swiper-area {
    margin-top: 0;
  }
}
@media screen and (max-width:480px) {
  .commendation-swiper-area .estate-swiper,
  .commendation-swiper-area .commendation-swiper,
  .estate-swiper-area .estate-swiper,
  .estate-swiper-area .commendation-swiper {
    overflow: visible;
  }
  .commendation-swiper-area .estate-swiper .swiper-slide,
  .commendation-swiper-area .commendation-swiper .swiper-slide,
  .estate-swiper-area .estate-swiper .swiper-slide,
  .estate-swiper-area .commendation-swiper .swiper-slide {
    width: 270px;
  }
  .commendation-swiper-area .estate-swiper .swiper-slide .img-wrapper,
  .commendation-swiper-area .commendation-swiper .swiper-slide .img-wrapper,
  .estate-swiper-area .estate-swiper .swiper-slide .img-wrapper,
  .estate-swiper-area .commendation-swiper .swiper-slide .img-wrapper {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }
  .commendation-swiper-area .estate-swiper .swiper-slide .img-wrapper img,
  .commendation-swiper-area .commendation-swiper .swiper-slide .img-wrapper img,
  .estate-swiper-area .estate-swiper .swiper-slide .img-wrapper img,
  .estate-swiper-area .commendation-swiper .swiper-slide .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .commendation-swiper-area .commendation-swiper .swiper-slide,
  .estate-swiper-area .commendation-swiper .swiper-slide {
    width: 260px;
  }
  .commendation-swiper-area .commendation-swiper .swiper-slide .img-wrapper,
  .estate-swiper-area .commendation-swiper .swiper-slide .img-wrapper {
    height: 180px;
  }
}
.commendation-swiper-area .swiper-wrapper,
.estate-swiper-area .swiper-wrapper {
  transition-timing-function: var(--cubic-bezier);
}
.commendation-swiper-area .swiper-controller,
.estate-swiper-area .swiper-controller {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--gray03);
  margin-bottom: 50px;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width:480px) {
  .commendation-swiper-area .swiper-controller,
  .estate-swiper-area .swiper-controller {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 80px;
  }
}
.commendation-swiper-area .swiper-button-prev,
.commendation-swiper-area .swiper-button-next,
.estate-swiper-area .swiper-button-prev,
.estate-swiper-area .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0;
  transition: all 0.3s var(--cubic-bezier);
  width: 52px;
  height: 52px;
  background-color: var(--enji-gousei);
}
@media screen and (max-width:768px) {
  .commendation-swiper-area .swiper-button-prev,
  .commendation-swiper-area .swiper-button-next,
  .estate-swiper-area .swiper-button-prev,
  .estate-swiper-area .swiper-button-next {
    width: 40px;
    height: 40px;
    transform: none;
  }
}
@media screen and (max-width:480px) {
  .commendation-swiper-area .swiper-button-prev,
  .commendation-swiper-area .swiper-button-next,
  .estate-swiper-area .swiper-button-prev,
  .estate-swiper-area .swiper-button-next {
    transform: none;
  }
}
.commendation-swiper-area .swiper-button-prev::after,
.commendation-swiper-area .swiper-button-next::after,
.estate-swiper-area .swiper-button-prev::after,
.estate-swiper-area .swiper-button-next::after {
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  width: 10px;
  height: 10px;
}
@media screen and (max-width:768px) {
  .commendation-swiper-area .swiper-button-prev::after,
  .commendation-swiper-area .swiper-button-next::after,
  .estate-swiper-area .swiper-button-prev::after,
  .estate-swiper-area .swiper-button-next::after {
    width: 8px;
    height: 8px;
  }
}
.commendation-swiper-area .swiper-button-prev:hover,
.commendation-swiper-area .swiper-button-next:hover,
.estate-swiper-area .swiper-button-prev:hover,
.estate-swiper-area .swiper-button-next:hover {
  background: var(--orange01);
}
.commendation-swiper-area .swiper-button-prev::after,
.estate-swiper-area .swiper-button-prev::after {
  transform: rotate(-135deg);
}
.commendation-swiper-area .swiper-button-next::after,
.estate-swiper-area .swiper-button-next::after {
  transform: rotate(45deg);
}
.commendation-swiper-area .swiper-slide a,
.estate-swiper-area .swiper-slide a {
  display: block;
}
.commendation-swiper-area .swiper-slide .img-wrapper,
.estate-swiper-area .swiper-slide .img-wrapper {
  width: 100%;
  aspect-ratio: 260/180;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .commendation-swiper-area .swiper-slide .img-wrapper,
  .estate-swiper-area .swiper-slide .img-wrapper {
    margin-bottom: 10px;
  }
}
.commendation-swiper-area .swiper-slide .img-wrapper img,
.estate-swiper-area .swiper-slide .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.commendation-swiper-area .swiper-slide .text-wrapper h4,
.estate-swiper-area .swiper-slide .text-wrapper h4 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.commendation-swiper-area .swiper-slide .text-wrapper .cate-list .item,
.estate-swiper-area .swiper-slide .text-wrapper .cate-list .item {
  color: var(--orange01);
  font-size: 1.3rem;
  font-weight: 600;
  border: 1px solid var(--orange01);
  margin-right: 10px;
  padding: 3px 9px;
  line-height: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width:480px) {
  .commendation .commendation-swiper-area .swiper-controller {
    top: 70px;
  }
}
.commendation .btn01 {
  display: block;
  margin: 60px auto 0;
}
@media screen and (max-width:768px) {
  .commendation .btn01 {
    margin: 50px auto 0;
  }
}

.iso .contents {
  max-width: 985px;
  width: 100%;
  margin: 0 auto;
}
.iso .contents .text {
  margin-bottom: 40px;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .iso .contents .text {
    line-height: 1.7;
    font-weight: 600;
  }
}
.iso .contents .iso-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
@media screen and (max-width:768px) {
  .iso .contents .iso-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
.iso .contents .iso-list .item {
  aspect-ratio: 200/300;
}
.iso .contents .iso-list .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.bcp {
  background: #f5f5f5;
  padding: 120px 0;
}
@media screen and (max-width:768px) {
  .bcp {
    padding: 80px 0 100px;
  }
}
.bcp .sec-ttl02 {
  margin-bottom: 58px;
}
.bcp .lead {
  line-height: 2;
  font-weight: 600;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .bcp .lead {
    margin-bottom: 30px;
  }
}
.bcp .contents {
  display: flex;
  align-items: flex-start;
  gap: 5.4172767204vw;
}
@media screen and (max-width:768px) {
  .bcp .contents {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.bcp .contents .img-outer {
  position: relative;
  width: 28.7068965517%;
}
@media screen and (max-width:768px) {
  .bcp .contents .img-outer {
    width: 210px;
  }
}
.bcp .contents .img-outer::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 30px;
  background-color: var(--orange01);
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .bcp .contents .img-outer::after {
    top: 20px;
    left: 20px;
  }
}
.bcp .contents .img-wrapper {
  position: relative;
}
.bcp .contents .img-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bcp .contents .text-wrapper {
  width: 63.7931034483%;
}
@media screen and (max-width:768px) {
  .bcp .contents .text-wrapper {
    width: 100%;
  }
}
.bcp .contents .text-wrapper .plan:not(:last-child) {
  margin-bottom: 30px;
}
.bcp .contents .text-wrapper h4 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--enji-gousei);
  margin-bottom: 10px;
}
@media screen and (max-width:768px) {
  .bcp .contents .text-wrapper h4 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.bcp .contents .text-wrapper h4::before {
  content: "●";
  margin-right: 0.2em;
}
.bcp .contents .text-wrapper .list {
  counter-reset: iso-counter;
  line-height: 2;
}
.bcp .contents .text-wrapper .list .item {
  counter-increment: iso-counter;
}
.bcp .contents .text-wrapper .list .item::before {
  content: counter(iso-counter) ".";
}
.bcp .contents .text-wrapper .text {
  line-height: 2;
}
@media screen and (max-width:768px) {
  .bcp .contents .text-wrapper .text {
    line-height: 1.7;
  }
}

.quality_policy {
  padding-bottom: 120px;
}
@media screen and (max-width:768px) {
  .quality_policy {
    padding-bottom: 80px;
  }
}
.quality_policy .contents {
  background-color: #f5f5f5;
  padding: 70px;
}
@media screen and (max-width:768px) {
  .quality_policy .contents {
    padding: 50px 30px;
  }
}
.quality_policy .policy-list .item {
  line-height: 2;
  font-weight: 600;
}
.quality_policy .policy-list .item:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width:768px) {
  .quality_policy .policy-list .item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.quality_policy .policy-list .item::before {
  content: "◎";
  color: var(--enji-gousei);
  margin-right: 0.1em;
  font-weight: 600;
}

.environment {
  background: #f5f5f5;
  padding: 120px 0;
}
@media screen and (max-width:768px) {
  .environment {
    padding: 80px 0;
  }
}
.environment .contents {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}
.environment .lead {
  margin-bottom: 40px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .environment .lead {
    line-height: 1.7;
    margin-bottom: 30px;
  }
}
.environment .environment-list {
  counter-reset: environment-counter;
}
.environment .environment-list .item {
  counter-increment: environment-counter;
  margin-bottom: 30px;
}
.environment .environment-list .item:last-child {
  margin-bottom: 0;
}
.environment .environment-list .item .ttl {
  font-weight: 600;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .environment .environment-list .item .ttl {
    line-height: 1.7;
  }
}
.environment .environment-list .item .ttl::before {
  content: counter(environment-counter);
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  vertical-align: text-top;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 90%;
  background: var(--enji-gousei);
  border-radius: 50%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin-right: 0.2em;
}
@media screen and (max-width:768px) {
  .environment .environment-list .item .ttl::before {
    width: 16px;
    height: 16px;
    line-height: 16px;
  }
}
.environment .environment-list .item .child-list {
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: 22px;
  padding-left: 35px;
  border-left: 1px solid var(--enji-gousei);
}
@media screen and (max-width:768px) {
  .environment .environment-list .item .child-list {
    padding-left: 10px;
    margin-left: 0;
  }
}
.environment .environment-list .item .child-list .child-item {
  line-height: 2;
}
@media screen and (max-width:768px) {
  .environment .environment-list .item .child-list .child-item {
    line-height: 1.7;
  }
}
.environment .environment-list .item .child-list .child-item::before {
  content: "･";
  display: inline-block;
}

.safety .contents {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
.safety .contents .text {
  line-height: 2;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .safety .contents .text {
    margin-bottom: 30px;
    line-height: 1.7;
  }
}
.safety .contents .text-bottom {
  margin-bottom: 0;
  margin-top: 30px;
}
.safety .contents .safety-wrapper h4 {
  font-weight: 600;
  color: var(--enji-gousei);
}
.safety .contents .safety-wrapper h4::before {
  content: "●";
  margin-right: 0.2em;
}
.safety .contents .safety-wrapper .safety-list {
  counter-reset: safety-list;
}
.safety .contents .safety-wrapper .safety-list .item {
  counter-increment: safety-list;
  font-weight: 600;
}
.safety .contents .safety-wrapper .safety-list .item:not(:last-child) {
  margin-bottom: 30px;
}
.safety .contents .safety-wrapper .safety-list .item .ttl {
  margin-bottom: 16px;
}
.safety .contents .safety-wrapper .safety-list .item .ttl::before {
  content: counter(safety-list);
  color: white;
  font-size: 90%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  margin-right: 0.2em;
  background: var(--enji-gousei);
  border-radius: 50%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin-bottom: 3px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
@media screen and (max-width:768px) {
  .safety .contents .safety-wrapper .safety-list .item .ttl::before {
    width: 16px;
    height: 16px;
  }
}
.safety .contents .safety-wrapper .safety-list .item .desc {
  margin-bottom: 16px;
  text-align: justify;
}
.safety .contents .safety-wrapper .safety-list .item .child-list {
  counter-reset: safety-child-counter;
  line-height: 2;
  font-weight: 500;
}
.safety .contents .safety-wrapper .safety-list .item .child-list .child-item {
  counter-increment: safety-child-counter;
}
.safety .contents .safety-wrapper .safety-list .item .child-list .child-item::before {
  content: "(" counter(safety-child-counter) ")";
  display: inline-block;
}

.lower-recruit {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width:768px) {
  .lower-recruit {
    padding: 70px 0 65px;
  }
}
.lower-recruit .contents {
  position: relative;
  z-index: 3;
  padding: 0 4.4827586207%;
}
@media screen and (max-width:768px) {
  .lower-recruit .contents {
    padding: 0;
  }
}
.lower-recruit .contents .sec-ttl01 {
  margin-bottom: 15px;
  color: white;
}
.lower-recruit .contents .sec-ttl01 .sub-ttl {
  color: white;
}
.lower-recruit .contents .lead {
  font-size: 3.2rem;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width:768px) {
  .lower-recruit .contents .lead {
    font-size: 2.2rem;
  }
}
.lower-recruit .contents .text {
  color: white;
  max-width: 605px;
}
@media screen and (max-width:768px) {
  .lower-recruit .contents .text {
    font-size: 1.4rem;
  }
}
.lower-recruit .slide-bg-wrapper {
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.lower-recruit .slide-bg-wrapper::after {
  content: "";
  background: rgba(3, 3, 3, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.lower-recruit .slide-bg-wrapper .slide-bg-content {
  height: 100%;
  -webkit-animation: slideLoop 60s linear infinite;
  animation: slideLoop 60s linear infinite;
  width: 1200vw;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.lower-recruit .slide-bg-wrapper .slide-bg-content .item {
  flex-shrink: 0;
  height: 100%;
  aspect-ratio: 890/525;
}
.lower-recruit .slide-bg-wrapper .slide-bg-content .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.lower-recruit .btn02 {
  margin-top: 50px;
}
@media screen and (max-width:768px) {
  .lower-recruit .btn02 {
    margin-top: 32px;
  }
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --blue01: #0d3b9a;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.bg-gray01 {
  background: var(--gray01);
}

.business .lower-page-head-nav-box {
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .business .lower-page-head-nav-box {
    margin-bottom: 40px;
  }
}
.business .department {
  width: 100%;
}
.business .department .slide-bg-wrapper {
  margin-top: 70px;
  height: 230px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0); /* Safariのちらつき対策② */
  transform: translateZ(0); /* Safari・Chrome共通でGPU強制 */
}
@media screen and (max-width:768px) {
  .business .department .slide-bg-wrapper {
    margin-top: 40px;
    height: 130px;
  }
}
.business .department .slide-bg-wrapper .slide-bg-content {
  height: 100%;
  animation: rightToLeft 40s linear infinite;
  width: max-content;
  display: flex;
  will-change: transform;
}
@media screen and (max-width:768px) {
  .business .department .slide-bg-wrapper .slide-bg-content {
    animation: rightToLeft 20s linear infinite;
  }
}
.business .department .slide-bg-wrapper .slide-bg-content .item {
  height: 100%;
  aspect-ratio: 330/230;
  flex-shrink: 0;
}
.business .department .slide-bg-wrapper .slide-bg-content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}
.business .department .btn01 {
  margin: 50px auto 0;
  display: block;
}
@media screen and (max-width:768px) {
  .business .department .btn01 {
    margin-top: 30px;
  }
}

.rect {
  width: 83.4553440703%;
  height: 240px;
  display: block;
}
@media screen and (max-width:768px) {
  .rect {
    width: 100%;
    height: 80px;
  }
}
.rect.rect-left {
  margin-right: auto;
}
.rect.rect-right {
  margin-left: auto;
}

.civil_engineering {
  position: relative;
}

.business .department {
  padding-top: 0;
}
.business .department {
  padding-bottom: 140px;
}
@media screen and (max-width:940px) {
  .business .department {
    padding-bottom: 80px;
  }
}
.business .department:nth-of-type(even) .deco-img-wrapper {
  margin-right: auto;
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(even) .deco-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: calc(50% - 50vw + var(--scrollbar) / 2);
    margin-left: auto;
  }
}
.business .department:nth-of-type(even) .deco-img-wrapper .deco {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(even) .deco-img-wrapper .deco {
    right: 0;
    left: auto;
    top: 0;
  }
}
.business .department:nth-of-type(even) .deco-img-wrapper .deco.rect-red {
  background: var(--orange01);
}
.business .department:nth-of-type(even) .deco-img-wrapper .img-wrapper {
  position: absolute;
  left: 225px;
  top: 225px;
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(even) .deco-img-wrapper .img-wrapper {
    right: 100px;
    top: 100px;
    left: auto;
  }
}
.business .department:nth-of-type(even) .sec-head {
  flex-direction: row-reverse;
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(even) .sec-head {
    flex-direction: column-reverse;
  }
}
.business .department:nth-of-type(even) .sec-head > .img-wrapper {
  margin-left: calc(50% - 50vw);
}
.business .department:nth-of-type(even) .sec-head .text-wrapper {
  padding-right: 0;
}
.business .department:nth-of-type(even) .sec-body {
  flex-direction: row-reverse;
}
.business .department:nth-of-type(even) .sec-body .text {
  padding-right: 45px;
  padding-left: 0;
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(even) .sec-body .text {
    padding-right: 0;
  }
}
.business .department:nth-of-type(odd) .sec-head > .img-wrapper {
  margin-right: calc(50% - 50vw + var(--scrollbar) / 2);
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(odd) .sec-head > .img-wrapper {
    margin-left: auto;
  }
}
.business .department:nth-of-type(odd) .sec-head .text-wrapper {
  position: relative;
}
@media screen and (max-width:940px) {
  .business .department:nth-of-type(odd) .sec-head .text-wrapper .deco-img-wrapper {
    top: 0;
    right: calc(50% - 50vw);
  }
  .business .department:nth-of-type(odd) .sec-head .text-wrapper .deco-img-wrapper .img-wrapper {
    width: 100px;
    height: 100px;
  }
}
.business .sec-head {
  margin-top: -54px;
  width: 100%;
  align-items: flex-start;
}
@media screen and (max-width:940px) {
  .business .sec-head {
    margin-top: -40px;
    flex-direction: column-reverse;
  }
}
.business .sec-head > .img-wrapper {
  width: calc(50% + 50vw - 50%);
  height: 600px;
}
@media screen and (max-width:940px) {
  .business .sec-head > .img-wrapper {
    height: 240px;
    width: 73.3333333333vw;
  }
}
.business .sec-head > .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business .sec-head .text-wrapper {
  width: 50%;
  padding: 0 45px;
  margin-top: 164px;
}
@media screen and (max-width:940px) {
  .business .sec-head .text-wrapper {
    width: 100%;
    padding: 0;
    padding-top: 100px;
    position: relative;
    margin-top: 0;
  }
}
.business .sec-head .text-wrapper .lead {
  font-size: clamp(24px, 3.3674963397vw, 46px);
}
.business .sec-body {
  width: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  column-gap: 6.7349926794vw;
}
@media screen and (max-width:940px) {
  .business .sec-body {
    flex-direction: column-reverse;
  }
}
.business .sec-body .text {
  flex: 1;
  padding-left: 45px;
  margin-top: 50px;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width:940px) {
  .business .sec-body .text {
    padding-left: 0;
    margin-top: 30px;
    line-height: 1.7;
  }
}
.deco-img-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}
@media screen and (max-width:940px) {
  .deco-img-wrapper {
    width: 200px;
    height: 200px;
    position: absolute;
  }
}
.deco-img-wrapper .deco {
  width: 225px;
  height: 225px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width:940px) {
  .deco-img-wrapper .deco {
    width: 100px;
    height: 100px;
  }
}
.deco-img-wrapper .deco.rect-red {
  background-color: var(--enji-gousei);
}
.deco-img-wrapper .img-wrapper {
  width: 225px;
  height: 225px;
  position: absolute;
  top: 50%;
  right: 225px;
}
@media screen and (max-width:940px) {
  .deco-img-wrapper .img-wrapper {
    width: 100px;
    height: 100px;
    right: 100px;
  }
}
.deco-img-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-real-estate {
  padding-top: 110px;
  padding-bottom: 140px;
}
@media screen and (max-width:768px) {
  .business-real-estate {
    padding: 80px 0px;
  }
}
.business-real-estate .lead {
  font-size: 1.5rem;
  line-height: 2;
  padding-bottom: 52px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .business-real-estate .lead {
    line-height: 1.7;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
  }
}
.business-real-estate .estate-swiper-area {
  margin-top: -106px;
}
.business-real-estate .estate-swiper-area .swiper-controller {
  border: none;
}
@media screen and (max-width:480px) {
  .business-real-estate .estate-swiper-area {
    margin-top: 0;
  }
  .business-real-estate .estate-swiper-area .swiper-controller {
    position: absolute;
    padding: 0;
    margin: 0;
    top: 80px;
    border: none;
    width: 100%;
    justify-content: space-between;
  }
}
.business-real-estate .btn01 {
  display: block;
  margin: 50px auto 0;
}

.color-blue {
  color: var(--blue01);
}

.rect-gray {
  background-color: var(--gray01);
  height: 240px;
  width: 100%;
  display: block;
}
@media screen and (max-width:768px) {
  .rect-gray {
    height: 80px;
  }
}

.business-cela-water {
  max-width: 1160px;
  width: 84.9194729136%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 120px;
  background: url(../../assets/images/business-cela-bg.jpg) no-repeat bottom center/cover;
}
@media screen and (max-width:768px) {
  .business-cela-water {
    width: 100%;
    margin-bottom: 80px;
    padding-top: 274px;
    background: url(../../assets/images/business-cela-bg-sp.jpg) no-repeat bottom center/cover;
    padding-bottom: 60px;
  }
}
.business-cela-water .cela-img {
  position: absolute;
  border-radius: 10px;
}
.business-cela-water .cela-img.cela-img01 {
  top: 4.39238653vw;
  left: 2.9282576867vw;
  width: 14.6412884334vw;
  height: 18.3016105417vw;
  max-width: 200px;
  max-height: 250px;
}
@media screen and (max-width:768px) {
  .business-cela-water .cela-img.cela-img01 {
    width: 105px;
    height: 130px;
    top: 60px;
    left: 10px;
  }
}
.business-cela-water .cela-img.cela-img02 {
  top: 21.3762811127vw;
  left: 11.7130307467vw;
  width: 10.2489019034vw;
  height: 11.7130307467vw;
  max-width: 140px;
  max-height: 160px;
}
@media screen and (max-width:768px) {
  .business-cela-water .cela-img.cela-img02 {
    width: 80px;
    height: 95px;
    top: 160px;
    left: 66px;
  }
}
.business-cela-water .cela-img.cela-img03 {
  top: 13.5431918009vw;
  right: 2.9282576867vw;
  width: 14.6412884334vw;
  height: 18.3016105417vw;
  max-width: 200px;
  max-height: 250px;
}
@media screen and (max-width:768px) {
  .business-cela-water .cela-img.cela-img03 {
    width: 180px;
    height: 210px;
    top: 87px;
    right: 10px;
  }
}
.business-cela-water .contents {
  position: relative;
}
@media screen and (max-width:768px) {
  .business-cela-water .contents {
    width: 88.2666666667vw;
    margin: 0 auto;
  }
}
.business-cela-water .cela-ttl {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .business-cela-water .cela-ttl {
    font-size: 3.6rem;
    margin-bottom: 0;
  }
}
.business-cela-water .lead {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .business-cela-water .lead {
    font-size: 1.7rem;
  }
}
.business-cela-water .btn01 {
  margin: 60px auto;
  display: block;
}
@media screen and (max-width:768px) {
  .business-cela-water .btn01 {
    margin-bottom: 0;
  }
}

.deco-img-wrapper.big-size {
  display: block;
}
@media screen and (max-width:940px) {
  .deco-img-wrapper.big-size {
    display: none;
  }
}
.deco-img-wrapper.small-size {
  display: none;
}
@media screen and (max-width:940px) {
  .deco-img-wrapper.small-size {
    display: block;
  }
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.lower-page-head-nav-box .select {
  justify-content: center;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .select {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.lower-page-head-nav-box .select .select-ttl {
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .select .select-ttl {
    font-size: 1.5rem;
  }
}
.lower-page-head-nav-box .select .form-select {
  position: relative;
  background: white;
  font-size: 1.7rem;
  font-weight: 600;
  max-width: 490px;
  height: 50px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .select .form-select {
    font-size: 1.4rem;
    height: 40px;
  }
}
.lower-page-head-nav-box .select .form-select::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  background: url(../../assets/images/select-arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 10px;
  display: block;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .select .form-select::before {
    width: 13px;
    height: 7px;
  }
}
.lower-page-head-nav-box .select .form-select .label {
  padding: 12px 30px;
  position: absolute;
  display: block;
  width: 100%;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .select .form-select .label {
    padding: 9px 30px 9px 9px;
  }
}
.lower-page-head-nav-box .select .form-select .label + select {
  opacity: 0;
}
.lower-page-head-nav-box .select .form-select select {
  display: block;
  color: var(--black02);
  width: 100%;
  background: white;
  height: 100%;
  border: none;
  margin: 0;
  outline: none;
  padding: 0 1rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.5rem;
}
@media screen and (max-width:768px) {
  .lower-page-head-nav-box .select .form-select select {
    font-size: 1.4rem;
  }
}
.lower-page-head-nav-box .select .form-select select option {
  background-color: var(--gray02);
  color: var(--black02);
}

.works-single-sec,
.works-sec {
  padding: 80px 0 150px;
}
@media screen and (max-width:768px) {
  .works-single-sec,
  .works-sec {
    padding: 60px 0;
  }
}

.works-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px 40px;
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .works-list {
    grid-template-columns: 1fr;
    padding: 0 35px;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.works-list .item .img-wrapper {
  aspect-ratio: 260/180;
  margin-bottom: 15px;
}
.works-list .item .img-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.works-list .item .text-wrapper .item-ttl {
  font-weight: 600;
  margin-bottom: 15px;
}

.works-single article,
.news-single article {
  max-width: 980px;
  margin: 0 auto 100px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .works-single article,
  .news-single article {
    margin-bottom: 60px;
  }
}
.works-single .single-head .date,
.news-single .single-head .date {
  font-size: 1.5rem;
  margin-right: 20px;
}
.works-single .single-head .post-ttl,
.news-single .single-head .post-ttl {
  margin-top: 20px;
  padding-bottom: 20px;
  font-size: clamp(22px, 2.3426061493vw, 32px);
  font-weight: 600;
  margin-bottom: 50px;
  border-bottom: 1px solid #bebebe;
}
@media screen and (max-width:768px) {
  .works-single .single-head .post-ttl,
  .news-single .single-head .post-ttl {
    margin-bottom: 20px;
  }
}
.works-single .single-head .flex-wrapper,
.news-single .single-head .flex-wrapper {
  justify-content: flex-start;
}
.works-single .gallery,
.news-single .gallery {
  width: 100%;
  margin-bottom: 110px;
}
@media screen and (max-width:768px) {
  .works-single .gallery,
  .news-single .gallery {
    margin-bottom: 60px;
  }
}
.works-single .gallery .gallery-main,
.news-single .gallery .gallery-main {
  width: 100%;
  margin-bottom: 24px;
  aspect-ratio: 980/662;
}
@media screen and (max-width:768px) {
  .works-single .gallery .gallery-main,
  .news-single .gallery .gallery-main {
    margin-bottom: 20px;
  }
}
.works-single .gallery .gallery-main img,
.news-single .gallery .gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.works-single .gallery .gallery-thumb-area,
.news-single .gallery .gallery-thumb-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .works-single .gallery .gallery-thumb-area,
  .news-single .gallery .gallery-thumb-area {
    position: relative;
  }
}
@media screen and (max-width:768px) {
  .works-single .gallery .gallery-thumb-area .swiper-button-prev,
  .works-single .gallery .gallery-thumb-area .swiper-button-next,
  .news-single .gallery .gallery-thumb-area .swiper-button-prev,
  .news-single .gallery .gallery-thumb-area .swiper-button-next {
    position: absolute;
  }
}
.works-single .gallery .gallery-thumb,
.news-single .gallery .gallery-thumb {
  width: 80%;
}
@media screen and (max-width:768px) {
  .works-single .gallery .gallery-thumb,
  .news-single .gallery .gallery-thumb {
    width: 100%;
  }
}
.works-single .gallery .gallery-thumb .swiper-slide,
.news-single .gallery .gallery-thumb .swiper-slide {
  cursor: pointer;
  transition: opacity 0.3s;
  aspect-ratio: 200/140;
  position: relative;
}
.works-single .gallery .gallery-thumb .swiper-slide.swiper-slide-thumb-active::before,
.news-single .gallery .gallery-thumb .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 0;
}
.works-single .gallery .gallery-thumb .swiper-slide::before,
.news-single .gallery .gallery-thumb .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.works-single .gallery .gallery-thumb img,
.news-single .gallery .gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.works-single .gallery .gallery-thumb .swiper-wrapper,
.news-single .gallery .gallery-thumb .swiper-wrapper {
  justify-content: center;
}
.works-single .overview-wrapper .overview-ttl,
.news-single .overview-wrapper .overview-ttl {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .works-single .overview-wrapper .overview-ttl,
  .news-single .overview-wrapper .overview-ttl {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.works-single .overview-wrapper dl > div,
.news-single .overview-wrapper dl > div {
  border-bottom: 1px solid #bebebe;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width:768px) {
  .works-single .overview-wrapper dl > div,
  .news-single .overview-wrapper dl > div {
    flex-direction: column;
    padding: 20px 0;
  }
}
@media screen and (max-width:768px) {
  .works-single .overview-wrapper dl > div:first-child,
  .news-single .overview-wrapper dl > div:first-child {
    padding-top: 0;
  }
}
.works-single .overview-wrapper dl > div:first-child dt,
.works-single .overview-wrapper dl > div:first-child dd,
.news-single .overview-wrapper dl > div:first-child dt,
.news-single .overview-wrapper dl > div:first-child dd {
  padding-top: 0;
}
.works-single .overview-wrapper dl > div dt,
.works-single .overview-wrapper dl > div dd,
.news-single .overview-wrapper dl > div dt,
.news-single .overview-wrapper dl > div dd {
  font-size: 1.8rem;
  padding: 24px 0;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .works-single .overview-wrapper dl > div dt,
  .works-single .overview-wrapper dl > div dd,
  .news-single .overview-wrapper dl > div dt,
  .news-single .overview-wrapper dl > div dd {
    font-size: 1.5rem;
    padding: 0;
  }
}
.works-single .overview-wrapper dl > div dt,
.news-single .overview-wrapper dl > div dt {
  font-weight: 600;
  width: 8em;
}
@media screen and (max-width:768px) {
  .works-single .overview-wrapper dl > div dt,
  .news-single .overview-wrapper dl > div dt {
    margin-bottom: 8px;
  }
}
.works-single-sec .pagenation,
.news-single-sec .pagenation {
  border-top: none;
  padding-top: 0;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.works-single-sec .pagenation .news-pager > ul,
.news-single-sec .pagenation .news-pager > ul {
  width: 100%;
  position: relative;
}
.works-single-sec .pagenation .news-pager > ul .next,
.news-single-sec .pagenation .news-pager > ul .next {
  position: absolute;
  right: 0;
}
.works-single-sec .pagenation .news-pager > ul .prev,
.news-single-sec .pagenation .news-pager > ul .prev {
  left: 0;
  position: absolute;
}
.works-single-sec .pagenation .pager-item.prev a,
.news-single-sec .pagenation .pager-item.prev a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.works-single-sec .pagenation .pager-item.prev a::before,
.news-single-sec .pagenation .pager-item.prev a::before {
  content: "";
  background: url(../../assets/images/arrow-red03.svg) no-repeat center/contain;
  width: 0.5em;
  height: 0.8em;
  margin-right: 0.3em;
}
.works-single-sec .pagenation .pager-item.next a,
.news-single-sec .pagenation .pager-item.next a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.works-single-sec .pagenation .pager-item.next a::after,
.news-single-sec .pagenation .pager-item.next a::after {
  content: "";
  content: "";
  background: url(../../assets/images/arrow-red02.svg) no-repeat center/contain;
  width: 0.5em;
  height: 0.8em;
  margin-left: 0.3em;
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.news .tab-body {
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .news .tab-body {
    margin-bottom: 60px;
  }
}

.pagenation {
  padding-top: 30px;
  border-top: 1px solid #bebebe;
}

.news-archibe .tab-body {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .news-archibe {
    padding: 60px 0 80px;
  }
}

.news-archive .news-list {
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .news-archive .news-list {
    margin-bottom: 60px;
  }
}

.news-single-sec,
.works-single-sec {
  padding-top: 80px;
}
@media screen and (max-width:768px) {
  .news-single-sec,
  .works-single-sec {
    padding-top: 60px;
  }
}
.news-single-sec .btn01,
.works-single-sec .btn01 {
  display: block;
  margin: -34px auto 0;
}
@media screen and (max-width:768px) {
  .news-single-sec .btn01,
  .works-single-sec .btn01 {
    margin-top: 40px;
  }
}

.news-single-sec .single-body .wp-caption {
  max-width: 100% !important;
}
.news-single-sec .pagenation {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.news-single .single-body p, .works-single .single-body p {
  font-size: 1.6rem;
  line-height: 2;
  margin-block-end: 40px;
}
@media screen and (max-width:768px) {
  .news-single .single-body p, .works-single .single-body p {
    margin-block-end: 20px;
  }
}
.news-single .single-body .wp-block-separator, .works-single .single-body .wp-block-separator {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .news-single .single-body .wp-block-separator, .works-single .single-body .wp-block-separator {
    margin-bottom: 20px;
  }
}
.news-single .single-body h2, .works-single .single-body h2 {
  font-size: clamp(24px, 2.196193265vw, 30px);
  font-weight: 600;
  margin-bottom: 16px;
}
.news-single .single-body h3, .works-single .single-body h3 {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width:768px) {
  .news-single .single-body h3, .works-single .single-body h3 {
    margin-bottom: 8px;
  }
}
.news-single .single-body h4, .works-single .single-body h4 {
  font-size: clamp(18px, 1.756954612vw, 24px);
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .news-single .single-body h4, .works-single .single-body h4 {
    margin-bottom: 8px;
  }
}
.news-single .single-body h5, .works-single .single-body h5 {
  font-size: clamp(17px, 1.6105417277vw, 22px);
  margin-bottom: 8px;
  font-weight: 600;
}
.news-single .single-body h6, .works-single .single-body h6 {
  font-size: clamp(16px, 1.4641288433vw, 20px);
  margin-bottom: 8px;
  font-weight: 600;
}

.wp-block-image {
  margin-bottom: 40px;
}
.wp-block-image img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  box-sizing: border-box;
}
.wp-block-image figcaption {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .wp-block-image figcaption {
    font-size: 1.6rem;
  }
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --leading-trim: calc((1em - 1lh) / 2);
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.page-privacy .privacy-content {
  padding: 80px 0 150px;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .page-privacy .privacy-content {
    padding: 60px 0 80px;
  }
}
.page-privacy .privacy-content .inner {
  max-width: 920px;
}
.page-privacy .policy-list {
  counter-reset: policy-counter;
  margin: 80px 0;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list {
    margin: 50px 0;
  }
}
.page-privacy .policy-list > .item {
  counter-increment: policy-counter;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list > .item {
    margin-bottom: 30px;
  }
}
.page-privacy .policy-list > .item dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list > .item dt {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.page-privacy .policy-list > .item dt::before {
  content: counter(policy-counter) ".";
}
.page-privacy .policy-list > .item dd {
  font-weight: 400;
  line-height: 2;
}
.page-privacy .policy-list > .item dd p {
  margin-bottom: 1em;
  font-size: 1.6rem;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list > .item dd p {
    font-size: 1.4rem;
  }
}
.page-privacy .contact-to > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 400;
}
.page-privacy .contact-to > div:not(:last-of-type) {
  margin-bottom: 40px;
}
.page-privacy .contact-to > div dt {
  line-height: 1.6;
}
.page-privacy .contact-to > div dt:after {
  content: ":";
}
.page-privacy .contact-to > div dd {
  line-height: 1.6;
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.contact-top-box {
  padding: 80px;
  margin-top: 80px;
  background-color: var(--gray01);
}
@media screen and (max-width:768px) {
  .contact-top-box {
    margin-top: 60px;
    padding: 30px 20px;
  }
}
.contact-top-box .text {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .contact-top-box .text {
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: left;
  }
}
.contact-top-box .tel-num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: clamp(24px, 3.074670571vw, 42px);
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width:768px) {
  .contact-top-box .tel-num {
    margin-bottom: 5px;
  }
}
.contact-top-box .tel-num::before {
  content: "";
  background: url(../../assets/images/icon-tel.png) no-repeat center/contain;
  width: 1.5em;
  height: 1em;
  margin-right: 0.2em;
  display: inline-block;
}
.contact-top-box .time {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.flex-top {
  display: flex;
  align-items: flex-start;
}

.contact .form,
.contact-confirm .form,
.contact-thanks .form {
  margin-top: 120px;
  margin-bottom: 150px;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .contact .form,
  .contact-confirm .form,
  .contact-thanks .form {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.contact .form .wpcf7-list-item,
.contact-confirm .form .wpcf7-list-item,
.contact-thanks .form .wpcf7-list-item {
  margin-left: 0;
}
.contact .form span.nocheck::before,
.contact-confirm .form span.nocheck::before,
.contact-thanks .form span.nocheck::before {
  content: "※任意";
  color: #646464;
  font-size: 1.8rem;
  margin-left: 0.3em;
}
@media screen and (max-width:768px) {
  .contact .form span.nocheck::before,
  .contact-confirm .form span.nocheck::before,
  .contact-thanks .form span.nocheck::before {
    font-size: 1.4rem;
  }
}
.contact .form .check::before,
.contact-confirm .form .check::before,
.contact-thanks .form .check::before {
  content: "※必須";
  color: var(--enji-gousei);
  font-size: 1.8rem;
  margin-left: 0.3em;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form .check::before,
  .contact-confirm .form .check::before,
  .contact-thanks .form .check::before {
    font-size: 1.4rem;
  }
}
.contact .form input[type=checkbox],
.contact-confirm .form input[type=checkbox],
.contact-thanks .form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 20px;
  margin-bottom: 3px;
  height: 20px;
  border-radius: 2px;
  background: var(--gray01);
  border: none;
  margin-right: 0.3em;
  position: relative;
  transition: all 0.2s ease;
}
.contact .form input[type=checkbox]:checked::before,
.contact-confirm .form input[type=checkbox]:checked::before,
.contact-thanks .form input[type=checkbox]:checked::before {
  content: "";
  top: 2px;
  left: 6px;
  display: block;
  width: 6px;
  height: 12px;
  position: absolute;
  transform-origin: center;
  border-right: var(--enji-gousei) 3px solid;
  border-bottom: var(--enji-gousei) 3px solid;
  transform: rotate(45deg);
}
.contact .form table,
.contact-confirm .form table,
.contact-thanks .form table {
  display: block;
  width: 100%;
}
.contact .form table tbody,
.contact-confirm .form table tbody,
.contact-thanks .form table tbody {
  display: block;
}
.contact .form table tr,
.contact-confirm .form table tr,
.contact-thanks .form table tr {
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .contact .form table tr,
  .contact-confirm .form table tr,
  .contact-thanks .form table tr {
    margin-bottom: 25px;
  }
}
.contact .form table tr th,
.contact .form table tr .zip-ttl,
.contact-confirm .form table tr th,
.contact-confirm .form table tr .zip-ttl,
.contact-thanks .form table tr th,
.contact-thanks .form table tr .zip-ttl {
  margin-bottom: 8px;
  display: block;
}
.contact .form table tr .zip-wrap,
.contact-confirm .form table tr .zip-wrap,
.contact-thanks .form table tr .zip-wrap {
  margin-bottom: 6px;
}
.contact .form table tr .zip-wrap input,
.contact-confirm .form table tr .zip-wrap input,
.contact-thanks .form table tr .zip-wrap input {
  max-width: 240px;
  width: 100%;
}
.contact .form table tr .flex,
.contact-confirm .form table tr .flex,
.contact-thanks .form table tr .flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact .form table tr.kind label,
.contact-confirm .form table tr.kind label,
.contact-thanks .form table tr.kind label {
  display: flex;
  align-items: center;
}
.contact .form table tr.kind td,
.contact-confirm .form table tr.kind td,
.contact-thanks .form table tr.kind td {
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.contact .form table tr.kind td label,
.contact-confirm .form table tr.kind td label,
.contact-thanks .form table tr.kind td label {
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form table tr.kind td,
  .contact-confirm .form table tr.kind td,
  .contact-thanks .form table tr.kind td {
    gap: 3px;
  }
}
@media screen and (max-width:768px) {
  .contact .form table tr.kind td .wpcf7-checkbox,
  .contact-confirm .form table tr.kind td .wpcf7-checkbox,
  .contact-thanks .form table tr.kind td .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
.contact .form table tr.accept th,
.contact-confirm .form table tr.accept th,
.contact-thanks .form table tr.accept th {
  margin-bottom: 4px;
}
.contact .form table tr.accept th label,
.contact-confirm .form table tr.accept th label,
.contact-thanks .form table tr.accept th label {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.contact .form table tr.accept th .check,
.contact-confirm .form table tr.accept th .check,
.contact-thanks .form table tr.accept th .check {
  vertical-align: top;
}
.contact .form table tr.accept td .under,
.contact-confirm .form table tr.accept td .under,
.contact-thanks .form table tr.accept td .under {
  text-decoration: underline;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-underline-offset: 3px;
  transition: all 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .contact .form table tr.accept td .under,
  .contact-confirm .form table tr.accept td .under,
  .contact-thanks .form table tr.accept td .under {
    margin: 0 auto;
    margin-top: 5px;
  }
}
.contact .form table tr.accept td .under:hover,
.contact-confirm .form table tr.accept td .under:hover,
.contact-thanks .form table tr.accept td .under:hover {
  text-decoration: none;
}
.contact .form table tr.your-name td.flex label,
.contact .form table tr .your-kana td.flex label,
.contact-confirm .form table tr.your-name td.flex label,
.contact-confirm .form table tr .your-kana td.flex label,
.contact-thanks .form table tr.your-name td.flex label,
.contact-thanks .form table tr .your-kana td.flex label {
  width: 3em;
  margin-right: 0;
}
@media screen and (max-width:768px) {
  .contact .form table th,
  .contact-confirm .form table th,
  .contact-thanks .form table th {
    font-size: 1.5rem;
  }
}
.contact .form table td,
.contact-confirm .form table td,
.contact-thanks .form table td {
  width: 100%;
  display: block;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .contact .form table td,
  .contact-confirm .form table td,
  .contact-thanks .form table td {
    font-size: 1.5rem;
  }
}
.contact .form table td.flex,
.contact-confirm .form table td.flex,
.contact-thanks .form table td.flex {
  gap: 12% 4px;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .contact .form table td.flex,
  .contact-confirm .form table td.flex,
  .contact-thanks .form table td.flex {
    flex-direction: column;
    row-gap: 15px;
  }
}
.contact .form table td.flex label,
.contact-confirm .form table td.flex label,
.contact-thanks .form table td.flex label {
  margin-right: 16px;
  white-space: nowrap;
  font-weight: 700;
}
.contact .form table td.flex div,
.contact-confirm .form table td.flex div,
.contact-thanks .form table td.flex div {
  display: flex;
  align-items: center;
  width: 48%;
}
@media screen and (max-width:768px) {
  .contact .form table td.flex div,
  .contact-confirm .form table td.flex div,
  .contact-thanks .form table td.flex div {
    width: 100%;
  }
}
.contact .form table td input[type=text],
.contact .form table td input[type=email],
.contact .form table td input[type=tel],
.contact .form table td textarea,
.contact-confirm .form table td input[type=text],
.contact-confirm .form table td input[type=email],
.contact-confirm .form table td input[type=tel],
.contact-confirm .form table td textarea,
.contact-thanks .form table td input[type=text],
.contact-thanks .form table td input[type=email],
.contact-thanks .form table td input[type=tel],
.contact-thanks .form table td textarea {
  width: 100%;
  border: none;
  padding: 16px 40px;
  line-height: 2;
  background-color: var(--gray01);
  margin-left: 0;
  border-radius: 8px;
}
@media screen and (max-width:768px) {
  .contact .form table td input[type=text],
  .contact .form table td input[type=email],
  .contact .form table td input[type=tel],
  .contact .form table td textarea,
  .contact-confirm .form table td input[type=text],
  .contact-confirm .form table td input[type=email],
  .contact-confirm .form table td input[type=tel],
  .contact-confirm .form table td textarea,
  .contact-thanks .form table td input[type=text],
  .contact-thanks .form table td input[type=email],
  .contact-thanks .form table td input[type=tel],
  .contact-thanks .form table td textarea {
    padding: 4px 20px;
  }
}
.contact .form table td .wpcf7-checkbox span,
.contact-confirm .form table td .wpcf7-checkbox span,
.contact-thanks .form table td .wpcf7-checkbox span {
  vertical-align: middle;
}
@media screen and (max-width:768px) {
  .contact .form .btn-wrap,
  .contact-confirm .form .btn-wrap,
  .contact-thanks .form .btn-wrap {
    margin: 0 auto;
  }
  .contact .form .btn-wrap .btn01,
  .contact-confirm .form .btn-wrap .btn01,
  .contact-thanks .form .btn-wrap .btn01 {
    margin: 0 auto;
    display: block;
  }
}
.contact .form .wpcf7-form-control-wrap,
.contact-confirm .form .wpcf7-form-control-wrap,
.contact-thanks .form .wpcf7-form-control-wrap {
  width: 100%;
}

/* ===================================
   CF7送信ボタンを.btn01スタイルに合わせる
   =================================== */
.wpcf7 input.wpcf7-submit.btn01 {
  width: 190px;
  height: 45px;
  border: 1px solid var(--enji-gousei);
  color: white;
  background: var(--enji-gousei);
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  text-align: left;
  padding: 12px 20px 11px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  z-index: 1;
  margin-top: 60px;
  /* 背景アニメーション部分（.btn-bg::after の再現） */
  /* 擬似矢印ライン (.btn01::before の再現) */
  /* 矢印ライン */
  /* 疑似要素で矢印を再現 */
  /* 矢印ライン */
  /* 疑似矢印（右に動くライン） */
  /* 矢印ラインの再現 */
  /* 矢印をinput単体で再現 */
  /* 右に伸びる灰色ライン */
  /* 矢印ラインの別擬似要素 */
  /* Hover時の動き */
}
@media screen and (max-width:768px) {
  .wpcf7 input.wpcf7-submit.btn01 {
    margin-top: 30px;
  }
}
.wpcf7 input.wpcf7-submit.btn01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--enji-gousei);
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: width 0.3s var(--cubic-bezier), left 0.3s var(--cubic-bezier);
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01 span::before, .wpcf7 input.wpcf7-submit.btn01 > *::before {
  display: none;
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 .has-arrow::before, .wpcf7 input.wpcf7-submit.btn01::marker {
  content: "";
}
.wpcf7 input.wpcf7-submit.btn01 > span.btn-text::before, .wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 > span::before {
  display: none;
}
.wpcf7 input.wpcf7-submit.btn01.has-arrow::after {
  content: "";
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01::before {
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01::after {
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01::before, .wpcf7 input.wpcf7-submit.btn01::after {
  pointer-events: none;
}
.wpcf7 input.wpcf7-submit.btn01::before {
  content: "";
}
.wpcf7 input.wpcf7-submit.btn01:hover {
  color: var(--enji-gousei);
  /* 擬似矢印を右にスライドさせる */
}
.wpcf7 input.wpcf7-submit.btn01:hover::after {
  left: 0;
  width: 100%;
}
.wpcf7 input.wpcf7-submit.btn01:hover::before {
  transform: translateX(6px);
}
.wpcf7 input.wpcf7-submit.btn01:disabled {
  cursor: not-allowed;
}
.wpcf7 input.wpcf7-submit.btn01 input {
  color: white;
}

.submit-btn-wrapper {
  margin: 0 auto;
  display: block;
}

.wpcf7-submit,
.wpcf7-previous {
  color: white;
}

.contact-confirm .form,
.contact-thanks .form {
  margin-top: 0;
}

.submit-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.form-thanks .thanks-message {
  line-height: 2;
}
.form-thanks .thanks-message h3 {
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-confirm section {
  padding-bottom: 0;
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --blue01: #0d3b9a;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.fz20 {
  font-size: 2rem;
}
@media screen and (max-width:768px) {
  .fz20 {
    font-size: 1.7rem;
  }
}

.lh210 {
  line-height: 2.1;
}

.cela-water .lead {
  font-size: clamp(24px, 3.2942898975vw, 45px);
}
.cela-water h3 {
  margin-bottom: 50px;
}
.cela-water .sec-head.flex {
  align-items: flex-start;
}
.cela-water .sec-head.flex .text-wrapper {
  padding-top: 40px;
}
@media screen and (max-width:768px) {
  .cela-water .sec-head.flex .text-wrapper {
    padding-top: 0;
  }
}
.cela-water .ttl-blue {
  margin: 0 auto 50px;
  font-size: clamp(28px, 3.2942898975vw, 45px);
  color: var(--blue01);
  font-weight: 700;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width:768px) {
  .cela-water .ttl-blue {
    margin-bottom: 20px;
  }
}
.cela-water .ttl-blue.has-underline-yellow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8em;
  background: #ffff00;
  top: 0.6em;
  left: 0;
  z-index: -1;
}
.cela-water .rect-gray {
  height: 100px;
  background: var(--gray01);
}
@media screen and (max-width:768px) {
  .cela-water .rect-gray {
    display: none;
  }
}

.about-cela {
  margin-top: 80px;
  padding-top: 0;
  padding-bottom: 130px;
  background: white;
}
@media screen and (max-width:768px) {
  .about-cela {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}
.about-cela .mv-cela {
  height: 700px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width:768px) {
  .about-cela .mv-cela {
    height: 189px;
  }
}
.about-cela .mv-cela::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1160px;
  height: 170px;
  background-color: white;
}
@media screen and (max-width:768px) {
  .about-cela .mv-cela::after {
    height: 30px;
    width: 88.2666666667%;
  }
}
.about-cela .mv-cela img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-cela hgroup {
  color: #0a2f7b;
  font-weight: 600;
  font-size: 2.8rem;
  z-index: 2;
  position: relative;
}
@media screen and (max-width:768px) {
  .about-cela hgroup {
    font-size: 2.4rem;
  }
}
.about-cela hgroup .sub-ttl {
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .about-cela hgroup .sub-ttl {
    margin-bottom: 10px;
    line-height: 1.6;
  }
}
.about-cela .contents {
  position: relative;
  margin-top: -170px;
  padding-top: 50px;
}
@media screen and (max-width:768px) {
  .about-cela .contents {
    margin-top: -30px;
    padding-top: 20px;
  }
}
.about-cela .contents h3 {
  max-width: 414px;
  width: 35.6896551724%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .about-cela .contents h3 {
    max-width: 208px;
    margin-bottom: 20px;
    width: 100%;
  }
}
.about-cela .contents h3 img {
  width: 100%;
  display: block;
  height: auto;
}
.about-cela .contents .lead {
  font-size: clamp(24px, 3.2942898975vw, 45px);
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .about-cela .contents .lead {
    margin-bottom: 30px;
  }
}
.about-cela .contents .point-list {
  -moz-column-gap: 6.8081991215vw;
  column-gap: 6.8081991215vw;
  justify-content: center;
  margin-bottom: 124px;
}
@media screen and (max-width:768px) {
  .about-cela .contents .point-list {
    column-gap: 15px;
    margin-bottom: 60px;
  }
}
.about-cela .contents .point-list .item {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--blue01);
  color: white;
  font-weight: 600;
  font-size: clamp(24px, 2.0497803807vw, 28px);
  display: grid;
  place-content: center;
}
@media screen and (max-width:768px) {
  .about-cela .contents .point-list .item {
    min-width: 100px;
    height: auto;
  }
}
.about-cela .contents .cela-about-table-wrapper {
  max-width: 956px;
  width: 100%;
  margin: 0 auto;
}
.about-cela .contents .cela-about-table-wrapper table {
  width: 100%;
}
@media screen and (max-width:768px) {
  .about-cela .contents .cela-about-table-wrapper table tbody {
    display: block;
  }
  .about-cela .contents .cela-about-table-wrapper table tbody tr {
    display: block;
  }
  .about-cela .contents .cela-about-table-wrapper table tbody tr:not(:first-child) th {
    border-top: none;
  }
  .about-cela .contents .cela-about-table-wrapper table tbody tr:last-child td {
    border-bottom: 1px solid #bebebe;
  }
}
@media screen and (max-width:768px) {
  .about-cela .contents .cela-about-table-wrapper table {
    display: block;
  }
}
.about-cela .contents .cela-about-table-wrapper table th,
.about-cela .contents .cela-about-table-wrapper table td {
  border: 1px solid #bebebe;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .about-cela .contents .cela-about-table-wrapper table th,
  .about-cela .contents .cela-about-table-wrapper table td {
    display: block;
    font-size: 1.6rem;
  }
}
.about-cela .contents .cela-about-table-wrapper table th {
  background-color: rgba(13, 59, 154, 0.05);
  padding: 24px 32px;
  text-align: center;
}
@media screen and (max-width:768px) {
  .about-cela .contents .cela-about-table-wrapper table th {
    border-bottom: none;
    padding: 6px 32px;
  }
}
.about-cela .contents .cela-about-table-wrapper table td {
  padding: 24px 50px;
}
@media screen and (max-width:768px) {
  .about-cela .contents .cela-about-table-wrapper table td {
    border-top: none;
    padding: 10px 10px 24px 10px;
  }
}
.about-cela + .rect-gray {
  background: var(--gray01);
  width: 100%;
  display: block;
  height: 100px;
}
@media screen and (max-width:768px) {
  .about-cela + .rect-gray {
    display: none;
  }
}

.effect-cela {
  background: white;
  padding-top: 42px;
  padding-bottom: 80px;
}
@media screen and (max-width:768px) {
  .effect-cela {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.effect-cela .sec-head {
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width:768px) {
  .effect-cela .sec-head {
    flex-direction: column-reverse;
  }
}
.effect-cela .sec-head .text-wrapper {
  padding-left: 54px;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .effect-cela .sec-head .text-wrapper {
    padding-top: 20px;
    padding-left: 0;
  }
  .effect-cela .sec-head .text-wrapper .lead {
    margin-bottom: 20px;
  }
}
.effect-cela .sec-head .img-wrapper {
  width: 57.2413793103%;
  margin-right: -65px;
}
@media screen and (max-width:768px) {
  .effect-cela .sec-head .img-wrapper {
    padding-left: 0;
    padding-top: 0;
    width: 100%;
  }
  .effect-cela .sec-head .img-wrapper h3 {
    max-width: 251px;
    width: 100%;
    margin: 0 auto 30px;
  }
  .effect-cela .sec-head .img-wrapper h3 img {
    display: block;
    width: 100%;
  }
}
.effect-cela .sec-middle {
  max-width: 784px;
  padding-left: 54px;
  line-height: 2.1;
  font-size: 1.9rem;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .effect-cela .sec-middle {
    padding-left: 0;
    line-height: 2;
    margin-bottom: 30px;
  }
}
@media screen and (max-width:768px) {
  .effect-cela .sec-bottom {
    padding: 0;
  }
}
.effect-cela .sec-bottom .effect-list {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1040px) {
  .effect-cela .sec-bottom .effect-list {
    flex-direction: column;
  }
}
.effect-cela .sec-bottom .effect-list .item {
  display: flex;
  max-width: 559px;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(13, 59, 154, 0.05);
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1040px) {
  .effect-cela .sec-bottom .effect-list .item {
    margin: 0 auto;
  }
}
@media screen and (max-width:768px) {
  .effect-cela .sec-bottom .effect-list .item {
    width: 559px;
    background: rgba(13, 59, 154, 0.05);
    border-radius: 50%;
    position: relative;
    padding-top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: none;
  }
}
.effect-cela .sec-bottom .effect-list .item dt {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: var(--blue01);
  margin-bottom: 20px;
}
@media screen and (max-width:1140px) {
  .effect-cela .sec-bottom .effect-list .item dt {
    font-size: 2.4rem;
    margin-bottom: 10px;
    margin-top: -50px;
  }
}
@media screen and (max-width:768px) {
  .effect-cela .sec-bottom .effect-list .item dt {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 0;
  }
}
.effect-cela .sec-bottom .effect-list .item dt .icon {
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width:1140px) {
  .effect-cela .sec-bottom .effect-list .item dt .icon {
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width:768px) {
  .effect-cela .sec-bottom .effect-list .item dt .icon {
    margin-bottom: 6px;
    width: 54px;
    height: 54px;
  }
}
.effect-cela .sec-bottom .effect-list .item dt .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.effect-cela .sec-bottom .effect-list .item dl {
  width: 559px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.effect-cela .sec-bottom .effect-list .item dd {
  max-width: 372px;
  text-align: justify;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 1040px) {
  .effect-cela .sec-bottom .effect-list .item dd {
    margin: 0 auto;
    width: 59.2128801431%;
  }
}
.effect-cela .sec-bottom .effect-list .item:nth-child(2) {
  margin-left: -40px;
}
@media screen and (max-width: 1040px) {
  .effect-cela .sec-bottom .effect-list .item:nth-child(2) {
    margin-left: auto;
    margin-top: -40px;
  }
}
.effect-cela + .rect-gray {
  background-color: var(--gray01);
  width: 100%;
  height: 100px;
}
@media screen and (max-width:768px) {
  .effect-cela + .rect-gray {
    display: none;
  }
}

.cela-purpose {
  background: white;
  padding: 80px 0;
}
@media screen and (max-width:768px) {
  .cela-purpose {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.cela-purpose .sec-head {
  margin-bottom: 70px;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-head {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cela-purpose .sec-head .img-wrapper {
  margin-left: -50px;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-head .img-wrapper {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.cela-purpose .sec-head .img-wrapper h3 {
  width: 273px;
  margin: 0 auto 30px;
}
.cela-purpose .sec-head .text-wrapper {
  padding-left: 60px;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-head .text-wrapper {
    padding-left: 0;
    padding-top: 0 !important;
  }
}
.cela-purpose .sec-head .text-wrapper h3 {
  margin-bottom: 50px;
}
.cela-purpose .sec-body .purpose-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-body .purpose-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
  }
}
.cela-purpose .sec-body .purpose-list .item .img-wrapper {
  aspect-ratio: 360/222;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-body .purpose-list .item .img-wrapper {
    margin-bottom: 10px;
  }
}
.cela-purpose .sec-body .purpose-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cela-purpose .sec-body .purpose-list .item .text-wrapper h4 {
  font-size: clamp(16px, 1.8301610542vw, 25px);
  margin-bottom: 10px;
  color: var(--blue01);
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-body .purpose-list .item .text-wrapper h4 {
    margin-bottom: 5px;
  }
}
.cela-purpose .sec-body .purpose-list .item .text-wrapper .text {
  font-size: 1.5rem;
}
@media screen and (max-width:768px) {
  .cela-purpose .sec-body .purpose-list .item .text-wrapper .text {
    font-size: 1.4rem;
  }
}

.small {
  font-size: 80%;
}

.cela-lineup {
  background: white;
  padding: 80px 0;
}
@media screen and (max-width:768px) {
  .cela-lineup {
    padding: 40px 0;
  }
}
.cela-lineup .sec-head {
  margin-bottom: 54px;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-head {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
}
.cela-lineup .sec-head .right-box {
  margin-right: calc(50% - 50vw);
  flex: 1;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-head .right-box {
    margin-right: 0;
  }
  .cela-lineup .sec-head .right-box h3 {
    width: 319px;
    margin: 0 auto 30px;
  }
}
.cela-lineup .sec-head .img-wrapper {
  width: 100%;
  height: 360px;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-head .img-wrapper {
    aspect-ratio: 331/250;
    height: auto;
  }
}
.cela-lineup .sec-head .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-head .img-wrapper {
    margin-right: 0;
    width: 100%;
    margin-bottom: 25px;
  }
}
.cela-lineup .sec-head .text-wrapper {
  flex-shrink: 0;
  padding: 0 54px;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-head .text-wrapper {
    padding: 0;
  }
}
.cela-lineup .sec-head .text-wrapper h3 {
  max-width: 543px;
  width: 39.7510980966vw;
}
.cela-lineup .sec-middle {
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-middle {
    margin-bottom: 80px;
  }
}
.cela-lineup .sec-middle .lineup-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.cela-lineup .sec-middle .lineup-list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width:940px) {
  .cela-lineup .sec-middle .lineup-list .item {
    flex-direction: column;
    align-items: center;
  }
}
.cela-lineup .sec-middle .lineup-list .item .img-wrapper {
  aspect-ratio: 225/300;
  max-width: 225px;
  margin-right: 25px;
}
@media screen and (max-width:940px) {
  .cela-lineup .sec-middle .lineup-list .item .img-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cela-lineup .sec-middle .lineup-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cela-lineup .sec-middle .lineup-list .item .text-wrapper h4 {
  color: var(--blue01);
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-middle .lineup-list .item .text-wrapper h4 {
    font-weight: 700;
    font-size: 2rem;
  }
}
.cela-lineup .sec-middle .lineup-list .item .text-wrapper dl {
  font-size: 1.5rem;
}
.cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div {
    margin-bottom: 10px;
  }
  .cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div.purpose {
    flex-direction: column;
  }
  .cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div.purpose dt {
    margin-bottom: 10px;
  }
}
.cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div dt {
  font-size: 1.5rem;
  color: var(--blue01);
  width: 45px;
  line-height: 24px;
  height: 24px;
  font-weight: 600;
  border: 1px solid var(--blue01);
  display: inline-flex;
  place-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
  .cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div dt {
    font-size: 1.4rem;
    width: 37px;
    display: inline-flex;
    height: 22px;
    margin-right: 7px;
  }
}
.cela-lineup .sec-middle .lineup-list .item .text-wrapper dl > div dd .small {
  font-size: 73%;
}
.cela-lineup .cela-setplan .lead {
  font-size: 2rem;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .lead {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
}
.cela-lineup .cela-setplan h4 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #0a2f7b;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan h4 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.cela-lineup .cela-setplan .sec-bottom-head {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .sec-bottom-head {
    flex-direction: column;
    gap: 10px;
  }
}
.cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .feature-list {
    gap: 5px 10px;
    margin-bottom: 30px;
  }
}
.cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .feature-list .item {
  border: 1px solid var(--blue01);
  padding: 0 0.5em;
  line-height: 28px;
  font-weight: 600;
  color: var(--blue01);
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .feature-list .item {
    font-size: 1.4rem;
    height: 28px;
  }
}
.cela-lineup .cela-setplan .sec-bottom-head .text-wrapper h5 {
  font-size: clamp(25px, 3.2942898975vw, 45px);
  margin-bottom: 20px;
  font-weight: 500;
}
.cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .product-name {
  color: var(--blue01);
  font-size: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .product-name {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
  }
  .cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .product-name .name {
    display: block;
  }
  .cela-lineup .cela-setplan .sec-bottom-head .text-wrapper .product-name .small {
    font-size: 66.7%;
  }
}
.cela-lineup .cela-setplan .img-wrapper {
  width: 42.2413793103%;
  height: 35.8711566618vw;
  flex-shrink: 0;
}
.cela-lineup .cela-setplan .img-wrapper img {
  object-position: center;
  object-fit: contain;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .img-wrapper {
    width: 84.5921450151%;
    aspect-ratio: 1/1;
    height: auto;
    margin: 0 auto;
  }
}
.cela-lineup .cela-setplan .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.cela-lineup .cela-setplan .sec-bottom-body .setplan-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .sec-bottom-body .setplan-list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.cela-lineup .cela-setplan .sec-bottom-body .setplan-list .item {
  width: 31.8965517241%;
}
@media screen and (max-width:768px) {
  .cela-lineup .cela-setplan .sec-bottom-body .setplan-list .item {
    width: 100%;
  }
}
.cela-lineup .cela-setplan .sec-bottom-body .setplan-desc {
  line-height: 2;
}

.cela-contact {
  background: white;
  padding: 120px 0 150px;
}
@media screen and (max-width:768px) {
  .cela-contact {
    padding: 40px 0 80px;
  }
}
.cela-contact .iframe-wrapper {
  width: 100%;
  aspect-ratio: 1160/500;
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .cela-contact .iframe-wrapper {
    margin-bottom: 40px;
  }
}
.cela-contact .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cela-contact .flex-wrapper {
  margin-top: 60px;
  gap: 5.6896551724%;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .cela-contact .flex-wrapper {
    margin-top: 30px;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cela-contact .flex-wrapper .img-wrapper {
  width: 48.275862069%;
}
@media screen and (max-width:768px) {
  .cela-contact .flex-wrapper .img-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cela-contact .flex-wrapper .text-wrapper {
  flex: 1;
}
.cela-contact .flex-wrapper .text-wrapper h4 {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .cela-contact .flex-wrapper .text-wrapper h4 {
    margin-bottom: 10px;
  }
}
.cela-contact .flex-wrapper .text-wrapper address {
  font-style: normal;
  line-height: 2;
  font-size: 2rem;
  margin-bottom: 24px;
}
@media screen and (max-width:768px) {
  .cela-contact .flex-wrapper .text-wrapper address {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.cela-contact .flex-wrapper .text-wrapper .free-dial {
  font-size: clamp(30px, 2.7818448023vw, 38px);
  font-weight: 600;
}
.cela-contact .flex-wrapper .text-wrapper .free-dial .has-icon {
  display: flex;
  align-items: center;
}
.cela-contact .flex-wrapper .text-wrapper .free-dial .has-icon::before {
  content: "";
  background: url(../../assets/images/icon-free-dial.svg) no-repeat center/contain;
  width: 2em;
  height: 1.4em;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: text-top;
}
.cela-contact .flex-wrapper .text-wrapper .free-dial .time {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1;
  display: block;
}
@media screen and (max-width:768px) {
  .cela-contact .flex-wrapper .text-wrapper .free-dial .time {
    font-size: 1.6rem;
  }
}
.cela-contact .line-friend {
  max-width: 728px;
  padding: 54px 32px;
  background: rgba(13, 59, 154, 0.05);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:768px) {
  .cela-contact .line-friend {
    padding: 32px 20px;
  }
}
.cela-contact .line-friend h4 {
  font-size: clamp(25px, 2.635431918vw, 36px);
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  white-space: nowrap;
}
@media screen and (max-width:768px) {
  .cela-contact .line-friend h4 {
    margin-bottom: 30px;
  }
}
.cela-contact .line-friend h4::after, .cela-contact .line-friend h4::before {
  content: "";
  width: 2.5em;
  height: 2.5em;
  display: inline-block;
  flex-shrink: 0;
}
.cela-contact .line-friend h4::before {
  background: url(../../assets/images/deco-line-friend-ttl.svg) no-repeat center/contain;
}
.cela-contact .line-friend h4::after {
  background: url(../../assets/images/deco-line-friend-ttl-after.svg) no-repeat center/contain;
}
.cela-contact .line-friend .line-flex-wrapper {
  justify-content: center;
  align-items: center;
  padding: 0 36px;
}
@media screen and (max-width:768px) {
  .cela-contact .line-friend .line-flex-wrapper {
    padding: 0;
    align-items: flex-start;
  }
}
.cela-contact .line-friend .line-flex-wrapper .img-wrapper {
  width: 14.934114202vw;
  min-width: 102px;
  position: absolute;
  bottom: 0;
  left: -54px;
}
@media screen and (max-width:768px) {
  .cela-contact .line-friend .line-flex-wrapper .img-wrapper {
    left: 0;
    bottom: -40px;
  }
}
.cela-contact .line-friend .line-flex-wrapper .qr-wrapper {
  width: 107px;
}
@media screen and (max-width:768px) {
  .cela-contact .line-friend .line-flex-wrapper .qr-wrapper {
    width: 80px;
  }
  .cela-contact .line-friend .line-flex-wrapper .qr-wrapper.sp-none {
    display: none;
  }
}
.cela-contact .line-friend .has-underline-yellow {
  position: relative;
  color: var(--blue01);
  font-size: clamp(16px, 2.0497803807vw, 28px);
  font-weight: 600;
  line-height: 2;
  flex: 1;
  text-align: center;
}
@media screen and (max-width:768px) {
  .cela-contact .line-friend .has-underline-yellow {
    text-align: left;
    line-height: 1.6;
  }
}
.cela-contact .line-friend .has-underline-yellow span {
  position: relative;
  background: linear-gradient(transparent 10%, #ffff00 10%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
}

:root {
  --black02: #030303;
  --black01: #1f1b1b;
  --gray01: #f5f5f5;
  --gray02: #d9d9d9;
  --gray03: #bebebe;
  --orange01: #f99900;
  --enji01: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), #76160b);
  --enji-gousei: #7a171c;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.bg-gray {
  background: var(--gray01);
}

.for-partner .partner-news {
  padding: 80px 0 100px;
}
@media screen and (max-width:768px) {
  .for-partner .partner-news {
    padding: 60px 0 84px;
  }
}
.for-partner .format {
  padding: 100px 0 120px;
  margin-bottom: 150px;
}
@media screen and (max-width:768px) {
  .for-partner .format {
    padding: 76px 0 80px;
    margin-bottom: 0;
  }
}
.for-partner .format h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
  color: var(--enji-gousei);
}
@media screen and (max-width:768px) {
  .for-partner .format h3 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.for-partner .format .format-list {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 100px;
  display: flex;
  justify-content: center;
  column-gap: 5.612244898%;
  row-gap: 50px;
  flex-wrap: wrap;
}
@media screen and (max-width:768px) {
  .for-partner .format .format-list {
    margin-bottom: 60px;
    row-gap: 20px;
  }
}
.for-partner .format .format-list .item {
  border: 1px solid var(--enji-gousei);
  border-radius: 5px;
  background-color: white;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  width: 290px;
}
.for-partner .format .format-list .item a {
  display: block;
  position: relative;
  padding: 20px;
}
.for-partner .format .format-list .item::after {
  content: "";
  background: url(../../assets/images/arrow-red01.svg) no-repeat center/contain;
  position: absolute;
  width: 18px;
  height: 10px;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 8px;
}
.for-partner .format .format-contact-box {
  background: var(--enji-gousei);
  padding: 60px;
  color: white;
  text-align: center;
}
@media screen and (max-width:768px) {
  .for-partner .format .format-contact-box {
    padding: 30px;
  }
}
.for-partner .format .format-contact-box .content {
  width: 100%;
  max-width: 468px;
  margin: auto;
}
.for-partner .format .format-contact-box .content .tel {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
@media screen and (max-width:768px) {
  .for-partner .format .format-contact-box .content .tel {
    font-size: 1.6rem;
  }
}
.for-partner .format .format-contact-box .content .tel .num {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .for-partner .format .format-contact-box .content .tel .num {
    font-size: 2.8rem;
  }
}
.for-partner .format .format-contact-box h4 {
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}

/*# sourceMappingURL=style.css.map */
