@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
/* ====================================================
	カラー
==================================================== */
/* ====================================================
	使用フォント
==================================================== */
/* ====================================================
	breakpoint
==================================================== */
html {
  background-color: #000;
  color: #fff;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1720px) {
  html {
    font-size: 0.581vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.333vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
}

main {
  overflow: hidden;
}

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

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

.is-en {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 800;
}

img {
  position: relative;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: 0.6s;
}

a:hover {
  opacity: 0.6;
}

/* ====================================================
	共通スタイル
==================================================== */
.cmnBlock {
  padding: 0 10rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .cmnBlock {
    padding: 0 6rem;
  }
}

.cmnInner {
  position: relative;
  max-width: 150rem;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .cmnInner {
    max-width: initial;
  }
}

.cmnLyt {
  position: relative;
  padding: 15rem 0;
}
@media screen and (max-width: 750px) {
  .cmnLyt {
    padding: 5rem 0;
  }
}

.cmnBox {
  position: relative;
}

.cmnBtn__wrap {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.6rem;
  border-radius: 50px;
  position: relative;
  transition: 0.5s;
  max-width: 33.2rem;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .cmnBtn__wrap {
    max-width: 24.5rem;
    font-size: 2.4rem;
  }
}
.cmnBtn__wrap.is-black {
  background-color: #000;
}
.cmnBtn__wrap.is-black:hover {
  opacity: 0.6;
  cursor: pointer;
}
.cmnBtn__wrap.is-black a {
  color: #ff8016;
  text-decoration: none;
  padding: 2.4rem 12.6rem 2.6rem 9.4rem;
}
@media screen and (max-width: 750px) {
  .cmnBtn__wrap.is-black a {
    padding: 2.4rem 12.6rem 2.3rem 6.9rem;
  }
}
.cmnBtn__wrap.is-black a:hover {
  opacity: initial;
}
.cmnBtn__wrap.is-black:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #ff8016;
  border-right: solid 3px #ff8016;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 9.6rem;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .cmnBtn__wrap.is-black:before {
    width: 1.3rem;
    height: 1.3rem;
    right: 7.2rem;
    bottom: 0;
    border-top: solid 2px #ff8016;
    border-right: solid 2px #ff8016;
  }
}
.cmnBtn__wrap.is-orange {
  background-color: #ff8016;
}
.cmnBtn__wrap.is-orange:hover {
  opacity: 0.6;
  cursor: pointer;
}
.cmnBtn__wrap.is-orange a {
  color: #000;
  text-decoration: none;
}
.cmnBtn__wrap.is-orange a:hover {
  opacity: initial;
}
.cmnBtn__wrap.is-orange:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 9.6rem;
  bottom: 0;
  margin: auto;
}

.is-front .menu {
  color: #fff;
}
.is-front .menu.white .hamburger span {
  background: #fff;
}
.is-front .menu.white .hamburger.active span {
  background: #000;
}
.is-front .menu.black .hamburger span {
  background: #000;
}
.is-front .menu.black .hamburger.active span {
  background: #000;
}
.is-front .menu.orange .hamburger span {
  background: #ff8016;
}
.is-front .menu.orange .hamburger.active span {
  background: #000;
}

.menu {
  position: fixed;
  right: 3.4rem;
  top: 3.4rem;
  padding: 16px;
  z-index: 1000;
  color: #000;
}
@media screen and (max-width: 750px) {
  .menu {
    right: 1.4rem;
    top: 1.4rem;
  }
}
.menu.black {
  color: #000;
}
.menu.white {
  color: #fff;
}
.menu.orange {
  color: #ff8016;
}
.menu__items {
  position: fixed;
  flex-direction: column;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.menu__items a {
  text-decoration: none;
}
.menu__items.show {
  visibility: visible;
  opacity: 1;
}
.menu__items.show .menu__box-bg {
  display: block;
  visibility: visible;
  opacity: 1;
}
.menu__items.show .menu__box-wrap {
  right: 0;
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
}
.menu__text {
  top: 3.3rem;
  height: 0 !important;
  font-size: 2.5rem;
}
.menu__box {
  height: calc(var(--vh, 1vh) * 100);
  overflow: auto;
}
.menu__box-bg {
  display: none;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 9;
  transition: 0.8s;
  visibility: hidden;
  opacity: 0;
}
.menu__box-wrap {
  position: fixed;
  top: 0;
  right: -95rem;
  z-index: 99;
  background: #ff8016;
  width: 52.7rem;
  height: calc(var(--vh, 1vh) * 100);
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .menu__box-wrap {
    width: 100vw;
  }
}
.menu__box-list {
  font-size: 8.4rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .menu__box-list {
    font-size: 12.4rem;
  }
}
.menu__box-list-inner {
  padding: 2.1rem 4.5rem;
}
@media screen and (max-width: 750px) {
  .menu__box-list-inner {
    padding: 4.1rem 4.5rem;
    height: 100%;
  }
}
.menu__box-list li {
  height: 8.85rem;
}
@media screen and (max-width: 750px) {
  .menu__box-list li {
    height: initial;
    padding-bottom: 1rem;
  }
}
.menu__box-sns-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4.9rem;
  justify-content: space-between;
  gap: 2.5rem 0;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list {
    gap: 5.5rem 0;
    padding: 4.9rem 0 8rem;
  }
}
.menu__box-sns-list li {
  width: 13rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list li {
    width: 17rem;
  }
}
.menu__box-sns-list .is-x {
  width: 7.3rem;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list .is-x {
    width: 11rem;
  }
}
.menu__box-sns-list .is-youtube {
  width: 9.4rem;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list .is-youtube {
    width: 14.4rem;
  }
}
.menu__box-sns-list .is-instagram {
  width: 7.4rem;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list .is-instagram {
    width: 11rem;
  }
}
.menu__box-sns-list .is-facebook {
  width: 7.5rem;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list .is-facebook {
    width: 12rem;
  }
}
.menu__box-sns-list .is-tiktok {
  width: 6.4rem;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list .is-tiktok {
    width: 10.4rem;
  }
}
.menu__box-sns-list .is-threds {
  width: 6.3rem;
}
@media screen and (max-width: 750px) {
  .menu__box-sns-list .is-threds {
    width: 10.3rem;
  }
}

/* ハンバーガー */
.hamburger {
  width: 7.3rem;
  height: 2.8rem;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}
.hamburger:hover {
  opacity: 0.8;
}

.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: currentColor;
  left: 0;
  transition: all 0.2s ease;
}
@media screen and (max-width: 750px) {
  .hamburger span {
    height: 2px;
  }
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* バツに変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  height: 10px;
}
@media screen and (max-width: 750px) {
  .hamburger.active span:nth-child(1) {
    height: 5px;
  }
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(4) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  height: 10px;
}
@media screen and (max-width: 750px) {
  .hamburger.active span:nth-child(3) {
    height: 5px;
  }
}

.hamburger.active {
  color: #000;
}

.scroll-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: black;
  background-color: unset;
  border: none;
  padding: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  z-index: 1000;
}
@media screen and (max-width: 750px) {
  .scroll-top-btn {
    bottom: 2.1rem;
    right: 3.2rem;
  }
}
@media screen and (max-width: 750px) {
  .scroll-top-btn svg {
    width: 8rem;
    height: 8rem;
  }
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn.show:hover {
  opacity: 0.8;
}

/* 色パターン例（必要に応じて増やしてOK） */
.scroll-top-btn.black {
  color: #000;
}

.scroll-top-btn.orange {
  color: #ff8016;
}

.scroll-top-btn.white {
  color: #fff;
}

.breadcrumb {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  display: flex;
  gap: 4rem;
  font-size: 3.2rem;
  color: #000;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .breadcrumb {
    font-size: 2.4rem;
  }
}
.breadcrumb__wrapper {
  padding-top: 0.8rem;
}
@media screen and (max-width: 750px) {
  .breadcrumb__wrapper {
    padding-top: 2.3rem;
  }
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -2.5rem;
  bottom: -0.2rem;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .breadcrumb li:before {
    width: 1.2rem;
    height: 1.2rem;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    right: -2.4rem;
  }
}
.breadcrumb li:last-of-type::before {
  display: none;
}
.breadcrumb span {
  max-width: 124rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .breadcrumb span {
    max-width: 43rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .pagination {
    gap: 2.9rem;
  }
}
.pagination-wrap {
  padding-top: 9.6rem;
}
@media screen and (max-width: 750px) {
  .pagination-wrap {
    padding-top: 6.4rem;
  }
}
.pagination .next.page-numbers {
  display: none;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 1.2rem 1.65rem;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 2.1rem;
  transition: all 0.2s ease;
}
@media screen and (max-width: 750px) {
  .pagination .page-numbers {
    padding: 2.5rem 3.15rem;
    font-size: 3.1rem;
  }
}
.pagination .page-numbers:hover {
  opacity: 0.8;
}
.pagination .page-numbers.current {
  background-color: #000;
  color: #fff;
  border-color: #000;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  pointer-events: none;
  border: none;
  color: #000;
  padding: 1.2rem 0.65rem;
}
.pagination .prev {
  display: none;
}

.notFoundPage {
  background-color: #ff8016;
  color: #000;
}
@media screen and (max-width: 750px) {
  .notFoundPage .cmnLyt {
    padding: 10rem 0;
  }
}
.notFoundPage__base-container {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  background-color: #fff;
  padding: 9rem 10rem;
  padding: 6.7rem 10rem 8rem;
  color: #000;
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .notFoundPage__base-container {
    padding: 4.8rem 6rem 6rem;
    font-size: 2.2rem;
    text-align: left;
    line-height: 1.45;
  }
}
.notFoundPage h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 750px) {
  .notFoundPage h2 {
    font-size: 3.8rem;
    margin-bottom: 2.8rem;
  }
}
.notFoundPage__box {
  margin-top: -2.7rem;
}
@media screen and (max-width: 750px) {
  .notFoundPage__box {
    margin-top: 1.3rem;
  }
}
.notFoundPage__base-section {
  padding-top: 4.6rem;
}
@media screen and (max-width: 750px) {
  .notFoundPage__base-section {
    padding-top: 3.6rem;
  }
}

.is-red {
  color: #b80000;
}

.is-center {
  text-align: center;
}

.is-front h2 {
  font-size: 19.2rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .is-front h2 {
    font-size: 12rem;
  }
}

/* ====================================================
	FV
==================================================== */
#topFv {
  height: 100svh;
  background-color: #ff8016;
}
#topFv.cmnBlock {
  padding: initial;
}
#topFv .cmnInner {
  max-width: initial;
}
#topFv h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12rem;
  line-height: 1.25;
}
@media screen and (max-width: 750px) {
  #topFv h1 {
    font-size: 8rem;
  }
}

.topFv__company-name-wrapper {
  margin-top: 3rem;
}
.topFv__company-name {
  font-size: 7rem;
}
@media screen and (max-width: 750px) {
  .topFv__company-name {
    font-size: 4.9rem;
  }
}
.topFv__lyt {
  z-index: 2;
  position: absolute;
  bottom: 5.5rem;
  left: 5.9rem;
}
@media screen and (max-width: 750px) {
  .topFv__lyt {
    bottom: 4.5rem;
    left: 3.7rem;
  }
}

.video-bg {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100.1%;
  min-height: 100.1%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/* ====================================================
	NEWS
==================================================== */
#topNews {
  background-color: #ff8016;
}
#topNews h2 {
  color: #000;
  margin-top: -4.3rem;
  margin-left: -1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  #topNews h2 {
    margin-left: -0.6rem;
    letter-spacing: 0.01em;
  }
}
#topNews .cmnLyt {
  padding: 15rem 0;
}
@media screen and (max-width: 750px) {
  #topNews .cmnLyt {
    padding: 11.9rem 0 10rem;
  }
}

.topNews__list {
  padding-top: 0.8rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 750px) {
  .topNews__list {
    padding-top: 0;
    margin-left: 0.1rem;
    margin-top: -0.2rem;
    padding-bottom: 3.6rem;
  }
}
.topNews__list li {
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 999px) {
  .topNews__list li {
    border-bottom: 1px solid #000;
  }
}
.topNews__list li:last-of-type {
  border-bottom: none;
}
.topNews__item-link {
  display: flex;
  align-items: center;
  padding: 2.6rem 0 2.8rem;
  gap: 21.9rem;
}
@media screen and (max-width: 750px) {
  .topNews__item-link {
    padding: 2.5rem 0 2.7rem;
    gap: 3.7rem;
  }
}
.topNews__item-date {
  font-size: 3.2rem;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .topNews__item-date {
    font-size: 2.4rem;
    font-family: "Outfit", sans-serif;
    font-style: normal;
    font-weight: 400;
  }
}
.topNews__item-ttl {
  font-size: 2.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .topNews__item-ttl {
    font-size: 2.4rem;
  }
}

/* ====================================================
	ABOUT
==================================================== */
@media screen and (max-width: 750px) {
  #topAbout .cmnLyt {
    padding: 5rem 0 10rem;
  }
}
#topAbout h2 {
  color: #ff8016;
  max-width: 150rem;
  margin: -4.3rem auto 0;
  letter-spacing: 0;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  #topAbout h2 {
    margin-top: 2.4rem;
    margin-left: 3rem;
    letter-spacing: 0.01em;
    padding: 0 3rem;
  }
}
#topAbout .cmnInner {
  max-width: 170rem;
}
@media screen and (max-width: 750px) {
  #topAbout.cmnBlock {
    padding: 0;
  }
}

.topAbout__cmn-lyt {
  display: flex;
  padding-top: 10.3rem;
  max-width: 150rem;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-tvMan {
    display: inline-block;
    padding-top: 0;
    width: 100vw;
  }
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-tvMan .topAbout__cmn-textBox {
    padding: 5rem 0 0 6rem;
  }
}
.topAbout__cmn-lyt.is-videoCost {
  display: flex;
  justify-content: flex-start;
  margin-top: -7rem;
  position: relative;
  margin-left: -10rem;
  padding-top: initial;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-videoCost {
    margin-left: -2rem;
    margin-top: -9.7rem;
  }
}
.topAbout__cmn-lyt.is-videoCost .topAbout__cmn-textBox {
  padding-top: 7.4rem;
  margin-left: 13.1rem;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-videoCost .topAbout__cmn-textBox {
    margin-left: 2.7rem;
  }
}
.topAbout__cmn-lyt.is-broadcastWriter {
  padding-top: 11.4rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-broadcastWriter {
    display: inline-block;
    padding: 0;
    margin-top: 1.9rem;
  }
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-broadcastWriter .topAbout__cmn-textBox {
    padding: 5rem 0 0 6rem;
  }
}
.topAbout__cmn-lyt.is-broadcastWriter .topAbout__cmn-ttl {
  line-height: 1.3;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-broadcastWriter .topAbout__cmn-ttl {
    line-height: 1.4;
  }
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-broadcastWriter .topAbout__cmn-text {
    padding-top: 3.1rem;
  }
}
.topAbout__cmn-lyt.is-broadcastWriter .topAbout__cmn-text span {
  color: #ff8016;
}
.topAbout__cmn-lyt.is-videoEra {
  padding-top: 5.6rem;
  position: relative;
  margin-left: -10rem;
  max-width: 152rem;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-videoEra {
    flex-direction: column;
    align-items: center;
    width: 100vw;
    padding-top: 6rem;
    margin-left: 0;
  }
}
.topAbout__cmn-lyt.is-videoEra .topAbout__cmn-textBox {
  padding-top: 10.5rem;
  margin-left: 11.6rem;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-videoEra .topAbout__cmn-textBox {
    margin-left: -4.1rem;
    padding-top: 5rem;
  }
}
.topAbout__cmn-lyt.is-videoEra .topAbout__cmn-ttl {
  line-height: 1.3;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-videoEra .topAbout__cmn-ttl {
    line-height: 1.4;
  }
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-lyt.is-videoEra .topAbout__cmn-text {
    padding-top: 2.8rem;
  }
}
.topAbout__cmn-ttl {
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  display: block;
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-ttl {
    font-size: 3.8rem;
  }
}
.topAbout__cmn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  display: block;
  font-size: 2.1rem;
  line-height: 1.4;
  padding-top: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .topAbout__cmn-text {
    font-size: 2.4rem;
    padding-top: 2.1rem;
    letter-spacing: 0.03em;
  }
}
.topAbout__ttl-imgBox {
  margin-top: -12rem;
  position: relative;
  margin-left: -10rem;
  width: 170.6rem;
  aspect-ratio: 1700/638;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 750px) {
  .topAbout__ttl-imgBox {
    width: 69rem;
    aspect-ratio: 690/334;
    margin-left: 0;
    margin-top: -6rem;
  }
}
.topAbout__ttl-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0.2rem -13rem;
     object-position: 0.2rem -13rem;
  transform: scale(1.15);
}
@media screen and (max-width: 750px) {
  .topAbout__ttl-imgBox img {
    -o-object-position: center 150%;
       object-position: center 150%;
  }
}
.topAbout__tvMan-imgBox {
  margin-left: 10.2rem;
  margin-top: 0.9rem;
}
@media screen and (max-width: 750px) {
  .topAbout__tvMan-imgBox {
    margin-left: 0;
    margin-right: 1rem;
    text-align: right;
    margin-top: 4.5rem;
  }
}
.topAbout__tvMan-imgBox img {
  width: 39.6rem;
}
@media screen and (max-width: 750px) {
  .topAbout__tvMan-imgBox img {
    width: 20.1%;
  }
}
.topAbout__videoCost-imgBox {
  width: 85rem;
  aspect-ratio: 850/425;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 750px) {
  .topAbout__videoCost-imgBox {
    width: 37rem;
    aspect-ratio: 370/388;
  }
}
.topAbout__videoCost-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0.2rem -9.4rem;
     object-position: 0.2rem -9.4rem;
}
@media screen and (max-width: 750px) {
  .topAbout__videoCost-imgBox img {
    -o-object-position: -7.3rem -1rem;
       object-position: -7.3rem -1rem;
    transform: scale(1.05);
  }
}
.topAbout__representative-imgBox {
  text-align: center;
  max-width: 150rem;
  margin: -8.7rem auto 0;
  width: 150rem;
  aspect-ratio: 1500/575;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 750px) {
  .topAbout__representative-imgBox {
    margin: 2.1rem auto 0;
    width: 63rem;
    aspect-ratio: 630/310;
  }
}
.topAbout__representative-imgBox img {
  transform: scale(1.13);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: -7.7rem -2rem;
     object-position: -7.7rem -2rem;
}
@media screen and (max-width: 750px) {
  .topAbout__representative-imgBox img {
    -o-object-position: -2.8rem 1.4rem;
       object-position: -2.8rem 1.4rem;
  }
}
.topAbout__broadcastWriter-imgBox {
  margin-top: -15rem;
  width: 52.3rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  height: auto;
  border-radius: 50%;
  margin-left: 15rem;
}
@media screen and (max-width: 750px) {
  .topAbout__broadcastWriter-imgBox {
    position: absolute;
    width: 39.6%;
    top: -2.9rem;
    right: -2.1rem;
    margin-top: initial;
  }
}
.topAbout__broadcastWriter-imgBox img {
  border-radius: 70%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.04);
  -o-object-position: -4rem 0;
     object-position: -4rem 0;
}
@media screen and (max-width: 750px) {
  .topAbout__broadcastWriter-imgBox img {
    -o-object-position: -2rem 0;
       object-position: -2rem 0;
  }
}
.topAbout__videoEra-imgBox {
  width: 86.5rem;
  aspect-ratio: 865/486;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 750px) {
  .topAbout__videoEra-imgBox {
    width: 75rem;
    aspect-ratio: 750/388;
  }
}
.topAbout__videoEra-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
  -o-object-position: -2.2rem 1.3rem;
     object-position: -2.2rem 1.3rem;
}
@media screen and (max-width: 750px) {
  .topAbout__videoEra-imgBox img {
    transform: scale(1.15);
    -o-object-position: -4rem 2.3rem;
       object-position: -4rem 2.3rem;
  }
}

/* ====================================================
WORKS
==================================================== */
#topWorks {
  background-color: #ff8016;
}
@media screen and (max-width: 750px) {
  #topWorks .cmnLyt {
    padding: 11.7rem 0 9.5rem;
  }
}
@media screen and (max-width: 750px) {
  #topWorks.cmnBlock {
    padding: 0 5.5rem;
  }
}
#topWorks h2 {
  color: #000;
  margin-top: -4rem;
}
#topWorks .cmnBtn__wrap.is-black {
  margin-top: 10rem;
}
@media screen and (max-width: 750px) {
  #topWorks .cmnBtn__wrap.is-black {
    margin-top: 5.6rem;
    max-width: 24.5rem;
  }
}
@media screen and (max-width: 750px) {
  #topWorks .cmnBtn__wrap.is-black:before {
    right: 7.1rem;
    bottom: -0.1rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}

.topWorks {
  /* モーダルスタイル */
}
.topWorks__portfolio {
  padding-top: 7.5rem;
  padding-bottom: 9.2rem;
}
@media screen and (max-width: 750px) {
  .topWorks__portfolio {
    padding-top: 4.6rem;
    padding-bottom: 5rem;
  }
}
.topWorks__portfolio-list {
  display: flex;
  gap: 8.3rem 1.4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .topWorks__portfolio-list {
    gap: 2rem 3rem;
    justify-content: space-between;
  }
}
.topWorks__portfolio-list .video-item {
  width: 32.7%;
}
@media screen and (max-width: 750px) {
  .topWorks__portfolio-list .video-item {
    width: 47%;
  }
}
.topWorks__portfolio-list {
  display: flex;
  gap: 7rem 6.9rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .topWorks__portfolio-list {
    gap: 3rem 3.7rem;
  }
}
.topWorks__video-lyt {
  width: 44.9rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .topWorks__video-lyt {
    width: 28.9rem;
  }
}
.topWorks__video-lyt:hover {
  opacity: 0.8;
}
.topWorks__video-thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
  aspect-ratio: 16/9;
  overflow: hidden;
  height: auto;
}
.topWorks__video-thumbnail iframe {
  height: 100%;
}
.topWorks__video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-position: 0rem -4.28rem;
     object-position: 0rem -4.28rem;
}
@media screen and (max-width: 750px) {
  .topWorks__video-thumbnail img {
    -o-object-position: 0rem -2.8rem;
       object-position: 0rem -2.8rem;
  }
}
.topWorks__video-portfolio {
  padding-top: 7.4rem;
}
@media screen and (max-width: 750px) {
  .topWorks__video-portfolio {
    padding-top: 4.3rem;
  }
}
.topWorks__video-title {
  color: #000;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  padding-top: 0.7rem;
  line-height: 1.3;
}
@media screen and (max-width: 750px) {
  .topWorks__video-title {
    font-size: 2.4rem;
  }
}
.topWorks__video-title span {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topWorks .play-button {
  position: absolute;
  top: 13.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17rem;
  height: 17rem;
  background: url("../img/img_works-01.png") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .topWorks .play-button {
    top: 8.4rem;
    width: 10rem;
    height: 10rem;
  }
}
.topWorks__video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.topWorks__video-modal.hidden {
  display: none;
}
.topWorks__modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}
.topWorks__modal-content iframe {
  width: 100%;
  height: 450px;
}
.topWorks__close-modal {
  position: absolute;
  top: -8rem;
  right: 0;
  color: #fff;
  font-size: 6rem;
  cursor: pointer;
}

/* ====================================================
MEMBERS
==================================================== */
#topMembers h2 {
  color: #ff8016;
  margin-top: -4.3rem;
  margin-left: -1.1rem;
}
@media screen and (max-width: 750px) {
  #topMembers h2 {
    margin-top: 2.4rem;
    margin-left: -0.8rem;
    letter-spacing: 0.01em;
  }
}
#topMembers .is-modal {
  display: none;
}
@media screen and (max-width: 750px) {
  #topMembers .cmnLyt {
    padding: 5rem 0 10rem;
  }
}

.topMembers__subTitle.is-en {
  padding-top: 3.4rem;
  font-size: 7rem;
  margin-left: -0.3rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  .topMembers__subTitle.is-en {
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    margin-left: 0;
    padding-top: 1.8rem;
  }
}
.topMembers__subTitle.is-member {
  padding-top: 11.4rem;
}
@media screen and (max-width: 750px) {
  .topMembers__subTitle.is-member {
    padding-top: 8.6rem;
  }
}
.topMembers__representative-block {
  display: flex;
  padding-top: 6rem;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-block {
    padding-top: 5.7rem;
  }
}
.topMembers__representative-block.is-02 {
  padding-top: 12.9rem;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-block.is-02 {
    padding-top: 6.8rem;
  }
}
.topMembers__representative-block .cmnBtn__wrap.is-orange {
  color: #000;
  display: inline-block;
  height: 3rem;
  margin-top: 0;
  margin-left: 70.5rem;
  padding: 2.6rem 12.7rem 3.2rem 9.2rem;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-block .cmnBtn__wrap.is-orange {
    margin-left: 2rem;
    margin-top: 5.9rem;
    padding: 2.2rem 15.3rem 1.7rem 6.7rem;
    width: 2.2rem;
  }
}
@media screen and (max-width: 750px) {
  .topMembers__representative-block .cmnBtn__wrap.is-orange:before {
    width: 1.2rem;
    height: 1.2rem;
    right: 7.2rem;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
}
.topMembers__employee-block {
  width: 38rem;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-block {
    width: initial;
    max-width: 28rem;
  }
}
.topMembers__employee-block:nth-child(n+4) {
  padding-top: 8rem;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-block:nth-child(n+4) {
    padding-top: initial;
  }
}
.topMembers__employee-block .cmnBtn__wrap {
  color: #000;
}
.topMembers__employee-block .cmnBtn__wrap.is-orange:before {
  right: 9.9rem;
  top: -0.3rem;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-block .cmnBtn__wrap.is-orange:before {
    width: 1.2rem;
    height: 1.2rem;
    right: 6.9rem;
    top: -0.1rem;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
}
.topMembers__employeeWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3rem;
  justify-content: space-between;
  padding-top: 5.8rem;
}
@media screen and (max-width: 750px) {
  .topMembers__employeeWrap {
    padding-top: 3.6rem;
    gap: 6rem 0;
  }
}
.topMembers__representative-detailWrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 8.4rem;
  width: 49rem;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-detailWrap {
    margin-left: 7.1rem;
    margin-top: -0.6rem;
    width: 27.9rem;
  }
}
.topMembers__representative-name {
  font-size: 4.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-name {
    font-size: 3.8rem;
  }
}
.topMembers__representative-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.1rem;
  padding-top: 4.3rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-text {
    font-size: 2.4rem;
    padding-top: 1.5rem;
  }
}
.topMembers__representative-imgWrap {
  width: 38rem;
  height: 38rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .topMembers__representative-imgWrap {
    width: 28rem;
    height: 28rem;
  }
}
.topMembers__representative-imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topMembers__employee-img-wrap {
  width: 38rem;
  height: 38rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-img-wrap {
    width: 28rem;
    height: 28rem;
  }
}
.topMembers__employee-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}
.topMembers__employee-name {
  font-size: 4.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-name {
    font-size: 3.8rem;
  }
}
.topMembers__employee-text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  padding-top: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-text {
    font-size: 2.4rem;
    padding-top: 0.2rem;
  }
}
.topMembers__employee-detail {
  padding-top: 2.4rem;
  min-height: 15rem;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-detail {
    padding-top: 1.8rem;
  }
}
.topMembers__employee-detail-wrap .cmnBtn__wrap.is-orange {
  margin-top: 2.4rem;
  padding: 2.6rem 13.2rem 2.7rem 9.2rem;
  max-width: 11rem;
}
@media screen and (max-width: 750px) {
  .topMembers__employee-detail-wrap .cmnBtn__wrap.is-orange {
    margin-top: 3.3rem;
    width: 7.7rem;
    padding: 2.2rem 9.6rem 2.3rem 6.7rem;
  }
}

/* ====================================================
COMPANY
==================================================== */
#topCompany {
  background-color: #ff8016;
}
@media screen and (max-width: 750px) {
  #topCompany .cmnLyt {
    padding: 11.6rem 0 10rem;
  }
}
#topCompany h2 {
  color: #000;
  margin-top: -4.2rem;
}
#topCompany th,
#topCompany td {
  font-size: 3rem;
  line-height: 1.35;
  padding: 2.2rem 0;
  color: #000;
}
@media screen and (max-width: 750px) {
  #topCompany th,
  #topCompany td {
    font-size: 2.5rem;
    padding: 1.6rem 0;
  }
}

.topCompany__infoWrap {
  max-width: 150rem;
  margin: 2.6rem auto 5rem;
  padding: 8rem 0;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .topCompany__infoWrap {
    padding: 1.5rem 0 1.3rem;
    margin: 4.5rem 0 0;
  }
}
.topCompany__infoInner {
  max-width: 110rem;
  margin: 0 auto;
}
.topCompany__info {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .topCompany__info {
    width: 90%;
    margin: 0 auto;
  }
}
.topCompany__info tr {
  border-bottom: 1px solid #000;
}
.topCompany__info tr:last-of-type {
  border-bottom: unset;
}
.topCompany__info th {
  font-weight: 600;
  text-align: left;
  width: 31rem;
}
@media screen and (max-width: 750px) {
  .topCompany__info th {
    width: 32%;
  }
}
.topCompany__info td {
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .topCompany__info td {
    width: 68%;
  }
}

/* ====================================================
Gmap
==================================================== */
#topGmap iframe {
  width: 100%;
}

/* ====================================================
CONTACT
==================================================== */
@media screen and (max-width: 750px) {
  #topContact {
    padding: 0 6rem 5rem;
  }
}
#topContact h2 {
  color: #ff8016;
  margin-top: -4.2rem;
}
@media screen and (max-width: 750px) {
  #topContact h2 {
    margin-top: 2.5rem;
  }
}
#topContact textarea {
  white-space: pre-wrap;
}

/* contact */
.contact__form {
  font-size: 3rem;
  display: inline-block;
  padding-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .contact__form {
    font-size: 2.4rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .contact__form.is-main-wrap {
    padding-top: 0.3rem;
  }
}
.contact__form.is-main-wrap > span {
  padding-top: 0.6rem;
  display: inline-block;
}

.contact_inner {
  max-width: 1500px;
  margin: 4.5rem auto 15rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .contact_inner {
    margin: 2rem 6rem 9rem;
  }
}

.wpcf7 {
  z-index: 10;
  position: relative;
  background-color: #fff;
  margin-top: 4.4rem;
}
@media screen and (max-width: 750px) {
  .wpcf7 {
    margin-top: 2.4rem;
  }
}

h2.contact_title {
  color: #ff8016;
}

input.wpcf7-form-control {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  border: none;
  background-color: #ffe3cc;
  width: 100%;
  font-size: 3.2rem;
  padding: 1.6rem 1rem;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
}
@media screen and (max-width: 750px) {
  input.wpcf7-form-control {
    margin-top: 1.5rem;
  }
}

textarea.wpcf7-form-control.wpcf7-textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #ffe3cc;
  border: none;
  width: 100% !important;
  max-width: 100%;
  font-size: 3.2rem;
  padding: 1rem;
  height: 27rem;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
}
@media screen and (max-width: 750px) {
  textarea.wpcf7-form-control.wpcf7-textarea {
    margin-top: 1.6rem;
    min-height: 2rem;
    height: 29.8rem;
  }
}

form.wpcf7-form {
  color: #000;
  padding: 8.9rem 20rem;
}
@media screen and (max-width: 750px) {
  form.wpcf7-form {
    padding: 3rem 3rem 6rem;
  }
}

.wpcf7 label {
  display: flex;
  font-size: 3.2rem;
  justify-content: space-between;
  padding-bottom: 7.7rem;
  pointer-events: none;
  align-items: center;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .wpcf7 label {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 1.9rem;
  }
}

label:last-of-type {
  padding-bottom: 8.1rem;
  align-items: flex-start;
  border-bottom: unset !important;
}
@media screen and (max-width: 750px) {
  label:last-of-type {
    padding-bottom: 1.4rem;
  }
}

.contact_inner #wpcf7-f9-o1 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10rem 0 5.8rem;
}
@media screen and (max-width: 750px) {
  .contact_inner #wpcf7-f9-o1 {
    margin: 0 3.5rem;
    padding: 4rem 0;
  }
}

span.contact__required-field {
  color: #ff8016;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  span.contact__required-field {
    font-size: 2rem;
  }
}

p:has(.submit-send) {
  text-align: center;
}

span.contact__form-name-wrap,
span.contact__form-mail-wrap,
span.contact__form-phone-number-wrap,
span.contact__form-title-wrap,
span.contact__form-main-wrap {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  span.contact__form-name-wrap,
  span.contact__form-mail-wrap,
  span.contact__form-phone-number-wrap,
  span.contact__form-title-wrap,
  span.contact__form-main-wrap {
    width: initial;
    font-size: 2.4rem;
  }
}

span.contact__form-name-wrap,
span.contact__form-mail-wrap,
span.contact__form-phone-number-wrap,
span.contact__form-title-wrap,
span.contact__form-main-wrap {
  width: 31.5%;
}
@media screen and (max-width: 750px) {
  span.contact__form-name-wrap,
  span.contact__form-mail-wrap,
  span.contact__form-phone-number-wrap,
  span.contact__form-title-wrap,
  span.contact__form-main-wrap {
    width: initial;
  }
}

span.wpcf7-form-control-wrap {
  width: 68.5%;
  pointer-events: initial;
}
@media screen and (max-width: 750px) {
  span.wpcf7-form-control-wrap {
    width: initial;
    padding-top: 0.9rem;
  }
}

label:has(.contact__form-main-wrap) {
  align-items: flex-start;
}

.contact__form.is-send-btn input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-send {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  width: initial;
  padding: 1.4rem 8.1rem 2.1rem 6rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  font-size: 3.6rem;
  background-color: #ff8016;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: block;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .contact__form.is-send-btn input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-send {
    padding: 1.6rem 5.7rem 2.1rem 4.3rem;
    font-size: 2.3rem;
    letter-spacing: 1px;
  }
}

.contact__form.is-send-btn input:hover {
  opacity: 0.8;
}

.contact__form.is-send-btn {
  display: flex;
  justify-content: center;
  position: relative;
}

.contact__form.is-send-btn > div {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.contact__form.is-send-btn > div:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5.6rem;
  bottom: -0.4rem;
  margin: auto;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .contact__form.is-send-btn > div:before {
    width: 1.2rem;
    height: 1.2rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    bottom: -2.4rem;
    right: 3.7rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-response-output {
  font-size: 2.1rem;
  border: unset !important;
  color: #dc3232 !important;
  text-align: center;
}

/* ====================================================
FOOTER
==================================================== */
footer {
  overflow: hidden;
}
footer .is-x img {
  width: 3.8rem;
}
@media screen and (max-width: 750px) {
  footer .is-x img {
    width: 5.6rem;
  }
}
footer .is-youtube img {
  width: 5.7rem;
}
@media screen and (max-width: 750px) {
  footer .is-youtube img {
    width: 9.2rem;
  }
}
footer .is-instagram img {
  width: 3.9rem;
}
@media screen and (max-width: 750px) {
  footer .is-instagram img {
    width: 6.2rem;
  }
}
footer .is-facebook img {
  width: 4rem;
}
@media screen and (max-width: 750px) {
  footer .is-facebook img {
    width: 6.8rem;
  }
}
footer .is-tiktok img {
  width: 3.5rem;
}
@media screen and (max-width: 750px) {
  footer .is-tiktok img {
    width: 5.5rem;
  }
}
footer .is-threads img {
  width: 3.5rem;
}
@media screen and (max-width: 750px) {
  footer .is-threads img {
    width: 5.5rem;
  }
}

.footer__box {
  padding-bottom: 7rem;
}
.footer__main {
  position: relative;
  height: 91rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer__main {
    height: 66.5rem;
  }
}
.footer__backImgWrap {
  width: 100vw;
  margin-top: 97rem;
}
@media screen and (max-width: 750px) {
  .footer__backImgWrap {
    width: 75rem;
    margin-top: 0;
    margin-right: -4rem;
  }
}
.footer__backImgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.35);
  -o-object-position: 12.5rem -19.4rem;
     object-position: 12.5rem -19.4rem;
}
@media screen and (max-width: 750px) {
  .footer__backImgWrap img {
    transform: scale(1.55);
    -o-object-position: 3.3rem 3.4rem;
       object-position: 3.3rem 3.4rem;
  }
}
.footer__companyName {
  color: #fff;
  position: absolute;
  top: 7rem;
  left: 20.3rem;
  letter-spacing: initial;
}
@media screen and (max-width: 750px) {
  .footer__companyName {
    top: 9.1rem;
    left: 5.9rem;
    letter-spacing: 0.05em;
  }
}
.footer__companyName .is-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.5rem;
  display: block;
  padding-top: 0.7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .footer__companyName .is-ja {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}
.footer__companyName .is-en {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 13.2rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .footer__companyName .is-en {
    font-size: 6rem;
  }
}
.footer__sectionWrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer__sectionWrap {
    flex-direction: column;
    align-items: center;
    gap: 5.9rem 0;
  }
}
.footer__sectionWrap a {
  color: #fff;
  font-size: 4.8rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .footer__sectionWrap a {
    font-size: 4rem;
    letter-spacing: initial;
  }
}
.footer__sub {
  padding-top: 7.1rem;
}
@media screen and (max-width: 750px) {
  .footer__sub {
    padding-top: 8.3rem;
  }
}
.footer__section {
  max-width: 150rem;
  margin: 0 auto;
}
.footer__snsWrap {
  display: flex;
  justify-content: center;
  gap: 0 2.8rem;
}
@media screen and (max-width: 750px) {
  .footer__snsWrap {
    gap: 6.1rem 4.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__sns {
  margin: 0 auto;
  max-width: 150rem;
  padding-top: 5.8rem;
}
@media screen and (max-width: 750px) {
  .footer__sns {
    max-width: 36.5rem;
    padding-top: 7.3rem;
  }
}
.footer__copyrightWrap {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  font-size: 1.6rem;
  padding-top: 5.8rem;
}
@media screen and (max-width: 750px) {
  .footer__copyrightWrap {
    padding-top: 6.3rem;
  }
}

/* ====================================================
Modal
==================================================== */
.commonModal__background.js-commonModal__close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0.8;
  z-index: 1000;
}
.commonModal__noteWrap {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  width: calc(100% - 40px);
  height: 100vh;
  z-index: 1001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
.commonModal__noteWrap .is-nomal {
  display: none;
}
.commonModal__note {
  position: relative;
  background-color: #000;
  border: 5px solid #ff8343;
  pointer-events: auto;
  max-width: 1500px;
  min-height: 60rem;
  margin: 5vh auto;
  z-index: 1000;
}
@media screen and (max-width: 750px) {
  .commonModal__note {
    border: 2px solid #ff8343;
    pointer-events: stroke;
    margin: 5vh auto 15vh;
  }
}
.commonModal__content .cmnBtn__wrap.is-orange.js-modalTgl {
  display: none;
}
.commonModal__content .topMembers__representative-block {
  display: inline-block;
  padding: 10rem;
}
@media screen and (max-width: 750px) {
  .commonModal__content .topMembers__representative-block {
    padding: 7rem 5rem;
  }
}
.commonModal__content .topMembers__representative-imgWrap {
  float: left;
  margin-right: 5.4rem;
  width: 44rem;
  height: 44rem;
}
@media screen and (max-width: 750px) {
  .commonModal__content .topMembers__representative-imgWrap {
    float: initial;
    width: 39rem;
    height: auto;
    margin: 0 auto;
  }
}
.commonModal__content .topMembers__representative-detailWrap {
  width: initial;
  margin-left: initial;
  display: initial;
}
.commonModal__content .topMembers__employee-block {
  width: initial;
  padding: 10rem;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .commonModal__content .topMembers__employee-block {
    padding: 7.5rem 5rem;
  }
}
.commonModal__content .topMembers__employee-img-wrap {
  float: left;
  margin-right: 5rem;
}
@media screen and (max-width: 750px) {
  .commonModal__content .topMembers__employee-img-wrap {
    float: initial;
    width: 38.8rem;
    height: auto;
    margin: 0 auto;
  }
}
.commonModal__content .is-modal {
  font-size: 2.2rem;
  font-weight: 400;
}
.commonModal__content .is-modal > span {
  font-size: 2rem;
  display: block;
  padding-top: 2rem;
}
.commonModal__content .topMembers__representative-name {
  margin-top: -1rem;
}
@media screen and (max-width: 750px) {
  .commonModal__content .topMembers__representative-name {
    margin-top: 2.4rem;
  }
}
.commonModal__content .topMembers__representative-text {
  letter-spacing: 0;
  padding-top: 2.6rem;
}
.commonModal__content .topMembers__employee-detail {
  padding-top: 0;
}
@media screen and (max-width: 750px) {
  .commonModal__content .topMembers__employee-detail {
    margin-top: 2.4rem;
  }
}
.commonModal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 6rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  z-index: 1000;
  cursor: pointer;
}
.commonModal__close figure {
  position: absolute;
  top: 50%;
  width: 94%;
  height: 1rem;
  background-color: #fff;
}
.commonModal__close figure:nth-of-type(1) {
  left: 2%;
  transform: translateY(-50%) rotate(45deg);
}
.commonModal__close figure:nth-of-type(2) {
  right: 2%;
  transform: translateY(-50%) rotate(-45deg);
}

.listPage {
  background-color: #ff8016;
  color: #000;
}
@media screen and (max-width: 750px) {
  .listPage .cmnLyt {
    padding: 10rem 0;
  }
}
.listPage__box {
  margin-top: -2.7rem;
}
@media screen and (max-width: 750px) {
  .listPage__box {
    margin-top: 1.3rem;
  }
}
.listPage__base-section {
  padding-top: 5.3rem;
}
@media screen and (max-width: 750px) {
  .listPage__base-section {
    padding-top: 3.8rem;
  }
}
.listPage__article-meta {
  padding-top: 1.3rem;
}
@media screen and (max-width: 750px) {
  .listPage__article-meta {
    padding-top: 1.7rem;
  }
}
.listPage__article-title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.1rem;
  padding-top: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .listPage__article-title {
    font-size: 2.4rem;
    padding-top: 0.7rem;
    line-height: 1.3;
  }
}
.listPage__article-list {
  display: flex;
  gap: 3rem 7.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .listPage__article-list {
    gap: 2.5rem 3.5rem;
  }
}
.listPage__article-date {
  font-size: 2.1rem;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.listPage__article-item {
  width: 29.9%;
}
@media screen and (max-width: 750px) {
  .listPage__article-item {
    width: 47%;
  }
}
.listPage__article-item img {
  max-width: 100%;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.singlePage {
  background-color: #ff8016;
  color: #000;
}
@media screen and (max-width: 750px) {
  .singlePage .cmnLyt {
    padding: 10rem 0;
  }
}
.singlePage__box {
  margin-top: -2.7rem;
}
@media screen and (max-width: 750px) {
  .singlePage__box {
    margin-top: 1.3rem;
  }
}
.singlePage__base-section {
  padding-top: 4.6rem;
}
@media screen and (max-width: 750px) {
  .singlePage__base-section {
    padding-top: 5.2rem;
  }
}
.singlePage__base-container {
  background-color: #fff;
  padding: 9rem 10rem;
}
@media screen and (max-width: 750px) {
  .singlePage__base-container {
    padding: 5rem 6rem 6rem;
  }
}
.singlePage__base-container p {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.1rem;
  display: inline-block;
  padding-top: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .singlePage__base-container p {
    font-size: 2.4rem;
    padding-top: 2.6rem;
  }
}
.singlePage__article-title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .singlePage__article-title {
    font-size: 3.8rem;
  }
}
.singlePage__article-date {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 700;
  padding-top: 2.4rem;
  display: inline-block;
  font-size: 3.1rem;
}
@media screen and (max-width: 750px) {
  .singlePage__article-date {
    font-size: 2.5rem;
  }
}
.singlePage__article-meta {
  border-bottom: 2px solid #000;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .singlePage__article-meta {
    border-bottom: 1px solid #000;
  }
}
.singlePage .wp-block-image {
  padding-top: 3rem;
}
@media screen and (max-width: 750px) {
  .singlePage .wp-block-image {
    padding-top: 2.6rem;
  }
}
.singlePage__article-about {
  display: flex;
  justify-content: space-between;
  font-size: 2.1rem;
  padding-top: 3rem;
  border-top: 2px solid #000;
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .singlePage__article-about {
    border-top: 1px solid #000;
  }
}

.is-lowerPage {
  font-size: 19rem;
  margin-left: -1rem;
}
@media screen and (max-width: 750px) {
  .is-lowerPage {
    font-size: 12rem;
    margin-left: -0.5rem;
    text-align: center;
  }
}

h2.wp-block-heading {
  font-size: 4.8rem;
  line-height: 1.4;
  font-weight: 800;
}

h3.wp-block-heading {
  font-size: 3.8rem;
  line-height: 1.4;
  font-weight: 800;
}

h4.wp-block-heading {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 800;
}

.contactConfirm {
  background-color: #ff8016;
  color: #000;
}
@media screen and (max-width: 750px) {
  .contactConfirm .cmnLyt {
    padding: 10rem 0;
  }
}
.contactConfirm__box {
  margin-top: -2.7rem;
}
@media screen and (max-width: 750px) {
  .contactConfirm__box {
    margin-top: 1.3rem;
  }
}
.contactConfirm__base-section {
  background-color: #fff;
  padding: 7.6rem 20rem 8rem;
  margin-top: 4.6rem;
}
@media screen and (max-width: 750px) {
  .contactConfirm__base-section {
    margin-top: 3.6rem;
    padding: 5.8rem 6rem 6rem;
  }
}
.contactConfirm h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .contactConfirm h2 {
    font-size: 3.9rem;
  }
}
.contactConfirm .contact__form-content {
  width: 30%;
  font-size: 3rem;
}
@media screen and (max-width: 750px) {
  .contactConfirm .contact__form-content {
    width: initial;
    font-size: 2.4rem;
  }
}
.contactConfirm .contact__fill-content {
  width: 47%;
  font-size: 3rem;
  white-space: pre-wrap;
}
@media screen and (max-width: 750px) {
  .contactConfirm .contact__fill-content {
    width: initial;
    font-size: 2.4rem;
  }
}
.contactConfirm label.contact__form {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  padding: 4.5rem 0;
  border-bottom: solid #000 2px;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .contactConfirm label.contact__form {
    padding: 1.8rem 0;
    gap: 1.4rem;
    border-bottom: solid #000 1px;
  }
}
.contactConfirm__btnWrap {
  display: flex;
  justify-content: center;
  padding-top: 0.9rem;
  gap: 5.7rem;
}
@media screen and (max-width: 750px) {
  .contactConfirm__btnWrap {
    padding-top: 1.2rem;
    gap: 3rem;
  }
}
.contactConfirm input.wpcf7-form-control.wpcf7-previous {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  width: initial;
  padding: 1.4rem 5.8rem 1.7rem 9.3rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  font-size: 3.6rem;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  position: relative;
  display: block;
  transition: 0.5s;
  border: #000 solid 2px;
}
@media screen and (max-width: 750px) {
  .contactConfirm input.wpcf7-form-control.wpcf7-previous {
    padding: 1.5rem 3.5rem 1.7rem 6.2rem;
    font-size: 2.4rem;
    border: #000 solid 1px;
  }
}
.contactConfirm input.wpcf7-form-control.wpcf7-submit.has-spinner {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  width: initial;
  padding: 1.4rem 8.5rem 2.1rem 7rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  font-size: 3.6rem;
  background-color: #ff8016;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: block;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .contactConfirm input.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 1.8rem 6rem 1.8rem 4.3rem;
    font-size: 2.4rem;
  }
}
.contactConfirm__previous {
  position: relative;
  transition: 0.3s;
}
.contactConfirm__previous:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  right: 21.8rem;
  bottom: -0.2rem;
  margin: auto;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .contactConfirm__previous:before {
    width: 1.2rem;
    height: 1.2rem;
    right: 14.4rem;
    bottom: -1.6rem;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
  }
}
.contactConfirm__previous:hover {
  opacity: 0.5;
}
.contactConfirm__send {
  position: relative;
  transition: 0.3s;
}
.contactConfirm__send:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 6.7rem;
  bottom: 0.2rem;
  margin: auto;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .contactConfirm__send:before {
    width: 1.2rem;
    height: 1.2rem;
    right: 4.1rem;
    bottom: -1.6rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
.contactConfirm__send:hover {
  opacity: 0.8;
}
.contactConfirm form.wpcf7-form.init {
  padding: initial;
}
.contactConfirm .wpcf7 {
  margin-top: 3rem;
}

form.wpcf7-form.init:has(.contactConfirm) {
  padding: initial;
}

.wpcf7:has(.contactConfirm) {
  margin-top: initial;
}

.thanksPage {
  background-color: #ff8016;
}
@media screen and (max-width: 750px) {
  .thanksPage .cmnLyt {
    padding: 10rem 0;
  }
}
.thanksPage__box {
  margin-top: -2.7rem;
}
@media screen and (max-width: 750px) {
  .thanksPage__box {
    margin-top: 1.3rem;
  }
}
.thanksPage h1 {
  color: #000;
}
.thanksPage h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 750px) {
  .thanksPage h2 {
    font-size: 3.8rem;
    margin-bottom: 2.8rem;
  }
}
.thanksPage__base-section {
  padding-top: 4.6rem;
}
@media screen and (max-width: 750px) {
  .thanksPage__base-section {
    padding-top: 3.6rem;
  }
}
.thanksPage__base-container {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  background-color: #fff;
  padding: 6.7rem 10rem 8rem;
  color: #000;
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .thanksPage__base-container {
    padding: 4.8rem 6rem 6rem;
    font-size: 2.2rem;
    text-align: left;
    line-height: 1.45;
  }
}
.thanksPage__base-container .is-red {
  color: #b80000;
}
.thanksPage__base-container p {
  padding-bottom: 3.2rem;
  letter-spacing: 0.05em;
}
.thanksPage__btn {
  text-align: center;
}
.thanksPage__back-link.cmnBtn {
  padding: 1.6rem 6rem 2.3rem 10.3rem;
  letter-spacing: 0.01em;
  border-radius: 50px;
  color: #fff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-top: 0.3rem;
  background-color: #ff8016;
  position: relative;
  font-size: 3.6rem;
  letter-spacing: initial;
}
@media screen and (max-width: 750px) {
  .thanksPage__back-link.cmnBtn {
    padding: 1.8rem 3rem 2rem 6.5rem;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
}
.thanksPage__back-link:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  right: 40.6rem;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .thanksPage__back-link:before {
    width: 1.2rem;
    height: 1.2rem;
    right: 25.5rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}

.contact__form-note {
  padding-top: 5rem;
  font-size: 2.1rem;
  line-height: 1.4;
}/*# sourceMappingURL=style.css.map */