@charset "UTF-8";
body {
  font-family: 'Noto Sans JP', sans-serif;
}
header li, footer li {
  list-style: none;
}
a {
  text-decoration: none;
}
.mb__br{
  display: none;
}
@media (width < 1101px){
.mb__br{
  display: block;
}
}
@media (width < 769px){
.pc__br{
  display: none;
}
}

/*----------フェード----------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}


/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

@media (width < 1101px) {
  header {
    top: 0;
  }
}
.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3% 5% 0 5%;
  padding: 0 5% 0 3%;
  border-radius: 15px;
  transition: all 0.5s ease;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7); /* ←ここ */
}
@media (width < 1101px) {
  .slide_nav_wrapper {
    margin: 0;
    padding: 0 0 0 30px;
    background-color: transparent;
    opacity: 1;
  }
}
@media (width < 431px) {
  .slide_nav_wrapper {
    padding: 0 0 0 15px;
  }
}

.mb_header__container {
  display: flex;
  justify-content: right;
  align-items: center;
}

.mb_menu {
  display: none;
}

@media (width < 1101px) {
  .mb_menu {
    display: block;
  }
}
.header_logo {
  width: 6%;
  padding: 10px 0;
}
@media (width < 1441px) {
  .header_logo {
    width: 8%;
  }
}
@media (width < 431px) {
  .header_logo {
    width: 20%;
  }
}

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

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  margin-right: 15px; /* ← これ追加 */
  cursor: pointer;
  position: relative;
  z-index: 550;
  background-color: #404040;
  transition: 0.5s all;
}

@media (width < 1101px) {
  .hamburger {
    width: 120px;
    height: 100px;
    background-color: transparent;
  }
}
@media (width < 769px) {
  .hamburger {
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 60px;
    height: 70px;
  }
}

/* ==============================
三本線 共通設定（右揃え）
============================== */
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  height: 3px;
  background-color: #3E3A39;
  right: 0;               /* ← 右基準 */
  transition: all 0.5s;
}

/* 真ん中：24px */
.hamburger span {
  width: 24px;
}

/* 上：16px */
.hamburger span::before {
  width: 16px;
  top: -10px;
}

/* 下：33px */
.hamburger span::after {
  width: 33px;
  bottom: -10px;
}

/* ==============================
OPEN時（×）
============================== */
.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  width: 33px;            /* ×の時は揃える */
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger.open span::after {
  bottom: 0;
  width: 33px;            /* ×の時は揃える */
  transform: rotate(-45deg);
  background-color: #fff;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.9); /* ←ここ */
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}
@media (width < 1101px){
    .mb_nav{
      width: 100%;
    }
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 50px 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding: 5% 60px 0 0;
  text-align: right;
}
@media (width < 769px){
.mb_nav__list li {
  padding: 7% 60px 0 0;
}
}
@media (width < 431px){
.mb_nav__list li {
  padding: 10% 60px 0 0;
}
}
.mb_nav_point{
  position: relative;
}
.mb_nav_point::before{
  content: "／";
  position: absolute;
  left: -25px;
  top: 0;
  color: #fff;
}
.mb_nav__list li a{
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.header__btn{
  background-color: #fff;
  border-radius: 15px;
  width: 250px;
  height: 80px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btn img{
  width: 200px;
  height: auto;
  opacity: 1;
}
.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.mb_nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}

@media (width < 1101px) {
  .mb_nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .mb_nav__item a:hover {
    width: 100%;
  }
}
.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
}
@media (width < 1101px) {
  .mb_header__container {
    display: block;
  }
}

/* ===============================================
パソコン・ナビゲーションメニュー
=============================================== */
.header_pc_container {
  width: 60%;
}
@media (width < 1101px) {
  .header_pc_container {
    display: none;
  }
}

.header_pc_nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_pc_nav li {
  font-size: 16px;
  text-align: center;
}
.header_pc_nav a {
  color: #000;
  transition: color 0.3s ease;
  font-weight: bold;
}
.header_pc_nav a:hover {
  color: #707070;
}

.menu_rb {
  font-size: 10px;
}

/*----------ファーストビュー----------*/
.fv{
    width: 100%;
    height: 100vh;
}
.fv__wrapper{
    padding: 30px;
    width: 100%;
    height: 100%;
}
.fv__hero{
    background-image: url(img/hero.webp);
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    position: relative;
}
.fv__mbhero{
  display: none;
  background-image: url(img/hero.webp);
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  width: 100%;
  height: 90vh;
}
.fv__title{
    color: #fff;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}
.fv__title h1{
    font-size: 60px;
    letter-spacing: 0.4rem;
}
.fv__title h2{
    font-size: 25px;
    letter-spacing: 0.2rem;
    margin: 5% 0 3% -1rem;
}
.fv__title p{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7rem;
    letter-spacing: 0.2rem;
}

@media (width < 1101px){
  .fv{
    height: auto;
  }
  .pc_hero{
    background: none;
    border-radius: 0;
    position: static;
    width: auto;
    height: auto;
  }
  .fv__mbhero{
    display: block;
  }
.fv__title{
  position: static;
  transform: translateY(0);
  color: #000;
  margin: 15% 0 5% 0;
}
.fv__title h1{
    font-size: 50px;
}
.fv__title h2{
    font-size: 25px;
    margin: 5% 0 3% -1.5rem;
    font-weight: normal;
}
.fv__title p{
    font-size: 16px;
    font-weight: normal;
}
}
@media (width < 769px){
.fv__title h1{
    font-size: 40px;
}
.fv__title h2{
    font-size: 20px;
}
.fv__title p{
    font-size: 14px;
}
}
@media (width < 431px){
.fv__title h1{
    font-size: 35px;
	font-weight: 500;
}
.fv__title h2{
    font-size: 15px;
    margin: 5% 0 3% -1.2rem;
}
.fv__title p{
    font-size: 12px;
}
.fv__wrapper{
    padding: 15px;
}
.fv__title{
  margin-top: 25%;
}
}

/*----------アバウトアス----------*/
.about{
    padding: 10% 0;
}
.about__wrapper{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 150px;
}
@media (width < 1441px){
  .about__wrapper{
    margin: 0 5%;
    gap: 100px;
    justify-content: space-between;
  }
}
@media (width < 431px){
  .about__wrapper{
    margin: 0;
  }
}
.about__text{
    margin: 10% 0;
}
.about__text h3{
    font-size: 35px;
    letter-spacing: 0.2rem;
    color: #1A1A1A;
    margin-bottom: 5%;
	font-weight: 500;
}
@media (width < 1281px){
  .about__text h3{
    font-size: 30px;
  }
}
@media (width < 431px){
.about__text h3{
  font-size: 30px;
  margin-bottom: 430px;
  margin-left: 20px;
}
}
.about__text p{
    font-size: 16px;
    line-height: 2.3rem;
}
@media (width < 431px){
  .about__text p{
    font-size: 14px;
    margin-left: 30px;
  }
}
.about__imgbox{
    width: 100%;
    height: auto;
}
.about__imgbox img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.aboutimg01{
    width: 90%;
    margin-left: auto;
}
@media (width < 1441px){
  .aboutimg01{
    width: 80%;
  }
  .aboutimg02{
    width: 70%;
  }
}
@media (width < 1101px){
  .about__wrapper{
    position: relative;
  }
  .aboutimg01{
    margin-left: 0;
    width: 40%;
  }
  .aboutimg02{
    position: absolute;
    right: 0;
    top: 15%;
    width: 35%;
  }
.about__text{
  position: relative;
  z-index: 10;
}
}
@media (width < 1101px){
  .aboutimg01{
    width: 45%;
  }
  .aboutimg02{
    width: 50%;
  }
}
@media (width < 431px){
.about{
    padding: 15% 0;
}
.aboutimg01{
  width: 85%;
}
.aboutimg02{
  width: 80%;
  right: 0;
  top: 9%;
}
.about__text{
  position: relative;
  z-index: 10;
}
}

/*----------セクションタイトル----------*/
.sec__title{
    font-size: 16px;
    position: relative;
    padding-left: 1.2em;
    color: #404040;
}
.sec__title::before{
  content: "／";
  position: absolute;
  left: 0;
  top: 0;
}
@media (width < 431px){
  .sec__title{
    font-size: 20px;
}
.sec__title::before{
  font-size: 20px;
}
}
.recruit .sec__title{
  padding-left: 0;        /* 左逃がしを無効化 */
  text-align: center;
  display: inline-block;
}

.recruit .sec__title::before{
  left: -20px;
}

/*----------ビジネス----------*/
.business{
    padding: 10% 0;
    background-color: #F8F9FA;
}
@media (width < 431px){
.business{
    padding: 20% 0;
}
}
.business__wrapper{
    max-width: 1280px;
    margin: 0 auto;
}
@media (width < 1441px){
.business__wrapper{
    margin: 0 10%;
}
}
@media (width < 431px){
.business__wrapper{
    margin: 0 5%;
}
}
.business__title{
    padding: 5% 0 10% 0;
}
.business__title h3{
    font-size: 40px;
    margin-bottom: 3%;
}
@media (width < 1281px){
.business__title h3{
    font-size: 30px;
}
}
@media (width < 431px){
  .business__title{
    padding: 10% 0 20% 0;
    margin-left: 20px;
  }
.business__title h3{
    font-size: 30px;
    margin-bottom: 10%;
	line-height: 3rem;
	font-weight: 500;
}
.business__title p{
  font-size: 14px;
}
}
.business__title p{
    font-size: 16px;
    line-height: 2rem;
}
.business__contents{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5%;
}
@media (width < 1101px){
.business__contents{
    display: block;
    margin-bottom: 5%;
}
}
.business__contents02{
    margin-bottom: 10%;
}
@media (width < 1281px){
.business__contents02{
    margin-bottom: 15%;
}
}
.business__contents__text{
    width: 55%;
}
@media (width < 1101px){
.business__contents__text{
    width: 100%;
    padding-top: 5%;
}
}
.business__contents__text h4{
    font-size: 20px;
    padding: 3% 0;
}
.business__contents__text p{
    font-size: 16px;
    line-height: 2rem;
}
.business__contents__text p + p{
    margin-top: 3%;
}
@media (width < 431px){
.business__contents__text{
    padding-top: 15%;
}
.business__contents__text h4{
    font-size: 18px;
    padding: 5% 0;
	font-weight: 500;
}
.business__contents__text p{
  font-size: 13px;
}
}
.business__contents__title{
    font-size: 35px;
    border-bottom: solid 1px #000;
    letter-spacing: 0.4rem;
    padding-bottom: 5px;
    position: relative;
}
@media (width < 1281px){
.business__contents__title{
    font-size: 30px;
}
}
@media (width < 431px){
.business__contents__title{
    font-size: 30px;
	font-weight: 500;
}
}
.business01::before{
    content: "01";
    position: absolute;
    top: -50%;
    left: 0;
    font-size: 16px;
    letter-spacing: 0.1rem;
}
.business02::before{
    content: "02";
    position: absolute;
    top: -50%;
    left: 0;
    font-size: 16px;
    letter-spacing: 0.1rem;
}
.business03::before{
    content: "03";
    position: absolute;
    top: -50%;
    left: 0;
    font-size: 16px;
    letter-spacing: 0.1rem;
}

.business__contents__img{
    width: 40%;
    height: auto;
}
@media (width < 1101px){
  .business__contents__img{
    width: 100%;
}
}
.business__contents__img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.business__good{
    padding: 0 0 10% 0;
    text-align: center;
}
@media (max-width: 431px){
  .business__good{
    padding: 0 0 20% 0;
    text-align: center;
}
}
.good__text{
    text-align: center;
    padding: 3% 0;
}
.good__text h3{
    font-size: 25px;
    margin-bottom: 3%;
}
.good__text p{
    font-size: 16px;
    line-height: 2rem;
}
.business__good__inner{
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 6px 9px 6px rgba(0, 0, 0, 0.25);
    padding: 5% 7%;
}
@media (max-width: 431px){
.business__good__inner{
    padding: 15% 5% 30% 5%;
}
}
.good__title{
    width: 370px;
    height: auto;
    margin: 0 auto;
}
@media (max-width: 769px){
.good__title{
    width: 280px;
}
}
.good__title img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.good__item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 5% 0 7% 0;
}
@media (max-width: 431px){
.good__item{
    padding: 5% 0 20% 0;
}
}
@media (max-width: 1101px){
  .good__item{
    display: block;
  }
  .good__box + .good__box{
    margin-top: 15%;
  }
}
.good__box p{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

@media (max-width: 431px){
.good__title{
    width: 200px;
}
.good__text h3{
  font-size: 18px;
  margin-bottom: 10%;
}
.good__text p{
  font-size: 11px;
  line-height: 1.5rem;
}
}
@media (width < 1281px){
.good__box p{
    font-size: 16px;
}
}
.marker {
  position: relative;
  display: inline-block;
  z-index: 10;
}
.marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;        /* 文字に少しかぶせる */
  width: 100%;
  height: 0.4em;        /* 文字の半分くらい */
  background: rgba(255, 111, 0, 0.3); /* 黄色・50% */
  z-index: -1;
}
.good__box__img{
    width: 60%;
    height: auto;
    margin: 0 auto;
}
@media (width < 1101px){
.good__box__img{
    width: 40%;
}
}
.good__box__img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.good__more {
  position: relative;
  display: inline-block;
  color: #E6177F;
  font-weight: bold;
  letter-spacing: 0.3rem;
  margin-bottom: 15px;
}
.good__more::before {
  content: "＼";
  margin-right: 0.5em;
}
.good__more::after {
  content: "／";
  margin-left: 0.5em;
}

.good__btn{
    background-color: #E6177F;
}
.ctabtn{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: block;
    padding: 15px 0;
    width: 350px;
    text-align: center;
    border-radius: 50px;
    letter-spacing: 0.3rem;
    margin: 0 auto;
}
.ctabtn{
  transition: opacity 0.3s ease;
}
.ctabtn:hover {
  opacity: 0.7;
}
@media (max-width: 768px){
.ctabtn{
    width: 320px;
}
}
@media (max-width: 431px){
.ctabtn{
    width: 280px;
}
}

.business__contents__more{
    margin-top: 3%;
}

@media (max-width: 1101px){
  .business__contents__more{
    margin-top: 3%;
    width: 65%;
    margin-left: auto;
}
}
@media (max-width: 431px){
.business__contents__more{
    margin-top: 10%;
}
}
.business__contents__more li{
    font-size: 18px;
    font-weight: bold;
    list-style: none;
}
.business__contents__more li + li{
    margin-top: 15px;
}
.business__contents__more img{
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
}

/*----------画像レスポンシブ----------*/
.mb__img{
    display: none;
}
@media (max-width: 1101px) {
  .mb__img{
    display: block;
  }
  .pc__img{
    display: none;
  }
}

/*----------ポイント----------*/
.point{
    padding: 10% 0;
}
.point .sec__title{
  max-width: 1280px;
}
.point__wrapper{
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1441px){
.point__wrapper{
    margin: 0 10%;
}
}
.point__title{
    padding: 3% 0;
}
.point__title h3{
    font-size: 40px;
    margin-bottom: 3%;
}
@media (width < 1281px){
.point__title h3{
    font-size: 30px;
}
}
.point__title p{
    font-size: 16px;
    line-height: 2rem;
}
@media (width < 431px){
.point__title{
  margin: 0 5%;
}
  .point__title h3{
    margin-bottom: 10%;
    font-size: 30px;
	font-weight: 500;
  }
  .point__wrapper{
    margin: 0;
  }
  .point__title{
    padding-bottom: 10%;
  }
 .point__title p{
    font-size: 14px;
}
}
.point__inner{
    display: flex;
    justify-content: space-between;
}
@media (width < 1101px){
.point__inner{
  display: block;
}
}
@media (width < 431px){
.point__inner{
  margin: 0 5%;
}
}
.point__item{
    background-color: #F5F5F5;
    width: 350px;
    padding: 0 15px 3% 15px;
}
@media (width < 1441px){
.point__item{
    width: 330px;
}
}
@media (width < 1281px){
.point__item{
    width: 300px;
}
}
@media (width < 1101px){
  .point__item{
    width: 100%;
  }
  .point__item + .point__item{
    margin: 5% 0 0 0;
  }
}
.point__item p{
    font-size: 14px;
}
@media (width < 431px){
  .point__item p{
    font-size: 12px;
}
.point__item{
  padding: 0 15px 15% 15px;;
}
}
.point__item h3{
    font-size: 20px;
    margin-bottom: 3%;
}
@media (width < 431px){
.point__item h3{
    font-size: 30px;
	font-weight: 500;
}
}
.point__item .point__number{
    font-size: 100px;
    font-weight: bold;
}
@media (width < 1281px){
.point__item .point__number{
    font-size: 80px;
}
}

/*----------採用情報----------*/
.recruit{
    text-align: center;
    background-image: url(img/recruit.webp);
    background-position: top;
    background-size: cover;
}
.recruit__wrapper{
    padding: 10% 0 10% 0;
}
.recruit__text h3{
    font-size: 60px;
    letter-spacing: 0.3rem;
    margin: 3% 0;
}
@media (width < 1281px){
.recruit__text h3{
    font-size: 45px;
}
}
@media (width < 1101px){
.recruit__text h3{
    font-size: 35px;
}
}
@media (width < 431px){
.recruit__text h3{
    font-size: 30px;
	font-weight: 500;
}
}
.recruit__text p{
    font-size: 16px;
    line-height: 2rem;
    font-weight: bold;
}
@media (width < 431px){
.recruit__text p{
    font-size: 12px;
    line-height: 1.5rem;
}
}
.recruit__text__more{
    padding: 7% 0 5% 0;
}
.recruit__text__more p{
    font-size: 20px;
    line-height: 3rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}
@media (width < 1101px){
  .recruit__text__more p{
    font-size: 18px;
  }
}
@media (width < 431px){
  .recruit__text__more{
    padding: 10% 0 5% 0;
  }
    .recruit__text__more p{
    font-size: 11px;
    line-height: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
.recruit__btn{
    background-color: #2717E6;
}

/*----------グループ----------*/
.group{
    padding: 10% 0;
}
.group__text h2{
    font-size: 35px;
    line-height: 3.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 3%;
}
@media (width < 1441px){
.group__text h2{
    font-size: 30px;
    line-height: 3rem;
}
}
@media (width < 431px){
.group__text h2{
    font-size: 30px;
    margin-bottom: 10%;
	font-weight: 500;
	letter-spacing: 0.2rem;
}
.group{
    padding: 15% 0;
}
}
.group__text p{
    font-size: 16px;
    line-height: 2rem;
}
@media (width < 431px){
.group__text p{
    font-size: 14px;
    line-height: 1.7rem;
}
.group__text p + p{
  margin-top: 7%;
}
}
.group__wrapper{
    max-width: 1280px;
    margin: 0 auto;
    background-color: #F8F9FA;
    padding: 5% 5% 10% 5%;
    border-radius: 15px;
}
@media (width < 1441px){
  .group__wrapper{
    margin: 0 10%;
  }
}
@media (width < 1101px){
  .group__wrapper{
    margin: 0 5%;
  }
}
.group__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10%;
  margin-top: 7%;
}
@media (width < 769px){
  .group__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
  margin-top: 7%;
}
}
@media (width < 431px){
  .group__inner {
  margin-top: 10%;
}
.group__item p{
  font-size: 12px;
}
}
.group__item__img{
    width: 100%;
    height: auto;
}
.group__item__img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}



/*----------会社概要----------*/
.company_overview{
  padding: 10% 0;
}
@media (width < 431px){
.company_overview{
  padding: 25% 0 10% 0;
}
}
.overview_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1441px) {
.overview_wrapper {
  margin: 0 5%;
}
}
@media (width < 1281px) {
  .overview_wrapper {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .overview_wrapper {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .overview_wrapper {
    padding: 0 15px;
  }
}
@media (width < 431px){
.overview_wrapper {
  margin: 0;
}
}

.company__title{
  font-size: 35px;
  padding: 5% 0 3% 0;
  letter-spacing: 0.2rem;
}
@media (width < 1101px){
.company__title{
  font-size: 30px;
}
}
@media (width < 431px){
.company__title{
  font-size: 30px;
  margin-left: 20px;
  font-weight: 500;
}
}
.company_overview_contents {
  padding: 5% 0 10% 0;
}

@media (width < 431px) {
  .company_overview_contents {
    padding: 10% 0 15% 0;
    margin-left: 20px;
  }
}
.company_overview_contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
}

@media (width < 1281px) {
  .company_overview_contents table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_overview_contents table {
    width: 100%;
  }
}
.company_overview_contents tr {
  border-bottom: solid 1px #D9D9D9;
}

.company_overview_contents td {
  padding: 2% 0;
}

@media (width < 431px) {
  .company_overview_contents td {
    font-size: 12px;
  }
}
.company_overview_contents .contents_more {
  padding-left: 10%;
}

.company_overview_contents .contents_title {
  padding-left: 15px;
  white-space: nowrap;
}
@media (width < 431px) {
  .company_overview_contents .contents_title {
    padding-left: 0px;
  }
}


/* ===============================================
個別ページ・お問い合わせ
=============================================== */
.must{
  position: relative;
}
.must::before{
  content: '※';
  position: absolute;
  left: 5px;
  top: -5px;
  color: #FF0000;
  font-size: 12px;
}
@media (width < 769px){
.must::before{
  left: -5px;
  top: -15px;
}
}
.contact {
  padding-bottom: 10%;
}
@media (width < 431px) {
  .contact {
    padding-bottom: 15%;
  }
}

.contact__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 15%;
}
@media (width < 1441px) {
  .contact__wrapper {
    padding: 0 3%;
  }
}

.contact__title{
  background-image: url(img/CONNECTION.webp);
  background-position: center;
  background-size: cover;
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1441px){
.contact__title{
  margin: 0 5%;
}
}
.contact__title_p{
  font-size: 35px;
  letter-spacing: 0.2rem;
  padding: 5% 0;
  text-align: center;
}
@media (width < 1281px){
.contact__title_p{
  font-size: 30px;
}
}
@media (width < 769px){
.contact__title{
  background-size: contain;
}
}
@media (width < 431px){
.contact__title{
  margin: 0 15px;
  background-size: contain;
}
.contact__title_p{
  font-size: 16px;
  padding: 10% 0;
  font-weight: 500;
}
}

.contact__text{
  margin: 5% 0;
  font-size: 16px;
}
@media (width < 431px){
.contact__text{
  margin: 5% 0;
  font-size: 12px;
}
}
.more__red{
  color: #FF0000;
  margin-top: 3%;
}

.page_contact_main_box {
  padding: 10% 5%;
}

@media (width < 431px) {
  .page_contact_main_box {
    padding: 10% 0% 15% 0%;
  }
}
.page_contact_main_box dl {
  padding: 3% 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (width < 769px) {
  .page_contact_main_box dl {
    display: block;
  }
}
.page_contact_main_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}

@media (width < 769px) {
  .page_contact_main_box dt {
    width: 100%;
    padding: 0 0 3% 0;
  }
}
.page_contact_main_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #707070;
}

@media (width < 769px) {
  .page_contact_main_box dd {
    width: 100%;
  }
}

.page_contact_main_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
  background-color: #fff;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}

.contct__anounce{
  font-size: 14px;
  padding: 3% 0 5% 0;
}
@media (width < 1441px){
.contct__anounce{
  font-size: 12px;
}
}
.contactbtn{
  background-color: #000000;
}
select {
  color: #000;
}
.wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #FF65F9;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0; /* 潰れ防止 */
}

.wpcf7-acceptance input[type="checkbox"]:checked {
  background-color: #FF65F9;
}

.wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  cursor: pointer;
}

/* =========================
   input / email / tel（送信ボタン除外）
   ========================= */
.wpcf7-form-control:not(textarea):not(select):not(.wpcf7-submit) {
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* =========================
   select
   ========================= */
.wpcf7-select {
  display: block;
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* =========================
   textarea（幅は触らない）
   ========================= */
.wpcf7-textarea {
  padding: 10px 12px;
  box-sizing: border-box;
}

/* =========================
   フォーカス（オレンジ枠対策）
   ========================= */
.wpcf7-form-control:not(textarea):not(.wpcf7-submit):focus {
  outline: none;
  border-color: #FF65F9;
  box-shadow: 0 0 0 2px rgba(255, 101, 249, 0.3);
}

/* textareaは枠色だけ */
.wpcf7-textarea:focus {
  outline: none;
  border-color: #FF65F9;
  box-shadow: none;
}

/* CF7 スクリーンリーダー用エラーを視覚的に消す */
.screen-reader-response {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wpcf7-response-output{
	margin-top: 15px;
	color: red;
	text-align: center;
}
.wpcf7-not-valid-tip{
	color: red;
}

/* ===============================================
フッター
=============================================== */
footer{
  background-color: #1A1A1A;
  padding: 5% 0 15px 0;
}
@media (width < 431px){
  footer{
    padding: 15% 0 15px 0;
  }
}
.footer__wrapper{
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1441px){
.footer__wrapper{
  margin: 0 10%;
}
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3%;
}
.footer__item{
  color: #fff;
}
.company_name{
  font-weight: bold;
  margin-top: 10%;
  font-size: 20px;
}
.footer__item p{
  line-height: 2rem;
}
.footer__item__img{
  width: 45%;
  height: auto;
}
.footer__item__img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer__nav{
  width: 60%;
}
@media (width < 1101px){
  .footer__nav{
    display: none;
  }
}
.footer__nav ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer__nav a{
  color: #fff;
  font-weight: bold;
}
.privacypolicy{
  text-align: right;
}
.privacypolicy a{
  color: #fff;
  font-size: 14px;
  border-bottom: solid 1px #fff;
  padding-right: 3%;
}
.privacypolicy {
  transition: opacity 0.3s ease;
}
.privacypolicy:hover {
	opacity: 0.7;
}

.copyright{
  color: #fff;
  text-align: right;
  font-size: 14px;
  margin-top: 15px;
}
@media (width < 1101px){
  .privacypolicy{
  text-align: center;
}
.copyright{
  text-align: center;
}
.footer__item{
  text-align: center;
  width: 100%;
}
.footer__item__img{
  width: 20%;
  margin: 0 auto;
}
.company_name{
  margin-top: 3%;
}
}

@media (width < 431px){
.footer__item__img{
  width: 40%;
}
.company_name{
  font-size: 18px;
  margin-top: 10%;
}
.footer__item p{
  font-size: 14px;
}
.footer__inner{
  padding-bottom: 15%;
}
}
.footer__nav a{
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: #707070;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  margin: 5vh auto;
  padding: 30px;
  overflow-y: auto;
  border-radius: 8px;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__body h3 {
  margin-top: 20px;
}
.modal__body li{
  list-style: none;
}

@media (width < 431px){
  .modal__content p{
    font-size: 12px;
  }
  .modal__content h3{
    font-size: 14px;
  }
  .modal__content h2{
    font-size: 14px;
  }
  .modal__body li{
    font-size: 12px;
  }
  .modal__content{
    padding-top: 15%;
  }
}

.wpcf7 fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.fw-500{
	font-weight: 500;
}

