/*========================================================================================

COMMON

=========================================================================================*/

.en {
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.midashi {
  font-family: toppan-bunkyu-midashi-go-std, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.pcnone820 {
  display: none;
}

/*========================================================================================

ANIMATION

=========================================================================================*/

.js-fade-up {
  opacity: 0 !important;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}

.js-fade-up.is-show {
  opacity: 1 !important;
  -webkit-transform: translateY(-0);
  transform: translateY(-0);
}

.slide-photo {
  position: relative;
  overflow: hidden;
}

.slide-photo::before {
  content: "";
  display: block;
  width: 101%;
  height: 101%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  top: -1px;
}

.slide-photo.slide-photo-blue::before {
  background-color: var(--main);
}

.slide-photo.is-show::before {
  -webkit-animation: slide_left 1s ease-in-out forwards;
  animation: slide_left 1s ease-in-out forwards;
}

@-webkit-keyframes slide_left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slide_left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-mask-position: 0 top;
    mask-position: 0 top;
  }
  to {
    -webkit-mask-position: -1500px top;
    mask-position: -1500px top;
  }
}
@keyframes move {
  0% {
    -webkit-mask-position: 0 top;
    mask-position: 0 top;
  }
  to {
    -webkit-mask-position: -1500px top;
    mask-position: -1500px top;
  }
}

/*========================================================================================

PC MENU

=========================================================================================*/

.open-btn-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
}

.openbtn {
  position: relative;
  background: #ffffff;
  cursor: pointer;
  width: 95px;
  height: 95px;
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 27px;
  height: 3px;
  border-radius: 2px;
  background: var(--sub);
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 31px;
}

.openbtn span:nth-of-type(2) {
  top: 45px;
}

.openbtn span:nth-of-type(3) {
  top: 59px;
}

.openbtn.active span:nth-of-type(1) {
  top: 40px;
  left: 24px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 51px;
  left: 24px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.pc-side-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 50;
  background-color: rgb(5 143 180 / 70%);
  right: 0;
  top: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  opacity: 0;
  z-index: -1;
}

.pc-side-menu.active {
  opacity: 1;
  z-index: 100;
}

.pc-side-menu-inner {
  overflow-y: auto;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 140px;
  scrollbar-width: none; /* Firefox 用 */
  -ms-overflow-style: none; /* IE 用 */
}

.pc-side-menu-inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari 用 */
}

.pc-menu-list-box {
  padding-left: 200px;
  position: relative;
  padding-bottom: 100px;
}

.pc-menu-copy {
  width: 50px;
  position: absolute;
  top: 0;
  left: 0;
}

.pc-side-list {
  margin-bottom: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.pc-side-list li a {
  display: block;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #fff;
}

.pc-side-list li a:hover {
  opacity: 0.7;
}

.pc-menu-tel {
  width: 48%;
}

.pmt-head {
  padding: 10px;
  border: 2px solid #fff;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.pmt-txt {
  text-align: center;
}

.pmt-txt a {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.pc-menu-sns {
  width: 48%;
}

.pms-head {
  font-size: 5rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  line-height: 1em;
  text-align: center;
}

.pms-link.flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pms-link li {
  width: 40px;
  margin: 0 10px;
}

.pms-link li img {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.pms-link li img:hover {
  opacity: 0.7;
}

.side-link-wrap {
  position: fixed;
  right: 0;
  z-index: 5;
  width: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.side-link02 {
  margin-top: 20px;
}

.side-link-wrap a {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.side-link-wrap a:hover {
  opacity: 0.7;
}

.foot-link-wrap {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.foot-link01,
.foot-link02 {
  width: 50%;
  background-color: var(--sub);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.foot-link01 a,
.foot-link02 a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px;
}

.foot-link01 {
  border-right: 1px solid #fff;
}

.foot-link01 span {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  vertical-align: -4px;
}

.foot-link02 span {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  vertical-align: -4px;
}

/*========================================================================================

LAYOUT

=========================================================================================*/

.inner01 {
  width: calc(100% - 200px);
  margin: 0 auto;
}

.blue-bg01 {
  background-color: var(--main);
}

.wave01 {
  width: 100%;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.wave01 svg {
  width: 100%;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

.wave02 {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: var(--main);
}

.wave02 svg {
  width: 100%;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

/*========================================================================================

PARTS

=========================================================================================*/

.ttl01 {
  font-size: 8rem;
  letter-spacing: 0.075em;
}

.ttl01 span {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 2rem;
  margin-left: 10px;
  vertical-align: 2px;
}

.ttl02 {
  font-size: 2.6rem;
  letter-spacing: 0.075em;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--main);
  margin-bottom: 40px;
}

.ttl03 {
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  position: relative;
  color: var(--main);
}

.ttl03::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: var(--sub);
  left: 0;
  right: 0;
  position: absolute;
  bottom: -20px;
  margin: 0 auto;
}

.ttl04 {
  text-align: center;
  font-size: 8rem;
  letter-spacing: 0.075em;
  line-height: 1.2em;
  margin-bottom: 60px;
}

.ttl04 span {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3em;
}

.b-txt {
  color: var(--main);
}

.r-txt {
  color: var(--sub);
}

.w-txt {
  color: #fff;
}

.btn01 {
  text-align: right;
}

.btn01 a {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: 2rem;
}

.btn01.white a {
  color: #fff;
}

.btn01 a::before {
  content: "";
  height: 1px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: -40px;
  background-color: var(--txt01);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.btn01.white a::before {
  background-color: #fff;
}

.btn01 a:hover::before {
  -webkit-transform: scaleX(1.5);
  transform: scaleX(1.5);
}

.btn02 a {
  display: block;
  width: 250px;
  background-color: var(--sub);
  color: #fff;
  text-align: center;
  padding: 15px 15px;
  font-size: 1.8rem;
  margin: 0 auto;
  position: relative;
  font-weight: bold;
}

.btn02 a::after {
  height: 1px;
  width: 40px;
  content: "";
  top: 50%;
  right: -20px;
  background-color: #dcdcdc;
  position: absolute;
  display: block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.btn02 a:hover::after {
  right: 0;
}

/*=======================================================================================

SLIDER

========================================================================================*/

.slider {
  height: 1000px;
  position: relative;
}

.n2-ss-slide-backgrounds {
  height: 1000px !important;
}

.slider-catch {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  letter-spacing: 0.05em;
  font-size: 5.5vw;
  font-weight: 900;
  line-height: 1.1em;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--sub);
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 670px;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff,
    2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff,
    0px 4px 6px rgba(0, 0, 0, 0.5), 0px 8px 10px rgba(0, 0, 0, 0.3),
    0px 12px 14px rgba(0, 0, 0, 0.2);
}

.scroll {
  position: absolute;
  z-index: 5;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.5em;
  bottom: 150px;
  left: 0;
  right: 0;
}

.scroll p {
  margin-bottom: 0;
  text-align: center;
  position: relative;
  font-weight: 700;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
    1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff,
    0px 4px 6px rgba(0, 0, 0, 0.5), 0px 8px 10px rgba(0, 0, 0, 0.3),
    0px 12px 14px rgba(0, 0, 0, 0.2);
}

.scroll p::after {
  content: "";
  width: 2px;
  height: 80px;
  position: absolute;
  bottom: -100px;
  background-color: var(--sub);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 120px;
}

.c-wave {
  height: 120px;
  margin-top: -120px;
  position: relative;
  z-index: 4;
  background-color: #e5f3fa;
  mask-repeat: repeat-x;
  mask-image: url(/wp-content/uploads/2024/11/wave_mask.svg);
  mask-size: 1500px auto;
  mask-position: left top;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-image: url(/wp-content/uploads/2024/11/wave_mask.svg);
  -webkit-mask-size: 1500px auto;
  -webkit-mask-position: left top;
  -webkit-animation: move 10s linear infinite;
  animation: move 10s linear infinite;
}

.c-wave.-bg02 {
  padding-bottom: 0 !important;
}

.c-wave.-first {
  top: 60px;
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.c-wave.-first.is-act {
  top: 0;
  opacity: 1;
}

.c-wave.-bg02,
.u-bg02 {
  background-color: var(--main);
}

/*========================================================================================

SERVICE

=========================================================================================*/

.h-service-section {
  padding-top: 40px;
  padding-bottom: 50px;
  background-image: url(/wp-content/uploads/2024/12/greting-bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right center;
}

.h-service-txt {
  text-align: center;
  font-size: 3rem;
  line-height: 2em;
}

/*========================================================================================

NEWS

=========================================================================================*/

.h-news-section {
  padding-top: 0px;
  padding-bottom: 15vw;
  background-image: url(/wp-content/uploads/2024/11/bg-line02.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom -1px center;
}

.h-news-section .tab-group {
  margin-bottom: 20px;
}

.h-news-section .tab {
  background-color: rgba(255, 255, 255, 0) !important;
  color: #fff;
  font-size: 4rem;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--main);
}

.h-news-section .tab.is-active {
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: bold;
}

.h-news-section .tab:hover {
  border-bottom: 2px solid #fff;
}

/*========================================================================================

greeting

=========================================================================================*/

.h-greeting-section {
  padding-top: 30px;
  position: relative;
  padding-bottom: 160px;
}

/*--.greeting-img01 {
  width: 20%;
  position: absolute;
  top: -7vw;
  z-index: 1;
  right: 20%;
  height: auto;
}

.greeting-img02 {
  width: 20%;
  position: absolute;
  top: 2vw;
  z-index: 1;
  right: 10%;
  height: auto;
}--*/

.greeting-img01 {
  width: 20%;
  position: absolute;
  top: -3vw;
  z-index: 1;
  right: 20%;
  height: auto;
}

.greeting-img02 {
  width: 20%;
  position: absolute;
  top: 7vw;
  z-index: 1;
  right: 10%;
  height: auto;
}

.greeting-wrap {
  width: 50%;
}

.greeting-head {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: 70px;
}

.greeting-head::after {
  content: "";
  height: 5px;
  width: 50px;
  background-color: var(--sub);
  position: absolute;
  left: 0;
  bottom: -20px;
}

.greeting-txt {
  font-size: 2rem;
  margin-bottom: 0;
}

/*========================================================================================

SNS

=========================================================================================*/

.h-sns-section01 {
  background-image: url(/wp-content/uploads/2024/11/sns-bg03-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sbi_btn_text {
  color: #fff !important;
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.4rem !important;
}

.sbi_follow_btn span {
  color: #fff !important;
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.4rem !important;
}

.sbi_caption_text {
  font-size: 1.4rem !important;
}

#sb_instagram .sbi_follow_btn a:focus,
#sb_instagram .sbi_follow_btn a:hover {
  -webkit-box-shadow: inset 0 0 10px 20px #e12f3e !important;
  box-shadow: inset 0 0 10px 20px #e12f3e !important;
}

.sbi_lightbox_action a {
  font-size: 1.4rem !important;
}

.h-sns-section02 {
  padding: 0;
}

.sns-box01 {
  width: calc(100% / 3);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--txt);
  position: relative;
  background-image: url(/wp-content/uploads/2024/11/x-icon-bg-1.png);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: right -5% bottom -5%;
}

.sns-box01.youtube {
  background-color: var(--sub);
  background-image: url(/wp-content/uploads/2024/11/yt-icon-bg-1.png);
}

.sns-box01.tiktok {
  background-color: #0eb0ab;
  background-image: url(/wp-content/uploads/2024/11/tiktok-icon-bg-1.png);
}

.sns-box01 .sns-inner01 {
  border: 2px solid #fff;
  padding: 50px 50px;
  width: 100%;
}

.sns-icon {
  max-width: 50px;
  margin: 0 auto 10px;
}

.sns-txt01 {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}

.h-menu-section {
  background-image: url(/wp-content/uploads/2024/11/h-menu-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  padding-bottom: 140px;
}

.menu-list01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 60px;
}

.menu-list01 li {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
}

.menu-img01 {
  width: 200px;
}

.menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 60px 20px 30px;
  width: calc(100% - 200px);
  background-image: url(/wp-content/uploads/2024/11/r-arrow.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: right 25px top 50%;
}

.menu-ttl01 {
  font-size: 2.2rem;
  width: 100%;
  color: var(--main);
  font-weight: bold;
}

/*========================================================================================

提供サービス

=========================================================================================*/

.service .tab-group {
  width: calc(100% - 200px);
  margin: 0 auto 60px;
}

.service .tab {
  -webkit-box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  width: 23%;
  margin: 0 1% 20px;
}

.service-section02 {
  padding-top: 0;
  padding-bottom: 0;
}

.service-document-section {
  padding-top: 0;
}

.service-list01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 60px;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}

.service-img01 {
  margin-bottom: 20px;
}

.service-img01 img {
  aspect-ratio: 3 / 2;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.service-head01 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  background-image: url(/wp-content/uploads/2024/11/b-circle.png);
  background-repeat: no-repeat;
  background-position: left top 6px;
  background-size: 27px auto;
  padding-left: 32px;
}

.area-section {
  background-image: url(/wp-content/uploads/2024/11/area-bg03.jpg);
  background-size: cover;
  background-position: top center;
}

.area-box {
  padding: 50px;
  border: 2px solid #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.area-txt {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.staff-section {
  background-image: url(/wp-content/uploads/2024/11/sns-bg03-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.staff-list li {
  padding: 40px;
  background-color: #fff;
}

.staff-img {
  max-width: 250px;
  margin: 0 auto 15px;
}

.staff-position {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  background-color: var(--sub);
}

.staff-name01 {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5em;
}

.staff-name02 {
  text-align: center;
  margin-bottom: 20px;
}

.staff-table {
  align-items: flex-start;
  margin-bottom: 20px;
}

.staff-table dt {
  width: 25%;
  padding: 5px 8px;
  background-color: var(--sub);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
  font-size: 1.4rem;
  border-radius: 5px;
}

.staff-table dd {
  width: 70%;
  font-size: 1.6rem;
}

.staff-free {
  padding: 15px;
  font-size: 1.6rem;
  background-color: #f6f6f6;
  color: var(--main);
  font-weight: bold;
  border-radius: 5px;
}

/*========================================================================================

ご利用案内

=========================================================================================*/

.guide-section01 {
  padding-bottom: 120px;
}

.guide-section01 .tab {
  -webkit-box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  width: 23%;
  margin: 0 1% 20px;
}

.guide-flow02 {
  margin-top: 60px;
}

.guide-flow03 {
  margin-top: 60px;
}

.flow-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flow-list .flow-step {
  width: 30%;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}

.guide-section01 .flow-list .flow-step {
  border: 2px solid var(--main);
}

.flow-list .flow-arrow {
  width: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flow-icon {
  max-width: 80px;
  margin: 0 auto 25px;
}

.flow-head {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.flow-txt {
  margin-bottom: 0;
}

.step {
  padding: 5px 20px;
  border-radius: 999px;
  background-color: var(--sub);
  font-size: 1.8rem;
  color: #fff;
  max-width: 200px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 20px;
  letter-spacing: 0.1em;
}

.guide-flow-sub {
  margin-top: 45px;
  padding: 15px;
  background-color: #f3f3f3;
  border-radius: 8px;
}

.guide-flow-sub p {
  text-align: center;
  margin-bottom: 0;
}

.guide-block01 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.guide-content01 {
  width: 46%;
}

.guide-img01 {
  width: 46%;
}

.guide-img01 img {
  aspect-ratio: 4 / 2.7;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.guide-head01 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: 50px;
}

.guide-head01::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--sub);
  left: 0;
  right: 0;
  position: absolute;
  bottom: -20px;
}

.guide-txt01 {
  line-height: 2em;
  font-size: 2rem;
}

.guide-section02 {
  padding-top: 60px;
  padding-bottom: 140px;
}

.faq-q {
  letter-spacing: 0.05em;
  line-height: 1.75em;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: var(--main);
  border-bottom: 2px dashed var(--main);
  background-image: url(/wp-content/uploads/2024/11/faq-q.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left top 3px;
  padding-left: 36px;
  margin-top: 10px;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding-right: 37px;
  font-weight: bold;
  font-size: 2rem;
}

.faq-list.white .faq-q {
  color: #fff;
  border-bottom: 2px dashed #fff;
  background-image: url(/wp-content/uploads/2024/11/faq-q-w.png);
}

.faq-q:hover {
  opacity: 0.7;
  cursor: pointer;
}

.faq-q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  background-image: url(/wp-content/uploads/2024/11/b-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 14px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.faq-list.white .faq-q::after {
  background-image: url(/wp-content/uploads/2024/11/b-arrow-w.png);
}

.faq-q.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-q:first-of-type {
  margin-top: 0;
}

.faq-a {
  letter-spacing: 0.05em;
  line-height: 1.75em;
  background-image: url(/wp-content/uploads/2024/11/faq-a.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left top 3px;
  padding-left: 36px;
  display: none;
  margin-bottom: 20px;
  font-size: 2rem;
}

.faq-list.white .faq-a {
  color: #fff;
  background-image: url(/wp-content/uploads/2024/11/faq-a-w.png);
}

.guide-section03 {
  padding-top: 40px;
}

.document-list li a {
  font-size: 2rem;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--main);
  letter-spacing: 0.05em;
  color: var(--main);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding-left: 35px;
  background-image: url(/wp-content/uploads/2024/11/dl-icon.png);
  background-repeat: no-repeat;
  background-position: left top 2px;
  background-size: 25px auto;
  font-weight: bold;
}

.document-list li a:hover {
  opacity: 0.7;
}

/*========================================================================================

採用情報

=========================================================================================*/

.recruit-txt01 {
  text-align: center;
  color: var(--main);
  font-size: 3rem;
  margin-bottom: 70px;
}

.recruit-section01 {
  padding-bottom: 120px;
}

.wp-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}

.wp-img {
  margin-bottom: 20px;
}

.wp-img img {
  aspect-ratio: 3 / 2;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.wp-head {
  font-size: 2.3rem;
  margin-bottom: 20px;
  background-image: url(/wp-content/uploads/2024/11/b-circle.png);
  background-repeat: no-repeat;
  background-position: left top 6px;
  background-size: 27px auto;
  padding-left: 32px;
}

.recruit-section02 {
  padding-top: 60px;
  padding-bottom: 140px;
}

.recruit-section03 {
  padding-top: 40px;
  padding-bottom: 60px;
}

.recruit-section04 {
  padding-top: 40px;
  background-image: url(/wp-content/uploads/2024/11/h-menu-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}

.recruit-section04 .tab-panel-a .tab {
  -webkit-box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
}

/*========================================================================================

会社概要

=========================================================================================*/

.company-section01 {
  padding-bottom: 0;
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 30%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.company-section02 {
  padding-bottom: 0;
}

/*========================================================================================

お問い合わせ

=========================================================================================*/

.contact-section01 {
  padding-bottom: 0;
}

.tel-bnr a {
  display: block;
  width: 48%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.tel-bnr a:hover {
  opacity: 0.7;
}

.greeting-img03 {
  width: 27%;
  position: absolute;
  top: 7vw;
  z-index: 1;
  right: 20%;
  height: auto;
}

.greeting-img04 {
  width: 25%;
  position: absolute;
  top: 17vw;
  z-index: 1;
  right: 10%;
  height: auto;
}
