@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-weight: 400;
  word-break: break-word;
}
@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;
  word-break: break-all;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック",
    sans-serif;
  -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;
  color: var(--font-color);
}

.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);
}
@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;
  }
}

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

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

li {
  list-style: none;
}

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

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

@media screen and (min-width: 1350px) {
  .header {
    position: fixed;
    background: var(--background-color);
    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;
  }
  .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 {
    margin-left: 50px;
    overflow: hidden;
  }
  .header .header_logo a {
    position: relative;
  }
  .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 .logo_color {
    display: none;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    position: relative;
    margin-right: 50px;
  }
  .header-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
  }
  #menu-gnav {
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #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;
    font-weight: 500;
    font-size: 1.4rem;
  }
}
.header-contact {
  margin-right: -20px;
}

.header-contact a {
  color: var(--main-color);
  background: #fff;
  border: solid 1px var(--main-color);
}

.header-entry a {
  background: var(--main-color);
  color: #fff;
}

@media screen and (max-width: 1349.9px) {
  .header {
    background: var(--background-color);
    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;
  }
  .header .header_logo a {
    position: relative;
  }
  .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 {
    line-height: 2;
    display: block;
    border-bottom: solid 1px var(--font-color);
    padding-bottom: 5px;
    padding-left: 14px;
  }
  .header .header-contact {
    margin-top: 50px;
  }
  .header #menu-gnav ul {
    display: block;
  }
}
.header-contact a,
.header-entry a {
  font-family: "Figtree", "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ",
    "MS Pゴシック", sans-serif;
  width: 130px;
  border-radius: 20px;
  font-size: 1.6rem;
  text-align: center;
  padding: 4px 0 !important;
  display: block;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 1349.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: var(--font-color);
  }
  .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;
  }
  .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;
  }
}
.main_visual {
  height: auto;
  min-height: calc(100vh - 100px);
  margin-top: 100px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1349.9px) {
  .main_visual {
    min-height: calc(100svh - 80px);
    margin-top: 80px;
  }
}
.main_visual::before {
  content: "";
  width: 100%;
  height: calc(100% - 150px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  z-index: -1;
}
.main_visual .main_swiper {
  width: calc(100% - 50px);
  height: calc(100% - 60px);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_swiper {
    width: calc(100% - 35px);
    height: calc(100% - 30px);
  }
}
.main_visual .main_swiper img {
  width: 100%;
  height: 100%;
}
.main_visual .main_visual-line {
  position: absolute;
  bottom: 120px;
  right: 0;
  width: 70px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual-line {
    width: 55px;
    bottom: 30px;
  }
}
.main_visual .main_visual-line a {
  display: block;
}
.main_visual .main_visual-top_lead {
  position: relative;
  margin-left: 150px;
  margin-top: 285px;
  margin-bottom: 60px;
  z-index: 2;
  width: calc(100% - 250px);
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual-top_lead {
    margin-left: 60px;
    width: calc(100% - 120px);
  }
}
.main_visual .main_visual-top_lead h2 {
  color: #fff;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 33px;
}
@media screen and (max-width: 1024px) {
  .main_visual .main_visual-top_lead h2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual-top_lead h2 {
    font-size: 3.8rem;
  }
}
.main_visual .main_visual-top_lead p {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-decoration: underline;
  margin-bottom: 90px;
  text-underline-offset: 12px;
}
@media screen and (max-width: 1024px) {
  .main_visual .main_visual-top_lead p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual-top_lead p {
    font-size: 1.4rem;
  }
}

.scroll {
  position: absolute;
  bottom: 145px;
  left: 10px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .scroll {
    font-size: 1.2rem;
    left: 10px;
  }
}

.scroll::before {
  -webkit-animation: scroll 2s infinite;
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
@media screen and (max-width: 767.9px) {
  .scroll::before {
    height: 80px;
    width: 1px;
    bottom: -95px;
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
.more_btn {
  border: solid 1px var(--main-color);
  border-radius: 35px;
  text-align: center;
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--main-color);
  padding: 22px;
  display: block;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .more_btn {
    min-width: 250px;
    padding: 16px;
  }
}

.more_btn.white {
  color: #fff;
  border-color: #fff;
}

.more_btn.bg_white {
  background: #fff;
}

.heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 2rem;
  padding-bottom: 25px;
  font-weight: 500;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .heading {
    font-size: 1.5rem;
  }
}
.heading::before {
  content: "";
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .heading::before {
    width: 80px;
  }
}
.heading span {
  color: var(--main-color);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -3px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .heading span {
    font-size: 3.8rem;
    line-height: 1.2;
  }
}

.heading_left .fig {
  color: var(--main-color);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -3px;
  display: block;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .heading_left .fig {
    font-size: 3.8rem;
    line-height: 1.2;
  }
}
.heading_left .title_text {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-left: 50px;
  display: block;
  padding-bottom: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .heading_left .title_text {
    font-size: 1.5rem;
    margin-left: 0;
  }
}
.heading_left .title_text::before {
  content: "";
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .heading_left .title_text::before {
    width: 80px;
    left: 20px;
    -webkit-transform: unset;
    transform: unset;
  }
}

.heading_left2 .title_text::before {
  left: -10px;
  -webkit-transform: unset;
  transform: unset;
}
@media screen and (max-width: 767.9px) {
  .heading_left2 .title_text::before {
    left: 30px;
  }
}

.heading.text_left {
  text-align: left;
}
.heading.text_left::before {
  left: 52px;
  -webkit-transform: unset;
  transform: unset;
}
@media screen and (max-width: 767.9px) {
  .heading.text_left::before {
    left: 20px;
  }
}

.heading.text_left2 {
  text-align: left;
}
.heading.text_left2::before {
  left: 20px;
  -webkit-transform: unset;
  transform: unset;
}

.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;
}

.shadow2 {
  -webkit-box-shadow: -10px 17.32px 20px rgba(218, 218, 218, 0.75);
  box-shadow: -10px 17.32px 20px rgba(218, 218, 218, 0.75);
}

.top-about {
  padding-top: 100px;
  margin-bottom: 160px;
  position: relative;
  padding-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .top-about {
    padding-top: 60px;
    margin-bottom: 80px;
    padding-bottom: 30px;
  }
}
.top-about::before {
  content: "";
  width: 100%;
  width: calc(100% - 150px);
  height: 300px;
  background: #eeeeee;
  border-radius: 0 20px 20px 0;
  position: absolute;
  bottom: 0;
  display: block;
  left: 0;
}
.top-about .cont {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-about .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.top-about .left {
  width: 50%;
  margin-top: 45px;
}
@media screen and (max-width: 767.9px) {
  .top-about .left {
    width: 100%;
    margin-top: 0;
  }
}
.top-about .left .heading {
  margin-bottom: 26px;
}
.top-about .left h3 {
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 18px;
}
@media screen and (max-width: 767.9px) {
  .top-about .left h3 {
    font-size: 1.8rem;
  }
}
.top-about .left .description {
  line-height: 2;
  margin-bottom: 46px;
}
@media screen and (max-width: 767.9px) {
  .top-about .left .description {
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .top-about .left .more_btn {
    margin: 0 auto;
  }
}
.top-about .right {
  width: 46.4vw;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 650/640;
  height: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-about .right {
    width: 100%;
    max-width: 500px;
  }
}
.top-about .right img {
  width: 100%;
  height: 100%;
  display: block;
}

.top-work_detail {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .top-work_detail {
    margin-bottom: 80px;
  }
}
.top-work_detail .heading {
  margin: 0 auto -20px;
  z-index: 2;
}

.work_detail_wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 899.9px) {
  .work_detail_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767.9px) {
  .work_detail_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.work_detail_wrapper .inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 450px;
  max-width: 50%;
  padding: 50px 50px 60px;
  min-width: 1px;
}
@media (max-width: 899.9px) {
  .work_detail_wrapper .inner {
    width: 100%;
    max-width: unset;
  }
}
@media screen and (max-width: 767.9px) {
  .work_detail_wrapper .inner {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 40px 30px;
  }
}
.work_detail_wrapper .inner img {
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
}
.work_detail_wrapper .inner h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 330px;
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
  padding: 7px 10px 20px;
  margin: -60px auto 0;
  margin-bottom: 20px;
  max-width: 80%;
  min-height: 61px;
}
@media screen and (max-width: 1024px) {
  .work_detail_wrapper .inner h3 {
    min-width: 200px;
    font-size: 1.8rem;
    min-height: 41px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 767.9px) {
  .work_detail_wrapper .inner h3 {
    min-width: 60%;
  }
}
.work_detail_wrapper .inner h3::before,
.work_detail_wrapper .inner h3::after {
  content: "";
  width: 36px;
  height: 100%;
  position: absolute;
  top: 0;
}
.work_detail_wrapper .inner h3::before {
  left: -35px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.work_detail_wrapper .inner h3::after {
  right: -35px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.work_detail_wrapper .inner h3 span {
  width: 50px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.work_detail_wrapper .inner p {
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .work_detail_wrapper .inner p {
    font-weight: 400;
    line-height: 1.8;
  }
}
.work_detail_wrapper .inner:only-child {
  max-width: 100%;
}
.work_detail_wrapper .inner:only-child img {
  aspect-ratio: 5/2;
}
@media (max-width: 899.9px) {
  .work_detail_wrapper .inner:only-child img {
    aspect-ratio: 3/2;
  }
}
.work_detail_wrapper .inner {
  background: var(--main-color);
}
.work_detail_wrapper .inner h3 {
  background: var(--main-color);
}
.work_detail_wrapper .inner h3::before,
.work_detail_wrapper .inner h3::after {
  background: var(--main-color);
}
.work_detail_wrapper .inner:nth-child(2n) {
  background: var(--sub-color);
}
.work_detail_wrapper .inner:nth-child(2n) h3 {
  background: var(--sub-color);
}
.work_detail_wrapper .inner:nth-child(2n) h3::before,
.work_detail_wrapper .inner:nth-child(2n) h3::after {
  background: var(--sub-color);
}
@media (max-width: 1349.9px) {
  .work_detail_wrapper .inner:nth-child(3) {
    background: var(--sub-color);
  }
  .work_detail_wrapper .inner:nth-child(3) h3 {
    background: var(--sub-color);
  }
  .work_detail_wrapper .inner:nth-child(3) h3::before,
  .work_detail_wrapper .inner:nth-child(3) h3::after {
    background: var(--sub-color);
  }
}
@media (max-width: 899.9px) {
  .work_detail_wrapper .inner:nth-child(3) {
    background: var(--main-color);
  }
  .work_detail_wrapper .inner:nth-child(3) h3 {
    background: var(--main-color);
  }
  .work_detail_wrapper .inner:nth-child(3) h3::before,
  .work_detail_wrapper .inner:nth-child(3) h3::after {
    background: var(--main-color);
  }
}

.work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner {
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
  width: 50%;
}
@media (max-width: 899.9px) {
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner {
    width: 100%;
  }
}
.work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner:nth-child(3) {
  background: var(--sub-color);
}
.work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner:nth-child(3) h3 {
  background: var(--sub-color);
}
.work_detail_wrapper:has(.inner:nth-last-child(n + 4))
  .inner:nth-child(3)
  h3::before,
.work_detail_wrapper:has(.inner:nth-last-child(n + 4))
  .inner:nth-child(3)
  h3::after {
  background: var(--sub-color);
}
.work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner:nth-child(4) {
  background: var(--main-color);
}
.work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner:nth-child(4) h3 {
  background: var(--main-color);
}
.work_detail_wrapper:has(.inner:nth-last-child(n + 4))
  .inner:nth-child(4)
  h3::before,
.work_detail_wrapper:has(.inner:nth-last-child(n + 4))
  .inner:nth-child(4)
  h3::after {
  background: var(--main-color);
}
@media (max-width: 899.9px) {
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner:nth-child(4) {
    background: var(--sub-color);
  }
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4))
    .inner:nth-child(4)
    h3 {
    background: var(--sub-color);
  }
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4))
    .inner:nth-child(4)
    h3::before,
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4))
    .inner:nth-child(4)
    h3::after {
    background: var(--sub-color);
  }
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4)) .inner:nth-child(3) {
    background: var(--main-color);
  }
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4))
    .inner:nth-child(3)
    h3 {
    background: var(--main-color);
  }
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4))
    .inner:nth-child(3)
    h3::before,
  .work_detail_wrapper:has(.inner:nth-last-child(n + 4))
    .inner:nth-child(3)
    h3::after {
    background: var(--main-color);
  }
}

.top-interview {
  padding-bottom: 175px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-interview {
    padding-bottom: 100px;
  }
}
.top-interview .more_btn {
  margin-top: -42px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .top-interview .more_btn {
    margin: 40px auto 0;
  }
}
.top-interview .cont {
  max-width: 1000px;
}
@media (min-width: 2000px) {
  .top-interview .cont {
    max-width: 1400px;
  }
}
.top-interview .swiper2 {
  position: relative;
  padding-top: 130px;
  margin-top: -30px;
  padding-bottom: 125px;
}
@media screen and (max-width: 767.9px) {
  .top-interview .swiper2 {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
.top-interview .swiper2 .swiper-pagination {
  top: auto;
  left: 0;
  bottom: 0;
  max-width: 60%;
  width: 100%;
  height: 10px;
  background: #eeeeee;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-interview .swiper2 .swiper-pagination {
    max-width: 100%;
  }
}
.top-interview .swiper2 .swiper-pagination-progressbar-fill {
  background: var(--main-color);
}
.top-interview .swiper-button-prev,
.top-interview .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 1px var(--main-color);
  display: grid;
  place-content: center;
  text-align: center;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .top-interview .swiper-button-prev,
  .top-interview .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 20px;
  }
}
.top-interview .swiper-button-prev::after,
.top-interview .swiper-button-next::after {
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .top-interview .swiper-button-prev::after,
  .top-interview .swiper-button-next::after {
    font-size: 1.6rem;
  }
}
.top-interview .swiper-button-next {
  right: 0px;
}
.top-interview .swiper-button-next::after {
  content: "→";
}
.top-interview .swiper-button-prev {
  right: 60px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-interview .swiper-button-prev {
    right: 50px;
  }
}
.top-interview .swiper-button-prev::after {
  content: "←";
}

.interview_box {
  width: 310px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .interview_box {
    width: 240px;
  }
}
.interview_box a {
  display: block;
}
.interview_box .no {
  position: absolute;
  top: -40px;
  left: 20px;
  line-height: 1;
  font-size: 10rem;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .interview_box .no {
    font-size: 8rem;
  }
}
.interview_box img {
  display: block;
  aspect-ratio: 31/48;
  height: auto;
}
.interview_box .detail {
  background: var(--main-color);
  padding: 11px 25px 10px;
  margin-top: -37px;
  margin-bottom: 12px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 78%;
}
@media screen and (max-width: 767.9px) {
  .interview_box .detail {
    padding: 7px 20px 7px;
    margin-top: -24px;
  }
}
.interview_box .detail span {
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .interview_box .detail span {
    font-size: 1.4rem;
  }
}
.interview_box .detail span:nth-child(1)::after {
  content: "|";
  display: inline-block;
  padding: 0 8px;
}
.interview_box .excerpt {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .interview_box .excerpt {
    font-size: 1.5rem;
  }
}

.top-faq {
  padding: 120px 0;
  background: #eeeeee;
}
@media screen and (max-width: 767.9px) {
  .top-faq {
    padding: 80px 0;
  }
}
.top-faq .heading {
  margin: 0 auto 42px;
  z-index: 2;
}
.top-faq .top-faq_wrapper {
  gap: 60px;
  margin-bottom: 66px;
}
@media screen and (max-width: 1024px) {
  .top-faq .top-faq_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.top-faq .top-faq_group {
  width: calc((100% - 60px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .top-faq .top-faq_group {
    width: 100%;
  }
}
.top-faq .inner {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
}
.top-faq .more_btn {
  margin: 0 auto;
}

.accordion__content[aria-hidden="true"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.accordion__title button {
  position: relative;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  line-height: 1.75;
  padding: 30px 90px 30px 30px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック",
    sans-serif;
}
@media screen and (max-width: 767.9px) {
  .accordion__title button {
    padding: 20px 90px 20px 30px;
  }
}
.accordion__title button span {
  font-size: 2.2rem;
  margin-right: 10px;
  line-height: 1;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  min-width: 40px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-content: center;
  text-align: center;
}

.accordion__content {
  padding: 0 46px 30px 30px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accordion__content p {
  line-height: 1.75;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
  word-wrap: break-word;
}
.accordion__content span {
  font-size: 2.2rem;
  margin-right: 10px;
  line-height: 1;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  min-width: 40px;
  border-radius: 50%;
  color: var(--main-color);
  background: #fff;
  border: solid 2px var(--main-color);
  font-weight: 700;
  display: grid;
  place-content: center;
  text-align: center;
}

/*アイコンの＋と×*/
.accordion__title button::before,
.accordion__title button::after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: var(--main-color);
}

.accordion__title button::before {
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.accordion__title button::after {
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*　closeというクラスがついたら形状変化　*/
.accordion.is-opened .accordion__title button::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.top-other {
  padding: 140px 0;
}
@media screen and (max-width: 767.9px) {
  .top-other {
    padding: 80px 0;
  }
}
.top-other .page_link-item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item_wrapper {
    gap: 80px;
  }
}
.top-other .page_link-item img {
  width: calc(100vw - 100px);
  display: block;
  height: 500px;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item img {
    width: 100%;
    height: 300px;
  }
}
.top-other .page_link-item .cont {
  position: relative;
  margin-top: -240px;
  border-radius: 0 20px 20px 0;
  background: #fff;
  border-left: solid 10px var(--main-color);
  padding: 63px 100px 63px 86px;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item .cont {
    margin-top: -180px;
    padding: 40px 30px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-width: 8px;
  }
}
.top-other .page_link-item .flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 38px;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item .flex {
    display: contents;
  }
}
.top-other .page_link-item .heading_left .fig {
  display: inline-block;
}
.top-other .page_link-item .heading_left .fig2 {
  font-size: 2rem;
}
.top-other .page_link-item .heading_left .title_text {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item .heading_left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }
}
.top-other .page_link-item .more_btn {
  min-width: 200px;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item .more_btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: auto;
  }
}
.top-other .page_link-item .description {
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .top-other .page_link-item .description {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 30px;
  }
}
.top-other .page_link-item:nth-child(2n) img {
  margin-right: 0;
  margin-left: auto;
}

.top-features {
  padding: 134px 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-features {
    padding: 80px 0;
  }
}
.top-features .bg_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.top-features .bg_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--font-color);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
}
.top-features .bg_img img {
  width: 100%;
  height: 100%;
}
.top-features .cont {
  position: relative;
}
.top-features .heading {
  margin-inline: auto;
  margin-bottom: 34px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-features .heading {
    margin-bottom: 10px;
  }
}
.top-features .heading::before {
  content: none;
}
.top-features .heading span {
  color: #fff;
}
.top-features .description {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  line-height: 2;
}
.top-features .more_btn {
  margin: 0 auto;
}

.top-other2 {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #eeeeee;
}
@media screen and (max-width: 767.9px) {
  .top-other2 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.top-other2 .page_link-item2_wrapper {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .top-other2 .page_link-item2_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-other2 .page_link-item2_wrapper .page_link-item2 {
  width: 300px;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .top-other2 .page_link-item2_wrapper .page_link-item2 {
    width: 100%;
  }
}
.top-other2 .page_link-item2 a {
  height: 100%;
  display: block;
  position: relative;
  padding: 33px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.top-other2 .page_link-item2 a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-other2 .page_link-item2 a .wrap {
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
}
.top-other2 .page_link-item2 a .wrap h2 {
  color: #fff;
  margin-bottom: 20px;
}
.top-other2 .page_link-item2 a .wrap h2 span {
  display: block;
}
.top-other2 .page_link-item2 a .wrap h2 .fig {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.top-other2 .page_link-item2 a .wrap h2 .title_text {
  font-weight: 400;
}
.top-other2 .page_link-item2 a .wrap p {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-other2 .page_link-item2 a .wrap p::before {
  content: "";
  width: 100px;
  height: 2px;
  background: #fff;
}

.news_list {
  margin-bottom: 55px;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .news_list {
    margin-bottom: 30px;
  }
}
.news_list li {
  border-bottom: solid 1px #dadada;
  width: 100%;
}
.news_list li:last-child {
  border: none;
}
.news_list li a {
  gap: 20px 36px;
  padding: 24px 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .news_list li a {
    padding: 25px 0;
    gap: 15px 26px;
  }
}
.news_list .news_title {
  -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%;
  }
}
.news_list .more_btn {
  margin-left: auto;
}

.post_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-right: 4px;
}
.post_category p {
  color: var(--main-color);
  border: solid 1px var(--main-color);
  font-size: 1.4rem;
  padding: 0 10px;
  border-radius: 14px;
}

.top-news {
  padding-bottom: 120px;
  background: #eeeeee;
}
@media screen and (max-width: 767.9px) {
  .top-news {
    padding-bottom: 80px;
  }
}
.top-news .cont {
  position: relative;
  gap: 20px 73px;
  background: #fff;
  border-radius: 20px;
  padding: 87px 100px 87px 93px;
  max-width: 1200px;
}
@media (min-width: 2000px) {
  .top-news .cont {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767.9px) {
  .top-news .cont {
    padding: 40px 20px;
  }
}
.top-news .heading {
  margin-top: 6px;
}
.top-news .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.top-news .more_btn {
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-news .more_btn {
    margin-right: auto;
  }
}

.bottom_entry {
  background: var(--main-color);
  padding: 94px 0 115px;
}
@media screen and (max-width: 767.9px) {
  .bottom_entry {
    padding: 60px 0;
  }
}
.bottom_entry h2 {
  color: #fff;
  font-size: 16rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 23px;
}
@media screen and (max-width: 767.9px) {
  .bottom_entry h2 {
    font-size: 16vw;
  }
}
.bottom_entry .more_btn {
  margin: 0 auto;
}

.footer {
  background: var(--font-color);
  padding-top: 60px;
  padding-bottom: 60px;
  padding: 40px 0;
}
.footer * {
  color: #fff;
}
.footer .footer_main {
  gap: 10px 30px;
  padding-bottom: 40px;
  border-bottom: solid 1px #333;
  margin-bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.footer .footer_logo {
  margin-bottom: 22px;
  max-width: 100%;
}
.footer .footer_logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.footer .fnav {
  gap: 10px 75px;
  -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: 20px;
  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 {
  gap: 30px 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.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: #999999;
  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;
  }
}
.footer .footer_bottom .right a {
  margin-right: 10px;
}
.footer .footer_bottom .right .footer_link {
  margin-bottom: 30px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: solid 1px #fff;
  position: relative;
}
@media screen and (max-width: 430px) {
  .footer .footer_bottom .right .footer_link {
    margin-left: 0;
  }
}
.footer .footer_bottom .right .footer_link::after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 5px;
  background-image: url(../img/link.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.page_top {
  margin-top: 158px;
  position: relative;
}
@media screen and (max-width: 1349.9px) {
  .page_top {
    margin-top: 120px;
  }
}
.page_top .main_visual-line {
  position: absolute;
  right: 0;
  bottom: 125px;
  width: 70px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_top .main_visual-line {
    width: 55px;
    bottom: -40px;
  }
}
.page_top .cont {
  margin-bottom: -54px;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}
@media (min-width: 2000px) {
  .page_top .cont {
    max-width: 1400px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    margin-top: -28px;
  }
}
.page_top .page_top_p {
  color: var(--main-color);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .page_top .page_top_p {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top .page_top_p {
    font-size: 3.8rem;
  }
}
.page_top .page_top_title {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 12px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_top_title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.page_top .img_wrap {
  background: var(--main-color);
  padding: 96px 0 80px 50px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_top .img_wrap {
    padding: 70px 0 35px 40px;
  }
}
.page_top .img_wrap img {
  width: 100%;
  height: 375px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page_top .img_wrap img {
    height: 220px;
  }
}
.page_top .scroll {
  bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .page_top .scroll {
    bottom: 110px;
  }
}

.archive_interview_wrapper {
  padding: 140px 0 126px;
}
@media screen and (max-width: 1024px) {
  .archive_interview_wrapper {
    padding: 80px 0;
  }
}
.archive_interview_wrapper .archive_interview {
  gap: 132px 58px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .archive_interview_wrapper .archive_interview {
    gap: 70px 30px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 430px) {
  .archive_interview_wrapper .archive_interview {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.archive_interview_wrapper .interview_box .excerpt {
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .archive_interview_wrapper .interview_box {
    width: 280px;
  }
  .archive_interview_wrapper .interview_box img {
    aspect-ratio: 31/41;
  }
}

.page-numbers,
.newslist_pagenation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 767.9px) {
  .page-numbers,
  .newslist_pagenation {
    gap: 5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.page-numbers .page-numbers,
.newslist_pagenation .page-numbers {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  opacity: 0.8;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--main-color);
  font-family: "Figtree", "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ",
    "MS Pゴシック", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .page-numbers,
  .newslist_pagenation .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
.page-numbers .current,
.newslist_pagenation .current {
  opacity: 1;
}
.page-numbers .next,
.page-numbers .prev,
.newslist_pagenation .next,
.newslist_pagenation .prev {
  opacity: 1;
  border-radius: 50%;
  border: solid 1px var(--main-color);
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .next,
  .page-numbers .prev,
  .newslist_pagenation .next,
  .newslist_pagenation .prev {
    margin: 0;
  }
}
.page-numbers .next::before,
.newslist_pagenation .next::before {
  content: "→";
  margin-bottom: 3px;
}
.page-numbers .prev::before,
.newslist_pagenation .prev::before {
  content: "←";
  margin-bottom: 3px;
}
.page-numbers .page-numbers:hover,
.newslist_pagenation .page-numbers:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .page-numbers.dots,
  .newslist_pagenation .page-numbers.dots {
    margin: 0 -10px;
  }
}

.article_interview {
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .article_interview {
    margin-bottom: 100px;
  }
}
.article_interview .article_interview_bg {
  height: 733px;
  width: 100%;
  position: absolute;
}
@media screen and (max-width: 767.9px) {
  .article_interview .article_interview_bg {
    height: 450px;
  }
}
.article_interview .article_interview_bg img {
  display: block;
  width: 100%;
  height: 100%;
}
.article_interview .article_interview_bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3;
}
.article_interview .article_interview_bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url(../img/white_gradation.png);
  background-size: cover;
  background-position: top;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .article_interview .article_interview_bg::after {
    display: none;
  }
}
.article_interview .interview_top {
  padding-top: 185px;
  margin-bottom: 125px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_top {
    padding-top: 60px;
    margin-bottom: 90px;
  }
}
.article_interview .interview_top * {
  color: #fff;
}
.article_interview .interview_top .flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_top .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
.article_interview .interview_top .no {
  font-size: 10rem;
  font-weight: 700;
  margin-right: 40px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_top .no {
    font-size: 6rem;
    margin-right: 20px;
  }
}
.article_interview .interview_top .detail {
  background: var(--main-color);
  padding: 11px 40px 10px 17px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_top .detail {
    padding: 7px 20px 7px;
  }
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_top .detail span {
    font-size: 1.4rem;
  }
}
.article_interview .interview_top .detail span:nth-child(1)::after {
  content: "|";
  display: inline-block;
  padding: 0 8px;
}
.article_interview .interview_top h2 {
  line-height: 1.8;
  font-weight: 600;
  font-size: 3.6rem;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_top h2 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
.article_interview .interview_content {
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.article_interview .interview_content .cont {
  max-width: 1200px;
}
@media (min-width: 2000px) {
  .article_interview .interview_content .cont {
    max-width: 1400px;
  }
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .cont {
    width: 100%;
  }
}
.article_interview .interview_content .item {
  margin-bottom: 33px;
  background: #fff;
  border-radius: 60px 60px 0 20px;
  padding: 90px 50px 85px;
  gap: 30px 50px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 40px 40px 0 0;
    padding: 70px 30px 40px;
    margin-bottom: 10px;
  }
}
.article_interview .interview_content .item::before {
  content: "";
  background: #eeeeee;
  width: 100vw;
  height: 430px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item::before {
    border-radius: 0;
    height: 350px;
  }
}
.article_interview .interview_content .item .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.article_interview .interview_content .item .detail h3 {
  margin-left: 50px;
  position: relative;
  z-index: 2;
  margin-bottom: 95px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 3rem;
  padding-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item .detail h3 {
    font-size: 2rem;
    margin-left: 0px;
    margin-bottom: 40px;
  }
}
.article_interview .interview_content .item .detail h3::before {
  z-index: -1;
  content: "";
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item .detail h3::before {
    width: 80px;
    height: 80px;
  }
}
.article_interview .interview_content .item .detail .description {
  background: #fff;
  padding: 40px 50px;
  border-radius: 10px 10px 0 0;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item .detail .description {
    padding: 25px 30px;
    line-height: 1.8;
  }
}
.article_interview .interview_content .item img {
  margin-right: calc(50% - 50vw);
  width: 59%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item img {
    width: 100%;
    max-width: 500px;
    margin-right: auto;
  }
}
.article_interview .interview_content .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.article_interview .interview_content .item:nth-child(2n)::before {
  content: "";
  left: auto;
  right: 0;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 767.9px) {
  .article_interview .interview_content .item:nth-child(2n)::before {
    border-radius: 0;
  }
}
.article_interview .interview_content .item:nth-child(2n) img {
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}

.page_link {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 56px;
  margin-top: 70px;
}
@media screen and (max-width: 767.9px) {
  .page_link {
    gap: 30px;
    margin-top: 60px;
  }
}
.page_link .more_btn {
  margin-bottom: 1px;
}
@media screen and (max-width: 767.9px) {
  .page_link .more_btn {
    min-width: 160px;
  }
}
.page_link p {
  width: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_link p {
    width: 40px;
  }
}
.page_link p a {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: solid 1px var(--main-color);
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .page_link p a {
    width: 40px;
    height: 40px;
  }
}
.page_link p a::before {
  content: "→";
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3px;
}
@media screen and (max-width: 767.9px) {
  .page_link p a::before {
    font-size: 1.6rem;
  }
}
.page_link .page_link-prev a::before {
  content: "←";
}

.news_wrapper {
  padding-top: 75px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.news_wrapper::before {
  content: "";
  width: 100%;
  height: calc(100% - 268px);
  position: absolute;
  top: 0;
  left: 0;
  background: #eeeeee;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper::before {
    height: 100%;
  }
}
.news_wrapper .cont {
  position: relative;
}
.news_wrapper .archive_content {
  gap: 80px 50px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper .archive_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.news_wrapper .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 80px 50px 96px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper .right {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 40px 30px 60px;
  }
}
.news_wrapper .right::before {
  content: "";
  -webkit-box-shadow: 0px 0px 20px 5px rgba(218, 218, 218, 0.5);
  box-shadow: 0px 0px 20px 5px rgba(218, 218, 218, 0.5);
  background: #fff;
  border-radius: 60px;
  margin-right: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper .right::before {
    border-radius: 30px;
  }
}
.news_wrapper .right .news_list {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper .right .news_list {
    margin-bottom: 60px;
  }
}
.news_wrapper .right .news_list li:last-child {
  border-bottom: solid 1px #dadada;
}
@media screen and (max-width: 1024px) {
  .news_wrapper .right .news_list .news_title {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.news_wrapper .right .news_content {
  position: relative;
}
.news_wrapper .left {
  margin-top: 110px;
  width: 200px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper .left {
    margin-top: 0;
  }
}

.archive-cont.archive {
  margin-bottom: 27px;
}

.archive-cont .accordion__title button {
  color: #fff;
  background: var(--main-color);
  padding: 8px 24px;
}
.archive-cont .accordion__title button::before,
.archive-cont .accordion__title button::after {
  background: #fff;
  right: 11px;
}
.archive-cont ul {
  padding: 14px 30px 2px;
  background: unset;
  display: block;
}
.archive-cont ul a {
  line-height: 2;
  margin-bottom: 16px;
  display: block;
}

.news_wrapper article.right {
  padding: 110px 0 96px 50px;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper article.right {
    padding: 60px 0 60px 30px;
  }
}
.news_wrapper article.right .time_wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px 37px;
  margin-bottom: 12px;
}
.news_wrapper article.right .news_title {
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: solid 1px #dadada;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper article.right .news_title {
    font-size: 2rem;
  }
}
.news_wrapper article.right .content {
  padding-top: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .news_wrapper article.right .content {
    margin-bottom: 60px;
  }
}
.news_wrapper article.right .content img {
  display: block;
  margin-bottom: 32px;
}

.page_content {
  padding-top: 75px;
}

.page-faq .anchor {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page-faq .anchor {
    margin-bottom: 60px;
  }
}
.page-faq .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) {
  .page-faq .anchor .cont {
    gap: 20px;
  }
}
.page-faq .anchor .cont a {
  min-width: 200px;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 30px;
  padding: 15px 20px;
}
.page-faq .faq_wrap {
  overflow: hidden;
  margin-bottom: 133px;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap {
    margin-bottom: 80px;
  }
}
.page-faq .faq_wrap .wrapper {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}
.page-faq .faq_wrap .wrapper::before {
  border-radius: 30px;
  content: "";
  z-index: -1;
  position: absolute;
  background: #eeeeee;
  width: 100vw;
  right: -50px;
  margin-left: calc(50vw - 50%);
  bottom: 0;
  height: calc(100% - 40px);
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap .wrapper::before {
    right: -80px;
  }
}
.page-faq .faq_wrap .accordion {
  background: #fff;
  margin-bottom: 47px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap .accordion {
    margin-bottom: 30px;
  }
}
.page-faq .faq_wrap .accordion button {
  padding: 15px 90px 15px 30px;
}
.page-faq .faq_wrap .accordion button::before,
.page-faq .faq_wrap .accordion button::after {
  right: 50px;
}
.page-faq .faq_wrap .accordion .accordion__content {
  padding-top: 8px;
  padding-bottom: 35px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap .accordion .accordion__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-faq .faq_wrap .accordion .accordion__content span {
  margin-top: -5px;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap .accordion .accordion__content span {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.page-faq .faq_wrap .heading_left {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap .heading_left {
    margin-bottom: 40px;
  }
}
.page-faq .faq_wrap:nth-child(3n) {
  padding-top: 110px;
  padding-bottom: 80px;
  background: #eeeeee;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap:nth-child(3n) {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.page-faq .faq_wrap:nth-child(3n) .heading_left {
  text-align: right;
}
.page-faq .faq_wrap:nth-child(3n) .heading_left .title_text {
  margin-left: auto;
  margin-right: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap:nth-child(3n) .heading_left .title_text {
    margin-right: 0;
  }
}
.page-faq .faq_wrap:nth-child(3n) .heading_left .title_text::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .page-faq .faq_wrap:nth-child(3n) .heading_left .title_text::before {
    -webkit-transform: unset;
    transform: unset;
    left: unset;
    right: 20px;
  }
}

.page-pp {
  padding-top: 58px;
  padding-bottom: 250px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-pp {
    padding-bottom: 100px;
  }
}
.page-pp::before {
  content: "";
  width: 100%;
  height: calc(100% - 150px);
  background: #eeeeee;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-pp .cont {
  position: relative;
  z-index: 2;
  padding: 60px 10% 126px 0;
}
@media screen and (max-width: 767.9px) {
  .page-pp .cont {
    padding-bottom: 60px;
  }
}
.page-pp .cont::before {
  content: "";
  -webkit-box-shadow: 0px 0px 20px 5px rgba(218, 218, 218, 0.5);
  box-shadow: 0px 0px 20px 5px rgba(218, 218, 218, 0.5);
  background: #fff;
  border-radius: 0 60px 60px 0;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.page-pp .cont ol li {
  margin-bottom: 50px;
}
.page-pp .cont ol li .flex-top {
  margin-bottom: 25px;
}
.page-pp .cont ol li .fig {
  color: var(--main-color);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .page-pp .cont ol li .fig {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.page-pp .cont ol li h2 {
  padding-left: 9px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .page-pp .cont ol li h2 {
    font-size: 2rem;
  }
}
.page-pp .cont p {
  margin-bottom: 32px;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page-pp .cont p {
    line-height: 1.8;
  }
}

.page_top_entry {
  margin-top: 142px;
  background: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .page_top_entry {
    margin-top: 80px;
  }
}
.page_top_entry .cont {
  margin-bottom: 0;
}
.page_top_entry .page_top_p {
  font-size: 16rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding-top: 90px;
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page_top_entry .page_top_p {
    font-size: 16vw;
  }
}
.page_top_entry .page_top_title {
  text-align: center;
  text-decoration: none;
  padding-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .page_top_entry .page_top_title {
    margin-bottom: 0;
  }
}
.page_top_entry .main_visual-line {
  bottom: -93px;
}
@media screen and (max-width: 1024px) {
  .page_top_entry .main_visual-line {
    bottom: -40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top_entry .main_visual-line {
    bottom: -40px;
  }
}

.form {
  position: relative;
  padding-top: 60px;
  background: #eeeeee;
  padding-bottom: 250px;
}
@media screen and (max-width: 767.9px) {
  .form {
    padding-bottom: 100px;
  }
}
.form p {
  letter-spacing: 0.13em;
}
.form p.description {
  text-align: center;
}
.form form {
  letter-spacing: 0.025em;
  max-width: 800px;
  margin: 104px auto 0;
}
@media screen and (max-width: 767.9px) {
  .form form {
    margin-top: 60px;
  }
}
.form form p {
  letter-spacing: 0.025em;
}
.form form table,
.form form tbody {
  display: block;
}
.form form table br,
.form form tbody br {
  display: none;
}
.form form p {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .form form p {
    font-size: 1.6rem;
  }
}
.form form input[type="text"],
.form form input[type="email"],
.form form input[type="tel"],
.form form textarea,
.form form select {
  width: 100%;
  border: none;
  padding: 12px 30px;
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック";
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form form input[type="text"],
  .form form input[type="email"],
  .form form input[type="tel"],
  .form form textarea,
  .form form select {
    padding: 10px 20px;
    font-size: 1.6rem;
  }
}
.form form tr {
  margin-bottom: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px 14px;
}
@media screen and (max-width: 767.9px) {
  .form form tr {
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.form form th {
  width: 240px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .form form th {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.form form th p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767.9px) {
  .form form th p {
    gap: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .form form th {
    font-size: 1.6rem;
  }
}
.form form td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 55px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .form form td {
    width: 100%;
  }
}
.form form td p {
  font-weight: 500;
}
.form form .ex {
  font-size: 1.4rem;
  display: block;
  font-weight: 500;
  position: absolute;
  bottom: -28px;
}
.form form .check {
  background: var(--main-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 20px 12px 24px;
  line-height: 1;
  border-radius: 17px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767.9px) {
  .form form .check {
    padding: 8px 20px 10px;
  }
}
.form form .sex td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form form .sex .wpcf7-list-item-label {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .form form .sex .wpcf7-list-item-label {
    font-size: 1.6rem;
    font-weight: 500;
  }
}
.form form .sex label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form form .sex input {
  margin-right: 24px;
}
.form form .zip input {
  width: 276px;
}
@media screen and (max-width: 767.9px) {
  .form form .zip input {
    width: 200px;
  }
}
.form form .message_box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form form .message_box th {
  width: 100%;
}
.form form .message_box td {
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
  width: 100%;
}
.form form .birthday td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 50px;
}
@media screen and (max-width: 767.9px) {
  .form form .birthday td {
    gap: 10px 20px;
  }
}
.form form select {
  width: 350px;
}
.form form select[name="birth-year"] {
  width: 200px;
}
@media screen and (max-width: 767.9px) {
  .form form select[name="birth-year"] {
    width: 110px;
    padding-left: 10px;
  }
}
.form form select[name="birth-month"] {
  width: 125px;
}
@media screen and (max-width: 767.9px) {
  .form form select[name="birth-month"] {
    width: 85px;
    padding-left: 10px;
  }
}
.form form select[name="birth-day"] {
  width: 125px;
}
@media screen and (max-width: 767.9px) {
  .form form select[name="birth-day"] {
    width: 85px;
    padding-left: 10px;
  }
}
.form form textarea {
  min-height: 290px;
}
@media screen and (max-width: 767.9px) {
  .form form textarea {
    min-height: 250px;
  }
}
.form form .wpcf7-list-item {
  margin-left: 0;
  margin-right: 80px;
}
@media screen and (max-width: 767.9px) {
  .form form .wpcf7-list-item {
    margin-right: 20px;
    margin-bottom: 10px;
  }
}
.form form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.form form .wpcf7-list-item label input {
  width: 24px;
  height: 24px;
  padding: 0;
}
@media screen and (max-width: 767.9px) {
  .form form .wpcf7-list-item label input {
    width: 20px;
    height: 20px;
  }
}
.form form .wpcf7-list-item label span {
  font-size: 1.6rem;
}
.form form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* デフォルトの矢印を無効 */
  color: var(--font-color);
}
.form form select::-ms-expand {
  display: none; /* デフォルトの矢印を無効(IE用) */
}
.form form .select_wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form form .select_wrap::after {
  content: "▼";
  font-size: 1.2rem;
  color: var(--main-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
}
.form form .privacy_policy_check {
  margin-bottom: 95px;
  padding-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .form form .privacy_policy_check {
    margin-bottom: 60px;
  }
}
.form form .privacy_policy_check .wpcf7-not-valid-tip {
  position: absolute;
}
.form form .privacy_policy_check p {
  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) {
  .form form .privacy_policy_check p {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .form form .privacy_policy_check span {
    font-size: 1.5rem;
  }
}
.form form .privacy_policy_check .wpcf7-list-item {
  margin-right: 20px;
}
.form form .privacy_policy_check .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form form .privacy_policy_check .wpcf7-list-item label input {
  width: 35px;
  height: 35px;
  margin: 0 20px 0 0;
  border: none;
}
@media screen and (max-width: 767.9px) {
  .form form .privacy_policy_check .wpcf7-list-item label input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
}
.form
  form
  .privacy_policy_check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label
  a,
.form
  form
  .privacy_policy_check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label
  span {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .form
    form
    .privacy_policy_check
    .wpcf7-list-item
    label
    .wpcf7-list-item-label
    a,
  .form
    form
    .privacy_policy_check
    .wpcf7-list-item
    label
    .wpcf7-list-item-label
    span {
    font-size: 1.6rem;
  }
}
.form form .submit br {
  display: none;
}
.form form .submit input {
  cursor: pointer;
  background: var(--main-color);
  color: #fff;
  width: 300px;
  max-width: 100%;
  height: 70px;
  border-radius: 35px;
  text-align: center;
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  border: solid 1px var(--main-color);
  font-weight: 700;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .form form .submit input {
    height: 67px;
    font-size: 1.8rem;
  }
}
.form form .submit input:hover {
  color: var(--main-color);
  background: #fff;
}

.contact_thanks {
  background: #eeeeee;
  padding-top: 60px;
  padding-bottom: 388px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks {
    padding-bottom: 200px;
  }
}
.contact_thanks .img {
  background: var(--main-color);
  width: 100%;
  height: 515px;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  position: absolute;
  bottom: -1px;
  right: 0;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks .img {
    height: 200px;
  }
}
.contact_thanks .img img {
  display: block;
  -webkit-clip-path: polygon(0% 56%, 100% 100%, 56% 0%);
  clip-path: polygon(0% 56%, 100% 100%, 56% 0%);
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 56%;
}
.contact_thanks .heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks .heading {
    margin-bottom: 40px;
  }
}
.contact_thanks .cont {
  position: relative;
}
.contact_thanks .cont p,
.contact_thanks .cont a {
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: center;
}
.contact_thanks .cont .more_btn {
  margin: 80px auto 0;
  line-height: 1.6;
  letter-spacing: 0.025em;
}

.page-id-32 form td {
  min-height: unset;
}
.page-id-32 form th {
  margin-top: 0;
}

.page-id-34 .page_top_entry .page_top_p {
  font-size: 15rem;
}
@media screen and (max-width: 767.9px) {
  .page-id-34 .page_top_entry .page_top_p {
    font-size: 16vw;
  }
}

.page-about {
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-about {
    margin-top: 80px;
  }
}

.top-section {
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.top-section .cont_ww .img {
  margin-left: calc(50% - 50vw);
  width: 46.4vw;
  height: auto;
  aspect-ratio: 650/644;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .img {
    width: 100%;
    max-width: 500px;
  }
}
.top-section .cont_ww .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.top-section .cont_ww .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: -100px;
  margin-top: 25px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .detail {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-left: 20px;
    margin-top: 0;
    width: 100%;
  }
}
.top-section .cont_ww .detail .heading {
  margin: 0 auto 60px;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .detail .heading {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    margin-bottom: 40px;
  }
}
.top-section .cont_ww .detail .top-section_box {
  background: #fff;
  position: relative;
  padding: 30px 50px 40px 54px;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .detail .top-section_box {
    padding: 30px;
    margin-bottom: 20px;
  }
}
.top-section .cont_ww .detail .top-section_box::before {
  content: "";
  background: #eeeeee;
  height: calc(100% + 140px);
  width: calc(100% + 50px);
  position: absolute;
  right: -50px;
  top: -37px;
  z-index: -1;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .detail .top-section_box::before {
    left: -25px;
    height: calc(100% + 100px);
    top: -25px;
    border-radius: 20px 0 0 20px;
  }
}
.top-section .cont_ww .detail .top-section_box h3 {
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .detail .top-section_box h3 {
    font-size: 1.8rem;
  }
}
.top-section .cont_ww .detail .top-section_box p {
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .top-section .cont_ww .detail .top-section_box p {
    line-height: 1.8;
  }
}

.border_left_box {
  padding: 40px 90px 44px;
  border-left: solid 10px var(--main-color);
  border-radius: 0 20px 20px 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .border_left_box {
    border-width: 8px;
    padding: 40px 30px 40px;
    border-width: 8px;
  }
}
.border_left_box h3 {
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .border_left_box h3 {
    font-size: 2rem;
  }
}
.border_left_box p {
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .border_left_box p {
    line-height: 1.8;
  }
}

.top-section-about {
  overflow: hidden;
}
.top-section-about .cont_ww {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .cont_ww {
    margin-bottom: 40px;
  }
}
.top-section-about .border_left_box_wrap {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .border_left_box_wrap {
    padding-top: 50px;
    margin-bottom: 0;
  }
}
.top-section-about .border_left_box_wrap img {
  position: absolute;
  top: 79px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  height: auto;
  aspect-ratio: 1400/674;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .border_left_box_wrap img {
    height: 100%;
    aspect-ratio: unset;
    top: 0;
  }
}
.top-section-about .border_left_box_wrap .box1 {
  margin-bottom: 106px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .border_left_box_wrap .box1 {
    margin-bottom: 40px;
  }
}
.top-section-about .border_left_box_wrap .box2 h3 {
  margin-bottom: 30px;
}
.top-section-about .border_left_box_wrap .box2 ul {
  margin-top: 60px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px 50px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .border_left_box_wrap .box2 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.top-section-about .border_left_box_wrap .box2 ul li {
  background: var(--accent-color);
  border-radius: 50%;
  width: 28.7%;
  min-width: 220px;
  padding: 20px;
  font-weight: 500;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 0.2em;
  padding: 10px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .border_left_box_wrap .box2 ul li {
    width: 100%;
    max-width: 200px;
    font-size: 1.8rem;
    min-width: 100px;
  }
}
.top-section-about .top-section-about2 {
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2 {
    padding-bottom: 50px;
  }
}
.top-section-about .top-section-about2::before {
  content: "";
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--sub-color);
  height: calc(100% - 100px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2::before {
    height: 100%;
  }
}
.top-section-about .top-section-about2 .flex {
  gap: 30px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.top-section-about .top-section-about2 .flex h3 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 3.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #fff;
  margin-top: 120px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2 .flex h3 {
    margin-top: 40px;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}
.top-section-about .top-section-about2 .flex img {
  width: 42.9vw;
  margin-right: calc(50% - 50vw);
  height: auto;
  aspect-ratio: 600/594;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2 .flex img {
    width: 100%;
    margin: 0 auto;
  }
}
.top-section-about .top-section-about2 h4 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2 h4 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top-section-about .top-section-about2 p {
  color: #fff;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .top-section-about .top-section-about2 p {
    line-height: 1.8;
  }
}

.about-flow {
  padding: 120px 0 80px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .about-flow {
    padding: 60px 0;
  }
}
.about-flow .heading {
  margin-bottom: 20px;
}
.about-flow ol {
  gap: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol {
    gap: 50px;
  }
}
.about-flow ol li {
  padding-top: 140px;
  padding-bottom: 94px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li {
    padding-top: 90px;
    padding-bottom: 50px;
  }
}
.about-flow ol li::before {
  content: "";
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% - 317px);
  position: absolute;
  right: -50px;
  bottom: 0;
  background: #eeeeee;
  border-radius: 0 0 20px 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li::before {
    right: 0;
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    height: calc(100% - 350px);
  }
}
.about-flow ol li h3 {
  color: #fff;
  background: var(--main-color);
  font-size: 2.4rem;
  font-weight: 500;
  padding: 7px 20px 8px;
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li h3 {
    font-size: 2rem;
    min-width: 200px;
    max-width: 90%;
  }
}
.about-flow ol li .inner {
  padding: 50px 100px 70px;
  border-radius: 0 20px 20px 0;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li .inner {
    padding: 30px 20px;
  }
}
.about-flow ol li .inner table,
.about-flow ol li .inner tbody {
  display: block;
}
.about-flow ol li .inner table {
  position: relative;
}
.about-flow ol li .inner table::before {
  content: "";
  width: 5px;
  height: calc(100% - 40px);
  top: 25px;
  left: 70px;
  position: absolute;
  background-image: linear-gradient(to bottom, var(--main-color) 5px, #fff 5px);
  background-size: 5px 10px;
  background-repeat: repeat-y;
  background-position: left bottom;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li .inner table::before {
    display: none;
  }
}
.about-flow ol li .inner tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li .inner tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}
.about-flow ol li .inner tr th {
  color: #fff;
  background: var(--main-color);
  text-align: center;
  padding: 0 20px;
  width: 150px;
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li .inner tr th {
    font-size: 1.8rem;
    min-width: 100px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 90%;
    padding: 0 10px;
  }
}
.about-flow ol li .inner tr td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 16px;
  padding-left: 50px;
  padding-bottom: 21px;
  border-bottom: solid 1px #dadada;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li .inner tr td {
    padding-left: 0;
    width: 100%;
    padding-bottom: 12px;
    padding-top: 12px;
  }
}
.about-flow ol li .inner tr:last-child {
  margin-bottom: 0;
}
.about-flow ol li img {
  position: absolute;
  margin-right: calc(50% - 50vw);
  width: 600px;
  height: auto;
  aspect-ratio: 60/38;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li img {
    width: 300px;
  }
}
.about-flow ol li:nth-child(2n)::before {
  content: "";
  margin-right: calc(50% - 50vw);
  margin-left: 0;
  left: -50px;
  right: auto;
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 767.9px) {
  .about-flow ol li:nth-child(2n)::before {
    left: 0;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    height: calc(100% - 350px);
  }
}
.about-flow ol li:nth-child(2n) h3 {
  margin-left: auto;
}
.about-flow ol li:nth-child(2n) img {
  margin-left: calc(50% - 50vw);
  left: 0;
}

.bg img {
  width: 100vw;
  display: block;
}

.about-real_pleasures {
  background: #eeeeee;
  overflow: hidden;
  padding-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures {
    padding-bottom: 80px;
  }
}
.about-real_pleasures .bg {
  height: auto;
  aspect-ratio: 1400/409;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures .bg {
    aspect-ratio: 5/2;
  }
}
.about-real_pleasures .cont {
  padding-top: 120px;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures .cont {
    padding-top: 60px;
  }
}
.about-real_pleasures h2 {
  margin: 0 auto 40px;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures h2 {
    margin-bottom: 30px;
  }
}
.about-real_pleasures .inner {
  position: relative;
  padding: 80px 80px 160px 0;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures .inner {
    padding: 40px 30px 60px 10px;
  }
}
.about-real_pleasures .inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  border-radius: 0 60px 60px 0;
  background: #fff;
  margin-left: calc(50% - 50vw);
  -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;
}
.about-real_pleasures .inner ol {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures .inner ol {
    gap: 40px;
  }
}
.about-real_pleasures .inner ol li h3 {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 30px;
  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) {
  .about-real_pleasures .inner ol li h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
  }
}
.about-real_pleasures .inner ol li h3 .fig {
  font-size: 10rem;
  margin-right: 38px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures .inner ol li h3 .fig {
    font-size: 6rem;
    margin-right: 20px;
    display: block;
  }
}
.about-real_pleasures .inner ol li p {
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .about-real_pleasures .inner ol li p {
    line-height: 1.8;
  }
}

.page-employee {
  margin-top: 85px;
}
@media screen and (max-width: 767.9px) {
  .page-employee {
    margin-top: 80px;
  }
}
.page-employee .employee-top .employee-top-prologue h2 {
  margin: 0 auto -20px;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-prologue h2 {
    margin-bottom: -10px;
  }
}
.page-employee .employee-top .employee-top-prologue .border_left_box {
  position: relative;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-prologue .border_left_box {
    padding: 40px 30px 40px;
  }
}
.page-employee .employee-top .employee-top-prologue img {
  display: block;
  margin-top: -95px;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  height: auto;
  aspect-ratio: 1400/388;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-prologue img {
    aspect-ratio: 5/3;
  }
}
.page-employee .employee-top .employee-top-content {
  padding-top: 82px;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-content {
    padding-top: 40px;
  }
}
.page-employee .employee-top .employee-top-content .cont {
  border-radius: 52px 52px 0 0;
  background: #eeeeee;
  padding: 40px 20px 53px;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-content .cont {
    border-radius: 30px 30px 0 0;
    padding: 20px;
  }
}
.page-employee .employee-top .employee-top-content .cont p {
  font-size: 2.4rem;
  color: var(--main-color);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-content .cont p {
    font-size: 1.8rem;
  }
}
.page-employee .employee-top .employee-top-content .work_detail_wrapper p {
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-top .employee-top-content .work_detail_wrapper p {
    padding: 0;
  }
}
.page-employee
  .employee-top
  .employee-top-content
  .work_detail_wrapper
  p::before {
  content: "■　";
  color: #fff;
}
.page-employee .employee-top .employee-top-content .work_detail_wrapper h3 {
  margin-bottom: 14px;
}
.page-employee .employee-challenging .inner {
  padding-right: 0;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-challenging .inner {
    padding-right: 30px;
  }
}
.page-employee .employee-challenging .inner ol li {
  gap: 20px 50px;
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-challenging .inner ol li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-employee .employee-challenging .inner ol li div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-employee .employee-challenging .inner ol li img {
  margin-right: calc(50% - 50vw);
  width: 50%;
  height: auto;
  aspect-ratio: 500/243;
  margin-top: 30px;
}
@media (min-width: 1800px) {
  .page-employee .employee-challenging .inner ol li img {
    width: 60%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-employee .employee-challenging .inner ol li img {
    margin-top: 0;
    margin-left: auto;
    width: 100%;
  }
}

.employee-career {
  overflow: hidden;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .employee-career {
    margin-bottom: 40px;
  }
}
.employee-career .bg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/388;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .employee-career .bg img {
    aspect-ratio: 5/3;
  }
}
.employee-career .cont {
  padding-top: 128px;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont {
    padding-top: 60px;
  }
}
.employee-career .cont .heading {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont .heading {
    margin-bottom: 60px;
  }
}
.employee-career .cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 95px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont ul {
    gap: 20px;
  }
}
.employee-career .cont li {
  position: relative;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li {
    margin-bottom: 40px;
  }
}
.employee-career .cont li::before {
  content: "";
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: #fff;
  border-radius: 0 0 50px 0;
  -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;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li::before {
    border-radius: 0 0 20px 0;
  }
}
.employee-career .cont li::after {
  content: "";
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: #eeeeee;
  border-radius: 0 20px 20px 0;
  z-index: 0;
  position: absolute;
  top: 90px;
  right: -98px;
}
.employee-career .cont li h3 {
  position: relative;
  background: var(--main-color);
  width: calc(100% - 30px);
  margin-left: auto;
  margin-right: 0;
  padding: 20px 130px;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li h3 {
    font-size: 2rem;
    padding: 10px;
    font-size: 1.8rem;
  }
}
.employee-career .cont li h3 svg {
  position: absolute;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
  top: -60px;
  right: 30px;
}
.employee-career .cont li h3 svg .cls-1 {
  fill: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li h3 svg {
    height: 40px;
    top: -39px;
  }
}
.employee-career .cont li h3::before {
  content: "";
  width: 82px;
  height: 100%;
  background-image: url(../img/icon2.svg);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 30px;
  bottom: -6px;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li h3::before {
    display: none;
  }
}
.employee-career .cont li h3::after {
  content: "";
  width: 30px;
  height: 100%;
  background: var(--main-color);
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  position: absolute;
  bottom: 0;
  left: -29px;
}
.employee-career .cont li .flex-top {
  margin-left: calc(50% - 50vw);
  gap: 100px;
  padding-right: 100px;
  padding-bottom: 42px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 20px 40px;
    gap: 20px;
  }
}
.employee-career .cont li .flex-top img {
  width: 41%;
  margin-top: -124px;
  height: auto;
  aspect-ratio: 225/191;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li .flex-top img {
    margin-top: 0;
    width: 100%;
    max-width: 500px;
  }
}
.employee-career .cont li .flex-top p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 36px;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li .flex-top p {
    margin-top: 20px;
    line-height: 1.8;
  }
}
.employee-career .cont li:nth-child(2n)::before {
  margin-right: calc(50% - 50vw);
  margin-left: 0;
  top: 0;
  left: 0;
  right: auto;
  border-radius: 0 0 0 50px;
}
.employee-career .cont li:nth-child(2n)::after {
  margin-right: calc(50% - 50vw);
  margin-left: 0;
  top: 90px;
  left: -98px;
  right: auto;
  border-radius: 20px 0 0 20px;
}
.employee-career .cont li:nth-child(2n) h3 {
  margin-left: 0;
}
.employee-career .cont li:nth-child(2n) h3 svg {
  left: 30px;
}
.employee-career .cont li:nth-child(2n) h3::before {
  right: 25px;
  left: auto;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.employee-career .cont li:nth-child(2n) h3::after {
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 100%);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  right: -29px;
  left: auto;
}
.employee-career .cont li:nth-child(2n) .flex-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-right: calc(50% - 50vw);
  margin-left: 0;
  padding-right: 0;
  padding-left: 100px;
}
@media screen and (max-width: 767.9px) {
  .employee-career .cont li:nth-child(2n) .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.employee-closing {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.employee-closing::before {
  content: "";
  width: 100%;
  height: calc(100% - 100px);
  position: absolute;
  top: 100px;
  left: 0;
  background: var(--sub-color);
}
@media screen and (max-width: 767.9px) {
  .employee-closing::before {
    top: 0;
    height: 100%;
  }
}
.employee-closing .cont {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .employee-closing .cont {
    padding-top: 40px;
  }
}
.employee-closing .flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .employee-closing .flex {
    gap: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .employee-closing .flex {
    gap: 30px;
    margin-bottom: 40px;
  }
}
.employee-closing .flex .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .employee-closing .flex .detail {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.employee-closing .flex .detail p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 55px;
}
@media screen and (max-width: 767.9px) {
  .employee-closing .flex .detail p {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.employee-closing .flex .detail ul {
  background: #fff;
  padding: 47px 70px 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .employee-closing .flex .detail ul {
    padding: 30px;
    gap: 20px;
  }
}
.employee-closing .flex .detail ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}
.employee-closing .flex .detail ul li::before {
  content: "■　";
  color: var(--main-color);
}
.employee-closing .flex img {
  margin-right: calc(50% - 50vw);
  width: 60%;
  aspect-ratio: 600/594;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .employee-closing .flex img {
    width: 50%;
  }
}
@media screen and (max-width: 767.9px) {
  .employee-closing .flex img {
    width: 100%;
    max-width: 500px;
    margin: 0;
  }
}
.employee-closing h2 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .employee-closing h2 {
    font-size: 2.4rem;
  }
}

.page-part .part-top .cont img {
  aspect-ratio: 1400/740;
}
.page-part .employee-challenging .bg img {
  aspect-ratio: 1400/388;
}
.page-part .about-real_pleasures {
  padding-bottom: 244px;
}
@media screen and (max-width: 767.9px) {
  .page-part .about-real_pleasures {
    padding-bottom: 80px;
  }
}
.page-part .employee-closing {
  margin-top: -100px;
  padding-bottom: 125px;
}
@media screen and (max-width: 767.9px) {
  .page-part .employee-closing {
    margin-top: 0;
    padding-bottom: 60px;
  }
}
.page-part .employee-closing .flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-part .employee-closing .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.page-part .employee-closing .flex h2 {
  margin-top: 120px;
  text-align: left;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .page-part .employee-closing .flex h2 {
    margin-top: 0px;
  }
}
.page-part .employee-closing p {
  color: #fff;
  line-height: 2;
}

.part-business {
  margin-top: -376px;
  margin-bottom: 180px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .part-business {
    margin-top: -50px;
    margin-bottom: 20px;
  }
}
.part-business .cont {
  background: #fff;
  padding: 80px 50px 0;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont {
    padding: 60px 20px 40px;
    width: 95%;
  }
}
.part-business .cont h3 {
  margin-bottom: 30px;
}
.part-business .cont 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: 77px;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul {
    gap: 50px;
  }
}
.part-business .cont ul li {
  position: relative;
  margin-top: 110px;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul li {
    margin-top: 0;
  }
}
.part-business .cont ul li h4 {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 10px 20px;
  min-width: 45%;
  border-radius: 22px 22px 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 400px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .part-business .cont ul li h4 {
    min-width: unset;
    max-width: 100%;
    font-size: 2rem;
    border-radius: 12px 12px 0 0;
  }
}
.part-business .cont ul li .table_wrap {
  background: #eeeeee;
  padding: 58px 50px 38px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul li .table_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.part-business .cont ul li .table_wrap img {
  position: absolute;
  width: 350px;
  height: auto;
  aspect-ratio: 350/212;
  right: 0;
  top: -174px;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul li .table_wrap img {
    position: relative;
    top: auto;
    width: 100%;
  }
}
.part-business .cont ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul li dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.part-business .cont ul li dl dt {
  background: var(--main-color);
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  padding: 5px 20px;
  width: 31.3%;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul li dl dt {
    font-size: 1.6rem;
    padding: 2px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.part-business .cont ul li dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fff;
  display: grid;
  place-content: center;
  padding: 5px 27px;
  font-weight: 500;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
@media screen and (max-width: 767.9px) {
  .part-business .cont ul li dl dd {
    padding: 10px 10px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

.table1 {
  display: block;
}
.table1 tbody {
  display: block;
}
.table1 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: solid 1px #dadada;
}
@media screen and (max-width: 767.9px) {
  .table1 tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.table1 tr th {
  width: 200px;
  padding-right: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .table1 tr th {
    width: 100%;
  }
}
.table1 tr td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .table1 tr td {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.table1 tr:last-child {
  border: none;
}

.page-job_detail {
  margin-top: 123px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail {
    margin-top: 80px;
  }
}
.page-job_detail .top-section .cont_ww .detail .heading {
  padding-left: 45px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .top-section .cont_ww .detail .heading {
    margin-bottom: 60px;
    padding-left: 0;
  }
}
.page-job_detail .top-section {
  position: relative;
}
.page-job_detail .top-section .cont_ww .detail .top-section_box::before {
  top: -65px;
  height: calc(100% + 110px);
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .top-section .cont_ww .detail .top-section_box::before {
    top: -40px;
    height: calc(100% + 80px);
  }
}
.page-job_detail .top-section .cont_ww .detail .top-section_box {
  padding-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .top-section .cont_ww .detail .top-section_box {
    padding-bottom: 40px;
  }
}
.page-job_detail .top-section .cont_ww {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .top-section .cont_ww {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.page-job_detail .top-section ul {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .top-section ul {
    margin-top: 25px;
  }
}
.page-job_detail .top-section li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .top-section li {
    font-size: 1.6rem;
  }
}
.page-job_detail .top-section li::before {
  content: "■";
  color: var(--main-color);
  display: inline-block;
  margin-right: 5px;
}
.page-job_detail .job_detail-content {
  margin-top: 36px;
  max-width: 1100px;
}
@media (min-width: 2000px) {
  .page-job_detail .job_detail-content {
    max-width: 1400px;
  }
}
.page-job_detail .job_detail-content .border_left_box {
  max-width: 1000px;
}
@media (min-width: 2000px) {
  .page-job_detail .job_detail-content .border_left_box {
    max-width: 1400px;
  }
}
.page-job_detail .job_detail-content h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .job_detail-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.page-job_detail .how_to_entry {
  margin-top: -170px;
  overflow: hidden;
  background: #eeeeee;
  padding-bottom: 210px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry {
    margin-top: -20px;
    padding-bottom: 80px;
  }
}
.page-job_detail .how_to_entry .bg img {
  aspect-ratio: 1400/548;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .bg img {
    aspect-ratio: 5/2;
  }
}
.page-job_detail .how_to_entry .cont {
  margin-top: -145px;
  position: relative;
  padding: 80px 150px 150px 0;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont {
    margin-top: -30px;
    padding: 50px 20px 40px 0;
  }
}
.page-job_detail .how_to_entry .cont::before {
  content: "";
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  border-radius: 60px;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(218, 218, 218, 0.5);
  box-shadow: 0px 0px 20px 5px rgba(218, 218, 218, 0.5);
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont::before {
    border-radius: 20px;
    right: -10px;
  }
}
.page-job_detail .how_to_entry .cont h2 {
  position: relative;
  margin-bottom: 70px;
  margin-left: -50px;
}
@media screen and (max-width: 1024px) {
  .page-job_detail .how_to_entry .cont h2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont h2 {
    margin-bottom: 30px;
  }
}
.page-job_detail .how_to_entry .cont ol {
  margin-left: -50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style-type: none; /* デフォルトのリストスタイルを無効化 */
  counter-reset: list-counter; /* カウンターをリセット */
  gap: 55px;
}
@media screen and (max-width: 1024px) {
  .page-job_detail .how_to_entry .cont ol {
    margin-left: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont ol {
    gap: 20px;
  }
}
.page-job_detail .how_to_entry .cont ol li {
  background: var(--main-color);
  padding: 30px 50px 60px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont ol li {
    padding: 20px 20px 30px;
  }
}
.page-job_detail .how_to_entry .cont ol li .flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 40px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont ol li .flex {
    display: block;
  }
}
.page-job_detail .how_to_entry .cont ol li p:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-job_detail .how_to_entry .cont ol li .no {
  font-size: 6.4rem;
  font-weight: 600;
  width: 100%;
  line-height: 1;
  margin-bottom: 28px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont ol li .no {
    font-size: 4rem;
    margin-bottom: 10px;
  }
}
.page-job_detail .how_to_entry .cont ol li .more_btn {
  margin-top: -40px;
}
@media screen and (max-width: 767.9px) {
  .page-job_detail .how_to_entry .cont ol li .more_btn {
    margin-top: 20px;
  }
}

.page-curriculum {
  margin-top: 114px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum {
    margin-top: 80px;
  }
}
.page-curriculum .border_left_box {
  padding-top: 60px;
  padding-bottom: 100px;
  margin-bottom: 118px;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .border_left_box {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 100px;
  }
}
.page-curriculum .border_left_box .heading_left2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .border_left_box .heading_left2 {
    margin-bottom: 10px;
  }
}
.page-curriculum .curriculum_detail_content {
  position: relative;
  padding-bottom: 154px;
  margin-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content {
    padding-bottom: 80px;
    margin-bottom: 100px;
  }
}
.page-curriculum .curriculum_detail_content::before {
  content: "";
  width: 100%;
  height: calc(100% - 203px);
  background: #eeeeee;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content::before {
    height: calc(100% - 250px);
  }
}
.page-curriculum .curriculum_detail_content .bg {
  position: absolute;
  top: 203px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .bg {
    top: 250px;
  }
}
.page-curriculum .curriculum_detail_content .bg img {
  aspect-ratio: 1400/674;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .bg img {
    aspect-ratio: 1/1;
  }
}
.page-curriculum .curriculum_detail_content .career_vision {
  margin-bottom: 114px;
}
.page-curriculum .curriculum_detail_content .career_vision .cont {
  position: relative;
  padding-top: 30px;
  padding-left: 48px;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont {
    padding-top: 20px;
    padding-left: 30px;
  }
}
.page-curriculum .curriculum_detail_content .career_vision .cont::before {
  content: "";
  border-radius: 52px 0 0 52px;
  background: var(--main-color);
  width: 100vw;
  height: 315px;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont::before {
    border-radius: 20px 0 0 20px;
  }
}
.page-curriculum .curriculum_detail_content .career_vision .cont img {
  position: absolute;
  margin-right: calc(50% - 50vw);
  right: 0;
  top: -57px;
  width: 40%;
  height: auto;
  aspect-ratio: 400/337;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont img {
    width: 50%;
    top: -70px;
    max-width: 200px;
  }
}
.page-curriculum .curriculum_detail_content .career_vision .cont h3 {
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  max-width: 60%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    max-width: 50%;
  }
}
.page-curriculum .curriculum_detail_content .career_vision .cont .ul_wrap {
  position: relative;
  background: #fff;
  padding: 40px 50px 70px;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont .ul_wrap {
    padding: 30px 20px;
  }
}
.page-curriculum
  .curriculum_detail_content
  .career_vision
  .cont
  .ul_wrap::after {
  content: "";
  width: 100vw;
  -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;
  margin-right: calc(50% - 50vw);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.page-curriculum .curriculum_detail_content .career_vision .cont .ul_wrap h4 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.2em;
  max-width: 65%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont .ul_wrap h4 {
    font-size: 1.8rem;
    max-width: 100%;
  }
}
.page-curriculum .curriculum_detail_content .career_vision .cont .ul_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  gap: 25px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_vision .cont .ul_wrap ul {
    gap: 15px;
  }
}
.page-curriculum
  .curriculum_detail_content
  .career_vision
  .cont
  .ul_wrap
  ul
  li {
  color: #fff;
  background: var(--sub-color);
  padding: 16px 26px;
  width: 70%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content
    .career_vision
    .cont
    .ul_wrap
    ul
    li {
    padding: 10px 20px;
    width: 80%;
  }
}
.page-curriculum
  .curriculum_detail_content
  .career_vision
  .cont
  .ul_wrap
  ul
  li:nth-child(2) {
  width: 81%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content
    .career_vision
    .cont
    .ul_wrap
    ul
    li:nth-child(2) {
    width: 90%;
  }
}
.page-curriculum
  .curriculum_detail_content
  .career_vision
  .cont
  .ul_wrap
  ul
  li:nth-child(3) {
  width: 94%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content
    .career_vision
    .cont
    .ul_wrap
    ul
    li:nth-child(3) {
    width: 100%;
  }
}
.page-curriculum .curriculum_detail_content .career_pass .border_left_box {
  overflow: hidden;
  padding-bottom: 60px;
  margin-bottom: 0;
  padding-top: 34px;
}
.page-curriculum .curriculum_detail_content .career_pass h4 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass h4 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass ol {
    gap: 20px;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol li {
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass ol li {
    gap: 25px;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol li::before {
  content: "";
  width: calc(100% + 90px);
  height: 65px;
  background: #eeeeee;
  border-radius: 0 18px 18px 0;
  position: absolute;
  bottom: -56px;
  left: -100px;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass ol li::before {
    border-radius: 0 10px 10px 0;
    height: 40px;
    bottom: -30px;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol li::after {
  content: "";
  width: 10px;
  height: 100%;
  background: var(--accent-color);
  position: absolute;
  bottom: -65px;
  left: 46px;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass ol li::after {
    width: 5px;
    left: 36px;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol li .step {
  background: var(--accent-color);
  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;
  border-radius: 50%;
  min-width: 103px;
  max-width: 110px;
  height: auto;
  aspect-ratio: 1/1;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass ol li .step {
    min-width: 80px;
    font-size: 1.8rem;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol li .step span {
  font-size: 4rem;
  margin-top: -10px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum .curriculum_detail_content .career_pass ol li .step span {
    font-size: 2.4rem;
    margin-top: -6px;
  }
}
.page-curriculum .curriculum_detail_content .career_pass ol li .description {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-curriculum
  .curriculum_detail_content
  .career_pass
  ol
  li:last-child::after {
  content: none;
}
.page-curriculum
  .curriculum_detail_content
  .career_pass
  ol
  li:last-child::before {
  content: none;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content:nth-child(2n-1)
    .career_vision
    .cont {
    padding-right: 30px;
    padding-left: 0;
  }
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .cont
  h3 {
  text-align: right;
  padding-right: 100px;
  margin-left: auto;
  max-width: 65%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content:nth-child(2n-1)
    .career_vision
    .cont
    h3 {
    padding-right: 0;
    max-width: 50%;
  }
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .cont::before {
  content: "";
  border-radius: 0 52px 52px 0;
  left: auto;
  right: 0;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content:nth-child(2n-1)
    .career_vision
    .cont::before {
    border-radius: 0 20px 20px 0;
  }
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .cont
  img {
  right: auto;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .ul_wrap {
  padding-right: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content:nth-child(2n-1)
    .career_vision
    .ul_wrap {
    padding-right: 20px;
  }
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .ul_wrap
  h4 {
  text-align: right;
  margin-left: auto;
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .ul_wrap::after {
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  left: auto;
  right: 0;
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .ul_wrap
  ul
  li {
  margin-left: auto;
  margin-right: 0;
  padding-left: 50px;
  width: 75%;
}
@media screen and (max-width: 767.9px) {
  .page-curriculum
    .curriculum_detail_content:nth-child(2n-1)
    .career_vision
    .ul_wrap
    ul
    li {
    padding-left: 20px;
  }
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .ul_wrap
  ul
  li:nth-child(2) {
  width: 86%;
}
.page-curriculum
  .curriculum_detail_content:nth-child(2n-1)
  .career_vision
  .ul_wrap
  ul
  li:nth-child(3) {
  width: 99%;
}
.page-curriculum .curriculum_detail_content:last-child {
  margin-bottom: 0;
}

.page-features .features1 {
  margin-top: 80px;
  margin-bottom: 125px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features1 {
    margin-bottom: 80px;
  }
}
.page-features .features1 .heading_left {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features1 .heading_left {
    margin-bottom: 40px;
  }
}
.page-features .features1 ul {
  gap: 40px 50px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 430px) {
  .page-features .features1 ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.page-features .features1 ul li {
  width: 300px;
}
@media screen and (max-width: 430px) {
  .page-features .features1 ul li {
    width: 100%;
  }
}
.page-features .features1 ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 300/244;
  display: block;
  margin-bottom: 13px;
}
.page-features .features1 ul li h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.page-features .features1 ul li h3 span {
  display: block;
  color: var(--main-color);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1333333333;
}
.page-features .features2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 {
    margin-bottom: 60px;
  }
}
.page-features .features2 .bg img {
  width: calc(100vw - 100px);
  aspect-ratio: 1300/500;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .bg img {
    aspect-ratio: 5/3;
    width: 100%;
  }
}
.page-features .features2 .cont {
  margin-top: -240px;
  position: relative;
  padding-bottom: 70px;
  padding-top: 60px;
  padding-right: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont {
    margin-top: -100px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 30px;
  }
}
.page-features .features2 .cont .heading_left {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont .heading_left {
    margin-bottom: 30px;
  }
}
.page-features .features2 .cont 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: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont ul {
    gap: 30px;
  }
}
.page-features .features2 .cont ul li {
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont ul li {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-features .features2 .cont ul li h3 {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  display: grid;
  place-content: center;
  max-width: 250px;
  min-height: 232px;
  padding: 20px 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont ul li h3 {
    font-size: 1.8rem;
    min-height: unset;
    padding: 30px 20px;
    margin-bottom: 0;
  }
}
.page-features .features2 .cont ul li p {
  margin-top: 25px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont ul li p {
    margin-top: 0;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-features .features2 .cont ul li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .page-features .features2 .cont ul li:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.features3 {
  background: #eeeeee;
  overflow: hidden;
  padding-top: 138px;
  padding-bottom: 210px;
}
@media screen and (max-width: 767.9px) {
  .features3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.features3 .cont {
  position: relative;
  z-index: 2;
  padding: 100px 0 90px;
}
@media screen and (max-width: 767.9px) {
  .features3 .cont {
    padding: 50px 0 40px 20px;
  }
}
.features3 .cont::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
  position: absolute;
  top: 0;
  left: -100px;
  margin-right: calc(50% - 50vw);
  -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;
  border-radius: 60px 0 0 60px;
}
@media (max-width: 1250px) {
  .features3 .cont::before {
    left: -5%;
  }
}
@media screen and (max-width: 767.9px) {
  .features3 .cont::before {
    left: 0;
    border-radius: 30px 0 0 30px;
  }
}
.features3 .heading_left {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .features3 .heading_left {
    margin-bottom: 30px;
  }
}
.features3 ol li {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .features3 ol li {
    margin-bottom: 0;
  }
}
.features3 ol li .no {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--main-color);
}
@media screen and (max-width: 767.9px) {
  .features3 ol li .no {
    font-size: 5rem;
    margin-bottom: 5px;
  }
}
.features3 ol li h2 {
  padding-left: 12px;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .features3 ol li h2 {
    padding-left: 0;
  }
}
.features3 ol {
  gap: 40px 5%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .features3 ol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.features3 ol li {
  width: 30%;
}
@media screen and (max-width: 767.9px) {
  .features3 ol li {
    width: 100%;
  }
}
.features3 ol li h3 {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .features3 ol li h3 {
    font-size: 1.8rem;
  }
}
.features3 ol li img {
  width: 100%;
  aspect-ratio: 300/530;
  height: auto;
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .features3 ol li img {
    margin-bottom: 20px;
    aspect-ratio: 3.5/5;
  }
}

.page-greeting {
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-greeting {
    margin-top: 80px;
  }
}
.page-greeting .greeting-top {
  position: relative;
  padding-bottom: 106px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .greeting-top {
    padding-bottom: 50px;
  }
}
.page-greeting .greeting-top::before {
  content: "";
  width: calc(100% - 150px);
  background: #eeeeee;
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .greeting-top::before {
    width: calc(100% - 60px);
  }
}
.page-greeting .greeting-top_lead {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .greeting-top_lead {
    margin-bottom: 40px;
  }
}
.page-greeting .greeting-top_lead .fig {
  text-align: center;
  color: var(--main-color);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 30px;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .greeting-top_lead .fig {
    padding: 0;
    font-size: 2.6rem;
  }
}
.page-greeting .greeting-top_lead .copy {
  background: var(--accent-color);
  position: relative;
  text-align: center;
  width: calc(100% - 30px);
  margin-left: 30px;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding: 10px 20px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .greeting-top_lead .copy {
    font-size: 2.2rem;
    width: calc(100% - 60px);
  }
}
.page-greeting .greeting-top_lead .copy::before,
.page-greeting .greeting-top_lead .copy::after {
  content: "";
  width: 35px;
  height: 100%;
  background: var(--accent-color);
  position: absolute;
  top: 0;
}
.page-greeting .greeting-top_lead .copy::before {
  left: -35px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-greeting .greeting-top_lead .copy::after {
  right: -35px;
  -webkit-clip-path: polygon(0 0%, 0 100%, 100% 0%);
  clip-path: polygon(0 0%, 0 100%, 100% 0%);
}
.page-greeting .flex-top {
  margin-right: calc(50% - 50vw);
  position: relative;
  gap: 20px 50px;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-greeting .flex-top img {
  width: 54%;
  aspect-ratio: 297/292;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .flex-top img {
    width: 100%;
    max-width: 500px;
  }
}
.page-greeting .flex-top .detail {
  margin-top: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-greeting .flex-top .detail .heading_left {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .flex-top .detail .heading_left {
    margin-bottom: 30px;
  }
}
.page-greeting .flex-top .detail p {
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .flex-top .detail p {
    line-height: 1.8;
  }
}
.page-greeting .top-features {
  margin-top: -50px;
  padding-top: 240px;
  padding-bottom: 280px;
}
.page-greeting .top-features .description {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .page-greeting .top-features {
    margin-top: -30px;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.page-company {
  margin-top: 110px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-company {
    margin-top: 80px;
  }
}
.page-company .company1 {
  position: relative;
  z-index: 2;
}
.page-company .company1 .heading_left {
  margin-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company1 .heading_left {
    margin-bottom: 30px;
  }
}
.page-company .company1 .wrapper {
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company1 .wrapper {
    padding-bottom: 40px;
  }
}
.page-company .company1 .wrapper::before {
  content: "";
  background: #eeeeee;
  border-radius: 0 30px 30px 0;
  z-index: -1;
  position: absolute;
  width: 100vw;
  right: -50px;
  margin-left: calc(50vw - 50%);
  bottom: 0;
  height: 300px;
}
@media screen and (max-width: 1024px) {
  .page-company .company1 .wrapper::before {
    right: -4%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-company .company1 .wrapper::before {
    right: 10%;
  }
}
.page-company .company1 .border_left_box {
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company1 .border_left_box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.page-company .company2 {
  margin-top: -140px;
  background: #eeeeee;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 {
    margin-top: -100px;
  }
}
.page-company .company2 .bg_clip {
  height: auto;
  aspect-ratio: 1400/800;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 78%);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 78%);
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .bg_clip {
    aspect-ratio: 3/2;
  }
}
.page-company .company2 .bg_clip img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-company .company2 .heading {
  margin-bottom: 63px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .heading {
    margin-bottom: 30px;
  }
}
.page-company .company2 .history_top {
  margin-bottom: 44px;
  position: relative;
  padding: 60px 100px 50px 0;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .history_top {
    padding: 30px 20px 40px 0;
  }
}
.page-company .company2 .history_top::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--main-color);
  margin-left: calc(50% - 50vw);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 42px 42px 0;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .history_top::before {
    border-radius: 0 20px 20px 0;
  }
}
.page-company .company2 .history_top .year {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .history_top .year {
    font-size: 1.8rem;
  }
}
.page-company .company2 .history_top .year span {
  font-size: 4rem;
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .history_top .year span {
    display: block;
    font-size: 2.8rem;
  }
}
.page-company .company2 .history_top .description {
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .history_top .description {
    line-height: 1.8;
  }
}
.page-company .company2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-bottom: 96px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 ul {
    margin-bottom: 60px;
    gap: 30px;
    margin-left: 10px;
  }
}
.page-company .company2 ul::before {
  content: "";
  width: 100vw;
  position: absolute;
  left: -100px;
  top: 266px;
  height: calc(100% - 440px);
  background: var(--main-color);
  border-radius: 42px;
  z-index: -1;
}
@media (max-width: 1250px) {
  .page-company .company2 ul::before {
    left: -5%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 ul::before {
    left: -20px;
    border-radius: 30px 0 0 30px;
  }
}
.page-company .company2 li {
  background: #fff;
  padding: 40px 50px 50px;
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
}
.page-company .company2 li .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 li .detail {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-company .company2 li img {
  width: 250px;
  height: auto;
  aspect-ratio: 250/330;
}
@media screen and (max-width: 430px) {
  .page-company .company2 li img {
    width: 100%;
  }
}
.page-company .company2 .company_heading {
  margin-top: -6px;
}
.page-company .company2 .company_heading .fig {
  color: var(--main-color);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company_heading .fig {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.page-company .company2 .company_heading h3 {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 25px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company_heading h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.page-company .company2 .company_heading h3 span {
  font-size: 4rem;
  display: inline-block;
  margin-right: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company_heading h3 span {
    display: block;
    font-size: 2.6rem;
    margin-bottom: 5px;
  }
}
.page-company .company2 .description {
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .description {
    line-height: 1.8;
  }
}
.page-company .main_chronology {
  padding: 80px 50px 100px 50px;
  position: relative;
  margin-bottom: 145px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-company .main_chronology {
    padding: 50px 20px;
    margin-left: 10px;
    margin-bottom: 80px;
  }
}
.page-company .main_chronology::before {
  content: "";
  width: 100vw;
  position: absolute;
  left: -100px;
  top: 0;
  height: 100%;
  background: #fff;
  border-radius: 46px 0 0 46px;
  -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;
  z-index: -1;
}
@media (max-width: 1250px) {
  .page-company .main_chronology::before {
    left: -5%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-company .main_chronology::before {
    left: -20px;
    border-radius: 30px 0 0 30px;
  }
}
.page-company .main_chronology .company_heading h3 {
  margin-bottom: 35px;
}
@media screen and (max-width: 767.9px) {
  .page-company .main_chronology .company_heading h3 {
    margin-bottom: 10px;
  }
}
.page-company .main_chronology .table1 {
  max-width: 800px;
  margin-left: 50px;
}
@media (min-width: 2000px) {
  .page-company .main_chronology .table1 {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-company .main_chronology .table1 {
    margin-left: 0;
  }
}
.page-company .main_chronology .table1 tr:last-child {
  border-bottom: solid 1px #dadada;
}
.page-company .company_closing {
  gap: 30px 100px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company_closing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 50px;
  }
}
.page-company .company_closing p {
  font-size: 3rem;
  font-weight: 600;
  line-height: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company_closing p {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    font-size: 2.2rem;
    margin-bottom: 0;
    line-height: 1.8;
  }
}
.page-company .company_closing img {
  width: 60%;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767.9px) {
  .page-company .company_closing img {
    width: 80%;
    margin: 0;
  }
}
@media screen and (max-width: 430px) {
  .page-company .company_closing img {
    width: 100%;
  }
}

#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;
}

.top-faq .comment {
  margin-top: 42px;
  margin-bottom: 30px;
}
.top-faq .sample1 .top-faq_group {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.top-faq .sample1 .top-faq_group .accordion {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 1024px) {
  .top-faq .sample1 .top-faq_group .accordion {
    width: 100%;
  }
}
.top-faq .sample2 .top-faq_group {
  display: block;
  width: 100%;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media screen and (max-width: 1024px) {
  .top-faq .sample2 .top-faq_group {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.top-faq .sample2 .accordion {
  margin-bottom: 30px;
} /*# sourceMappingURL=common.css.map */

.lp_btn {
  width: 300px;
  height: 80px;
  margin: auto;
}
.lp_btn a {
  display: block;
  line-height: 80px;
  background: var(--accent-color);
  color: #333333;
  text-align: center;
  font-weight: bold;
}
.lp_btn a span {
  position: relative;
  padding-right: 20px;
  font-size: 1.6rem;
}
.lp_btn a span::after {
  content: "";
  width: 30px;
  height: 5px;
  background-image: url(../img/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -30px;
}

.m_t_120 {
  margin-top: 120px;
}

.p_t_120 {
  padding-top: 160px;
}

@media screen and (max-width: 767.9px) {
  .m_t_120 {
    margin-top: 60px;
  }
  .p_t_120 {
    padding-top: 80px;
  }
}

.lp_from {
  background: #ffffff !important;
}

.p-company__map {
  max-width: 1100px;
  height: 400px;
  margin: auto;
  margin-top: 120px;
}

@media screen and (max-width: 767.9px) {
  .p-company__map {
    margin-top: 60px;
  }
}

.no_link > a {
  pointer-events: none;
}

.pankuzu {
  padding: 30px 0;
}
.pankuzu a span {
  color: var(--main-color);
}

.pankuzu a,
.pankuzu span {
  font-weight: 500;
}

.pankuzu .pankuzu_arrow {
  color: #dadada;
  margin: 0 10px;
}

.cont {
  width: 87.6%;
  max-width: 1000px;
  margin: 0 auto;
}

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

.cont_404 {
  display: block !important;
}
.pankuzu .cont_404 .home span {
  color: var(--main-color) !important;
}
.pankuzu .cont_404 a span {
  color: var(--font-color) !important;
}
.pankuzu.pankuzu_404 {
  background: #eeeeee;
}
.pankuzu {
  padding-top: 30px;
}

/* LINE追従 */
.is-follow {
  position: fixed !important;
  bottom: 80px !important;
  right: 20px !important;
  z-index: 10 !important;
}
@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 !important;
  }
  .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;
}
.news_wrapper .content h2 {
  color: #6f4e4e;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  display: block;
  outline: 2px solid #ff8d00;
  outline-offset: 0.5em;
  position: relative;
  margin: 40px 0;
}
.news_wrapper .content h2 strong {
  font-weight: 900;
}
.news_wrapper .content h2:after {
  content: '';
  position: absolute;
  right: calc(-.5em - 4.5px);
  top: calc(-.5em - 4.5px);
  border-width: 0 20px 20px 0;
  border-style: solid;
  border-color: #ff8d00 #fff #ff8d00;
}

/* ====================================
   リセットCSSを無効化したい記事
==================================== */

.news_wrapper .content body {
  font-family: initial !important;
  color: initial !important;
  background: initial !important;
  line-height: normal !important;
}

.news_wrapper .content strong,
.news_wrapper .content b {
  font-weight: bold !important;
}

.news_wrapper .content li {
  list-style: revert !important;
  margin-left: 1.5em !important;
  padding-left: 1em !important;
}

.news_wrapper .content ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin: 1em 0 1em 2em !important;
  padding-left: 1em !important;
  list-style: initial;
}
.news_wrapper .content ol {
  list-style-type: decimal !important;
  list-style-position: outside !important;
  margin: 1em 0 1em 2em !important;
  padding-left: 1em !important;
  list-style: initial;

}
.news_wrapper .content li {
  margin-bottom: 0.5em !important;
}

.news_wrapper .content p {
  margin: 1em 0 !important;
}