@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ===============================================
ローディング画面
=============================================== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #313131;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s;
}

#loading img {
  width: 250px;
  height: 72px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s, transform 1s;
}
@media (width < 431px) {
  #loading img {
    width: 150px;
    height: 43px;
  }
}

/* ロゴ表示 */
#loading.show img {
  opacity: 1;
  transform: scale(1);
}

/* 全体フェードアウト */
#loading.hide {
  opacity: 0;
}

.ag_main, .recruit_main, .wanm_main {
  overflow: hidden;
}

.partnership_main {
  position: relative;
  background-image: url(images/company-msk.webp);
  background-position: 50px -100px;
  background-size: 100%;
  background-attachment: fixed;
}
@media (width < 769px) {
  .partnership_main {
    background-image: url(images/company-msk-mb.webp);
    background-position: top center;
    background-size: 100%;
    background-attachment: scroll;
  }
}

.recruit_main {
  position: relative;
  background-image: url(images/company-msk.webp);
  background-position: 50px -100px;
  background-size: 100%;
  background-attachment: fixed;
}
@media (width < 769px) {
  .recruit_main {
    background-image: url(images/company-msk-mb.webp);
    background-position: top center;
    background-size: 100%;
    background-attachment: scroll;
  }
}

.page__company__bg {
  background-image: url(images/company-msk.webp);
  background-position: 50px -100px;
  background-size: 100%;
  background-attachment: fixed;
}
@media (width < 769px) {
  .page__company__bg {
    background-image: url(images/company-msk-mb.webp);
    background-position: top center;
    background-size: 100%;
    background-attachment: scroll;
  }
}

/* 改行 */
.mb__br {
  display: none;
}
@media (width < 431px) {
  .mb__br {
    display: block;
  }
}

/* 改行 */
@media (width < 431px) {
  .pc__br {
    display: none;
  }
}

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

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

.mb_img {
  display: none;
}
@media (width < 769px) {
  .mb_img {
    display: block;
  }
}

@media (width < 769px) {
  .pc_img {
    display: none;
  }
}

/* レスポンシブテキスト */
.tb__text {
  display: none;
}
@media (width < 769px) {
  .tb__text {
    display: block;
  }
}

@media (width < 769px) {
  .pc__text {
    display: none;
  }
}

/* ホバーアニメーション */
.hover__item {
  transition: opacity 0.3s ease;
}

.hover__item:hover {
  opacity: 0.7;
}

/*----------フェード----------*/
.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);
}

.fade-f {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.fade-f.active {
  opacity: 1;
}

/*----------カードフェード----------*/
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(2) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.5s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.8s;
}

/* ===============================================
下層ページタイトル
=============================================== */
.child_page_title h1 {
  font-size: 25px;
}
@media (width < 1281px) {
  .child_page_title h1 {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .child_page_title h1 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .child_page_title h1 {
    font-size: 25px;
  }
}
.child_page_title p {
  font-size: 16px;
}
@media (width < 1281px) {
  .child_page_title p {
    font-size: 14px;
  }
}

/* ===============================================
ヘッダー
=============================================== */
@media (width < 1101px) {
  .header_pc_nav {
    display: none;
  }
}

.header_pc_nav .has-sub {
  position: relative; /* サブメニューの基準点 */
}

.header_pc_nav .sub__menu {
  display: none; /* 最初は非表示 */
  position: absolute; /* 親<li>の下に表示 */
  top: 100%; /* 親の真下 */
  left: 0;
  background-color: rgba(24, 24, 24, 0.5);
  z-index: 1000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; /* ← テキスト幅にフィット！ */
  padding: 5px 0 10px 0;
}

.header_pc_nav .sub__menu li a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
  color: #ffffff;
  transition: all 0.3s ease;
}

.header_pc_nav .sub__menu li a:hover {
  opacity: 0.8;
}

.header_pc_nav > ul > li:hover > ul {
  display: block; /* ←ホバーしたら表示 */
}

.header_pc_nav > ul > li > p {
  cursor: pointer;
}

.slide_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc_header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

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

.header_pc_item + .header_pc_item {
  margin-left: 50px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

header a {
  color: #ffffff;
}

.header_logo {
  display: inline-block;
  width: 215px;
  height: 43px;
  margin: 0 0 0 50px;
}
@media (width < 769px) {
  .header_logo {
    margin: 0 0 0 5%;
  }
}
@media (width < 431px) {
  .header_logo {
    width: 183px;
    height: 37px;
  }
}
.header_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

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

header .contact_btn {
  border: none;
  background-color: #2E702A;
  transition: all 0.3s ease;
}
header .contact_btn img {
  margin-right: 10px;
}

header .contact_btn:hover {
  border-radius: 10px;
}

header .contact_btn a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  font-size: 20px;
}

.contact_formbtn:hover {
  border-radius: 15px;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 0 3%;
}

/* ===============================================
ハンバーガーボタン
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  transition: 0.5s all;
}

@media (width < 769px) {
  .hamburger {
    width: 120px;
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 80px;
    height: 70px;
  }
}
/* =============================
三本線 共通
============================= */
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s;
  right: 0;
}

.w__hamburger span,
.w__hamburger span::before,
.w__hamburger span::after {
  background-color: #ffffff;
}

.b__hamburger span,
.b__hamburger span::before,
.b__hamburger span::after {
  background-color: #141414;
}

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

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

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

/* =============================
open状態
============================= */
.hamburger.open span {
  background-color: transparent;
}

/* ×をきれいに見せるため width を統一 */
.hamburger.open span::before,
.hamburger.open span::after {
  width: 38px;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.w__hamburger.open span::before {
  background-color: #fff;
}

.b__hamburger.open span::before {
  background-color: #fff;
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.w__hamburger.open span::after {
  background-color: #fff;
}

.b__hamburger.open span::after {
  background-color: #fff;
}

/* =============================
CLOSEテキスト
============================= */
.hamburger::before {
  content: "";
  position: absolute;
  right: 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* open時だけ表示 */
.hamburger.open::before {
  content: "CLOSE";
  opacity: 1;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.menu_black_en, .menu_black_ja {
  color: #000;
  display: block;
}

.menu_white_en, .menu_white_ja {
  color: #ffffff;
  display: block;
}

.menu_black_en {
  font-size: 20px;
}

.menu_black_ja {
  font-size: 12px;
}

.menu_white_en {
  font-size: 20px;
}

.menu_white_ja {
  font-size: 12px;
}

.hamburger_nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #313131;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 500;
}
@media (width < 769px) {
  .hamburger_nav {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (width < 431px) {
  .hamburger_nav {
    width: 100%;
    padding: 20% 0 15% 0;
  }
}
.hamburger_nav__wrapper {
  padding: 0 10%;
}
@media (width < 1281px) {
  .hamburger_nav__wrapper {
    padding: 0 7%;
  }
}
@media (width < 1101px) {
  .hamburger_nav__wrapper {
    padding: 0 5%;
  }
}

.hamburger__logo {
  margin: 15px 0 2% 5%;
  width: 215px;
  height: 43px;
}
.hamburger__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hamburger_nav__title {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hamburger_sub_nav {
  display: flex;
  align-items: center;
}
@media (width < 769px) {
  .hamburger_sub_nav {
    display: block;
  }
}

.hamburger_more_nav {
  display: flex;
  align-items: center;
  justify-content: right;
}
@media (width < 769px) {
  .hamburger_more_nav {
    padding-top: 10%;
    justify-content: left;
  }
}

.hamburger_more_nav li + li {
  margin-left: 50px;
  position: relative;
}

.hamburger_more_nav li + li::before {
  content: "／";
  position: absolute;
  left: -30px; /* 余白の中央あたり */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}

.hamburger_mb_nav {
  margin: 5% 0 15px 0;
  padding-top: 15px;
  border-top: solid 1px #fff;
}
.hamburger_mb_nav p {
  text-align: right;
  color: #fff;
  font-size: 10px;
}

.hamburger_nav__subtitle {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin: 30px 0 15px 0;
}

.hamburger_nav__subitem + .hamburger_nav__subitem {
  margin-left: 5%;
}
@media (width < 769px) {
  .hamburger_nav__subitem + .hamburger_nav__subitem {
    margin-left: 0;
    margin-top: 5%;
  }
}

.hamburger_nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (width < 769px) {
  .hamburger_nav__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 431px) {
  .hamburger_nav__list {
    gap: 20px;
  }
}

.hamberger_nav__img {
  width: 100%;
  height: 237px;
}
@media (width < 1541px) {
  .hamberger_nav__img {
    height: 200px;
  }
}
@media (width < 1441px) {
  .hamberger_nav__img {
    height: 170px;
  }
}
@media (width < 431px) {
  .hamberger_nav__img {
    height: 130px;
  }
}
.hamberger_nav__img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.hamburger_nav__item p {
  font-size: 16px;
  padding-top: 10px;
}

.hamburger_nav.open {
  right: 0;
}

/* 事業情報サブメニュー */
.header_pc_item {
  position: relative;
}

.header_business_menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 15px 0 10px 5px;
  width: 100%;
}
.header_business_menu li + li {
  margin-top: 10px;
}

.header_submenu_b {
  background-color: rgba(49, 49, 49, 0.5);
}
.header_submenu_b a {
  color: #fff;
}

.header_submenu_w {
  background-color: rgba(225, 225, 225, 0.5);
}
.header_submenu_w a {
  color: #000;
}

.header_pc_item:hover .header_business_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================================
ファーストビュー
=============================================== */
.hero {
  background-color: #313131;
  width: 100%;
  height: 100vh;
}
@media (width < 431px) {
  .hero {
    height: 60vh;
  }
}

.hero__wrapper {
  width: 100%;
  height: 100%;
  background-image: url(images/top/top-fv.jpg);
  background-size: cover;
  background-position: bottom;
}
@media (width < 431px) {
  .hero__wrapper {
    background-position: center;
  }
}

.hero__inner {
  margin: 0 50px;
  width: auto;
  height: 100%;
  position: relative;
}
@media (width < 769px) {
  .hero__inner {
    margin: 0 25px;
  }
}

.hero__title {
  position: absolute;
  left: 0;
  bottom: 5%;
}
@media (width < 431px) {
  .hero__title {
    bottom: 15%;
  }
}

.hero__heading {
  color: #fff;
  padding-bottom: 3%;
  letter-spacing: 0.2rem;
  font-size: 45px;
}
@media (width < 1281px) {
  .hero__heading {
    font-size: 35px;
  }
}
@media (width < 769px) {
  .hero__heading {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .hero__heading {
    font-size: 20px;
  }
}

.hero__logo {
  width: 615px;
  height: 140px;
}
@media (width < 1441px) {
  .hero__logo {
    width: 530px;
    height: 120px;
  }
}
@media (width < 769px) {
  .hero__logo {
    width: 330px;
    height: 75px;
  }
}
.hero__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
ミッション
=============================================== */
.philosophy {
  background-color: #313131;
}

.philosophy_wrapper {
  background-image: url(images/maskgp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 15% 0 800px 0;
}
@media (width < 1541px) {
  .philosophy_wrapper {
    padding: 15% 0 700px 0;
  }
}
@media (width < 1441px) {
  .philosophy_wrapper {
    padding: 15% 0 600px 0;
  }
}
@media (width < 1281px) {
  .philosophy_wrapper {
    padding: 15% 0 500px 0;
  }
}
@media (width < 1101px) {
  .philosophy_wrapper {
    padding: 15% 0 500px 0;
  }
}
@media (width < 431px) {
  .philosophy_wrapper {
    padding: 15% 0 500px 0;
  }
}

.philosophy_vecter {
  position: relative;
  width: 100%;
  height: 100%;
}

.philosophy_vecter svg {
  width: 65%;
  height: auto;
}
@media (width < 769px) {
  .philosophy_vecter svg {
    width: 85%;
  }
}

.philosophy_item01, .philosophy_item02,
.philosophy_item03 {
  width: 70%;
  position: absolute;
}
@media (width < 769px) {
  .philosophy_item01, .philosophy_item02,
.philosophy_item03 {
    width: 60%;
  }
}
@media (width < 431px) {
  .philosophy_item01, .philosophy_item02,
.philosophy_item03 {
    width: 80%;
  }
}
.philosophy_item01 img, .philosophy_item02 img,
.philosophy_item03 img {
  width: 100%;
  height: auto;
}

@media (width < 431px) {
  .philosophy_item02 {
    width: 85%;
  }
}

.philosophy_item01 {
  top: -4%;
  left: 8%;
}
@media (width < 769px) {
  .philosophy_item01 {
    left: 5%;
    top: 5%;
  }
}
@media (width < 431px) {
  .philosophy_item01 {
    left: 5%;
    top: 5%;
  }
}

.philosophy_item02 {
  top: 50%;
  left: 9%;
  transform: translateY(-50%);
}
@media (width < 769px) {
  .philosophy_item02 {
    top: 63%;
    left: auto;
    right: 5%;
    transform: translateY(-50%);
  }
}
@media (width < 431px) {
  .philosophy_item02 {
    top: 63%;
    left: 8%;
    transform: translateY(-50%);
  }
}

.philosophy_item03 {
  bottom: 0;
  left: 10%;
  transform: translateY(88%);
}
@media (width < 769px) {
  .philosophy_item03 {
    left: 5%;
    transform: translateY(60%);
  }
}
@media (width < 431px) {
  .philosophy_item03 {
    left: 5%;
    transform: translateY(75%);
  }
}

/* ===============================================
グループ
=============================================== */
.group {
  padding: 5% 0;
}
@media (width < 431px) {
  .group {
    padding: 5% 0 15% 0;
  }
}

.group__wrapper {
  margin: 0 50px;
  border: solid 1px #000;
  padding: 7% 10%;
}
@media (width < 1281px) {
  .group__wrapper {
    padding: 7%;
  }
}
@media (width < 769px) {
  .group__wrapper {
    margin: 0 5%;
  }
}
@media (width < 431px) {
  .group__wrapper {
    padding: 10% 3% 3% 3%;
    margin: 0 3%;
  }
}
.group__wrapper h2 {
  font-size: 50px;
  letter-spacing: 0.2rem;
}
@media (width < 1281px) {
  .group__wrapper h2 {
    font-size: 40px;
  }
}
@media (width < 1101px) {
  .group__wrapper h2 {
    font-size: 35px;
  }
}
@media (width < 769px) {
  .group__wrapper h2 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .group__wrapper h2 {
    font-size: 18px;
  }
}

.group__title {
  font-size: 28px;
  font-weight: bold;
  padding-top: 50px;
}
@media (width < 1281px) {
  .group__title {
    font-size: 20px;
  }
}

.group__title-ja {
  display: block;
  font-size: 12px;
}
@media (width < 431px) {
  .group__title-ja {
    margin-top: 0;
    font-size: 10px;
  }
}

.group__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  padding: 20px 0 50px 0;
}
@media (width < 1281px) {
  .group__box {
    gap: 80px 60px;
  }
}
@media (width < 1101px) {
  .group__box {
    gap: 60px 30px;
  }
}
@media (width < 769px) {
  .group__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 431px) {
  .group__box {
    gap: 60px 15px;
  }
}

.group__box__item {
  width: 100%;
  height: 230px;
}
@media (width < 1541px) {
  .group__box__item {
    height: 200px;
  }
}
@media (width < 1441px) {
  .group__box__item {
    height: 180px;
  }
}
@media (width < 1101px) {
  .group__box__item {
    height: auto;
  }
}
@media (width < 431px) {
  .group__box__item {
    height: 110px;
  }
}
.group__box__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.group__box__item p {
  font-size: 16px;
}
@media (width < 1101px) {
  .group__box__item p {
    font-size: 14px;
  }
}

/* ===============================================
プレスリリース
=============================================== */
.release {
  background-color: #313131;
  color: #fff;
}
.release a {
  color: #fff;
}
.release li a {
  display: flex;
}
@media (width < 431px) {
  .release li a {
    display: block;
  }
}
.release li + li {
  margin-top: 20px;
}
@media (width < 431px) {
  .release li + li {
    margin-top: 40px;
  }
}

.release__wrapper {
  background-image: url(images/maskgp2.webp);
  background-position: center;
  background-size: cover;
  padding: 10% 0 3% 0;
}
@media (width < 431px) {
  .release__wrapper {
    padding: 20% 0;
  }
}

.release__inner {
  display: flex;
  align-items: center;
  width: auto;
  margin: 0 100px;
}
@media (width < 769px) {
  .release__inner {
    display: block;
    margin: 0 5%;
  }
}

.release__inner > * {
  width: 100%;
}

.release__contents {
  padding-top: 25px;
}
@media (width < 431px) {
  .release__contents {
    padding-top: 50px;
  }
}

.release__title {
  font-size: 30px;
  font-weight: bold;
}
@media (width < 431px) {
  .release__title {
    font-size: 20px;
  }
}

.release__title-ja {
  display: block;
  font-size: 14px;
  margin: 4px 0 0 0;
}
@media (width < 431px) {
  .release__title-ja {
    margin: 0;
    font-size: 10px;
  }
}

.release__contents__item {
  white-space: nowrap;
  display: flex;
}

.release__contents__item:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.release__contents__item + .release__contents__item {
  margin-top: 5px;
}
@media (width < 431px) {
  .release__contents__item + .release__contents__item {
    margin-top: 10%;
  }
}

.release__contents__date {
  font-weight: bold;
  font-size: 16px;
  padding-right: 3%;
}
@media (width < 769px) {
  .release__contents__date {
    width: auto;
  }
}
@media (width < 431px) {
  .release__contents__date {
    font-size: 14px;
  }
}

.release__contents__title {
  font-size: 16px;
  color: #C4C4C4;
}
@media (width < 431px) {
  .release__contents__title {
    font-size: 14px;
  }
}

.release__contents_morebtn {
  display: flex;
  justify-content: right;
  padding-top: 25px;
}
.release__contents_morebtn a {
  display: flex;
  align-items: center;
}
.release__contents_morebtn img {
  margin-left: 10px;
}

.release__contents_morebtn a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/* ===============================================
インフォメーション
=============================================== */
.info {
  padding: 10% 0 7% 0;
  background-color: #272727;
}
@media (width < 431px) {
  .info {
    padding: 20% 0 15% 0;
  }
}

.info__inner {
  margin: 0 100px;
}
@media (width < 1101px) {
  .info__inner {
    margin: 0 70px;
  }
}
@media (width < 769px) {
  .info__inner {
    margin: 0 5%;
  }
}

.info__title {
  font-size: 60px;
  color: #fff;
  letter-spacing: 0.2rem;
  margin-bottom: 5%;
  line-height: 5rem;
}
@media (width < 1281px) {
  .info__title {
    font-size: 50px;
    line-height: 4rem;
  }
}
@media (width < 1101px) {
  .info__title {
    font-size: 40px;
    line-height: 3.5rem;
  }
}
@media (width < 769px) {
  .info__title {
    font-size: 30px;
    line-height: 2.5rem;
  }
}

.info__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (width < 769px) {
  .info__container {
    display: block;
  }
}

.info__container__item {
  flex: 1;
  min-width: 0;
}

.info__container__item__title {
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 15px 0;
  color: #fff;
}
@media (width < 431px) {
  .info__container__item__title {
    margin: 20% 0 15px 0;
  }
}

.info__title-ja {
  display: block;
  font-size: 16px;
}
@media (width < 431px) {
  .info__title-ja {
    font-size: 10px;
  }
}

.info__container__box1,
.info__container__box2 {
  width: 100%;
  display: block;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 15px;
  z-index: 0;
}
@media (width < 1541px) {
  .info__container__box1,
.info__container__box2 {
    height: 400px;
  }
}
@media (width < 1281px) {
  .info__container__box1,
.info__container__box2 {
    height: 300px;
  }
}
@media (width < 1101px) {
  .info__container__box1,
.info__container__box2 {
    height: 250px;
  }
}

.info__container__box1 {
  background-image: url(images/top/action-btn1.png);
}

.info__container__box2 {
  background-image: url(images/top/action-btn2.png);
}

.info__container__box__title {
  position: absolute;
  color: #fff;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 10;
}
.info__container__box__title h4 {
  font-size: 30px;
  white-space: nowrap;
  font-weight: 500;
}
@media (width < 1101px) {
  .info__container__box__title h4 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .info__container__box__title h4 {
    font-size: 20px;
  }
}
.info__container__box__title p {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
  font-weight: bold;
  transition: 0.3s;
}
.info__container__box__title p img {
  width: 25px;
  height: 25px;
  margin-left: 20px;
}

.info__container__box__title a:hover {
  opacity: 0.7;
}

/* ===============================================
フッター
=============================================== */
.footer_b {
  background-color: #313131;
  padding: 60px 0 30px 0;
}
@media (width < 431px) {
  .footer_b {
    padding: 60px 0 30px 0;
  }
}

.footer_w {
  background-color: #ffffff;
  padding: 60px 0 30px 0;
}
@media (width < 431px) {
  .footer_w {
    padding: 60px 0 30px 0;
  }
}

.footer__logo {
  width: 270px;
  height: 54px;
  margin-bottom: 10px;
}
@media (width < 769px) {
  .footer__logo {
    margin-bottom: 5%;
  }
}
@media (width < 431px) {
  .footer__logo {
    width: 230px;
    height: 46px;
  }
}
.footer__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer__wrapper {
  margin: 0 50px;
}
@media (width < 431px) {
  .footer__wrapper {
    margin: 0 5%;
  }
}

.footer__nav__container {
  display: flex;
  padding: 20px 0 60px 0;
}
@media (width < 769px) {
  .footer__nav__container {
    display: block;
  }
}

.footer__nav__container_b {
  border-bottom: solid 1px #fff;
}

.footer__nav__container_w {
  border-bottom: solid 1px #141414;
}

.footer__nav__item + .footer__nav__item {
  margin-left: 5%;
}
@media (width < 769px) {
  .footer__nav__item + .footer__nav__item {
    margin-left: 0;
    margin-top: 5%;
  }
}

.footer__nav__item a {
  position: relative;
  font-size: 20px;
  display: block;
}

.footer__nav__item_b a {
  color: #fff;
}

.footer__nav__item_w a {
  color: #141414;
}

.footer__nav-ja {
  display: block;
  font-size: 10px;
  margin-top: 3px;
}

.footer__more {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
}
@media (width < 769px) {
  .footer__more {
    justify-content: right;
  }
}

.footer__more_b {
  color: #fff;
}

.footer__more_w {
  color: #141414;
}

.footer__more__info {
  font-size: 14px;
}
@media (width < 769px) {
  .footer__more__info p {
    text-align: right;
  }
}

.footer__more__item a {
  font-size: 12px;
}

.footer__more__item_b a {
  color: #fff;
}

.footer__more__item_w a {
  color: #141414;
}

.footer__more__container {
  display: flex;
  justify-content: right;
}
@media (width < 769px) {
  .footer__more__container {
    padding-top: 5%;
    justify-content: left;
  }
}

.footer__more__container li + li {
  margin-left: 50px;
}

.footer__more__container_b li + li {
  position: relative;
}

.footer__more__container_w li + li {
  position: relative;
}

.footer__more__container_b li + li::before {
  content: "／";
  position: absolute;
  left: -30px; /* 余白の中央あたり */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}

.footer__more__container_w li + li::before {
  content: "／";
  position: absolute;
  left: -30px; /* 余白の中央あたり */
  top: 50%;
  transform: translateY(-50%);
  color: #141414;
  font-size: 12px;
}

.footer__more__mbmenu {
  display: none;
}
@media (width < 769px) {
  .footer__more__mbmenu {
    display: block;
  }
}

@media (width < 769px) {
  .footer__more__pcmenu {
    display: none;
  }
}

.footer_bussiness_submenu {
  margin-top: 10px;
  padding: 10px 0 0 10px;
}
.footer_bussiness_submenu li + li {
  margin-top: 5px;
}

.footer_b_border {
  border-left: solid 1px #fff;
}

.footer_w_border {
  border-left: solid 1px #141414;
}

/* ===============================================
個別ページA
=============================================== */
.page__typeA__fv {
  padding: 200px 0 0 0;
}
@media (width < 1281px) {
  .page__typeA__fv {
    padding: 20% 0 0 0;
  }
}
@media (width < 431px) {
  .page__typeA__fv {
    padding: 180px 0 0 0;
  }
}

.page__typeA__wrapper {
  margin: 0 0 0 10%;
}
@media (width < 769px) {
  .page__typeA__wrapper {
    margin: 0 5%;
  }
}

.page__typeA__inner {
  display: flex;
}
@media (width < 769px) {
  .page__typeA__inner {
    display: block;
  }
}

.page__typeA__title {
  font-size: 25px;
  line-height: 1rem;
  padding-top: 20px;
}
@media (width < 1101px) {
  .page__typeA__title {
    font-size: 20px;
  }
}

.typeA__title-ja {
  font-size: 14px;
  font-weight: normal;
}

.page__typeA__textbox {
  padding-left: 20%;
}
@media (width < 1101px) {
  .page__typeA__textbox {
    padding-left: 20%;
  }
}
@media (width < 769px) {
  .page__typeA__textbox {
    padding: 5% 0 0 0;
  }
}
.page__typeA__textbox h2 {
  font-size: 70px;
  padding-bottom: 30px;
  font-weight: 500;
}
@media (width < 1541px) {
  .page__typeA__textbox h2 {
    font-size: 65px;
  }
}
@media (width < 1281px) {
  .page__typeA__textbox h2 {
    font-size: 55px;
  }
}
@media (width < 1101px) {
  .page__typeA__textbox h2 {
    font-size: 45px;
  }
}
@media (width < 431px) {
  .page__typeA__textbox h2 {
    font-size: 25px;
  }
}
.page__typeA__textbox p {
  font-size: 16px;
}
@media (width < 769px) {
  .page__typeA__textbox p {
    font-size: 14px;
  }
}

.page__company__sub__text {
  text-align: right;
  padding: 10% 0 10px 0;
}
@media (width < 769px) {
  .page__company__sub__text {
    text-align: left;
    padding: 15% 0 20px 0;
  }
}

.image__box {
  width: 100%;
  height: 50vh;
  background-image: url(images/RM_02298.jpg);
  background-position: center;
  background-size: cover;
}
@media (width < 431px) {
  .image__box {
    height: 40vh;
    background-image: url(images/RM_02298.jpg);
    background-size: cover;
    background-position: center;
  }
}

/* ===============================================
会社概要---メッセージ
=============================================== */
.company__message {
  padding: 5% 0 10% 0;
}
@media (width < 769px) {
  .company__message {
    padding: 10% 0 15% 0;
  }
}
@media (width < 431px) {
  .company__message {
    padding: 100px 0 70px 0;
  }
}

.company__message__wrapper {
  margin: 0 100px;
}
@media (width < 769px) {
  .company__message__wrapper {
    margin: 0 5%;
  }
}

.company__message__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1281px) {
  .company__message__inner {
    padding-top: 7%;
  }
}
@media (width < 769px) {
  .company__message__inner {
    display: block;
  }
}

.company__message__text {
  width: 50%;
}
@media (width < 1101px) {
  .company__message__text {
    width: 55%;
  }
}
@media (width < 769px) {
  .company__message__text {
    width: 100%;
  }
}
.company__message__text h2 {
  font-size: 25px;
  margin-bottom: 13%;
  font-weight: 500;
}
@media (width < 1541px) {
  .company__message__text h2 {
    font-size: 20px;
  }
}
@media (width < 1281px) {
  .company__message__text h2 {
    font-size: 18px;
  }
}
@media (width < 1101px) {
  .company__message__text h2 {
    font-size: 16px;
    margin-bottom: 7%;
  }
}
@media (width < 769px) {
  .company__message__text h2 {
    font-size: 20px;
    margin: 5% 0 10% 0;
  }
}
.company__message__text p {
  font-size: 16px;
  margin-top: 30px;
  width: 90%;
}
@media (width < 1541px) {
  .company__message__text p {
    font-size: 14px;
  }
}
@media (width < 769px) {
  .company__message__text p {
    margin-top: 15px;
  }
}

.company__message__img {
  width: 40%;
}
@media (width < 1101px) {
  .company__message__img {
    width: 45%;
  }
}
@media (width < 769px) {
  .company__message__img {
    width: 100%;
    margin: 5% 0 15px 0;
  }
}
.company__message__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.company__message__name {
  padding-top: 10%;
}
@media (width < 769px) {
  .company__message__name {
    padding-top: 0%;
  }
}

.company__message .tb__text {
  margin-top: 30px;
  font-size: 14px;
}

@media (width < 769px) {
  .company__name {
    font-size: 20px;
  }
}

/* ===============================================
会社概要---チャート
=============================================== */
.company__chart {
  background-color: #E2E2E2;
  padding: 5% 0;
}
@media (width < 431px) {
  .company__chart {
    padding: 80px 0;
  }
}

.company__chart__wrapper {
  margin: 0 100px;
}
@media (width < 769px) {
  .company__chart__wrapper {
    margin: 0 5%;
  }
}
.company__chart__wrapper h3 {
  font-size: 60px;
  padding-top: 7%;
  font-weight: 500;
}
@media (width < 1281px) {
  .company__chart__wrapper h3 {
    font-size: 50px;
  }
}
@media (width < 1101px) {
  .company__chart__wrapper h3 {
    font-size: 45px;
  }
}
@media (width < 769px) {
  .company__chart__wrapper h3 {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .company__chart__wrapper h3 {
    font-size: 22px;
    padding-top: 50px;
  }
}

.company__group__chart {
  width: 100%;
  height: auto;
  padding: 5% 0;
}
@media (width < 431px) {
  .company__group__chart {
    padding: 15% 0 10% 0;
  }
}
.company__group__chart img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* 画像ラッパー */
.chart__image__wrapper {
  position: relative;
  cursor: pointer;
}

.chart__overlay {
  display: none;
}
@media (width < 769px) {
  .chart__overlay {
    display: block;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
  }
}
.chart__overlay p {
  opacity: 1;
}

/* ホバー or タップ想定 */
.chart__image__wrapper:hover .chart__overlay {
  opacity: 1;
}

/* モバイルでも常に表示したい場合 */
@media (width < 768px) {
  .chart__overlay {
    opacity: 1;
  }
}
/* ===== フルスクリーンモーダル ===== */
.chart__modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.chart__modal img {
  max-width: 95%;
  max-height: 95%;
}

.chart__modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 768px以下は白背景 */
@media (max-width: 768px) {
  .chart__modal {
    background: #fff;
  }
}
/* ===============================================
会社概要----情報
=============================================== */
.company__overview {
  padding: 5% 0;
}
@media (width < 769px) {
  .company__overview {
    padding: 10% 0;
  }
}
@media (width < 431px) {
  .company__overview {
    padding: 15% 0;
  }
}

.company_wrapper {
  margin: 0 50px;
}
@media (width < 769px) {
  .company_wrapper {
    margin: 0 5%;
  }
}

.company__message__title {
  line-height: 1rem;
  font-weight: 500;
}
@media (width < 431px) {
  .company__message__title {
    font-size: 20px;
    font-weight: normal;
  }
}

.company__overview__container {
  display: flex;
  align-items: center;
  padding-top: 5%;
  gap: 100px;
  margin-left: 10%;
}
@media (width < 1281px) {
  .company__overview__container {
    gap: 50px;
  }
}
@media (width < 1101px) {
  .company__overview__container {
    display: block;
    padding-top: 10%;
    margin-left: 0%;
  }
}
@media (width < 431px) {
  .company__overview__container {
    margin-left: 0%;
  }
}

.company__overview__contents {
  width: 100%;
}

.company__overview__contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  font-size: 16px;
}

@media (width < 1281px) {
  .company__overview__contents table {
    font-size: 14px;
  }
}
.company__overview__contents td {
  padding: 2% 0;
  vertical-align: top;
}
@media (width < 431px) {
  .company__overview__contents td {
    padding: 0;
  }
}

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

.company__overview__contents .contents_title {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .company__overview table tr {
    display: block;
    margin-bottom: 30px;
  }
  .company__overview table td {
    display: block;
    width: 100%;
  }
  .contents_title {
    font-weight: bold;
  }
}
.contents__more {
  font-size: 12px;
  color: #A2A2A2;
  white-space: nowrap;
}
@media (width < 769px) {
  .contents__more {
    white-space: normal;
  }
}
@media (width < 431px) {
  .contents__more {
    font-size: 12px;
  }
}

.address__contents {
  display: flex;
}
@media (width < 431px) {
  .address__contents p + p {
    margin-bottom: 20px;
  }
}
@media (width < 769px) {
  .address__contents {
    display: block;
  }
}

.address__name {
  width: 130px;
  color: #A2A2A2;
  flex-shrink: 0;
}
@media (width < 431px) {
  .address__name {
    width: 170px;
  }
}

.company__overview__contents .contents_item {
  padding-left: 10%;
}
@media (width < 1281px) {
  .company__overview__contents .contents_item {
    padding-left: 30px;
  }
}
@media (width < 769px) {
  .company__overview__contents .contents_item {
    padding-left: 0px;
  }
}

.company__map a {
  display: inline-block;
  border-bottom: solid 1px #000;
  color: #000;
}

.company__overview__img {
  width: 100%;
  height: 440px;
}
@media (width < 1441px) {
  .company__overview__img {
    height: 330px;
  }
}
@media (width < 1281px) {
  .company__overview__img {
    height: 250px;
  }
}
@media (width < 1101px) {
  .company__overview__img {
    height: 200px;
  }
}
@media (width < 769px) {
  .company__overview__img {
    width: 100%;
    margin-top: 10%;
  }
}
.company__overview__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
会社概要---沿革
=============================================== */
.company__history {
  background-color: #E9E9E9;
  padding: 5% 0;
}
@media (width < 769px) {
  .company__history {
    padding: 10% 0;
  }
}
@media (width < 431px) {
  .company__history {
    padding: 100px 0;
  }
}

.company__history__title {
  line-height: 1rem;
}
@media (width < 431px) {
  .company__history__title {
    font-size: 20px;
    font-weight: normal;
  }
}

.company__history__wrapper {
  margin: 0 100px;
}
@media (width < 769px) {
  .company__history__wrapper {
    margin: 0 5%;
  }
}

.company__history__contain {
  padding: 5% 0;
}

.comapny__history__date {
  border-bottom: solid 1px #979797;
}
@media (width < 769px) {
  .comapny__history__date {
    padding-top: 3%;
  }
}
@media (width < 431px) {
  .comapny__history__date {
    padding-top: 7%;
  }
}

.company__history__wrapper table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
}

@media (width < 1281px) {
  .company__history__wrapper table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company__history__wrapper table {
    width: 100%;
  }
}
.company__history__wrapper td {
  padding: 2% 0;
}

@media (width < 431px) {
  .company__history__wrapper td {
    font-size: 12px;
  }
}
.company__history__wrapper .history__contents_title {
  padding-left: 15px;
  white-space: nowrap;
  width: 200px;
}
@media (width < 769px) {
  .company__history__wrapper .history__contents_title {
    width: 100px;
  }
}

@media (width < 431px) {
  .company__history__wrapper .history__contents_title {
    padding-left: 0px;
  }
}
/* ===============================================
Syncpiece株式会社
=============================================== */
.page__typeB__fv {
  background-color: #313131;
  width: 100%;
  height: 100vh;
}
.page__typeB__fv h1 {
  font-size: 60px;
  color: #fff;
  padding-top: 50px;
  line-height: 4.5rem;
}
@media (width < 1541px) {
  .page__typeB__fv h1 {
    font-size: 55px;
    line-height: 4rem;
  }
}
@media (width < 1441px) {
  .page__typeB__fv h1 {
    font-size: 50px;
    line-height: 3.5rem;
  }
}
@media (width < 1281px) {
  .page__typeB__fv h1 {
    font-size: 45px;
    line-height: 3rem;
  }
}
@media (width < 1101px) {
  .page__typeB__fv h1 {
    font-size: 40px;
  }
}
@media (width < 769px) {
  .page__typeB__fv h1 {
    font-size: 35px;
    line-height: 2.5rem;
  }
}
@media (width < 431px) {
  .page__typeB__fv h1 {
    font-size: 35px;
    line-height: 3.5rem;
    padding-top: 25px;
  }
}

.page__typeB__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.page__typeB__title {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
}
@media (width < 769px) {
  .page__typeB__title {
    left: 5%;
  }
}
.page__typeB__title img {
  width: 250px;
  height: 45px;
}
@media (width < 431px) {
  .page__typeB__title img {
    width: 150px;
    height: 27px;
  }
}

.inc__message {
  background-color: #313131;
  padding: 5% 0 10% 0;
}
@media (width < 431px) {
  .inc__message {
    padding: 5% 0 150px 0;
  }
}

.inc__message__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1281px) {
  .inc__message__wrapper {
    margin: 0 10%;
  }
}
@media (width < 1101px) {
  .inc__message__wrapper {
    display: block;
  }
}
@media (width < 769px) {
  .inc__message__wrapper {
    margin: 0 5%;
  }
}

.inc__message__text {
  color: #fff;
}
.inc__message__text h2 {
  padding-bottom: 5%;
  font-size: 35px;
}
.inc__message__text h2 img {
  width: 82px;
  height: 89px;
}
@media (width < 1441px) {
  .inc__message__text h2 {
    font-size: 30px;
  }
}
@media (width < 1281px) {
  .inc__message__text h2 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .inc__message__text h2 {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    font-weight: 500;
    padding-bottom: 70px;
  }
}
.inc__message__text p {
  font-size: 14px;
}
@media (width < 1281px) {
  .inc__message__text p {
    font-size: 13px;
  }
}
.inc__message__text p + p {
  margin-top: 20px;
}

.inc__message__img {
  width: 204px;
  height: 221px;
  margin-right: 5%;
}
@media (width < 1101px) {
  .inc__message__img {
    margin: 5% 0 0 0;
  }
}
.inc__message__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.inc__imgbox {
  background-image: url(images/imc-bgimg.webp);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
}
@media (width < 431px) {
  .inc__imgbox {
    height: 40vh;
  }
}

.inc__imgbox__wrapper {
  margin: 0 100px;
  color: #fff;
  position: relative;
  width: auto;
  height: 100%;
}
@media (width < 431px) {
  .inc__imgbox__wrapper {
    width: 100%;
    margin: 0;
  }
}
.inc__imgbox__wrapper h2 {
  font-size: 20px;
  padding-top: 5%;
}
@media (width < 431px) {
  .inc__imgbox__wrapper h2 {
    margin-left: 5%;
    font-weight: 400;
  }
}

.inc__imgbox__text {
  position: absolute;
  right: 0;
  bottom: 60px;
}
@media (width < 431px) {
  .inc__imgbox__text {
    bottom: 20px;
    right: 5%;
  }
}
.inc__imgbox__text p {
  font-size: 35px;
  line-height: 3.5rem;
}
@media (width < 1281px) {
  .inc__imgbox__text p {
    font-size: 28px;
    line-height: 3rem;
  }
}
@media (width < 769px) {
  .inc__imgbox__text p {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .inc__imgbox__text p {
    line-height: 1.5rem;
  }
}

.inc__business {
  background-color: #313131;
  padding: 10% 0;
}
@media (width < 769px) {
  .inc__business {
    padding: 100px 0;
  }
}

.inc__business__wrapper {
  margin: 0 100px;
}
@media (width < 1281px) {
  .inc__business__wrapper {
    margin: 0 70px;
  }
}
@media (width < 1101px) {
  .inc__business__wrapper {
    margin: 0 5%;
  }
}

.inc__business__title {
  color: #fff;
  line-height: 1rem;
  font-weight: 500;
}

.inc__business__contents {
  padding-top: 50px;
}
@media (width < 431px) {
  .inc__business__contents {
    padding-top: 0;
  }
}

.inc__business__item {
  display: flex;
  justify-content: center;
  padding: 3% 5%;
  gap: 50px;
  border-bottom: solid 1px #fff;
}
@media (width < 1101px) {
  .inc__business__item {
    padding: 3% 5%;
  }
}
@media (width < 769px) {
  .inc__business__item {
    display: block;
    padding: 70px 0 0 0;
  }
}

@media (width < 1101px) {
  .inc__business__img {
    width: 50%;
  }
}
@media (width < 769px) {
  .inc__business__img {
    width: 100%;
  }
}
@media (width < 1101px) {
  .inc__business__img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.inc__business__text {
  color: #fff;
  width: 40%;
}
@media (width < 1101px) {
  .inc__business__text {
    width: 50%;
  }
}
@media (width < 769px) {
  .inc__business__text {
    width: 100%;
  }
}
.inc__business__text h3 {
  font-size: 25px;
}
@media (width < 431px) {
  .inc__business__text h3 {
    font-size: 20px;
  }
}
.inc__business__text p {
  padding-top: 10%;
}
@media (width < 769px) {
  .inc__business__text p {
    padding: 5% 0 5% 0;
  }
}
@media (width < 769px) {
  .inc__business__text p {
    font-size: 14px;
    padding: 30px 0 70px 0;
  }
}

.inc__business__more {
  font-size: 16px;
  font-weight: normal;
}
@media (width < 431px) {
  .inc__business__more {
    font-size: 12px;
  }
}

.business__number1, .business__number2,
.business__number3, .business__number4,
.business__number5 {
  position: relative;
  font-size: 25px;
}
@media (width < 431px) {
  .business__number1, .business__number2,
.business__number3, .business__number4,
.business__number5 {
    font-size: 18px;
  }
}

.business__number1::after {
  position: absolute;
  content: "01.";
  color: #fff;
  left: -100px;
  top: 0;
}
@media (width < 1281px) {
  .business__number1::after {
    left: -50px;
  }
}
@media (width < 769px) {
  .business__number1::after {
    left: 0px;
    top: -30px;
  }
}

.business__number2::after {
  position: absolute;
  content: "02.";
  color: #fff;
  left: -100px;
  top: 0;
}
@media (width < 1281px) {
  .business__number2::after {
    left: -50px;
  }
}
@media (width < 769px) {
  .business__number2::after {
    left: 0px;
    top: -30px;
  }
}

.business__number3::after {
  position: absolute;
  color: #fff;
  content: "03.";
  left: -100px;
  top: 0;
}
@media (width < 1281px) {
  .business__number3::after {
    left: -50px;
  }
}
@media (width < 769px) {
  .business__number3::after {
    left: 0px;
    top: -30px;
  }
}

.business__number4::after {
  position: absolute;
  color: #fff;
  content: "04.";
  left: -100px;
  top: 0;
}
@media (width < 1281px) {
  .business__number4::after {
    left: -50px;
  }
}
@media (width < 769px) {
  .business__number4::after {
    left: 0px;
    top: -30px;
  }
}

.business__number5::after {
  position: absolute;
  color: #fff;
  content: "05.";
  left: -100px;
  top: 0;
}
@media (width < 1281px) {
  .business__number5::after {
    left: -50px;
  }
}
@media (width < 769px) {
  .business__number5::after {
    left: 0px;
    top: -30px;
  }
}

.inc__business__btn {
  border: solid 2px #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5% auto 0 auto;
  border-radius: 10px;
}
@media (width < 769px) {
  .inc__business__btn {
    margin-top: 30px;
  }
}
.inc__business__btn a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  text-decoration: none;
}
.inc__business__btn img {
  margin-left: 30px;
}

.inc_gallery_title {
  margin: 0 0 5% 5%;
}

/* ===============================================
ギャラリー
=============================================== */
.gallery-wrapper {
  background-color: #313131;
  position: relative;
  z-index: 1;
}

.gallery {
  overflow: hidden;
  margin-left: 50px;
}
@media (width < 431px) {
  .gallery {
    margin-left: 5%;
  }
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

.gallery-track img {
  flex-shrink: 0;
  height: auto;
}
@media (width < 431px) {
  .gallery-track img {
    max-height: 180px;
    width: auto;
  }
}

.gallery__gbimg {
  position: absolute;
  left: 50px;
  bottom: 30px;
  width: 1100px;
  height: 300px;
  z-index: -1;
}
@media (width < 1101px) {
  .gallery__gbimg {
    width: 600px;
    height: 170px;
  }
}
@media (width < 769px) {
  .gallery__gbimg {
    width: 300px;
    height: 90px;
    bottom: 10px;
  }
}

.gallery__btn__box {
  display: flex;
  justify-content: flex-end;
  gap: 10px; /* ボタン間の余白 */
  margin-right: 15%;
  padding: 5% 0;
}

button:disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}

/* ===============================================
会社概要----Syncpiece株式会社
=============================================== */
.sync__company__overview {
  padding: 7% 0;
  background-color: #313131;
}
@media (width < 769px) {
  .sync__company__overview {
    padding: 10% 0;
  }
}
@media (width < 431px) {
  .sync__company__overview {
    padding: 15% 0;
  }
}

.sync__company_wrapper {
  margin: 0 50px;
}
@media (width < 769px) {
  .sync__company_wrapper {
    margin: 0 5%;
  }
}

.sync__company__message__title {
  line-height: 1rem;
  color: #fff;
}
@media (width < 431px) {
  .sync__company__message__title {
    font-size: 20px;
    font-weight: normal;
  }
}

.sync__company__overview__container {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-top: 5%;
}
@media (width < 1101px) {
  .sync__company__overview__container {
    display: block;
    padding-top: 10%;
  }
}

.sync__company__overview__contents {
  margin-right: 5%;
}

.sync__company__overview__contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 100%;
  font-size: 18px;
  color: #fff;
}

@media (width < 1281px) {
  .sync__company__overview__contents table {
    font-size: 16px;
  }
}
.sync__company__overview__contents td {
  padding: 2% 0;
  vertical-align: top;
}

@media (width < 431px) {
  .sync__company__overview__contents td {
    font-size: 12px;
  }
}
.sync__company__overview__contents .sync__contents_more {
  padding-left: 5%;
}

.sync__company__overview__contents .sync__contents_title {
  white-space: nowrap;
}

.sync__contents__more {
  font-size: 14px;
  color: #A2A2A2;
  white-space: nowrap;
}
@media (width < 769px) {
  .sync__contents__more {
    white-space: normal;
  }
}
@media (width < 431px) {
  .sync__contents__more {
    font-size: 12px;
  }
}

.sync__address__contents {
  display: flex;
}
@media (width < 769px) {
  .sync__address__contents {
    display: block;
  }
}

.sync__address__name {
  width: 130px;
  color: #A2A2A2;
  flex-shrink: 0;
}
@media (width < 431px) {
  .sync__address__name {
    width: 170px;
  }
}

.sync__company__overview__contents .sync__contents_item {
  padding-left: 10%;
}
@media (width < 431px) {
  .sync__company__overview__contents .sync__contents_item {
    padding-left: 5%;
  }
}

.sync__company__overview__map {
  width: 45%;
}
@media (width < 769px) {
  .sync__company__overview__map {
    width: 100%;
    margin-top: 5%;
  }
}
.sync__company__overview__map iframe {
  width: 100%;
  height: 550px;
}
@media (width < 769px) {
  .sync__company__overview__map iframe {
    height: 350px;
  }
}

.sync__company__map {
  display: inline-block;
  border-bottom: solid 1px #000;
}
.sync__company__map a {
  color: #000;
}

@media screen and (max-width: 768px) {
  .sync__company__overview table tr {
    display: block;
    margin-bottom: 20px;
  }
  .sync__company__overview table td {
    display: block;
    width: 100%;
  }
  .sync__contents_title {
    font-weight: bold;
    margin-bottom: 5px;
  }
}
.syncinc_news_box {
  background-color: #292929;
  color: #fff;
}

/* ===============================================
0406-アンドギブページ
=============================================== */
/* ファーストビュー */
.ag_fv {
  background-color: #FFFAFA;
  padding: 6% 0 10% 0;
  position: relative;
  z-index: 0;
}
@media (width < 1441px) {
  .ag_fv {
    padding: 8% 0 10% 0;
  }
}
@media (width < 1101px) {
  .ag_fv {
    padding: 10% 0 15% 0;
  }
}
@media (width < 769px) {
  .ag_fv {
    padding: 0 0 25% 0;
  }
}
@media (width < 431px) {
  .ag_fv {
    padding: 0 0 150px 0;
  }
}

.ag_fv_wrapper {
  padding: 0 15px;
  position: relative;
  width: 100%;
}

.ag_fv_title {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
@media (width < 769px) {
  .ag_fv_title {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    padding: 20% 0 0 0;
  }
}
@media (width < 431px) {
  .ag_fv_title {
    padding: 40% 0 0 0;
  }
}
.ag_fv_title img {
  width: 303px;
  height: 35px;
  margin-bottom: 3%;
}
@media (width < 1281px) {
  .ag_fv_title img {
    width: 190px;
    height: 22px;
  }
}
.ag_fv_title h1 {
  font-size: 55px;
  letter-spacing: 0.2rem;
  margin-bottom: 7%;
}
@media (width < 1281px) {
  .ag_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 769px) {
  .ag_fv_title h1 {
    margin-bottom: 3%;
  }
}
@media (width < 431px) {
  .ag_fv_title h1 {
    font-size: 30px;
    margin-bottom: 7%;
  }
}
.ag_fv_title .ag_fv_title_small {
  font-size: 45px;
}
@media (width < 1281px) {
  .ag_fv_title .ag_fv_title_small {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .ag_fv_title .ag_fv_title_small {
    font-size: 30px;
  }
}
.ag_fv_title p {
  font-size: 16px;
}
@media (width < 1281px) {
  .ag_fv_title p {
    font-size: 14px;
  }
}

.ag_fv_hero {
  width: 80%;
  margin-left: auto;
}
@media (width < 769px) {
  .ag_fv_hero {
    width: 100%;
    padding-top: 3%;
  }
}
@media (width < 431px) {
  .ag_fv_hero {
    height: 350px;
    padding-top: 10%;
  }
}
.ag_fv_hero img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.vecter_line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  transform: translateX(-400px) translateY(-50px);
}
@media (width < 1441px) {
  .vecter_line {
    transform: translateX(-300px) translateY(-50px);
  }
}
@media (width < 1281px) {
  .vecter_line {
    transform: translateX(-200px) translateY(-50px);
  }
}
@media (width < 769px) {
  .vecter_line {
    transform: translateX(200px) translateY(-250px);
  }
}
@media (width < 431px) {
  .vecter_line {
    transform: translateX(70px) translateY(-170px);
  }
}

.vecter_line svg {
  width: 100%;
  height: 100%;
}

.line-path {
  fill: none;
  stroke: #D48985;
  stroke-width: 3;
  stroke-dasharray: 3300;
  stroke-dashoffset: -3300;
  -webkit-animation: drawLine 4s ease forwards;
          animation: drawLine 4s ease forwards;
}

@-webkit-keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.custom-shape-divider-bottom-1777236017 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 30;
}

.custom-shape-divider-bottom-1777236017 svg {
  position: relative;
  display: block;
  width: calc(141% + 1.3px);
  height: 120px;
}

.custom-shape-divider-bottom-1777236017 .shape-fill {
  fill: #FFF4E2;
}

/* アンドギブ-アバウト */
.custom-shape-divider-bottom-1777271093 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1777271093 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.custom-shape-divider-bottom-1777271093 .shape-fill {
  fill: #FFFAFA;
}

/* アンドギブ-アバウトコンテンツ */
.ag_about {
  background: linear-gradient(to bottom, #FFF4E2 0%, #FCE8E7 100%);
  position: relative;
  padding: 5% 0 10% 0;
}
@media (width < 1101px) {
  .ag_about {
    padding: 10% 0 15% 0;
  }
}
@media (width < 769px) {
  .ag_about {
    padding: 15% 0 20% 0;
  }
}
@media (width < 431px) {
  .ag_about {
    padding: 15% 0 40% 0;
  }
}

.ag_about_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.ag_about_logo {
  margin: 5% auto 5% auto;
  width: 400px;
  height: 340px;
}
@media (width < 1441px) {
  .ag_about_logo {
    width: 350px;
    height: 296px;
  }
}
@media (width < 1281px) {
  .ag_about_logo {
    width: 300px;
    height: 254px;
  }
}
@media (width < 1101px) {
  .ag_about_logo {
    width: 250px;
    height: 211px;
  }
}
@media (width < 769px) {
  .ag_about_logo {
    width: 170px;
    height: 145px;
  }
}
.ag_about_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ag_about_text {
  text-align: center;
}
.ag_about_text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (width < 1281px) {
  .ag_about_text h2 {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .ag_about_text h2 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .ag_about_text h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (width < 431px) {
  .ag_about_text h2 {
    font-size: 18px;
    margin-top: 50px;
  }
}
.ag_about_text p {
  font-size: 18px;
}
@media (width < 1281px) {
  .ag_about_text p {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .ag_about_text p {
    font-size: 14px;
  }
}

.ag_about_text p:first-of-type {
  padding-bottom: 20px;
}
@media (width < 769px) {
  .ag_about_text p:first-of-type {
    padding-bottom: 10px;
  }
}

.ag_about_text p:last-of-type {
  padding-top: 20px;
}
@media (width < 769px) {
  .ag_about_text p:last-of-type {
    padding-top: 10px;
  }
}

/* アンドギブ-サービス */
.ag_service {
  padding: 5% 0;
  background-color: #FFFAFA;
  position: relative;
  z-index: 0;
}
@media (width < 431px) {
  .ag_service {
    padding: 15% 0;
  }
}

.ag_bg_line {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
}

.ag_bg_line svg {
  width: 100%;
  height: 100%;
}

.ag_bottom_line {
  position: absolute;
  top: -100px;
  left: 100px;
  right: 0;
  bottom: auto;
  z-index: -1;
  pointer-events: none;
  width: 100%;
}

.ag_bottom_line svg {
  width: 100%;
  height: 100%;
}

.sec-line-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 4s ease;
}

.ag_bg_line .sec-line-path {
  stroke-width: 1;
}

.ag_bottom_line .sec-line-path {
  stroke-width: 0.5;
}

.sec-line-path.is-draw {
  stroke-dashoffset: 0;
}

.ag_service_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .ag_service_wrapper {
    margin: 0 5%;
  }
}

.ag_service_about {
  padding: 3% 0 0 0;
}
@media (width < 769px) {
  .ag_service_about {
    padding: 10% 0 0 0;
  }
}
.ag_service_about h3 {
  font-size: 35px;
  padding-bottom: 15px;
  font-weight: 500;
}
@media (width < 1281px) {
  .ag_service_about h3 {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .ag_service_about h3 {
    font-size: 25px;
  }
}
.ag_service_about p {
  font-size: 14px;
  line-height: 2rem;
}
@media (width < 769px) {
  .ag_service_about p {
    line-height: 1.5rem;
  }
}
.ag_service_about p + p {
  margin-top: 15px;
}

.ag_service_inner {
  margin: 0 3%;
}
@media (width < 769px) {
  .ag_service_inner {
    margin: 0;
  }
}

.ag_service_item {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 7% 0 5% 0;
}
@media (width < 769px) {
  .ag_service_item {
    display: block;
  }
}
@media (width < 431px) {
  .ag_service_item {
    padding: 25% 0 5% 0;
  }
}

.ag_service_item_img {
  width: 600px;
  height: auto;
}
@media (width < 1281px) {
  .ag_service_item_img {
    width: 45%;
  }
}
@media (width < 1101px) {
  .ag_service_item_img {
    width: 55%;
  }
}
@media (width < 769px) {
  .ag_service_item_img {
    width: 90%;
  }
}
.ag_service_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.ag_left_img {
  margin-right: auto;
}

.ag_right_img {
  margin-left: auto;
}

.ag_service_item_contents {
  width: 45%;
}
@media (width < 1281px) {
  .ag_service_item_contents {
    width: 50%;
  }
}
@media (width < 1101px) {
  .ag_service_item_contents {
    width: 40%;
  }
}
@media (width < 769px) {
  .ag_service_item_contents {
    width: 100%;
    padding-top: 50px;
  }
}
.ag_service_item_contents h3 {
  color: #D48783;
  font-size: 35px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: solid 1px #707070;
  letter-spacing: 0.2rem;
}
@media (width < 1281px) {
  .ag_service_item_contents h3 {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .ag_service_item_contents h3 {
    font-size: 25px;
  }
}
.ag_service_item_contents h4 {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 0 0 0;
}
@media (width < 1281px) {
  .ag_service_item_contents h4 {
    font-size: 18px;
  }
}
@media (width < 1101px) {
  .ag_service_item_contents h4 {
    font-size: 16px;
  }
}
.ag_service_item_contents h5 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 3rem;
  padding-top: 15px;
}
@media (width < 1281px) {
  .ag_service_item_contents h5 {
    font-size: 18px;
    line-height: 2.5rem;
  }
}
@media (width < 1101px) {
  .ag_service_item_contents h5 {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .ag_service_item_contents h5 {
    padding-top: 20px;
  }
}
.ag_service_item_contents h5 img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.ag_service_item_contents p {
  margin-left: 15px;
  font-size: 14px;
  line-height: 1.7rem;
}

.ag_service_item01::after {
  content: "01";
  position: absolute;
  left: 5px;
  top: -20px;
  font-size: 16px;
  color: #1A1A1A;
}

.ag_service_item02::after {
  content: "02";
  position: absolute;
  left: 5px;
  top: -20px;
  font-size: 16px;
  color: #1A1A1A;
}

.ag_sec_title {
  color: #D48783;
}

.life_sec_title {
  color: #64AE5B;
}

.life_overview_link {
  color: #000;
}

.wanm_sec_title {
  color: #ED80B0;
}

/* アンドギブ-ポイント */
/* アンドギブ-ポイント上 */
.custom-shape-divider-top-1775453056 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1775453056 svg {
  position: relative;
  display: block;
  width: calc(160% + 1.3px);
  height: 77px;
  transform: rotateY(180deg);
  transform: scaleX(-1);
}

.custom-shape-divider-top-1775453056 .shape-fill {
  fill: #FFFAFA;
}

/* アンドギブ-ポイント下 */
.custom-shape-divider-bottom-1775453306 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1775453306 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 23px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1775453306 .shape-fill {
  fill: #FFFAFA;
}

.ag_point {
  background: linear-gradient(135deg, #FFF4E2 0%, #FCE8E7 100%);
  position: relative;
  padding: 10% 0 10% 0;
  z-index: 100;
}
@media (width < 769px) {
  .ag_point {
    padding: 25% 0 25% 0;
  }
}
@media (width < 431px) {
  .ag_point {
    padding: 35% 0 30% 0;
  }
}

.ag_point_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .ag_point_wrapper {
    margin: 0 5%;
  }
}

.ag_point_about h3 {
  font-size: 40px;
}
.ag_point_about p {
  font-size: 16px;
}

.ag_point_about_fw {
  font-weight: 500;
}

.ag_point_about {
  padding: 3% 0 0 0;
}
@media (width < 769px) {
  .ag_point_about {
    padding: 10% 0 0 0;
  }
}
.ag_point_about h3 {
  font-size: 35px;
  padding-bottom: 10px;
}
@media (width < 1281px) {
  .ag_point_about h3 {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .ag_point_about h3 {
    font-size: 25px;
  }
}
.ag_point_about p {
  font-size: 14px;
}

.ag_point_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 5%;
}
@media (width < 769px) {
  .ag_point_inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media (width < 431px) {
  .ag_point_inner {
    padding-top: 20%;
  }
}

.ag_point_item {
  background-color: #fff;
  border-radius: 20px;
  padding: 10% 5%;
}
.ag_point_item img {
  width: 300px;
  height: 254px;
  display: block;
  margin: 0 auto;
}
@media (width < 1441px) {
  .ag_point_item img {
    width: 250px;
    height: 212px;
  }
}
@media (width < 1281px) {
  .ag_point_item img {
    width: 200px;
    height: 169px;
  }
}
.ag_point_item h4 {
  color: #D48783;
  font-size: 25px;
  text-align: center;
  padding: 5% 0;
}
@media (width < 1101px) {
  .ag_point_item h4 {
    font-size: 20px;
  }
}
.ag_point_item p {
  font-size: 16px;
  line-height: 1.7rem;
}
@media (width < 1101px) {
  .ag_point_item p {
    font-size: 14px;
  }
}

@media (width < 769px) {
  .ag_point_item + .ag_point_item {
    margin-top: 50px;
  }
}

.ag_path_werapper {
  position: relative;
  background-color: #FFFAFA;
  z-index: 0;
  width: 100%;
}

/* sスライドショー */
.ag_slide_wrapper {
  padding: 5% 0;
  position: relative;
  z-index: 10;
}
@media (width < 769px) {
  .ag_slide_wrapper {
    padding: 15% 0;
  }
}

.ag_slide {
  display: flex;
  width: 100vw;
  height: 500px;
}

@media (width < 1281px) {
  .ag_slide {
    height: 400px;
  }
}
@media (width < 431px) {
  .ag_slide {
    height: 300px;
  }
}
.ag_slide img {
  width: auto;
  height: 100%;
  margin-right: 20px;
}

.ag_slide img:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
  animation: slide1 60s -30s linear infinite;
}

.ag_slide img:last-child {
  -webkit-animation: slide2 60s linear infinite;
  animation: slide2 60s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* アンドギブ-お知らせ */
.ag_news_box {
  background: linear-gradient(135deg, #FFF4E2 0%, #FCE8E7 100%);
}

/* 各下層P-お知らせ */
.news_box {
  padding: 7% 0;
}
@media (width < 769px) {
  .news_box {
    padding: 15% 0;
  }
}

.news_box_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .news_box_wrapper {
    margin: 0 5%;
  }
}

.news_box_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 3%;
}
@media (width < 1101px) {
  .news_box_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news_box_img {
  width: 300px;
  height: 150px;
}
@media (width < 1441px) {
  .news_box_img {
    width: 250px;
    height: 150px;
  }
}
@media (width < 1281px) {
  .news_box_img {
    width: 230px;
    height: 140px;
  }
}
@media (width < 1101px) {
  .news_box_img {
    width: 200px;
    height: 120px;
  }
}
@media (width < 769px) {
  .news_box_img {
    width: 180px;
    height: 120px;
  }
}
@media (width < 431px) {
  .news_box_img {
    width: 160px;
    height: 100px;
  }
}
.news_box_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.news_date {
  font-size: 12px;
  color: #000;
  padding: 10px 0 0 0;
}

.news_title {
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.news_more_btn {
  font-size: 12px;
  text-align: right;
  padding-top: 20px;
}
@media (width < 431px) {
  .news_more_btn {
    font-size: 10px;
  }
}

.ag_news_more_btn, .pr_news_more_btn, .sa_news_more_btn,
.syncinc_news_more_btn {
  color: #FF65F9;
}

.pr_category_btn {
  color: #C4C4C4;
  font-size: 12px;
}
@media (width < 431px) {
  .pr_category_btn {
    font-size: 10px;
  }
}

/* ===============================================
各社会社概要
=============================================== */
.page_overview {
  padding: 5% 0 7% 0;
}
@media (width < 769px) {
  .page_overview {
    padding: 10% 0;
  }
}
@media (width < 431px) {
  .page_overview {
    padding: 15% 0;
  }
}

.page_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .page_wrapper {
    margin: 0 5%;
  }
}
@media (width < 431px) {
  .page_wrapper {
    margin: 0 3%;
  }
}

.company__message__title {
  line-height: 1rem;
}
@media (width < 431px) {
  .company__message__title {
    font-size: 20px;
    font-weight: normal;
  }
}

.page_overview_container {
  width: 60%;
  margin-left: auto;
  padding-top: 5%;
}
@media (width < 769px) {
  .page_overview_container {
    width: 100%;
  }
}
@media (width < 431px) {
  .page_overview_container {
    padding-top: 10%;
  }
}

.page_overview_container table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 100%;
  font-size: 18px;
}

@media (width < 1281px) {
  .page_overview_container table {
    font-size: 16px;
  }
}
.page_overview_container td {
  padding: 2% 0;
  vertical-align: top;
}
@media (width < 431px) {
  .page_overview_container td {
    padding: 0 0 2% 0;
  }
}

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

.page_overview_container .contents_title {
  white-space: nowrap;
}

.page_contents_more {
  font-size: 14px;
  color: #A2A2A2;
  white-space: nowrap;
  display: block;
}
@media (width < 769px) {
  .page_contents_more {
    white-space: normal;
  }
}
@media (width < 431px) {
  .page_contents_more {
    font-size: 12px;
  }
}

.address__contents {
  display: flex;
}
@media (width < 769px) {
  .address__contents {
    display: block;
  }
}

.address__name {
  width: 130px;
  color: #A2A2A2;
  flex-shrink: 0;
}
@media (width < 431px) {
  .address__name {
    width: 170px;
  }
}

.company__map {
  padding-top: 5%;
}
@media (width < 431px) {
  .company__map {
    padding-top: 10%;
  }
}

@media screen and (max-width: 768px) {
  .page_overview table tr {
    display: block;
    margin-bottom: 30px;
  }
  .page_overview table td {
    display: block;
    width: 100%;
  }
  .contents_title {
    font-weight: bold;
    margin-bottom: 5px;
  }
}
/* ===============================================
採用情報ページ
=============================================== */
.recruit_fv_wrapper {
  background-image: url(images/recruit/recruit-fv.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
@media (width < 1441px) {
  .recruit_fv_wrapper {
    height: 90vh;
  }
}
@media (width < 1281px) {
  .recruit_fv_wrapper {
    height: 85vh;
  }
}
@media (width < 769px) {
  .recruit_fv_wrapper {
    background-image: none;
    height: auto;
    padding: 180px 0 0 0;
  }
}

.recruit_fv_hero {
  width: 100%;
}
@media (width < 431px) {
  .recruit_fv_hero {
    height: 300px;
  }
}
.recruit_fv_hero img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.recruit_fv_inner {
  margin: 0 0 0 10%;
  position: relative;
  height: 100%;
}
@media (width < 769px) {
  .recruit_fv_inner {
    margin: 0;
  }
}

.recruit_page_title {
  color: #fff;
  position: absolute;
  left: 0;
  top: 200px;
}
@media (width < 769px) {
  .recruit_page_title {
    color: #000;
    position: static;
    left: auto;
    top: auto;
    padding-bottom: 30px;
    padding-left: 20px;
  }
}

.recruit_fv_title {
  position: absolute;
  right: 5%;
  bottom: 10%;
  color: #fff;
}
@media (width < 1441px) {
  .recruit_fv_title {
    right: 0;
  }
}
@media (width < 1281px) {
  .recruit_fv_title {
    right: 5%;
    bottom: 13%;
  }
}
@media (width < 769px) {
  .recruit_fv_title {
    color: #000;
    position: static;
    left: auto;
    top: auto;
    margin: 0 5%;
    padding-top: 30px;
  }
}
.recruit_fv_title h2 {
  font-size: 65px;
  letter-spacing: 0.2rem;
}
@media (width < 1441px) {
  .recruit_fv_title h2 {
    font-size: 60px;
  }
}
@media (width < 1281px) {
  .recruit_fv_title h2 {
    font-size: 50px;
  }
}
@media (width < 1101px) {
  .recruit_fv_title h2 {
    font-size: 40px;
  }
}
@media (width < 769px) {
  .recruit_fv_title h2 {
    font-size: 35px;
  }
}
@media (width < 431px) {
  .recruit_fv_title h2 {
    font-size: 30px;
  }
}
.recruit_fv_title p {
  font-size: 16px;
}
@media (width < 1281px) {
  .recruit_fv_title p {
    font-size: 14px;
  }
}
.recruit_fv_title p:first-of-type {
  margin-top: 30px;
}
@media (width < 1281px) {
  .recruit_fv_title p:first-of-type {
    margin-top: 20px;
  }
}
.recruit_fv_title p + p {
  margin-top: 25px;
}
@media (width < 1281px) {
  .recruit_fv_title p + p {
    margin-top: 15px;
  }
}

/* フューチャー */
.recruit_future {
  margin: 0 5%;
  height: 70vh;
  position: relative;
}
@media (width < 769px) {
  .recruit_future {
    height: auto;
    padding: 150px 0 0 0;
  }
}

.recruit_future_inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width < 769px) {
  .recruit_future_inner {
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }
}

.recruit_future_title h2 {
  font-size: 16px;
}
@media (width < 1101px) {
  .recruit_future_title h2 {
    font-size: 14px;
  }
}
.recruit_future_title p {
  font-size: 35px;
  font-weight: bold;
}
@media (width < 1101px) {
  .recruit_future_title p {
    font-size: 30px;
  }
}
@media (width < 769px) {
  .recruit_future_title p {
    font-size: 25px;
  }
}

.recruit_future_about {
  width: 70%;
  margin-left: auto;
  margin-top: 7%;
}
@media (width < 1101px) {
  .recruit_future_about {
    width: 75%;
  }
}
@media (width < 769px) {
  .recruit_future_about {
    width: 100%;
    margin-left: 0;
    margin-top: 70px;
  }
}

.future_about_item {
  display: flex;
  align-items: center;
}
@media (width < 769px) {
  .future_about_item {
    display: block;
  }
}
.future_about_item h3 {
  font-size: 30px;
  width: 40%;
}
@media (width < 1281px) {
  .future_about_item h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .future_about_item h3 {
    font-size: 20px;
    width: 100%;
  }
}
.future_about_item p {
  font-size: 14px;
  width: 55%;
}
@media (width < 769px) {
  .future_about_item p {
    width: 100%;
  }
}

.future_about_item + .future_about_item {
  margin-top: 50px;
}

/* シンクワーク */
.recruit_work {
  margin: 0 5%;
  height: 100vh;
  position: relative;
}
@media (width < 769px) {
  .recruit_work {
    height: auto;
    padding: 150px 0 50px 0;
  }
}
@media (width < 431px) {
  .recruit_work {
    padding: 150px 0 40px 0;
  }
}

.recruit_work_wrapper {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width < 769px) {
  .recruit_work_wrapper {
    position: static;
    top: 0;
    left: 0;
    transform: none;
  }
}

.recruit_work_title h2 {
  font-size: 16px;
}
@media (width < 1101px) {
  .recruit_work_title h2 {
    font-size: 14px;
  }
}
.recruit_work_title p {
  font-size: 35px;
  font-weight: bold;
}
@media (width < 1101px) {
  .recruit_work_title p {
    font-size: 30px;
  }
}
@media (width < 769px) {
  .recruit_work_title p {
    font-size: 25px;
  }
}

.recruit_work_about {
  width: 70%;
  margin-left: auto;
  margin-top: 7%;
}
@media (width < 1101px) {
  .recruit_work_about {
    width: 75%;
  }
}
@media (width < 769px) {
  .recruit_work_about {
    width: 100%;
    margin-left: 0;
    margin-top: 70px;
  }
}

.recruit_work_item {
  display: flex;
  align-items: center;
}
@media (width < 769px) {
  .recruit_work_item {
    display: block;
  }
}
.recruit_work_item h3 {
  font-size: 30px;
  width: 40%;
}
@media (width < 1281px) {
  .recruit_work_item h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .recruit_work_item h3 {
    font-size: 20px;
    width: 100%;
  }
}
.recruit_work_item p {
  font-size: 14px;
  width: 55%;
}
@media (width < 769px) {
  .recruit_work_item p {
    width: 100%;
  }
}

.recruit_work_item + .recruit_work_item {
  margin-top: 50px;
}

/* 採用情報-ピックアップ */
.recruit_pickup {
  background-image: url(images/recruit/recruit-pickup.jpg);
  background-size: cover;
  background-position: top;
  height: 70vh;
  width: 100%;
}
@media (width < 769px) {
  .recruit_pickup {
    height: 50vh;
  }
}
@media (width < 431px) {
  .recruit_pickup {
    height: 40vh;
  }
}

.recruit_pickup_wrapper {
  margin: 0 5%;
  position: relative;
  width: 100%;
  height: 100%;
}

.recruit_pickup_text {
  color: #fff;
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
@media (width < 769px) {
  .recruit_pickup_text {
    top: auto;
    transform: none;
    bottom: 10%;
  }
}
.recruit_pickup_text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  line-height: 3.5rem;
}
@media (width < 1101px) {
  .recruit_pickup_text h2 {
    font-size: 30px;
  }
}
@media (width < 769px) {
  .recruit_pickup_text h2 {
    font-size: 25px;
    line-height: 2.7rem;
  }
}
@media (width < 431px) {
  .recruit_pickup_text h2 {
    font-size: 20px;
    line-height: 2rem;
  }
}
.recruit_pickup_text p {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: bold;
}
@media (width < 769px) {
  .recruit_pickup_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .recruit_pickup_text p {
    font-size: 12px;
  }
}

/* jobリスト */
.recruit_job {
  padding: 10% 0 5% 0;
}

.recruit_job_wrapper {
  margin: 0 5%;
}

.recruit_job_category {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (width < 1441px) {
  .recruit_job_category {
    gap: 40px;
  }
}
@media (width < 1281px) {
  .recruit_job_category {
    gap: 30px;
  }
}
@media (width < 769px) {
  .recruit_job_category {
    display: none;
  }
}

.select_box {
  position: relative;
  margin: 20px 0 60px 0;
}
@media (width < 431px) {
  .select_box {
    margin: 40px 0 50px 0;
  }
}

.select_box select {
  padding: 0 0 0 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: solid 1px #707070;
  width: 265px;
  font-size: 16px;
  height: 50px;
}
@media (width < 1441px) {
  .select_box select {
    width: 250px;
  }
}
@media (width < 1281px) {
  .select_box select {
    width: 200px;
  }
}
@media (width < 1101px) {
  .select_box select {
    width: 160px;
    font-size: 14px;
  }
}
@media (width < 431px) {
  .select_box select {
    width: 160px;
    font-size: 14px;
    height: 45px;
  }
}

.select_box::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

@media (width < 769px) {
  .recruit_job_list {
    padding-top: 50px;
  }
}
.recruit_job_list li {
  border-top: solid 1px #5D5D5D;
  padding: 50px 0 30px 0;
}
.recruit_job_list li:last-of-type {
  border-bottom: solid 1px #5D5D5D;
}
.recruit_job_list a {
  display: flex;
  gap: 50px;
  color: #000;
}
@media (width < 769px) {
  .recruit_job_list a {
    display: block;
  }
}

.recruit_job_img {
  width: 35%;
  height: 330px;
}
@media (width < 769px) {
  .recruit_job_img {
    width: 100%;
  }
}
.recruit_job_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.recruit_job_contents {
  width: 60%;
}
@media (width < 769px) {
  .recruit_job_contents {
    width: 100%;
    padding-top: 30px;
  }
}
.recruit_job_contents h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.recruit_job_label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 30px 0;
}

.recruit_job_more {
  font-size: 14px;
  line-height: 2rem;
}

.s-recruit-inner {
  padding: 100px 0 40px 0;
}
@media (width < 431px) {
  .s-recruit-inner {
    padding: 60px 0 40px 0;
  }
}

.s-recruit-company {
  font-size: 14px;
  color: #808080;
}

.s-recruit-department {
  font-size: 14px;
  margin-top: 4px;
  color: #808080;
}

.s-recruit-label {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.recruit-label-area,
.recruit-label-post {
  border: 1px solid #141414;
  padding: 2px 12px;
  font-size: 12px;
}

.recruit_job_pagebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 5% 0 0 0;
}
@media (width < 431px) {
  .recruit_job_pagebtn {
    padding: 10% 0 0 0;
  }
}

/* ウェルカム */
.recruit_welcome {
  height: 60vh;
  padding-bottom: 150px;
}
@media (width < 1101px) {
  .recruit_welcome {
    padding-bottom: 120px;
  }
}
@media (width < 769px) {
  .recruit_welcome {
    padding-bottom: 100px;
  }
}
@media (width < 431px) {
  .recruit_welcome {
    height: 50vh;
    padding-bottom: 50px;
  }
}

.recruit_welcome_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit_welcome_wrapper h2 {
  font-size: 45px;
  text-align: center;
  position: relative;
  width: 100%;
  line-height: 4rem;
}
@media (width < 1281px) {
  .recruit_welcome_wrapper h2 {
    line-height: 4rem;
  }
}
@media (width < 1101px) {
  .recruit_welcome_wrapper h2 {
    font-size: 40px;
    line-height: 3.5rem;
  }
}
@media (width < 769px) {
  .recruit_welcome_wrapper h2 {
    font-size: 35px;
    line-height: 2.5rem;
  }
}
@media (width < 431px) {
  .recruit_welcome_wrapper h2 {
    font-size: 25px;
    line-height: 2.2rem;
  }
}

.recruit_welcome_wrapper h2::after {
  content: "";
  background-image: url(images/recruit/recruit-WELCOME.png);
  background-size: 60%;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
@media (width < 1101px) {
  .recruit_welcome_wrapper h2::after {
    background-size: 75%;
  }
}
@media (width < 769px) {
  .recruit_welcome_wrapper h2::after {
    background-size: 85%;
  }
}
@media (width < 431px) {
  .recruit_welcome_wrapper h2::after {
    background-size: 90%;
  }
}

/* ===============================================
page-entry-info（ENTRYバナー）
=============================================== */
.page-entry-info {
  margin: 0 10%;
  height: 50vh;
  margin-bottom: 200px;
}
@media (width < 769px) {
  .page-entry-info {
    margin: 0 5% 150px 5%;
  }
}
@media (width < 431px) {
  .page-entry-info {
    margin: 0 5% 50px 5%;
  }
}

.page-entry-wrapper {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (width < 769px) {
  .page-entry-wrapper {
    background-image: url(images/recruit/mb-entry1.png);
  }
}

.page-entry-wrapper_A {
  background-image: url(images/recruit/entry.png);
}
@media (width < 769px) {
  .page-entry-wrapper_A {
    background-image: url(images/recruit/mb-entry1.png);
  }
}

.page-entry-wrapper_B {
  background-image: url(images/partnership/contctform-link.jpg);
}
@media (width < 769px) {
  .page-entry-wrapper_B {
    background-image: url(images/recruit/mb-entry2.png);
  }
}

.page-entry-box {
  display: flex;
  align-items: flex-end;
  gap: 100px;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}
@media (width < 769px) {
  .page-entry-box {
    left: 10%;
  }
}
@media (width < 431px) {
  .page-entry-box {
    left: 5%;
  }
}

.page-entry-child h2 {
  font-size: 70px;
  color: #fff;
}
@media (width < 1281px) {
  .page-entry-child h2 {
    font-size: 60px;
  }
}
@media (width < 769px) {
  .page-entry-child h2 {
    font-size: 50px;
  }
}
.page-entry-child p {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media (width < 1281px) {
  .page-entry-child p {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .page-entry-child p {
    font-size: 16px;
  }
}

@media (width < 769px) {
  .page-entry-arrow {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
}
.page-entry-arrow img {
  width: 40px;
  height: 40px;
}

.page-entry-info-more {
  display: inline-block;
  border-bottom: solid 1px #141414;
  padding-top: 35px;
}
.page-entry-info-more a {
  color: #141414;
  font-size: 20px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.page-entry-info-more img {
  width: 25px;
  height: 25px;
  margin-left: 15px;
}

/* ===============================================
レスポンシブ（タブレット：769px以下）
=============================================== */
@media (width < 769px) {
  .page-title h1 {
    font-size: 32px;
  }
  /* s-recruit-item：2カラム → 1カラム */
  .s-recruit-item {
    grid-template-columns: 1fr;
  }
  /* 画像を先に・テキストを後に（HTMLの順番通り） */
  .s-recruit-item img {
    width: 100%;
    height: 200px;
  }
  /* s-recruit-child（テキストエリア）の余白調整 */
  .s-recruit-child {
    padding: 0;
  }
}
/* ===============================================
レスポンシブ（スマホ：431px以下）
=============================================== */
@media (width < 431px) {
  /* 各項目の余白 */
  .s-recruit-more__item {
    padding: 16px;
  }
}
/* ===============================================
個別ページ・お問い合わせフォーム
=============================================== */
.page_contact {
  padding: 200px 0 200px 0;
}
@media (width < 431px) {
  .page_contact {
    padding: 180px 0 150px 0;
  }
}

.page_contact_wrapper {
  margin: 0 10%;
}
@media (width < 1281px) {
  .page_contact_wrapper {
    margin: 0 5%;
  }
}

.page_contact_more {
  padding-top: 30px;
  font-size: 16px;
}
@media (width < 1281px) {
  .page_contact_more {
    font-size: 14px;
  }
}
@media (width < 769px) {
  .page_contact_more {
    font-size: 12px;
    padding-top: 70px;
  }
}

.page_contact_must {
  color: #FF0000;
  padding-top: 20px;
}

.must {
  position: relative;
}

.must::after {
  content: "※";
  position: absolute;
  left: 7px;
  top: -7px;
  color: #FF0000;
  font-size: 12px;
}
@media (width < 769px) {
  .must::after {
    left: -7px;
  }
}

.contact_form_box {
  padding: 10% 0% 0 0;
  max-width: 1100px;
  margin: 0 auto;
}

.contact_form_box dl {
  padding: 30px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ここだけ上揃えに戻す */
.contact_form_box dl.textarea_border {
  align-items: flex-start;
}

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

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

@media (width < 769px) {
  .contact_form_box dd {
    width: 100%;
  }
}
.contact_form_box input {
  width: 100%;
  padding: 10px 1rem;
  background-color: #fff;
}

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

.pparea_btnbox {
  padding: 5% 0 20px 0;
}
.pparea_btnbox p {
  font-size: 14px;
  width: 80%;
}
@media (width < 1281px) {
  .pparea_btnbox p {
    font-size: 12px;
  }
}
@media (width < 769px) {
  .pparea_btnbox p {
    width: 100%;
  }
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
  padding-top: 80px;
}
@media (width < 769px) {
  .pp_checkbox {
    padding: 120px 0 50px 0;
    justify-content: left;
  }
}
.pp_checkbox a {
  color: #7a7a7a;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/*コンタクトボタン・アニメーション*/
.contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

@media (width < 769px) {
  .contact_formbtnarea {
    width: 65%;
  }
}
.contact_formarea_btn {
  font-size: 18px;
  color: #fff;
  background-color: #141414;
  width: 100%;
  padding: 20px 50px;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1281px) {
  .contact_formarea_btn {
    padding: 20px 40px;
    font-size: 16px;
  }
}
@media (width < 769px) {
  .contact_formarea_btn {
    padding: 15px 30px;
    font-size: 14px;
  }
}
.contact_formarea_btn img {
  width: 25px;
  height: 25px;
}
@media (width < 769px) {
  .contact_formarea_btn img {
    width: 20px;
    height: 20px;
  }
}

.contct_anouncetxt {
  text-align: center;
  padding: 3% 0;
}

/* ===============================================
個別ページ・事業提携
=============================================== */
.page_ps_fv_wrapper {
  padding: 200px 0 200px 0;
  margin: 0 0 0 10%;
}
@media (width < 1281px) {
  .page_ps_fv_wrapper {
    margin: 0 7%;
  }
}
@media (width < 769px) {
  .page_ps_fv_wrapper {
    padding: 180px 0 100px;
    margin: 0 0 0 5%;
  }
}

.page_ps_fv_contents h2 {
  font-size: 65px;
  padding: 50px 0 20px 0;
  letter-spacing: 0.3rem;
}
@media (width < 1281px) {
  .page_ps_fv_contents h2 {
    font-size: 55px;
  }
}
@media (width < 1101px) {
  .page_ps_fv_contents h2 {
    font-size: 45px;
  }
}
@media (width < 769px) {
  .page_ps_fv_contents h2 {
    padding: 100px 0 0 0;
  }
}
@media (width < 431px) {
  .page_ps_fv_contents h2 {
    padding: 100px 0 0 0;
    font-size: 35px;
  }
}

.page_ps_fv_inner {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
@media (width < 769px) {
  .page_ps_fv_inner {
    display: block;
    padding-top: 0;
  }
}
.page_ps_fv_inner .page_ps_fv_text_child {
  padding-top: 30px;
  font-size: 16px;
}
@media (width < 1101px) {
  .page_ps_fv_inner .page_ps_fv_text_child {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .page_ps_fv_inner .page_ps_fv_text_child {
    padding-top: 20px;
  }
}

.ps_fv_btn a {
  width: 300px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: solid 1px #707070;
  padding: 15px 20px;
  margin-top: 100px;
  background-color: #fff;
  color: #000;
}
@media (width < 1101px) {
  .ps_fv_btn a {
    width: 250px;
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (width < 431px) {
  .ps_fv_btn a {
    width: 300px;
    margin-top: 60px;
    padding: 20px 20px;
  }
}
.ps_fv_btn a img {
  width: 25px;
  height: 25px;
}
@media (width < 1101px) {
  .ps_fv_btn a img {
    width: 20px;
    height: 20px;
  }
}

.page_ps_fv_img {
  width: 60%;
  padding-top: 100px;
}
@media (width < 769px) {
  .page_ps_fv_img {
    width: 100%;
  }
}
@media (width < 431px) {
  .page_ps_fv_img {
    padding-top: 40px;
  }
}
.page_ps_fv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

/*事業提携*/
.ps_bd_wrapper {
  margin: 0 5%;
}

.ps_bd_title {
  text-align: center;
}
@media (width < 769px) {
  .ps_bd_title {
    padding-top: 50px;
    text-align: left;
  }
}
.ps_bd_title h2 {
  font-size: 20px;
}
@media (width < 431px) {
  .ps_bd_title h2 {
    font-size: 16px;
  }
}
.ps_bd_title p {
  font-size: 40px;
  font-weight: bold;
}
@media (width < 431px) {
  .ps_bd_title p {
    font-size: 30px;
  }
}

.ps_bd_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 100px 0 150px 0;
  gap: 20px;
}

/* 1100px以下 */
@media screen and (max-width: 1100px) {
  .ps_bd_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 430px) {
  .ps_bd_inner {
    grid-template-columns: repeat(1, 1fr);
    padding: 100px 0 100px 0;
    gap: 80px;
  }
}
.ps_bd_item {
  text-align: center;
  width: 100%;
}
.ps_bd_item img {
  width: 50%;
  height: auto;
}
@media (width < 1101px) {
  .ps_bd_item img {
    width: 40%;
  }
}
@media (width < 431px) {
  .ps_bd_item img {
    width: 50%;
  }
}
.ps_bd_item h3 {
  font-size: 18px;
  padding-top: 20px;
}
.ps_bd_item p {
  font-size: 14px;
  color: #525252;
  padding: 15px 0;
}

.ps_bd_item_box {
  border: solid 1px #525252;
  width: 250px;
  margin: 0 auto;
  background-color: #fff;
}
@media (width < 769px) {
  .ps_bd_item_box {
    width: 200px;
  }
}
@media (width < 431px) {
  .ps_bd_item_box {
    width: 300px;
  }
}
.ps_bd_item_box h4 {
  font-size: 12px;
  color: #525252;
  padding: 10px 0 5px 0;
}
.ps_bd_item_box p {
  font-size: 14px;
  padding-bottom: 25px;
  font-weight: bold;
}

/*提携パターン*/
.ps_pattern {
  padding: 100px 0 200px 0;
}
@media (width < 1101px) {
  .ps_pattern {
    padding: 100px 0 100px 0;
  }
}
@media (width < 431px) {
  .ps_pattern {
    padding: 100px 0 0 0;
  }
}

.ps_pattern_title {
  text-align: center;
}
.ps_pattern_title h2 {
  font-size: 20px;
}
@media (width < 431px) {
  .ps_pattern_title h2 {
    font-size: 16px;
  }
}
.ps_pattern_title p {
  font-size: 40px;
  font-weight: bold;
}
@media (width < 431px) {
  .ps_pattern_title p {
    font-size: 30px;
  }
}

.ps_pattern_inner {
  padding: 150px 0;
  max-width: 768px;
  margin: 0 auto;
}
@media (width < 769px) {
  .ps_pattern_inner {
    margin: 0 5%;
  }
}
.ps_pattern_inner img {
  width: 100%;
}

/*パートナーシップ-ピックアップ*/
.ps_pickup {
  height: 100vh;
  background-color: #fff;
}
@media (width < 431px) {
  .ps_pickup {
    height: 75vh;
  }
}

.ps_pickup_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(images/partnership/PPCS.png);
  background-size: cover;
  background-position: top center;
}
@media (width < 769px) {
  .ps_pickup_wrapper {
    background-image: url(images/partnership/mb-PPCS.png);
  }
}

@media (width < 769px) {
  .ps_pickup_contents {
    margin: 0 5%;
  }
}
@media (width < 431px) {
  .ps_pickup_contents {
    margin: 0 3%;
  }
}

.ps_pickup_contents_item {
  text-align: center;
}
.ps_pickup_contents_item h2 {
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 20px;
}
@media (width < 431px) {
  .ps_pickup_contents_item h2 {
    font-size: 14px;
  }
}
.ps_pickup_contents_item .ps-pickup-p {
  font-size: 18px;
}
@media (width < 431px) {
  .ps_pickup_contents_item .ps-pickup-p {
    font-size: 11px;
  }
}
.ps_pickup_contents_item img {
  width: auto;
  padding-top: 50px;
}
@media (width < 769px) {
  .ps_pickup_contents_item img {
    width: 400px;
  }
}
@media (width < 431px) {
  .ps_pickup_contents_item img {
    width: 250px;
    padding-top: 40px;
  }
}

.ps-pickup-lastmore {
  font-size: 16px;
  padding-top: 70px;
}
@media (width < 431px) {
  .ps-pickup-lastmore {
    font-size: 10px;
    padding-top: 50px;
  }
}

.ps-pickup-more {
  font-size: 18px;
  font-weight: bold;
}
@media (width < 1281px) {
  .ps-pickup-more {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .ps-pickup-more {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .ps-pickup-more {
    font-size: 12px;
  }
}

/*パートナーシップ-メリット*/
.ps_merit_title h2 {
  font-size: 20px;
}
@media (width < 431px) {
  .ps_merit_title h2 {
    font-size: 16px;
  }
}
.ps_merit_title p {
  font-size: 40px;
  font-weight: bold;
}
@media (width < 431px) {
  .ps_merit_title p {
    font-size: 30px;
  }
}

.ps_merit, .ps_merit_number {
  padding: 10% 0;
}

@media (width < 431px) {
  .ps_merit {
    padding-top: 80px;
  }
}

.ps_merit_wrapper {
  margin: 0 10%;
}
@media (width < 1281px) {
  .ps_merit_wrapper {
    margin: 0 7%;
  }
}

.ps_merit_inner {
  margin: 0 0 0 5%;
  padding: 100px 0;
}
@media (width < 769px) {
  .ps_merit_inner {
    margin: 0;
  }
}

.ps_merit_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .ps_merit_item {
    display: block;
  }
}
.ps_merit_item h3 {
  width: 35%;
  font-size: 35px;
}
@media (width < 1281px) {
  .ps_merit_item h3 {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .ps_merit_item h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .ps_merit_item h3 {
    width: 100%;
    padding-bottom: 15px;
    font-size: 30px;
  }
}
.ps_merit_item p {
  width: 55%;
  font-size: 20px;
  font-weight: bold;
  color: #5D5D5D;
}
@media (width < 1101px) {
  .ps_merit_item p {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .ps_merit_item p {
    width: 100%;
    font-size: 25px;
  }
}
@media (width < 431px) {
  .ps_merit_item p {
    font-size: 20px;
  }
}

.ps_merit_item_more {
  display: block;
  color: #707070;
  font-size: 16px;
  font-weight: normal;
}
@media (width < 1101px) {
  .ps_merit_item_more {
    font-size: 14px;
  }
}
@media (width < 769px) {
  .ps_merit_item_more {
    margin-top: 15px;
  }
}

.ps_merit_item + .ps_merit_item {
  margin-top: 100px;
}
@media (width < 1281px) {
  .ps_merit_item + .ps_merit_item {
    margin-top: 80px;
  }
}

/*パートナーシップ-ナンバーメリット*/
.ps_merit_number {
  padding: 100px 0 0 0;
}

.ps_merit_number_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 100px 0 0 0;
  gap: 20px;
}
.ps_merit_number_inner img {
  width: 100%;
}
@media (width < 769px) {
  .ps_merit_number_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 431px) {
  .ps_merit_number_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===============================================
ライフ
=============================================== */
.page_life, .life_point {
  background: radial-gradient(circle at 85% 40%, #f8fbf3 0%, transparent 45%), radial-gradient(circle at 15% 25%, #e9f1e0 0%, transparent 40%), radial-gradient(circle at 70% 80%, #dfe9c7 0%, transparent 40%), radial-gradient(circle at 40% 60%, #edf4e5 0%, transparent 40%), linear-gradient(180deg, #f6f9f1 0%, #e4ecd4 100%);
}

.page_life {
  overflow-x: hidden;
  position: relative;
}

.page_life_wrapper {
  position: relative;
  z-index: 0;
}

.life_fv {
  width: 100%;
  padding-top: 80px;
}

.life_fv_wrapper {
  position: relative;
}
@media (width < 769px) {
  .life_fv_wrapper {
    display: flex;
    justify-content: center;
  }
}

.life_fvpc_img {
  width: 95%;
  display: block;
  margin-left: auto;
}
@media (width < 769px) {
  .life_fvpc_img {
    display: none;
  }
}

.life_fvmb_img {
  display: none;
}
@media (width < 769px) {
  .life_fvmb_img {
    display: block;
    width: 120%;
  }
}

.life_fv_title_small {
  font-size: 40px;
}
@media (width < 1281px) {
  .life_fv_title_small {
    font-size: 35px;
  }
}
@media (width < 769px) {
  .life_fv_title_small {
    font-size: 22px;
  }
}
@media (width < 431px) {
  .life_fv_title_small {
    font-size: 20px;
  }
}

.life_fv_title {
  position: absolute;
  left: 7%;
  bottom: 35%;
}
@media (width < 1541px) {
  .life_fv_title {
    bottom: 30%;
  }
}
@media (width < 1441px) {
  .life_fv_title {
    bottom: 23%;
  }
}
@media (width < 1281px) {
  .life_fv_title {
    bottom: 20%;
  }
}
@media (width < 1101px) {
  .life_fv_title {
    bottom: 5%;
  }
}
@media (width < 769px) {
  .life_fv_title {
    bottom: auto;
    top: 38%;
  }
}
@media (width < 431px) {
  .life_fv_title {
    bottom: auto;
    top: 37%;
    left: 5%;
  }
}
.life_fv_title h1 {
  font-size: 50px;
}
@media (width < 1281px) {
  .life_fv_title h1 {
    font-size: 45px;
  }
}
@media (width < 1101px) {
  .life_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 769px) {
  .life_fv_title h1 {
    font-size: 32px;
  }
}
@media (width < 431px) {
  .life_fv_title h1 {
    font-size: 25px;
  }
}
.life_fv_title img {
  width: 143px;
  height: 35px;
}
@media (width < 431px) {
  .life_fv_title img {
    width: 72px;
    height: 17px;
  }
}

.life_about {
  padding: 150px 0 300px 0;
}
@media (width < 431px) {
  .life_about {
    padding: 100px 0 200px 0;
  }
}

.life_about_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1101px) {
  .life_about_wrapper {
    margin: 0 5%;
  }
}
@media (width < 769px) {
  .life_about_wrapper {
    display: block;
  }
}

.life_about_img {
  width: 35%;
}
@media (width < 1281px) {
  .life_about_img {
    width: 30%;
  }
}
@media (width < 769px) {
  .life_about_img {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 50px;
  }
}
.life_about_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.life_about_contents {
  width: 55%;
}
@media (width < 1281px) {
  .life_about_contents {
    width: 60%;
  }
}
@media (width < 769px) {
  .life_about_contents {
    width: 100%;
    text-align: center;
  }
}
.life_about_contents h2 {
  font-size: 25px;
  line-height: 3rem;
  padding-bottom: 20px;
  font-weight: 500;
}
@media (width < 1281px) {
  .life_about_contents h2 {
    padding-bottom: 30px;
  }
}
@media (width < 1101px) {
  .life_about_contents h2 {
    font-size: 20px;
    line-height: 2.5rem;
  }
}
@media (width < 769px) {
  .life_about_contents h2 {
    font-size: 20px;
    line-height: 2rem;
    padding-bottom: 30px;
  }
}
.life_about_contents p {
  font-size: 18px;
  line-height: 1.7rem;
}
@media (width < 1281px) {
  .life_about_contents p {
    font-size: 16px;
  }
}
@media (width < 1101px) {
  .life_about_contents p {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .life_about_contents p {
    line-height: 1.2rem;
    font-size: 11px;
  }
}

.custom-shape-divider-bottom-1775715884 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: scaleX(-1);
}

.custom-shape-divider-bottom-1775715884 svg {
  position: relative;
  display: block;
  width: calc(141% + 1.3px);
  height: 73px;
}

.custom-shape-divider-bottom-1775715884 .shape-fill {
  fill: #FFFFFF;
}

.life_program_wrapper {
  padding: 5% 0;
  text-align: center;
}
@media (width < 431px) {
  .life_program_wrapper {
    padding: 10% 0;
  }
}
.life_program_wrapper h2 {
  font-size: 30px;
  color: #64AE5B;
  padding-bottom: 30px;
}
@media (width < 769px) {
  .life_program_wrapper h2 {
    font-size: 25px;
  }
}
.life_program_wrapper p {
  font-size: 16px;
  line-height: 1.7rem;
}
@media (width < 769px) {
  .life_program_wrapper p {
    font-size: 14px;
  }
}

.life_service {
  margin: 0 10%;
  padding: 10px 0 0 0;
  position: relative;
}
@media (width < 1281px) {
  .life_service {
    margin: 0 5%;
  }
}

.life_child_title {
  color: #64AE5B;
}

.life_service_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 150px 0;
}
@media (width < 769px) {
  .life_service_contents {
    display: block;
    padding: 50px 0 100px 0;
  }
}
@media (width < 431px) {
  .life_service_contents {
    padding: 50px 0 50px 0;
  }
}
.life_service_contents h3 {
  font-size: 30px;
  line-height: 3rem;
}
@media (width < 769px) {
  .life_service_contents h3 {
    width: 100%;
    padding-bottom: 40px;
    font-size: 25px;
    line-height: 2.5rem;
  }
}
@media (width < 431px) {
  .life_service_contents h3 {
    font-size: 20px;
    line-height: 2rem;
    padding-bottom: 30px;
  }
}

.life_service_contents_more {
  width: 67%;
}
@media (width < 769px) {
  .life_service_contents_more {
    width: 100%;
  }
}
.life_service_contents_more p {
  font-size: 15px;
  line-height: 1.5rem;
}
@media (width < 1441px) {
  .life_service_contents_more p {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .life_service_contents_more p {
    font-size: 12px;
    line-height: 1.7rem;
  }
}

.life_service_inner {
  padding-bottom: 200px;
}
@media (width < 431px) {
  .life_service_inner {
    padding: 250px 0 100px 0;
  }
}

.life_service_item01 {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
@media (width < 769px) {
  .life_service_item01 {
    display: block;
  }
}

.life_service_item01_childflex {
  align-items: center;
}

.life_service_item01_child + .life_service_item01_child {
  margin-top: 40px;
}

.life_service_item01_child {
  display: flex;
  gap: 100px;
}
@media (width < 1281px) {
  .life_service_item01_child {
    gap: 70px;
  }
}
@media (width < 1101px) {
  .life_service_item01_child {
    gap: 0px;
    display: block;
  }
}
@media (width < 769px) {
  .life_service_item01_child {
    display: block;
  }
}
.life_service_item01_child h3 {
  background-color: #64AE5B;
  color: #fff;
  border-radius: 10px;
  width: 158px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
@media (width < 1101px) {
  .life_service_item01_child h3 {
    width: 130px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
@media (width < 431px) {
  .life_service_item01_child h3 {
    font-size: 14px;
  }
}
.life_service_item01_child p, .life_service_item01_child li {
  color: #1A1A1A;
  font-size: 18px;
}
@media (width < 1101px) {
  .life_service_item01_child p, .life_service_item01_child li {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .life_service_item01_child p, .life_service_item01_child li {
    font-size: 14px;
    margin-left: 1.5rem;
    line-height: 1.7rem;
  }
}

.life_service_item01_img {
  margin-top: 20px;
  width: 40%;
}
@media (width < 769px) {
  .life_service_item01_img {
    width: 100%;
  }
}
.life_service_item01_img img {
  width: 100%;
  height: auto;
}

.life_service_item02 {
  width: 30%;
  margin-left: auto;
  margin-top: 150px;
  margin-right: 7%;
}
@media (width < 769px) {
  .life_service_item02 {
    width: 100%;
    margin-right: 0;
    margin-top: 80px;
  }
}
.life_service_item02 img {
  width: 100%;
  height: 100%;
}

.life_service_item01::after {
  content: "";
  position: absolute;
  background-image: url(images/life/life-service-itembg.png);
  background-position: center;
  background-size: cover;
  width: 700px;
  height: 710px;
  left: 0px;
  top: 400px;
  z-index: -1;
}
@media (width < 1441px) {
  .life_service_item01::after {
    width: 600px;
    height: 610px;
  }
}
@media (width < 1281px) {
  .life_service_item01::after {
    width: 500px;
    height: 510px;
    left: 50px;
  }
}
@media (width < 1101px) {
  .life_service_item01::after {
    width: 300px;
    height: 310px;
    left: 50px;
  }
}
@media (width < 769px) {
  .life_service_item01::after {
    top: -50px;
    left: auto;
    right: 0;
  }
}
@media (width < 431px) {
  .life_service_item01::after {
    top: -270px;
    right: -20px;
  }
}

.life_point {
  position: relative;
  padding: 100px 0 0 0;
}
@media (width < 431px) {
  .life_point {
    padding: 100px 0 0 0;
  }
}

.custom-shape-divider-top-1775719388 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1775719388 svg {
  position: relative;
  display: block;
  width: calc(133% + 1.3px);
  height: 35px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1775719388 .shape-fill {
  fill: #FFFFFF;
}

.life_point_wrapper {
  margin: 0 10%;
}
@media (width < 1281px) {
  .life_point_wrapper {
    margin: 0 5%;
  }
}

.life_point_inner {
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 1101px) {
  .life_point_inner {
    padding-bottom: 100px;
  }
}
@media (width < 769px) {
  .life_point_inner {
    flex-direction: column;
    padding-top: 50px;
  }
}
@media (width < 431px) {
  .life_point_inner {
    padding: 30px 0 50px 0;
  }
}
.life_point_inner .life_point_inner_img01,
.life_point_inner .life_point_inner_img02,
.life_point_inner .life_point_inner_img03 {
  width: 100%;
}
.life_point_inner .life_point_inner_img01 img,
.life_point_inner .life_point_inner_img02 img,
.life_point_inner .life_point_inner_img03 img {
  width: 100%;
  display: block;
}
.life_point_inner .life_point_inner_img01 {
  margin-right: -40px;
}
.life_point_inner .life_point_inner_img03 {
  margin-left: -40px;
}
@media (width < 769px) {
  .life_point_inner .life_point_inner_img01 {
    margin: 0 0 -40px 0;
  }
  .life_point_inner .life_point_inner_img02 {
    margin: 0;
  }
  .life_point_inner .life_point_inner_img03 {
    margin: -40px 0 0 0;
  }
}

.life_point_contents h3 {
  font-size: 30px;
  padding: 20px 0;
}
@media (width < 769px) {
  .life_point_contents h3 {
    font-size: 25px;
  }
}
.life_point_contents p {
  font-size: 16px;
}
@media (width < 431px) {
  .life_point_contents p {
    font-size: 10px;
    line-height: 1.2rem;
  }
}

.life_office {
  padding: 100px 0;
  overflow: hidden;
}
@media (width < 769px) {
  .life_office {
    margin: 0 3%;
  }
}

.life_office_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (width < 769px) {
  .life_office_wrapper {
    background-color: #fff;
    border: solid 1px #64AE5B;
    border-radius: 40px;
    padding-bottom: 20px;
  }
}

.life_office_wrapper h2 {
  font-size: 35px;
  color: #64AE5B;
  text-align: center;
  padding-bottom: 100px;
  font-weight: 500;
}
@media (width < 769px) {
  .life_office_wrapper h2 {
    font-size: 30px;
    padding: 30px 0 30px 0;
  }
}

/* PC表示 */
.life_office_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

@media (max-width: 768px) {
  .life_office_inner {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
  }
  .life_office_item {
    min-width: calc(100% - 20px);
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .life_office_item {
    width: 90%;
    flex-shrink: 0;
  }
}
.life_office_item img {
  width: 100%;
}

.life_office_item h3 {
  font-size: 14px;
  padding: 10px 0;
}

.life_office_item h4 {
  font-size: 25px;
  padding-bottom: 15px;
}
@media (width < 431px) {
  .life_office_item h4 {
    font-size: 20px;
  }
}

.life_office_item p {
  font-size: 14px;
}

.life_office_item p + p {
  padding-top: 10px;
}

/* ナビ */
.life_office_nav {
  display: none;
}

@media (max-width: 768px) {
  .life_office_nav {
    display: flex;
    justify-content: right;
    gap: 20px;
    margin-top: 30px;
  }
}
.life_office_nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #64AE5B;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
@media (width < 431px) {
  .life_office_nav button {
    width: 40px;
    height: 40px;
  }
}

.life_office_nav button:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ライフ-お知らせ */
.life_news_box {
  background: linear-gradient(135deg, #aedda9 0%, #82ca78 50%, #65AF5D 100%);
}

.life_news_btn_color, .syncinc_news_btn_color {
  color: #fff;
}

/* ===============================================
wanmページ
=============================================== */
/* 背景画像 */
.deco_wrapper01, .deco_wrapper02,
.deco_wrapper03, .deco_wrapper04,
.deco_wrapper05, .deco_wrapper06 {
  position: relative;
  z-index: 0;
}

.bg {
  position: absolute;
  pointer-events: none;
  width: 5%;
  z-index: -1;
}

/* デコ01 */
.deco-a1 {
  left: -5%;
  top: 60%;
}

.deco-c1 {
  left: 15%;
  top: -80px;
  transform: rotate(-50deg);
}

.deco-c2 {
  right: 10%;
  top: 0;
}

.deco-c3 {
  right: -2%;
  bottom: 15%;
  transform: rotate(40deg);
}

.deco-c4 {
  left: 10%;
  bottom: 0;
}

/* デコ02 */
.deco-c5 {
  right: 25%;
  top: 10%;
  transform: rotate(-50deg);
}

.deco-c6 {
  bottom: 15%;
  left: 20%;
  transform: rotate(-80deg);
}

/* デコ03 */
.deco-c7 {
  top: 0;
  right: 20%;
}

.deco-c8 {
  right: 1%;
  bottom: 40%;
}

.deco-c9 {
  left: 15%;
  bottom: 11%;
  transform: rotate(-50deg);
}

.deco-b1 {
  top: 30%;
  left: 0;
  width: 90px;
  height: auto;
}

/* デコ04 */
.deco-b2 {
  width: 90px;
  height: auto;
  top: -7%;
  right: 5%;
}

.deco-c10 {
  left: -7%;
  top: 10%;
  transform: rotate(40deg);
}

.deco-c11 {
  right: 30%;
  bottom: -5%;
  transform: rotate(-50deg);
}

/* デコ05 */
.deco-b3 {
  left: 10%;
  bottom: 12%;
  transform: rotate(80deg);
}

/* デコ06 */
.deco-a2 {
  width: 65px;
  height: 65px;
  right: 5%;
  bottom: 25%;
}

.deco-b4 {
  top: 0;
  left: 60%;
}

.deco-c12 {
  left: 15%;
  bottom: 12%;
  transform: rotate(-50deg);
}

.a-size {
  width: 60px;
  height: 60px;
}
@media (width < 431px) {
  .a-size {
    width: 30px;
    height: 30px;
  }
}

.b-size {
  width: 100px;
  height: 88px;
}
@media (width < 431px) {
  .b-size {
    width: 80px;
    height: 65px;
  }
}

.c-size {
  width: 90px;
  height: 60px;
}
@media (width < 431px) {
  .c-size {
    width: 75px;
    height: 53px;
  }
}

.wanm_bg {
  background: linear-gradient(to bottom right, #FFF9F8, #FCFFF5);
}

.wanm_center_title {
  color: #ED80B0;
  text-align: center;
}
@media (width < 431px) {
  .wanm_center_title {
    text-align: left;
  }
}
.wanm_center_title h2 {
  font-size: 35px;
  letter-spacing: 0.3rem;
}
@media (width < 431px) {
  .wanm_center_title h2 {
    font-size: 23px;
    letter-spacing: 0.1rem;
  }
}
.wanm_center_title p {
  font-size: 16px;
}

.page_wanm {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (width < 769px) {
  .page_wanm {
    height: 140vh;
  }
}
@media (width < 431px) {
  .page_wanm {
    height: 100vh;
  }
}

.wanm_fv_wrapper {
  width: 100%;
  height: 100%;
  background-image: url(images/wanm/wanm-fv.png);
  background-size: 100%;
  background-position: center;
  position: relative;
}
@media (width < 1281px) {
  .wanm_fv_wrapper {
    background-size: cover;
  }
}
@media (width < 769px) {
  .wanm_fv_wrapper {
    background-image: url(images/wanm/wanm-mb-fv.png);
    background-size: cover;
  }
}

.wanm_fv_title {
  position: absolute;
  left: 7%;
  top: 45%;
  transform: translateY(-50%);
}
@media (width < 1101px) {
  .wanm_fv_title {
    left: 5%;
  }
}
@media (width < 769px) {
  .wanm_fv_title {
    top: 15%;
    transform: translateY(0);
    left: 5%;
  }
}
.wanm_fv_title img {
  width: 360px;
  height: 150px;
}
@media (width < 1441px) {
  .wanm_fv_title img {
    width: 320px;
    height: 134px;
  }
}
@media (width < 1281px) {
  .wanm_fv_title img {
    width: 280px;
    height: 117px;
  }
}
@media (width < 1101px) {
  .wanm_fv_title img {
    width: 210px;
    height: 88px;
  }
}
@media (width < 431px) {
  .wanm_fv_title img {
    width: 148px;
    height: 62px;
  }
}
.wanm_fv_title h1 {
  padding-top: 40px;
  color: #ED80B0;
  font-size: 40px;
  letter-spacing: 0.2rem;
}
@media (width < 1441px) {
  .wanm_fv_title h1 {
    font-size: 35px;
  }
}
@media (width < 1281px) {
  .wanm_fv_title h1 {
    font-size: 30px;
  }
}
@media (width < 769px) {
  .wanm_fv_title h1 {
    padding-top: 20px;
  }
}
@media (width < 431px) {
  .wanm_fv_title h1 {
    padding-top: 10px;
  }
}

.custom-shape-divider-bottom-1775783196 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1775783196 svg {
  position: relative;
  display: block;
  width: calc(189% + 1.3px);
  height: 200px;
  transform: rotateY(180deg);
}
@media (width < 769px) {
  .custom-shape-divider-bottom-1775783196 svg {
    height: 100px;
  }
}

.custom-shape-divider-bottom-1775783196 .shape-fill {
  fill: #FFFFFF;
}

/* 追加（波の線） */
.custom-shape-divider-bottom-1775783196 .shape-line {
  fill: none;
  stroke: rgba(237, 128, 176, 0.2);
  stroke-width: 2;
}

.wanm_about {
  padding: 0 0 250px 0;
  background-color: #FFFFFF;
  position: relative;
  z-index: 0;
}
@media (width < 769px) {
  .wanm_about {
    padding: 100px 0 200px 0;
  }
}
@media (width < 431px) {
  .wanm_about {
    padding: 50px 0 150px 0;
  }
}

.wanm_about::after {
  content: "";
  position: absolute;
  background-image: url(images/wanm/wanm-bg.png);
  background-size: cover;
  width: 500px;
  height: 500px;
  right: -200px;
  top: 300px;
  z-index: -1;
}
@media (width < 431px) {
  .wanm_about::after {
    width: 250px;
    height: 250px;
    right: -100px;
    top: 800px;
  }
}

.wanm_about::before {
  content: "";
  position: absolute;
  background-image: url(images/wanm/wanm-bg.png);
  background-size: cover;
  width: 400px;
  height: 400px;
  left: -100px;
  top: 1300px;
  z-index: -1;
}
@media (width < 1281px) {
  .wanm_about::before {
    left: -200px;
    top: 1100px;
  }
}
@media (width < 1101px) {
  .wanm_about::before {
    top: 900px;
  }
}
@media (width < 431px) {
  .wanm_about::before {
    width: 200px;
    height: 200px;
    left: -100px;
    top: 1350px;
  }
}

.wanm_about_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .wanm_about_wrapper {
    margin: 0 5%;
  }
}
@media (width < 431px) {
  .wanm_about_wrapper {
    margin: 0;
  }
}

.wanm_about_item01 {
  width: 100%;
}
@media (width < 1281px) {
  .wanm_about_item01 {
    width: 90%;
    margin: 0 auto;
  }
}
@media (width < 431px) {
  .wanm_about_item01 {
    width: 97%;
    margin: 0 0 0 3%;
  }
}
.wanm_about_item01 img {
  width: 100%;
}

.wanm_about_item02 {
  width: 100%;
  text-align: center;
  padding: 100px 0 0 0;
}
@media (width < 769px) {
  .wanm_about_item02 {
    width: 90%;
    margin: 0 auto;
  }
}
@media (width < 431px) {
  .wanm_about_item02 {
    padding: 50px 0 0 0;
  }
}
.wanm_about_item02 img {
  width: 60%;
}
@media (width < 769px) {
  .wanm_about_item02 img {
    width: 100%;
  }
}

.wanm_about_item03 {
  padding: 250px 0 0 0;
}
@media (width < 769px) {
  .wanm_about_item03 {
    padding: 150px 0 0 0;
  }
}
@media (width < 431px) {
  .wanm_about_item03 {
    padding: 100px 0 0 0;
  }
}
.wanm_about_item03 .wanm_about_item03_title {
  width: 55%;
  display: block;
  margin: 0 auto;
}
@media (width < 769px) {
  .wanm_about_item03 .wanm_about_item03_title {
    width: 100%;
  }
}
@media (width < 431px) {
  .wanm_about_item03 .wanm_about_item03_title {
    width: 95%;
    margin: 0 auto;
  }
}

.wanm_about_item03_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
  padding-top: 50px;
}
@media (width < 769px) {
  .wanm_about_item03_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 431px) {
  .wanm_about_item03_wrapper {
    padding: 50px 10% 0 10%;
    gap: 50px 20px;
  }
}

.wanm_about_item03_box p {
  font-size: 25px;
  color: #ED80B0;
  font-weight: bold;
  text-align: center;
}
@media (width < 1101px) {
  .wanm_about_item03_box p {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .wanm_about_item03_box p {
    font-size: 16px;
  }
}
.wanm_about_item03_box img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
@media (width < 769px) {
  .wanm_about_item03_box img {
    width: 100%;
  }
}

.custom-shape-divider-bottom-1775788340 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1775788340 svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 99px;
  transform: scaleX(-1);
}

.custom-shape-divider-bottom-1775788340 .shape-fill {
  fill: #FEFBF7;
}

.shape-line {
  fill: none;
  stroke: rgba(237, 128, 176, 0.2);
  stroke-width: 2;
}

.wanm_service {
  padding: 150px 0 100px;
}
@media (width < 431px) {
  .wanm_service {
    padding: 100px 0 25px 0;
  }
}

.wanm_service_wrapper {
  margin: 0 10%;
}
@media (width < 1101px) {
  .wanm_service_wrapper {
    margin: 0 5%;
  }
}

.wanm_service_item01 {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  margin: 0 5%;
}
@media (width < 769px) {
  .wanm_service_item01 {
    display: block;
  }
}
@media (width < 431px) {
  .wanm_service_item01 {
    margin: 0;
  }
}

.wanm_service_item01_img {
  width: 50%;
}
@media (width < 769px) {
  .wanm_service_item01_img {
    width: 100%;
  }
}
.wanm_service_item01_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.wanm_service_mb {
  display: none;
}
@media (width < 769px) {
  .wanm_service_mb {
    display: block;
  }
}

@media (width < 769px) {
  .wanm_service_pc {
    display: none;
  }
}

.wanm_service_item01_child_title {
  position: relative;
  color: #ED80B0;
  font-size: 30px;
}
@media (width < 1281px) {
  .wanm_service_item01_child_title {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .wanm_service_item01_child_title {
    padding-bottom: 20px;
  }
}

.wanm_service_item01_child {
  width: 45%;
  padding-top: 30px;
  font-weight: 500;
  color: #1A1A1A;
}
@media (width < 1281px) {
  .wanm_service_item01_child {
    width: 47%;
  }
}
@media (width < 769px) {
  .wanm_service_item01_child {
    width: 100%;
  }
}
@media (width < 431px) {
  .wanm_service_item01_child {
    padding-top: 0;
  }
}
.wanm_service_item01_child h4 {
  font-size: 20px;
  line-height: 2rem;
  padding: 20px 0;
}
@media (width < 1281px) {
  .wanm_service_item01_child h4 {
    font-size: 18px;
    padding: 20px 0;
    line-height: 1.8rem;
  }
}
@media (width < 431px) {
  .wanm_service_item01_child h4 {
    padding: 30px 0;
  }
}
.wanm_service_item01_child p {
  font-size: 16px;
  line-height: 2rem;
}
@media (width < 1281px) {
  .wanm_service_item01_child p {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
@media (width < 431px) {
  .wanm_service_item01_child p {
    line-height: 2rem;
  }
}

.wanm_service_item01_child_title::after {
  content: "01";
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  font-size: 16px;
  color: #ED80B0;
}

.wanm_service_item02 {
  padding: 50px 0 100px 0;
  margin: 0 5%;
}
@media (width < 769px) {
  .wanm_service_item02 {
    padding: 50px 0 100px 0;
  }
}
@media (width < 431px) {
  .wanm_service_item02 {
    margin: 0;
  }
}
.wanm_service_item02 img {
  width: 100%;
}

.wanm_service_item03 {
  color: #ED80B0;
}

.wanm_service_item03_inner {
  padding: 50px 0 150px 0;
}
@media (width < 769px) {
  .wanm_service_item03_inner {
    padding: 50px 0 100px 0;
  }
}

.wanm_card_box {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (width < 769px) {
  .wanm_card_box {
    display: block;
  }
}

.wanm_card_box_item {
  width: 100%;
}
.wanm_card_box_item img {
  width: 100%;
  height: auto;
}

@media (width < 769px) {
  .wanm_card_box_item + .wanm_card_box_item {
    margin-top: 30px;
  }
}

.wanm_pethotel_item01 {
  display: flex;
  justify-content: space-between;
  padding: 100px 0 50px 0;
  margin: 0 5%;
  border-top: dashed 1px #ED80B0;
}
@media (width < 769px) {
  .wanm_pethotel_item01 {
    display: block;
    margin: 0;
  }
}

.wanm_pethotel_img {
  width: 50%;
}
@media (width < 769px) {
  .wanm_pethotel_img {
    width: 100%;
  }
}
.wanm_pethotel_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.wanm_pethotel_child_title {
  position: relative;
  color: #ED80B0;
  font-size: 30px;
}
@media (width < 1281px) {
  .wanm_pethotel_child_title {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .wanm_pethotel_child_title {
    padding-bottom: 20px;
  }
}

.wanm_pethotel_child {
  width: 45%;
  padding-top: 30px;
}
@media (width < 1281px) {
  .wanm_pethotel_child {
    width: 47%;
  }
}
@media (width < 769px) {
  .wanm_pethotel_child {
    width: 100%;
  }
}
.wanm_pethotel_child h4 {
  font-size: 20px;
  line-height: 2rem;
  padding: 20px 0;
}
@media (width < 1281px) {
  .wanm_pethotel_child h4 {
    font-size: 18px;
    padding: 20px 0;
    line-height: 1.8rem;
  }
}
.wanm_pethotel_child p {
  font-size: 16px;
  line-height: 1.7rem;
}
@media (width < 1281px) {
  .wanm_pethotel_child p {
    font-size: 14px;
    line-height: 1.4rem;
  }
}

.wanm_pethotel_child_title::after {
  content: "02";
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  font-size: 16px;
  color: #ED80B0;
}

.wanm_pethotel_item02 {
  padding: 50px 0 200px 0;
  margin: 0 5%;
}
@media (width < 769px) {
  .wanm_pethotel_item02 {
    padding: 50px 0 100px 0;
    margin: 0;
  }
}
.wanm_pethotel_item02 img {
  width: 100%;
}

.wanm_pethotel_item03 {
  text-align: center;
}

.wanm_pethotel_item03_img {
  padding: 50px 0 50px 0;
}

/* wanm-お知らせ */
.wanm_news_box {
  background: linear-gradient(to bottom right, #F2CDDD, #E8B4CB);
}

.wanm_news_more_btn {
  color: #525252;
}

.wanm_slide_wrapper {
  position: relative;
  padding: 5% 0 200px 0;
}
@media (width < 769px) {
  .wanm_slide_wrapper {
    padding: 5% 0 100px 0;
  }
}

.custom-shape-divider-bottom-1775780719 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1775780719 svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 56px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1775780719 .shape-fill {
  fill: #fff;
}

.custom-shape-divider-bottom-1775789507 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1775789507 svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 56px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1775789507 .shape-fill {
  fill: #FCFEF5;
}

.custom-shape-divider-bottom-1775789507 .shape-line {
  fill: none;
  stroke: rgba(237, 128, 176, 0.2);
  stroke-width: 2;
}

.wanm_info {
  background-color: #fff;
  position: relative;
  padding: 200px 0;
}
@media (width < 1101px) {
  .wanm_info {
    padding: 100px 0 150px 0;
  }
}
@media (width < 769px) {
  .wanm_info {
    padding: 50px 0 100px 0;
  }
}

.wanm_info_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .wanm_info_wrapper {
    margin: 0 5%;
  }
}

.wanm_info_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0 50px 0;
  position: relative;
  z-index: 0;
}
@media (width < 769px) {
  .wanm_info_inner {
    display: block;
  }
}
@media (width < 431px) {
  .wanm_info_inner {
    padding: 50px 0 50px 0;
  }
}

.wanm_info_inner::after {
  content: "";
  background-image: url(images/wanm/wanm-bg.png);
  background-size: cover;
  width: 500px;
  height: 500px;
  position: absolute;
  right: -250px;
  top: -150px;
  z-index: -1;
}

.wanm_info_inner::before {
  content: "";
  background-image: url(images/wanm/wanm-bg.png);
  background-size: cover;
  width: 350px;
  height: 350px;
  position: absolute;
  left: -200px;
  top: 300px;
  z-index: -1;
}
@media (width < 431px) {
  .wanm_info_inner::before {
    width: 300px;
    height: 300px;
    left: -100px;
    top: 450px;
  }
}

.wanm_info_contents {
  width: 45%;
}
@media (width < 769px) {
  .wanm_info_contents {
    width: 100%;
    padding-bottom: 50px;
  }
}
.wanm_info_contents h3 {
  color: #ED80B0;
  font-size: 25px;
  padding: 0 0 20px 0;
  font-weight: 500;
}
@media (width < 431px) {
  .wanm_info_contents h3 {
    font-size: 20px;
    padding: 0;
  }
}
.wanm_info_contents h4 {
  font-weight: normal;
  font-size: 16px;
}
.wanm_info_contents p {
  font-size: 16px;
}

.wanm_info_contents_item {
  padding-top: 20px;
}

.wanm_info_map {
  width: 50%;
  height: 400px;
}
@media (width < 769px) {
  .wanm_info_map {
    width: 100%;
    height: 300px;
  }
}
.wanm_info_map iframe {
  border-radius: 25px;
}

.page_archive_pr {
  padding: 200px 0;
}
@media (width < 769px) {
  .page_archive_pr {
    padding: 180px 0 100px 0;
  }
}

.archive_pr_wrapper {
  margin: 0 10%;
}
@media (width < 1281px) {
  .archive_pr_wrapper {
    margin: 0 5%;
  }
}

.pr_category {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 80px;
}
@media (width < 1441px) {
  .pr_category {
    gap: 40px;
  }
}
@media (width < 1281px) {
  .pr_category {
    gap: 30px;
  }
}
@media (width < 431px) {
  .pr_category {
    gap: 0;
    justify-content: space-between;
  }
}

.pr_category_title {
  position: relative;
  display: inline-block;
  padding-top: 20px;
  font-weight: 400;
}

.pr_category_title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 15px;
  width: 80px;
  height: 1px;
  background: #707070;
  transform: rotate(145deg);
}

.s-pr_category_title {
  position: relative;
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 50px;
}

.s-pr_category_title::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 100px;
  width: 90px;
  height: 1px;
  background: #707070;
  transform: rotate(145deg);
}

.news_box_child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}
@media (width < 431px) {
  .news_box_child {
    padding-top: 20px;
  }
}

.pr_news_box_inner {
  margin-top: 3%;
}
@media (width < 769px) {
  .pr_news_box_inner {
    margin-top: 10%;
  }
}

.pr_news_box_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 3%;
  gap: 80px 40px;
}

@media (width < 1101px) {
  .pr_news_box_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ====================================
ここから s-recruit main
==================================== */
/* ================== page-title ================== */
.page-title h1 {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page-title p {
  font-size: 14px;
}

/* =========== s-recruit ============= */
.s-recruit-wrapper {
  margin: 0 10%;
}
@media (width < 769px) {
  .s-recruit-wrapper {
    margin: 0 5%;
  }
}

.s-recruit {
  padding: 200px 0 100px;
}
@media (width < 431px) {
  .s-recruit {
    padding: 180px 0 100px;
  }
}

.s-recruit-job {
  font-size: 35px;
  border-bottom: 2px solid #5D5D5D;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
@media (width < 1281px) {
  .s-recruit-job {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .s-recruit-job {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .s-recruit-job {
    font-size: 25px;
  }
}

.s-recruit-company {
  font-size: 14px;
  color: #808080;
}

.s-recruit-department {
  font-size: 14px;
  margin-top: 15px;
  color: #808080;
}

.s-recruit-label {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.recruit-label-area,
.recruit-label-post {
  border: 1px solid #141414;
  padding: 2px 12px;
  font-size: 12px;
}

/* ========s-recruit-item（画像＋テキストの2カラム）=========== */
.s-recruit-item {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右半々 */
  gap: 50px;
  align-items: start;
}

.s-recruit-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========s-recruit-description（#JOB DESCRIPTIONエリア）=========== */
.s-recruit-description {
  margin-bottom: 60px;
}

.s-recruit-description h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.s-recruit-description__sub {
  font-size: 14px;
  color: #5D5D5D;
  margin-bottom: 20px;
}

.s-recruit-description__text {
  font-size: 14px;
  line-height: 1.8;
}

/* ===============================================
s-recruit-more（雇用条件・応募資格など）
=============================================== */
.s-recruit-more__item {
  padding: 40px 0; /* 24px → 40pxに */
}

.s-recruit-more__item h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
}

.s-recruit-more__item p {
  font-size: 16px;
  font-weight: medium;
  margin-bottom: 10px;
}

.s-recruit-more__sub {
  font-size: 14px;
  margin-bottom: 8px;
}

.s-recruit-more__detail {
  font-size: 14px;
  line-height: 1.8;
}

.s-recruit-more__list {
  font-size: 16px;
  line-height: 2;
}

.s-recruit-more__list li::before {
  content: "・";
}

.s-recruit-more__group {
  margin-top: 50px;
}

.s-recruit-more__group-title {
  font-size: 14px;
  margin-bottom: 8px;
  margin-right: 2rem;
}

/* ========== s-recruit  レスポンシブ ========== */
@media (width < 1100px) {
  /* s-recruit-item：2カラム → 1カラム */
  .s-recruit-item {
    grid-template-columns: 1fr;
  }
  /* 画像を先に・テキストを後に（HTMLの順番通り） */
  .s-recruit-item img {
    width: 100%;
  }
  .entry-btn-link img {
    width: 40px;
    height: 40px;
    margin-top: 0px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .img-bg-wrap {
    background: #5D5D5D;
    width: 100%;
    height: 200px;
  }
  .img-bg-wrap img {
    display: none; /* 画像を非表示 */
  }
  .s-recruit-child {
    padding: 0;
  }
}
/* ========== s-recruit レスポンシブ ========= */
@media (width < 431px) {
  /* 各項目の余白 */
  .s-recruit-more__item {
    padding: 16px 0;
    font-size: 16px;
  }
  .s-recruit-more__item p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .s-recruit-more__list {
    font-size: 12px;
    line-height: 2;
  }
  /* ENTRYバナー */
  .img-bg-wrap {
    background: #5D5D5D;
    width: 100%;
    height: 200px;
  }
  .img-bg-wrap img {
    display: none; /* 画像を非表示 */
  }
}
/* ============================================
　★★★★★ここからSYNCACE★★★★★
=============================================== */
.sa-fv {
  padding: 80px 50px 0 50px;
}
@media (width < 769px) {
  .sa-fv {
    padding: 60px 25px 0 25px;
  }
}
@media (width < 431px) {
  .sa-fv {
    padding: 50px 15px 0 15px;
  }
}

.sa-fv__wrapper {
  width: 100%;
}

.sa-fv__hero-pc_hero {
  position: relative;
  width: auto;
  height: 850px; /* 固定の高さ */
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  margin: 16px 16px 0;
}

.sa-fv__hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sa-fv__label {
  width: 250px;
  margin-bottom: 16px;
  display: block;
}

.sa-fv__title {
  position: absolute;
  bottom: 15%;
  left: 5%;
  transform: none;
  color: #fff;
}

.sa-fv__title h1 {
  font-size: 70px;
  line-height: 6rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 10px;
}
@media (width < 769px) {
  .sa-fv__title h1 {
    line-height: 3rem;
  }
}
@media (width < 431px) {
  .sa-fv__title h1 {
    line-height: 2.5rem;
  }
}

.sa-fv__title h2 {
  font-size: 30px;
  margin-bottom: 15px;
  margin-left: -1rem;
}

.sa-fv__title p {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sa-fv__hero-pc_hero {
    height: 700px; /* モバイル用の固定高さ */
    margin: 16px 0px 16px;
    border-radius: 20px;
  }
  .sa-fv__label { /* 画像表示しない指示 */
    display: none;
  }
  .sa-fv__title {
    bottom: 8%;
    left: 5%;
  }
  .sa-fv__title h1 {
    font-size: 28px;
  }
  .sa-fv__title h2 {
    font-size: 14px;
    margin-right: 1rem;
  }
  .sa-fv__title p {
    font-size: 11px;
    line-height: 1.2;
  }
}
/* ====================　about ==================== */
.sa-about {
  padding: 200px 40px;
  background: #fff;
}
@media (width < 769px) {
  .sa-about {
    padding: 60px 0 100px 0;
    background-color: #F8F9FA;
  }
}

.sa-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
@media (width < 1281px) {
  .sa-about__inner {
    max-width: 1000px;
  }
}

/* 左ロゴ */
.sa-about__logo {
  width: 25%;
}
@media (width < 769px) {
  .sa-about__logo {
    margin: 0 auto;
    width: 30%;
  }
}

.sa-about__logo img {
  width: 100%;
  height: auto;
}

/* 右テキスト */
.sa-about__content {
  width: 55%;
}
@media (width < 769px) {
  .sa-about__content {
    width: 100%;
    text-align: center;
  }
}

.sa-about__title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (width < 1281px) {
  .sa-about__title {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .sa-about__title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .sa-about__title {
    font-size: 20px;
  }
}

.sa-about__text {
  font-size: 16px;
  line-height: 2;
  color: #333;
}
@media (width < 1101px) {
  .sa-about__text {
    font-size: 14px;
  }
}

/* PC時は非表示 */
.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sa-about__title {
    font-size: 20px;
  }
  .sa-about__inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .sa-about__text {
    font-size: 12px;
  }
  /* SP時だけ表示 */
  .sp-br {
    display: block;
  }
}
/* =====================　#SERVICE　===================== */
.sa-services__wrapper {
  margin: 0 10%;
  padding: 0 20px;
}
@media (width < 769px) {
  .sa-services__wrapper {
    margin: 0;
  }
}
@media (width < 431px) {
  .sa-services__wrapper {
    padding: 0;
  }
}

.sa-services {
  padding: 100px 0;
  background: #F8F9FA;
}
@media (width < 431px) {
  .sa-services {
    padding: 100px 0 50px 0;
  }
}

.sa-services__inner-title-text {
  margin-bottom: 150px;
}

.sa-services__title-text h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.sa-services__title-text p {
  font-size: 14px;
  color: #5D5D5D;
  margin-bottom: 12px;
}

/* =====サービス見出しブロック====== */
.sa-services__title {
  margin-bottom: 80px;
}

.sa-services__title h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  margin: 15px 0;
  color: #111;
}

.sa-services__title p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}
@media (width < 431px) {
  .sa-services__title p {
    font-size: 12px;
  }
}

/* ======各事業コンテンツ====== */
.sa-services__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 80px auto;
  width: 100%;
}

@media (width < 431px) {
  .sa-services__inner-text {
    padding: 0 20px;
  }
}

.sa-services__contents__num {
  font-size: 13px;
  font-weight: bold;
  color: #999;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.sa-services__contents__line {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 12px 0 20px;
}

/* PC時 */
.sc-mb__img {
  display: none;
}

.sc-pc__img {
  display: block;
}

/* エネルギー事業：テキスト左・画像右 */
.sa-business__contents02 {
  flex-direction: row;
}

.sa-services__contents__img {
  width: 40%;
}
@media (width < 769px) {
  .sa-services__contents__img {
    width: 100%;
  }
}

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

/* スマホ用・PC用画像の切り替え */
.sc-mb__img {
  display: none;
}

.sc-pc__img {
  display: block;
}

.sa-business__contents__title,
.sa-services__contents__title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sa-services__contents__text h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 11px;
  color: #111;
}
@media (width < 1281px) {
  .sa-services__contents__text h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .sa-services__contents__text h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .sa-services__contents__text {
    width: 100%;
  }
}
.sa-services__contents__text h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}
@media (width < 769px) {
  .sa-services__contents__text h4 {
    font-size: 16px;
  }
}

.sa-services__contents__inner-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.05em;
  color: #656565;
  margin-bottom: 12px;
}
@media (width < 431px) {
  .sa-services__contents__inner-text {
    font-size: 12px;
  }
}

/* チェックリスト（アライアンス事業） */
.sa-services__contents__more {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
}

.sa-services__contents__more li {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 3;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.sa-services__contents__more li img {
  width: 18px;
  height: 18px;
}

/* =====Good光ブロック===== */
.sa-services__good {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 431px) {
  .sa-services__good {
    padding: 0 20px;
  }
}

.sa-services__good__inner {
  background: #fff;
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  width: 100%;
  margin-bottom: 15%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media (width < 769px) {
  .sa-services__good__inner {
    padding: 60px 25px;
  }
}

.sa-good__title img {
  height: 60px;
  margin-bottom: 16px;
}

.sa-good__text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 12px;
}

.sa-good__text p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}
@media (width < 769px) {
  .sa-good__text p {
    font-size: 12px;
  }
}

/* 3つのアイコンボックス */
.sa-good__item {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 5% 10%;
}
@media (width < 1101px) {
  .sa-good__item {
    padding: 5%;
  }
}
@media (width < 769px) {
  .sa-good__item {
    display: block;
  }
}

.sa-good__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.sa-good__box__img img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width < 1281px) {
  .sa-good__box__img img {
    width: 100px;
    height: 100px;
  }
}

.sa-marker {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  z-index: 1;
}
@media (width < 1281px) {
  .sa-marker {
    font-size: 16px;
  }
}

.sa-marker::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 1px;
  width: 120%;
  height: 6px;
  background: rgba(253, 156, 0, 0.5);
  z-index: -1;
}

/* CTAボタン */
.sa-ctabtn {
  display: inline-block;
  padding: 15px 100px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.2rem;
}
@media (width < 431px) {
  .sa-ctabtn {
    padding: 15px 40px;
  }
}

.sa-ctabtn:hover {
  opacity: 0.8;
}

.sa-good__btn {
  background: #e91e8c;
  color: #fff;
}

@media (max-width: 768px) {
  /* この指示を追加 */
  .sc-mb__img {
    display: block;
  }
  .sc-pc__img {
    display: none;
  }
  .mb__br {
    display: block;
  }
  .sa-services__inner-title-text {
    margin: 0 auto;
    padding: 0 20px;
  }
  .sa-services__contents__inner-text {
    font-size: 11px;
    letter-spacing: -0.05em;
    line-height: 3;
  }
  .sa-services__title {
    margin-bottom: 48px;
  }
  .sa-services__title h3 {
    font-size: 20px;
    margin: 50px 0 30px 0;
    letter-spacing: -0.06em;
  }
  /* 全事業：縦並び・画像が上 */
  .sa-services__contents {
    flex-direction: column;
  }
  .sa-services__contents__img {
    flex: none;
    max-width: 100%;
    order: -1;
  }
  .sa-services__contents__img img {
    width: 100%;
    height: auto;
  }
  .sa-business__contents02 {
    flex-direction: column;
  }
}
.sc-tele-sp {
  display: none;
}

.sa-good__box {
  margin-bottom: 50px;
}

/* =====#POINT セクション===== */
.sa-point {
  padding: 80px 0 150px 0;
  background: #fff;
}
@media (width < 769px) {
  .sa-point {
    padding: 80px 0 100px 0;
  }
}

.sa-point-item {
  margin: 0 10%;
  padding: 0 40px;
}
@media (width < 769px) {
  .sa-point-item {
    margin: 0;
  }
}

/* 上部：#POINTラベル ＋ 見出しテキスト横並び */
.sa-point-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 80px;
}

/* 左：#POINT ラベル */
.sa-point-description {
  margin-bottom: 30px;
}

.sa-point-description h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.sa-point-description__sub {
  font-size: 14px;
  color: #5D5D5D;
  margin-bottom: 12px;
}

/* 右：見出し＋テキスト */
.sa-point-more__item h3 {
  font-size: 35px;
  font-weight: bold;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (width < 1281px) {
  .sa-point-more__item h3 {
    font-size: 30px;
  }
}
@media (width < 1101px) {
  .sa-point-more__item h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .sa-point-more__item h3 {
    font-size: 20px;
  }
}

.sa-point-more__item p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}
@media (width < 1101px) {
  .sa-point-more__item p {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .sa-point-more__item p {
    font-size: 12px;
  }
}

/* ======= 3カード ========== */
.sa-point-cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  margin: 0 3%;
}

.sa-point-card {
  flex: 1;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 40px 30px 40px;
}

.sa-point-card__num {
  display: block;
  font-size: 75px;
  font-weight: bold;
  color: #111;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.sa-point-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 14px;
}

.sa-point-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
@media (width < 431px) {
  .sa-point-card__text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .sa-point-item {
    padding: 0 20px;
  }
  .sa-point-child {
    margin-bottom: 60px; /* 数字はみ出し分を確保 */
  }
  .sa-point-cards {
    display: block;
    margin: 0;
  }
  .sa-point-card {
    position: relative;
    overflow: visible;
    padding: 28px 24px;
    text-align: center;
    width: 100%;
  }
  .sa-point-card__num {
    display: block; /* ← spanに必要 */
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    white-space: nowrap; /* 数字が折り返さないように */
  }
  .sa-point-card__num {
    font-size: 40px;
  }
  .sa-point-card__title {
    font-size: 20px;
    margin-top: 15px;
  }
  .sa-point-card + .sa-point-card {
    margin-top: 60px;
  }
}
/* =======CONNECTIONセクション============== */
.sa-connection {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 背景写真 */
.sa-connection__bg-img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 80vh;
}

.sa-connection__inner {
  position: relative;
}

/* CONNECTION 文字画像 */
.sa-connection__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
  pointer-events: none;
}

/* キャッチコピー */
.sa-connection__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.05em;
  z-index: 3;
  text-align: center;
}
@media (width < 1101px) {
  .sa-connection__catch {
    font-size: 25px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .sa-connection__bg-img {
    height: 300px;
  }
  .sa-connection__bg-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sa-connection__catch {
    font-size: 20px;
    left: 20;
    width: 100%;
    box-sizing: border-box;
  }
}
/* =====ニュースセクション======= */
/* sa-お知らせ */
.sa_news_box {
  background: linear-gradient(135deg, #5D5D5D 100%);
}

.sa-news-color {
  color: #fff;
}

/* 各下層P-お知らせ */
.news_box {
  padding: 7% 0;
}

@media (width < 769px) {
  .news_box {
    padding: 15% 0;
  }
}
.news_box_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

@media (width < 1281px) {
  .news_box_wrapper {
    margin: 0 5%;
  }
}
.news_box_img {
  width: 100%;
  height: auto;
}
@media (width < 431px) {
  .news_box_img {
    height: 95px;
  }
}

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

.news_date {
  font-size: 12px;
  padding: 10px 0 0 0;
}

.news_title {
  font-size: 16px;
}
@media (width < 431px) {
  .news_title {
    font-size: 14px;
  }
}

.news_more_btn {
  font-size: 12px;
  text-align: right;
  padding-top: 20px;
}

/* ============================================
　★★★★★ここからprivasypolicy★★★★★
=============================================== */
.privacy-contents-item:first-child {
  padding-bottom: 30px;
}

.page_privacy {
  padding: 200px 0 100px 0;
}
@media (width < 431px) {
  .page_privacy {
    padding: 180px 0 100px 0;
  }
}

.child_page_title h1 {
  font-size: 25px;
  letter-spacing: 0.1em;
}

.child_page_title p {
  font-size: 16px;
}

.child_page_title-text {
  font-size: 14px;
  padding-bottom: 80PX;
  margin-bottom: 200px;
}

@media (max-width: 431px) {
  .child_page_title h1 {
    font-size: 25px;
  }
}
.privacy-contents {
  padding-top: 100px;
}
@media (width < 431px) {
  .privacy-contents {
    padding-top: 70px;
  }
}

.privacy-wrapper {
  margin: 0 10%;
}

@media (width < 769px) {
  .privacy-wrapper {
    margin: 0 5%;
  }
}
/* ============================================
　★★★★★ここからpress-release★★★★★
=============================================== */
.s-pr {
  padding: 200px 0 200px 0;
}

.s-pr_wrapper {
  margin: 0 5%;
}

.s-pr-inner {
  margin: 0 5%;
}
@media (width < 431px) {
  .s-pr-inner {
    margin: 0;
  }
}

.s-pr-contents {
  max-width: 1100px;
  margin: 0 200px;
}

.s-pr-title {
  padding-bottom: 50px;
}
.s-pr-title p {
  font-size: 16px;
  padding-bottom: 8px;
  padding-left: 3px;
}
.s-pr-title h3 {
  font-size: 25px;
  padding-bottom: 8px;
}
.s-pr-title h4 {
  font-size: 14px;
  color: #C4C4C4;
  font-weight: normal;
  padding-left: 3px;
}

.s-pr_contents_img {
  width: 100%;
  padding: 50px 0;
}
.s-pr_contents_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.s-pr_pagebtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15% 0 0 0;
}
.s-pr_pagebtn a {
  color: #000;
}

.pr_category {
  display: flex;
}

@media (max-width: 1100px) {
  .s-pr-contents {
    margin: 0;
  }
}
@media (max-width: 431px) {
  .s-pr_pagebtn {
    padding: 20% 0 0 0;
  }
}
.s-pr_category_title {
  position: relative;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 50px;
  letter-spacing: 0.1em;
}

.s-pr_category_title::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 100px;
  width: 120px;
  height: 1px;
  background: #707070;
  transform: rotate(145deg) translateY(-10px);
}

@media (width < 431px) {
  .s-pr_category_title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    padding-bottom: 70px;
    letter-spacing: 0.1em;
  }
  .s-pr_category_title::before {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 40px;
    width: 140px;
    height: 1px;
    background: #707070;
    transform: rotate(145deg) translateY(-10px);
  }
  .s-pr-title {
    padding: 50px 0;
  }
}
.hidden-fields-container{
	display: none;
}
/*# sourceMappingURL=style.css.map */