@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  * {
    font-size: 1.5rem;
  }
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック";
  -webkit-animation: fadeIn 1.2s ease-out normal;
  animation: fadeIn 1.2s ease-out normal;
}
html body {
  overflow-x: hidden;
  background: var(--background-color);
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
    transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
    transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
    transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
    transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
button {
  cursor: pointer;
}

.upper {
  text-transform: uppercase;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

a {
  font-size: 1.6rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  color: var(--font-color);
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  a {
    font-size: 1.5rem;
  }
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

.cont {
  width: 87.6%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .cont {
    max-width: 1400px;
  }
}

li {
  list-style: none;
}

.noto {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック",
    sans-serif;
}

.serif {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
}

@media screen and (min-width: 1200px) {
  .header {
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
  }
  .header::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header i {
    color: #fff;
    font-size: 2.6rem;
  }
  .header .header_logo {
    margin-left: 50px;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .header .header_logo h1,
  .header .header_logo span {
    font-size: 1.2rem;
    margin-bottom: 18px;
    display: block;
  }
  .header .header_logo img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
  .header .header_logo .ham_block {
    display: none;
  }
  .header * {
    color: #fff;
  }
  .header .logo_color {
    display: none;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    position: relative;
    gap: 20px;
  }
  .header-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
  }
  .header_menu_left {
    margin-right: 30px;
  }
  .header_contact {
    background: var(--main-color);
    width: 120px;
    height: 100%;
    font-size: 1.4rem;
    text-align: center;
    padding: 14px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff !important;
  }
  .header_contact::before {
    content: "";
    width: 34px;
    height: 26px;
    background-image: url(../img/mail_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto 5px;
  }
  .header-wrap_top .hours {
    font-size: 1.4rem;
  }
  .header-wrap_top .header_tel {
    font-size: 3rem;
  }
  .header-wrap_top .header_tel svg {
    width: 28px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 6px;
  }
  .header-wrap_top .header_tel .cls-1 {
    fill: #fff;
  }
  #menu-gnav {
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #menu-gnav .ham_block {
    display: none;
  }
  #menu-gnav li {
    position: relative;
  }
  #menu-gnav li a {
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    line-height: 2;
    display: block;
  }
}
@media screen and (max-width: 1199.9px) {
  .header {
    position: fixed;
    height: 80px;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
  }
  .header::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .header_logo {
    position: relative;
    max-width: calc(100% - 60px);
  }
  .header .header_logo h1,
  .header .header_logo span {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    color: #fff;
  }
  .header .header_logo img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
  .header .header_logo .ham_block {
    display: block;
  }
  .header .header_logo .ham_none {
    display: none;
  }
  .header .header__inner {
    padding: 0 20px;
    height: 100%;
  }
  .header .header-wrap {
    border-radius: 0;
    background: #fff;
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    padding-right: 24px;
    padding-top: 100px;
    padding-bottom: 24px;
    padding-left: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header #menu-gnav {
    margin-bottom: 50px;
  }
  .header #menu-gnav li {
    margin-bottom: 20px;
  }
  .header #menu-gnav li a {
    color: var(--main-color);
    line-height: 2;
    display: block;
    border-bottom: solid 1px var(--main-color);
    padding-bottom: 5px;
    padding-left: 14px;
  }
  .header .header_menu_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }
  .header .header_menu_left .hours {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .header .header_menu_left .header_tel {
    font-size: 2.6rem;
  }
  .header .header_menu_left .header_tel svg {
    width: 24px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
  }
  .header .header_menu_left .header_tel .cls-1 {
    fill: var(--main-color);
  }
  .header .header-wrap_top {
    display: block;
  }
  .header .header_contact {
    background: var(--main-color);
    width: 100%;
    max-width: 400px;
    font-size: 1.4rem;
    text-align: center;
    padding: 20px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .header .header_contact br {
    display: none;
  }
  .header .header_contact::before {
    content: "";
    width: 30px;
    height: 23px;
    background-image: url(../img/mail_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
  }
  .header #menu-gnav ul {
    display: block;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1199.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 99;
    border: none;
    background: none;
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 30px;
    height: 2px;
    background: #eee;
  }
  .hamburger__line {
    top: 14px;
    left: 5px;
  }
  .hamburger__line::before {
    content: "";
    top: 8px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    width: 20px;
    top: 16px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 16px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 30px;
  }
  .hamburger.active span::before {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 30px;
  }
  .hamburger.active .hamburger__line,
  .hamburger.active .hamburger__line::before,
  .hamburger.active .hamburger__line::after {
    background: var(--main-color);
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
.HeightMin {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.HeightMin::before {
  opacity: 0.7;
}
.HeightMin .hamburger__line,
.HeightMin .hamburger__line::before,
.HeightMin .hamburger__line::after {
  background: #eee;
}

#main_visual {
  position: relative;
}
#main_visual .swiper-wrapper {
  overflow: hidden;
}
#main_visual .main_visual-line {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}
#main_visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 106px;
  background-image: url(../../assets/img/header_bg.png);
  background-size: cover;
  background-position: bottom center;
  z-index: 2;
}
#main_visual.page_top::before {
  background-image: none;
}
@media screen and (max-width: 767.9px) {
  #main_visual .main_visual-line {
    bottom: -50px;
    right: 10px;
  }
}
#main_visual .main_visual-line a {
  width: 80px;
  height: auto;
  aspect-ratio: 80/160;
  display: block;
  -webkit-box-shadow: rgba(99, 99, 99, 0.1) 0px 3px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 3px 8px 0px;
}
@media screen and (max-width: 767.9px) {
  #main_visual .main_visual-line a {
    width: 60px;
  }
}
#main_visual .main_visual-line a img {
  width: 100%;
}

.main_visual {
  overflow-x: clip;
  overflow-y: visible;
}

.main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  min-height: 400px;
}

.main_swiper {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.main_swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.main_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.main_swiper .pagination_wrap {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 19px 24px 19px 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767.9px) {
  .main_swiper .pagination_wrap {
    padding: 10px 20px;
  }
}
.main_swiper .swiper-pagination {
  position: static;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -2px;
}
.main_swiper .swiper-pagination-bullet {
  margin: 0 5px !important;
  border-radius: 0;
  background-color: #dadada;
  width: 10px;
  height: 10px;
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  .main_swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }
}
.main_swiper .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}
.main_swiper .swiper-button-next:after,
.main_swiper .swiper-button-prev:after {
  color: var(--main-color);
}
.main_swiper .swiper-pagination-extra {
  text-wrap: nowrap;
  font-size: 1.6rem;
  color: var(--main-color);
  margin-right: 13px;
}
@media screen and (max-width: 767.9px) {
  .main_swiper .swiper-pagination-extra {
    font-size: 1.4rem;
  }
}
.main_swiper .swiper-pagination-extra span {
  color: #dadada;
}
.main_swiper .pagination_bar {
  width: 40px;
  height: 1px;
  background: #dadada;
  margin-right: 11px;
}
@media screen and (max-width: 767.9px) {
  .main_swiper .pagination_bar {
    width: 30px;
    margin-right: 8px;
  }
}

.page_top_title,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}

.main_visual-top_lead {
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100vw;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .main_visual-top_lead {
    top: auto;
    bottom: 80px;
  }
}
.main_visual-top_lead .cont {
  max-width: 1100px;
}
@media screen and (max-width: 767.9px) {
  .main_visual-top_lead .page_top_title {
    font-size: 2.5rem;
  }
}

.page_top_p {
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--main-color);
  font-size: 2rem;
  padding: 5px 12px;
  font-weight: 500;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_top_p {
    font-size: 1.4rem;
    padding: 2px 10px;
    margin-bottom: 20px;
  }
}

.page_top_title {
  color: #fff;
  font-size: 5rem;
  font-weight: 500;
  text-shadow: 0px 2px 10px rgba(153, 153, 153, 0.75);
}
@media screen and (max-width: 767.9px) {
  .page_top_title {
    font-size: 3rem;
  }
}

.top-about {
  padding-top: 126px;
  padding-bottom: 70px;
  margin-bottom: 164px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-about {
    margin-bottom: 80px;
    padding-top: 100px;
  }
}
.top-about::before {
  content: "";
  width: 64.28%;
  height: auto;
  aspect-ratio: 900/350;
  background: var(--sub-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .top-about::before {
    width: 85vw;
    bottom: auto;
    height: calc(100% - 300px);
    top: 300px;
  }
}
.top-about .flex-top {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-about .flex-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
}
.top-about .left {
  width: 54%;
  margin-top: 64px;
}
@media screen and (max-width: 767.9px) {
  .top-about .left {
    width: 100%;
    margin-top: 0;
  }
}
.top-about .left .description {
  padding-right: 85px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top-about .left .description {
    margin-bottom: 30px;
    padding-right: 0;
  }
}
.top-about .right {
  width: 50vw;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 700/570;
  height: auto;
  position: relative;
  margin-left: -10%;
}
@media screen and (max-width: 767.9px) {
  .top-about .right {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
  }
}
.top-about .right img {
  height: auto;
  position: absolute;
}
.top-about .right img:nth-child(1) {
  width: 85.7%;
  aspect-ratio: 600/500;
  right: 0;
  top: 0;
}
.top-about .right img:nth-child(2) {
  width: 50%;
  aspect-ratio: 350/200;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .top-about .more_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.description,
div.description p {
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .description,
  div.description p {
    line-height: 1.8;
  }
}

.contact_thanks h2,
.heading {
  font-size: 4rem;
  color: var(--main-color);
  margin-bottom: 38px;
  line-height: 1.75;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks h2,
  .heading {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.contact_thanks h2 span,
.heading span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  color: #fff;
  background: var(--main-color);
  padding: 1px 15px 2px;
  margin-bottom: 6px;
  font-weight: 500;
  min-width: 90px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks h2 span,
  .heading span {
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding: 1px 10px 2px;
    min-width: unset;
  }
}

.heading.white {
  color: #fff;
}
.heading.white span {
  color: var(--main-color);
  background: #fff;
}

.heading2 {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 24px;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767.9px) {
  .heading2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.heading3 {
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 35px;
  line-height: 1.75;
}
@media screen and (max-width: 767.9px) {
  .heading3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

.more_btn {
  background: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  min-width: 300px;
  line-height: 1;
  padding: 28px 35px 28px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .more_btn {
    padding: 15px 20px;
    height: 67px;
    gap: 20px;
    min-width: 260px;
  }
}
.more_btn::before {
  content: "";
  width: 90px;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .more_btn::before {
    width: 70px;
  }
}

.more_btn.white {
  background: none;
  color: var(--main-color);
  /*border: solid 1px #fff;*/
  padding-right: 0;
  padding-left: 0;
  min-width: unset;
  min-width: 250px;
}
@media screen and (max-width: 767.9px) {
  .more_btn.white {
    min-width: 200px;
  }
}
.more_btn.white::before {
  background: var(--main-color);
}

.more_btn.font_white {
  background: none;
  border: solid 1px #fff;
}

.rl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top-service {
  margin-bottom: 190px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-service {
    margin-bottom: 80px;
  }
}
.top-service .heading {
  margin-bottom: 62px;
}
@media screen and (max-width: 767.9px) {
  .top-service .heading {
    margin-bottom: 30px;
  }
}
.top-service li .more_btn {
  padding-right: 6px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .top-service .more_btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767.9px) {
  .top-service .more_btn.white {
    margin-right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .top-service .more_btn {
    margin: 0 auto;
  }
}

.top-other {
  padding-top: 110px;
  position: relative;
  margin-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .top-other {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}
.top-other::before {
  content: "";
  width: 67.86%;
  height: calc(100% - 50px);
  background: var(--sub-color);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top-other::before {
    width: 85vw;
  }
}
.top-other .cont {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-other .cont {
    gap: 40px;
  }
}

.shadow {
  -webkit-box-shadow: rgba(99, 99, 99, 0.18) 0px 2px 20px 0px;
  box-shadow: rgba(99, 99, 99, 0.18) 0px 2px 20px 0px;
}

.page_link-item {
  background: #fff;
  padding: 60px 100px 30px;
}
@media screen and (max-width: 767.9px) {
  .page_link-item {
    padding: 50px 30px 30px;
  }
}
.page_link-item .heading {
  margin-bottom: 20px;
}
.page_link-item .description {
  margin-bottom: 20px;
}
.page_link-item .more_btn {
  margin-left: auto;
}

.top-culture {
  position: relative;
  padding-bottom: 150px;
  margin-bottom: 220px;
}
@media screen and (max-width: 767.9px) {
  .top-culture {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
.top-culture::before {
  content: "";
  width: 100%;
  height: calc(100% - 90px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
}
.top-culture .cont {
  position: relative;
}
.top-culture .top-culture-heading {
  position: relative;
  padding: 146px 0 140px;
}
@media screen and (max-width: 767.9px) {
  .top-culture .top-culture-heading {
    padding: 80px 0;
  }
}
.top-culture .top-culture-heading .heading {
  position: relative;
  margin-bottom: 0;
  line-height: 1.5;
}
.top-culture .top-culture-heading .bg_img {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: calc(50% - 50vw);
  width: calc(100% + (100vw - 1000px) / 2);
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-culture .top-culture-heading .bg_img {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
  }
}
.top-culture .top-culture-heading .bg_img img {
  width: 100%;
  height: 100%;
}
.top-culture .top-culture-heading .bg_img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  opacity: 0.6;
  top: 0;
  left: 0;
}
.top-culture .top-other-bottom {
  padding-top: 40px;
}
.top-culture .top-other-bottom p {
  color: #fff;
  margin-bottom: 50px;
}

.top-news {
  margin-bottom: 170px;
}
@media screen and (max-width: 767.9px) {
  .top-news {
    margin-bottom: 100px;
  }
}
.top-news .cont {
  position: relative;
}
.top-news .cont::before {
  content: "";
  width: 85%;
  height: 260px;
  background: var(--sub-color);
  position: absolute;
  bottom: 20px;
  left: -50px;
  z-index: -1;
}
.top-news h2 {
  width: 250px;
}
.top-news .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.top-news .right ul {
  margin-bottom: 60px;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-news .right ul {
    margin-bottom: 30px;
  }
}
.top-news .right li {
  border-bottom: solid 1px #dadada;
}
.top-news .right li:last-child {
  border: none;
}
.top-news .right li a {
  gap: 20px 27px;
  padding: 28px 0;
}
@media screen and (max-width: 767.9px) {
  .top-news .right li a {
    padding: 25px 0;
    gap: 15px 26px;
  }
}
.top-news .right .post_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.top-news .right .post_category p {
  color: var(--main-color);
  border: solid 1px var(--main-color);
  font-size: 1.4rem;
  padding: 1px 12px;
}
.top-news .right .news_title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .top-news .right .news_title {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    font-size: 1.4rem;
  }
}
.top-news .right .more_btn {
  margin-left: auto;
}

.top-blog {
  position: relative;
  overflow: hidden;
  margin-bottom: 180px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-blog {
    margin-bottom: 100px;
  }
}
.top-blog::before {
  content: "";
  width: 71vw;
  height: 400px;
  background: var(--sub-color);
  position: absolute;
  bottom: 30px;
  right: 0;
}
.top-blog .cont {
  position: relative;
}
.top-blog .heading {
  margin-bottom: 38px;
}
.top-blog .swiper-blog {
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-blog .swiper-blog {
    margin-bottom: 50px;
  }
}
.top-blog .more_btn {
  margin: 0 auto;
}
.top-blog .blog_card {
  width: 400px;
}
@media screen and (max-width: 767.9px) {
  .top-blog .blog_card {
    width: 300px;
    max-width: 100%;
  }
}
.top-blog .blog_card img {
  display: block;
  aspect-ratio: 400/250;
  height: auto;
  margin-bottom: 20px;
}
.top-blog .blog_card .blog_title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .top-blog .blog_card .blog_title {
    font-size: 1.6rem;
  }
}
.top-blog .blog_card .blog_bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.top-blog .blog_card .blog_bottom * {
  font-size: 1.4rem;
  color: var(--main-color);
}
.top-blog .blog_card .blog_bottom .blog_category {
  padding-right: 15px;
  border-right: solid 1px #dadada;
  margin-right: 15px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-prev::after {
  content: "←";
}

.swiper-button-next::after {
  content: "→";
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 2rem;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.6rem;
  }
}

.swiper-button-prev {
  right: 60px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .swiper-button-prev {
    right: 50px;
  }
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev,
.swiper-button-next {
  will-change: transform;
  top: -80px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border: solid 1px var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fff;
}
.swiper-button-prev:hover::after,
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after,
.swiper-button-next:hover::after {
  color: var(--main-color);
}

.top-recruit {
  padding: 100px 0;
  position: relative;
  margin-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .top-recruit {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
.top-recruit .bg_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.top-recruit .bg_img img {
  width: 100%;
  height: 100%;
}
.top-recruit .bg_img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  opacity: 0.5;
  top: 0;
  left: 0;
}
.top-recruit .cont {
  position: relative;
}
.top-recruit .heading {
  text-align: center;
  margin-bottom: 30px;
}
.top-recruit .heading span {
  margin-inline: auto;
}
.top-recruit .description {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
.top-recruit .more_btn {
  margin: 0 auto;
}

.bottom_contact_box_bg {
  position: relative;
}
.bottom_contact_box_bg::before {
  content: "";
  background: var(--sub-color);
  width: calc(100% - 50px);
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .bottom_contact_box_bg::before {
    width: 97vw;
  }
}

.bottom_contact_box {
  position: relative;
  z-index: 4;
}
.bottom_contact_box .cont {
  /*background: #fff;*/
  padding: 70px 100px 82px;
  max-width: 1100px;
}
.bottom_contact_box .cont.shadow {
  background: #ffffff;
}
@media screen and (max-width: 1024px) {
  .bottom_contact_box .cont {
    padding-left: 7.8%;
    padding-right: 7.8%;
  }
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .cont {
    padding: 50px 30px;
  }
}
.bottom_contact_box .heading {
  margin-bottom: 25px;
}
.bottom_contact_box p {
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box p {
    font-size: 1.6rem;
  }
}
.bottom_contact_box .p1 {
  margin-bottom: 25px;
}
.bottom_contact_box .hours {
  margin-bottom: 45px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .hours {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}
.bottom_contact_box .hours span {
  color: var(--main-color);
}
.bottom_contact_box .flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px 60px;
  margin-top: 45px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .flex {
    margin-top: 30px;
  }
}
.bottom_contact_box.service .cont {
  padding: 57px 100px 82px;
}
@media screen and (max-width: 1024px) {
  .bottom_contact_box.service .cont {
    padding-left: 7.8%;
    padding-right: 7.8%;
  }
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box.service .cont {
    padding: 50px 30px;
  }
}
.bottom_contact_box.service .cont .p1 {
  margin-bottom: 46px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box.service .cont .p1 {
    margin-bottom: 25px;
  }
}

.tel_link {
  width: 420px;
  max-width: 100%;
  height: 90px;
  background: #fff;
  border: solid 1px var(--main-color);
  color: var(--main-color);
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .tel_link {
    font-size: 2.4rem;
    height: 70px;
  }
}
.tel_link svg {
  width: 28px;
  display: inline-block;
  margin-right: 13px;
  margin-top: 6px;
}
.tel_link svg .cls-1 {
  fill: var(--main-color);
}

.contact_link {
  width: 420px;
  max-width: 100%;
  height: 90px;
  background: var(--main-color);
  color: #fff;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .contact_link {
    font-size: 1.6rem;
    height: 70px;
  }
}
.contact_link::before {
  content: "";
  width: 34px;
  height: 26px;
  background-image: url(../img/mail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 16px;
}

.footer {
  background: var(--main-color);
  padding-top: 282px;
  margin-top: -210px;
  padding-bottom: 70px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding-top: 260px;
    padding-bottom: 40px;
  }
}
.footer * {
  color: #fff;
}
.footer .footer_main {
  gap: 30px;
  margin-bottom: 36px;
}
.footer .company_detail {
  margin-top: 6px;
}
.footer .company_detail * {
  font-size: 1.6rem;
  font-style: normal;
}
@media screen and (max-width: 767.9px) {
  .footer .company_detail * {
    font-size: 1.4rem;
  }
}
.footer .footer_logo {
  margin-bottom: 22px;
  max-width: 100%;
}
.footer .footer_logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.footer .fnav {
  gap: 10px 56px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.footer .fnav li a {
  padding-bottom: 16px;
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav li a {
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
}
.footer .fnav li ul {
  margin-bottom: 10px;
}
.footer .fnav li ul li a {
  font-size: 1.4rem;
  color: #cccccc;
  padding-bottom: 13px;
}
.footer .fnav li ul li a::before {
  content: "ー ";
}
.footer .footer_bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px 20px;
}
.footer .footer_bottom .sns a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 33px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom .sns a {
    margin-right: 20px;
  }
}
.footer .footer_bottom .sns a img {
  display: block;
}
.footer .footer_bottom .right a,
.footer .footer_bottom .right small {
  color: #ccc;
  font-size: 1.4rem;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom .right a,
  .footer .footer_bottom .right small {
    font-size: 1.2rem;
  }
}

.f_tel_wrap {
  margin-top: 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.f_tel_wrap p:nth-child(2)::before {
  content: "　/　";
}

#scroll-top {
  position: fixed;
  z-index: 5;
  bottom: 12px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: none;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

@media screen and (max-width: 767.9px) {
  #scroll-top {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    right: 8px;
    bottom: 0;
  }
}
#scroll-top:hover {
  bottom: 16px;
}

@media screen and (max-width: 767.9px) {
  #scroll-top:hover {
    bottom: 6px;
  }
}
#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top a span {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 29px;
  right: 11px;
}

#scroll-top a span::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 9px;
  right: 9px;
}

@media screen and (max-width: 767.9px) {
  #main_visual.page_top .main_visual-line {
    bottom: 10px;
  }
}

.page_top {
  height: 450px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_top {
    height: 350px;
  }
}
.page_top::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--main-color);
  opacity: 0.6;
  z-index: 2;
}
.page_top img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.page_top .cont {
  padding-top: 196px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    padding-top: 150px;
  }
}
.page_top .page_top_p {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_top_p {
    margin-bottom: 10px;
  }
}

.pankuzu {
  padding: 30px 0;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .pankuzu {
    padding: 15px 0;
    margin-bottom: 40px;
  }
}
.pankuzu a,
.pankuzu span {
  font-weight: 500;
}
.pankuzu a span {
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .pankuzu * {
    font-size: 1.2rem;
  }
}
.pankuzu .pankuzu_arrow {
  color: #dadada;
  margin: 0 10px;
}

.table1 {
  display: block;
}
.table1 tbody {
  display: block;
}
.table1 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .table1 tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: solid 1px var(--main-color);
    padding: 20px 0;
  }
}
.table1 th {
  color: var(--main-color);
  width: 200px;
  font-weight: 700;
  padding: 40px 0;
  border-bottom: solid 1px var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .table1 th {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    border: none;
  }
}
.table1 td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 40px 0 40px 46px;
  border-bottom: solid 1px #d0d0d0;
}
@media screen and (max-width: 767.9px) {
  .table1 td {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 0;
    border: none;
  }
}

.table2 {
  display: block;
}
.table2 tbody {
  display: block;
}
.table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .table2 tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.table2 th {
  color: var(--main-color);
  font-weight: 500;
  width: 100px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .table2 th {
    width: 100%;
    font-size: 1.6rem;
  }
}
.table2 td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .table2 td {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

.company-overview {
  margin-bottom: 144px;
}
@media screen and (max-width: 767.9px) {
  .company-overview {
    margin-bottom: 80px;
  }
}
.company-overview .heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .company-overview .heading {
    margin-bottom: 30px;
  }
}

.company-history {
  overflow: hidden;
  margin-bottom: 140px;
}
@media screen and (max-width: 767.9px) {
  .company-history {
    margin-bottom: 80px;
  }
}
.company-history .flex-top {
  gap: 30px 50px;
}
@media screen and (max-width: 1024px) {
  .company-history .flex-top {
    gap: 0;
  }
}
.company-history .heading {
  margin-bottom: 26px;
  position: relative;
  z-index: 3;
}
.company-history .left {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .company-history .left {
    width: 100%;
    z-index: 2;
  }
}
.company-history .left img {
  width: calc((100vw - 1000px) / 2 + 300px);
  max-width: unset;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: calc((100vw - 1000px) / -2);
  margin-right: 0;
}
@media (min-width: 2000px) {
  .company-history .left img {
    width: calc((100vw - 1400px) / 2 + 300px);
    margin-left: calc((100vw - 1400px) / -2);
  }
}
@media (max-width: 1140px) {
  .company-history .left img {
    margin-left: -6.2vw;
    width: calc(100% + 6.2vw);
  }
}
@media screen and (max-width: 1024px) {
  .company-history .left img {
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 767.9px) {
  .company-history .left img {
    aspect-ratio: 4/3;
  }
}
.company-history .right {
  margin-top: -70px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 117px 20px 120px 50px;
}
@media screen and (max-width: 1024px) {
  .company-history .right {
    width: 100%;
    margin-top: -60px;
  }
}
@media screen and (max-width: 767.9px) {
  .company-history .right {
    padding: 90px 30px 60px;
  }
}
.company-history .right::before {
  content: "";
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  background: var(--sub-color);
  position: absolute;
  top: 0;
  left: 0;
}
.company-history .right table {
  position: relative;
}

.company-access {
  margin-bottom: 200px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .company-access {
    margin-bottom: 80px;
  }
}
.company-access .heading {
  position: relative;
  z-index: 2;
}
.company-access .flex-top {
  margin-left: calc(50% - 50vw);
  gap: 20px 66px;
}
@media screen and (max-width: 1024px) {
  .company-access .flex-top {
    margin: 0;
  }
}
.company-access .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 708/488;
  height: auto;
  position: relative;
  z-index: 2;
  max-width: 960px;
}
@media screen and (max-width: 1024px) {
  .company-access .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    max-width: 500px;
    margin-left: calc(50% - 50vw);
  }
}
.company-access .left iframe {
  width: 100%;
  height: 100%;
}
.company-access .right {
  width: 380px;
  min-width: 31%;
  max-width: 100%;
  padding: 192px 0 55px;
  position: relative;
  margin-top: -90px;
}
@media screen and (max-width: 1024px) {
  .company-access .right {
    width: 100%;
    margin-top: -170px;
    margin-left: auto;
    max-width: 500px;
    padding-top: 180px;
  }
}
.company-access .right::before {
  content: "";
  width: 93vw;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--sub-color);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .company-access .right::before {
    width: 100vw;
  }
}
.company-access .right p,
.company-access .right address,
.company-access .right span {
  font-style: normal;
  margin-bottom: 10px;
  position: relative;
}
.company-access .right span {
  display: inline-block;
  margin-bottom: 10px;
}
.company-access .right .more_btn {
  margin-top: 55px;
  position: relative;
  gap: 55px;
}

.about-top {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.about-top .flex-top {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  gap: 19px;
}
@media screen and (max-width: 767.9px) {
  .about-top .flex-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about-top .left {
  width: 71%;
}
@media screen and (max-width: 767.9px) {
  .about-top .left {
    width: 100%;
    margin-top: 0;
  }
}
.about-top .left .heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .about-top .left .heading {
    margin-bottom: 30px;
  }
}
.about-top .left .description {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .about-top .left .description {
    margin-bottom: 30px;
  }
}
.about-top .right {
  width: 56vw;
  margin-top: 16px;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 574/600;
  height: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-top .right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.about-top .right img {
  height: auto;
  position: absolute;
}
.about-top .right img:nth-child(1) {
  width: 78.7%;
  aspect-ratio: 1/1;
  right: 0;
  top: 0;
}
.about-top .right img:nth-child(2) {
  width: 43%;
  aspect-ratio: 1/1;
  left: 0;
  bottom: 0;
}

.about-strengths {
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .about-strengths {
    margin-bottom: 80px;
  }
}
.about-strengths::before {
  content: "";
  width: 67vw;
  height: 400px;
  background: var(--sub-color);
  position: absolute;
  right: 34vw;
  right: auto;
  left: 0;
  top: -120px;
}
@media screen and (max-width: 767.9px) {
  .about-strengths::before {
    width: 85vw;
    top: -60px;
    height: 300px;
  }
}
.about-strengths .cont {
  position: relative;
}
.about-strengths .heading {
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .about-strengths .heading {
    margin-bottom: 30px;
  }
}

.row_base {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: calc(50% - 50vw);
  gap: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-left: solid 1px #dadada;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .row_base {
    margin-right: 0;
    gap: 50px;
  }
}
.row_base li {
  position: relative;
}
.row_base li::before {
  content: "";
  width: 1px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--main-color);
}
.row_base .left {
  margin-top: 14px;
  padding-left: 100px;
  position: relative;
  width: 46%;
}
@media screen and (max-width: 767.9px) {
  .row_base .left {
    width: 100%;
    padding-left: 50px;
    margin-bottom: 30px;
  }
}
.row_base .left .more_btn {
  margin-left: auto;
}
.row_base .rl {
  position: absolute;
  top: 13px;
  left: 10px;
  color: #999999;
  text-wrap-mode: nowrap;
}
@media screen and (max-width: 767.9px) {
  .row_base .rl {
    font-size: 1.2rem;
    top: 0;
  }
}
.row_base .description {
  margin-bottom: 30px;
}
.row_base .right {
  width: 46%;
}
@media screen and (max-width: 767.9px) {
  .row_base .right {
    width: 100%;
    max-width: 500px;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }
}
.row_base .right img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 550/380;
}

.row_item {
  margin-bottom: 100px;
  row-gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .row_item {
    margin-bottom: 40px;
  }
}
.row_item .detail {
  margin-top: 10px;
  width: 48%;
}
@media screen and (max-width: 767.9px) {
  .row_item .detail {
    width: 100%;
  }
}
.row_item .detail .description {
  padding-right: 30px;
}
@media screen and (max-width: 767.9px) {
  .row_item .detail .description {
    padding-right: 0;
  }
}
.row_item .img {
  width: 42.3vw;
  padding-right: 50px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 550/380;
}
@media screen and (max-width: 767.9px) {
  .row_item .img {
    width: 100%;
    padding-right: 0;
    margin-left: auto;
  }
}
.row_item .img img {
  width: 100%;
  height: 100%;
}

.row_item2 {
  margin-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .row_item2 {
    margin-bottom: 40px;
  }
}
.row_item2 .detail {
  margin-top: 25px;
  width: 55%;
}
@media screen and (max-width: 767.9px) {
  .row_item2 .detail {
    width: 100%;
  }
}
.row_item2 .detail .description {
  padding-right: 30px;
}
.row_item2 .heading3 {
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .row_item2 .heading3 {
    margin-bottom: 20px;
  }
}
.row_item2 .img {
  width: 42.5vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 552/380;
}
@media screen and (max-width: 767.9px) {
  .row_item2 .img {
    width: 100%;
    max-width: 500px;
  }
}
.row_item2 .img img {
  width: 100%;
  height: 100%;
}

.row_item3 {
  row-gap: 30px;
}
.row_item3 p {
  width: 50%;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .row_item3 p {
    width: 100%;
  }
}
.row_item3 img {
  width: 44.3%;
  aspect-ratio: 443/312;
}
@media screen and (max-width: 767.9px) {
  .row_item3 img {
    width: 100%;
    max-width: 500px;
  }
}

.about-achievements {
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .about-achievements {
    margin-bottom: 80px;
  }
}
.about-achievements::before {
  content: "";
  width: 70vw;
  height: calc(100% - 90px);
  background: var(--sub-color);
  position: absolute;
  left: auto;
  right: 0;
  top: 45px;
}
@media screen and (max-width: 767.9px) {
  .about-achievements::before {
    width: 85vw;
  }
}
.about-achievements .heading {
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.about-achievements .cont.wide {
  max-width: 1100px;
  position: relative;
}

.about-office {
  padding: 40px 0 100px;
  position: relative;
  margin-bottom: 170px;
}
@media screen and (max-width: 767.9px) {
  .about-office {
    margin-bottom: 80px;
    padding-bottom: 60px;
  }
}
.about-office::before {
  content: "";
  width: calc(100% - 50px);
  height: 100%;
  background: var(--main-color);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .about-office::before {
    width: 100%;
  }
}
.about-office .cont {
  position: relative;
}
.about-office .heading,
.about-office p {
  color: #fff;
}
.about-office ul {
  gap: 55px 33px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .about-office ul {
    gap: 30px 6%;
  }
}
.about-office ul li {
  width: 225px;
}
@media screen and (max-width: 767.9px) {
  .about-office ul li {
    width: 47%;
  }
}
.about-office ul img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 225/169;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .about-office ul img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .about-office ul p {
    font-size: 1.4rem;
  }
}

.greeting-top {
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .greeting-top {
    margin-bottom: 80px;
  }
}
.greeting-top::before {
  content: "";
  width: 61.5vw;
  height: calc(100% - 140px);
  background: var(--sub-color);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .greeting-top::before {
    width: 85vw;
    height: calc(100% - 40px);
  }
}
.greeting-top .cont {
  position: relative;
}
.greeting-top .flex-top {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  gap: 30px 19px;
}
@media screen and (max-width: 767.9px) {
  .greeting-top .flex-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.greeting-top .heading2 {
  margin-bottom: 50px;
}
.greeting-top .left {
  width: 65%;
}
@media screen and (max-width: 767.9px) {
  .greeting-top .left {
    width: 100%;
  }
}
.greeting-top .left .sign {
  margin-top: 30px;
  text-align: right;
}
.greeting-top .right {
  width: 35vw;
  margin-right: calc(50% - 50vw);
  position: relative;
  aspect-ratio: 450/592;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .greeting-top .right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.greeting-top .right img {
  width: 100%;
  height: 100%;
  display: block;
}

.greeting-service {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .greeting-service {
    margin-bottom: 80px;
  }
}
.greeting-service .cont {
  max-width: 1100px;
}
@media (min-width: 2000px) {
  .greeting-service .cont {
    max-width: 1400px;
  }
}
.greeting-service .row_base {
  border: none;
}

.business-service {
  margin-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .business-service {
    margin-bottom: 100px;
  }
}
.business-service .cont {
  max-width: 1100px;
}
@media (min-width: 2000px) {
  .business-service .cont {
    max-width: 1400px;
  }
}

.service-top {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .service-top {
    margin-bottom: 80px;
  }
}
.service-top .heading {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .service-top .heading {
    margin-bottom: 40px;
  }
}
.service-top ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 62px 40px;
}
@media screen and (max-width: 767.9px) {
  .service-top ul {
    row-gap: 50px;
  }
}
.service-top ul li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767.9px) {
  .service-top ul li {
    width: 100%;
    max-width: 500px;
  }
}
.service-top ul img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480/320;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service-top ul img {
    margin-bottom: 20px;
  }
}
.service-top ul .heading2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .service-top ul .heading2 {
    margin-bottom: 15px;
  }
}
.service-top ul .noto {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .service-top ul .noto {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
}

.service-about {
  margin-bottom: 134px;
  padding: 73px 0 78px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-about {
    padding: 50px 0;
    margin-bottom: 80px;
  }
}
.service-about::before {
  content: "";
  width: 73.8vw;
  height: 100%;
  background: var(--sub-color);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .service-about::before {
    width: 85vw;
  }
}
.service-about .cont {
  position: relative;
}
.service-about .flex-top {
  row-gap: 30px;
}
.service-about .flex-top .left {
  margin-top: 10px;
  width: 60%;
}
@media screen and (max-width: 767.9px) {
  .service-about .flex-top .left {
    width: 100%;
  }
}
.service-about .flex-top .left .description {
  padding-right: 30px;
}
.service-about .flex-top .right {
  width: 38.8vw;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 505/434;
}
@media screen and (max-width: 767.9px) {
  .service-about .flex-top .right {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
  }
}
.service-about .flex-top .right img {
  width: 100%;
  height: 100%;
}

.service-feature {
  margin-bottom: 100px;
}
.service-feature .heading {
  margin-bottom: 25px;
  text-align: center;
}
.service-feature ul {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 55px 0 50px;
  gap: 30px 35px;
}
.service-feature ul::before {
  content: "";
  width: calc(100% + (100vw - 1000px) / 2 + 50px);
  height: 100%;
  margin-right: calc(50% - 50vw);
  position: absolute;
  left: -50px;
  top: 0;
  background: var(--main-color);
}
@media screen and (max-width: 1024px) {
  .service-feature ul::before {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
  }
}
.service-feature li {
  width: 310px;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 430px) {
  .service-feature li {
    margin: 0 auto;
  }
}
.service-feature img {
  display: block;
  height: auto;
  aspect-ratio: 310/217;
  width: 100%;
  margin-bottom: 25px;
}
.service-feature .heading3 {
  color: #fff;
  margin-bottom: 20px;
}
.service-feature p {
  color: #fff;
}

.service-case {
  margin-bottom: 120px;
  padding-top: 85px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-case {
    margin-bottom: 80px;
    padding-top: 45px;
  }
}
.service-case::before {
  content: "";
  width: 73.8vw;
  height: calc(100% - 157px);
  background: var(--sub-color);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .service-case::before {
    width: 85vw;
  }
}
.service-case .cont {
  position: relative;
}
.service-case .heading {
  margin-bottom: 25px;
}
.service-case .service-case_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .service-case .service-case_wrap {
    margin-top: 30px;
  }
}
.service-case .service-case_item {
  background: #fff;
  padding: 50px 52px 50px 50px;
  gap: 30px 50px;
  margin-bottom: 75px;
}
@media screen and (max-width: 767.9px) {
  .service-case .service-case_item {
    padding: 30px;
    margin-bottom: 40px;
  }
}
.service-case .service-case_item .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .service-case .service-case_item .detail {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.service-case .service-case_item .detail .heading3 {
  margin: 4px 0 22px;
}
.service-case .service-case_item .detail p span {
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
}
.service-case .service-case_item .img {
  width: 44%;
  height: auto;
  aspect-ratio: 395/255;
}
@media screen and (max-width: 767.9px) {
  .service-case .service-case_item .img {
    width: 100%;
    max-width: 500px;
  }
}
.service-case .service-case_item .img img {
  width: 100%;
  height: 100%;
}

.service-detail_flex {
  margin-bottom: 220px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .service-detail_flex {
    margin-bottom: 80px;
  }
}
.service-detail_flex .heading {
  margin-bottom: 25px;
  text-align: center;
}
.service-detail_flex ul {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 65px 0 80px;
  gap: 75px 36px;
}
@media screen and (max-width: 767.9px) {
  .service-detail_flex ul {
    padding: 50px 0;
    gap: 40px 20px;
  }
}
.service-detail_flex ul::before {
  content: "";
  width: calc(100% + (100vw - 1000px) / 2 + 50px);
  height: 100%;
  margin-right: calc(50% - 50vw);
  position: absolute;
  left: -50px;
  top: 0;
  background: var(--main-color);
}
@media screen and (max-width: 1024px) {
  .service-detail_flex ul::before {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
  }
}
.service-detail_flex li {
  width: calc((100% - 36px) / 2);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-detail_flex li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .service-detail_flex li {
    width: 100%;
  }
}
.service-detail_flex img {
  display: block;
  height: auto;
  aspect-ratio: 480/320;
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .service-detail_flex img {
    margin-bottom: 20px;
  }
}
.service-detail_flex .heading3 {
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .service-detail_flex .heading3 {
    margin-bottom: 15px;
  }
}
.service-detail_flex p {
  color: #fff;
}

.page-id-60 .service-detail_flex {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page-id-60 .service-detail_flex {
    margin-bottom: 80px;
  }
}

.service-problems {
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-problems {
    padding-bottom: 80px;
  }
}
.service-problems::before {
  content: "";
  width: calc(100% - 50px);
  height: calc(100% - 65px);
  position: absolute;
  background: var(--sub-color);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .service-problems::before {
    width: 97vw;
    height: calc(100% - 45px);
  }
}
.service-problems .cont {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-problems .heading {
    margin-bottom: 20px;
  }
}
.service-problems .service-problems-question {
  position: relative;
  padding: 30px 50px 80px 42px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .service-problems .service-problems-question {
    padding: 30px 25px 50px;
  }
}
.service-problems .service-problems-question img {
  margin-right: calc(50% - 50vw);
  width: 35vw;
  aspect-ratio: 455/320;
}
@media screen and (max-width: 767.9px) {
  .service-problems .service-problems-question img {
    width: 100%;
    max-width: 500px;
  }
}
.service-problems .service-problems-question .detail {
  width: 67%;
  margin-left: 10px;
}
@media screen and (max-width: 767.9px) {
  .service-problems .service-problems-question .detail {
    width: 100%;
  }
}
.service-problems .service-problems-question ul {
  padding-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .service-problems .service-problems-question ul {
    padding-bottom: 15px;
  }
}
.service-problems .service-problems-question li {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .service-problems .service-problems-question li {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.service-problems .service-problems-question li svg {
  width: 18px;
  min-width: 18px;
  margin-top: 9px;
}
@media screen and (max-width: 767.9px) {
  .service-problems .service-problems-question li svg {
    width: 16px;
    min-width: 16px;
    margin-top: 8px;
  }
}
.service-problems .service-problems-question li svg .cls-1 {
  fill: var(--main-color);
}

.service-problems-answer {
  position: relative;
  padding-top: 125px;
}
@media screen and (max-width: 767.9px) {
  .service-problems-answer {
    padding-top: 90px;
  }
}
.service-problems-answer .heading {
  margin-bottom: 70px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .service-problems-answer .heading {
    margin-bottom: 40px;
  }
}
.service-problems-answer .heading::after {
  content: "";
  width: 1px;
  height: 157px;
  background: var(--main-color);
  position: absolute;
  top: -180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .service-problems-answer .heading::after {
    height: 100px;
    top: -110px;
  }
}
@media screen and (max-width: 767.9px) {
  .service-problems-answer .flex-top {
    row-gap: 30px;
  }
}
.service-problems-answer p {
  width: 50%;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .service-problems-answer p {
    width: 100%;
  }
}
.service-problems-answer img {
  width: 44.3%;
  aspect-ratio: 443/312;
}
@media screen and (max-width: 767.9px) {
  .service-problems-answer img {
    width: 100%;
    max-width: 500px;
  }
}

.service-needs {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .service-needs {
    margin-bottom: 80px;
  }
}
.service-needs .cont {
  max-width: 1100px;
  background: #fff;
  padding: 62px 50px 108px;
}
@media screen and (max-width: 767.9px) {
  .service-needs .cont {
    padding: 50px 25px 60px;
  }
}
.service-needs .heading {
  text-align: center;
  margin-bottom: 46px;
}
@media screen and (max-width: 767.9px) {
  .service-needs .heading {
    margin-bottom: 30px;
  }
}
.service-needs .flex-top {
  gap: 40px 3.5%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.service-needs .flex-top li {
  width: 310px;
  max-width: 100%;
}
@media screen and (max-width: 430px) {
  .service-needs .flex-top li {
    width: 100%;
  }
}
.service-needs .flex-top img {
  height: auto;
  aspect-ratio: 310/214;
  display: block;
  margin-bottom: 20px;
}
.service-needs .flex-top .heading3 {
  font-size: 2rem;
  color: var(--main-color);
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .service-needs .flex-top .heading3 {
    margin-bottom: 15px;
  }
}
.service-needs .comment {
  margin: -36px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 900px;
  background: var(--main-color);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  padding: 20px 80px;
}
@media screen and (max-width: 1024px) {
  .service-needs .comment {
    max-width: 80%;
  }
}
@media screen and (max-width: 767.9px) {
  .service-needs .comment {
    padding: 20px;
    font-size: 1.8rem;
  }
}

.service-message {
  padding-top: 92px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-message {
    padding-bottom: 80px;
    padding-top: 60px;
  }
}
.service-message::before {
  content: "";
  width: calc(100% - 50px);
  height: 100%;
  position: absolute;
  background: var(--sub-color);
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .service-message::before {
    width: 97vw;
  }
}
.service-message .cont {
  position: relative;
  max-width: 1140px;
}
.service-message .heading {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .service-message .heading {
    margin-bottom: 40px;
  }
}
.service-message .flex-top {
  max-width: 1000px;
  margin: 0 auto;
}

.anchor {
  margin-bottom: 90px;
}
.anchor .cont {
  gap: 30px 50px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .anchor .cont {
    gap: 20px;
  }
}
.anchor .cont a {
  width: 300px;
  max-width: 100%;
  background: var(--main-color);
  color: #fff;
  letter-spacing: 0.01em;
  padding: 23px 25px 23px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 430px) {
  .anchor .cont a {
    margin: 0 auto;
  }
}
.anchor .cont a::before {
  content: "";
  width: 90px;
  height: 1px;
  display: inline-block;
  margin-right: 16px;
  background: #fff;
}

.faq_wrap {
  margin-bottom: 190px;
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
}
@media screen and (max-width: 767.9px) {
  .faq_wrap {
    margin-bottom: 100px;
  }
}
.faq_wrap .wrapper {
  padding-top: 70px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .wrapper {
    padding-top: 50px;
  }
}
.faq_wrap .wrapper::before {
  content: "";
  width: 66.7vw;
  height: 394px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--sub-color);
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .wrapper::before {
    width: 85vw;
    height: 200px;
  }
}
.faq_wrap .cont {
  position: relative;
}
.faq_wrap .heading {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .heading {
    margin-bottom: 40px;
  }
}
.faq_wrap .accordion__content[aria-hidden="true"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.faq_wrap .accordion__title {
  margin-top: 30px;
}
.faq_wrap .accordion__title button {
  position: relative;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: none;
  font-size: 1.8rem;
  font-weight: 500;
  background: var(--main-color);
  color: #fff;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 30px 100px 30px 25px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__title button {
    font-size: 1.6rem;
    padding: 20px 50px 20px 20px;
  }
}
.faq_wrap .accordion__title button span {
  font-size: 4rem;
  display: inline-block;
  margin-right: 27px;
  line-height: 1;
  margin-top: -10px;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__title button span {
    font-size: 3rem;
    display: block;
    margin-top: -5px;
    margin-right: 15px;
  }
}
.faq_wrap .accordion__content {
  padding: 30px 100px 45px 25px;
  background: #fff;
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__content {
    padding: 20px;
    margin-top: 10px;
  }
}
.faq_wrap .accordion__content p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__content p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.faq_wrap .accordion__content span {
  color: var(--main-color);
  font-size: 4rem;
  display: inline-block;
  margin-right: 34px;
  line-height: 1;
  margin-top: -10px;
  font-weight: 500;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__content span {
    font-size: 3rem;
    display: block;
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.faq_wrap .accordion__title button::before,
.faq_wrap .accordion__title button::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__title button::before,
  .faq_wrap .accordion__title button::after {
    width: 30px;
  }
}
.faq_wrap .accordion__title button::before {
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__title button::before {
    right: 20px;
  }
}
.faq_wrap .accordion__title button::after {
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .accordion__title button::after {
    right: 20px;
  }
}
.faq_wrap .accordion.is-opened .accordion__title button::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.flow-top {
  margin-bottom: 140px;
}
@media screen and (max-width: 767.9px) {
  .flow-top {
    margin-bottom: 80px;
  }
}
.flow-top .flex-top {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  gap: 20px 80px;
}
@media screen and (max-width: 767.9px) {
  .flow-top .flex-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.flow-top .left {
  width: 80%;
  margin-top: 64px;
}
@media screen and (max-width: 767.9px) {
  .flow-top .left {
    width: 100%;
    margin-top: 0;
  }
}
.flow-top .left .description {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .flow-top .left .description {
    margin-bottom: 0;
  }
}
.flow-top .right {
  width: 70%;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 500/434;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .flow-top .right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.flow-top .right img {
  width: 100%;
  height: 100%;
}

.flow-content {
  position: relative;
  padding-top: 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .flow-content {
    padding-top: 50px;
    margin-bottom: 60px;
  }
}
.flow-content::before {
  content: "";
  width: 73.5vw;
  height: calc(100% - 150px);
  background: var(--sub-color);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .flow-content::before {
    width: 85vw;
  }
}
.flow-content .cont {
  position: relative;
}
.flow-content .heading {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .flow-content .heading {
    margin-bottom: 40px;
  }
}
.flow-content ol {
  margin-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .flow-content ol {
    margin-bottom: 100px;
  }
}
.flow-content ol li {
  margin-bottom: 60px;
  gap: 20px 50px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .flow-content ol li {
    margin-bottom: 80px;
  }
}
.flow-content ol li::before {
  content: "";
  width: 1px;
  height: 44px;
  background: var(--main-color);
  position: absolute;
  bottom: -44px;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .flow-content ol li::before {
    height: 35px;
    bottom: -60px;
    left: 20px;
  }
}
.flow-content ol li::after {
  content: "";
  width: 1px;
  height: 22px;
  background: var(--main-color);
  position: absolute;
  bottom: -44px;
  left: -6px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
@media screen and (max-width: 767.9px) {
  .flow-content ol li::after {
    height: 15px;
    left: 16px;
    bottom: -60px;
  }
}
.flow-content ol li img {
  width: 39.7%;
  height: auto;
  aspect-ratio: 397/257;
}
@media screen and (max-width: 767.9px) {
  .flow-content ol li img {
    width: 100%;
    max-width: 500px;
  }
}
.flow-content ol li .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .flow-content ol li .detail {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    margin-top: 0;
  }
}
.flow-content ol li .detail .heading3 {
  margin-bottom: 20px;
}
.flow-content ol li:last-child::before,
.flow-content ol li:last-child::after {
  content: none;
}

.flow-message .heading {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .flow-message .heading {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .flow-message img {
    margin: 0 auto;
  }
}

.flow-other {
  padding: 110px 0 130px;
  position: relative;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .flow-other {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}
.flow-other::before {
  content: "";
  width: 70vw;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--sub-color);
}
@media screen and (max-width: 767.9px) {
  .flow-other::before {
    width: 85vw;
  }
}
.flow-other .cont {
  position: relative;
}

.pp_content {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .pp_content {
    margin-bottom: 80px;
  }
}
.pp_content .cont {
  max-width: 800px;
}
.pp_content h2 {
  margin-top: 60px;
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 15px;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767.9px) {
  .pp_content h2 {
    margin-top: 40px;
    font-size: 2.2rem;
  }
}
.pp_content h3 {
  margin-top: 40px;
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 767.9px) {
  .pp_content h3 {
    font-size: 1.8rem;
  }
}
.pp_content p,
.pp_content li {
  line-height: 2;
}
.pp_content p,
.pp_content ul {
  margin-bottom: 24px;
}
.pp_content ul {
  margin-top: 20px;
  margin-left: 30px;
}
.pp_content ul li {
  list-style: disc;
}
.pp_content ul li::marker {
  font-size: 1rem;
}
.pp_content ol {
  margin-top: 20px;
  margin-left: 30px;
}
.pp_content ol li {
  list-style: decimal;
}

.recruit-top {
  position: relative;
  margin-bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .recruit-top {
    margin-bottom: 60px;
  }
}
.recruit-top .flex-top {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  gap: 30px 19px;
}
@media screen and (max-width: 767.9px) {
  .recruit-top .flex-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recruit-top .left {
  width: 74%;
}
@media screen and (max-width: 767.9px) {
  .recruit-top .left {
    width: 100%;
  }
}
.recruit-top .left .description {
  margin-bottom: 50px;
  padding-right: 30px;
}
@media screen and (max-width: 767.9px) {
  .recruit-top .left .description {
    padding-right: 0;
    margin-bottom: 0;
  }
}
.recruit-top .right {
  margin-top: 20px;
  width: 71%;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 555/536;
  height: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .recruit-top .right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.recruit-top .right img {
  height: auto;
  position: absolute;
}
.recruit-top .right img:nth-child(1) {
  width: 51.3%;
  aspect-ratio: 284/299;
  right: 0;
  top: 0;
}
.recruit-top .right img:nth-child(2) {
  width: 44.3%;
  aspect-ratio: 1/1;
  left: 0;
  top: 18%;
}
.recruit-top .right img:nth-child(3) {
  width: 51%;
  aspect-ratio: 1/1;
  right: 9%;
  bottom: 0;
}

.recruit-person {
  padding-top: 130px;
  margin-bottom: 175px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .recruit-person {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}
.recruit-person::before {
  content: "";
  width: 66vw;
  height: 400px;
  background: var(--sub-color);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .recruit-person::before {
    width: 85vw;
    height: 250px;
  }
}
.recruit-person .heading {
  margin-bottom: 0;
}
.recruit-person .cont {
  position: relative;
}
.recruit-person .flex {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 30px 100px;
}
@media screen and (max-width: 767.9px) {
  .recruit-person .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recruit-person p {
  width: 50%;
  margin: 20px 0;
}
@media screen and (max-width: 767.9px) {
  .recruit-person p {
    width: 100%;
  }
}
.recruit-person img {
  width: 42.7vw;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 550/382;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .recruit-person img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.recruit-message {
  padding: 90px 0 96px;
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .recruit-message {
    padding: 60px 0;
    margin-bottom: 80px;
  }
}
.recruit-message::before {
  content: "";
  width: calc(100% - 50px);
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .recruit-message::before {
    width: 97vw;
  }
}
.recruit-message .cont {
  position: relative;
}
.recruit-message .heading {
  margin-bottom: 30px;
}
.recruit-message .flex-top {
  row-gap: 30px;
}
.recruit-message .flex-top p {
  color: #fff;
  width: 50%;
}
@media screen and (max-width: 767.9px) {
  .recruit-message .flex-top p {
    width: 100%;
  }
}
.recruit-message .flex-top img {
  width: 40%;
  margin-top: 10px;
  aspect-ratio: 400/504;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .recruit-message .flex-top img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.recruit-job {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .recruit-job {
    margin-bottom: 80px;
  }
}
.recruit-job table {
  margin-bottom: 135px;
}
@media screen and (max-width: 767.9px) {
  .recruit-job table {
    margin-bottom: 80px;
  }
}
.recruit-job a {
  font-size: 2rem;
  color: #fff;
  background: var(--main-color);
  width: 420px;
  max-width: 100%;
  text-align: center;
  padding: 30px 20px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .recruit-job a {
    font-size: 1.8rem;
    max-width: 90%;
    padding: 20px;
  }
}

.archive_blog .archive_content,
.page_single .archive_content,
.news_wrapper .archive_content {
  gap: 80px 50px;
}
@media screen and (max-width: 767.9px) {
  .archive_blog .archive_content,
  .page_single .archive_content,
  .news_wrapper .archive_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.archive_blog .left,
.page_single .left,
.news_wrapper .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .archive_blog .left,
  .page_single .left,
  .news_wrapper .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.archive_blog .right,
.page_single .right,
.news_wrapper .right {
  width: 250px;
  max-width: 100%;
}

.page_single {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page_single {
    margin-bottom: 80px;
  }
}
.page_single .more_btn {
  padding-left: 0;
}
.page_single article .time_wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 32px;
  margin-bottom: 20px;
}
.page_single article .time_wrap * {
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .page_single article .time_wrap * {
    font-size: 1.2rem;
  }
}
.page_single article .time_wrap .blog_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: relative;
}
.page_single article .time_wrap .blog_category::after {
  content: "";
  width: 1px;
  height: 16px;
  background: #dadada;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -14px;
}
.page_single article .content {
  padding-bottom: 50px;
  border-bottom: solid 1px #dadada;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_single article .content {
    padding-bottom: 30px;
  }
}
.page_single article .content img {
  display: block;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_single article .content img {
    margin-bottom: 30px;
  }
}
.page_single article .content p {
  line-height: 2;
}
.page_single article .content a {
  text-decoration: underline;
}

.archive-cont {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .archive-cont {
    margin-bottom: 40px;
  }
}
.archive-cont h2 {
  background: var(--main-color);
  color: #fff;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  padding: 23px 0;
}
.archive-cont h2::before {
  content: "";
  width: 70px;
  height: 1px;
  background: #fff;
}
.archive-cont.category ul {
  margin-top: 35px;
}
.archive-cont.category ul li a {
  line-height: 2.8125;
  font-weight: 500;
}
.archive-cont.category ul li a::before {
  content: "― ";
}
.archive-cont.archive ul li {
  border-bottom: solid 1px #dadada;
  background: #fff;
}
.archive-cont.archive ul .accordion__title button {
  padding: 25px 40px 25px 15px;
  background: #fff;
  font-size: 1.6rem;
  letter-spacing: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  width: 100%;
  text-align: left;
  color: var(--font-color);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック";
}
.archive-cont.archive ul .accordion__title button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
  color: var(--main-color);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.archive-cont.archive ul .accordion__content {
  padding: 0 0 30px 32px;
}
.archive-cont.archive ul .accordion__content a {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  display: block;
}
.archive-cont.archive ul .accordion__content[aria-hidden="true"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.archive-cont.archive ul .accordion.is-opened .accordion__title button i {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.related {
  padding: 90px 0 120px;
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .related {
    padding: 60px 0 60px;
    margin-bottom: 80px;
  }
}
.related::before {
  content: "";
  width: calc(100% - 50px);
  height: 100%;
  background: var(--sub-color);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .related::before {
    width: 97vw;
  }
}
.related .cont {
  position: relative;
}
.related .heading {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .related .heading {
    margin-bottom: 40px;
  }
}
.related .related_list {
  gap: 24px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .related .related_list {
    gap: 40px 15px;
  }
}

.blog_card {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767.9px) {
  .blog_card {
    width: calc((100% - 15px) / 2);
  }
}
.blog_card a {
  display: block;
}
.blog_card img {
  display: block;
  aspect-ratio: 319/200;
  margin-bottom: 30px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .blog_card img {
    margin-bottom: 15px;
  }
}
.blog_card .blog_title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .blog_title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.blog_card .time_wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 28px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .time_wrap {
    gap: 20px;
  }
}
.blog_card .time_wrap * {
  font-size: 1.4rem;
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .blog_card .time_wrap * {
    font-size: 1rem;
  }
}
.blog_card .time_wrap .blog_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: relative;
}
.blog_card .time_wrap .blog_category::after {
  content: "";
  width: 1px;
  height: 16px;
  background: #dadada;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -14px;
}

.archive_blog {
  margin-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .archive_blog {
    margin-bottom: 80px;
  }
}
.archive_blog .blog_list {
  gap: 80px 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .archive_blog .blog_list {
    gap: 40px 15px;
    margin-bottom: 50px;
  }
}
.archive_blog .blog_card {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767.9px) {
  .archive_blog .blog_card {
    width: calc((100% - 15px) / 2);
    width: 100%;
  }
}

.page-numbers,
.newslist_pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .page-numbers,
  .newslist_pagenation {
    gap: 10px;
  }
}
.page-numbers .page-numbers,
.newslist_pagenation .page-numbers {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  text-align: center;
  border: solid 1px var(--font-color);
  font-size: 2rem;
  font-weight: 700;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .page-numbers,
  .newslist_pagenation .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
}
.page-numbers .page-numbers:hover,
.newslist_pagenation .page-numbers:hover {
  color: #fff;
  background: var(--main-color);
  border-color: var(--main-color);
}
.page-numbers .page-numbers:hover,
.newslist_pagenation .page-numbers:hover {
  color: #fff;
  background: var(--main-color);
  border-color: var(--main-color);
}
.page-numbers .current,
.newslist_pagenation .current {
  color: #fff;
  background: var(--main-color);
  border-color: var(--main-color);
}
.page-numbers .next::before,
.newslist_pagenation .next::before {
  font-family: "FontAwesome";
  content: "\f054";
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .next::before,
  .newslist_pagenation .next::before {
    font-size: 1.3rem;
  }
}
.page-numbers .prev::before,
.newslist_pagenation .prev::before {
  font-family: "FontAwesome";
  content: "\f053";
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .prev::before,
  .newslist_pagenation .prev::before {
    font-size: 1.3rem;
  }
}

.news_wrapper {
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper {
    margin-bottom: 80px;
  }
}
.news_wrapper article .time_wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.news_wrapper article time {
  color: var(--font-color);
}
.news_wrapper article .time_wrap {
  margin-bottom: 35px;
}
.news_wrapper article .time_wrap .blog_category::after {
  content: none;
}
.news_wrapper article .time_wrap .blog_category p {
  border: solid 1px var(--main-color);
  font-size: 1.4rem;
  padding: 1px 12px 2px;
}
.news_wrapper article .heading2 {
  padding-bottom: 40px;
  border-bottom: solid 1px #dadada;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper article .heading2 {
    padding-bottom: 30px;
  }
}

.news_list {
  margin-bottom: 85px;
}
@media screen and (max-width: 767.9px) {
  .news_list {
    margin-bottom: 50px;
  }
}
.news_list li {
  border-bottom: solid 1px #dadada;
  width: 100%;
}
.news_list a {
  gap: 15px 26px;
  padding: 35px 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .news_list a {
    padding: 25px 0;
  }
}
.news_list time,
.news_list .blog_category {
  margin-top: 4px;
}
@media screen and (max-width: 767.9px) {
  .news_list time {
    font-size: 1.2rem;
  }
}
.news_list .blog_category {
  gap: 5px;
}
.news_list .blog_category p {
  border: solid 1px var(--main-color);
  font-size: 1.4rem;
  padding: 1px 12px 2px;
}
@media screen and (max-width: 767.9px) {
  .news_list .blog_category p {
    font-size: 1.2rem;
  }
}
.news_list .news_title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .news_list .news_title {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    font-size: 1.4rem;
  }
}

.contact_page .bottom_contact_box {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .bottom_contact_box {
    margin-bottom: 80px;
  }
}
.contact_page .bottom_contact_box .cont {
  gap: 30px 50px;
  max-width: 1150px;
  width: 90%;
  padding: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.contact_page .bottom_contact_box .wrap {
  width: 550px;
  max-width: 100%;
  padding: 60px 45px 65px;
  background: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .contact_page .bottom_contact_box .wrap {
    padding: 30px;
  }
}
.contact_page .bottom_contact_box .wrap a {
  margin: 0 auto;
}

.contact_bg {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .contact_bg {
    padding-bottom: 80px;
  }
}
.contact_bg::before {
  content: "";
  background: var(--sub-color);
  width: calc(100% - 50px);
  height: calc(100% - 65px);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .contact_bg::before {
    width: 100vw;
  }
}

@media screen and (max-width: 1024px) {
  .page-id-20 .bottom_contact_box_bg::before,
  .page-id-21 .bottom_contact_box_bg::before,
  .page-id-22 .bottom_contact_box_bg::before {
    width: 100vw;
  }
}

.contact_message {
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .contact_message {
    margin-bottom: 100px;
  }
}
.contact_message .cont {
  background: #fff;
  position: relative;
  padding: 60px 45px 90px;
}
@media screen and (max-width: 767.9px) {
  .contact_message .cont {
    padding: 30px 30px 60px;
  }
}
.contact_message .cont::after {
  content: "";
  width: 1px;
  height: 157px;
  width: 1px;
  background: var(--main-color);
  position: absolute;
  bottom: -103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .contact_message .cont::after {
    height: 100px;
    bottom: -60px;
  }
}
.contact_message h2 {
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .contact_message h2 {
    margin-bottom: 30px;
  }
}
.contact_message ul li {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 767.9px) {
  .contact_message ul li {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    padding-left: 0;
    padding-right: 0;
  }
}
.contact_message ul li span {
  margin-top: 11px;
}
@media screen and (max-width: 767.9px) {
  .contact_message ul li span {
    margin-top: 3px;
  }
}

.form {
  position: relative;
}
.form .cont {
  max-width: 900px;
}
.form .heading {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .form .heading {
    margin-bottom: 50px;
  }
}
.form table,
.form tbody,
.form tr,
.form th,
.form td {
  display: block;
}
.form table br,
.form tbody br,
.form tr br,
.form th br,
.form td br {
  display: none;
}
.form p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .form p {
    font-size: 1.6rem;
  }
}
.form input,
.form textarea {
  width: 100%;
  border: solid 1px #cccccc;
  padding: 24px 30px;
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック";
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .form input,
  .form textarea {
    padding: 15px 20px;
    font-size: 1.6rem;
  }
}
.form tr {
  margin-bottom: 55px;
}
@media screen and (max-width: 767.9px) {
  .form tr {
    margin-bottom: 40px;
  }
}
.form th {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .form th {
    font-size: 1.6rem;
  }
}
.form .ex {
  color: #888888;
  font-size: 1.6rem;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .form .ex {
    font-size: 1.4rem;
  }
}
.form .check::before {
  content: "※";
  color: #ff0000;
  display: inline-block;
  margin-left: 18px;
}
.form textarea {
  min-height: 300px;
}
@media screen and (max-width: 767.9px) {
  .form textarea {
    min-height: 250px;
  }
}
.form .wpcf7-list-item {
  margin-left: 0;
  margin-right: 50px;
}
@media screen and (max-width: 767.9px) {
  .form .wpcf7-list-item {
    margin-right: 20px;
    margin-bottom: 10px;
  }
}
.form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.form .wpcf7-list-item label input {
  width: 20px;
  height: 20px;
  padding: 0;
}
.form .wpcf7-list-item label span {
  font-size: 1.6rem;
}
.form .privacy_policy_check {
  text-align: center;
  margin-bottom: 70px;
}
.form .privacy_policy_check a {
  text-decoration: underline;
  text-underline-offset: 10px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check a {
    text-underline-offset: 5px;
  }
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check span {
    font-size: 1.5rem;
  }
}
.form .privacy_policy_check input {
  margin-right: 30px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check input {
    margin-right: 10px;
  }
}
.form .submit input {
  cursor: pointer;
  background: var(--main-color);
  color: #fff;
  width: 350px;
  max-width: 100%;
  height: 95px;
  text-align: center;
  display: grid;
  place-content: center;
  font-size: 2rem;
  border: solid 1px var(--main-color);
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .form .submit input {
    height: 67px;
    font-size: 1.8rem;
  }
}
.form .submit input:hover {
  color: var(--main-color);
  background: #fff;
}

.contact_thanks {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.contact_thanks::before {
  content: "";
  background: var(--sub-color);
  width: calc(100% - 50px);
  height: calc(100% + 1000px);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .contact_thanks::before {
    width: 97vw;
  }
}
.contact_thanks .cont {
  position: relative;
  max-width: 1100px;
}
.contact_thanks p {
  margin-bottom: 40px;
}
.contact_thanks .more_btn {
  padding-left: 0;
  border: none;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.page-id-21 .contact_bg {
  padding-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .page-id-21 .contact_bg {
    padding-top: 60px;
  }
}
.page-id-21 .contact_bg::before {
  height: 100%;
}

.page-id-1002 #main_visual .main_visual-line {
  bottom: 55px;
}

.page_top.lp {
  width: 100%;
  height: 690px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_top.lp {
    min-height: 600px;
    height: 100svh;
  }
}
.page_top.lp .cont {
  padding-top: 130px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 80px;
  width: calc(100% - 200px);
}
@media screen and (max-width: 767.9px) {
  .page_top.lp .cont {
    padding-bottom: 40px;
    width: 90%;
    padding-right: 50px;
  }
}
.page_top.lp .cont h1 {
  color: #fff;
  font-size: 5rem;
  letter-spacing: 0.025em;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .page_top.lp .cont h1 {
    font-size: 2.8rem;
  }
}

.page_lp h2 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp h2 {
    font-size: 2.6rem;
  }
}
.page_lp .description2 {
  text-align: center;
  line-height: 2.2;
}
.page_lp .lp1 {
  padding-top: 100px;
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp1 {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}
.page_lp .lp1 h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp1 h2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp1 .lp1_cont {
  gap: 30px 50px;
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp1 .lp1_cont {
    padding-bottom: 40px;
  }
}
.page_lp .lp1 .lp1_cont::before {
  content: "";
  width: 90%;
  background: var(--sub-color);
  height: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.page_lp .lp1 .lp1_cont .img {
  margin-left: calc(50% - 50vw);
  padding-left: 50px;
  width: 60%;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp1 .lp1_cont .img {
    width: 100%;
    padding-left: 0;
  }
}
.page_lp .lp1 .lp1_cont .img img {
  display: block;
  height: auto;
  width: 100%;
  aspect-ratio: 55/38;
}
.page_lp .lp1 .lp1_cont p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 100px;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp1 .lp1_cont p {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 0;
  }
}
.page_lp .lp2 {
  margin-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 {
    margin-bottom: 80px;
  }
}
.page_lp .lp2 .cont {
  position: relative;
  padding: 80px 0 120px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .cont {
    padding-top: 55px;
    padding-bottom: 50px;
  }
}
.page_lp .lp2 .cont::before {
  content: "";
  width: calc(100% + (100vw - 1000px) / 2 + 50px);
  height: 100%;
  margin-left: calc(50% - 50vw);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--main-color);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .page_lp .lp2 .cont::before {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
  }
}
.page_lp .lp2 .cont h2 {
  margin-bottom: 36px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .cont h2 {
    margin-bottom: 30px;
  }
}
.page_lp .lp2 .cont p {
  color: #fff;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .cont p {
    margin-bottom: 30px;
  }
}
.page_lp .lp2 .cont .img_wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 45px 35px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .cont .img_wrap {
    gap: 15px 4%;
  }
}
.page_lp .lp2 .cont .img_wrap img {
  width: 310px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 310/214;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .cont .img_wrap img {
    width: 48%;
  }
}
.page_lp .lp3 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 {
    margin-bottom: 80px;
  }
}
.page_lp .lp3 .description2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 .description2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp3 ul {
  gap: 40px 32px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.page_lp .lp3 ul li {
  width: 310px;
  max-width: 100%;
}
@media screen and (max-width: 430px) {
  .page_lp .lp3 ul li {
    width: 100%;
  }
}
.page_lp .lp3 ul li h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul li h3 {
    font-size: 1.8rem;
  }
}
.page_lp .lp3 ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 310/214;
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul li img {
    margin-bottom: 10px;
  }
}
.page_lp .lp3 ul li p {
  font-weight: 400;
  line-height: 1.75;
}
.page_lp .lp4 {
  margin-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 {
    margin-bottom: 80px;
  }
}
.page_lp .lp4 h2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 h2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp4 .flex-top {
  gap: 0 60px;
  padding-bottom: 20px;
  position: relative;
}
.page_lp .lp4 .flex-top::before {
  content: "";
  width: 62vw;
  height: calc(100% - 140px);
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--sub-color);
  z-index: -1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 .flex-top::before {
    width: 80vw;
    height: calc(100% - 80px);
  }
}
.page_lp .lp4 .flex-top .img_wrap {
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto;
  aspect-ratio: 450/592;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 .flex-top .img_wrap {
    width: 100%;
    max-width: 500px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-bottom: 40px;
  }
}
.page_lp .lp4 .flex-top .img_wrap img {
  width: 100%;
  height: 100%;
}
.page_lp .lp4 .flex-top .left {
  width: 64%;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 .flex-top .left {
    width: 100%;
    max-width: unset;
  }
}
.page_lp .lp4 .flex-top .left h3 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 .flex-top .left h3 {
    font-size: 1.8rem;
  }
}
.page_lp .lp4 .flex-top .left p {
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 .flex-top .left p {
    margin-bottom: 40px;
  }
}
.page_lp .lp5 {
  margin-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 {
    margin-bottom: 80px;
  }
}
.page_lp .lp5 h2 {
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp5 .cont {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .cont {
    padding: 55px 0 50px;
  }
}
.page_lp .lp5 .cont::before {
  content: "";
  width: calc(100% + (100vw - 1000px) / 2 + 50px);
  height: 100%;
  margin-right: calc(50% - 50vw);
  position: absolute;
  left: -50px;
  top: 0;
  background: var(--main-color);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .page_lp .lp5 .cont::before {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
  }
}
.page_lp .lp5 ul {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 75px 40px;
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 ul {
    gap: 40px 20px;
    margin-top: 40px;
  }
}
.page_lp .lp5 li {
  width: calc((100% - 40px) / 2);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 li {
    width: 100%;
  }
}
.page_lp .lp5 h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.4rem;
  letter-spacing: 0.025em;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 h3 {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}
.page_lp .lp5 img {
  display: block;
  height: auto;
  aspect-ratio: 480/320;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 img {
    margin-bottom: 20px;
  }
}
.page_lp .lp5 p {
  color: #fff;
  font-weight: 400;
}
.page_lp .lp6 {
  padding-bottom: 160px;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}
.page_lp .lp6:after {
  content: "";
  width: 175px;
  height: auto;
  aspect-ratio: 175/60;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6:after {
    width: 100px;
  }
}
.page_lp .lp6 .cont {
  max-width: 1100px;
}
.page_lp .lp6 .description2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 .description2 {
    margin-bottom: 50px;
  }
}
.page_lp .lp6 ul {
  gap: 50px 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 ul {
    row-gap: 40px;
  }
}
.page_lp .lp6 ul li {
  width: 250px;
}
.page_lp .lp6 ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 50%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 ul li img {
    margin-bottom: 15px;
  }
}
.page_lp .lp6 ul li h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: var(--main-color);
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 ul li h3 {
    font-size: 2rem;
  }
}
.page_lp .lp6 ul li p {
  font-weight: 400;
}
.page_lp .lp7 {
  margin-top: 120px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.page_lp .lp7 h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp7 .description2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .description2 {
    margin-bottom: 60px;
  }
}
.page_lp .lp7 .company_voice {
  margin-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice {
    margin-bottom: 60px;
  }
}
.page_lp .lp7 .company_voice .top {
  gap: 30px 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .page_lp .lp7 .company_voice .top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top {
    margin-bottom: 40px;
  }
}
.page_lp .lp7 .company_voice .top img {
  width: 49%;
  height: auto;
  aspect-ratio: 500/307;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top img {
    width: 100%;
  }
}
.page_lp .lp7 .company_voice .top .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top .right {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page_lp .lp7 .company_voice .top .right h3 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: var(--main-color);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top .right h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.page_lp .lp7 .company_voice .top .right .position {
  font-weight: 400;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top .right .position {
    margin-bottom: 0;
  }
}
.page_lp .lp7 .company_voice .top .right .position span {
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top .right .position span {
    margin-right: 10px;
  }
}
.page_lp .lp7 .company_voice .top .right .name {
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .top .right .name {
    font-size: 1.6rem;
  }
}
.page_lp .lp7 .company_voice .company_voice_faq .question {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .company_voice_faq .question {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.page_lp .lp7 .company_voice .company_voice_faq .answer {
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 .company_voice .company_voice_faq .answer {
    margin-bottom: 40px;
  }
}
.page_lp .lp7 .company_voice:last-child {
  margin-bottom: 0;
}
.page_lp .bg_wrap {
  padding-top: 90px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .bg_wrap {
    padding-top: 60px;
  }
}
.page_lp .bg_wrap::before {
  content: "";
  position: absolute;
  width: 73.8vw;
  height: calc(100% - 255px);
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  background: var(--sub-color);
}
@media screen and (max-width: 767.9px) {
  .page_lp .bg_wrap::before {
    height: calc(100% - 100px);
  }
}
.page_lp .lp8 {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 {
    margin-bottom: 80px;
  }
}
.page_lp .lp8::before {
  content: "";
  position: absolute;
  width: 73.8vw;
  height: calc(100% - 60px);
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  background: var(--sub-color);
  z-index: -1;
}
.page_lp .lp8 .heading {
  text-align: left;
}
.page_lp .lp8 .description2 {
  text-align: left;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 .description2 {
    margin-bottom: 50px;
  }
}
.page_lp .lp8 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px 60px;
}
.page_lp .lp8 ul li {
  position: relative;
}
.page_lp .lp8 ul li::before {
  content: "";
  background: var(--main-color);
  width: 1px;
  height: 44px;
  position: absolute;
  bottom: 25px;
  left: 43px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul li::before {
    height: 30px;
    position: absolute;
    bottom: -38px;
    left: 32px;
  }
}
.page_lp .lp8 ul li::after {
  content: "";
  background: var(--main-color);
  width: 1px;
  height: 19px;
  position: absolute;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  bottom: 25px;
  left: 37px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul li::after {
    bottom: -40px;
    left: 27px;
  }
}
.page_lp .lp8 ul li .time {
  margin-top: 10px;
  width: 90px;
  min-width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-weight: 400;
  margin-right: 35px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul li .time {
    margin-top: 0;
    width: 60px;
    min-width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin-right: 20px;
  }
}
.page_lp .lp8 ul li .detail {
  margin-top: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul li .detail {
    margin-top: 0;
    padding-right: 0;
  }
}
.page_lp .lp8 ul li .detail h3 {
  color: var(--main-color);
  font-size: 2.4rem;
  margin-bottom: 30px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul li .detail h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.page_lp .lp8 ul li .detail p {
  font-weight: 400;
}
.page_lp .lp8 ul li .img {
  width: 397px;
  height: auto;
  aspect-ratio: 397/257;
  max-width: 40%;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul li .img {
    width: 100%;
    margin-top: 20px;
    max-width: unset;
  }
}
.page_lp .lp8 ul li .img img {
  width: 100%;
  height: 100%;
}
.page_lp .lp8 ul li:last-child::before,
.page_lp .lp8 ul li:last-child::after {
  content: none;
}
.page_lp .lp9 {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 {
    margin-bottom: 80px;
  }
}
.page_lp .lp9 .description2 {
  margin-bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 .description2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp9 img {
  height: auto;
  aspect-ratio: 1000/450;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 img {
    aspect-ratio: 5/3;
  }
}
.page_lp .lp10 {
  padding-top: 90px;
  position: relative;
  padding-bottom: 65px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 {
    padding-top: 60px;
    padding-bottom: 50px;
    margin-bottom: 80px;
  }
}
.page_lp .lp10::before {
  content: "";
  position: absolute;
  width: 73.8vw;
  height: 100%;
  top: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  background: var(--sub-color);
}
.page_lp .lp10 .cont {
  position: relative;
}
.page_lp .lp10 .description2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 .description2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp10 .flex-top {
  gap: 30px 40px;
}
.page_lp .lp10 .flex-top .img_wrap {
  width: 46%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 .flex-top .img_wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.page_lp .lp10 .flex-top .img_wrap img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.page_lp .lp10 .flex-top .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 .flex-top .right {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page_lp .lp10 .flex-top .right p {
  background: var(--main-color);
  color: #fff;
  padding: 25px 30px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 .flex-top .right p {
    font-size: 1.6rem;
    padding: 15px 20px;
  }
}
.page_lp .lp11 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp11 .description2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .description2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp11 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .wrap {
    gap: 50px;
  }
}
.page_lp .lp11 .lp11_contents img {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 1000/450;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_contents img {
    aspect-ratio: 5/3;
    margin-bottom: 30px;
  }
}
.page_lp .lp11 .lp11_contents p {
  font-weight: 400;
  line-height: 1.8;
}
.page_lp .lp12 {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp12 {
    margin-bottom: 80px;
  }
}
.page_lp .lp12 h2 {
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp12 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp12 table {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp12 table {
    margin-bottom: 60px;
  }
}
.page_lp .lp12 a {
  font-size: 2rem;
  color: #fff;
  background: var(--main-color);
  width: 420px;
  max-width: 100%;
  text-align: center;
  padding: 30px 20px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp12 a {
    font-size: 1.8rem;
    max-width: 90%;
    padding: 20px;
  }
}
.page_lp .bottom_contact_box h2 {
  text-align: left;
}
.page_lp .bottom_contact_box .p2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .bottom_contact_box .p2 {
    margin-bottom: 40px;
  }
} /*# sourceMappingURL=common.css.map */

.pankuzu .cont_404 .home span {
  color: var(--main-color) !important;
}
.pankuzu .cont_404 a span {
  color: var(--font-color) !important;
}

/* LINE追従 */
.is-follow {
  position: fixed !important;
  bottom: 80px !important;
  right: 20px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .is-follow {
    bottom: 50px !important;
  }
}
.is-follow a {
  width: 80px;
  height: auto;
  aspect-ratio: 80 / 160;
  display: block;
  -webkit-box-shadow: rgba(99, 99, 99, 0.1) 0px 3px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 3px 8px 0px;
}
.is-follow a img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  .main_visual-top_lead {
    bottom: 130px;
  }
  .is-follow {
    right: 10px;
  }
  .is-follow a {
    width: 60px;
  }
}
.header .main_visual-line {
  display: none;
}
.header .main_visual-line.is-follow {
  display: block;
}
#main_visual .is-follow {
  display: none;
}
