@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767.9px) {
  * {
    font-size: 1.5rem;
  }
}

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

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: hsl(240, 2%, 9%);
  line-height: 1.6;
  font-family: "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  overflow-x: clip;
}
html body {
  background: #f7f7f7;
}

@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%);
    /*縦軸の終わりの位置*/
  }
}
.alex {
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.be {
  font-family: "Be Vietnam Pro", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.red {
  color: #db111a;
}

.yellow {
  color: #ffed37;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.upper {
  text-transform: uppercase;
}

.kb-theme-content-width {
  width: 90%;
}

.cont {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.flex.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

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

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

.sidebar_wrapper.lg-block {
  display: none;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  .sidebar_wrapper.lg-block {
    display: block;
    padding: 60px 0 1px;
  }
}
.sidebar_wrapper.lg-block .sidebar {
  width: 400px;
  max-width: 100%;
}
.sidebar_wrapper.lg-block .sidebar_ez_toc {
  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;
  }
}

.none {
  display: none;
}

a {
  color: hsl(240, 2%, 9%);
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

li {
  list-style: none;
}

.header-wrap {
  border-radius: 0;
  background: #fff;
  display: block;
  margin: 0;
  width: 100%;
  max-width: 1314px;
  height: 100dvh;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  padding: 170px 70px 58px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  overflow: auto;
}
.header-wrap .ham_logo {
  position: absolute;
  top: 28px;
  left: 45px;
  width: 270px;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .ham_logo {
    width: 250px;
    position: relative;
    margin: 0 auto 20px;
    top: auto;
    left: auto;
  }
}
.header-wrap .ham_logo a,
.header-wrap .ham_logo img {
  width: 100%;
  display: block;
}
.header-wrap .header-wrap_inner {
  height: 100%;
  position: relative;
  overflow: auto;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .header-wrap_inner {
    display: block;
  }
}
.header-wrap .header-wrap_inner::-webkit-scrollbar {
  display: none;
}
.header-wrap .header-wrap_inner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .gnav_ham_wrap {
    width: 100%;
  }
}
.header-wrap .gnav_ham {
  margin-bottom: 18px;
  border-right: solid 1px #E7E7E7;
  padding-right: 40px;
  width: 344px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .gnav_ham {
    border-right: none;
    padding: 0;
    width: 100%;
  }
}
.header-wrap .gnav_ham ul:nth-child(1) {
  margin-bottom: 18px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .gnav_ham ul:nth-child(1) {
    margin-bottom: 40px;
  }
}
.header-wrap .gnav_ham ul:nth-child(1) li {
  border-bottom: solid 1px #E7E7E7;
  padding: 18px 0;
}
.header-wrap .gnav_ham ul:nth-child(1) li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .gnav_ham ul:nth-child(1) li:last-child {
    border-bottom: solid 1px #E7E7E7;
  }
}
.header-wrap .gnav_ham ul:nth-child(1) a,
.header-wrap .gnav_ham ul:nth-child(1) p {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.96;
  display: block;
}
.header-wrap .gnav_ham ul:nth-child(1) a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-wrap .gnav_ham ul:nth-child(1) a:hover {
  opacity: 1;
  color: #db111a;
}
.header-wrap .gnav_ham ul:nth-child(1) ul {
  padding-top: 10px;
  padding-bottom: 17px;
}
.header-wrap .gnav_ham ul:nth-child(1) ul li {
  padding: 10px 0;
  border: none;
}
.header-wrap .gnav_ham ul:nth-child(1) ul li a {
  border: solid 1px #C0C0C0;
  padding: 9px 26px;
  border-radius: 5px;
}
.header-wrap .gnav_ham ul:nth-child(1) ul li a span {
  font-size: 1.5rem;
}
.header-wrap .gnav_ham ul:nth-child(1) ul li a:hover {
  background: #db111a;
  color: #fff;
  opacity: 1;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__trigger {
  font-family: "LINE Seed JP", sans-serif;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  text-align: left;
  color: inherit;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__trigger p {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.96;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 1379.9px) {
  .header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__trigger p {
    font-size: 1.6rem;
  }
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__trigger:hover .gnav_ham_accordion__icon {
  color: #db111a;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__icon {
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion.is-open .header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__icon {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-bottom: -4px;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content li {
  padding: 10px 0;
  border: none;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content li:first-child {
  margin-top: 15px;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content li a {
  border: solid 1px #C0C0C0;
  padding: 9px 26px;
  border-radius: 5px;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content li a span {
  font-size: 1.5rem;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content li a:hover {
  background: #db111a;
  color: #fff;
  opacity: 1;
}
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion.is-open .header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__content {
  padding-top: 10px;
  padding-bottom: 17px;
}
.header-wrap .media_category_wrap {
  padding-left: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap {
    padding: 0;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.header-wrap .media_category_wrap .heading {
  gap: 13px;
  margin-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
  }
}
.header-wrap .media_category_wrap .heading span {
  color: #db111a;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .heading span {
    font-size: 1rem;
  }
}
.header-wrap .media_category_wrap .heading p {
  font-size: 2.6rem;
  line-height: 1.1153846154;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .heading p {
    font-size: 2rem;
  }
}
.header-wrap .media_category_wrap .main_category {
  margin-bottom: 44px;
}
.header-wrap .media_category_wrap .main_category ul {
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .main_category ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px 20px;
  }
}
.header-wrap .media_category_wrap .main_category ul li {
  width: 180px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .main_category ul li {
    width: 140px;
  }
}
@media screen and (max-width: 430px) {
  .header-wrap .media_category_wrap .main_category ul li {
    width: calc(50% - 10px);
  }
}
.header-wrap .media_category_wrap .main_category ul li:nth-child(1) img {
  width: 87px;
  padding-top: 29px;
  margin-bottom: 22px;
}
.header-wrap .media_category_wrap .main_category ul li:nth-child(2) img {
  width: 64px;
  padding-top: 22px;
  margin-bottom: 24px;
}
.header-wrap .media_category_wrap .main_category ul li:nth-child(3) img {
  width: 71px;
  padding-top: 22px;
  margin-bottom: 24px;
}
.header-wrap .media_category_wrap .main_category ul li:nth-child(4) img {
  width: 80px;
  padding-top: 22px;
  margin-bottom: 25px;
}
.header-wrap .media_category_wrap .main_category ul a {
  display: block;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 20px 47px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .main_category ul a {
    padding: 0 10px 40px;
  }
}
.header-wrap .media_category_wrap .main_category ul a::before {
  content: "→";
  position: absolute;
  bottom: 14px;
  right: 17px;
  color: #db111a;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.0952380952;
}
.header-wrap .media_category_wrap .main_category ul a::after {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #E7E7E7;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  border-radius: 5px;
  z-index: -1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header-wrap .media_category_wrap .main_category ul a img {
  margin-inline: auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .main_category ul a img {
    zoom: 0.8;
  }
}
.header-wrap .media_category_wrap .main_category ul a .category_name {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.0952380952;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .main_category ul a .category_name {
    font-size: 1.6rem;
  }
}
.header-wrap .media_category_wrap .main_category ul a .category_description {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  text-align: center;
  font-weight: 700;
  color: #5C5C5D;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .main_category ul a .category_description {
    font-size: 1.3rem;
  }
}
.header-wrap .media_category_wrap .main_category ul a:hover {
  opacity: 1;
}
.header-wrap .media_category_wrap .main_category ul a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header-wrap .media_category_wrap .main_category ul a:hover::after {
  border: solid 2px #db111a;
}
.header-wrap .media_category_wrap .job_category {
  margin-bottom: 51px;
}
.header-wrap .media_category_wrap .job_category ul {
  gap: 11px 10px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .job_category ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header-wrap .media_category_wrap .job_category li {
  width: 191px;
  height: 65px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .job_category li {
    width: 160px;
    height: 50px;
  }
}
@media screen and (max-width: 430px) {
  .header-wrap .media_category_wrap .job_category li {
    width: calc(50% - 5px);
  }
}
.header-wrap .media_category_wrap .job_category a {
  display: grid;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 3px;
  padding: 0 22px;
  justify-items: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-wrap .media_category_wrap .job_category a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border: solid 2px transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: none;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header-wrap .media_category_wrap .job_category a p {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .job_category a p {
    font-size: 1.2rem;
  }
}
.header-wrap .media_category_wrap .job_category img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  border-radius: 3px;
}
.header-wrap .media_category_wrap .job_category a:hover {
  opacity: 1;
  background-color: rgba(242, 53, 47, 0.2);
}
.header-wrap .media_category_wrap .job_category a:hover::before {
  border: solid 2px #db111a;
}
.header-wrap .media_category_wrap .ham_contact_wrap {
  gap: 18px;
}
.header-wrap .media_category_wrap .ham_contact_wrap div {
  width: calc(50% - 9px);
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .ham_contact_wrap div {
    width: 100%;
    max-width: 300px;
  }
}
.header-wrap .media_category_wrap .ham_contact_wrap a {
  color: #fff;
  font-size: 2.1rem;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  display: block;
  padding: 20px 60px 20px 90px;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .ham_contact_wrap a {
    font-size: 1.6rem;
    padding: 15px 40px 15px 60px;
  }
}
.header-wrap .media_category_wrap .ham_contact_wrap a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .ham_contact_wrap a::before {
    left: 20px;
  }
}
.header-wrap .media_category_wrap .ham_contact_wrap a::after {
  content: "→";
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.0952380952;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .ham_contact_wrap a::after {
    font-size: 1.6rem;
    right: 20px;
  }
}
.header-wrap .media_category_wrap .ham_contact_wrap .ham_document a {
  background: hsl(240, 2%, 9%);
}
.header-wrap .media_category_wrap .ham_contact_wrap .ham_document a::before {
  content: "";
  width: 35px;
  height: 31px;
  background-image: url(../img/download_icon.svg);
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .ham_contact_wrap .ham_document a::before {
    width: 25px;
    height: 22px;
  }
}
.header-wrap .media_category_wrap .ham_contact_wrap .ham_document a:hover {
  background: #db111a;
  opacity: 1;
}
.header-wrap .media_category_wrap .ham_contact_wrap .ham_contact a {
  background: #db111a;
}
.header-wrap .media_category_wrap .ham_contact_wrap .ham_contact a::before {
  content: "";
  width: 36px;
  height: 32px;
  background-image: url(../img/mail_icon.svg);
}
@media screen and (max-width: 767.9px) {
  .header-wrap .media_category_wrap .ham_contact_wrap .ham_contact a::before {
    width: 25px;
    height: 22px;
  }
}
.header-wrap .media_category_wrap .ham_contact_wrap .ham_contact a:hover {
  background: hsl(240, 2%, 9%);
  opacity: 1;
}

.header {
  position: fixed;
  width: auto;
  top: 0;
  right: 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__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}

.header-nav_wrap {
  margin-top: 36px;
  background: hsl(240, 2%, 9%);
  border-radius: 100px 0 0 100px;
  padding: 12px 120px 12px 40px;
}

.ham_block {
  display: none;
}

.gnav {
  height: 100%;
}
.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gnav ul li {
  position: relative;
  margin-right: 22px;
}
.gnav ul li a {
  height: 100%;
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 700;
  color: #fff;
  padding: 5px 0;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnav ul li a:hover {
  color: #db111a;
  opacity: 1;
}
.gnav ul .h_business {
  margin-left: 10px;
  border-left: solid 1px #ADADAD;
  padding-left: 32px;
}
.gnav ul .h_company {
  margin-right: 32px;
}
.gnav ul .h_document {
  margin-right: 13px;
}
.gnav ul .h_document a {
  border: solid 1px #ADADAD;
  border-radius: 3px;
  padding: 4px 20px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnav ul .h_document a::before {
  content: "";
  width: 16px;
  height: 14px;
  background-image: url(../img/download_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gnav ul .h_document a:hover {
  background: #fff;
  color: hsl(240, 2%, 9%);
  opacity: 1;
}
.gnav ul .h_document a:hover::before {
  -webkit-filter: brightness(0) saturate(100%) invert(5%) sepia(1%) saturate(4213%) hue-rotate(265deg) brightness(93%) contrast(91%);
          filter: brightness(0) saturate(100%) invert(5%) sepia(1%) saturate(4213%) hue-rotate(265deg) brightness(93%) contrast(91%);
}
.gnav ul .h_contact {
  margin-right: 0;
  position: relative;
}
.gnav ul .h_contact a {
  background: #db111a;
  border-radius: 3px;
  padding: 4px 20px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #db111a;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnav ul .h_contact a::before {
  content: "";
  width: 17px;
  height: 15px;
  background-image: url(../img/mail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gnav ul .h_contact a:hover {
  background: #fff;
  color: #db111a;
  opacity: 1;
}
.gnav ul .h_contact a:hover::before {
  -webkit-filter: brightness(0) saturate(100%) invert(15%) sepia(68%) saturate(3882%) hue-rotate(345deg) brightness(105%) contrast(111%);
          filter: brightness(0) saturate(100%) invert(15%) sepia(68%) saturate(3882%) hue-rotate(345deg) brightness(105%) contrast(111%);
}
.gnav ul .h_contact p {
  -webkit-animation: pyonpyon2 2s ease-in-out infinite;
          animation: pyonpyon2 2s ease-in-out infinite;
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 100px;
  background: #38EFC6;
  padding: 2px 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  pointer-events: none;
}
.gnav ul .h_contact p::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background: #38EFC6;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
}
.gnav ul .h_contact p span {
  font-size: 1.3rem;
}
.gnav ul .h_contact p::after {
  content: "";
}
.gnav ul .h_contact:hover p {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-search label {
  position: relative;
}
.header-search label::before {
  content: "";
  width: 17px;
  height: 18px;
  background-image: url(../img/search_loupe.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-search input {
  border-radius: 100px;
  background: #e4e0dc;
  font-size: 1.8rem;
  padding: 0 20px 1px 56px;
  width: 270px;
  border: none;
  font-family: "Zen Maru Gothic", sans-serif;
}
.header-search input::-webkit-input-placeholder {
  color: #fff;
}
.header-search input::-moz-placeholder {
  color: #fff;
}
.header-search input:-ms-input-placeholder {
  color: #fff;
}
.header-search input::-ms-input-placeholder {
  color: #fff;
}
.header-search input::placeholder {
  color: #fff;
}

.header_logo {
  width: 274px;
  position: absolute;
  top: 23px;
  left: 50px;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .header_logo {
    width: 130px;
    top: 7px;
    left: 15px;
  }
}
.header_logo img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 1379.9px) {
  .ham_block {
    display: block;
  }
  .ham_none {
    display: none;
  }
  .header-nav_wrap {
    padding: 3px 56px 2px 20px;
    margin-top: 15px;
  }
  .header-nav_wrap .gnav ul {
    gap: 11px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header-nav_wrap .gnav ul li a {
    font-size: 1.2rem;
  }
  .header-nav_wrap .gnav ul li {
    margin: 0;
    padding-inline: none;
  }
  .header-nav_wrap .gnav ul .h_business {
    padding-left: 0;
    border: none;
  }
  .header-search input {
    width: 100%;
    max-width: 300px;
  }
  .header-wrap {
    padding: 30px 20px;
    overflow: hidden;
  }
  .header-wrap::after {
    width: 110px;
    right: 10px;
  }
  .header-wrap .header-wrap_inner {
    padding: 56px 20px 70px;
  }
}
@media screen and (max-width: 1379.9px) and (max-width: 767.9px) {
  .header-wrap .header-wrap_inner {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 1379.9px) {
  .header-wrap .gnav_ham ul:nth-child(1) a {
    font-size: 1.6rem;
  }
  .header-wrap .header_sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 1379.9px) and (max-width: 767.9px) {
  .header-wrap .header_sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hamburger {
  display: block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 49px;
  right: 80px;
  z-index: 99;
  background: none;
  border: none;
  text-align: center;
}
@media screen and (max-width: 1379.9px) {
  .hamburger {
    top: 22px;
    right: 14px;
    width: 20px;
    height: 20px;
    zoom: 1.1;
  }
}

.hamburger__line,
.hamburger__line::after {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  width: 20px;
  height: 2px;
  background: #ADADAD;
  border-radius: 2px;
}
@media screen and (max-width: 1379.9px) {
  .hamburger__line,
  .hamburger__line::after {
    width: 12px;
  }
}

.hamburger__line {
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 1379.9px) {
  .hamburger__line {
    left: 3px;
    top: 5px;
  }
}

.hamburger__line::before {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ADADAD;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 1379.9px) {
  .hamburger__line::before {
    top: 4px;
  }
}

.hamburger__line::after {
  content: "";
  top: 16px;
  left: 0;
}
@media screen and (max-width: 1379.9px) {
  .hamburger__line::after {
    top: 8px;
  }
}

/*activeクラスが付与されると線が回転して×になる*/
.hamburger.active span {
  top: 13px;
  -webkit-transform: translateY(0px) rotate(-45deg);
          transform: translateY(0px) rotate(-45deg);
  width: 25px;
  background: hsl(240, 2%, 9%);
}
@media screen and (max-width: 1379.9px) {
  .hamburger.active span {
    width: 14px;
    top: 9px;
  }
}

.hamburger.active span::after {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.hamburger.active span::before {
  top: 0;
  left: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 25px;
  background: hsl(240, 2%, 9%);
}
@media screen and (max-width: 1379.9px) {
  .hamburger.active span::before {
    width: 14px;
  }
}

.header-wrap.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, visibility 0.6s;
  transition: opacity 0.6s, visibility 0.6s;
  z-index: 89;
  pointer-events: none;
}
.header-overlay.active {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}

body.home .pankuzu {
  display: none;
}

.pankuzu {
  padding: 15px 0;
}
@media screen and (max-width: 767.9px) {
  .pankuzu {
    padding: 40px 0 10px;
  }
}
.pankuzu .pankuzu_arrow {
  width: 6px;
  height: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #686E7D;
}
.pankuzu .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 14px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: unset;
  width: calc(100% - 100px);
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont {
    width: 90%;
  }
}
.pankuzu .cont a,
.pankuzu .cont span {
  font-size: 1.3rem;
  color: #686E7D;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont a,
  .pankuzu .cont span {
    font-size: 1rem;
  }
}

.search_box .accordion {
  border: solid 1px hsl(240, 2%, 9%);
  overflow: hidden;
}

.accordion__content[aria-hidden=true] {
  pointer-events: none;
}

.search_box .accordion__title button {
  background: hsl(240, 2%, 9%);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 32px 18px 90px;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .search_box .accordion__title button {
    padding: 15px 20px 15px 60px;
    font-size: 1.8rem;
  }
}
.search_box .accordion__title button::before {
  content: "";
  width: 21px;
  height: 16px;
  background-image: url(../img/search_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 43px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .search_box .accordion__title button::before {
    left: 20px;
  }
}
.search_box .accordion__title button > span:last-child {
  width: 29px;
  height: auto;
  aspect-ratio: 1/1;
  border: solid 2px #fff;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .search_box .accordion__title button > span:last-child {
    width: 20px;
  }
}
.search_box .accordion__title button > span:last-child::before, .search_box .accordion__title button > span:last-child::after {
  position: absolute;
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .search_box .accordion__title button > span:last-child::before, .search_box .accordion__title button > span:last-child::after {
    width: 11px;
  }
}
.search_box .accordion__title button > span:last-child::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.search_box .accordion__title button > span:last-child::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*　closeというクラスがついたら形状変化　*/
.search_box .accordion.is-opened .accordion__title button > span:last-child::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

#search_box,
.search_box--static .search_box_panel {
  background: #fff;
  overflow: hidden;
  position: relative;
}

#search_box {
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.35s ease, opacity 0.35s ease;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

#search_box::before,
.search_box--static .search_box_panel::before {
  content: "";
  width: 32px;
  height: 14px;
  background: hsl(240, 2%, 9%);
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#search_box .searchandfilter li,
.search_box--static .search_box_panel .searchandfilter li {
  padding: 0;
}
#search_box form,
.search_box--static .search_box_panel form {
  padding: 56px 40px 60px;
}
@media screen and (max-width: 767.9px) {
  #search_box form,
  .search_box--static .search_box_panel form {
    padding: 30px 20px;
  }
}
#search_box form > div > ul > li,
.search_box--static .search_box_panel form > div > ul > li {
  width: 100%;
}
#search_box ul,
.search_box--static .search_box_panel ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  #search_box ul,
  .search_box--static .search_box_panel ul {
    gap: 40px;
  }
}
#search_box ul ul,
.search_box--static .search_box_panel ul ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#search_box h4,
.search_box--static .search_box_panel h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  #search_box h4,
  .search_box--static .search_box_panel h4 {
    font-size: 1.8rem;
  }
}
#search_box input,
.search_box--static .search_box_panel input {
  font-family: "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#search_box .search_filter_search,
.search_box--static .search_box_panel .search_filter_search {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#search_box .search_filter_search::before,
.search_box--static .search_box_panel .search_filter_search::before {
  content: "";
  width: 19px;
  height: 20px;
  background-image: url(../img/search_loupe.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
#search_box .search_filter_search input[type=text],
.search_box--static .search_box_panel .search_filter_search input[type=text] {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  padding: 10px 20px;
  width: 600px;
  max-width: 100%;
  border: solid 1px hsl(240, 2%, 9%);
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_search input[type=text],
  .search_box--static .search_box_panel .search_filter_search input[type=text] {
    font-size: 1.6rem;
    width: 100%;
  }
}
#search_box .search_filter_search input[type=text]::-webkit-input-placeholder, .search_box--static .search_box_panel .search_filter_search input[type=text]::-webkit-input-placeholder {
  font-size: 1.7rem;
  font-weight: 400;
  color: #c0c0c0;
}
#search_box .search_filter_search input[type=text]::-moz-placeholder, .search_box--static .search_box_panel .search_filter_search input[type=text]::-moz-placeholder {
  font-size: 1.7rem;
  font-weight: 400;
  color: #c0c0c0;
}
#search_box .search_filter_search input[type=text]:-ms-input-placeholder, .search_box--static .search_box_panel .search_filter_search input[type=text]:-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 400;
  color: #c0c0c0;
}
#search_box .search_filter_search input[type=text]::-ms-input-placeholder, .search_box--static .search_box_panel .search_filter_search input[type=text]::-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 400;
  color: #c0c0c0;
}
#search_box .search_filter_search input[type=text]::placeholder,
.search_box--static .search_box_panel .search_filter_search input[type=text]::placeholder {
  font-size: 1.7rem;
  font-weight: 400;
  color: #c0c0c0;
}
#search_box .search_filter_category ul,
.search_box--static .search_box_panel .search_filter_category ul {
  gap: 11px;
}
#search_box .search_filter_category li,
.search_box--static .search_box_panel .search_filter_category li {
  width: calc((100% - 36px) / 4);
  min-width: 170px;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_category li,
  .search_box--static .search_box_panel .search_filter_category li {
    width: 100%;
    max-width: 300px;
  }
}
#search_box .search_filter_category label:has(input[type=checkbox]:checked),
.search_box--static .search_box_panel .search_filter_category label:has(input[type=checkbox]:checked) {
  background: #db111a;
  color: #fff;
}
#search_box .search_filter_category label:has(input[type=checkbox]:focus-visible),
#search_box .search_filter_category label:focus-visible,
.search_box--static .search_box_panel .search_filter_category label:has(input[type=checkbox]:focus-visible),
.search_box--static .search_box_panel .search_filter_category label:focus-visible {
  outline: 3px solid rgba(219, 17, 26, 0.4);
  outline-offset: 2px;
}
#search_box .search_filter_category:nth-child(2) ul,
.search_box--static .search_box_panel .search_filter_category:nth-child(2) ul {
  gap: 8px;
}
#search_box .search_filter_category:nth-child(2) li,
.search_box--static .search_box_panel .search_filter_category:nth-child(2) li {
  width: auto;
  min-width: unset;
}
#search_box .search_filter_category:nth-child(2) ul li label:has(input[type=checkbox]:checked),
.search_box--static .search_box_panel .search_filter_category:nth-child(2) ul li label:has(input[type=checkbox]:checked) {
  background: #5c5c5d;
  color: #fff;
}
#search_box .search_filter_category:nth-child(2) label:has(input[type=checkbox]:focus-visible),
#search_box .search_filter_category:nth-child(2) label:focus-visible,
.search_box--static .search_box_panel .search_filter_category:nth-child(2) label:has(input[type=checkbox]:focus-visible),
.search_box--static .search_box_panel .search_filter_category:nth-child(2) label:focus-visible {
  outline: 3px solid rgba(219, 17, 26, 0.4);
  outline-offset: 2px;
}
#search_box .search_filter_job_category ul,
#search_box .search_filter_category ul,
.search_box--static .search_box_panel .search_filter_job_category ul,
.search_box--static .search_box_panel .search_filter_category ul {
  margin-top: 24px;
  margin-left: 12px;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_job_category ul,
  #search_box .search_filter_category ul,
  .search_box--static .search_box_panel .search_filter_job_category ul,
  .search_box--static .search_box_panel .search_filter_category ul {
    margin-right: 12px;
  }
}
#search_box .search_filter_job_category label,
#search_box .search_filter_category label,
.search_box--static .search_box_panel .search_filter_job_category label,
.search_box--static .search_box_panel .search_filter_category label {
  width: 100%;
  position: relative;
  display: block;
  text-align: center;
  padding: 12px 35px;
  border-radius: 999px;
  border: 2px solid #c0c0c0;
  font-weight: 700;
  color: hsl(240, 2%, 9%);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
}
#search_box .search_filter_job_category label input[type=checkbox],
#search_box .search_filter_category label input[type=checkbox],
.search_box--static .search_box_panel .search_filter_job_category label input[type=checkbox],
.search_box--static .search_box_panel .search_filter_category label input[type=checkbox] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
#search_box li.search_filter_post_tag,
.search_box--static .search_box_panel li.search_filter_post_tag {
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#search_box li.search_filter_post_tag ul,
.search_box--static .search_box_panel li.search_filter_post_tag ul {
  margin-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 8px;
  margin-top: 24px;
}
#search_box li.search_filter_post_tag label,
.search_box--static .search_box_panel li.search_filter_post_tag label {
  position: relative;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 23px;
  border-radius: 100px;
  border: 1px solid #e7e7e7;
  font-size: 1.3rem;
  color: #5c5c5d;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  overflow: hidden;
  gap: 4px;
  line-height: 1.4;
  white-space: nowrap;
}
#search_box li.search_filter_post_tag label::before,
.search_box--static .search_box_panel li.search_filter_post_tag label::before {
  content: "#";
  color: inherit;
}
#search_box li.search_filter_post_tag label input[type=checkbox],
.search_box--static .search_box_panel li.search_filter_post_tag label input[type=checkbox] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
#search_box li.search_filter_post_tag label:has(input[type=checkbox]:checked),
.search_box--static .search_box_panel li.search_filter_post_tag label:has(input[type=checkbox]:checked) {
  background: #db111a;
  color: #fff;
}
#search_box li.search_filter_post_tag label:has(input[type=checkbox]:focus-visible),
#search_box li.search_filter_post_tag label:focus-visible,
.search_box--static .search_box_panel li.search_filter_post_tag label:has(input[type=checkbox]:focus-visible),
.search_box--static .search_box_panel li.search_filter_post_tag label:focus-visible {
  outline: 3px solid rgba(219, 17, 26, 0.4);
  outline-offset: 2px;
}
#search_box input[type=submit],
.search_box--static .search_box_panel input[type=submit] {
  background: hsl(240, 2%, 9%);
  color: #fff;
  padding: 15px 30px;
  border: none;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  font-weight: 700;
  border-radius: 100px;
  font-size: 1.8rem;
  cursor: pointer;
}

.accordion.is-opened #search_box {
  opacity: 1;
}

.search_conditions {
  margin-bottom: 65px;
}

.search_conditions_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
  gap: 13px 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.search_conditions_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .search_conditions_list li {
    font-size: 1.6rem;
  }
}
.search_conditions_list p {
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .search_conditions_list p {
    font-size: 1.4rem;
  }
}

.search_conditions_keyword {
  width: 100%;
}
.search_conditions_keyword li {
  gap: 0;
}

.search_conditions_category p {
  background: #db111a;
  color: #fff;
  text-align: center;
  padding: 15px 42px;
  border: 2px solid #c0c0c0;
  border-radius: 100px;
}
@media screen and (max-width: 767.9px) {
  .search_conditions_category p {
    padding: 12px 30px;
  }
}

.search_conditions_job_category p {
  background: #5c5c5d;
  color: #fff;
  border: 2px solid #c0c0c0;
  text-align: center;
  padding: 15px 42px;
  border-radius: 100px;
}
@media screen and (max-width: 767.9px) {
  .search_conditions_job_category p {
    padding: 12px 30px;
  }
}

.search_conditions_tags {
  width: 100%;
}
.search_conditions_tags p {
  font-size: 1.4rem;
  color: #fff;
  background: #db111a;
  border: 1px solid #c0c0c0;
  padding: 12px 25px;
  border-radius: 100px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .search_conditions_tags p {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}

.post_page_top {
  background: #000;
  padding-top: 160px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .post_page_top {
    padding-top: 120px;
  }
}
.post_page_top .sub_title {
  color: #fff;
  font-size: 5.2rem;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .post_page_top .sub_title {
    font-size: 3rem;
  }
}
.post_page_top .page_title {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .post_page_top .page_title {
    font-size: 1.4rem;
  }
}
.post_page_top::before {
  content: "";
  width: 884px;
  height: auto;
  aspect-ratio: 884/386;
  background-image: url(../img/post_page_top_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
}
@media screen and (max-width: 767.9px) {
  .post_page_top::before {
    width: 500px;
  }
}
.post_page_top .cont {
  position: relative;
}

.page_top3 {
  background: #000;
  padding-top: 200px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_top3 {
    padding-top: 120px;
  }
}
.page_top3 .sub_title {
  color: #fff;
  font-size: 5.2rem;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .page_top3 .sub_title {
    font-size: 3rem;
  }
}
.page_top3 .page_title {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page_top3 .page_title {
    font-size: 1.4rem;
  }
}
.page_top3::before {
  content: "";
  width: 641px;
  height: auto;
  aspect-ratio: 641/605;
  background-image: url(../img/page_top2_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767.9px) {
  .page_top3::before {
    width: 320px;
  }
}
.page_top3 .cont {
  position: relative;
}

.archive_wrapper {
  padding-top: 66px;
  background: #fff;
}

.two_column_content {
  max-width: 1200px;
  gap: 64px;
  position: relative;
  margin-bottom: 170px;
}
@media screen and (max-width: 1024px) {
  .two_column_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
    gap: 60px;
  }
}
.two_column_content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .two_column_content .left {
    width: 100%;
    margin-bottom: 0;
  }
}
.two_column_content .search_box {
  margin-bottom: 60px;
}
.two_column_content .post_list {
  gap: 46px 26px;
}
@media screen and (max-width: 767.9px) {
  .two_column_content .post_list {
    gap: 30px 20px;
  }
}
.two_column_content .post_list li {
  width: calc((100% - 26px) / 2);
}

.pagination {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .pagination {
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.pagination a,
.pagination span {
  width: 45px;
  height: 45px;
  background: #f7f7f7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(240, 2%, 9%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .pagination a,
  .pagination span {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}
.pagination .current {
  background: hsl(240, 2%, 9%);
  color: #fff;
}
.pagination a:hover {
  background: hsl(240, 2%, 9%);
  color: #fff;
}
.pagination .dots {
  background: none;
}
.pagination .pagination_count {
  font-size: 1.5rem;
  background: none;
  margin-right: 25px;
  font-weight: 600;
}
.pagination .prev,
.pagination .next {
  background: none;
}
.pagination .prev::after,
.pagination .next::after {
  content: "";
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/pagination_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pagination .prev:hover,
.pagination .next:hover {
  background: none;
}
.pagination .prev::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.ranking_wrapper {
  padding: 120px 0 150px;
  margin-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper {
    padding: 50px 0;
    margin-bottom: 0px;
  }
}
.ranking_wrapper .ranking_subtitle {
  color: #fff;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_subtitle {
    font-size: 3rem;
    margin-bottom: 0;
  }
}
.ranking_wrapper .ranking_subtitle span {
  color: #db111a;
}
.ranking_wrapper .ranking_title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 112px;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_title {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }
}
.ranking_wrapper .ranking_row1 {
  gap: 50px;
  margin-bottom: 86px;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 {
    gap: 40px;
    margin-bottom: 40px;
  }
}
.ranking_wrapper .ranking_row1 li {
  width: calc(50% - 25px);
  max-width: unset;
}
.ranking_wrapper .ranking_row1 a::before {
  width: 92px;
  height: auto;
  aspect-ratio: 92/81;
  top: -58px;
  right: -27px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 a::before {
    width: 60px;
    top: -38px;
    right: -17px;
  }
}
.ranking_wrapper .ranking_row1 li:nth-child(1) a::before {
  background-image: url(../img/no-1.svg);
}
.ranking_wrapper .ranking_row1 li:nth-child(2) a::before {
  background-image: url(../img/no-2.svg);
}
.ranking_wrapper .ranking_row1 h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.ranking_wrapper .ranking_row1 .blog_card .post_category p,
.ranking_wrapper .ranking_row1 .blog_card .job_category p {
  font-size: 1.1rem;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 .blog_card .post_category p,
  .ranking_wrapper .ranking_row1 .blog_card .job_category p {
    font-size: 1rem;
  }
}
.ranking_wrapper .ranking_row1 .post_meta time {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 .post_meta time {
    font-size: 1rem;
  }
}
.ranking_wrapper .ranking_row1 .post-author img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 .post-author img {
    width: 25px;
    height: 25px;
  }
}
.ranking_wrapper .ranking_row1 .post-author .author-name {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row1 .post-author .author-name {
    font-size: 1.1rem;
  }
}
.ranking_wrapper .ranking_row2 {
  gap: 26px;
}
@media screen and (max-width: 767.9px) {
  .ranking_wrapper .ranking_row2 {
    gap: 40px;
  }
}
.ranking_wrapper .ranking_row2 li {
  width: calc((100% - 52px) / 3);
  max-width: unset;
}
.ranking_wrapper .ranking_row2 a::before {
  width: 61px;
  height: auto;
  aspect-ratio: 61/54;
  top: -37px;
  right: -24px;
}
.ranking_wrapper .ranking_row2 li:nth-child(1) a::before {
  background-image: url(../img/no-3.svg);
}
.ranking_wrapper .ranking_row2 li:nth-child(2) a::before {
  background-image: url(../img/no-4.svg);
}
.ranking_wrapper .ranking_row2 li:nth-child(3) a::before {
  background-image: url(../img/no-5.svg);
}
.ranking_wrapper a:hover h3 span {
  color: #db111a;
}
.ranking_wrapper a {
  position: relative;
  display: block;
}
.ranking_wrapper a::before {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  z-index: 2;
}

.sidebar {
  width: 363px;
  margin-bottom: 80px;
}
@media screen and (max-width: 430px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar .sidebar_menu {
  background: #fff;
  margin-bottom: 54px;
}
.sidebar .sidebar_menu h2 {
  padding-left: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding-bottom: 18px;
  border-bottom: 2px solid hsl(240, 2%, 9%);
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sidebar .sidebar_menu h2 span {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}
.sidebar .sidebar_category h2 {
  margin-bottom: 10px;
}
.sidebar .category_list {
  padding: 0 14px;
}
.sidebar .category_list a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 13px 0 13px 1px;
  border-bottom: 1px solid #e2e2e2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar .category_list a:hover {
  color: #db111a;
  opacity: 1;
}
.sidebar .category_list a:last-child {
  border-bottom: none;
}
.sidebar .popular-posts {
  position: relative;
  border: solid 2px hsl(240, 2%, 9%);
  padding: 35px 26px 26px;
  margin-bottom: 34px;
}
.sidebar .popular-posts h2 {
  background: #fff;
  padding: 0 22px;
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}
.sidebar .popular-posts h2::before {
  content: "RANKING";
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
}
.sidebar .popular-posts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
}
.sidebar .popular-posts li {
  border-bottom: 1px solid #e2e2e2;
  margin: 0;
}
.sidebar .popular-posts li:last-child {
  border-bottom: none;
}
.sidebar .popular-posts h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
.sidebar .popular-posts .img_wrap {
  width: 70px;
  height: auto;
  aspect-ratio: 70/40;
  margin-left: 7px;
}
.sidebar .popular-posts .img_wrap img {
  width: 100%;
  height: 100%;
}
.sidebar .popular-posts .rank_number {
  margin-right: 11px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  color: #dd1414;
}
.sidebar .popular-posts li:nth-child(4) .rank_number,
.sidebar .popular-posts li:nth-child(5) .rank_number {
  color: #686e7d;
}
.sidebar .sidebar_tags {
  background: #f7f7f7;
  padding: 30px 26px 40px;
}
.sidebar .sidebar_tags h2 {
  border: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
.sidebar .sidebar_tags .tags_list {
  gap: 11px 7px;
}
@media screen and (max-width: 767.9px) {
  .sidebar .sidebar_tags .tags_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sidebar .sidebar_tags .tags_list a {
  background: #fff;
  color: #5c5c5d;
  border: 1px solid #e7e7e7;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 14px 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar .sidebar_tags .tags_list a:hover {
  background: #db111a;
  color: #fff;
  opacity: 1;
}
.sidebar .sidebar-search {
  margin-bottom: 42px;
}
.sidebar .sidebar-search label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  border-radius: 3px;
  border: 1px solid hsl(240, 2%, 9%);
}
.sidebar .sidebar-search .search-submit {
  background: hsl(240, 2%, 9%);
  color: #fff;
  width: 89px;
  text-align: center;
}
.sidebar .sidebar-search .search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 5px 24px;
}
.sidebar .sidebar-search .search-field::-webkit-input-placeholder {
  color: #c0c0c0;
}
.sidebar .sidebar-search .search-field::-moz-placeholder {
  color: #c0c0c0;
}
.sidebar .sidebar-search .search-field:-ms-input-placeholder {
  color: #c0c0c0;
}
.sidebar .sidebar-search .search-field::-ms-input-placeholder {
  color: #c0c0c0;
}
.sidebar .sidebar-search .search-field::placeholder {
  color: #c0c0c0;
}
.sidebar .ad_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: 20px;
}
.sidebar .ad_wrapper a,
.sidebar .ad_wrapper img {
  width: 100%;
  display: block;
  border-radius: 7px;
}

.heading1 p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 3px;
}
@media screen and (max-width: 767.9px) {
  .heading1 p {
    font-size: 1.2rem;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
  }
}
.heading1 h2 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.heading1 h2 span {
  font-size: 2.1rem;
  font-weight: 700;
  border: solid 2px hsl(240, 2%, 9%);
  padding: 4px 20px;
}
@media screen and (max-width: 767.9px) {
  .heading1 h2 {
    font-size: 2.4rem;
    gap: 10px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 767.9px) {
  .heading1 h2 span {
    font-size: 1.4rem;
    padding: 3px 14px;
    border-width: 1.5px;
  }
}

.heading2 p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.heading2 h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .heading2 h2 {
    font-size: 2.4rem;
  }
}

.more_btn {
  text-align: center;
}
.more_btn a {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4761904762;
  padding: 18px 115px;
  display: inline-block;
  border-radius: 100px;
  background: hsl(240, 2%, 9%);
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767.9px) {
  .more_btn a {
    font-size: 1.5rem;
    padding: 12px 30px 12px 40px;
  }
}
.more_btn a:hover {
  background: #db111a;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.more_btn2 {
  text-align: center;
}
.more_btn2 a {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4761904762;
  padding: 18px 36px 18px 50px;
  display: inline-block;
  border-radius: 100px;
  background: hsl(240, 2%, 9%);
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767.9px) {
  .more_btn2 a {
    font-size: 1.5rem;
    padding: 12px 30px 12px 40px;
  }
}
.more_btn2 a:hover {
  background: #db111a;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page_top {
  background: #000;
  padding-top: 160px;
  padding-bottom: 60px;
}
.page_top .page_title {
  color: #fff;
  font-size: 5.2rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title {
    font-size: 3rem;
  }
}
.page_top .sub_title {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page_top .sub_title {
    font-size: 1.4rem;
  }
}

.page_top2 {
  background: #000;
  padding-top: 190px;
  padding-bottom: 210px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_top2 {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}
.page_top2::before {
  content: "";
  width: 641px;
  height: auto;
  aspect-ratio: 641/605;
  background-image: url(../img/page_top2_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767.9px) {
  .page_top2::before {
    width: 320px;
  }
}
.page_top2 .cont {
  position: relative;
}
.page_top2 .sub_title {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .sub_title {
    font-size: 1.4rem;
  }
}
.page_top2 .page_title {
  color: #fff;
  font-size: 5.2rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .page_title {
    font-size: 3rem;
  }
}
.page_top2 .page_title span {
  font-size: 4.2rem;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .page_title span {
    font-size: 2.3rem;
  }
}
.page_top2 .page_description {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.8051282051;
  color: #d9d9d9;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .page_description {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.page_contents {
  background: #f7f7f7;
}

.bg_bk {
  background: #000;
}
.bg_bk * {
  color: #fff;
}

.bg_white {
  background: #fff;
}

.page_recommend {
  -webkit-transform: translateY(-140px);
          transform: translateY(-140px);
  margin-bottom: -140px;
  overflow-x: clip;
}
@media screen and (max-width: 767.9px) {
  .page_recommend {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
    margin-bottom: -80px;
  }
}
.page_recommend .cont {
  position: relative;
  z-index: 2;
  padding: 40px 0 55px;
  border-radius: 18px;
}
@media screen and (max-width: 767.9px) {
  .page_recommend .cont {
    padding: 30px 0 34px;
    border-radius: 14px;
  }
}
.page_recommend img {
  position: absolute;
  z-index: -1;
}
.page_recommend h2 {
  text-align: center;
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_recommend h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.page_recommend ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 23px;
  max-width: 1050px;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .page_recommend ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    width: 92%;
  }
}
.page_recommend li {
  border-radius: 7px;
  width: calc((100% - 46px) / 3);
  padding: 34px 20px 25px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_recommend li {
    width: 100%;
    padding: 22px 16px 18px;
  }
}
.page_recommend li::before {
  content: "";
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/check_yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .page_recommend li::before {
    width: 22px;
    top: -11px;
  }
}
.page_recommend li p {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.619047619;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page_recommend li p {
    font-size: 1.6rem;
  }
}
.page_recommend li p.f-s {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.9230769231;
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .page_recommend li p.f-s {
    margin-top: 10px;
  }
}
.page_recommend .comment {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_recommend .comment {
    font-size: 2.2rem;
  }
}
.page_recommend .comment span {
  text-decoration-thickness: from-font;
  text-underline-offset: 10px;
}

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

.page_content_overview {
  padding-top: 100px;
  padding-bottom: 120px;
}
.page_content_overview .heading1 h2 span {
  border-color: #fff;
}
.page_content_overview .heading1 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_content_overview .heading1 {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_overview {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.page_content_support {
  padding-top: 90px;
  margin-bottom: 200px;
}
.page_content_support .heading1 {
  margin-bottom: 110px;
}
.page_content_support li {
  margin-bottom: 60px;
}
.page_content_support li:last-child {
  margin-bottom: 0;
}
.page_content_support .no {
  font-size: 12rem;
  line-height: 1.1;
}
.page_content_support h3 {
  color: #db111a;
  font-size: 3.2rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.page_content_support .description {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.35;
  color: #484848;
}
@media screen and (max-width: 767.9px) {
  .page_content_support .description {
    line-height: 1.8;
    font-size: 1.4rem;
  }
}
.page_content_support .description + p {
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_content_support .description + p {
    margin-top: 10px;
  }
}
.page_content_support .flex-top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_content_support .detail {
  width: 48%;
}
.page_content_support img {
  width: 45%;
  border-radius: 10px;
  aspect-ratio: 547/331;
}
@media screen and (max-width: 767.9px) {
  .page_content_support {
    padding-top: 60px;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support .heading1 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support li {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support .no {
    font-size: 6rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support h3 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support .flex-top {
    gap: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support .detail,
  .page_content_support img {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_support img {
    aspect-ratio: 16/10;
  }
}

.radius {
  margin-top: -80px;
  border-radius: 80px 80px 0 0;
}
@media screen and (max-width: 767.9px) {
  .radius {
    margin-top: -40px;
    border-radius: 40px 40px 0 0;
  }
}

.page_content_cases {
  padding-top: 120px;
  padding-bottom: 160px;
}
.page_content_cases .heading1 {
  margin-bottom: 90px;
}
.page_content_cases ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 54px 36px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page_content_cases li {
  border-radius: 15px;
  overflow: hidden;
  width: calc((100% - 36px) / 2);
}
.page_content_cases li .case_top_wrap {
  padding: 30px 20px 30px 40px;
  background-size: cover;
}
.page_content_cases li .case_top_wrap p {
  background: #17f7f0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 2px;
  line-height: 1.1818181818;
  padding: 2.5px 11px;
  display: inline-block;
  margin-bottom: 10px;
}
.page_content_cases li .case_top_wrap h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
.page_content_cases li .task {
  background: #f7f7f7;
  position: relative;
}
.page_content_cases li .task::after {
  content: "";
  width: 30px;
  height: 11px;
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
  background: #f7f7f7;
  position: absolute;
  bottom: -10px;
  left: 43px;
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .task::after {
    width: 26px;
    left: 20px;
  }
}
.page_content_cases li .task h4 {
  color: #5c5c5d;
}
.page_content_cases li .task p {
  color: #5c5c5d;
  font-size: 1.4rem;
  font-weight: 400;
}
.page_content_cases li .task p span {
  color: #000;
}
.page_content_cases li .result {
  background: #dd1414;
}
.page_content_cases li .result p {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
}
.page_content_cases li .result h4 {
  color: #fff;
  text-orientation: upright;
}
.page_content_cases li .task,
.page_content_cases li .result {
  gap: 28px;
  padding: 38px 52px 38px 40px;
}
.page_content_cases li .task h4,
.page_content_cases li .result h4 {
  width: 63px;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.1rem;
  min-height: 112px;
  font-weight: 700;
}
.page_content_cases li .task p,
.page_content_cases li .result p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page_content_cases li:nth-child(2) {
  margin-top: 70px;
}
.page_content_cases li:nth-child(3) {
  margin-top: -70px;
}
@media screen and (max-width: 767.9px) {
  .page_content_cases {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases .heading1 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases ul {
    gap: 22px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li:nth-child(2),
  .page_content_cases li:nth-child(3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .case_top_wrap {
    padding: 22px 16px 22px 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .case_top_wrap h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .task,
  .page_content_cases li .result {
    padding: 22px 18px;
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .task h4,
  .page_content_cases li .result h4 {
    width: 42px;
    min-height: 88px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .task p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_cases li .result p {
    font-size: 1.4rem;
  }
}

.page_content_case {
  padding: 90px 0 236px;
}
.page_content_case .heading1 {
  margin-bottom: 40px;
}
.page_content_case .heading1 p {
  text-align: center;
}
.page_content_case .heading1 h2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_content_case ul {
  gap: 24px;
  margin-bottom: 60px;
}
.page_content_case ul li {
  width: calc((100% - 48px) / 3);
}
.page_content_case .more_btn a {
  padding-left: 50px;
  padding-right: 36px;
}
@media screen and (max-width: 767.9px) {
  .page_content_case {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_case ul {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_case ul li {
    width: 100%;
  }
}

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.page_content_reasons {
  position: relative;
  padding: 110px 0 140px;
  overflow: hidden;
}
.page_content_reasons::before {
  content: "";
  width: 636px;
  height: auto;
  aspect-ratio: 636/682;
  background-image: url(../img/reasons_bg1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.page_content_reasons::after {
  content: "";
  width: 693px;
  height: auto;
  aspect-ratio: 693/787;
  background-image: url(../img/reasons_bg2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.page_content_reasons .heading1 {
  margin-bottom: 80px;
}
.page_content_reasons .heading1 h2 {
  font-size: 5.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  gap: 0;
}
.page_content_reasons .heading1 h2 span {
  color: #dd1414;
  font-size: 5.6rem;
  border: none;
  padding: 0;
}
.page_content_reasons .heading1 p {
  text-align: center;
}
.page_content_reasons li {
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page_content_reasons li:last-child {
  margin-bottom: 0;
}
.page_content_reasons li .detail {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  border-top: solid 2px #dd1414;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.page_content_reasons li .no {
  position: absolute;
  top: -20px;
  background: #db111a;
  color: #fff;
  padding: 11px 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 100px;
  text-transform: uppercase;
}
.page_content_reasons li p {
  font-size: 1.7rem;
  line-height: 2.3529411765;
  color: #e7e7e7;
}
.page_content_reasons li h3 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #fff;
}
.page_content_reasons li img {
  width: 44%;
}
.page_content_reasons li:nth-child(odd) {
  margin-right: 80px;
}
.page_content_reasons li:nth-child(odd) .detail {
  padding-left: 110px;
  padding-right: 56px;
  min-height: 294px;
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li:nth-child(odd) .detail {
    min-height: unset;
  }
}
.page_content_reasons li:nth-child(odd) .no {
  left: 116px;
}
.page_content_reasons li:nth-child(even) {
  margin-left: 80px;
}
.page_content_reasons li:nth-child(even) .detail {
  padding-left: 56px;
  padding-right: 110px;
}
.page_content_reasons li:nth-child(even) .no {
  left: 56px;
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons::before {
    width: min(320px, 70vw);
    right: -10%;
    top: -30px;
    opacity: 0.9;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons::after {
    width: min(340px, 74vw);
    left: -18%;
    bottom: -40px;
    opacity: 0.9;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons .heading1 {
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons .heading1 h2 {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons .heading1 h2 span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li:nth-child(odd),
  .page_content_reasons li:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li:nth-child(odd) .detail,
  .page_content_reasons li:nth-child(even) .detail {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li:nth-child(odd) .no,
  .page_content_reasons li:nth-child(even) .no {
    left: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li .detail {
    padding: 40px 18px 30px;
    border-top-width: 2px;
    min-height: unset;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li .no {
    left: 18px;
    top: -16px;
    padding: 9px 16px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li p {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li img {
    width: 80%;
    max-width: 420px;
    margin: 0 auto 14px;
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_reasons li .flex-top {
    gap: 14px;
  }
}

.page_content_flow {
  padding-top: 100px;
  padding-bottom: 140px;
}
.page_content_flow .heading1 {
  margin-bottom: 90px;
}
.page_content_flow ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 65px 26px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 70px;
}
.page_content_flow li {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  padding: 60px 26px 25px;
  position: relative;
  min-height: 228px;
}
.page_content_flow li .no {
  position: absolute;
  background: #dd1414;
  display: grid;
  place-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: absolute;
  top: -32.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page_content_flow li .no span {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2222222222;
  text-align: center;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}
.page_content_flow li .no p {
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
}
.page_content_flow li h4 {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
  margin-inline: -10px;
}
.page_content_flow li p {
  color: #5c5c5d;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 700;
}
.page_content_flow li::after {
  content: "";
  width: 8px;
  height: auto;
  aspect-ratio: 8/17;
  background-image: url(../img/list_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -18px;
}
.page_content_flow li:last-child::after {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .page_content_flow {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow .heading1 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow ol {
    gap: 40px;
    margin-bottom: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 44px 18px 20px;
    min-height: unset;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li .no {
    width: 52px;
    height: 52px;
    top: -26px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li .no span {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li .no p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li h4 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    margin-inline: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li p {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_flow li::after {
    width: 16px;
    height: 8px;
    aspect-ratio: unset;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -26px;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

.page_content_case_studies {
  padding-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .page_content_case_studies {
    padding-bottom: 100px;
  }
}
.page_content_case_studies .heading1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_content_case_studies .heading1 {
    margin-bottom: 30px;
  }
}
.page_content_case_studies ul {
  gap: 28px;
}
.page_content_case_studies ul li {
  width: calc((100% - 56px) / 3);
}
@media screen and (max-width: 767.9px) {
  .page_content_case_studies ul li {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_case_studies ul {
    gap: 18px;
  }
}

.page_content_faq {
  padding: 100px 0 150px;
}
.page_content_faq .heading1 {
  margin-bottom: 30px;
}
.page_content_faq .faq_list ul {
  max-width: 840px;
  margin-left: auto;
}
.page_content_faq .faq_accordion {
  border-bottom: 1px solid #e2e2e2;
  overflow: hidden;
}
.page_content_faq .faq_accordion .accordion__title button {
  background: #fff;
  color: hsl(240, 2%, 9%);
  padding: 20px 0;
  font-size: 2rem;
  line-height: 1.6;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  position: relative;
}
.page_content_faq .faq_accordion .accordion__title button .question {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  text-align: left;
}
.page_content_faq .faq_accordion .accordion__title button .question > span:first-child {
  font-weight: 700;
  background: hsl(240, 2%, 9%);
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}
.page_content_faq .faq_accordion .accordion__title button > span:last-child {
  width: 25px;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: auto;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_accordion .accordion__title button > span:last-child {
    width: 20px;
  }
}
.page_content_faq .faq_accordion .accordion__title button > span:last-child::before,
.page_content_faq .faq_accordion .accordion__title button > span:last-child::after {
  background-color: hsl(240, 2%, 9%);
  position: absolute;
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_accordion .accordion__title button > span:last-child::before,
  .page_content_faq .faq_accordion .accordion__title button > span:last-child::after {
    width: 16px;
  }
}
.page_content_faq .faq_accordion .accordion__title button > span:last-child::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_content_faq {
  /* close/openの形状だけ切り替える（+ ↔ -） */
}
.page_content_faq .faq_accordion.is-opened .accordion__title button > span:last-child::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.page_content_faq .faq_accordion .accordion__content {
  background: #fff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.35s ease, opacity 0.35s ease;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.page_content_faq .faq_accordion.is-opened .accordion__content {
  opacity: 1;
}
.page_content_faq .faq_accordion .answer {
  padding: 0 40px 30px 60px;
  line-height: 2;
  font-weight: 400;
  color: #5c5c5d;
}
@media screen and (max-width: 767.9px) {
  .page_content_faq {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .heading1 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_list ul {
    max-width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_accordion .accordion__title button {
    padding: 16px 0;
    font-size: 1.6rem;
    gap: 14px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_accordion .accordion__title button .question {
    gap: 14px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_accordion .accordion__title button .question > span:first-child {
    width: 34px;
    min-width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_faq .faq_accordion .answer {
    padding: 0 18px 22px 48px;
    line-height: 1.9;
  }
}

.page-ai-advisor .page_recommend .heading1 {
  margin-bottom: 50px;
}
.page-ai-advisor .page_recommend .cont {
  background: #1668ff;
}
.page-ai-advisor .page_recommend img {
  width: 330px;
  top: -198px;
  right: 64px;
  max-width: 28%;
}
.page-ai-advisor .page_recommend li {
  background: #4385ff;
}
@media screen and (max-width: 1024px) {
  .page-ai-advisor .page_recommend img {
    top: -80px;
    right: 4px;
    width: 130px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .page_recommend img {
    max-width: unset;
  }
}
.page-ai-advisor .page_content_top {
  padding-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .page_content_top {
    padding-bottom: 100px;
  }
}
.page-ai-advisor .page_content_top .heading1 {
  margin-bottom: 40px;
}
.page-ai-advisor .page_content_top iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 10px;
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .page_content_top iframe {
    aspect-ratio: 1/2;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .page_content_top {
    padding-bottom: 100px;
  }
}
.page-ai-advisor .page_content_cases li:nth-child(1) .case_top_wrap {
  background-image: url(../img/scene1.jpg);
}
.page-ai-advisor .page_content_cases li:nth-child(2) .case_top_wrap {
  background-image: url(../img//scene2.jpg);
}
.page-ai-advisor .page_content_cases li:nth-child(3) .case_top_wrap {
  background-image: url(../img/scene3.jpg);
}
.page-ai-advisor .page_content_cases li:nth-child(4) .case_top_wrap {
  background-image: url(../img/scene4.jpg);
}
.page-ai-advisor .list_wrap {
  background: #1f1f1f;
  border-radius: 22px;
  padding: 50px 20px;
}
.page-ai-advisor .list_wrap h3 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
}
.page-ai-advisor .list_wrap ul {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px 22px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-ai-advisor .list_wrap li {
  width: 198px;
  position: relative;
  background: #2f2f2f;
  border-radius: 5px;
  padding: 35px 10px 16px;
}
.page-ai-advisor .list_wrap li::after {
  content: "";
  background-image: url(../img/list_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 17px;
  height: auto;
  aspect-ratio: 16/17;
  position: absolute;
  right: -20px;
  bottom: 103px;
}
.page-ai-advisor .list_wrap li .alex {
  font-size: 1rem;
  background: #17f7f0;
  border-radius: 2px;
  line-height: 1.2222222222;
  padding: 3px 10px;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: hsl(240, 2%, 9%);
}
.page-ai-advisor .list_wrap li img {
  width: 100%;
}
.page-ai-advisor .list_wrap li h4 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
}
.page-ai-advisor .list_wrap li span {
  color: #d9d9d9;
  display: block;
  text-align: center;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 17px;
}
.page-ai-advisor .list_wrap li:nth-child(1) img {
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}
.page-ai-advisor .list_wrap li:nth-child(5) img {
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
}
.page-ai-advisor .list_wrap li:last-child::after {
  display: none;
}
.page-ai-advisor .list_wrap p.description {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.9473684211;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap {
    border-radius: 14px;
    padding: 34px 14px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap h3 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap ul {
    width: 100%;
    gap: 30px 10px;
    margin: 0 auto 22px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap li {
    width: calc((100% - 10px) / 2);
    max-width: 220px;
    padding: 24px 10px 4px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap li::after {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap li h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap li span {
    font-size: 1.1rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page-ai-advisor .list_wrap p.description {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.page-openclaw .page_recommend .cont {
  background: #ef5050;
}
.page-openclaw .page_recommend img {
  width: 295px;
  top: -238px;
  right: 9px;
  max-width: 25%;
}
@media (max-width: 1320px) {
  .page-openclaw .page_recommend img {
    width: 150px;
    top: -100px;
  }
}
@media screen and (max-width: 1024px) {
  .page-openclaw .page_recommend img {
    top: -76px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_recommend img {
    width: 90px;
    right: 0px;
  }
}
.page-openclaw .page_recommend li {
  background: #ff5f5f;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_case {
    padding-top: 0;
  }
}
.page-openclaw .page_content_top {
  padding-bottom: 200px;
}
.page-openclaw .page_content_top .heading1 {
  margin-bottom: 40px;
}
.page-openclaw .page_content_top .openclaw_point ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 27px;
  margin-bottom: 96px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_top .openclaw_point ul {
    gap: 14px;
    margin-bottom: 50px;
  }
}
.page-openclaw .page_content_top .openclaw_point li {
  background: #fff;
  border-radius: 5px;
  padding: 38px 38px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 54px) / 3);
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_top .openclaw_point li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 22px 18px 20px;
  }
}
.page-openclaw .page_content_top .openclaw_point li .no {
  background: hsl(240, 2%, 9%);
  color: #fff;
  padding: 9px 16px 8px;
  border-radius: 100px;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 10px;
}
.page-openclaw .page_content_top .openclaw_point li h3 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.9047619048;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_top .openclaw_point li h3 {
    font-size: 1.9rem;
  }
}
.page-openclaw .page_content_top .openclaw_point li img {
  width: 300px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_top .openclaw_point li img {
    width: 240px;
    max-width: 100%;
  }
}
.page-openclaw .page_content_top .openclaw_point li p:last-child {
  font-weight: 400;
  line-height: 2;
  color: #5c5c5d;
}
.page-openclaw .page_content_top .architecture {
  margin-bottom: 20px;
}
.page-openclaw .page_content_top .architecture img {
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_top {
    padding-bottom: 120px;
  }
}
.page-openclaw .page_content_cases li:nth-child(1) .case_top_wrap {
  background-image: url(../img/scene1.jpg);
}
.page-openclaw .page_content_cases li:nth-child(2) .case_top_wrap {
  background-image: url(../img//scene2.jpg);
}
.page-openclaw .page_content_cases li:nth-child(3) .case_top_wrap {
  background-image: url(../img/scene3.jpg);
}
.page-openclaw .page_content_cases li:nth-child(4) .case_top_wrap {
  background-image: url(../img/scene4.jpg);
}
.page-openclaw .page_content_overview {
  padding-bottom: 140px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview {
    padding-bottom: 60px;
  }
}
.page-openclaw .page_content_overview .heading1 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview .heading1 {
    margin-bottom: 40px;
  }
}
.page-openclaw .page_content_overview .description {
  margin-bottom: 90px;
  font-size: 1.8rem;
  line-height: 2.2222222222;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview .description {
    margin-bottom: 50px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.page-openclaw .page_content_overview ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 67px 26px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview ul {
    gap: 40px 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page-openclaw .page_content_overview li {
  background: #1f1f1f;
  border-radius: 5px;
  width: 280px;
  position: relative;
  padding: 140px 20px 35px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview li {
    width: calc((100% - 12px) / 2);
    max-width: 220px;
    padding: 90px 14px 22px;
  }
}
.page-openclaw .page_content_overview li img {
  position: absolute;
  width: 194px;
  top: -73px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview li img {
    width: 120px;
    top: -40px;
  }
}
.page-openclaw .page_content_overview li h4 {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_overview li h4 {
    font-size: 1.5rem;
  }
}
.page-openclaw .page_content_overview li p {
  color: #d9d9d9;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.01em;
}
.page-openclaw .page_content_support {
  margin-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_support {
    margin-bottom: 120px;
  }
}
.page-openclaw .page_content_reasons .heading1 h2 span.f-s {
  font-size: 3.7rem;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_reasons .heading1 h2 span.f-s {
    font-size: 2.4rem;
  }
}
.page-openclaw .page_content_reasons li {
  gap: 25px;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_reasons li {
    gap: 14px;
  }
}
.page-openclaw .page_content_reasons li img {
  width: 39%;
}
@media screen and (max-width: 767.9px) {
  .page-openclaw .page_content_reasons li img {
    width: 80%;
    max-width: 420px;
    margin: 0 auto 14px;
    display: block;
  }
}

.page-id-287 .page_top2 .page_description {
  padding-right: 350px;
}
@media screen and (max-width: 1024px) {
  .page-id-287 .page_top2 .page_description {
    padding: 0;
  }
}

.page-totsugeki-ai .page_recommend .cont {
  background: #22b763;
}
.page-totsugeki-ai .page_recommend img {
  width: 378px;
  top: -228px;
  right: -56px;
  max-width: 32%;
}
@media screen and (max-width: 1024px) {
  .page-totsugeki-ai .page_recommend img {
    width: 200px;
    top: -70px;
    right: 6px;
    max-width: unset;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_recommend img {
    width: 130px;
    top: -70px;
    right: 6px;
  }
}
.page-totsugeki-ai .page_recommend li {
  background: #31ca73;
}
.page-totsugeki-ai .page_content_top {
  padding-bottom: 200px;
}
.page-totsugeki-ai .page_content_top .heading1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .heading1 {
    margin-bottom: 30px;
  }
}
.page-totsugeki-ai .page_content_top .about_openclaw_top {
  gap: 6px;
  margin-bottom: 27px;
}
.page-totsugeki-ai .page_content_top .about_openclaw_top .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.page-totsugeki-ai .page_content_top .about_openclaw_top p.f-s {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2222222222;
}
.page-totsugeki-ai .page_content_top .about_openclaw_top img {
  width: 46%;
  margin-right: -12px;
}
.page-totsugeki-ai .page_content_top .totsugeki_point ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 27px;
  margin-bottom: 96px;
}
.page-totsugeki-ai .page_content_top .totsugeki_point li {
  background: #fff;
  border-radius: 5px;
  padding: 38px 38px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 54px) / 3);
}
.page-totsugeki-ai .page_content_top .totsugeki_point li .no {
  background: hsl(240, 2%, 9%);
  color: #fff;
  padding: 9px 16px 8px;
  border-radius: 100px;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 10px;
}
.page-totsugeki-ai .page_content_top .totsugeki_point li h3 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.9047619048;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.page-totsugeki-ai .page_content_top .totsugeki_point li img {
  width: 286px;
  margin-bottom: 4px;
}
.page-totsugeki-ai .page_content_top .totsugeki_point li p:last-child {
  font-weight: 400;
  line-height: 2;
  color: #5c5c5d;
}
.page-totsugeki-ai .page_content_top .totsugeki_summary {
  position: relative;
}
.page-totsugeki-ai .page_content_top .totsugeki_summary h3 {
  color: #fff;
  padding: 5px 30px;
  border-radius: 100px;
  font-size: 2.1rem;
  line-height: 1.8095238095;
  font-weight: 700;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: hsl(240, 2%, 9%);
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary h3 {
    font-size: 1.8rem;
  }
}
.page-totsugeki-ai .page_content_top .totsugeki_summary ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 5px;
  background: #fff;
  padding: 65px 50px 40px;
  gap: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
}
.page-totsugeki-ai .page_content_top .totsugeki_summary ul li {
  background: #f8f8f8;
  width: 236px;
  padding: 19px 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-totsugeki-ai .page_content_top .totsugeki_summary ul p {
  color: #dd1414;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.page-totsugeki-ai .page_content_top .totsugeki_summary ul h4 {
  height: 100%;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4583333333;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary ul h4 {
    font-size: 1.8rem;
  }
}
.page-totsugeki-ai .page_content_top .totsugeki_summary ul h4 span {
  display: block;
  text-align: center;
  color: #686e7d;
  font-size: 1.3rem;
  font-weight: 400;
}
.page-totsugeki-ai .page_content_top .totsugeki_summary .note {
  font-size: 1.3rem;
  font-weight: 400;
  color: #686e7d;
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .about_openclaw_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .about_openclaw_top img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .about_openclaw_top p.f-s {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_point ul {
    gap: 14px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_point li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 22px 18px 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_point li img {
    width: 240px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_point li h3 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary h3 {
    font-size: 1.8rem;
    top: -18px;
    padding: 5px 22px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary ul {
    padding: 48px 18px 24px;
    gap: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary ul li {
    width: calc((100% - 12px) / 2);
    padding: 16px 14px 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary ul li {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary h4 {
    font-size: 1.8rem;
    line-height: 1.45;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_top .totsugeki_summary h4 span {
    font-size: 1.1rem;
  }
}
.page-totsugeki-ai .page_content_cases li .task p,
.page-totsugeki-ai .page_content_cases .page_content_cases li .result p {
  font-size: 1.6rem;
}
.page-totsugeki-ai .page_content_cases li .task {
  padding-top: 18px;
  padding-bottom: 18px;
}
.page-totsugeki-ai .page_content_cases li .result {
  padding-top: 23px;
  padding-bottom: 23px;
}
.page-totsugeki-ai .page_content_cases li .task,
.page-totsugeki-ai .page_content_cases li .result {
  padding-right: 30px;
  gap: 0;
}
.page-totsugeki-ai .page_content_cases li .task h4,
.page-totsugeki-ai .page_content_cases li .result h4 {
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
  min-width: 140px;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_cases li .task h4,
  .page-totsugeki-ai .page_content_cases li .result h4 {
    min-width: 80px !important;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_cases li .task p,
  .page-totsugeki-ai .page_content_cases li .result p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_cases li .task,
  .page-totsugeki-ai .page_content_cases li .result {
    padding-right: 18px;
    gap: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_cases li .task h4,
  .page-totsugeki-ai .page_content_cases li .result h4 {
    min-width: unset;
    width: 42px;
    min-height: 88px;
    font-size: 1.6rem;
  }
}
.page-totsugeki-ai .page_content_cases li:nth-child(1) .case_top_wrap {
  background-image: url(../img/scene5.jpg);
}
.page-totsugeki-ai .page_content_cases li:nth-child(2) .case_top_wrap {
  background-image: url(../img/scene6.jpg);
}
.page-totsugeki-ai .page_content_cases li:nth-child(3) .case_top_wrap {
  background-image: url(../img/scene7.jpg);
}
.page-totsugeki-ai .page_content_cases li:nth-child(4) .case_top_wrap {
  background-image: url(../img/scene8.jpg);
}
.page-totsugeki-ai .page_content_reasons li {
  margin-bottom: -30px;
}
@media (max-width: 1200px) {
  .page-totsugeki-ai .page_content_reasons li {
    margin-bottom: 0;
  }
}
.page-totsugeki-ai .page_content_reasons li img {
  width: 42%;
}
@media screen and (max-width: 767.9px) {
  .page-totsugeki-ai .page_content_reasons li img {
    width: 80%;
  }
}

.page_content_benefits {
  padding-top: 100px;
  padding-bottom: 140px;
}
.page_content_benefits .heading1 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .heading1 {
    margin-bottom: 40px;
  }
}
.page_content_benefits .description {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2222222222;
  margin-bottom: 90px;
}
.page_content_benefits .list_wrap ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page_content_benefits .list_wrap ul li {
  position: relative;
  background: #161617;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_content_benefits .list_wrap ul .no {
  color: #dd1414;
  font-weight: 700;
  position: absolute;
}
.page_content_benefits .list_wrap ul h4 {
  text-align: center;
  color: #fff;
}
.page_content_benefits .list_wrap ul p:last-child {
  font-weight: 400;
  color: #d9d9d9;
  text-align: center;
}
.page_content_benefits .list_wrap ul:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  margin-bottom: 40px;
}
.page_content_benefits .list_wrap ul:nth-child(1) li {
  width: calc((100% - 56px) / 2);
  position: relative;
  border-radius: 10px;
  padding: 18px 20px 55px;
}
.page_content_benefits .list_wrap ul:nth-child(1) .no {
  font-size: 4.8rem;
  top: 15px;
  right: 31px;
  line-height: 1.2708333333;
}
.page_content_benefits .list_wrap ul:nth-child(1) img {
  width: 414px;
  max-width: 100%;
}
.page_content_benefits .list_wrap ul:nth-child(1) h4 {
  font-size: 3.2rem;
  margin-bottom: 16px;
}
.page_content_benefits .list_wrap ul:nth-child(1) p:last-child {
  font-size: 1.8rem;
  line-height: 1.8888888889;
}
.page_content_benefits .list_wrap ul:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-bottom: 110px;
}
.page_content_benefits .list_wrap ul:nth-child(2) li {
  width: calc((100% - 72px) / 3);
  position: relative;
  border-radius: 7px;
  padding: 18px 20px 40px;
}
.page_content_benefits .list_wrap ul:nth-child(2) .no {
  font-size: 3.2rem;
  top: 19px;
  right: 22px;
  line-height: 1.25;
}
.page_content_benefits .list_wrap ul:nth-child(2) img {
  width: 248px;
  max-width: 100%;
  margin-bottom: 5px;
}
.page_content_benefits .list_wrap ul:nth-child(2) h4 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.page_content_benefits .list_wrap ul:nth-child(2) p:last-child {
  line-height: 1.75;
}
.page_content_benefits .special {
  border-radius: 20px;
  overflow: hidden;
  background: #c50f17;
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special {
    border-radius: 14px;
    padding: 40px 0 52px;
  }
}
.page_content_benefits .special::before {
  content: "";
  background-image: url(../img/special_bg.svg);
  background-size: cover;
  mix-blend-mode: multiply;
  width: calc(100% - 85px);
  height: auto;
  aspect-ratio: 1115/505;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.page_content_benefits .special::after {
  content: "";
  background-image: url(../img/special_bg.svg);
  background-size: cover;
  mix-blend-mode: multiply;
  width: calc(100% - 85px);
  height: auto;
  aspect-ratio: 1115/505;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
.page_content_benefits .special .alex {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.page_content_benefits .special h2 {
  font-size: 5.2rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special h2 {
    font-size: 3rem;
  }
}
.page_content_benefits .special h2 span {
  font-size: 6.5rem;
  color: #ffed37;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special h2 span {
    font-size: 4.2rem;
  }
}
.page_content_benefits .special h3 {
  background: hsl(240, 2%, 9%);
  padding: 16px 20px;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.9047619048;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special h3 {
    font-size: 1.6rem;
    line-height: 1.7;
    padding: 14px 14px;
  }
}
.page_content_benefits .special h3 span {
  color: #17f7f0;
}
.page_content_benefits .special .description {
  text-align: center;
  font-weight: 700;
  padding: 0 20px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .description {
    margin-bottom: 34px;
    text-align: left;
  }
}
.page_content_benefits .special .special_list ul {
  max-width: 1100px;
  margin: 0 auto 60px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .special_list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    width: calc(100% - 28px);
    margin-bottom: 30px;
  }
}
.page_content_benefits .special .special_list ul li {
  border-right: 1px dashed #fff;
  width: 25%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
}
.page_content_benefits .special .special_list ul li * {
  text-align: center;
}
.page_content_benefits .special .special_list ul li:first-child .special_description span {
  font-size: 1.8rem;
}
.page_content_benefits .special .special_list ul li:last-child {
  border-right: none;
}
.page_content_benefits .special .special_list ul li:last-child h4 {
  margin-bottom: 22px;
}
.page_content_benefits .special .special_list ul li:last-child .special_description {
  font-size: 2.1rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .special_list ul li {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    padding: 0 0 14px;
  }
  .page_content_benefits .special .special_list ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .page_content_benefits .special .special_list ul li h4 {
    margin-bottom: 14px;
  }
}
.page_content_benefits .special .special_list ul li h4 {
  background: hsl(240, 2%, 9%);
  color: #fff;
  padding: 0 36px;
  line-height: 2.3333333333;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 25px;
}
.page_content_benefits .special .special_list ul li .special_description {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
}
.page_content_benefits .special .special_list ul li .special_description span {
  display: inline-block;
  margin-left: 3px;
  font-size: 2.8rem;
}
.page_content_benefits .special .special_list ul li .note {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e2e2e2;
  margin-top: 15px;
  margin-bottom: 5px;
}
.page_content_benefits .special .special_guarantee {
  width: calc(100% - 108px);
  margin: 0 auto;
  background: #a40007;
  padding: 32px 52px;
  gap: 90px;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .special_guarantee {
    width: calc(100% - 28px);
    padding: 22px 18px 22px 30px;
    gap: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page_content_benefits .special .special_guarantee h4 {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .special_guarantee h4 {
    font-size: 1.8rem;
  }
}
.page_content_benefits .special .special_guarantee h4 span {
  display: block;
  font-size: 1.6rem;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .special_guarantee h4 span {
    font-size: 1.3rem;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }
}
.page_content_benefits .special .special_guarantee ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.page_content_benefits .special .special_guarantee ul li {
  list-style: disc;
  list-style-position: outside;
  font-weight: 700;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .special .special_guarantee ul li {
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .heading1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .description {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 50px;
    padding: 0 8px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(1) li {
    width: 100%;
    border-radius: 10px;
    padding: 18px 16px 22px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(1) .no {
    font-size: 3.6rem;
    right: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(1) img {
    width: 200px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(1) h4 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(1) p:last-child {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(2) li {
    width: 100%;
    border-radius: 8px;
    padding: 18px 16px 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(2) .no {
    font-size: 2.8rem;
    right: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(2) img {
    width: 220px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_benefits .list_wrap ul:nth-child(2) h4 {
    font-size: 2rem;
  }
}

.about_openclaw {
  padding-bottom: 184px;
}
@media screen and (max-width: 767.9px) {
  .about_openclaw {
    padding-bottom: 120px;
  }
}
.about_openclaw .about_openclaw_top {
  margin-right: 64px;
  margin-bottom: 110px;
  gap: 40px;
}
.about_openclaw .about_openclaw_top .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.about_openclaw .about_openclaw_top .heading1 {
  bottom: 50px;
}
.about_openclaw .about_openclaw_top p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2222222222;
}
.about_openclaw .about_openclaw_top p + p {
  margin-top: 20px;
}
.about_openclaw .about_openclaw_top img {
  width: 38%;
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .about_openclaw_top {
    margin-right: 0;
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .about_openclaw_top p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .about_openclaw_top img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.about_openclaw .openclaw_point ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 27px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .openclaw_point ul {
    gap: 14px;
    margin-bottom: 40px;
  }
}
.about_openclaw .openclaw_point li {
  background: #fff;
  border-radius: 5px;
  padding: 38px 38px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 54px) / 3);
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .openclaw_point li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 22px 18px 20px;
  }
}
.about_openclaw .openclaw_point li .no {
  background: hsl(240, 2%, 9%);
  color: #fff;
  padding: 9px 16px 8px;
  border-radius: 100px;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 10px;
}
.about_openclaw .openclaw_point li h3 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.9047619048;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .openclaw_point li h3 {
    font-size: 1.9rem;
  }
}
.about_openclaw .openclaw_point li img {
  width: 300px;
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .openclaw_point li img {
    width: 240px;
    max-width: 100%;
  }
}
.about_openclaw .openclaw_point li p:last-child {
  font-weight: 400;
  line-height: 2;
  color: #5c5c5d;
}
.about_openclaw .comment {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .about_openclaw .comment {
    font-size: 2rem;
    line-height: 1.6;
    padding: 0 8px;
  }
}

.page_content_our_story {
  padding: 90px 0 70px;
  overflow: hidden;
}
.page_content_our_story .heading2 {
  margin-bottom: 60px;
}
.page_content_our_story .our_story_content1 {
  max-width: 1000px;
  margin: 0 auto 92px;
  position: relative;
}
.page_content_our_story .our_story_content1 h3 {
  padding: 70px 220px 60px 90px;
  background: #fff;
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.675;
  text-underline-offset: 10px;
  text-decoration-thickness: from-font;
}
.page_content_our_story .our_story_content1 h3::before {
  content: "";
  width: 28px;
  height: auto;
  aspect-ratio: 28/21;
  position: absolute;
  top: 34px;
  left: 46px;
  background-image: url(../img/colon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.page_content_our_story .our_story_content1 .our_story_content1_detail {
  padding: 30px 220px 38px 90px;
  background: #ef5050;
  position: relative;
}
.page_content_our_story .our_story_content1 .our_story_content1_detail::after {
  content: "";
  width: 40px;
  height: 16px;
  background: #ef5050;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
}
.page_content_our_story .our_story_content1 .our_story_content1_detail p {
  color: #fff;
  font-weight: 700;
}
.page_content_our_story .our_story_content1 .our_story_content1_detail p:first-child {
  line-height: 2.125;
  margin-bottom: 18px;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 .our_story_content1_detail p:first-child {
    line-height: 2;
  }
}
.page_content_our_story .our_story_content1 .our_story_content1_detail p:last-child {
  font-size: 2rem;
  line-height: 1.9;
}
.page_content_our_story .our_story_content1 img {
  position: absolute;
  width: 323px;
  bottom: 0;
  right: -84px;
}
.page_content_our_story .our_story_content2 {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  padding: 48px 0;
}
.page_content_our_story .our_story_content2 h3 {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: hsl(240, 2%, 9%);
  border-radius: 100px;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.8095238095;
  padding: 5px 30px;
}
.page_content_our_story .our_story_content2 ul {
  width: 95%;
  max-width: 1070px;
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
}
.page_content_our_story .our_story_content2 li {
  width: calc((100% - 72px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_content_our_story .our_story_content2 li img {
  width: 172px;
  display: block;
  margin: 0 auto;
}
.page_content_our_story .our_story_content2 li .detail {
  background: hsl(240, 2%, 9%);
  padding: 20px 22px;
  height: 100%;
}
.page_content_our_story .our_story_content2 li .name {
  border-bottom: solid 1px #e7e7e7;
  padding-bottom: 10px;
  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;
  gap: 11px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 li .name {
    font-size: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
}
.page_content_our_story .our_story_content2 li .name .red {
  font-size: 1.3rem;
}
.page_content_our_story .our_story_content2 li .description {
  font-size: 1.3rem;
  font-weight: 400;
  color: #e7e7e7;
  line-height: 1.6153846154;
  padding: 0 6px;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 li .description {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .heading2 {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 h3 {
    padding: 32px 32px 40px;
    font-size: 2.1rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 h3::before {
    top: 10px;
    left: 10px;
    width: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 .our_story_content1_detail {
    padding: 18px 20px 22px 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 .our_story_content1_detail p:last-child {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content1 img {
    width: 100px;
    right: 10px;
    bottom: -10px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 {
    padding: 34px 0 28px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 h3 {
    top: -18px;
    font-size: 1.7rem;
    padding: 5px 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 ul {
    width: calc(100% - 40px);
    gap: 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 li {
    width: calc(50% - 7px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 li img {
    width: 88px;
    margin: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_story .our_story_content2 li .detail {
    padding: 14px 14px;
  }
}

.page_content_our_philosophy {
  padding-bottom: 180px;
}
.page_content_our_philosophy .heading2 {
  margin-bottom: 40px;
}
.page_content_our_philosophy .heading2 p,
.page_content_our_philosophy .heading2 h2 {
  text-align: center;
}
.page_content_our_philosophy .philosophy_lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.2222222222;
  font-weight: 700;
  margin-bottom: 80px;
}
.page_content_our_philosophy .philosophy_content1 {
  gap: 36px;
  margin-bottom: 106px;
}
.page_content_our_philosophy .philosophy_content1 .philosophy_content1_item {
  width: calc((100% - 36px) / 2);
  position: relative;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item {
    width: 100%;
  }
}
.page_content_our_philosophy .philosophy_content1 .philosophy_content1_item h3 {
  position: absolute;
  text-align: center;
  min-width: 240px;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.8095238095;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page_content_our_philosophy .philosophy_content1 .philosophy_content1_item div {
  background: #fff;
  padding: 65px 20px 35px;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item div {
    padding: 40px 16px 30px;
  }
}
.page_content_our_philosophy .philosophy_content1 .philosophy_content1_item h4 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.page_content_our_philosophy .philosophy_content1 .philosophy_content1_item p {
  color: #686e7d;
  text-align: center;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item p {
    text-align: left;
  }
}
.page_content_our_philosophy .philosophy_content1 ul {
  padding: 28px 42px;
  gap: 11px 10px;
}
.page_content_our_philosophy .philosophy_content1 ul li {
  background: #fff;
  padding: 12px 14px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 700;
  color: #5c5c5d;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 ul li {
    width: 100%;
    text-align: center;
  }
}
.page_content_our_philosophy .philosophy_content1 .item1 {
  border: solid 3px #00dfe7;
}
.page_content_our_philosophy .philosophy_content1 .item1 h3 {
  background: #00dfe7;
}
.page_content_our_philosophy .philosophy_content1 .item1 ul {
  background: #e0feff;
}
.page_content_our_philosophy .philosophy_content1 .item2 {
  border: solid 3px #db111a;
}
.page_content_our_philosophy .philosophy_content1 .item2 h3 {
  background: #db111a;
}
.page_content_our_philosophy .philosophy_content1 .item2 p {
  color: #827575;
}
.page_content_our_philosophy .philosophy_content1 .item2 ul {
  background: #ffeaea;
}
.page_content_our_philosophy .philosophy_content1 .item2 ul li {
  color: #634A4A;
}
.page_content_our_philosophy .philosophy_content2 {
  position: relative;
  background: #fefefe;
  border-radius: 10px;
  padding: 68px 50px 52px;
  -webkit-box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
}
.page_content_our_philosophy .philosophy_content2 h3 {
  padding: 5px 30px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.8095238095;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: hsl(240, 2%, 9%);
  border-radius: 100px;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.page_content_our_philosophy .philosophy_content2 .flex-top {
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_content_our_philosophy .philosophy_content2 .flex-top div {
  width: 350px;
}
.page_content_our_philosophy .philosophy_content2 .flex-top div:last-child .eduction span {
  display: inline-block;
  margin: 0 9px 0 12px;
  font-size: 7rem;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  line-height: 1;
}
.page_content_our_philosophy .philosophy_content2 .flex-top h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px hsl(240, 2%, 9%);
  padding: 4px 10px;
  margin: 0 auto 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top h4 {
    margin-bottom: 10px;
  }
}
.page_content_our_philosophy .philosophy_content2 .flex-top .eduction {
  text-align: center;
  color: #dd1414;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  min-height: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top .eduction {
    font-size: 7rem;
    min-height: unset;
    margin-bottom: 10px;
  }
}
.page_content_our_philosophy .philosophy_content2 .flex-top .eduction span {
  font-size: 5rem;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top .eduction span {
    font-size: 3rem;
  }
}
.page_content_our_philosophy .philosophy_content2 .flex-top .red {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #dd1414;
  line-height: 1.3571428571;
  margin-bottom: 19px;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top .red {
    font-size: 2rem;
  }
}
.page_content_our_philosophy .philosophy_content2 .flex-top .description {
  background: #f5f5f5;
  padding: 15px 20px 17px;
  font-weight: 700;
  line-height: 1.625;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top .description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .heading2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_lead {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 8px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item h3 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item h4 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item p br {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content1 .philosophy_content1_item ul {
    gap: 8px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 {
    padding: 22px 16px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top {
    gap: 12px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_our_philosophy .philosophy_content2 .flex-top > div {
    width: 100%;
    padding: 16px 14px;
  }
}

.page_content_routine {
  padding: 120px 0 110px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine {
    padding: 60px 0;
  }
}
.page_content_routine .heading1 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine .heading1 {
    margin-bottom: 30px;
  }
}
.page_content_routine .description {
  margin-bottom: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2222222222;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine .description {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 34px;
    padding: 0 8px;
  }
}
.page_content_routine ul {
  max-width: 1100px;
  margin: 0 auto 67px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine ul {
    width: calc(100% - 28px);
    margin: 0 auto 34px;
    border-radius: 12px;
  }
}
.page_content_routine li {
  margin-bottom: 102px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li {
    margin-bottom: 58px;
  }
}
.page_content_routine li::after {
  content: "";
  width: 75px;
  height: auto;
  aspect-ratio: 75/21.5;
  background-image: url(../img/routine_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -67.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li::after {
    width: 58px;
    bottom: -40px;
  }
}
.page_content_routine li:last-child {
  margin-bottom: 0;
}
.page_content_routine li:last-child::after {
  display: none;
}
.page_content_routine li .inner {
  overflow: hidden;
  border-radius: 10px;
  border: solid 2px #2c2d32;
}
.page_content_routine li .routine_body {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.page_content_routine li.is-open .routine_body {
  max-height: 3000px;
}
.page_content_routine li.is-open .routine_heading .accordion_icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.page_content_routine li .routine_heading {
  position: relative;
  cursor: pointer;
  background: #2c2d32;
  padding: 20px 98px 20px 50px;
  gap: 0 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_heading {
    padding: 18px 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.page_content_routine li .routine_heading .accordion_icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  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;
  width: 23px;
  height: 23px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_heading .accordion_icon {
    width: 15px;
    height: 15px;
    right: 20px;
  }
}
.page_content_routine li .routine_heading .accordion_icon::before, .page_content_routine li .routine_heading .accordion_icon::after {
  content: "";
  position: absolute;
  background: #e2e2e2;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.page_content_routine li .routine_heading .accordion_icon::before {
  width: 100%;
  height: 3px;
}
.page_content_routine li .routine_heading .accordion_icon::after {
  width: 3px;
  height: 100%;
}
.page_content_routine li .routine_heading h3 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_heading h3 {
    font-size: 1.7rem;
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page_content_routine li .routine_heading h3 span {
  background: #dd1414;
  padding: 4px 20px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2777777778;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_heading h3 span {
    padding: 3px 12px;
    font-size: 1.3rem;
    margin-top: 3px;
  }
}
.page_content_routine li .routine_heading p {
  color: #c5c6ca;
  border: solid 2px #c5c6ca;
  padding: 4px 26px;
  font-weight: 700;
  border-radius: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_heading p {
    font-size: 1.2rem;
    padding: 3px 12px;
  }
}
.page_content_routine li .routine_content {
  background: #fff;
  padding: 30px 37px 42px 42px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content {
    padding: 18px 14px 18px;
  }
}
.page_content_routine li .routine_content .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}
.page_content_routine li .routine_content .character {
  width: 122px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .character {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
.page_content_routine li .routine_content .character p {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .character p {
    text-align: left;
  }
}
.page_content_routine li .routine_content .character p span {
  font-size: 1rem;
  display: block;
  line-height: 1.1;
}
.page_content_routine li .routine_content .img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fdf9f3;
  overflow: hidden;
  padding-top: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .img {
    width: 64px;
    padding-top: 6px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.page_content_routine li .routine_content .img img {
  width: 109px;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .img img {
    width: 58px;
  }
}
.page_content_routine li .routine_content .fukidashi {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: 38px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .fukidashi {
    margin-right: 0;
  }
}
.page_content_routine li .routine_content .fukidashi p {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 142px;
  padding: 26px 40px;
  position: relative;
  background: #fdf9f3;
  border-radius: 10px;
  font-weight: 400;
  line-height: 1.875;
  color: #2e2e33;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .fukidashi p {
    min-height: unset;
    padding: 16px 16px;
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.page_content_routine li .routine_content .fukidashi p::before {
  content: "";
  width: 13px;
  height: 15px;
  background: #fdf9f3;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  top: 20px;
  left: -12px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .fukidashi p::before {
    top: -12px;
    left: 20px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}
.page_content_routine li .routine_content .fukidashi p img {
  width: 43px;
}
.page_content_routine li .routine_content .comment2 {
  margin-top: 14px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .comment2 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .comment2 .character {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.page_content_routine li .routine_content .comment2 .img {
  background-color: #f5f5f5;
  padding-top: 0;
}
.page_content_routine li .routine_content .comment2 .img img {
  width: 95px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .comment2 .img img {
    width: 52px;
  }
}
.page_content_routine li .routine_content .comment2 .fukidashi {
  margin-left: 38px;
  margin-right: 0;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .comment2 .fukidashi {
    margin-left: 0;
  }
}
.page_content_routine li .routine_content .comment2 .fukidashi p {
  background: #f5f5f5;
  font-weight: 700;
}
.page_content_routine li .routine_content .comment2 .fukidashi p::before {
  background: #f5f5f5;
  left: auto;
  right: -12px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_content .comment2 .fukidashi p::before {
    left: auto;
    right: 20px;
    top: -12px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}
.page_content_routine li .routine_bottom {
  background: #5765f2;
  padding: 10px 26px;
  gap: 14px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 12px 16px 12px 12px;
  }
}
.page_content_routine li .routine_bottom p {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_bottom p {
    font-size: 1.6rem;
  }
}
.page_content_routine li .routine_bottom p span {
  font-weight: 700;
}
.page_content_routine li .routine_bottom img {
  display: block;
  min-height: 66px;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine li .routine_bottom img {
    width: 34px;
  }
}
.page_content_routine .routine_lead {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.9285714286;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767.9px) {
  .page_content_routine .routine_lead {
    font-size: 2rem;
    line-height: 1.6;
    padding: 0 8px;
  }
}

.page_content_totsugeki_timeline {
  padding-top: 100px;
  padding-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}
.page_content_totsugeki_timeline .heading1 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .heading1 {
    margin-bottom: 30px;
  }
}
.page_content_totsugeki_timeline .description {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2222222222;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .description {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 0 8px;
  }
}
.page_content_totsugeki_timeline .totsugeki_timeline_tabs {
  max-width: 1100px;
  margin: 0 auto;
}
.page_content_totsugeki_timeline .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-list {
    gap: 10px;
  }
}
.page_content_totsugeki_timeline .tab-list-item {
  cursor: pointer;
  width: calc(50% - 6px);
  padding: 22px 20px 22px 40px;
  border-radius: 20px 20px 0 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-list-item {
    width: calc(50% - 5px);
    border-radius: 14px 14px 0 0;
    padding: 18px 16px;
  }
}
.page_content_totsugeki_timeline .tab-list-item * {
  color: #fff;
}
.page_content_totsugeki_timeline .tab-list-item .flex {
  gap: 25px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-list-item .flex {
    gap: 5px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page_content_totsugeki_timeline .tab-list-item .no {
  font-size: 3.7rem;
  background: #fff;
  font-weight: 700;
  width: 60px;
  height: 63px;
  display: grid;
  place-content: center;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-list-item .no {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}
.page_content_totsugeki_timeline .tab-list-item p {
  font-size: 1.3rem;
  margin-bottom: 2px;
  font-weight: 700;
}
.page_content_totsugeki_timeline .tab-list-item h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-list-item h3 {
    font-size: 1.6rem;
  }
}
.page_content_totsugeki_timeline .tab-list-item span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5c5c5d;
  display: none;
}
.page_content_totsugeki_timeline .tab-list-item div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.page_content_totsugeki_timeline .tab-list-item.patternA {
  background: #dd1414;
}
.page_content_totsugeki_timeline .tab-list-item.patternA .no {
  color: #dd1414;
}
.page_content_totsugeki_timeline .tab-list-item.patternA::before {
  content: "";
  width: calc(100% + 12px);
  height: 3px;
  background: #00dfe7;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page_content_totsugeki_timeline .tab-list-item.patternB {
  background: #00dfe7;
}
.page_content_totsugeki_timeline .tab-list-item.patternB .no {
  color: #00dfe7;
}
.page_content_totsugeki_timeline .tab-list-item.patternB::before {
  content: "";
  width: calc(100% + 12px);
  height: 3px;
  background: #dd1414;
  position: absolute;
  bottom: 0;
  right: 0;
}
.page_content_totsugeki_timeline .tab-list-item.active {
  background: #fff;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-list-item.active {
    border-width: 2px;
    border-bottom: none;
  }
}
.page_content_totsugeki_timeline .tab-list-item.active span {
  display: block;
}
.page_content_totsugeki_timeline .tab-list-item.active .no {
  color: #fff;
}
.page_content_totsugeki_timeline .tab-list-item.active div p {
  color: hsl(240, 2%, 9%);
}
.page_content_totsugeki_timeline .tab-list-item.active.patternA {
  border: solid 3px #dd1414;
  border-bottom: none;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternA::before {
  content: none;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternA .no {
  background: #dd1414;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternA h3 {
  color: #dd1414;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternB {
  border: solid 3px #00dfe7;
  border-bottom: none;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternB::before {
  content: none;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternB .no {
  background: #00dfe7;
}
.page_content_totsugeki_timeline .tab-list-item.active.patternB h3 {
  color: #00dfe7;
}
.page_content_totsugeki_timeline .tab-contents-item {
  display: none;
  padding: 56px 44px 43px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item {
    padding: 40px 14px 18px;
    border-radius: 0 0 12px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .inner {
  width: calc(50% - 20px);
  background: #f5f5f5;
  padding: 60px 45px 45px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item .inner {
    width: 100%;
    padding: 44px 14px 18px;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .tab-contents-item_title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -19px;
  border-radius: 100px;
  background: hsl(240, 2%, 9%);
  color: #fff;
  max-width: 90%;
  width: 284px;
  font-size: 2.1rem;
  line-height: 1.8095238095;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item .tab-contents-item_title {
    width: 220px;
    font-size: 1.6rem;
    top: -16px;
  }
}
.page_content_totsugeki_timeline .tab-contents-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 392/221;
  border-radius: 5px;
  display: block;
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item img {
    margin-bottom: 30px;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top {
  gap: 18px;
  padding-bottom: 30px;
  position: relative;
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top::before {
  content: "";
  width: 1px;
  height: 100%;
  border-left: dashed 1px #f2352f;
  position: absolute;
  top: 0;
  left: 41px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item .flex-top::before {
    left: 20px;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top:last-child {
  padding-bottom: 0;
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top:last-child::before {
  content: none;
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top .time {
  color: #fff;
  background: #dd1414;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2777777778;
  padding: 4px 10px;
  min-width: 81px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item .flex-top .time {
    min-width: 64px;
    font-size: 1.6rem;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item .flex-top div {
    padding-left: 40px;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top div h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .page_content_totsugeki_timeline .tab-contents-item .flex-top div h4 {
    font-size: 1.6rem;
  }
}
.page_content_totsugeki_timeline .tab-contents-item .flex-top div p {
  color: #5c5c5d;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
}
.page_content_totsugeki_timeline .tab-contents-item.patternA {
  border: solid 3px #dd1414;
  border-top: none;
}
.page_content_totsugeki_timeline .tab-contents-item.patternB {
  border: solid 3px #00dfe7;
  border-top: none;
}
.page_content_totsugeki_timeline .tab-contents-item.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_content_totsugeki_timeline .tab-contents-item.patternB .flex-top::before {
  border-left: dashed 1px #00dfe7;
}
.page_content_totsugeki_timeline .tab-contents-item.patternB .flex-top .time {
  background: #00dfe7;
}

.loop-wrap {
  position: absolute;
  left: 0;
}

/*流れるテキスト*/
.loop-wrap {
  width: 100%;
  overflow: hidden;
  left: 0;
  z-index: 1;
}
.loop-wrap div,
.loop-wrap p {
  width: auto;
  height: auto;
}
.loop-wrap .loop-wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -220px;
}
.loop-wrap p {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 30px;
  font-size: 15rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
}
.loop-wrap p:nth-child(1) {
  -webkit-animation: MoveLeft 120s -60s infinite linear;
          animation: MoveLeft 120s -60s infinite linear;
}
.loop-wrap p:nth-child(2) {
  -webkit-animation: MoveLeft2 120s infinite linear;
          animation: MoveLeft2 120s infinite linear;
}

/*流れるテキスト*/
@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.page_top_company {
  background: #fff;
  position: sticky;
  z-index: -1;
  top: 0;
  left: 0;
  padding: 200px 0 160px;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page_top_company {
    padding: 160px 0 100px;
  }
}
.page_top_company .sub_title {
  font-size: 5.2rem;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page_top_company .sub_title {
    font-size: 3rem;
  }
}
.page_top_company .page_title {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .page_top_company .page_title {
    font-size: 1.4rem;
  }
}

.page_company {
  background: #f7f7f7;
}

.section_concept {
  position: relative;
  z-index: 2;
  padding-bottom: 260px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .section_concept {
    padding-bottom: 100px;
  }
}
.section_concept .bg {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 80px 80px 0 0;
  background: hsl(240, 2%, 9%);
  width: min(var(--concept-width, 90%), 100%);
  max-width: calc(100vw - env(safe-area-inset-left) - env(safe-area-inset-right));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .section_concept .bg {
    border-radius: 40px 40px 0 0;
    max-width: 100%;
  }
}
.section_concept .bg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../img/reasons_bg1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  width: 636px;
  height: auto;
  aspect-ratio: 636/682;
}
@media screen and (max-width: 767.9px) {
  .section_concept .bg::before {
    width: min(260px, 58vw);
    right: -4%;
  }
}
.section_concept .bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/concept_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  width: 882px;
  height: auto;
  aspect-ratio: 882/1341;
}
@media screen and (max-width: 767.9px) {
  .section_concept .bg::after {
    width: min(340px, 92vw);
    left: -12%;
  }
}
.section_concept * {
  color: #fff;
  text-align: center;
}
.section_concept .cont {
  padding-top: 200px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .section_concept .cont {
    padding-top: 60px;
  }
}
.section_concept .heading_wrap {
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .heading_wrap {
    margin-bottom: 20px;
  }
}
.section_concept .heading_wrap p {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .heading_wrap p {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }
}
.section_concept .heading_wrap h2 {
  font-size: 7.9rem;
  font-weight: 700;
  line-height: 1.2503160556;
}
@media screen and (max-width: 767.9px) {
  .section_concept .heading_wrap h2 {
    line-height: 1.22;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .section_concept .heading_wrap h2 {
    font-size: 2.4rem;
  }
}
.section_concept .heading_wrap h2 span {
  font-size: 10rem;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .section_concept .heading_wrap h2 span {
    font-size: 3rem;
  }
}
.section_concept .description {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778;
  color: #bababa;
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .description {
    font-size: 1.4rem;
    line-height: 1.8125;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 4px;
    margin-inline: 10px;
  }
}
.section_concept .flex-top {
  margin: 0 30px 100px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .flex-top {
    margin: 0 12px 30px;
  }
}
.section_concept .flex-top .item {
  width: 50%;
  padding: 20px 30px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .flex-top .item {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: 20px 8px;
  }
}
.section_concept .flex-top h3 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .flex-top h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.section_concept .flex-top p {
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .section_concept .flex-top p {
    font-size: 2rem;
    line-height: 1.42;
  }
}
.section_concept .flex-top .item:first-child {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 767.9px) {
  .section_concept .flex-top .item:first-child {
    border-right: none;
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.35);
  }
}
.section_concept img {
  display: block;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .section_concept img {
    margin-bottom: 48px;
  }
}
.section_concept .concept_lead {
  font-size: 3.2rem;
  line-height: 1.6875;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767.9px) {
  .section_concept .concept_lead {
    font-size: 1.8rem;
    line-height: 1.52;
    padding: 0 8px;
  }
}
.section_concept .loop-wrap {
  bottom: 41px;
}
@media screen and (max-width: 767.9px) {
  .section_concept .loop-wrap {
    bottom: 28px;
  }
}
@media screen and (max-width: 767.9px) {
  .section_concept .loop-wrap .loop-wrap__inner {
    margin-left: -96px;
  }
}
.section_concept .loop-wrap p {
  color: #fff;
  opacity: 0.18;
}
@media screen and (max-width: 767.9px) {
  .section_concept .loop-wrap p {
    font-size: 7rem;
    line-height: 1.08;
    padding-right: 20px;
    letter-spacing: 0;
  }
}

.heading3 p {
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .heading3 p {
    font-size: 3rem;
  }
}
.heading3 p::first-letter {
  color: #dd1414;
}
.heading3 h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.125;
}
@media screen and (max-width: 767.9px) {
  .heading3 h2 {
    font-size: 1.4rme;
  }
}

.section_message {
  position: relative;
  padding-top: 150px;
  padding-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .section_message {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.section_message .cont {
  max-width: 1100px;
}
.section_message .heading3 {
  margin-bottom: 25px;
  min-width: 300px;
}
.section_message .section_message_name {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.0952380952;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .section_message .section_message_name {
    font-size: 1.6rem;
  }
}
.section_message .section_message_content {
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .section_message .section_message_content {
    gap: 30px;
  }
}
.section_message .section_message_content p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-top: 52px;
  font-weight: 400;
  line-height: 2.25;
}
@media screen and (max-width: 767.9px) {
  .section_message .section_message_content p {
    margin-top: 30px;
    line-height: 1.8;
  }
}
.section_message .section_message_content img {
  width: 42.6%;
  height: auto;
  aspect-ratio: 469/583;
}
@media screen and (max-width: 767.9px) {
  .section_message .section_message_content img {
    width: 100%;
    max-width: 400px;
  }
}

.section_media_speak {
  padding: 120px 0 90px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .section_media_speak {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.section_media_speak .cont {
  max-width: 1100px;
  gap: 50px 118px;
}
.section_media_speak .heading3 {
  min-width: 300px;
}
.section_media_speak ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .section_media_speak ul {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.section_media_speak ul li {
  padding: 25px 0;
  border-bottom: solid 1px #e2e2e2;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .section_media_speak ul li {
    font-size: 1.5rem;
    padding: 20px 0;
  }
}
.section_media_speak ul li span {
  font-size: 1.5rem;
  font-weight: 400;
  display: inline-block;
  margin-left: 2px;
}
@media screen and (max-width: 767.9px) {
  .section_media_speak ul li span {
    font-size: 1.3rem;
  }
}
.section_media_speak ul li:first-child {
  padding-top: 0;
}

.section_profile {
  padding: 150px 0 180px;
}
@media screen and (max-width: 767.9px) {
  .section_profile {
    padding: 60px 0;
  }
}
.section_profile .cont {
  max-width: 1100px;
  gap: 40px 118px;
}
.section_profile .heading3 {
  min-width: 300px;
}
.section_profile table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border-collapse: collapse;
}
@media screen and (max-width: 767.9px) {
  .section_profile table {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.section_profile table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .section_profile table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
    border-bottom: solid 1px hsl(240, 2%, 9%);
  }
}
.section_profile table tr:first-child th,
.section_profile table tr:first-child td {
  padding-top: 0;
}
.section_profile table th,
.section_profile table td {
  padding: 24px 0;
  line-height: 1.7777777778;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .section_profile table th,
  .section_profile table td {
    font-size: 1.5rem;
    padding: 0;
  }
}
.section_profile table th {
  min-width: 120px;
  border-bottom: solid 1px hsl(240, 2%, 9%);
  font-weight: 700;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .section_profile table th {
    border: none;
  }
}
.section_profile table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border-bottom: solid 1px #e2e2e2;
  font-weight: 400;
  padding-left: 80px;
}
@media screen and (max-width: 767.9px) {
  .section_profile table td {
    border-bottom: none;
    padding-left: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .post_list {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.blog_card {
  max-width: 400px;
}
@media screen and (max-width: 767.9px) {
  .blog_card {
    width: 100% !important;
  }
}
.blog_card .img {
  width: 100%;
  aspect-ratio: 382/215;
  height: auto;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}
.blog_card .img img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.blog_card .categories {
  gap: 4px 6px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card .post_category,
.blog_card .job_category {
  gap: 2px 6px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .post_category,
  .blog_card .job_category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card .post_category p,
.blog_card .job_category p {
  color: #c0c0c0;
  font-size: 1rem;
  line-height: 1;
  padding: 6px 7px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .blog_card .post_category p,
  .blog_card .job_category p {
    padding: 4px 5px;
  }
}
.blog_card .post_category p {
  background: rgba(219, 17, 26, 0.8);
}
.blog_card .job_category p {
  background: #5c5c5d;
}
.blog_card h3 {
  font-size: 1.5rem;
  line-height: 1.7133333333;
  font-weight: 700;
  margin-bottom: 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .blog_card h3 {
    margin-bottom: 10px;
  }
}
.blog_card h3 .underline-text .underline-line {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1.5px;
  padding-bottom: 4px;
  -webkit-transition: background-size 0.35s ease var(--line-delay, 0s);
  transition: background-size 0.35s ease var(--line-delay, 0s);
}
@media screen and (max-width: 767.9px) {
  .blog_card .post_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card .post_meta time {
  color: #c0c0c0;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 20px;
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .blog_card .post_meta time {
    font-size: 1rem;
  }
}
.blog_card .post_meta img {
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: 10px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .post_meta img {
    width: 30px;
  }
}
.blog_card .post_meta .author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c0c0c0;
}
@media screen and (max-width: 767.9px) {
  .blog_card .post_meta .author-name {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767.9px) {
  .blog_card .post-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card a:hover {
  opacity: 1;
}
.blog_card a:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog_card a:hover h3 {
  color: #db111a;
}
.blog_card a:hover h3 .underline-text .underline-line {
  background-size: 100% 1.5px;
}

.case_card a {
  background: #fff;
  border-radius: 11px;
  padding: 22px 24px 28px;
  display: block;
  -webkit-box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.06);
}
.case_card .company_name {
  background: #db111a;
  color: #fff;
  padding: 10px 25px 10px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
  max-width: 100%;
  margin-left: -24px;
  margin-top: -20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
}
.case_card h3 {
  font-size: 1.6rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.case_card .case_excerpt {
  color: #a0a0a0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
}

.post_tag {
  gap: 4px;
}
@media screen and (max-width: 767.9px) {
  .post_tag {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.post_tag p {
  font-size: 0.9rem;
  background: #fff;
  border-radius: 100px;
  padding: 7px 16px;
  border: solid 1px #e7e7e7;
  color: #5c5c5d;
  line-height: 1;
}

.page_top_media {
  background: #000;
  padding-top: 200px;
  padding-bottom: 170px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_top_media {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
.page_top_media .cont {
  position: relative;
}
.page_top_media .sub_title {
  color: #fff;
  font-size: 5.2rem;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .sub_title {
    font-size: 3rem;
  }
}
.page_top_media .page_title {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 76px;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .page_title {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
}
.page_top_media::before {
  content: "";
  width: 884px;
  height: auto;
  aspect-ratio: 884/960;
  background-image: url(../img/media_top_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .page_top_media::before {
    width: 500px;
  }
}
.page_top_media .media_top_pickup {
  gap: 50px;
}
.page_top_media .media_top_pickup .blog_card {
  width: calc((100% - 50px) / 2);
  max-width: unset;
  position: relative;
}
.page_top_media .media_top_pickup .blog_card .pickup_badge {
  position: absolute;
  z-index: 4;
  color: #fff;
  background: #0FDCD5;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.0555555556;
  padding: 0 54px;
  border-radius: 100px;
  top: -19px;
  right: 17px;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .media_top_pickup .blog_card .pickup_badge {
    font-size: 1.5rem;
    top: -16px;
  }
}
.page_top_media .media_top_pickup .blog_card .img {
  margin-bottom: 20px;
  position: relative;
  overflow: unset;
}
.page_top_media .media_top_pickup .blog_card .img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
.page_top_media .media_top_pickup .blog_card .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #db111a, #737373);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.page_top_media .media_top_pickup .blog_card h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .media_top_pickup .blog_card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.page_top_media .media_top_pickup .blog_card .categories {
  margin-bottom: 7px;
}
.page_top_media .media_top_pickup .blog_card .post_category,
.page_top_media .media_top_pickup .blog_card .job_category {
  gap: 2px 8px;
}
.page_top_media .media_top_pickup .blog_card .post_category p,
.page_top_media .media_top_pickup .blog_card .job_category p {
  font-size: 1.1rem;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .media_top_pickup .blog_card .post_category p,
  .page_top_media .media_top_pickup .blog_card .job_category p {
    font-size: 1rem;
  }
}
.page_top_media .media_top_pickup .blog_card .post_meta time {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .media_top_pickup .blog_card .post_meta time {
    font-size: 1rem;
  }
}
.page_top_media .media_top_pickup .blog_card .post_meta img {
  width: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .media_top_pickup .blog_card .post_meta img {
    width: 30px;
  }
}
.page_top_media .media_top_pickup .blog_card .post_meta .author-name {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .page_top_media .media_top_pickup .blog_card .post_meta .author-name {
    font-size: 1.1rem;
  }
}
.page_top_media .media_top_pickup .blog_card a:hover .img::before {
  -webkit-transform: rotate(4.5deg);
          transform: rotate(4.5deg);
}
.page_top_media .media_top_pickup .blog_card a:hover .img img {
  -webkit-transform: unset;
          transform: unset;
}

.heading_media p {
  font-size: 5.2rem;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .heading_media p {
    font-size: 3rem;
  }
}
.heading_media h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #db111a;
}
@media screen and (max-width: 767.9px) {
  .heading_media h2 {
    font-size: 1.4rem;
  }
}

.latest_articles {
  position: relative;
  background: #f5f5f5;
  padding: 95px 0;
  border-radius: 80px;
}
@media screen and (max-width: 767.9px) {
  .latest_articles {
    border-radius: 40px;
    padding: 50px 0;
  }
}
.latest_articles .heading_media {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .latest_articles .heading_media {
    margin-bottom: 40px;
  }
}
.latest_articles .heading_media p,
.latest_articles .heading_media h2 {
  text-align: center;
}
.latest_articles .post_list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .latest_articles .post_list {
    gap: 30px;
  }
}
.latest_articles .post_list li {
  border-bottom: solid 1px #e2e2e2;
  padding-bottom: 25px;
  padding-left: 13px;
  padding-right: 13px;
  width: calc(33.3333333333% - 13px);
}
@media screen and (max-width: 767.9px) {
  .latest_articles .post_list li {
    border: none;
    padding: 0;
  }
}
.latest_articles .post_list li:nth-child(1),
.latest_articles .post_list li:nth-child(4) {
  padding-left: 0;
}
.latest_articles .post_list li:nth-child(3),
.latest_articles .post_list li:nth-child(6) {
  padding-right: 0;
}
.latest_articles .post_list li:nth-child(2),
.latest_articles .post_list li:nth-child(5) {
  border-right: solid 1px #e2e2e2;
  border-left: solid 1px #e2e2e2;
  width: 33.3333333333%;
}
@media screen and (max-width: 767.9px) {
  .latest_articles .post_list li:nth-child(2),
  .latest_articles .post_list li:nth-child(5) {
    border: none;
  }
}
.latest_articles .post_list li:nth-child(n+4) {
  border-bottom: none !important;
  padding-top: 31px;
}
@media screen and (max-width: 767.9px) {
  .latest_articles .post_list li:nth-child(n+4) {
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .page_media_wrapper .page_media-category_list {
    margin-bottom: 60px;
  }
}
.page_media_wrapper .page_media-category_list_wrapper {
  padding-top: 180px;
  background: #fff;
  margin-top: -80px;
}
@media screen and (max-width: 767.9px) {
  .page_media_wrapper .page_media-category_list_wrapper {
    margin-top: -40px;
    padding-top: 100px;
  }
}
.page_media_wrapper .two_column_content {
  margin-bottom: 30px;
}
.page_media_wrapper .sidebar {
  margin-top: 10px;
}

.page_media-category_item {
  padding-bottom: 80px;
  border-bottom: solid 1px #e2e2e2;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_media-category_item {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.page_media-category_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.page_media-category_item .heading_wrap {
  margin-bottom: 45px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .page_media-category_item .heading_wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_media-category_item .heading_wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page_media-category_item .more_btn {
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .page_media-category_item .more_btn {
    margin-left: 0;
  }
}
.page_media-category_item .more_btn a {
  padding: 12px 42px;
  font-size: 1.5rem;
}
.page_media-category_item .post_list {
  gap: 46px 26px;
}
@media screen and (max-width: 767.9px) {
  .page_media-category_item .post_list {
    gap: 30px;
  }
}
.page_media-category_item .post_list li {
  width: calc((100% - 26px) / 2);
}

.job_category_list {
  position: relative;
  padding-top: 100px;
  padding-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .job_category_list {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}
.job_category_list .bg {
  background: #000;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .job_category_list .bg {
    border-radius: 40px 40px 0 0;
  }
}
.job_category_list .bg::before {
  content: "";
  background-image: url(../img/job_category_list_bg.png);
  width: 881px;
  height: auto;
  aspect-ratio: 881/1000;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .job_category_list .bg::before {
    width: 600px;
  }
}
.job_category_list h2 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .job_category_list h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    text-align: center;
  }
}
.job_category_list h2 span {
  color: #db111a;
}

@-webkit-keyframes pyonpyon {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

@keyframes pyonpyon {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@-webkit-keyframes pyonpyon2 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  25% {
    -webkit-transform: translateY(-10px) translateX(-50%);
            transform: translateY(-10px) translateX(-50%);
  }
  50% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  75% {
    -webkit-transform: translateY(-10px) translateX(-50%);
            transform: translateY(-10px) translateX(-50%);
  }
}
@keyframes pyonpyon2 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  25% {
    -webkit-transform: translateY(-10px) translateX(-50%);
            transform: translateY(-10px) translateX(-50%);
  }
  50% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  75% {
    -webkit-transform: translateY(-10px) translateX(-50%);
            transform: translateY(-10px) translateX(-50%);
  }
}
.job_category_swiper_wrapper {
  position: relative;
}
.job_category_swiper_wrapper::before {
  content: "";
  width: 278px;
  height: auto;
  aspect-ratio: 278/125;
  background-image: url(../img/job_category_character.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -124px;
  right: 120px;
  -webkit-animation: pyonpyon 2s ease-in-out infinite;
          animation: pyonpyon 2s ease-in-out infinite;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .job_category_swiper_wrapper::before {
    right: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .job_category_swiper_wrapper::before {
    width: 158px;
    top: -135px;
    right: 10px;
  }
}
.job_category_swiper_wrapper .swiper-slide {
  width: 211px;
}
@media screen and (max-width: 767.9px) {
  .job_category_swiper_wrapper .swiper-slide {
    width: 160px;
  }
}
.job_category_swiper_wrapper a {
  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;
  height: auto;
  aspect-ratio: 208/390;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 3px transparent;
}
@media screen and (max-width: 767.9px) {
  .job_category_swiper_wrapper a {
    padding: 0 10px;
  }
}
.job_category_swiper_wrapper a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.job_category_swiper_wrapper a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/mask.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}
.job_category_swiper_wrapper a::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ae1720;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.job_category_swiper_wrapper a .detail {
  margin-top: auto;
  padding-bottom: 34px;
  position: relative;
  z-index: 2;
}
.job_category_swiper_wrapper a .detail h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .job_category_swiper_wrapper a .detail h3 {
    font-size: 1.4rem;
  }
}
.job_category_swiper_wrapper a .detail p {
  color: #c0c0c0;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .job_category_swiper_wrapper a .detail p {
    font-size: 1rem;
  }
}
.job_category_swiper_wrapper a:hover {
  opacity: 1;
  border: solid 3px #ae1720;
}
.job_category_swiper_wrapper a:hover::after {
  opacity: 0.4;
}

button {
  cursor: pointer;
}

.page_media_wrapper .search_box_wrapper {
  padding-top: 139px;
  padding-bottom: 160px;
  background: #f7f7f7;
}
@media screen and (max-width: 767.9px) {
  .page_media_wrapper .search_box_wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.page_media_wrapper .search_box_wrapper .cont {
  max-width: 1100px;
}
.page_media_wrapper .search_box_wrapper .search_box {
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_media_wrapper .search_box_wrapper .search_box h4,
  .page_media_wrapper .search_box_wrapper .search_box--static .search_box_panel h4 {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 768px) {
  .page_media_wrapper .search_box_wrapper .search_filter_category:first-child .search_filter_item {
    min-width: 174px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .page_media_wrapper .search_box_wrapper .search_box li.search_filter_post_tag label,
  .page_media_wrapper .search_box_wrapper .search_box--static .search_box_panel li.search_filter_post_tag label {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .page_media_wrapper .search_box_wrapper .search_box .search_filter_job_category label,
  .page_media_wrapper .search_box_wrapper .search_box .search_filter_category label,
  .page_media_wrapper .search_box_wrapper .search_box--static .search_box_panel .search_filter_job_category label,
  .page_media_wrapper .search_box_wrapper .search_box--static .search_box_panel .search_filter_category label {
    font-size: 1.8rem;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .page_media_wrapper .search_box_wrapper .search_box input[type=submit],
  .page_media_wrapper .search_box_wrapper .search_box--static .search_box_panel input[type=submit] {
    font-size: 2.1rem;
    max-width: 484px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.page_media_wrapper .search_box_wrapper .search_box--static {
  border: solid 1px hsl(240, 2%, 9%);
  overflow: hidden;
}
.page_media_wrapper .search_box_wrapper .search_box_static_title {
  margin: 0;
  background: hsl(240, 2%, 9%);
  color: #fff;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 32px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_media_wrapper .search_box_wrapper .search_box_static_title {
    padding: 15px 20px 15px 20px;
    font-size: 1.8rem;
  }
}
.page_media_wrapper .search_box_wrapper .search_box--static .search_box_panel {
  opacity: 1;
}

.main_visual {
  padding-top: 200px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.main_visual::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1400/114;
  background-image: url(../img/bg_text1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 129px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .main_visual::before {
    aspect-ratio: unset;
  }
}
.main_visual .main_visual_swiper {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.main_visual .main_visual_swiper.is-loaded {
  opacity: 1;
}
.main_visual a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: unset;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .main_visual a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main_visual .detail {
  -webkit-box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.07);
  background: #fff;
  padding: 30px 32px 22px;
  margin-right: -124px;
  width: 486px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .detail {
    margin-right: 0;
    margin-top: -30px;
    padding: 15px 20px;
    width: 90%;
  }
}
.main_visual .img {
  width: 811px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 811/456;
  position: relative;
  z-index: 1;
  overflow: unset;
  -webkit-box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.main_visual .img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
.main_visual .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #db111a, #737373);
  -webkit-transform: rotate(4.5deg);
          transform: rotate(4.5deg);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.main_visual .swiper-slide.main-visual-slide--leaving .img {
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translate3d(-80px, -100px, 0) rotate(-5deg);
          transform: translate3d(-80px, -100px, 0) rotate(-5deg);
}
.main_visual .swiper-slide.main-visual-slide--leaving .img::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.main_visual .blog_card {
  max-width: unset;
}
.main_visual .blog_card .categories {
  margin-bottom: 10px;
}
.main_visual .blog_card .post_category p,
.main_visual .blog_card .job_category p {
  font-size: 1.2rem;
}
.main_visual .blog_card h3 {
  font-size: 2.1rem;
  line-height: 1.5238095238;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .blog_card h3 {
    font-size: 1.5rem;
  }
}
.main_visual .blog_card .case_excerpt {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  color: #a0a0a0;
  margin-bottom: 17px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .blog_card .case_excerpt {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.main_visual .blog_card .post_meta time {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .main_visual .blog_card .post_meta time {
    font-size: 1rem;
  }
}
.main_visual .blog_card .post_meta .author-name {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .main_visual .blog_card .post_meta .author-name {
    font-size: 1.1rem;
  }
}
.main_visual .blog_card .post_meta img {
  width: 43px;
}
@media screen and (max-width: 1024px) {
  .main_visual .blog_card .post_meta img {
    width: 30px;
  }
}
.main_visual a:hover {
  opacity: 1;
}
.main_visual a:hover .img img {
  -webkit-transform: unset;
          transform: unset;
}
.main_visual .swiper-pagination {
  left: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .main_visual .swiper-pagination {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.main_visual .swiper-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
  margin: 0 5px;
  width: 9px;
  height: 9px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
.main_visual .swiper-pagination .swiper-pagination-bullet-active {
  background: #db111a;
}

.top_job_category_list {
  padding-top: 64px;
}
.top_job_category_list .bg::after {
  content: "";
  background-image: url(../img/job_category_list_bg.png);
  width: 881px;
  height: auto;
  aspect-ratio: 881/1000;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.6;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top_job_category_list .bg::after {
    width: 680px;
  }
}
.top_job_category_list .job_category_swiper {
  margin-bottom: 140px;
}
@media screen and (max-width: 767.9px) {
  .top_job_category_list .job_category_swiper {
    margin-bottom: 64px;
  }
}

.top_pickup {
  position: relative;
}
.top_pickup .sub_title {
  text-align: center;
  color: #fff;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .sub_title {
    font-size: 3.6rem;
    margin-bottom: 0;
  }
}
.top_pickup .sub_title span {
  color: #db111a;
}
.top_pickup h2 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  color: #fff;
  margin-bottom: 108px;
}
@media screen and (max-width: 767.9px) {
  .top_pickup h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
.top_pickup .blog_card .post_category,
.top_pickup .blog_card .job_category {
  gap: 2px 8px;
}
.top_pickup .blog_card .post_category p,
.top_pickup .blog_card .job_category p {
  font-size: 1rem;
}
.top_pickup .post_meta time {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .post_meta time {
    font-size: 1rem;
  }
}
.top_pickup .post_meta img {
  width: 40px;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .post_meta img {
    width: 30px;
  }
}
.top_pickup .post_meta .author-name {
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .post_meta .author-name {
    font-size: 1.1rem;
  }
}
.top_pickup .top_pickup_list {
  gap: 88px 50px;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .top_pickup_list {
    gap: 30px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top_pickup .top_pickup_list .blog_card {
  width: calc(50% - 25px);
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .top_pickup_list .blog_card {
    max-width: 400px;
  }
}
.top_pickup .top_pickup_list .blog_card h3 {
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top_pickup .top_pickup_list .blog_card h3 {
    font-size: 1.5rem;
  }
}
.top_pickup .top_pickup_list .blog_card a:hover h3 {
  color: #db111a;
}

.heading_top .sub_title {
  font-size: 6.2rem;
  font-weight: 600;
  line-height: 1.1612903226;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .heading_top .sub_title {
    font-size: 2.6rem;
    margin-bottom: 4px;
  }
}
.heading_top h2 {
  color: #db111a;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .heading_top h2 {
    font-size: 1.2rem;
  }
}

.top_latest_articles {
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.top_latest_articles .heading_top {
  position: relative;
  padding-left: 120px;
  margin: 0 56px;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .heading_top {
    padding-left: 80px;
    margin: 0;
  }
}
.top_latest_articles .heading_top::before {
  content: "";
  width: 110px;
  height: auto;
  aspect-ratio: 110/107;
  background-image: url(../img/top_latest_articles_character.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: animation_shake 2s infinite;
          animation: animation_shake 2s infinite;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .heading_top::before {
    width: 60px;
  }
}
.top_latest_articles .top_ai_related_tags {
  margin: 32px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  overflow: hidden;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .top_ai_related_tags {
    gap: 8px;
    margin-bottom: 40px;
  }
}
.top_latest_articles .top_ai_related_tags__row .top_ai_related_tags__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .top_ai_related_tags__row .top_ai_related_tags__slide {
    zoom: 0.85;
  }
}
.top_latest_articles .top_ai_related_tags__row .top_ai_related_tags__wrap {
  padding: 0;
  margin: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -webkit-animation: top_ai_related_marquee_a 120s calc(120s / -2) linear infinite;
          animation: top_ai_related_marquee_a 120s calc(120s / -2) linear infinite;
}
.top_latest_articles .top_ai_related_tags__row .top_ai_related_tags__wrap:last-child {
  -webkit-animation-name: top_ai_related_marquee_b;
          animation-name: top_ai_related_marquee_b;
  -webkit-animation-duration: 78s;
          animation-duration: 78s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.top_latest_articles .top_ai_related_tags__row {
  /* 逆方向は別キーフレームだと継ぎ目がずれるため、同一アニメ＋横反転で対応 */
}
.top_latest_articles .top_ai_related_tags__row--rev .top_ai_related_tags__slide {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.top_latest_articles .top_ai_related_tags__row--rev .top_ai_related_tags__item {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.top_latest_articles .top_ai_related_tags__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 11px;
}
.top_latest_articles .top_ai_related_tags__item a {
  display: inline-block;
  padding: 11px 25px;
  border-radius: 100px;
  border: solid 1px #e7e7e7;
  color: #5c5c5d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .top_ai_related_tags__item a {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
}
.top_latest_articles .top_ai_related_tags__item a:hover {
  background-color: #db111a;
  color: #fff;
  opacity: 1;
}

@-webkit-keyframes top_ai_related_marquee_a {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes top_ai_related_marquee_a {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes top_ai_related_marquee_b {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes top_ai_related_marquee_b {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes animation_shake {
  0%, 100% {
    rotate: 0deg;
  }
  15% {
    rotate: 0deg;
  }
  25% {
    rotate: -8deg;
  }
  55% {
    rotate: 4deg;
  }
  75% {
    rotate: -2deg;
  }
  85% {
    rotate: 0deg;
  }
}
@keyframes animation_shake {
  0%, 100% {
    rotate: 0deg;
  }
  15% {
    rotate: 0deg;
  }
  25% {
    rotate: -8deg;
  }
  55% {
    rotate: 4deg;
  }
  75% {
    rotate: -2deg;
  }
  85% {
    rotate: 0deg;
  }
}
.top_latest_articles .post_list {
  margin-bottom: 52px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .post_list {
    gap: 30px 20px;
    margin-bottom: 30px;
  }
}
.top_latest_articles .post_list li {
  border-bottom: solid 1px #e2e2e2;
  padding-bottom: 25px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 31px;
  width: calc(33.3333333333% - 13px);
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .post_list li {
    padding: 0;
    border: none;
  }
}
.top_latest_articles .post_list li:nth-child(1),
.top_latest_articles .post_list li:nth-child(4),
.top_latest_articles .post_list li:nth-child(7) {
  padding-left: 0;
}
.top_latest_articles .post_list li:nth-child(3),
.top_latest_articles .post_list li:nth-child(6),
.top_latest_articles .post_list li:nth-child(9) {
  padding-right: 0;
}
.top_latest_articles .post_list li:nth-child(2),
.top_latest_articles .post_list li:nth-child(5),
.top_latest_articles .post_list li:nth-child(8) {
  border-right: solid 1px #e2e2e2;
  border-left: solid 1px #e2e2e2;
  width: 33.3333333333%;
}
@media screen and (max-width: 767.9px) {
  .top_latest_articles .post_list li:nth-child(2),
  .top_latest_articles .post_list li:nth-child(5),
  .top_latest_articles .post_list li:nth-child(8) {
    border: none;
  }
}
.top_latest_articles .post_list li:nth-child(1),
.top_latest_articles .post_list li:nth-child(2),
.top_latest_articles .post_list li:nth-child(3) {
  padding-top: 0;
}

.top_business {
  border-radius: 80px 80px 0 0;
  padding-top: 65px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_business {
    border-radius: 40px 40px 0 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business {
    border-radius: 40px 40px 0 0;
  }
}
.top_business .heading_top {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .top_business .heading_top {
    margin-bottom: 40px;
  }
}
.top_business .heading_top .sub_title span {
  color: #db111a;
}
.top_business .heading_top h2 {
  color: #fff;
}
.top_business .top_business_swiper {
  position: relative;
}
.top_business .top_business_swiper .swiper-button-prev,
.top_business .top_business_swiper .swiper-button-next {
  position: absolute;
  top: -156px;
  margin: 0;
  background: none;
  cursor: pointer;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_swiper .swiper-button-prev,
  .top_business .top_business_swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    top: -80px;
  }
}
.top_business .top_business_swiper .swiper-button-prev::after,
.top_business .top_business_swiper .swiper-button-next::after {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_swiper .swiper-button-prev::after,
  .top_business .top_business_swiper .swiper-button-next::after {
    font-size: 1.4rem;
  }
}
.top_business .top_business_swiper .swiper-button-prev {
  right: 152px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_swiper .swiper-button-prev {
    right: 80px;
  }
}
.top_business .top_business_swiper .swiper-button-prev::after {
  content: "←";
}
.top_business .top_business_swiper .swiper-button-next {
  right: 100px;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_swiper .swiper-button-next {
    right: 40px;
  }
}
.top_business .top_business_swiper .swiper-button-next::after {
  content: "→";
}
.top_business .swiper-slide {
  border-radius: 20px;
  padding: 40px 50px 30px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide {
    padding: 30px 20px;
    border-radius: 15px;
  }
}
.top_business .swiper-slide * {
  color: #fff;
}
.top_business .swiper-slide h3 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide h3 {
    font-size: 2rem;
  }
}
.top_business .swiper-slide .sub_title {
  color: #c0c0c0;
  font-size: 1.3rem;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide .sub_title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.top_business .swiper-slide .flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.top_business .swiper-slide .detail {
  width: 50%;
  padding-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide .detail {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 0;
  }
}
.top_business .swiper-slide img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-top: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide img {
    width: 200px;
    margin: 0 auto;
  }
}
.top_business .swiper-slide .description {
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide .description {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.top_business .swiper-slide ul {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide ul {
    gap: 6px;
  }
}
.top_business .swiper-slide ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide ul li {
    font-size: 1.3rem;
  }
}
.top_business .swiper-slide ul li::before {
  content: "";
  width: 21px;
  height: auto;
  aspect-ratio: 21/21;
  background-image: url(../img/check_yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 14px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide ul li::before {
    width: 16px;
  }
}
.top_business .swiper-slide a:hover {
  opacity: 1;
}
.top_business .swiper-slide a:hover img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.top_business .swiper-slide.ai_advisory {
  background: #1668ff;
}
.top_business .swiper-slide.open_claw {
  background: #ef5050;
}
.top_business .swiper-slide.open_claw img {
  margin-left: 20px;
  margin-top: -34px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide.open_claw img {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
  }
}
.top_business .swiper-slide.totsugeki_ai {
  background: #22b763;
}
.top_business .swiper-slide.totsugeki_ai img {
  margin-left: -40px;
}
@media screen and (max-width: 767.9px) {
  .top_business .swiper-slide.totsugeki_ai img {
    margin-left: auto;
    margin-right: auto;
  }
}

.top_news {
  padding-top: 80px;
  padding-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_news {
    padding-top: 50px;
    padding-bottom: 110px;
  }
}
.top_news .heading_top {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top_news .heading_top {
    margin-bottom: 30px;
  }
}
.top_news .news_list {
  margin-bottom: 75px;
  max-width: 897px;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list {
    margin-bottom: 40px;
  }
}
.top_news .news_list a {
  padding: 23px 0;
  border-bottom: solid 1px #e2e2e2;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.top_news .news_list a time {
  width: 150px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list a time {
    font-size: 1.5rem;
  }
}
.top_news .news_list a h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list a h3 {
    font-size: 1.5rem;
  }
}
.top_news .news_list a:hover {
  opacity: 1;
}
.top_news .news_list a:hover time,
.top_news .news_list a:hover h3 {
  color: #db111a;
}
.top_news .more_btn2 {
  text-align: left;
}
.top_news .top_news_img {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 329px;
}
@media screen and (max-width: 767.9px) {
  .top_news .top_news_img {
    width: 120px;
    bottom: 10px;
  }
}

.top_logo-slide h2 {
  margin-bottom: 32px;
}

.top_youtube {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_youtube {
    padding-top: 50px;
  }
}
.top_youtube::before {
  content: "";
  width: 895px;
  height: auto;
  aspect-ratio: 895/1341;
  background-image: url(../img/youtube_bg1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -370px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top_youtube::before {
    width: 500px;
  }
}
.top_youtube::after {
  content: "";
  width: 881px;
  height: auto;
  aspect-ratio: 881/1341;
  background-image: url(../img/youtube_bg2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top_youtube::after {
    width: 500px;
  }
}
.top_youtube .heading_top {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top_youtube .heading_top {
    margin-bottom: 30px;
  }
}
.top_youtube .heading_top p,
.top_youtube .heading_top h2 {
  text-align: center;
}
.top_youtube .heading_top h2 {
  color: #fff;
}

.top_youtube_swiper_wrapper {
  padding-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper_wrapper {
    padding-bottom: 40px;
  }
}

.top_youtube_swiper {
  position: relative;
  padding-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper {
    padding-bottom: 50px;
  }
}
.top_youtube_swiper .swiper-slide {
  height: auto;
}
.top_youtube_swiper .top_youtube_embed {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 800/450;
  overflow: hidden;
}
.top_youtube_swiper .top_youtube_thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.top_youtube_swiper iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.top_youtube_swiper .swiper-slide.is-active iframe {
  opacity: 1;
  pointer-events: auto;
}
.top_youtube_swiper .swiper-slide.is-playing .top_youtube_thumb {
  opacity: 0;
}
.top_youtube_swiper {
  /* controls（下端固定：左=prev 中央=pagination 右=next） */
}
.top_youtube_swiper .top_youtube_swiper__controls {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  gap: 23px;
  /* pagination から左右ボタンまで */
  width: 100%;
  pointer-events: none;
  /* slide 上のクリック邪魔しない */
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-button-prev,
.top_youtube_swiper .top_youtube_swiper__controls .swiper-button-next {
  position: static;
  width: 26px;
  height: 26px;
  margin: 0;
  pointer-events: auto;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper .top_youtube_swiper__controls .swiper-button-prev,
  .top_youtube_swiper .top_youtube_swiper__controls .swiper-button-next {
    width: 22px;
    height: 22px;
  }
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-button-prev::after,
.top_youtube_swiper .top_youtube_swiper__controls .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper .top_youtube_swiper__controls .swiper-button-prev::after,
  .top_youtube_swiper .top_youtube_swiper__controls .swiper-button-next::after {
    font-size: 1.2rem;
  }
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-button-prev::after {
  content: "←";
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-button-next::after {
  content: "→";
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-pagination {
  position: static;
  width: auto;
  pointer-events: auto;
  --swiper-pagination-bullet-horizontal-gap: 5px;
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper .top_youtube_swiper__controls .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
.top_youtube_swiper .top_youtube_swiper__controls .swiper-pagination-bullet-active {
  background: #db111a;
}

.top_youtube_swiper2_wrapper {
  background: #1F1F1F;
  padding-top: 60px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper2_wrapper {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}
.top_youtube_swiper2_wrapper .more_btn2 {
  position: relative;
}
.top_youtube_swiper2_wrapper .more_btn2 a {
  background: #db111a;
}
.top_youtube_swiper2_wrapper .more_btn2 a:hover {
  background: #fff;
  color: #db111a;
}

.top_youtube_swiper2 {
  position: relative;
  margin-bottom: 58px;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper2 {
    margin-bottom: 30px;
  }
}
.top_youtube_swiper2 .swiper-slide {
  width: 288px;
  height: auto;
  aspect-ratio: 288/162;
}
@media screen and (max-width: 767.9px) {
  .top_youtube_swiper2 .swiper-slide {
    width: 160px;
  }
}
.top_youtube_swiper2 .swiper-slide a,
.top_youtube_swiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.top_case {
  position: relative;
  background: #f7f7f7;
  padding-top: 80px;
  overflow: hidden;
  padding-bottom: 113px;
}
@media screen and (max-width: 767.9px) {
  .top_case {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.top_case h2 {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .top_case h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
.top_case .post_list {
  gap: 24px;
  margin-top: 88px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top_case .post_list {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.top_case .post_list li {
  width: calc((100% - 48px) / 3);
}

.p-logo-frame {
  display: block;
  overflow: hidden;
}

.logo_slider1 .p-logo-slide__wrap:first-child {
  -webkit-animation: slide1 80s -40s linear infinite;
          animation: slide1 80s -40s linear infinite;
}
.logo_slider1 .p-logo-slide__wrap:last-child {
  -webkit-animation: slide2 80s linear infinite;
          animation: slide2 80s linear infinite;
}

/* slider1 と同じ無限ループ、視覚的な流れだけ反対（ロゴの左右反転は打ち消し） */
.logo_slider2 {
  margin-top: 23px;
}
.logo_slider2 .p-logo-slide__wrap:first-child {
  -webkit-animation: slide1 80s -40s linear infinite;
          animation: slide1 80s -40s linear infinite;
}
.logo_slider2 .p-logo-slide__wrap:last-child {
  -webkit-animation: slide2 80s linear infinite;
          animation: slide2 80s linear infinite;
}
.logo_slider2 .p-logo-slide {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.logo_slider2 .p-logo-slide__item {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.p-logo-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  height: 84px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .p-logo-slide {
    zoom: 0.6;
  }
}

.p-logo-slide__wrap {
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-logo-slide__item {
  list-style: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  height: 100%;
  display: block;
  margin-right: 20px;
  background: #fff;
  padding: 20px 31px;
  position: relative;
}
.p-logo-slide__item img {
  vertical-align: middle;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  min-width: 78px;
}
.p-logo-slide__item img.high {
  margin-top: -15px;
  margin-bottom: -15px;
  max-height: 78px;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.bottom_contact {
  padding: 0 50px 156px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact {
    padding: 0 0 100px;
  }
}
.bottom_contact::before {
  content: "";
  width: 100%;
  height: auto;
  min-width: 100%;
  aspect-ratio: 1400/114;
  background-image: url(../img/bg_text2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact::before {
    width: 100%;
    height: 80px;
    aspect-ratio: unset;
  }
}
.bottom_contact .character {
  position: absolute;
  bottom: 77px;
  right: 19px;
  width: 224px;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .character {
    width: 100px;
  }
}
.bottom_contact .cont {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  background: hsl(240, 2%, 9%);
  padding: 52px 20px 70px;
  position: relative;
  z-index: 2;
}
.bottom_contact .sub_title {
  font-size: 6.2rem;
  font-weight: 600;
  line-height: 1.1612903226;
  margin-bottom: 6px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .sub_title {
    font-size: 2.6rem;
    margin-bottom: 4px;
  }
}
.bottom_contact h2 {
  color: #db111a;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 154px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact h2 {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
}
.bottom_contact .flex {
  gap: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .flex {
    gap: 110px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 10px;
  }
}
.bottom_contact .contact_item {
  width: calc((100% - 35px) / 2);
  position: relative;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 62px 42px 30px;
  max-width: 506px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .contact_item {
    width: 100%;
    padding: 40px 20px 30px;
  }
}
.bottom_contact .contact_item img {
  position: absolute;
  -webkit-transition: zoom 0.1s, -webkit-transform 0.3s;
  transition: zoom 0.1s, -webkit-transform 0.3s;
  transition: transform 0.3s, zoom 0.1s;
  transition: transform 0.3s, zoom 0.1s, -webkit-transform 0.3s;
}
@media screen and (max-width: 1024px) {
  .bottom_contact .contact_item img {
    zoom: 0.6;
  }
}
.bottom_contact .contact_item .img1 {
  width: 291px;
  left: calc(50% - 106px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -150px;
}
.bottom_contact .contact_item .img2 {
  width: 286px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -135px;
}
.bottom_contact .contact_item .img3 {
  width: 277px;
  top: -92px;
  left: calc(50% + 90px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bottom_contact .contact_item .img4 {
  width: 200px;
  top: -152px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bottom_contact .contact_item:hover .img1 {
  -webkit-transform: translateY(-20px) translateX(-60%) rotate(-5deg) scale(1.1);
          transform: translateY(-20px) translateX(-60%) rotate(-5deg) scale(1.1);
}
.bottom_contact .contact_item:hover .img2 {
  -webkit-transform: translateY(-20px) translateX(-50%) scale(1.1);
          transform: translateY(-20px) translateX(-50%) scale(1.1);
}
.bottom_contact .contact_item:hover .img3 {
  -webkit-transform: translateY(-20px) translateX(-40%) rotate(5deg) scale(1.1);
          transform: translateY(-20px) translateX(-40%) rotate(5deg) scale(1.1);
}
.bottom_contact .contact_item:hover .img4 {
  -webkit-transform: translateY(-20px) translateX(-50%);
          transform: translateY(-20px) translateX(-50%);
}
.bottom_contact .contact_item h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .contact_item h3 {
    font-size: 1.8rem;
  }
}
.bottom_contact .contact_item .description {
  font-size: 1.3rem;
  line-height: 1.8461538462;
  color: #A0A0A0;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .contact_item .description {
    margin-bottom: 20px;
  }
}
.bottom_contact .contact_item .more_btn3 {
  text-align: center;
}
.bottom_contact .contact_item .more_btn3 span {
  font-size: 1.3rem;
  display: inline-block;
  border-radius: 100px;
  background: none;
  border: solid 1px #db111a;
  color: #db111a;
  padding: 10px 24px 10px 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
}
.bottom_contact .contact_item:hover {
  opacity: 1;
}
.bottom_contact .contact_item:hover .more_btn3 span {
  background: #db111a;
  color: #fff;
}

.footer {
  background: #fff;
}
.footer .footer_main {
  padding: 40px 0 30px;
}
.footer .footer_main .cont {
  gap: 20px 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer_main .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .footer_main .detail .f_logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .detail .f_logo {
    margin-bottom: 0;
  }
}
.footer .footer_main .detail .f_logo a,
.footer .footer_main .detail .f_logo img {
  display: block;
}
.footer .footer_main .detail .f_logo img {
  width: 430px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .detail .f_logo img {
    width: 200px;
    margin: 0 auto;
  }
}
.footer .footer_main .detail .f_logo p {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .detail .f_logo p {
    font-size: 1rem;
    text-align: center;
  }
}
.footer .footer_main .detail .footer_sns {
  margin-top: auto;
  gap: 7px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .detail .footer_sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer_main .detail .footer_sns a {
  width: 45px;
}
.footer .footer_main .detail .footer_sns a img {
  display: block;
}
.footer .footer_main .fnav {
  margin-top: 40px;
  gap: 20px 40px;
  padding-bottom: 36px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .fnav {
    padding: 0 20px;
    margin-top: 10px;
  }
}
.footer .footer_main .fnav li p {
  color: #db111a;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
}
.footer .footer_main .fnav li p::before {
  content: "";
  width: 3px;
  height: 12px;
  background: #db111a;
  position: absolute;
  top: 50%;
  left: -13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer .footer_main .fnav li a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1428571429;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_main .fnav li a span {
  font-size: 1.1rem;
}
.footer .footer_main .fnav li a:hover {
  color: #db111a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.footer .footer_main .fnav ul:nth-child(2) {
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .fnav ul:nth-child(2) {
    margin-left: 0;
  }
}
.footer .footer_main .fnav ul:nth-child(3) {
  margin-top: -10px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .fnav ul:nth-child(3) {
    margin-top: 0;
  }
}
.footer .footer_main .fnav ul:nth-child(3) a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .fnav ul:nth-child(3) a {
    font-size: 1.4rem;
  }
}
.footer .footer_main .fnav .footer_recruit a::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url(../img/link_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 12px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.footer .footer_main .fnav .footer_recruit a:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(88%) saturate(6811%) hue-rotate(354deg) brightness(89%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(11%) sepia(88%) saturate(6811%) hue-rotate(354deg) brightness(89%) contrast(93%);
}
.footer .footer_bottom {
  background: hsl(240, 2%, 9%);
  padding: 20px 0;
}
.footer .footer_bottom .flex {
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom .flex {
    -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;
  }
}
.footer .footer_bottom small {
  color: #C0C0C0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1818181818;
}
.footer .footer_bottom a {
  color: #B9B9B9;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1818181818;
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom a {
    margin-left: 0;
    margin-bottom: 10px;
    margin-right: 10px;
  }
}

.puyon {
  -webkit-animation: puyon 5s linear 0s infinite;
          animation: puyon 5s linear 0s infinite;
}

@-webkit-keyframes puyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  8% {
    -webkit-transform: scale(0.95, 1.2) translate(0%, -10%);
            transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  12% {
    -webkit-transform: scale(0.95, 1.05) translate(0%, -3%);
            transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  14% {
    -webkit-transform: scale(1.05, 0.95) translate(0%, 3%);
            transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  16% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes puyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  8% {
    -webkit-transform: scale(0.95, 1.2) translate(0%, -10%);
            transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  12% {
    -webkit-transform: scale(0.95, 1.05) translate(0%, -3%);
            transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  14% {
    -webkit-transform: scale(1.05, 0.95) translate(0%, 3%);
            transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  16% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
.page-id-9 .bottom_contact::after,
.page-id-11 .bottom_contact::after,
.page-id-287 .bottom_contact::after {
  content: "";
  width: 100%;
  height: 324px;
  background: #fff;
  position: absolute;
  top: -43px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-id-9 .bottom_contact::after,
  .page-id-11 .bottom_contact::after,
  .page-id-287 .bottom_contact::after {
    top: -60px;
  }
}

.page-id-304 .bottom_contact img,
.page-id-288 .bottom_contact img,
body.search .bottom_contact img,
body.category .bottom_contact img,
body.tag .bottom_contact img,
body.single-post .bottom_contact img,
body.tax-job_category .bottom_contact img {
  display: none;
}
.page-id-304 .bottom_contact .cont,
.page-id-288 .bottom_contact .cont,
body.search .bottom_contact .cont,
body.category .bottom_contact .cont,
body.tag .bottom_contact .cont,
body.single-post .bottom_contact .cont,
body.tax-job_category .bottom_contact .cont {
  display: none;
}

.page-id-294 .pankuzu {
  position: relative;
  background: #f7f7f7;
}
.page-id-294 .bottom_contact {
  background: #f7f7f7;
}

.single_wrapper {
  background: #fff;
  padding-top: 67px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper {
    padding-top: 40px;
  }
}

.single_wrapper .left {
  margin-top: 7px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left {
    margin-top: 0;
  }
}
.single_wrapper .left .single_top_meta {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 20px;
  margin-bottom: 14px;
}
.single_wrapper .left .single_top_meta .categories {
  margin-top: 15px;
  gap: 4px 6px;
  margin-bottom: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .left .single_top_meta .post_category,
.single_wrapper .left .single_top_meta .job_category {
  gap: 2px 6px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_category,
  .single_wrapper .left .single_top_meta .job_category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .left .single_top_meta .post_category p,
.single_wrapper .left .single_top_meta .job_category p {
  color: #c0c0c0;
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_category p,
  .single_wrapper .left .single_top_meta .job_category p {
    font-size: 1rem;
  }
}
.single_wrapper .left .single_top_meta .post_category p {
  background: rgba(219, 17, 26, 0.8);
}
.single_wrapper .left .single_top_meta .job_category p {
  background: #5c5c5d;
}
.single_wrapper .left .single_top_meta .post_meta {
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    margin-left: auto;
  }
}
.single_wrapper .left .single_top_meta .post_meta time {
  color: #C0C0C0;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_meta time {
    font-size: 1rem;
  }
}
.single_wrapper .left .single_top_meta .post_meta .post-author {
  gap: 12px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_meta .post-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6px;
  }
}
.single_wrapper .left .single_top_meta .post_meta img {
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_meta img {
    width: 30px;
    height: 30px;
  }
}
.single_wrapper .left .single_top_meta .post_meta .author-name {
  font-size: 1.6rem;
  color: #C0C0C0;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .single_top_meta .post_meta .author-name {
    font-size: 1.1rem;
  }
}
.single_wrapper .left .post_title {
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_title {
    font-size: 2.2rem;
  }
}
.single_wrapper .left .main_img img {
  width: 100%;
  display: block;
  border-radius: 7px;
  margin-bottom: 30px;
}
.single_wrapper .left .content a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.single_wrapper .left .content a:hover {
  opacity: 1;
  color: #10b4b9;
}
.single_wrapper .left .content #ez-toc-container {
  padding: 30px 55px;
  border-left: solid 5px #db111a;
  margin-left: 10px;
  background: #F7F7F7;
  position: relative;
  margin-bottom: 67px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container {
    margin-bottom: 40px;
    margin-left: 0;
    padding: 30px;
    border-left: 4px solid #db111a;
  }
}
.single_wrapper .left .content #ez-toc-container a {
  text-decoration: none;
}
.single_wrapper .left .content #ez-toc-container .ez-toc-title {
  color: #686E7D;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-title::before {
  content: "INDEX";
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: hsl(240, 2%, 9%);
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-title::before {
    font-size: 2.2rem;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-icon-toggle-span svg {
  display: none;
}
.single_wrapper .left .content #ez-toc-container .ez-toc-icon-toggle-span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-icon-toggle-span {
    width: 15px;
    height: 15px;
    top: 25px;
    right: 20px;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-icon-toggle-span::before {
  content: "";
  width: 10px;
  height: auto;
  aspect-ratio: 1/2;
  background-image: url(../img/list_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-filter: brightness(0) saturate(100%) invert(3%) sepia(5%) saturate(798%) hue-rotate(201deg) brightness(91%) contrast(88%);
          filter: brightness(0) saturate(100%) invert(3%) sepia(5%) saturate(798%) hue-rotate(201deg) brightness(91%) contrast(88%);
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-icon-toggle-span::before {
    width: 8px;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-heading-level-2 {
  margin-bottom: 20px;
}
.single_wrapper .left .content #ez-toc-container .ez-toc-heading-level-2:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-heading-level-2 {
    font-size: 1.4rem;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-heading-level-2 a {
  font-weight: 700;
  color: hsl(240, 2%, 9%);
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-heading-level-2 a {
    line-height: 1.8;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-list-level-3 {
  margin-left: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-list-level-3 {
    margin-left: 20px;
  }
}
.single_wrapper .left .content #ez-toc-container .ez-toc-list-level-3 a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #797979;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content #ez-toc-container .ez-toc-list-level-3 a {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.single_wrapper .left .content #ez-toc-container.toc_close .ez-toc-icon-toggle-span::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.single_wrapper .left .content #ez-toc-container a:hover {
  opacity: 0.7;
}
.single_wrapper .left .content h2 {
  background: hsl(240, 2%, 9%);
  color: #fff;
  padding: 13px 30px;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 21px;
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content h2 {
    font-size: 1.7rem;
    line-height: 1.4;
    padding: 10px 20px;
    margin-top: 60px;
  }
}
.single_wrapper .left .content h2:first-of-type {
  margin-top: 0;
}
.single_wrapper .left .content h3 {
  padding-left: 26px;
  padding-bottom: 12px;
  font-size: 2.1rem;
  line-height: 1.6;
  border-bottom: solid 1px #5C5C5D;
  position: relative;
  margin-top: 60px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content h3 {
    padding-left: 20px;
    font-size: 1.7rem;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 6px;
  }
}
.single_wrapper .left .content h3::before {
  content: "";
  width: 8px;
  height: calc(100% - 17px);
  background: hsl(240, 2%, 9%);
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content h3::before {
    width: 4px;
    height: calc(100% - 10px);
  }
}
.single_wrapper .left .content h4 {
  margin-top: 40px;
  position: relative;
  color: #dd1414;
  padding-left: 29px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content h4 {
    margin-top: 20px;
    font-size: 1.6rem;
    padding-left: 20px;
    line-height: 1.4;
  }
}
.single_wrapper .left .content h4::before {
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../img/h4_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content h4::before {
    width: 12px;
    height: 12px;
  }
}
.single_wrapper .left .content p {
  font-weight: 400;
  line-height: 2.375;
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content p {
    line-height: 1.8;
  }
}
.single_wrapper .left .content > p + p {
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content > p + p {
    margin-top: 20px;
  }
}
.single_wrapper .left .content ol.wp-block-list li {
  list-style: decimal;
  list-style-position: outside;
}
.single_wrapper .left .content ul.wp-block-list li {
  list-style: disc;
  list-style-position: outside;
}
.single_wrapper .left .content ol.wp-block-list,
.single_wrapper .left .content ul.wp-block-list {
  padding: 28px 30px 28px 45px;
  border-radius: 5px;
  margin: 32px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content ol.wp-block-list,
  .single_wrapper .left .content ul.wp-block-list {
    padding: 20px 20px 20px 35px;
    margin: 20px 0;
  }
}
.single_wrapper .left .content ol.wp-block-list li,
.single_wrapper .left .content ul.wp-block-list li {
  font-weight: 700;
  line-height: 2.25;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content ol.wp-block-list li,
  .single_wrapper .left .content ul.wp-block-list li {
    line-height: 1.8;
  }
}
.single_wrapper .left .content .border_list {
  border: solid 1px #E7E7E7;
}
.single_wrapper .left .content ol.number_list {
  counter-reset: number_list;
  padding: 40px;
  border-radius: 5px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content ol.number_list {
    padding: 20px;
  }
}
.single_wrapper .left .content ol.number_list li {
  list-style: none;
  counter-increment: number_list;
  position: relative;
  padding-left: 55px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #5C5C5D;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content ol.number_list li {
    font-size: 1.4rem;
    padding-left: 40px;
  }
}
.single_wrapper .left .content ol.number_list li:last-child {
  margin-bottom: 0;
}
.single_wrapper .left .content ol.number_list li strong {
  font-size: 2rem;
  color: hsl(240, 2%, 9%);
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content ol.number_list li strong {
    font-size: 1.5rem;
  }
}
.single_wrapper .left .content ol.number_list li::before {
  content: counter(number_list, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: hsl(240, 2%, 9%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content ol.number_list li::before {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}
.single_wrapper .left .content ol.number_list.border {
  border: solid 1px #E7E7E7;
}
.single_wrapper .left .content p mark {
  font-style: normal;
  padding: 7px;
  border-radius: 3px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content p mark {
    padding: 3px;
  }
}
.single_wrapper .left .content .is-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, var(--marker-color, #fff799)));
  background: linear-gradient(transparent 55%, var(--marker-color, #fff799) 55%);
  padding: 0 0.15em;
  border-radius: 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.single_wrapper .left .content .point {
  margin: 32px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .point {
    margin: 20px 0;
  }
}
.single_wrapper .left .content .point p {
  text-align: center;
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  background: #fff;
  padding: 10px;
  margin: 0 auto -40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .point p {
    font-size: 2.4rem;
    margin-bottom: -30px;
  }
}
.single_wrapper .left .content .point ol.wp-block-list {
  margin: 0;
  padding: 45px 40px;
  border: dashed 1px #C0C0C0;
  border-radius: 5px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .point ol.wp-block-list {
    padding: 35px 20px;
  }
}
.single_wrapper .left .content .point ol.wp-block-list li {
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
  counter-increment: number_list2;
  padding-left: 42px;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .point ol.wp-block-list li {
    padding-left: 35px;
  }
}
.single_wrapper .left .content .point ol.wp-block-list li:last-child {
  margin-bottom: 0;
}
.single_wrapper .left .content .point ol.wp-block-list li::before {
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  content: counter(number_list2, decimal-leading-zero);
  position: absolute;
  top: 6px;
  left: 0;
  color: #db111a;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .point ol.wp-block-list li::before {
    font-size: 1.8rem;
  }
}
.single_wrapper .left .content figure.is-type-rich {
  margin: 32px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single_wrapper .left .content figure {
  margin: 32px 0;
}
.single_wrapper .left .content figure img {
  border: #e5e5e5 1px solid;
}
.single_wrapper .left .content .CodeMirror {
  margin: 50px 0;
  background: #25292F !important;
  height: 700px !important;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .CodeMirror {
    margin: 30px 0;
  }
}
.single_wrapper .left .content .CodeMirror pre {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 400;
}
.single_wrapper .left .content .CodeMirror .CodeMirror-panel {
  border-bottom: solid 1px #7F7F7F;
}
.single_wrapper .left .content .CodeMirror .CodeMirror-panel .info-panel {
  height: 46px !important;
}
.single_wrapper .left .content .CodeMirror .CodeMirror-panel .control-panel > span {
  margin: 10px 15px 0 0;
}
.single_wrapper .left .content .CodeMirror .CodeMirror-panel .language {
  background: none !important;
  padding: 10px 26px 10px 54px;
  font-family: "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
}
.single_wrapper .left .content .CodeMirror .CodeMirror-panel .language::before {
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../img/code.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 15px;
  left: 30px;
}
.single_wrapper .left .content .CodeMirror .CodeMirror-code {
  padding: 26px;
}
.single_wrapper .left .content .code_prompt .CodeMirror {
  background: #686E7D !important;
}
.single_wrapper .left .content .code_prompt .CodeMirror .CodeMirror-panel .language::before {
  width: 16px;
  height: 16px;
  background-image: url(../img/prompt.svg);
}
.single_wrapper .left .content .writer_box {
  background: hsl(240, 2%, 9%);
  border-left: solid 7px #db111a;
  margin-top: 66px;
  padding: 32px 48px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box {
    padding: 30px 30px;
    margin-top: 50px;
  }
}
.single_wrapper .left .content .writer_box .writer_box_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .writer_box_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single_wrapper .left .content .writer_box * {
  color: #fff;
}
.single_wrapper .left .content .writer_box .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .detail {
    padding-bottom: 0;
  }
}
.single_wrapper .left .content .writer_box .writer_heading {
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .writer_heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.single_wrapper .left .content .writer_box .writer_heading mark {
  display: inline-block;
  padding: 0;
  vertical-align: text-top;
  margin-top: 9px;
  margin-left: 17px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #db111a;
  background: transparent;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .writer_heading mark {
    font-size: 1rem;
    margin-top: 4px;
  }
}
.single_wrapper .left .content .writer_box .writer_name {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .writer_name {
    font-size: 1.5rem;
  }
}
.single_wrapper .left .content .writer_box .writer_name2 {
  color: #8D8D8D;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .writer_name2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.single_wrapper .left .content .writer_box .description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .description {
    font-size: 1.2rem;
  }
}
.single_wrapper .left .content .writer_box figure {
  width: 29%;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box figure {
    margin-top: 0;
    width: 40%;
    margin-inline: auto;
    margin-bottom: 20px;
  }
}
.single_wrapper .left .content .writer_box figure img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}
.single_wrapper .left .content .writer_box .writer_code {
  border-top: solid 1px #5A5A5A;
  padding-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #C0C0C0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .writer_box .writer_code {
    font-size: 1rem;
  }
}
.single_wrapper .left .content .post_faq {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-inline: 24px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_faq {
    margin-inline: 0;
    margin-bottom: 20px;
  }
}
.single_wrapper .left .content .post_faq .post_faq_question {
  border-radius: 5px 5px 0 0;
  gap: 17px;
  padding: 15px 30px 15px 25px;
  background: #db111a;
}
.single_wrapper .left .content .post_faq .post_faq_question p:first-child {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #db111a;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-content: center;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_faq .post_faq_question p:first-child {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
}
.single_wrapper .left .content .post_faq .post_faq_question p:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_faq .post_faq_question p:last-child {
    font-size: 1.5rem;
  }
}
.single_wrapper .left .content .post_faq .post_faq_answer {
  border-radius: 0 0 5px 5px;
  gap: 17px;
  padding: 17px 30px 20px 25px;
  background: #F5F5F5;
}
.single_wrapper .left .content .post_faq .post_faq_answer p:first-child {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: hsl(240, 2%, 9%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-content: center;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_faq .post_faq_answer p:first-child {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
}
.single_wrapper .left .content .post_faq .post_faq_answer p:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 1.4rem;
  line-height: 2;
  color: #5C5C5D;
  font-weight: 700;
}
.single_wrapper .left .content .post_fukidashi-r,
.single_wrapper .left .content .post_fukidashi-l {
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 38px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_fukidashi-r,
  .single_wrapper .left .content .post_fukidashi-l {
    gap: 15px;
    margin: 30px 0;
  }
}
.single_wrapper .left .content .post_fukidashi-r p.has-background,
.single_wrapper .left .content .post_fukidashi-l p.has-background {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  padding: 30px 40px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_fukidashi-r p.has-background,
  .single_wrapper .left .content .post_fukidashi-l p.has-background {
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.single_wrapper .left .content .post_fukidashi-r p.has-background::before,
.single_wrapper .left .content .post_fukidashi-l p.has-background::before {
  content: "";
  width: 13px;
  height: 18px;
  position: absolute;
  top: 20px;
  background-color: inherit;
}
.single_wrapper .left .content .post_fukidashi-r .wp-block-group p,
.single_wrapper .left .content .post_fukidashi-l .wp-block-group p {
  font-weight: 700;
  font-size: 1.3rem;
}
.single_wrapper .left .content .post_fukidashi-r figure,
.single_wrapper .left .content .post_fukidashi-l figure {
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .post_fukidashi-r figure,
  .single_wrapper .left .content .post_fukidashi-l figure {
    width: 60px;
    height: 60px;
  }
}
.single_wrapper .left .content .post_fukidashi-r p {
  margin-right: 13px;
}
.single_wrapper .left .content .post_fukidashi-r p::before {
  right: -13px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.single_wrapper .left .content .post_fukidashi-l p {
  margin-left: 13px;
}
.single_wrapper .left .content .post_fukidashi-l p::before {
  left: -13px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left table th,
  .single_wrapper .left table td {
    font-size: 1.4rem;
  }
}
.single_wrapper .left code:not(:has(mark)) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  color: #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.9em;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0.5em;
  padding: 0.25em 0.5em;
}
.single_wrapper .left a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single_wrapper .left .post_share {
  margin: 70px 0;
  padding-bottom: 86px;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share {
    margin-top: 40px;
    padding: 0 0 40px;
  }
}
.single_wrapper .left .post_share a {
  text-decoration: none !important;
}
.single_wrapper .left .post_share h2 {
  font-size: 2.1rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share h2 {
    font-size: 1.6rem;
  }
}
.single_wrapper .left .post_share h2::before {
  content: none;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .left .post_share .flex a {
  width: 25%;
  height: 45px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share .flex a {
    height: 35px;
  }
}
.single_wrapper .left .post_share .flex a:hover {
  opacity: 0.7;
}
.single_wrapper .left .post_share .flex img {
  border-radius: 0;
}
.single_wrapper .left .post_share .flex .sns__twitter {
  background: #292929;
}
.single_wrapper .left .post_share .flex .sns__twitter img {
  width: 22px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share .flex .sns__twitter img {
    width: 14px;
  }
}
.single_wrapper .left .post_share .flex .sns__instagram {
  background: linear-gradient(137deg, #cf2e92 0%, #f26939 47%, #ffdd83 100%);
}
.single_wrapper .left .post_share .flex .sns__instagram img {
  width: 26px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share .flex .sns__instagram img {
    width: 16px;
  }
}
.single_wrapper .left .post_share .flex .sns__facebook {
  background: #0866ff;
}
.single_wrapper .left .post_share .flex .sns__facebook img {
  width: 26px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share .flex .sns__facebook img {
    width: 16px;
  }
}
.single_wrapper .left .post_share .flex .sns__line {
  background: #06c755;
}
.single_wrapper .left .post_share .flex .sns__line img {
  width: 26px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .post_share .flex .sns__line img {
    width: 16px;
  }
}
.single_wrapper .left .more_btn2 {
  text-align: center;
}
.single_wrapper .left .more_btn2 a:hover {
  color: #fff;
}

.sidebar_ez_toc {
  margin-top: 42px;
}

@media screen and (min-width: 1025px) {
  .single_wrapper .two_column_content.flex-top .sidebar {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .single_wrapper .two_column_content .sidebar .sidebar_ez_toc {
    position: sticky;
    top: 124px;
    z-index: 4;
    max-height: calc(100dvh - 100px - 24px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 {
  padding: 30px 30px;
  margin-left: 0;
  background: #F7F7F7;
  position: relative;
  margin-bottom: 42px;
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-title,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-title {
  color: #686E7D;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-title,
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-title::before,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-title::before {
  content: "INDEX";
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: hsl(240, 2%, 9%);
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-title::before,
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-title::before {
    font-size: 2.2rem;
  }
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-icon-toggle-span,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-icon-toggle-span {
  display: none;
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-heading-level-2,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-heading-level-2 {
  margin-bottom: 20px;
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-heading-level-2:last-child,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-heading-level-2:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-heading-level-2,
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-heading-level-2 {
    font-size: 1.4rem;
  }
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-heading-level-2 a,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-heading-level-2 a {
  font-weight: 700;
  color: hsl(240, 2%, 9%);
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-heading-level-2 a,
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-heading-level-2 a {
    line-height: 1.8;
  }
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-list-level-3,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-list-level-3 {
  margin-left: 20px;
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-list-level-3 a,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-list-level-3 a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #797979;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar .ez-toc-list-level-3 a,
  .single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 .ez-toc-list-level-3 a {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar.toc_close .ez-toc-icon-toggle-span::before,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2.toc_close .ez-toc-icon-toggle-span::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar a:hover,
.single_wrapper .sidebar_ez_toc #ez-toc-container-sidebar-2 a:hover {
  opacity: 0.7;
}

.single_wrapper .left .content .share_card {
  position: relative;
  border: solid 1px #db111a;
  border-radius: 5px;
  margin-top: 54px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.single_wrapper .left .content .share_card a {
  text-decoration: none !important;
}
.single_wrapper .left .content .share_card::before {
  content: "合わせて読みたい記事";
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  background: #db111a;
  color: #fff;
  left: 30px;
  top: -22px;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card::before {
    font-size: 1.4rem;
    padding: 8px 16px;
    top: -16px;
    left: 20px;
  }
}
.single_wrapper .left .content .share_card a {
  padding: 27px 30px 20px 45px;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card a {
    padding: 30px 20px 20px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.single_wrapper .left .content .share_card a:hover {
  color: hsl(240, 2%, 9%);
  opacity: 0.7;
}
.single_wrapper .left .content .share_card .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .detail {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.single_wrapper .left .content .share_card .share_card_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .share_card_title {
    font-size: 1.4rem;
  }
}
.single_wrapper .left .content .share_card .blog_card_meta {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .blog_card_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .left .content .share_card .blog_card_meta time {
  color: #c0c0c0;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 20px;
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .blog_card_meta time {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .blog_card_meta .post-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .left .content .share_card .blog_card_meta img {
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: 10px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .blog_card_meta img {
    width: 25px;
  }
}
.single_wrapper .left .content .share_card .blog_card_meta span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c0c0c0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card .blog_card_meta span {
    font-size: 1.1rem;
  }
}
.single_wrapper .left .content .share_card img {
  width: 164px;
  height: auto;
  aspect-ratio: 164/109;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .left .content .share_card img {
    width: 100%;
    max-width: 350px;
  }
}

.related {
  background: #f7f7f7;
  padding-top: 100px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  .related {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .related {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.related .sub_title {
  font-size: 5.2rem;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .related .sub_title {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
.related h2 {
  color: #db111a;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .related h2 {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
.related .post_list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .related .post_list {
    gap: 30px 20px;
  }
}
.related .post_list li {
  border-bottom: solid 1px #e2e2e2;
  padding-bottom: 25px;
  padding-left: 13px;
  padding-right: 13px;
  width: calc(33.3333333333% - 13px);
}
@media screen and (max-width: 767.9px) {
  .related .post_list li {
    padding: 0;
    border: none;
  }
}
.related .post_list li:nth-child(1),
.related .post_list li:nth-child(4) {
  padding-left: 0;
}
.related .post_list li:nth-child(3),
.related .post_list li:nth-child(6) {
  padding-right: 0;
}
.related .post_list li:nth-child(2),
.related .post_list li:nth-child(5) {
  border-right: solid 1px #e2e2e2;
  border-left: solid 1px #e2e2e2;
  width: 33.3333333333%;
}
@media screen and (max-width: 767.9px) {
  .related .post_list li:nth-child(2),
  .related .post_list li:nth-child(5) {
    border: none;
  }
}
.related .post_list li:nth-child(n+4) {
  border-bottom: none !important;
  padding-top: 31px;
}
@media screen and (max-width: 767.9px) {
  .related .post_list li:nth-child(n+4) {
    padding: 0;
  }
}

/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#scroll-top {
  position: fixed;
  z-index: 2;
  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;
}

.page_content2 {
  padding-top: 120px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_content2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.page_content2 .cont {
  max-width: 1100px;
}

.archive_news_wrapper .cat_news_list {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .cat_news_list {
    margin-bottom: 40px;
  }
}
.archive_news_wrapper .news_list li {
  border-bottom: solid 1px #E2E2E2;
}
.archive_news_wrapper .news_list a {
  padding: 26px 0;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .news_list a {
    padding: 23px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.archive_news_wrapper .news_list a time {
  font-size: 1.8rem;
  font-weight: 600;
  min-width: 100px;
  margin-right: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .news_list a time {
    font-size: 1.5rem;
    min-width: unset;
  }
}
.archive_news_wrapper .news_list a .news_list_category_wrap {
  min-width: 196px;
  gap: 4px;
  margin-right: 16px;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .news_list a .news_list_category_wrap {
    min-width: unset;
    margin-right: 0;
  }
}
.archive_news_wrapper .news_list a .news_list_category_wrap p {
  color: #5C5C5D;
  background: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 100px;
  border: solid 1px #E7E7E7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .news_list a .news_list_category_wrap p {
    padding: 4px 16px;
  }
}
.archive_news_wrapper .news_list a h2 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .news_list a h2 {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    font-size: 1.5rem;
    -webkit-line-clamp: 2;
    margin-top: 10px;
  }
}
.archive_news_wrapper .news_list a:hover {
  opacity: 1;
}
.archive_news_wrapper .news_list a:hover time {
  color: #db111a;
}
.archive_news_wrapper .news_list a:hover .news_list_category_wrap p {
  background: #db111a;
  color: #fff;
  border-color: #db111a;
}
.archive_news_wrapper .news_list a:hover h2 {
  color: #db111a;
}
.archive_news_wrapper .cat_news_list_wrap {
  gap: 9px;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .cat_news_list_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6px;
  }
}
.archive_news_wrapper .cat_news_list_wrap a {
  color: #5C5C5D;
  background: #fff;
  border-radius: 100px;
  border: solid 1px #E7E7E7;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 7px 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .cat_news_list_wrap a {
    font-size: 1.2rem;
    padding: 4px 16px;
  }
}
.archive_news_wrapper .cat_news_list_wrap a.active {
  background: #db111a;
  color: #fff;
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border-color: #db111a;
}
.archive_news_wrapper .cat_news_list_wrap a:hover {
  opacity: 1;
  background: #db111a;
  color: #fff;
  border-color: #db111a;
}
.archive_news_wrapper .pagination {
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .archive_news_wrapper .pagination {
    margin-top: 40px;
  }
}

.single_news_wrapper .cont {
  max-width: 890px;
}
.single_news_wrapper .single_news_title_meta {
  gap: 16px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_title_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_news_wrapper .single_news_title_meta time {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_title_meta time {
    font-size: 1.5rem;
  }
}
.single_news_wrapper .single_news_title_meta .single_news_category {
  gap: 4px;
}
.single_news_wrapper .single_news_title_meta .single_news_category p {
  color: #5C5C5D;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 7px 25px;
  border-radius: 100px;
  border: solid 1px #E7E7E7;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_title_meta .single_news_category p {
    font-size: 1.2rem;
    padding: 4px 16px;
  }
}
.single_news_wrapper h1 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper h1 {
    font-size: 2.1rem;
    margin-bottom: 30px;
  }
}
.single_news_wrapper .single_news_content {
  padding-bottom: 70px;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_content {
    padding-bottom: 40px;
  }
}
.single_news_wrapper .single_news_content p {
  line-height: 2.25;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.single_news_wrapper .single_news_content a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.single_news_wrapper .single_news_content figure {
  margin: 60px 0;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_content figure {
    margin: 30px 0;
  }
}
.single_news_wrapper .single_news_content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.single_news_wrapper .single_news_content h3 {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.single_news_wrapper .single_news_content h4 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .single_news_wrapper .single_news_content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.single_news_wrapper .single_news_content hr {
  border-color: #ccc;
}
.single_news_wrapper .single_news_content .wp-block-group.is-nowrap .flex-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single_news_wrapper .more_btn2 {
  margin-top: 70px;
}

.archive_youtube_wrapper h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .archive_youtube_wrapper h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
.archive_youtube_wrapper h2 span {
  color: #db111a;
}
.archive_youtube_wrapper .description {
  font-weight: 700;
  line-height: 2;
  margin-bottom: 88px;
}
@media screen and (max-width: 1024px) {
  .archive_youtube_wrapper .description {
    max-width: 600px;
  }
}
@media screen and (max-width: 767.9px) {
  .archive_youtube_wrapper .description {
    margin-bottom: 40px;
  }
}
.archive_youtube_wrapper .youtube_list {
  gap: 27px 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
.archive_youtube_wrapper .youtube_list::before {
  content: "";
  width: 129px;
  height: auto;
  aspect-ratio: 129/120;
  position: absolute;
  top: -120px;
  right: -20px;
  background-image: url(../img/page_character.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767.9px) {
  .archive_youtube_wrapper .youtube_list::before {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .archive_youtube_wrapper .youtube_list {
    row-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.archive_youtube_wrapper .youtube_list li {
  height: auto;
  width: 350px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .archive_youtube_wrapper .youtube_list li {
    width: 100%;
    max-width: 350px;
  }
}
.archive_youtube_wrapper .youtube_list a {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 10px;
  border: solid 1px #E7E7E7;
  background: #fff;
  padding: 26px 28px 34px;
}
@media screen and (max-width: 767.9px) {
  .archive_youtube_wrapper .youtube_list a {
    padding: 24px 20px 20px;
  }
}
.archive_youtube_wrapper .youtube_list a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  border: solid 2px transparent;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.archive_youtube_wrapper .youtube_list a .youtube_list_thumb {
  aspect-ratio: 295/166;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
}
.archive_youtube_wrapper .youtube_list a .youtube_list_thumb img {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}
.archive_youtube_wrapper .youtube_list a .youtube_list_title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.75;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.archive_youtube_wrapper .youtube_list a:hover {
  opacity: 1;
  border-color: transparent;
}
.archive_youtube_wrapper .youtube_list a:hover::after {
  border-color: #db111a;
}
.archive_youtube_wrapper .youtube_list a:hover .youtube_list_title {
  color: #db111a;
}
.archive_youtube_wrapper .youtube_list li.is-new a::before, .archive_youtube_wrapper .youtube_list.youtube_list--new-on-first-page li:nth-child(1) a::before, .archive_youtube_wrapper .youtube_list.youtube_list--new-on-first-page li:nth-child(2) a::before {
  content: "NEW";
  font-family: "Alexandria", "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #db111a;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 40px;
  border-radius: 100px;
  z-index: 2;
}

.page_terms {
  padding-top: 120px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_terms {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.page_terms .cont {
  max-width: 1100px;
}
.page_terms p,
.page_terms li {
  font-weight: 400;
  line-height: 2;
}
.page_terms ol {
  list-style: none;
  margin: 0.8em 0;
  padding-left: 0;
  counter-reset: page_terms_ol;
}
.page_terms ol > li {
  counter-increment: page_terms_ol;
  list-style: none;
  margin-left: 24px;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_terms ol > li {
    margin-left: 0;
  }
}
.page_terms ol > li::before {
  content: "（" counter(page_terms_ol) "）";
  position: absolute;
  top: 0;
  left: 0;
}
.page_terms ol ol {
  counter-reset: page_terms_ol;
  margin-top: 0.5em;
}
.page_terms .list_bold li {
  margin-bottom: 20px;
}
.page_terms .list_bold li::before {
  font-weight: 700;
}
.page_terms h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_terms h2 {
    font-size: 2.1rem;
    margin-bottom: 30px;
  }
}
.page_terms h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 70px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .page_terms h3 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
.page_terms .policy_contact {
  padding: 30px 40px;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_terms .policy_contact {
    padding: 14px 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_terms .policy_contact .wp-block-columns {
    row-gap: 0;
    margin-bottom: 10px;
  }
}
.page_terms .policy_contact > p {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_terms .policy_contact > p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_terms .policy_contact .wp-block-column:first-of-type p {
    font-weight: 500;
  }
}
.page_terms .policy_contact div p {
  font-size: 1.4rem;
  line-height: 2.2857142857;
}
@media screen and (max-width: 767.9px) {
  .page_terms .policy_contact div p {
    line-height: 1.6;
  }
}

.page-id-298 .page_terms h2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-id-298 .page_terms h2 {
    margin-bottom: 40px;
  }
}
.page-id-298 .page_terms table tr {
  border-bottom: solid 1px #E1E1E1;
}
.page-id-298 .page_terms table th,
.page-id-298 .page_terms table td {
  padding: 34px 0 !important;
  border: none !important;
  font-size: 1.8rem;
  vertical-align: text-top !important;
}
@media screen and (max-width: 767.9px) {
  .page-id-298 .page_terms table th,
  .page-id-298 .page_terms table td {
    font-size: 1.4rem;
  }
}
.page-id-298 .page_terms table th {
  width: 220px !important;
}
@media screen and (max-width: 767.9px) {
  .page-id-298 .page_terms table th {
    padding: 10px 0 5px !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 767.9px) {
  .page-id-298 .page_terms table td {
    padding: 0 0 10px !important;
  }
}

.not_found_page {
  padding-top: 240px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .not_found_page {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
.not_found_page img {
  display: block;
  margin: 0 auto 76px;
  max-width: 80%;
  width: 568px;
}
.not_found_page p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .not_found_page p {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

.page_contact {
  padding-top: 210px;
  padding-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page_contact {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.page_contact .cont {
  max-width: 1100px;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .page_contact .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.page_contact .contact_form_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .page_contact .contact_form_detail {
    margin-top: 0;
  }
}
.page_contact .contact_form_detail h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail h1 {
    font-size: 2.4rem;
  }
}
.page_contact .contact_form_detail .description {
  font-weight: 400;
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .description {
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
.page_contact .contact_form_detail .contact_reasons {
  position: relative;
  background: #fff;
  border-radius: 3px;
  padding: 32px 40px 56px;
  margin-bottom: 27px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_reasons {
    padding: 30px 20px;
  }
}
.page_contact .contact_form_detail .contact_reasons::before {
  content: "";
  width: 108px;
  height: auto;
  aspect-ratio: 108/110;
  position: absolute;
  top: -36px;
  right: -6px;
  background-image: url(../img/page_character2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .page_contact .contact_form_detail .contact_reasons::before {
    top: -76px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_reasons::before {
    top: -60px;
    width: 85px;
  }
}
.page_contact .contact_form_detail .contact_reasons h2 {
  color: #AE1720;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_reasons h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .page_contact .contact_form_detail .contact_reasons .contact_reasons_list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.page_contact .contact_form_detail .contact_reasons .contact_reasons_list li {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_reasons .contact_reasons_list li {
    margin-bottom: 16px;
  }
}
.page_contact .contact_form_detail .contact_reasons .contact_reasons_list li:last-child {
  margin-bottom: 0;
}
.page_contact .contact_form_detail .contact_reasons .contact_reasons_list p:nth-child(1) {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_reasons .contact_reasons_list p:nth-child(1) {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.page_contact .contact_form_detail .contact_reasons .contact_reasons_list p:nth-child(2) {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 46px;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_reasons .contact_reasons_list p:nth-child(2) {
    margin-left: 40px;
  }
  .page_contact .contact_form_detail .contact_reasons .contact_reasons_list p:nth-child(2) br {
    display: none;
  }
}
.page_contact .contact_form_detail .contact_supporter {
  background: #fff;
  border-radius: 3px;
  padding: 40px 40px 67px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_supporter {
    padding: 30px 20px 40px;
  }
}
.page_contact .contact_form_detail .contact_supporter h2 {
  color: #AE1720;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_contact .contact_form_detail .contact_supporter h2 {
    font-size: 1.8rem;
  }
}
.page_contact .contact_form_detail .contact_supporter img {
  display: block;
  width: 405px;
  max-width: 100%;
  margin-inline: auto;
}

.form {
  width: 520px;
  max-width: 100%;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  padding: 40px 40px 46px;
}
@media screen and (max-width: 1024px) {
  .form {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .form {
    padding: 30px 20px 40px;
  }
}
.form .form_description {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.form .form_description span {
  color: #AE1720;
  display: inline-block;
  margin-right: 4px;
}
.form .check {
  display: block;
  font-size: 1.4rem;
  color: #AE1720;
  font-weight: 700;
  margin-left: 5px;
  display: inline-block;
}
.form table {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.form table tbody {
  display: block;
}
.form table tr {
  margin-bottom: 24px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr {
    margin-bottom: 16px;
  }
}
.form table tr th {
  margin-bottom: 12px;
  display: block;
}
.form table tr th p {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.form table tr .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.form table tr td {
  width: 100%;
  display: block;
  font-size: 1.5rem;
  line-height: 2;
}
.form table tr td br {
  display: none;
}
.form table tr td input[type=text],
.form table tr td input[type=email],
.form table tr td input[type=tel],
.form table tr td textarea {
  font-weight: 500;
  width: 100%;
  font-size: 1.6rem;
  padding: 12px 20px;
  background: #f5f5f5;
  border-radius: 3px;
  border: none;
  font-family: "LINE Seed JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-left: 0;
}
.form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder {
  color: #BFBFC3;
  font-size: 1.3rem;
}
.form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder {
  color: #BFBFC3;
  font-size: 1.3rem;
}
.form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder {
  color: #BFBFC3;
  font-size: 1.3rem;
}
.form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder {
  color: #BFBFC3;
  font-size: 1.3rem;
}
.form table tr td input[type=text]::placeholder,
.form table tr td input[type=email]::placeholder,
.form table tr td input[type=tel]::placeholder,
.form table tr td textarea::placeholder {
  color: #BFBFC3;
  font-size: 1.3rem;
}
.form table tr td textarea {
  height: 200px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr td textarea {
    height: 160px;
  }
}
.form table tr td .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form table tr td .wpcf7-checkbox span {
  font-size: 1.4rem;
  font-weight: 400;
  vertical-align: middle;
}
.form table tr td.flex {
  gap: 12px 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form table tr td.flex label {
  margin-right: 12px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form table tr td.flex div {
  width: 48%;
}
@media screen and (max-width: 767.9px) {
  .form table tr td.flex div {
    width: 100%;
  }
}
.form table tr td.flex div .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form table tr select {
  width: 100%;
  background: #f5f5f5;
  border-radius: 3px;
  border: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 12px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 13px;
  color: hsl(240, 2%, 9%);
}
.form table tr .sp-block {
  font-size: 1.3rem;
}
.form input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}
.form input[type=checkbox]:checked {
  border-color: #dd1414;
  background-color: #f5f5f5;
  background-image: url(../img/contact_check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px auto;
}
.form input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(219, 17, 26, 0.45);
  outline-offset: 2px;
}
.form .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check {
  padding-top: 28px;
  border-top: solid 1px #E2E2E2;
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check {
    margin-top: 20px;
    padding-top: 16px;
  }
}
.form .privacy_policy_check .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check .wpcf7-list-item-label {
  font-weight: 400;
}
.form .privacy_policy_check a {
  text-decoration: underline;
}
.form .privacy_policy_check a,
.form .privacy_policy_check p {
  font-size: 1.4rem;
  font-weight: 700;
}
.form .privacy_policy_check .wpcf7-list-item {
  vertical-align: middle;
}
.form .wpcf7-response-output {
  font-size: 1.5rem;
}
.form p.submit {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 48px;
}
.form p.submit br {
  display: none;
}
.form p.submit .wpcf7-spinner {
  position: absolute;
}
.form p.submit input {
  width: 100%;
  height: 100%;
  background: #db111a;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
}
.form p.submit input:hover {
  background: hsl(240, 2%, 9%);
}
.form p.submit input:disabled {
  background: #BFBFC3;
  pointer-events: none;
}
.form p.submit input:disabled:hover {
  background: #BFBFC3;
}
.form p.submit2 {
  margin-bottom: 16px;
}
.form p.submit2 input {
  background: #686E7D;
  border: solid 2px #686E7D;
}
.form p.submit2 input:hover {
  background: #fff;
  color: #686E7D;
}

.page-id-15 .form table tr td p {
  color: #A4A4A4;
  font-size: 1.4rem;
  font-weight: 700;
}

.thanks_wrap {
  padding: 260px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap {
    padding: 160px 0 60px;
  }
}
.thanks_wrap img {
  display: block;
  margin: 0 auto 50px;
  width: 880px;
  max-width: 100%;
}
.thanks_wrap h1 {
  font-size: 3.2rem;
  color: #db111a;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap h1 {
    font-size: 2.1rem;
    margin-bottom: 30px;
  }
}
.thanks_wrap p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  margin-bottom: 66px;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: left;
  }
}

.archive_service_documents h2 {
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents h2 {
    font-size: 2.2rem;
  }
}
.archive_service_documents .description {
  margin-bottom: 50px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .description {
    margin-bottom: 30px;
  }
}
.archive_service_documents ul {
  gap: 36px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul {
    gap: 20px;
  }
}
.archive_service_documents ul li {
  width: calc(50% - 18px);
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul li {
    width: 100%;
  }
}
.archive_service_documents ul .document_card__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.archive_service_documents ul .img {
  background: #fff;
  padding: 56px 20px 70px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul .img {
    padding: 30px 20px;
  }
}
.archive_service_documents ul .img img {
  max-width: 90%;
  width: 396px;
  height: auto;
  margin: 0 auto;
  display: block;
  aspect-ratio: 396/222;
  -webkit-box-shadow: 5px 9px 17px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 5px 9px 17px 0 rgba(0, 0, 0, 0.25);
}
.archive_service_documents ul .document_card__box {
  background: hsl(240, 2%, 9%);
  padding: 32px 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul .document_card__box {
    padding: 20px 20px;
  }
}
.archive_service_documents ul .document_card__box .document_card__title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul .document_card__box .document_card__title {
    font-size: 1.6rem;
  }
}
.archive_service_documents ul .document_card__box .document_card__sub {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul .document_card__box .document_card__sub {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.archive_service_documents ul .document_card__actions {
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul .document_card__actions {
    margin-top: 20px;
  }
}
.archive_service_documents ul .document_card__actions span {
  display: inline-block;
  border-radius: 7px;
  background: #db111a;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.0769230769;
  padding: 12px 18px 12px 21px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents ul .document_card__actions span {
    font-size: 1.2rme;
    padding: 6px 16px 6px 18px;
  }
}
.archive_service_documents ul a.document_card__thumb:hover {
  opacity: 1;
}
.archive_service_documents ul a.document_card__thumb:hover .document_card__actions span {
  background: #fff;
  color: hsl(240, 2%, 9%);
}
.archive_service_documents .archive_service_documents__section--free {
  margin-top: 170px;
  background: #fff;
  padding: 100px 0 160px;
  border-radius: 80px 80px 0 0;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free {
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
    padding: 60px 0;
  }
}
.archive_service_documents .archive_service_documents__section--free ul {
  gap: 36px 24px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free ul {
    gap: 20px;
  }
}
.archive_service_documents .archive_service_documents__section--free ul li {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free ul li {
    width: 100%;
  }
}
.archive_service_documents .archive_service_documents__section--free ul .document_card__thumb {
  border: solid 1px #E7E7E7;
}
.archive_service_documents .archive_service_documents__section--free ul .img {
  background: #F8F8F8;
  padding: 42px 20px 48px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free ul .img {
    padding: 30px 20px;
  }
}
.archive_service_documents .archive_service_documents__section--free ul .img img {
  width: 259px;
  aspect-ratio: 259/145;
}
.archive_service_documents .archive_service_documents__section--free ul .document_card__box {
  background: #AE1720;
  padding: 20px 28px 25px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free ul .document_card__box {
    padding: 20px;
  }
}
.archive_service_documents .archive_service_documents__section--free ul .document_card__box .document_card__title {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free ul .document_card__box .document_card__title {
    font-size: 1.5rem;
  }
}
.archive_service_documents .archive_service_documents__section--free ul .document_card__box .document_card__sub {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .archive_service_documents .archive_service_documents__section--free ul .document_card__box .document_card__sub {
    margin-bottom: 12px;
  }
}
.archive_service_documents .archive_service_documents__section--free ul .document_card__box .document_card__actions span {
  color: hsl(240, 2%, 9%);
  background: #fff;
  font-size: 1.1rem;
  padding-top: 7px;
  padding-bottom: 7px;
}
.archive_service_documents .archive_service_documents__section--free ul a:hover .document_card__actions span {
  color: #fff;
  background: hsl(240, 2%, 9%);
}

.post-type-archive-service-documents .page_content2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .post-type-archive-service-documents .page_content2 {
    padding-bottom: 30px;
  }
}

.single-documents h2 {
  color: #AE1720;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.single-documents .single-documents__list {
  margin-bottom: 44px;
}
.single-documents .single-documents__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
.single-documents .single-documents__list li::before {
  content: "";
  width: 14px;
  height: auto;
  aspect-ratio: 14/12;
  background-image: url(../img/document_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  line-height: 2;
}
.single-documents .single-documents__imgs {
  gap: 12px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.single-documents .single-documents__imgs .single-documents__img {
  width: calc((100% - 10px) / 2);
  height: auto;
  aspect-ratio: 254/143;
}
.single-documents .single-documents__imgs .single-documents__img img {
  display: block;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=common.css.map */