@charset "UTF-8";
/* ============================
  * Initial setting
  * ========================= */
:root {
  --black: #202020;
  --base-color: #f2f1f1;
  --orange: #ed741c;
  font-size: 16px;
}

/* ============================
* common / conpornent
* ========================= */
.breadcrumb__list {
  display: flex;
  margin-bottom: 60px;
}
.breadcrumb__item {
  background-image: url("../images/ico_breadcrumb.svg");
  background-repeat: no-repeat;
  background-position: center right;
  padding-right: 30px;
  margin-right: 20px;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.6;
}
.breadcrumb__top .breadcrumb__item:last-child {
  display: none;
}
.breadcrumb__bottom {
  margin-bottom: 250px;
  background: linear-gradient(91.62deg, rgba(255, 255, 255, 0.14) 1.57%, rgba(255, 255, 255, 0) 99.91%, rgba(255, 255, 255, 0.04) 99.91%);
  border-top: 1px solid #797979;
  border-bottom: 1px solid #797979;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.breadcrumb__bottom .breadcrumb__list {
  display: flex;
  padding: 40px 0;
  margin-bottom: 0;
}
.breadcrumb__bottom .breadcrumb__item {
  background-image: url("../images/ico_breadcrumb_white.svg");
  background-repeat: no-repeat;
  background-position: center right;
  padding-right: 30px;
  margin-right: 20px;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.6;
}
.breadcrumb__bottom .breadcrumb__item:last-child {
  background-image: none;
}
.breadcrumb__bottom .breadcrumb__item a {
  color: #fff;
  text-decoration: underline;
}
.breadcrumb__bottom .breadcrumb__item span {
  color: #fff;
  font-weight: bold;
}

.page__title {
  position: relative;
  padding: 8px 0 8px 32px;
}
.page__title::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  left: -14px;
  top: 0;
  background: var(--orange);
}
.page__title .ja {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}
.page__title .ja::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page__title .en {
  font-size: 6.25rem;
  line-height: 1;
  font-weight: 200;
  display: block;
  font-family: "Jost", sans-serif;
  mix-blend-mode: difference;
  color: #d5d5d5;
}
.page__title-child-wrap {
  position: absolute;
  bottom: 100px;
}
.page__title-child-wrap .category {
  background: var(--black);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  padding: 8px;
  max-width: 80vw;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-left: 12px;
  margin-bottom: 12px;
}
.page__title-child-wrap .title span {
  margin-left: -32px;
  background: var(--black);
  font-size: 2.875rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  padding: 0px 20px 0px 30px;
  max-width: 80vw;
  display: inline-block;
}

.page__name {
  position: sticky;
  top: 80px;
  right: 0;
  text-align: right;
  z-index: 2;
  mix-blend-mode: difference;
  color: #fff;
}
.page__name .container {
  position: absolute;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
}
.page__name .wrap {
  text-orientation: sideways;
  writing-mode: vertical-rl;
  display: inline-block;
  text-align: left;
  border-top: 1px solid #fff;
  padding-top: 20px;
  position: absolute;
  right: 24px;
}
.page__name .wrap .ja {
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 400;
  margin-left: 4px;
}
.page__name .wrap .en {
  display: block;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}
.page__name .wrap .en small {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 400;
  color: rgba(32, 32, 32, 0.6);
}

.main__wrap {
  background: var(--base-color);
  padding-bottom: 200px;
}
.main__cover {
  padding: 40px 0 0;
  position: relative;
  z-index: 0;
}
.main__cover::before {
  content: "";
  display: block;
  width: 70%;
  height: 600px;
  background: #fff;
  position: absolute;
  top: 0px;
  z-index: -1;
}
.main__cover.bg-max::before {
  content: "";
  height: calc(100% + 80px);
}

@media screen and (max-width: 991px) {
  .page__title .en {
    font-size: 10vw;
  }
  .page__title-child-wrap .title span {
    font-size: 1.375rem;
    line-height: 2;
    font-weight: 700;
  }
  .main__wrap {
    background: var(--base-color);
    padding-bottom: 160px;
  }
  .main__cover::before {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    margin-bottom: 24px;
    padding-left: 20px;
    overflow: scroll;
    padding-bottom: 16px;
  }
  .breadcrumb__item span {
    white-space: nowrap;
  }
  .breadcrumb__bottom {
    margin-bottom: 0;
  }
  .breadcrumb__bottom .breadcrumb__list {
    padding: 30px 20px;
  }
  .page__title::before {
    left: -2px;
  }
  .page__title .ja {
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
  }
  .page__title .en {
    font-size: 12vw;
  }
  .page__name {
    display: none;
  }
  .main__wrap {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumb__list {
    padding-left: 0;
  }
  .breadcrumb__bottom .breadcrumb__list {
    padding: 30px 0px;
  }
  .page__title {
    padding: 8px 0 8px 20px;
  }
  .page__title .ja {
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
  }
  .page__title .en {
    font-size: 14vw;
  }
  .main__cover.bg-max::before {
    height: calc(100% + 40px);
  }
}
/* ============================
    * page & section
* ========================= */
/*
 * ============ メインビジュアル（共通） ============
 */
.mainvisual {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  z-index: 1;
  position: relative;
  background: var(--base-color);
}
.mainvisual::after {
  content: "";
  display: block;
  width: 70%;
  height: 36%;
  background: #fff;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.mainvisual__img {
  margin-top: -50px;
  width: 80vw;
  max-height: 60vh;
  overflow: hidden;
  margin-left: auto;
  margin-bottom: 0;
}
.mainvisual__img img {
  height: 100%;
}

@media (max-height: 799px) {
  .mainvisual {
    justify-content: flex-start;
    height: auto;
    padding-top: 120px;
  }
  .mainvisual__img {
    height: 500px;
  }
}
@media screen and (min-width: 1600px) {
  .mainvisual__img {
    width: 65vw;
  }
}
@media screen and (max-width: 991px) {
  .mainvisual {
    justify-content: flex-start;
    height: auto;
  }
  .mainvisual__img {
    width: 80vw;
  }
  .mainvisual::after {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual {
    height: auto;
  }
  .mainvisual__img {
    width: 90%;
    height: auto;
    margin-top: -5vw;
  }
}
@media screen and (max-width: 575px) {
  .mainvisual {
    overflow: hidden;
  }
  .mainvisual__img {
    margin-top: -8vw;
    padding-left: 30px;
    width: 170%;
  }
}
/*
 * ============ 私たちについて ============
 */
.page__about .main__wrap {
  padding-bottom: 0;
}
.page__about .promise__section {
  position: relative;
  margin-bottom: 200px;
}
.page__about .promise__list {
  counter-reset: unset;
}
.page__about .promise__list::before {
  content: "";
  display: block;
  width: 70%;
  height: calc(100% - 140px);
  background: rgb(231, 231, 231);
  position: absolute;
  right: 0;
  margin-top: 40px;
  z-index: -1;
}
.page__about .promise__item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  counter-increment: num;
}
.page__about .promise__item:last-child {
  margin-bottom: 0;
}
.page__about .promise__img {
  width: 400px;
  height: 320px;
}
.page__about .promise__img img {
  height: 100%;
}
.page__about .promise__summary {
  flex: 1;
  padding-right: 40px;
  position: relative;
}
.page__about .promise__summary::before {
  content: counter(num) ".";
  position: absolute;
  right: calc(100% + 12px);
  top: -16px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  font-weight: 100;
  font-style: italic;
  color: var(--orange);
}
.page__about .promise__summary h3 {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--orange);
}
.page__about .promise__summary p {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
}
.page__about .member__section {
  padding: 40px 0 80px;
}
.page__about .member__list {
  margin-bottom: 32px;
}
.page__about .member__item {
  position: relative;
  margin-bottom: 32px;
  padding-top: 30px;
}
.page__about .member__item.is-photo .member__item-inner {
  background-image: url("../images/bg_member_photo.webp");
}
.page__about .member__item.no-photo .member__item-inner {
  background-image: url("../images/img_blank.png");
}
.page__about .member__item-inner {
  padding-top: 56.25%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page__about .member__item-inner::after {
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 8px;
  left: 8px;
  border: 1px solid #fff;
  mix-blend-mode: difference;
  z-index: 1;
  pointer-events: none;
}
.page__about .member__item h3 {
  position: absolute;
  right: 0;
  bottom: 16px;
  z-index: 12;
}
.page__about .member__item h3 span {
  background: #000;
  font-size: 1.25vw;
  color: #fff;
  padding: 4px 12px 4px 4px;
  font-weight: bold;
  background-blend-mode: unset;
}
.page__about .member__summary {
  z-index: 12;
  position: absolute;
  bottom: 54px;
  right: 0;
  text-align: right;
  color: #fff;
  mix-blend-mode: difference;
}
.page__about .member__summary .post__list {
  padding-right: 12px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 1px solid;
  font-size: 1.05vw;
}
.page__about .member__img-wrap {
  width: 70%;
  position: absolute;
  bottom: 0;
  z-index: 11;
}
.page__about .member__img-wrap img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1500px) {
  .page__about .member__summary .post__list {
    font-size: 1rem;
  }
  .page__about .member__item h3 span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1199px) {
  .page__about .promise__img {
    width: 320px;
    height: 280px;
  }
  .page__about .member__summary .post__list {
    font-size: 1.5vw;
  }
  .page__about .member__item h3 span {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 991px) {
  .page__about .promise__img {
    width: 320px;
  }
  .page__about .promise__summary::before {
    top: -8px;
    font-size: 40px;
    right: calc(100% + 24px);
  }
  .page__about .member__summary {
    bottom: 7.4vw;
  }
  .page__about .member__summary .post__list {
    font-size: 2vw;
  }
  .page__about .member__item h3 {
    bottom: 1.4vw;
  }
  .page__about .member__item h3 span {
    font-size: 2.85vw;
  }
}
@media screen and (max-width: 767px) {
  .page__about .promise__section {
    margin-bottom: 120px;
  }
  .page__about .promise__list {
    counter-reset: unset;
  }
  .page__about .promise__list::before {
    display: none;
  }
  .page__about .promise__item {
    flex-flow: column;
    align-items: flex-start;
  }
  .page__about .promise__summary {
    padding-right: 0;
  }
  .page__about .promise__summary::before {
    right: calc(100% + 8px);
  }
  .page__about .promise__img {
    width: 100%;
    max-width: 400px;
    margin: 20px 0 0;
  }
  .page__about .member__section .section__title-sub {
    margin-bottom: 20px;
  }
  .page__about .member__list {
    flex-flow: nowrap;
    overflow: scroll;
    margin-left: -32px;
    margin-right: -12px;
    padding-left: 26px;
  }
  .page__about .member__item {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding-top: 7vw;
  }
  .page__about .member__summary .post__list {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 575px) {
  .page__about .promise__summary::before {
    right: auto;
    left: 0px;
    color: rgba(204, 204, 204, 0.5);
    font-size: 180px;
    top: -20px;
    z-index: -1;
  }
  .page__about .member__img-wrap {
    width: 65%;
  }
  .page__about .member__summary {
    bottom: 11.4vw;
  }
  .page__about .member__summary .post__list {
    font-size: 3.6vw;
  }
  .page__about .member__item h3 {
    bottom: 1.4vw;
  }
  .page__about .member__item h3 span {
    font-size: 5vw;
  }
}
/*
 * ============ 会社案内 ============
 */
.page__company .company__menu-list {
  padding-left: 20px;
}
.page__company .company__menu-item {
  position: relative;
  margin-bottom: 64px;
}
.page__company .company__menu-item:hover .company__menu-img {
  filter: grayscale(0%) contrast(1);
  transition: 0.2s ease;
}
.page__company .company__menu-item .label-en {
  position: absolute;
  color: #fff;
  mix-blend-mode: difference;
  right: 16px;
  top: 12px;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 200;
  font-size: 6vw;
  font-family: "Jost", sans-serif;
}
.page__company .company__menu-item .label-ja {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  background: #202020;
  padding: 4px 16px;
  margin-bottom: 8px;
}
.page__company .company__menu-item a {
  height: 100%;
}
.page__company .company__menu-img {
  filter: grayscale(1) contrast(1.4);
  transition: 0.4s ease;
}

@media screen and (min-width: 1400px) {
  .page__company .company__menu-item .label-en {
    font-size: 80px;
  }
}
@media screen and (max-width: 991px) {
  .page__company .company__menu-item .label-en {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 500;
  }
  .page__company .company__menu-item .label-ja {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .page__company .company__menu-img {
    filter: grayscale(0) contrast(1);
    transition: 0.4s ease;
  }
}
@media screen and (max-width: 767px) {
  .page__company .company__menu-item {
    margin-bottom: 40px;
  }
  .page__company .company__menu-item .label-en {
    font-size: 7vw;
  }
  .page__company .company__menu-item .label-ja {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .page__company .company__menu-list {
    padding-left: 18px;
  }
  .page__company .company__menu-item {
    padding: 0;
  }
  .page__company .company__menu-item .label-en {
    font-size: 14vw;
  }
  .page__company .company__menu-img {
    height: 200px;
    overflow: hidden;
  }
  .page__company .company__menu-img img {
    height: 100%;
  }
}
/*
 * ============ 代表メッセージ ============
 */
.page__message {
  position: relative;
}
.page__message .message__body h2 {
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 60px;
}
.page__message .message__body div,
.page__message .message__body p {
  margin-bottom: 30px;
}
.page__message .message__body .signature__wrap {
  margin-top: 80px;
}
.page__message .message__body .signature__company {
  margin-bottom: 0px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 300;
}
.page__message .message__body .signature__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page__message .message__body .signature__inner .post {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 700;
  color: rgba(32, 32, 32, 0.609);
}
.page__message .message__body .signature__inner .name {
  font-size: 1.75rem;
  line-height: 2;
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .page__message .message__body {
    padding: 0;
  }
  .page__message .message__body h2 {
    margin-bottom: 40px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 700;
  }
  .page__message .message__body div,
  .page__message .message__body p {
    font-size: 14px;
  }
  .page__message .message__body .signature__inner .name {
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 700;
  }
}
/*
 * ============ 企業情報 ============
 */
.page__overview {
  position: relative;
}
.page__overview .main__wrap {
  padding-bottom: 60px;
}
.page__overview .overview__section {
  margin-bottom: 200px;
}
.page__overview .overview__section .table__wrap .cover {
  width: 100%;
  max-width: 300px;
  display: block;
  margin-top: 8px;
}
.page__overview .address__section {
  color: #fff;
}
.page__overview .address__title {
  position: relative;
  margin-bottom: 40px;
  padding-left: 12px;
}
.page__overview .address__title::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: -12px;
  background: #fff;
}
.page__overview .address__title .ja {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
}
.page__overview .address__title .en {
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  font-family: "Jost", sans-serif;
}
.page__overview .address__body {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  padding-left: 12px;
}
.page__overview .address__wrap {
  margin-bottom: 120px;
  position: relative;
  z-index: 0;
}
.page__overview .address__wrap::before {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--black);
  z-index: -1;
}
.page__overview .address__wrap .map__wrap {
  padding-top: 56.25%;
  position: relative;
}
.page__overview .address__wrap .map__wrap iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -moz-filter: grayscale(100%) contrast(120%);
  -ms-filter: grayscale(100%) contrast(120%);
  -o-filter: grayscale(100%) contrast(120%);
  filter: grayscale(100%) contrast(120%);
}

@media screen and (min-width: 1400px) {
  .page__overview .address__wrap .map__wrap {
    padding: 0;
  }
  .page__overview .address__wrap .map__wrap iframe {
    position: static;
    height: 450px;
  }
}
@media screen and (max-width: 991px) {
  .page__overview .address__wrap::before {
    top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .page__overview .overview__section {
    margin-bottom: 140px;
    padding-left: 20px;
  }
  .page__overview .address__body {
    margin-bottom: 16px;
  }
  .page__overview .address__wrap {
    padding-left: 20px;
  }
  .page__overview .address__wrap::before {
    height: 70%;
  }
  .page__overview .address__title {
    margin-bottom: 20px;
    margin-left: -8px;
  }
}
@media screen and (max-width: 575px) {
  .page__overview .overview__section {
    padding-left: 0;
  }
  .page__overview .address__wrap {
    padding-left: 0;
  }
  .page__overview .address__wrap::before {
    width: 100%;
  }
  .page__overview .address__wrap .map__wrap {
    padding-top: 100%;
  }
  .page__overview .address__body {
    padding-left: 20px;
  }
  .page__overview .address__title {
    margin-left: 0;
    padding-left: 20px;
  }
  .page__overview .address__title::before {
    left: 0px;
    height: 90%;
  }
}
/*
 * ============　事業紹介 ============
 */
.page__division .main__wrap {
  padding-bottom: 0;
}
.page__division .division__section {
  margin-bottom: 80px;
}
.page__division .division__top {
  margin-bottom: 200px;
}
.page__division .division__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page__division .division__top-summary {
  width: 520px;
  margin: auto;
}
.page__division .division__top-summary h2 {
  font-size: 2.125rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 20px;
}
.page__division .division__top-summary h2 span {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--orange);
  margin: 0 10px;
  font-family: "Jost", sans-serif;
}
.page__division .division__top-img {
  width: auto;
  max-width: 560px;
  flex: 1;
}
.page__division .division__item {
  margin-bottom: 200px;
  background: #f2f1f1;
  padding-bottom: 40px;
}
.page__division .division__item:last-child {
  margin-bottom: 120px;
}
.page__division .division__item:nth-of-type(2) .division__detail-summary {
  order: 2;
  padding-right: 0;
  padding-left: 40px;
}
.page__division .division__item:nth-of-type(2) .division__detail-img {
  order: 1;
}
.page__division .division__item:nth-of-type(2) .division__detail-img .decoration__text {
  right: auto;
  left: 0;
}
.page__division .division__detail {
  display: flex;
  justify-content: space-between;
}
.page__division .division__detail-summary {
  flex: 1;
  padding-right: 40px;
}
.page__division .division__detail-summary h3 {
  margin-bottom: 20px;
}
.page__division .division__detail-summary h3 .en {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  font-family: "abel", sans-serif;
}
.page__division .division__detail-summary h3 .ja {
  background: var(--black);
  display: inline-block;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.page__division .division__detail-summary p {
  margin-bottom: 40px;
}
.page__division .division__detail-img {
  width: 540px;
  height: 400px;
  position: relative;
}
.page__division .division__detail-img::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 100%;
  border: 1px solid #fff;
  mix-blend-mode: difference;
  position: absolute;
  top: 10px;
  left: 30px;
}
.page__division .division__detail-img img {
  height: 100%;
}
.page__division .division__detail-img .decoration__text {
  font-size: 5rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  position: absolute;
  text-align: right;
  bottom: -30px;
  mix-blend-mode: difference;
  color: #fff;
  right: 0;
}
.page__division .about__section {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #eee;
  position: relative;
  background-image: url("../images/bg_about.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  background-blend-mode: overlay;
}
.page__division .about__label {
  margin-bottom: 60px;
}
.page__division .about__label .top__title-label .en {
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #ffffff;
  mix-blend-mode: difference;
  letter-spacing: 0.1em;
  margin-bottom: -40px;
  mix-blend-mode: unset;
}
.page__division .about__catch {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 300;
}
.page__division .about__catch span {
  margin: 0 8px;
  background: linear-gradient(90.51deg, #5d5fef 30.58%, #1cedc7 92.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
}
.page__division .about__inner {
  position: relative;
}
.page__division .about__slide {
  overflow: visible;
  margin-bottom: 12px;
}
.page__division .about__slide .slide__list {
  transition-timing-function: linear;
}
.page__division .about__slide .slide__list img {
  filter: brightness(0.7);
}
.page__division .about__text {
  position: relative;
  padding-top: 20px;
  padding-left: 30px;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 52px;
  width: 100%;
  max-width: 920px;
  mix-blend-mode: luminosity;
}
.page__division .about__text h3 {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--orange);
}
.page__division .about__text p {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .page__division .division__top-img {
    width: 450px;
  }
  .page__division .about__label {
    font-size: 20px;
  }
  .page__division .about__label .top__title-label .en {
    font-size: 90px;
  }
  .page__division .about__catch {
    font-size: 20px;
  }
  .page__division .about__catch span {
    font-size: 26px;
  }
  .page__division .about__summary {
    padding-right: 40px;
  }
  .page__division .about__frame {
    width: 380px;
  }
}
@media screen and (max-width: 991px) {
  .page__division .division__top-summary {
    width: 480px;
  }
  .page__division .division__top-summary h2 {
    font-size: 24px;
  }
  .page__division .division__top-summary h2 span {
    font-size: 38px;
    margin: 0 6px;
  }
  .page__division .division__top-summary p {
    font-size: 15px;
  }
  .page__division .division__top-img {
    width: 36%;
  }
  .page__division .division__item {
    margin-bottom: 80px;
  }
  .page__division .division__item:nth-of-type(2) .division__detail {
    flex-flow: column;
  }
  .page__division .division__item:nth-of-type(2) .division__detail-summary {
    order: 2;
    padding-right: 0;
    padding-left: 0;
  }
  .page__division .division__item:nth-of-type(2) .division__detail-img {
    order: 1;
  }
  .page__division .division__item:nth-of-type(2) .division__detail-img .decoration__text {
    right: 0;
    left: auto;
  }
  .page__division .division__detail {
    flex-flow: column-reverse;
  }
  .page__division .division__detail-summary {
    padding-right: 0;
  }
  .page__division .division__detail-img {
    font-size: 10vw;
    margin-bottom: 60px;
  }
  .page__division .about__section {
    padding-top: 80px;
  }
  .page__division .about__box {
    flex-flow: column-reverse;
    gap: 40px;
  }
  .page__division .about__summary {
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page__division .division__top-inner {
    flex-direction: column-reverse;
  }
  .page__division .division__top-summary {
    text-align: center;
    margin-top: 30px;
    max-width: 480px;
    width: 100%;
  }
  .page__division .division__top-summary h2 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
  }
  .page__division .division__top-img {
    max-width: 400px;
    width: 100%;
  }
  .page__division .division__item:last-child {
    margin-bottom: 40px;
  }
  .page__division .division__item:nth-of-type(2) .division__detail {
    flex-flow: column;
  }
  .page__division .division__item:nth-of-type(2) .division__detail-summary {
    padding-left: 0;
  }
  .page__division .division__item:nth-of-type(2) .division__detail-img .decoration__text {
    font-size: 10vw;
  }
  .page__division .division__detail-img {
    width: calc(100% - 20px);
    height: 300px;
  }
  .page__division .division__detail-img .decoration__text {
    font-size: 12vw;
  }
  .page__division .about__label {
    margin-bottom: 30px;
  }
  .page__division .about__slide .slide__list img {
    filter: brightness(1);
  }
  .page__division .about__inner #division_about_slide2 {
    display: none;
  }
  .page__division .about__text {
    padding: 0 24px;
    margin-top: 30px;
    position: initial;
    transform: unset;
    background: none;
    mix-blend-mode: unset;
  }
}
@media screen and (max-width: 575px) {
  .page__division .division__top-inner {
    padding-left: 0;
  }
  .page__division .division__top-img {
    max-width: 340px;
  }
  .page__division .division__top-summary {
    text-align: left;
  }
  .page__division .division__top-summary h2 {
    text-align: center;
    line-height: 1.5;
  }
  .page__division .division__item {
    margin-bottom: 40px;
  }
  .page__division .about__label .top__title-label .en {
    font-size: 50px;
    margin-bottom: 0;
  }
  .page__division .about__summary {
    padding-right: 0;
  }
  .page__division .about__text {
    padding: 0;
  }
  .page__division .about__text p {
    font-size: 15px;
  }
  .page__division .about__catch {
    font-size: 16px;
  }
  .page__division .about__catch span {
    font-size: 18px;
    margin: 0;
  }
  .page__division .about__frame .about__label {
    margin-bottom: 40px;
  }
}
/*
 * ============ 事業紹介詳細 ============
 */
.division__nav {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  margin-top: 200px;
}
.division__nav-img {
  position: absolute;
  width: 60%;
  right: 0;
  top: 0;
  height: 100%;
}
.division__nav-img img {
  height: 100%;
  filter: brightness(0.6);
}
.division__nav .division__item {
  position: relative;
  padding: 40px 32px 32px 60px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.division__nav .division__item::after {
  content: "";
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid #202020;
  pointer-events: none;
}
.division__nav .division__item .name {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
.division__nav .division__item .name .en {
  font-size: 2.375rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  background: #202020;
  color: #fff;
  font-style: italic;
}
.division__nav .division__item .name .ja {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 3px;
}
.division__nav .division__item .more__btn {
  margin-top: 12px;
}
.division__nav .division__item .more__btn-link {
  mix-blend-mode: unset;
  color: #202020;
}
.division__nav .division__item .more__btn-link::after {
  background: #202020;
}

.page__division-detail .page__title .en small {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 500;
}
.page__division-detail .division__detail-title {
  font-size: 1.75rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 40px;
}
.page__division-detail .division__detail-img {
  float: right;
  margin-left: 30px;
  width: 40%;
  max-width: 560px;
  height: 460px;
}
.page__division-detail .division__detail-img img {
  height: 100%;
}
.page__division-detail .division__detail-summary {
  width: 74%;
}
.page__division-detail .division__detail-summary div,
.page__division-detail .division__detail-summary p {
  margin-bottom: 36px;
  font-size: 18px;
}
.page__division-detail .division__detail-summary ul {
  padding-left: 20px;
  margin-bottom: 32px;
}
.page__division-detail .division__detail-summary ul li {
  list-style: disc;
}

@media screen and (max-width: 1199px) {
  .page__division-detail .division__detail-img {
    width: 380px;
    height: 380px;
  }
}
@media screen and (max-width: 991px) {
  .division__nav .division__list {
    padding-left: 20px;
  }
  .division__nav-img {
    width: 80%;
  }
  .page__division-detail .division__detail-title {
    font-size: 24px;
  }
  .page__division-detail .division__detail-img {
    float: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    margin: 0;
  }
  .page__division-detail .division__detail-summary {
    width: 100%;
    margin-bottom: 440px;
  }
  .page__division-detail .division__detail-summary div,
  .page__division-detail .division__detail-summary p {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .division__nav .division__item .name .en {
    font-size: 30px;
  }
  .page__division-detail .division__detail-summary h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .page__division-detail .division__nav {
    margin-top: 120px;
    padding: 40px 0 0;
  }
  .page__division-detail .division__nav-img {
    width: 100%;
  }
  .page__division-detail .division__nav .division__list {
    padding-left: 0;
  }
  .page__division-detail .division__nav .division__item {
    padding: 0px 6px 20px;
    background: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
  .page__division-detail .division__nav .division__item::after {
    display: none;
  }
  .page__division-detail .division__nav .division__item:last-child {
    border-bottom: none;
  }
  .page__division-detail .division__nav .division__item .name {
    align-items: center;
  }
  .page__division-detail .division__nav .division__item .name .ja {
    margin-bottom: 0;
  }
  .page__division-detail .division__nav .division__item .name .ja svg line {
    stroke: #fff;
  }
  .page__division-detail .division__nav .division__item .more__btn-link {
    color: #fff;
  }
  .page__division-detail .division__nav .division__item .more__btn-link::after {
    background: #fff;
  }
  .page__division-detail .page__title .en {
    font-size: 11vw;
  }
  .page__division-detail .page__title .en small {
    font-size: 8vw;
  }
  .page__division-detail .division__detail-title {
    font-size: 20px;
  }
  .page__division-detail .division__detail-img {
    width: 100%;
    height: 280px;
    margin: 0;
  }
  .page__division-detail .division__detail-summary {
    padding-left: 0;
    margin-bottom: 320px;
  }
  .page__division-detail .division__detail-summary h2 {
    font-size: 20px;
  }
  .page__division-detail .division__detail-summary div,
  .page__division-detail .division__detail-summary p {
    font-size: 16px;
  }
}
/*
 * ============　サービス紹介 ============
 */
.page__service .service__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.page__service .service__list .service__item {
  background: #fff;
  position: relative;
  width: 49%;
  margin-bottom: 30px;
}
.page__service .service__list .service__item:hover {
  opacity: 0.8;
}
.page__service .service__list .service__item:hover .arrow {
  right: -10px;
  transition: 0.4s;
}
.page__service .service__list .service__item .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: 0.4s;
  z-index: 1;
}
.page__service .service__list .service__img {
  padding-top: 57.5%;
  position: relative;
}
.page__service .service__list .service__img img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page__service .service__list .service__text {
  padding: 10px 20px 40px;
}
.page__service .service__box {
  position: relative;
  padding-top: 60px;
  margin-bottom: 160px;
  padding-bottom: 80px;
}
.page__service .service__box::before {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0px;
  z-index: 0;
}
.page__service .service__box .container {
  position: relative;
}
.page__service .service__box .section__title::before {
  border-left: 3px solid #202020;
}
.page__service .service__box .section__title .ja {
  color: rgba(32, 32, 32, 0.6);
}
.page__service .service__box .service__headline {
  margin-bottom: 60px;
}
.page__service .service__box .service__headline small {
  display: block;
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  color: #717171;
}
.page__service .service__box .service__headline span {
  color: var(--orange);
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
}
.page__service .service__box .pyramid__wrap {
  position: relative;
  margin-bottom: 100px;
}
.page__service .service__box .pyramid__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 558px;
}
.page__service .service__box .pyramid__label {
  transform: rotate(-60deg) translate(0px, -24px);
  transform-origin: top left;
  font-size: 14px;
}
.page__service .service__box .pyramid__text {
  position: relative;
}
.page__service .service__box .pyramid__box {
  display: flex;
  border-bottom: 1px solid var(--black);
  height: 160px;
  padding-bottom: 10px;
  align-items: flex-end;
}
.page__service .service__box .pyramid__box.second {
  border-bottom: 1px solid var(--orange);
}
.page__service .service__box .pyramid__box.second .pyramid__out .label {
  background: var(--orange);
}
.page__service .service__box .pyramid__box.second .pyramid__out .text {
  color: var(--orange);
}
.page__service .service__box .pyramid__in {
  width: 558px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.page__service .service__box .pyramid__out {
  width: calc(100% - 558px);
  padding-left: 40px;
}
.page__service .service__box .pyramid__out .label {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  background: var(--black);
  color: #fff;
  padding: 3px;
}
.page__service .service__box .pyramid__out .text {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
}
.page__service .service__box .possibility__inner {
  display: flex;
  gap: 20px;
  align-items: center;
}
.page__service .service__box .possibility__box {
  background: #e8e8e8;
  width: 318px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 110px;
  border-radius: 4px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
}
.page__service .service__box .possibility__box.active {
  background: var(--orange);
  color: #fff;
}
.page__service .service__box .possibility__text {
  margin-top: 40px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--black);
}
.page__service .service__box .possibility__text span {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
  background: var(--black);
  display: block;
  padding: 4px 8px;
}
.page__service .service__box .connect__row {
  align-items: center;
}
.page__service .service__box .connect__line-row {
  position: relative;
  z-index: 1;
}
.page__service .service__box .connect__box {
  background: #f5f5f5;
  height: 260px;
  position: relative;
  padding: 36px 12px;
  text-align: center;
}
.page__service .service__box .connect__box.slstudio {
  background-image: url(../images/bg_sls_card.png);
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: center;
}
.page__service .service__box .connect__box.slstudio .connect__img img {
  width: 180px;
  height: auto;
}
.page__service .service__box .connect__box.slstudio .connect__text span::after {
  background: rgba(60, 166, 195, 0.6);
}
.page__service .service__box .connect__box.slstudio p .accent {
  color: #024b92;
}
.page__service .service__box .connect__box.connected .connect__img img {
  width: 180px;
  height: auto;
}
.page__service .service__box .connect__box.connected .connect__text span::after {
  background: rgba(214, 108, 15, 0.6);
}
.page__service .service__box .connect__box.connected .connected__list {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.page__service .service__box .connect__box.connected .connected__list li {
  background: var(--black);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  padding: 4px 4px;
}
.page__service .service__box .connect__box.connected .connected__list li span {
  color: var(--orange);
}
.page__service .service__box .connect__box.connected p .accent {
  color: #d66e10;
}
.page__service .service__box .connect__box p {
  line-height: 1.5;
}
.page__service .service__box .connect__box p .accent {
  font-weight: bold;
}
.page__service .service__box .connect__text {
  margin-bottom: 16px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
}
.page__service .service__box .connect__text span {
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.page__service .service__box .connect__text span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.page__service .service__box .connect__label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--orange);
  color: #fff;
  font-weight: bold;
  padding: 2px 10px;
}
.page__service .service__box .connect__img {
  text-align: center;
  margin-bottom: 20px;
}
.page__service .service__box .connect__img img {
  height: 150px;
  width: auto;
}
.page__service .service__box .connect__arrow-col {
  text-align: center;
}
.page__service .service__box .connect__arrow-label {
  background: var(--black);
  color: #fff;
  display: inline-block;
  margin: 8px auto;
  padding: 2px 6px;
  font-weight: bold;
}
.page__service .service__box .connect__icon-wrap {
  margin: -24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page__service .service__box .connect__icon-text {
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 3px 6px;
}
.page__service .service__box .connect__icon-line {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  position: relative;
  display: block;
}
.page__service .service__box .connect__icon-line.top {
  margin-bottom: 28px;
}
.page__service .service__box .connect__icon-line.top::after {
  top: 0%;
}
.page__service .service__box .connect__icon-line.bottom {
  margin-top: 28px;
}
.page__service .service__box .connect__icon-line.bottom::after {
  bottom: 0%;
}
.page__service .service__box .connect__icon-line::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page__service .service__box .connect__icon-line::after {
  content: "";
  width: 1px;
  height: 40px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.page__service .service__box .connected__sub-inner {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.page__service .service__box .connected__sub-inner .user {
  width: 130px;
  padding-left: 10px;
}
.page__service .service__box .connected__sub-inner .user-img {
  padding: 8px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}
.page__service .service__box .connected__sub-inner .user-img-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
}
.page__service .service__box .connected__sub-inner .user-img-line .inner {
  position: relative;
  width: inherit;
  display: block;
  height: inherit;
  transform: rotate(45deg);
}
.page__service .service__box .connected__sub-inner .user-img-line .inner::before {
  content: "";
  background: var(--orange);
  width: 12px;
  display: block;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translate(-50%, 50%);
}
.page__service .service__box .connected__sub-inner .user-img-line .inner::after {
  content: "";
  border: 1px solid var(--orange);
  width: inherit;
  display: block;
  height: inherit;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 0%;
}
.page__service .service__box .connected__sub-inner .user-label {
  text-align: center;
}
.page__service .service__box .connected__sub-inner .flow {
  flex: 1;
  counter-reset: num;
}
.page__service .service__box .connected__sub-inner .flow__item {
  counter-increment: num;
  margin-bottom: 20px;
}
.page__service .service__box .connected__sub-inner .flow__label {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
}
.page__service .service__box .connected__sub-inner .flow__label::before {
  content: "0" counter(num) ".";
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: 22px;
}
.page__service .service__box .connected__sub-inner .flow__comment {
  color: var(--orange);
}
.page__service .service__box .connected__sub-inner .flow__lang {
  margin-top: 20px;
}
.page__service .service__box .connected__sub-inner .flow__lang-box {
  background: #f5f5f5;
  padding: 12px 20px 20px;
  margin-bottom: 20px;
}
.page__service .service__box .connected__sub-inner .flow__lang-label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}
.page__service .service__box .connected__sub-inner .flow__lang-list {
  display: flex;
  flex-wrap: wrap;
}
.page__service .service__box .connected__sub-inner .flow__lang-list li {
  width: 25%;
  max-width: 80px;
  text-align: center;
}
.page__service .service__box .connected__sub-inner .flow__lang-list li .img {
  background: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page__service .service__box .connected__sub-inner .flow__lang-list li .img img {
  height: auto;
  width: 100%;
}
.page__service .service__box .connected__sub-inner .flow__lang-list li .img img.h {
  height: 100%;
  width: auto;
}
.page__service .service__box .connected__sub-inner .flow__lang-list li .name {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 400;
}
.page__service .service__box .connected__sub .note {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-weight: bold;
}
.page__service .service__box .connected__sub .note__text {
  font-size: 1.375rem;
  line-height: 2;
  font-weight: 700;
}
.page__service .service__box .connected__sub .note__text span {
  color: var(--orange);
}
.page__service .service__box .connected__main {
  text-align: center;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
}
.page__service .service__box .connected__inner {
  position: sticky;
  top: 20px;
}
.page__service .service__detail-row {
  align-items: center;
}
.page__service .service__detail-video {
  padding-top: 56.25%;
  position: relative;
}
.page__service .service__detail-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page__service .service__detail-text .label {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}
.page__service .service__detail-btn {
  display: flex;
  margin-bottom: 16px;
}
.page__service .service__detail-btn-link {
  transform: skewX(-10deg);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  padding: 12px 58px 12px 22px;
  position: relative;
  color: #fff;
  background: #202020;
}
.page__service .service__detail-btn-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #fff;
  color: #202020;
  z-index: -1;
  left: 0;
  transition: 0.2s ease;
}
.page__service .service__detail-btn-link::after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -10px;
  background: #fff;
}
.page__service .service__detail-btn-link:hover::before {
  width: 100%;
}
.page__service .service__detail-btn-link:hover::after {
  right: -30px;
  width: 50px;
  background: #202020;
}
.page__service .service__detail-btn-link:hover span {
  color: #202020;
}
.page__service .service__detail-btn-link span {
  transform: skewX(10deg);
  display: block;
}
.page__service .service__detail .attention {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .page__service .service__box .connect__box.connected .connect__img {
    margin-bottom: 10px;
  }
  .page__service .service__box .connect__box.connected .connected__list {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .page__service .service__box .connect__box.connected .connected__list li {
    width: 48%;
  }
}
@media screen and (max-width: 991px) {
  .page__service .service__box .service__headline span {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 700;
  }
  .page__service .service__box .pyramid__img {
    width: 460px;
  }
  .page__service .service__box .pyramid__label {
    font-size: 12px;
  }
  .page__service .service__box .pyramid__in {
    width: 460px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
  }
  .page__service .service__box .pyramid__out {
    width: calc(100% - 460px);
    padding-left: 20px;
  }
  .page__service .service__box .pyramid__out .text {
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
  }
  .page__service .service__box .pyramid__box {
    height: 132px;
  }
  .page__service .service__box .possibility__wrap {
    align-items: center;
  }
  .page__service .service__box .possibility__box {
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 700;
  }
  .page__service .service__box .possibility__text span {
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 700;
  }
  .page__service .service__box .connect__img img {
    height: 100px;
  }
  .page__service .service__box .connected__sub-inner .user {
    width: 100px;
  }
  .page__service .service__box .connected__sub-inner .user-img {
    width: 80px;
    height: 80px;
  }
  .page__service .service__box .connected__sub-inner .user-img-line {
    width: 100px;
    height: 100px;
  }
  .page__service .service__box .connected__sub-inner .flow__label {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
  }
  .page__service .service__box .connected__sub .note {
    margin-bottom: 40px;
  }
  .page__service .service__box .connected__sub .note__text {
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 700;
  }
  .page__service .service__box .connected__main {
    font-size: 1rem;
    line-height: 2;
    font-weight: 700;
  }
  .page__service .service__detail-text .label {
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 700;
  }
  .page__service .service__detail-btn-link {
    padding: 12px 38px 12px 22px;
    font-size: 1rem;
    line-height: 2;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .page__service .section__title .en {
    font-size: 32px;
  }
  .page__service .service__list .service__item {
    width: 100%;
  }
  .page__service .service__box::before {
    width: 90%;
  }
  .page__service .service__box .service__headline {
    margin-bottom: 20px;
  }
  .page__service .service__box .connect__box {
    white-space: normal;
  }
  .page__service .service__box .connect__container {
    overflow: scroll;
    white-space: nowrap;
  }
  .page__service .service__box .connect__row {
    width: 800px;
  }
  .page__service .service__box .connect__line-row {
    width: 800px;
  }
  .page__service .service__box .pyramid__wrap {
    overflow: scroll;
    white-space: nowrap;
    margin-bottom: 30px;
  }
  .page__service .service__box .pyramid__inner {
    width: 740px;
    height: 460px;
  }
  .page__service .service__box .possibility__wrap .logo {
    margin-bottom: 20px;
  }
  .page__service .service__detail-text {
    margin-top: 40px;
    text-align: center;
  }
  .page__service .service__detail-btn {
    justify-content: center;
  }
  .page__service .service__detail-video-label {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .page__service .service .service__list .service__item {
    width: 100%;
  }
  .page__service .service .service__list .service__text {
    font-size: 14px;
    padding: 10px 10px 40px;
  }
  .page__service .service__box {
    margin-bottom: 80px;
  }
  .page__service .service__box::before {
    width: 100%;
  }
  .page__service .service__box .possibility__box {
    font-size: 4.2vw;
    line-height: 1.5;
  }
  .page__service .service__box .possibility__arrow {
    display: none;
  }
  .page__service .service__box .possibility__text {
    margin-top: 20px;
  }
  .page__service .service__box .possibility__text span {
    font-size: 16px;
  }
  .page__service .service__box .connect__row {
    width: 700px;
    align-items: flex-start;
  }
  .page__service .service__box .connect__line-row {
    width: 700px;
  }
  .page__service .service__box .connect__box {
    height: auto;
    min-height: 260px;
  }
  .page__service .service__box .connect__box.slstudio {
    background-position: center bottom;
  }
  .page__service .service__box .connect__arrow-col {
    align-self: center;
  }
  .page__service .service__box .connected__sub-inner {
    display: block;
  }
  .page__service .service__box .connected__sub-inner .user {
    margin: auto;
    margin-bottom: 30px;
  }
  .page__service .service__box .connected__sub-inner .user-img {
    margin-bottom: 10px;
  }
  .page__service .service__box .connected__sub .note {
    padding: 20px 8px;
    text-align: left;
  }
  .page__service .service__box .connected__sub .note__text {
    font-size: 16px;
  }
}
/*
 * ============ ギャラリー ============
 */
.page__gallery .gallery__wrap .section__title {
  position: sticky;
  top: 30px;
}
.page__gallery .gallery__wrap .section__title::before {
  border-left: 3px solid #202020;
}
.page__gallery .gallery__wrap .section__title .ja {
  color: #202020;
}
.page__gallery .gallery__inner {
  margin-bottom: 120px;
}
.page__gallery .gallery__inner .img__inner {
  height: 200px;
  width: 100%;
}
.page__gallery .gallery__inner .img__inner .img__link {
  display: block;
  width: 100%;
  height: 100%;
}
.page__gallery .gallery__inner .img__inner img {
  height: 100%;
}
.page__gallery .gallery__box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.page__gallery .gallery__box-a {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.page__gallery .gallery__box-a-t {
  width: 100%;
}
.page__gallery .gallery__box-a-b {
  display: flex;
  gap: 20px;
  width: 100%;
}
.page__gallery .gallery__box-b {
  display: flex;
  width: 50%;
  gap: 20px;
}
.page__gallery .gallery__box-b-l {
  width: 50%;
  max-height: 420px;
}
.page__gallery .gallery__box-b-l .img__inner {
  height: 100%;
}
.page__gallery .gallery__box-b-r {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page__gallery .gallery__box.layout-1 .gallery__box-a {
  width: 100%;
}
.page__gallery .gallery__box.layout-2 .gallery__box-a {
  width: 100%;
}
.page__gallery .gallery__box.layout-2 .gallery__box-b {
  width: 100%;
}
.page__gallery .gallery__box.layout-2 .gallery__box-b-l {
  width: 100%;
}
.page__gallery .gallery__box.layout-2 .gallery__box-b-l .img__inner {
  height: 200px;
}
.page__gallery .gallery__box.layout-3 .gallery__box-b-l .img__inner {
  height: 200px;
}
.page__gallery .gallery__box.layout-4 .gallery__box-b-r .img__inner {
  height: 100%;
}
.page__gallery .gallery__box.layout-5 .gallery__box-b-r .img__inner {
  height: 100%;
}
.page__gallery .gallery__table {
  width: calc(100% + 16px);
  margin: 0 -8px;
}
.page__gallery .gallery__table td {
  width: 25%;
  padding: 8px;
}
.page__gallery .gallery__table td .img__inner {
  height: 200px;
}
.page__gallery .gallery__table td .img__inner img {
  height: 100%;
}
.page__gallery .gallery__table td[rowspan="2"] .img__inner {
  height: 416px;
}

@media screen and (max-width: 767px) {
  .page__gallery .gallery__wrap .section__title .en {
    font-size: 32px;
  }
  .page__gallery .gallery__box {
    padding-left: 20px;
    flex-wrap: wrap;
  }
  .page__gallery .gallery__box-a {
    width: 100%;
  }
  .page__gallery .gallery__box-b {
    width: 100%;
  }
  .page__gallery .gallery__box:nth-of-type(2n) .gallery__box-b {
    order: 1;
  }
  .page__gallery .gallery__box.layout-2 {
    flex-wrap: nowrap;
  }
  .page__gallery .gallery__box.layout-4 .gallery__box-a {
    flex-wrap: nowrap;
  }
  .page__gallery .gallery__box.layout-4 .gallery__box-b-l {
    height: 200px;
  }
  .page__gallery .gallery__box.layout-4 .gallery__box-b-r {
    height: 200px;
  }
  .page__gallery .gallery__box.layout-5 .gallery__box-b-l {
    height: 200px;
  }
  .page__gallery .gallery__box.layout-5 .gallery__box-b-r {
    height: 200px;
  }
}
@media screen and (max-width: 575px) {
  .page__gallery .gallery__wrap .section__title {
    position: relative;
    top: initial;
  }
  .page__gallery .gallery__wrap .section__title .ja {
    mix-blend-mode: unset;
  }
  .page__gallery .gallery__wrap .section__title::before {
    mix-blend-mode: unset;
  }
  .page__gallery .gallery__inner .img__inner {
    height: 120px;
  }
  .page__gallery .gallery__box {
    padding-left: 0;
    gap: 12px;
    margin-bottom: 12px;
  }
  .page__gallery .gallery__box-a {
    gap: 12px;
  }
  .page__gallery .gallery__box-a-b {
    gap: 12px;
  }
  .page__gallery .gallery__box-b {
    gap: 12px;
  }
  .page__gallery .gallery__box-b-l {
    max-height: 256px;
  }
  .page__gallery .gallery__box-b-l .img__inner {
    height: 100%;
  }
  .page__gallery .gallery__box-b-r {
    gap: 12px;
  }
  .page__gallery .gallery__box.layout-2 .gallery__box-b-l .img__inner {
    height: 120px;
  }
  .page__gallery .gallery__box.layout-3 .gallery__box-b-l .img__inner {
    height: 120px;
  }
  .page__gallery .gallery__box.layout-4 .gallery__box-b-l {
    height: 120px;
  }
  .page__gallery .gallery__box.layout-4 .gallery__box-b-r {
    height: 120px;
  }
  .page__gallery .gallery__box.layout-5 .gallery__box-b-l {
    height: 120px;
  }
  .page__gallery .gallery__box.layout-5 .gallery__box-b-r {
    height: 120px;
  }
}
/*
 * ============ 開発実績 ============
 */
.page__works .works__tab-list {
  display: inline-flex;
  padding: 12px 20px;
  background: #eaeaea;
  gap: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.page__works .works__tab-item a {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  padding: 10px 20px;
}
.page__works .works__tab-item.active {
  background: var(--orange);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 5px 5px 20px #ccc;
}
.page__works .works__item {
  position: relative;
  margin-bottom: 60px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}
.page__works .works__item:nth-of-type(3n + 2) {
  transform: translateY(32px);
}
.page__works .works__item:nth-of-type(3n + 3) {
  transform: translateY(64px);
}
.page__works .works__img {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.page__works .works__img img {
  height: 100%;
  position: absolute;
  top: 0;
}
.page__works .works__summary {
  position: absolute;
  bottom: -12px;
  left: 8px;
}
.page__works .works__summary .category {
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  background: #202020;
  color: #fff;
  display: inline-flex;
  margin-bottom: 4px;
  padding: 4px;
}
.page__works .works__summary h3 span {
  background: #202020;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  padding: 4px;
  display: inline-block;
}

@media screen and (max-width: 991px) {
  .page__works .works__tab-list {
    overflow: scroll;
    display: flex;
    border-radius: 0;
  }
  .page__works .works__tab-item a {
    white-space: nowrap;
  }
  .page__works .works__item {
    margin-bottom: 40px;
  }
  .page__works .works__item:nth-of-type(3n + 2) {
    transform: translateY(0);
  }
  .page__works .works__item:nth-of-type(3n + 3) {
    transform: translateY(0);
  }
  .page__works .works__item:nth-of-type(2n + 2) {
    transform: translateY(32px);
  }
  .page__works .works__summary h3 span {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .page__works .works__tab-list {
    padding: 12px 12px;
    gap: 20px;
    margin-left: 20px;
    width: calc(100% - 20px);
  }
  .page__works .works__list {
    margin-left: 20px;
    width: calc(100% - 20px);
  }
  .page__works .works__item {
    padding: 0;
  }
  .page__works .works__item:nth-of-type(2n + 2) {
    transform: translateY(0);
  }
  .page__works .works__summary {
    left: -10px;
  }
}
@media screen and (max-width: 575px) {
  .page__works .works__tab-list {
    margin-left: 0;
    width: calc(100% + 12px);
    gap: 12px;
  }
  .page__works .works__tab-item a {
    font-size: 12px;
    padding: 10px;
  }
  .page__works .works__list {
    width: 100%;
    margin-left: 0;
  }
  .page__works .works__summary {
    left: -6px;
  }
}
/*
 * ============ 開発実績詳細 ============
 */
.page__works-detail .mainvisual {
  display: block;
  padding-top: 120px;
  height: auto;
}
.page__works-detail .mainvisual__img {
  height: auto;
  position: relative;
  overflow: visible;
  margin-top: 0;
  max-height: initial;
}
.page__works-detail .mainvisual__img .page__title-child-wrap {
  bottom: -32px;
  left: -24px;
  width: 100%;
}
.page__works-detail .mainvisual__img .page__title-child-wrap .title span {
  max-width: calc(100% + 32px);
}
.page__works-detail .overview__section {
  margin-bottom: 120px;
}
.page__works-detail .overview__catch {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}
.page__works-detail .overview__description {
  margin-bottom: 80px;
}
.page__works-detail .overview__table {
  margin-bottom: 40px;
}
.page__works-detail .point__section {
  padding-top: 120px;
  margin-bottom: 100px;
}
.page__works-detail .point__item {
  display: flex;
  margin-bottom: 60px;
}
.page__works-detail .point__img {
  width: 360px;
}
.page__works-detail .point__summary {
  flex: 1;
  margin-left: 40px;
  padding-top: 12px;
}
.page__works-detail .point__summary .number {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
}
.page__works-detail .point__summary .catch {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 8px;
}
.page__works-detail .point__summary .description {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
}
.page__works-detail .voice__section {
  background: #e5e5e5;
  background-image: url("../images/bg_gradient.webp");
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  padding: 80px 0;
  margin-top: 100px;
}
.page__works-detail .voice__inner {
  padding: 80px 160px;
  background-image: url("../images/line_voice1.svg"), url("../images/line_voice2.svg");
  background-repeat: no-repeat;
  background-size: 110px;
  background-position: left top, right bottom;
}
.page__works-detail .voice__label .en {
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 400;
  mix-blend-mode: overlay;
  color: #000;
  margin-bottom: -30px;
}
.page__works-detail .voice__label .ja {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 40px;
}
.page__works-detail .voice__summary {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
}
.page__works-detail .voice__summary .name {
  margin-top: 40px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.page__works-detail .related__section {
  padding-top: 120px;
  overflow: hidden;
}
.page__works-detail .related__section .swiper-control {
  align-items: center;
  padding-top: 30px;
}
.page__works-detail .related__section .swiper-control .more__btn {
  margin-top: 0;
}
.page__works-detail .related__section .swiper-pagination {
  position: relative;
  width: 100%;
  height: 4px;
}
.page__works-detail .related__section .swiper-pagination-progressbar-fill {
  background: var(--orange);
}
.page__works-detail .related__section .swiper__btn-wrap {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.page__works-detail .related__section .swiper-button-prev, .page__works-detail .related__section .swiper-button-next {
  position: static;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: 0;
}
.page__works-detail .related__section .swiper-button-prev::after, .page__works-detail .related__section .swiper-button-next::after {
  font-size: 26px;
  color: #c9c9c9;
}
.page__works-detail .related__wrap .swiper {
  overflow: visible;
}
.page__works-detail .related__wrap .slide__item {
  padding-right: 10%;
}
.page__works-detail .related__wrap .slide__item-inner {
  background: #fff;
  display: flex;
  position: relative;
}
.page__works-detail .related__wrap .slide__item-img {
  width: 430px;
  height: 238px;
  overflow: hidden;
}
.page__works-detail .related__wrap .slide__item-img img {
  height: 100%;
}
.page__works-detail .related__wrap .slide__item-text {
  padding: 24px 12px 24px 32px;
  flex: 1;
}
.page__works-detail .related__wrap .slide__item-text .tags {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9c9c9;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}
.page__works-detail .related__wrap .slide__item-text .title {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}
.page__works-detail .related__wrap .slide__item-text .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
}
.page__works-detail .related__wrap .slide__item .number {
  position: absolute;
  bottom: calc(100% - 44px);
  right: -20px;
  font-size: 6.25rem;
  line-height: 1;
  font-weight: 100;
  font-style: italic;
}
.page__works-detail .related__wrap .slide__item .number::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #000;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 30px;
  right: -10px;
}
.page__works-detail .related__wrap .slide__item .arrow {
  position: absolute;
  right: -20px;
  bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .page__works-detail .voice__inner {
    padding: 80px 80px;
  }
  .page__works-detail .related__wrap .slide__item-img {
    width: 320px;
  }
  .page__works-detail .related__wrap .slide__item-text {
    padding: 24px 12px 24px 16px;
  }
}
@media screen and (max-width: 991px) {
  .page__works-detail .mainvisual__img {
    width: 100%;
    margin: auto;
  }
  .page__works-detail .mainvisual__img .page__title-child-wrap .title span {
    margin-left: 0px;
    font-size: 40px;
    padding: 0px 20px 0 30px;
  }
  .page__works-detail .mainvisual__img img {
    width: 80%;
    margin: auto;
    display: block;
  }
  .page__works-detail .point__item {
    flex-direction: column;
  }
  .page__works-detail .point__img {
    width: 100%;
    max-width: 460px;
  }
  .page__works-detail .point__summary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page__works-detail .point__summary .number {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .page__works-detail .voice__inner {
    padding: 0;
    background-image: none;
  }
  .page__works-detail .related__wrap .slide__item-inner {
    flex-direction: column;
  }
  .page__works-detail .related__wrap .slide__item-img {
    width: 100%;
    height: 272px;
  }
  .page__works-detail .related__wrap .slide__item-text {
    padding: 24px 12px 40px 16px;
  }
}
@media screen and (max-width: 767px) {
  .page__works-detail .mainvisual__img {
    padding-left: 20px;
  }
  .page__works-detail .mainvisual__img .page__title-child-wrap {
    bottom: -20px;
    left: -12px;
  }
  .page__works-detail .mainvisual__img .page__title-child-wrap .title span {
    font-size: 28px;
    padding: 0px 20px 0 24px;
  }
  .page__works-detail .mainvisual__img img {
    width: 100%;
  }
  .page__works-detail .overview__section {
    padding-left: 20px;
    margin-bottom: 80px;
  }
  .page__works-detail .overview__catch {
    font-size: 22px;
  }
  .page__works-detail .point__section {
    padding-top: 80px;
    padding-left: 20px;
  }
  .page__works-detail .point__summary .number {
    font-size: 32px;
  }
  .page__works-detail .point__summary .catch {
    font-size: 22px;
  }
  .page__works-detail .voice__section {
    padding-left: 20px;
  }
  .page__works-detail .voice__label .en {
    font-size: 60px;
    margin-bottom: -20px;
  }
  .page__works-detail .related__wrap {
    position: relative;
    padding-left: 20px;
  }
  .page__works-detail .related__section .swiper-control {
    padding-top: 20px;
  }
  .page__works-detail .related__section .swiper-control .more__btn {
    margin-top: 40px;
  }
  .page__works-detail .related__section .swiper-pagination {
    margin-left: 3%;
    width: 94%;
  }
  .page__works-detail .related__sp-control {
    position: absolute;
    bottom: calc(100% + 20px);
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .page__works-detail .mainvisual__img {
    padding-left: 0;
  }
  .page__works-detail .mainvisual__img .page__title-child-wrap {
    width: calc(100% + 12px);
  }
  .page__works-detail .mainvisual__img .page__title-child-wrap .category {
    margin-left: 0px;
  }
  .page__works-detail .mainvisual__img .page__title-child-wrap .title span {
    font-size: 22px;
    padding: 0px 12px 0 12px;
  }
  .page__works-detail .overview__section {
    padding-left: 0;
  }
  .page__works-detail .point__section {
    padding-left: 0;
    margin-bottom: 0;
    padding-top: 40px;
  }
  .page__works-detail .voice__section {
    margin-top: 20px;
    padding-left: 12px;
  }
  .page__works-detail .voice__label .en {
    font-size: 12vw;
    margin-bottom: -10px;
  }
  .page__works-detail .related__wrap {
    padding-left: 12px;
  }
  .page__works-detail .related__wrap .slide__item {
    padding-right: 6%;
  }
  .page__works-detail .related__wrap .slide__item .arrow {
    right: 20px;
  }
  .page__works-detail .related__section .swiper__btn-wrap {
    display: none;
  }
  .page__works-detail .related__section .swiper-button-prev,
  .page__works-detail .related__section .swiper-button-next {
    background: rgba(255, 255, 255, 0.5215686275);
    border: 0;
    border-radius: 10%;
    width: 40px;
    height: 40px;
    margin-top: 0;
  }
  .page__works-detail .related__section .swiper-button-prev::after,
  .page__works-detail .related__section .swiper-button-next::after {
    color: #202020;
  }
  .page__works-detail .related__section .swiper-button-prev.swiper-button-disabled,
  .page__works-detail .related__section .swiper-button-next.swiper-button-disabled {
    pointer-events: auto;
  }
  .page__works-detail .related__sp-control {
    width: calc(100% + 24px);
    bottom: 50%;
    left: -12px;
    padding: 0 4px;
  }
  .page__works-detail .related__sp-control .swiper__btn-wrap {
    display: flex;
    justify-content: space-between;
  }
}
/*
 * ============ お問い合わせ ============
 */
.page__contact .contactform__body .google-policy {
  margin: 0;
  margin-top: 30px;
  font-size: 14px;
  text-align: right;
}
.page__contact .contactform__body .google-policy span {
  display: inline-block;
  background: #f4f4f4;
  padding: 10px;
}
.page__contact .contactform__body .google-policy span a {
  text-decoration: underline;
}
.page__contact .contactform__wrap {
  display: flex;
  min-height: 700px;
  background: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
}
.page__contact .contactform__summary {
  width: 50%;
  background-image: url("../images/bg_contactform.webp");
  background-size: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 40px;
}
.page__contact .contactform__summary::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(136deg, rgba(237, 116, 28, 0.39) 0%, rgba(250, 255, 0, 0.12) 15.63%, rgba(1, 255, 240, 0.06) 45.12%, rgba(0, 72, 211, 0) 100%);
}
.page__contact .contactform__summary .note {
  font-size: 0.9375rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 40px;
}
.page__contact .contactform__summary .tel {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 32px;
  font-family: "Jost", sans-serif;
  position: relative;
}
.page__contact .contactform__summary .tel::before {
  content: "";
  background: url("../images/phone_icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-size: contain;
  width: 30px;
  height: 30px;
}
.page__contact .contactform__summary .atention {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  color: rgba(32, 32, 32, 0.6);
}
.page__contact .contactform__form {
  padding-top: 40px;
  width: 50%;
}
.page__contact .contactform__form .wpcf7-form.sent {
  display: none;
  transition: 0.4s all;
}
.page__contact .contactform__form .form {
  padding: 20px 40px 40px;
}
.page__contact .contactform__form .form__group {
  border-radius: 4px;
  margin-bottom: 20px;
}
.page__contact .contactform__form .form__group.readonly {
  margin-bottom: 12px;
  border-bottom: solid #c9c9c9 1px;
  border-radius: 0;
}
.page__contact .contactform__form .form__group.readonly .conf__content {
  white-space: pre-wrap;
  word-break: break-all;
  opacity: 1;
  max-height: 180px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page__contact .contactform__form .form__group.readonly .conf__content::-webkit-scrollbar {
  display: none;
}
.page__contact .contactform__form .form__group.readonly span {
  opacity: 0.6;
}
.page__contact .contactform__form .form__group.readonly input,
.page__contact .contactform__form .form__group.readonly textarea {
  background: none;
  padding: 36px 0px 0px;
}
.page__contact .contactform__form .form__group.readonly input:focus,
.page__contact .contactform__form .form__group.readonly textarea:focus {
  outline: none;
}
.page__contact .contactform__form .form__group.readonly input:not(:-moz-placeholder-shown) + span, .page__contact .contactform__form .form__group.readonly textarea:not(:-moz-placeholder-shown) + span {
  left: 0;
}
.page__contact .contactform__form .form__group.readonly input:not(:placeholder-shown) + span,
.page__contact .contactform__form .form__group.readonly textarea:not(:placeholder-shown) + span {
  left: 0;
}
.page__contact .contactform__form .form__group.readonly textarea {
  max-height: 180px;
  resize: none;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.page__contact .contactform__form .form__group.check {
  border-radius: 0;
}
.page__contact .contactform__form .form__group.check .wpcf7-list-item {
  margin: 0;
}
.page__contact .contactform__form .form__group.check .wpcf7-list-item-label::before {
  margin-right: 8px;
}
.page__contact .contactform__form .form__group.submit {
  margin-bottom: 0;
}
.page__contact .contactform__form .form__group.submit .show__more-inner:has(.btn__submit[disabled]) {
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.page__contact .contactform__form .form__group.submit .show__more:has(.btn__submit[disabled])::after {
  background: rgba(0, 0, 0, 0.25);
}
.page__contact .contactform__form .form__group.submit .btn__submit {
  width: 220px;
  padding: 0;
  background: none;
  padding: 15px 40px 15px 20px;
  text-align: left;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.page__contact .contactform__form .form__group.submit .btn__submit[disabled] {
  opacity: 0.4;
}
.page__contact .contactform__form .form__group.submit .btn__submit:focus {
  outline: none;
}
.page__contact .contactform__form .form__group.submit .previous__btn {
  margin-top: 20px;
  text-align: center;
  color: #9f9f9f;
  background: none;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  text-decoration: underline;
  padding: 0;
  display: inline-block;
  width: auto;
}
.page__contact .contactform__form .form__group.submit .previous__btn:focus {
  outline: none;
}
.page__contact .contactform__form .form__group label {
  display: flex;
  flex-direction: column;
  position: relative;
}
.page__contact .contactform__form .form__group input,
.page__contact .contactform__form .form__group textarea {
  width: 100%;
  background: #f3f3f3;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  order: 1;
  padding: 33px 16px 12px 16px;
}
.page__contact .contactform__form .form__group input::-moz-placeholder, .page__contact .contactform__form .form__group textarea::-moz-placeholder {
  color: transparent;
}
.page__contact .contactform__form .form__group input::placeholder,
.page__contact .contactform__form .form__group textarea::placeholder {
  color: transparent;
}
.page__contact .contactform__form .form__group input:not(:-moz-placeholder-shown) + span, .page__contact .contactform__form .form__group textarea:not(:-moz-placeholder-shown) + span {
  transform: translateY(0) scale(0.9);
  top: 16px;
  left: 16px;
  transform-origin: left top;
}
.page__contact .contactform__form .form__group input:not(:placeholder-shown) + span,
.page__contact .contactform__form .form__group textarea:not(:placeholder-shown) + span {
  transform: translateY(0) scale(0.9);
  top: 16px;
  left: 16px;
  transform-origin: left top;
}
.page__contact .contactform__form .form__group input:focus,
.page__contact .contactform__form .form__group textarea:focus {
  transition: 0.2s;
  outline: 1px solid var(--orange);
}
.page__contact .contactform__form .form__group input:focus + span,
.page__contact .contactform__form .form__group textarea:focus + span {
  transform: translateY(0%) scale(0.9);
  transform-origin: left top;
  top: 16px;
  left: 16px;
}
.page__contact .contactform__form .form__group .check__wrap label {
  display: inline-block;
}
.page__contact .contactform__form .form__group .check__wrap input[type=checkbox] {
  background: none;
  position: relative;
  padding: 0;
  width: 25px;
  height: 25px;
  outline: none;
}
.page__contact .contactform__form .form__group .check__wrap input[type=checkbox]::before, .page__contact .contactform__form .form__group .check__wrap input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.page__contact .contactform__form .form__group .check__wrap input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #c9c9c9;
  width: 22px;
  height: 22px;
  left: 0;
}
.page__contact .contactform__form .form__group .check__wrap input[type=checkbox]::after {
  border-bottom: 1px solid #666464;
  border-left: 1px solid #666464;
  opacity: 0;
  height: 8px;
  width: 18px;
  transform: rotate(-45deg);
  top: 5px;
  left: 3px;
}
.page__contact .contactform__form .form__group .check__wrap input[type=checkbox]:checked::after {
  opacity: 1;
}
.page__contact .contactform__form .form__group textarea {
  height: 240px;
  resize: none;
  padding: 36px 16px 12px 16px;
}
.page__contact .contactform__form .form__group .input__placeholder {
  color: rgba(32, 32, 32, 0.6);
  transform: translateY(-50%) scale(1);
  transition: 0.3s;
  position: absolute;
  left: 16px;
  top: 36px;
  line-height: 1;
}
.page__contact .contactform__form .form .show__more {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.page__contact .contactform__form .form .show__more::after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -10px;
  background: #202020;
}
.page__contact .contactform__form .form .show__more-inner {
  transform: skewX(-10deg);
  border: 1px solid #202020;
}
.page__contact .contactform__form .form .show__more-inner .wpcf7-spinner {
  position: absolute;
  right: 110%;
  transform: skewX(10deg);
  margin: 0;
}
.page__contact .contactform__form .form .show__more input {
  transform: skewX(10deg);
  padding: 4px 48px 4px 20px;
  color: #202020;
}
.page__contact .contactform__form .form .show__more input span {
  transform: skewX(10deg);
  display: block;
}
.page__contact .contactform__form .done__message {
  padding: 20px 40px 40px;
  margin-top: 40px;
  display: none;
}
.page__contact .contactform__form .done__message h2 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 40px;
}
.page__contact .contactform__form .done__message p {
  font-size: 0.9375rem;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 30px;
}
.page__contact .contactform__form .done__message .more__btn {
  margin-top: 40px;
}
.page__contact .contactform__form .wpcf7 form .wpcf7-response-output {
  margin: 0 30px 20px;
  font-size: 12px;
  border: 1px solid var(--orange);
  color: var(--orange);
}

@media screen and (max-width: 991px) {
  .page__contact .contactform__body {
    padding-left: 20px;
  }
  .page__contact .contactform__wrap {
    flex-flow: column;
    height: auto;
  }
  .page__contact .contactform__summary {
    width: 100%;
    background-image: none;
  }
  .page__contact .contactform__form {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .page__contact .contactform__body {
    padding-left: 12px;
  }
  .page__contact .contactform__body .google-policy {
    text-align: left;
  }
  .page__contact .contactform__summary {
    padding: 16px;
  }
  .page__contact .contactform__form {
    padding-top: 28px;
  }
  .page__contact .contactform__form .form {
    padding: 16px 12px 20px;
  }
  .page__contact .contactform__form .done__message {
    padding: 20px 12px 28px;
  }
}
/*
 * ============ お知らせ（共通） ============
 */
.news__side {
  position: sticky;
  top: 40px;
  padding-left: 20px;
}
.news__side-label {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
}
.news__side .widget {
  margin-bottom: 40px;
}
.news__side .category__list li {
  padding-left: 40px;
  position: relative;
}
.news__side .category__list li::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.news__side .category__list li a:hover {
  opacity: 0.5;
}
.news__side .wp-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  border-left: 1px solid rgba(32, 32, 32, 0.456);
}
.news__side .wp-tag-cloud li {
  padding: 0 5px;
}
.news__side .wp-tag-cloud li a {
  font-size: 14px !important;
  color: #fff;
  padding: 0 4px;
  margin-bottom: 2px;
  border-radius: 4px;
  display: inline-block;
  background: #202020;
}
.news__side .wp-tag-cloud li a:hover {
  opacity: 0.5;
}
.news__side .search__wrap {
  position: relative;
}
.news__side .search__wrap dl {
  position: relative;
}
.news__side .search__wrap dd {
  position: absolute;
  top: 0;
  right: 0;
}
.news__side .search__wrap .search__input {
  background: #fff;
  display: block;
  width: 100%;
  padding: 8px 16px;
  padding-right: 50px;
  font-weight: normal;
}
.news__side .search__wrap .search__input:focus {
  outline: none;
}

@media screen and (max-width: 991px) {
  .news__side {
    position: static;
    top: initial;
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    border-top: 1px solid;
    padding-top: 40px;
    padding-left: 0;
  }
  .news__side .widget {
    margin-bottom: 0;
  }
  .news__side .widget.categories {
    width: 300px;
    order: 1;
  }
  .news__side .widget.tags {
    width: 100%;
    flex: 1;
    order: 1;
  }
  .news__side .widget.search {
    margin-bottom: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news__side {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 575px) {
  .news__side {
    padding: 40px 0px 0;
  }
  .news__side .widget.categories {
    width: 100%;
    margin-bottom: 40px;
  }
}
/*
 * ============ お知らせ ============
 */
.page__news .news__section {
  padding-top: 60px;
}
.page__news .news__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.page__news .news__wrap .section__title {
  margin-bottom: 0;
}
.page__news .news__wrap .section__title::before {
  border-left: 3px solid #202020;
}
.page__news .news__wrap .section__title .ja {
  color: #202020;
}
.page__news .news__list {
  padding-right: 32px;
}
.page__news .news__item {
  position: relative;
  padding: 16px;
  padding-left: 0;
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
  transition: 0.5s ease;
}
.page__news .news__item .cursor {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  z-index: 20;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
}
.page__news .news__item .cursor::before {
  content: "CLICK!";
  color: #000;
  font-family: "Jost", sans-serif;
  text-align: center;
  font-size: 14px;
  display: block;
  margin: auto;
  top: 50%;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
}
.page__news .news__item:hover {
  transform: translateY(-10px);
}
.page__news .news__item:hover::before {
  box-shadow: 8px 8px 20px #e8e8e8;
}
.page__news .news__item::before {
  content: "";
  display: block;
  background: #fff;
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  right: 0px;
  width: calc(100% - 280px);
  height: 100%;
  top: 0;
  right: 0;
}
.page__news .news__item-header {
  display: flex;
  position: relative;
}
.page__news .news__item-header .img {
  width: 360px;
  height: 200px;
  overflow: hidden;
  margin: 0;
}
.page__news .news__item-header .date {
  text-orientation: sideways;
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  font-style: italic;
}
.page__news .news__item-body {
  padding-top: 20px;
  position: relative;
}
.page__news .news__item-body .title {
  margin-bottom: 8px;
}
.page__news .news__item-body .title span {
  display: inline-block;
  background: var(--black);
  line-height: 1;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 300;
}
.page__news .news__item-body .category {
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;
  padding-left: 0px;
  color: rgba(32, 32, 32, 0.5);
  margin-bottom: 8px;
}
.page__news .news__item-body .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
  margin-bottom: 30px;
}
.page__news .news__item-body .more {
  position: absolute;
  right: 0px;
  bottom: 0;
  line-height: 1;
}
.page__news .news__item-body .more span {
  position: relative;
  padding-right: 12px;
  font-family: "Jost", sans-serif;
  font-style: italic;
}
.page__news .news__item-body .more span::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1px;
  background: #202020;
  display: block;
  top: 50%;
  left: 100%;
}
.page__news .news__pagination {
  padding-right: 32px;
  display: flex;
  justify-content: flex-end;
}
.page__news .news__pagination .page-numbers {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  background: #eaeaea;
  padding: 12px;
  border-radius: 4px;
}
.page__news .news__pagination .page-numbers li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 16px;
  letter-spacing: initial;
  border: 1px solid transparent;
  transition: 0.4s;
}
.page__news .news__pagination .page-numbers li a:hover {
  border: 1px solid var(--orange);
}
.page__news .news__pagination .page-numbers li span {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 16px;
  letter-spacing: initial;
}
.page__news .news__pagination .page-numbers li span.current {
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.07);
}
.page__news .news__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page__news .news__box {
  width: 48%;
  padding: 12px;
  position: relative;
}
.page__news .news__box.lerge {
  width: 100%;
}
.page__news .news__summary {
  padding: 20px 0;
}
.page__news .news__summary .date {
  font-style: italic;
  font-weight: bold;
  line-height: 1;
}
.page__news .news__summary .title {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
}
.page__news .news__summary .title span {
  background: var(--black);
  color: #fff;
}

@media screen and (min-width: 1400px) {
  .page__news .news__item::before {
    width: calc(100% - 380px);
  }
  .page__news .news__item-header .img {
    width: 423px;
    height: 238px;
  }
}
@media screen and (max-width: 1199px) {
  .page__news .news__list {
    padding-right: 8px;
  }
  .page__news .news__item {
    gap: 8px;
  }
  .page__news .news__item::before {
    width: calc(100% - 240px);
  }
  .page__news .news__item-header .date {
    line-height: 1.5;
  }
  .page__news .news__item-header .img {
    width: 300px;
    height: 166px;
  }
  .page__news .news__item-body {
    padding-top: 0;
  }
  .page__news .news__item-body .title span {
    font-size: 18px;
  }
  .page__news .news__pagination {
    padding-right: 8px;
  }
}
@media screen and (max-width: 991px) {
  .page__news .news__wrap {
    display: block;
    margin-bottom: 40px;
  }
  .page__news .news__wrap .news__pagination {
    margin-top: 40px;
  }
  .page__news .news__list {
    padding-right: 0px;
  }
  .page__news .news__pagination {
    padding-right: 0px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .page__news .news__list {
    padding-left: 20px;
  }
  .page__news .news__pagination {
    padding-left: 20px;
  }
  .page__news .news__item {
    display: block;
  }
  .page__news .news__item::before {
    width: calc(100% - 40px);
  }
  .page__news .news__item-header {
    margin: 0 0 20px;
  }
  .page__news .news__item-header .img {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
  }
  .page__news .news__item-header .img img {
    position: absolute;
    top: 0;
    filter: brightness(1) grayscale(0) contrast(1);
  }
  .page__news .news__item-body {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .page__news .news__pagination {
    padding-left: 0;
  }
  .page__news .news__list {
    padding-left: 0;
  }
}
/*
 * ============ お知らせ詳細 ============
 */
.page__news-detail .mainvisual {
  display: block;
  padding-top: 120px;
  height: auto;
}
.page__news-detail .mainvisual__img {
  height: auto;
  position: relative;
  overflow: visible;
  margin-top: 0;
  max-height: initial;
}
.page__news-detail .mainvisual__img .page__title-child-wrap {
  bottom: -32px;
  left: -24px;
  width: 100%;
}
.page__news-detail .mainvisual__img .page__title-child-wrap .title span {
  max-width: 100%;
}
.page__news-detail .news__section {
  position: relative;
}
.page__news-detail .news__section .container {
  position: relative;
}
.page__news-detail .news__section::before {
  content: "";
  display: block;
  width: 70%;
  background: #fff;
  position: absolute;
  left: 0px;
  z-index: 0;
  height: calc(100% + 80px);
}
.page__news-detail .news__content {
  padding-top: 60px;
}
.page__news-detail .news__content-inner h1,
.page__news-detail .news__content-inner h2 {
  background: var(--black);
  color: #fff;
  font-weight: bold;
  padding: 8px 30px;
  margin: 40px 0;
  font-size: 22px;
  -webkit-clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}
.page__news-detail .news__content-inner h3 {
  font-weight: bold;
  padding: 5px 20px;
  border-left: 3px solid var(--black);
  margin: 40px 0;
  font-size: 20px;
}
.page__news-detail .news__content-inner h4 {
  font-weight: bold;
  margin: 40px 0;
  font-size: 18px;
}
.page__news-detail .news__content-inner h5 {
  font-weight: bold;
  margin: 32px 0;
  font-size: 16px;
}
.page__news-detail .news__content-inner h6 {
  font-weight: bold;
  margin: 32px 0;
  font-size: 14px;
}
.page__news-detail .news__content-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin: 32px 0;
}
.page__news-detail .news__content-inner ol {
  list-style: decimal;
  padding-left: 30px;
  margin: 32px 0;
}
.page__news-detail .news__content-inner figure {
  margin: 40px 0;
}
.page__news-detail .news__content-inner p {
  margin: 32px 0;
}
.page__news-detail .news__content-inner hr {
  color: #ccc;
}
.page__news-detail .news__content-inner img {
  width: auto;
  max-width: 100%;
}
.page__news-detail .news__content-inner blockquote {
  background: #f8f8f8;
  padding: 12px 16px;
  font-size: 0.9em;
}
.page__news-detail .news__content-inner blockquote > * {
  margin: 0 0 12px;
}
.page__news-detail .news__content-inner blockquote > *:last-child {
  margin-bottom: 0;
}
.page__news-detail .news__content-inner pre {
  overflow: scroll;
  display: block;
  margin: 32px 0;
}

@media screen and (max-width: 991px) {
  .page__news-detail .mainvisual__img {
    width: 100%;
    margin: auto;
  }
  .page__news-detail .mainvisual__img .page__title-child-wrap .title span {
    margin-left: 0px;
    font-size: 40px;
    padding: 0px 20px 0 30px;
  }
  .page__news-detail .mainvisual__img img {
    width: 80%;
    margin: auto;
    display: block;
  }
  .page__news-detail .news__section::before {
    display: none;
  }
  .page__news-detail .news__content {
    padding-left: 8px;
    padding-top: 40px;
    position: relative;
  }
  .page__news-detail .news__content-inner {
    position: relative;
  }
  .page__news-detail .news__content::before {
    content: "";
    display: block;
    width: 90vw;
    background: #fff;
    position: absolute;
    left: -24px;
    top: 0;
    z-index: 0;
    height: calc(100% + 80px);
  }
}
@media screen and (max-width: 767px) {
  .page__news-detail .mainvisual__img {
    padding-left: 20px;
  }
  .page__news-detail .mainvisual__img .page__title-child-wrap {
    bottom: -20px;
    left: -12px;
  }
  .page__news-detail .mainvisual__img .page__title-child-wrap .title span {
    font-size: 28px;
    padding: 0px 20px 0 24px;
  }
  .page__news-detail .mainvisual__img img {
    width: 100%;
  }
  .page__news-detail .news__content {
    padding-left: 20px;
  }
  .page__news-detail .news__content::before {
    left: -12px;
  }
}
@media screen and (max-width: 575px) {
  .page__news-detail .mainvisual__img {
    padding-left: 0;
  }
  .page__news-detail .mainvisual__img .page__title-child-wrap .title span {
    font-size: 24px;
    padding: 0px 12px 0 20px;
  }
  .page__news-detail .news__content {
    padding-top: 0px;
    padding-left: 0;
  }
  .page__news-detail .news__content-inner h1,
  .page__news-detail .news__content-inner h2 {
    padding: 6px 20px;
    font-size: 20px;
    -webkit-clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 0% 100%);
            clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 0% 100%);
  }
  .page__news-detail .news__content-inner h3 {
    padding: 2px 10px;
    font-size: 18px;
    border-left: 2px solid var(--black);
  }
}
/*
 * ============ 404 ============
 */
.page__404 .notfound__wrap a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}/*# sourceMappingURL=page.css.map */