/*!
Theme Name: NINE
Theme URI: https://example.com/
Author: isao sudo
Description: ベースCSS（NINEテーマ用）
Version: 1.0.0
License: GNU General Public License v2 or later
*/

/***************************************************/
/* RESET & BASE */
/***************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

.debug * {
  outline: 1px solid rgba(0, 150, 255, 0.2);
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  background: #fff;
  overflow-x: hidden;
  cursor: auto;
}

@media screen and (max-width: 499px) {
  body {
    font-size: 14px;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

/***************************************************/
/* FONT (Noto + Poppins) */
/***************************************************/
@font-face {
  font-family: "Noto Sans JP";
  src: url("font/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("font/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.antonio {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/***************************************************/
/* HEADING / TEXT BASE */
/***************************************************/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

p {
  line-height: 1.8;
}

/***************************************************/
/* LAYOUT WRAPPER */
/***************************************************/
.wrapper {
  position: relative;
  flex: 1;
}

.main_all,
.main980,
.main1440 {
  width: 100%;
  margin: 0 auto;
  padding: 100px 50px;
  position: relative;
}

.main980 {
  max-width: 980px;
}
.main1440 {
  max-width: 1440px;
}
.pt0 {
  padding-top: 0!important;
}
.pb0 {
  padding-bottom: 0!important;
}

@media screen and (max-width: 980px) {
  .main980,
  .main1440 {
    padding: 60px 30px;
  }
}

@media screen and (max-width: 499px) {
  .main980,
  .main1440 {
    padding: 40px 15px;
  }
}

.wrapper01,
.wrapper02,
.wrapper03 {
  width: 100%;
  overflow: hidden;
}
.wrapper01 {
  border-radius: 0 0 80px 0;
}
.wrapper02 {
  border-radius: 80px 0 80px 0;
}
.wrapper03 {
  border-radius: 80px 0 0 0;
}

/***************************************************/
/* UTILITY CLASSES */
/***************************************************/

/* ===============================
   HEADER
=============================== */
/* ===============================
   共通ヘッダー基本設定
=============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-inner {
  margin: 0 auto;
  padding: clamp(6px, 1.2vw, 12px) clamp(10px, 2vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  min-height: 60px !important;
  position: relative;
  z-index: 99;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* ===============================
   通常ページ（TOP以外）
=============================== */
.site-header:not(.top-header) .header-inner {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header:not(.top-header) .header-nav a {
  color: #1a1a1a;
}

.section-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: clamp(20px, 5vw, 40px);
  text-align: right;
}
.title-font {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.4;
}
.normal_text {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500 !important;
  line-height: 2;
}
.normal_text_bold {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500 !important;
  line-height: 2;
}
.sub-title-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  flex-wrap: wrap;
}
.title-font_sub {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
}
.w-btn {
  width: calc(100% - 250px);
}
.title_sub-btn {
  width: 200px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-align: center;
  background: #fff;
  color: #1a9950;
  padding: clamp(5px, 1vw, 10px);
  border-radius: 100px;
  border: 2px solid #fff;
  transition: all 0.2s ease;
}

@media (max-width: 599px) {
  .w-btn {
    width: 100%;
  }
}

.title_sub-btn:hover {
  background: #1a9950;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===============================
   TOPページ：初期（透明ヘッダー）
=============================== */
.top-header .header-inner {
  background: transparent;
}

.top-header .header-nav a {
  color: #fff;
  transition: color 0.4s ease;
}
.top-header .header-logo-w {
	display:block;
}
.top-header .header-logo {
	display:none;
}

.top-header .sp_menu1,
.top-header .sp_menu2,
.top-header .sp_menu3 {
  background: #FFF;
}

/* ===============================
   TOPページ：スクロール後
=============================== */
.top-header.scrolled .header-inner {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.top-header.scrolled .header-nav a {
  color: #1a1a1a;
}

.top-header.scrolled .header-logo-w {
	display:none;
}
.top-header.scrolled .header-logo {
	display:block;
}
.top-header.scrolled .sp_menu1,
.top-header.scrolled .sp_menu2,
.top-header.scrolled .sp_menu3 {
  background: #006cb8;
}


/* ===============================
   ロゴ共通
=============================== */
.header-logo-w {
	display:none;
}
.header-logo-w img,
.header-logo img {
  height: 35px;
  width: auto;
}
.footer-logo img {
  height: 35px;
  width: auto;
}

/* ナビ */
.header-nav ul {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
	font-weight:700;
  transition: all 0.3s ease;
}

.header-nav a {
  color: #fff;
  transition: all 0.3s ease;
}

.site-header.scrolled .header-inner {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled a {
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* ===============================
   SP表示
=============================== */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
    padding-right: 70px;
    height: 60px !important;
  }

.header-logo-w img,
  .header-logo img {
    height: 30px;
  }
  .footer-logo img {
    height: 25px;
  }
}
@media (max-width: 1024px) {
  .header-inner {
    padding-right: 60px;
  }
}
@media (max-width: 499px) {
  .header-inner {
    gap: 5px !important;
    height: 50px !important;
    padding: clamp(3px, 1.2vw, 12px) clamp(5px, 2vw, 30px);
    padding-right: 60px;
  }

  .btn-entry {
    padding: clamp(8px, 1.2vw, 5px) clamp(5px, 2.5vw, 10px);
    font-size: clamp(14px, 2vw, 14px);
  }
}

@media (max-width: 499px) {
.header-logo-w img,
.header-logo img {
  height: 25px;
}
  .footer-logo img {
	  width:100%;
    height: auto;
  }
}

.sp_menu {
    width: 50px;
    height: 50px;
  top: 5px;
  right: 5px;
  position: fixed;
  z-index: 999;
  display: none;
  overflow: hidden;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .sp_menu {
    display: block;
  }
}
@media screen and (max-width: 499px) {
  .sp_menu {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 10px;
  }
}

.sp_menu1 {
  width: 40px;
  height: 3px;
  position: absolute;
  top: 12px;
  left: 5px;
}
.sp_menu2 {
  width: 40px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.sp_menu3 {
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 12px;
  left: 5px;
}
.sp_menu1,
.sp_menu2,
.sp_menu3 {
  transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out; /* opera */
  -moz-transition: all 0.2s ease-out; /* firefox */
  -webkit-transition: all 0.2s ease-out; /* chrome, safari */
  -ms-transition: all 0.2s ease-out; /* ie */
  background: #006cb8;
  border-radius: 3px;
}

.menuclick1 {
  width: 45px;
  top: 23px;
  left: 2.5px;
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.menuclick2 {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menuclick3 {
  width: 45px;
  top: 23px;
  left: 2.5px;
  -moz-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

/* ===============================
   スマホメニュー
=============================== */
.menuBoxGreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* メニュー本体（ここがふわっと出る） */
.menuBoxoff {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 5px !important;
  padding-top: 75px !important;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* 表示時 */
.menuBoxGreen.menuBoxGreen_open {
  pointer-events: auto; /* 表示時はクリック可能に */
}

.menuBoxGreen.menuBoxGreen_open .menuBoxoff {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 499px) {
  .menuBoxoff {
    padding: 20px;
  }
}

/* ===============================
   メインナビゲーション
=============================== */
.menu-nav ul {
  list-style: none;
  margin: 0 0 clamp(20px, 4vw, 40px) 0;
  padding-top:30px;
}

/* 親項目全体 */
.menu-item {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  line-height: 1;
  transition: border 0.2s ease;
}

/* メインリンク */
.menu-item a {
  color: #FFF!important;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  text-decoration: none;
  flex: 1;
  line-height: 1.4;
  transition: color 0.2s ease;
  padding: 16px 0;
}

/* ===============================
   募集要項ボタン群
=============================== */
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-links a {
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  transition: 0.25s;
}

.menu-links .guide {
  background: #3b3b3b;
  font-size: clamp(17px, 2.4vw, 21px);
  transition: background 0.3s ease;
}

.menu-links .guide:hover {
  background: #000;
}

/* ENTRYボタン（グラデスライドアニメ） */
.menu-links .entry-large {
  background: linear-gradient(to right, #2e8b30, #f8c400);
  background-size: 200% auto; /* ← スライド用 */
  background-position: left center;
  font-size: clamp(17px, 2.4vw, 21px);
  transition: background-position 0.5s ease, box-shadow 0.3s ease,
    opacity 0.3s ease;
}

/* ENTRY hover：グラデーションが右に流れて光る */
.menu-links .entry-large:hover {
  background-position: right center;
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(248, 196, 0, 0.4);
}

/* ===============================
   フッターリンク
=============================== */
.menu-footer {
  margin-top: auto;
  text-align: left;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  margin-top: clamp(25px, 4vw, 40px);
}

.menu-footer a {
  display: block;
  color: #3b3b3b;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.25s;
}

.menu-footer a:hover {
  opacity: 0.7;
}

/* ===============================
   HERO
=============================== */
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url("img/top-image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  mix-blend-mode: multiply;
  background: #00000020;
}

.hero-content {
  position: absolute;
  bottom: 10%;
  left: 3%;
  z-index: 3;
  color: #fff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  width: 95%;
  max-width: 780px;
}

.hero-copy {
  font-size: clamp(21px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding-top: clamp(14px, 2vw, 20px);
}
.br768 {
  display: none;
}

.br_copy2 {
  display: none;
}
@media (max-width: 980px) {
  .hero {
    background-image: url("img/top-image_sp.jpg");
  }
  .hero-content {
    bottom: 15%;
    left: 0%;
    padding: 10px;
    width: 100%;
  }
}
@media (max-width: 499px) {
  .br768 {
    display: block;
  }
}

/* ===============================
   info
=============================== */
.info-section {
  background: #f8f8f8;
}

.info-inner {
  margin: 0 auto;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px) clamp(10px, 3vw, 30px);
  display: flex;
  gap: 20px;
  align-items: center;
	justify-content:space-between;
}
.info-inner-single {
  margin: 0 auto;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px) clamp(10px, 3vw, 30px);
  display: flex;
  gap: 20px;
  align-items: center;
	justify-content:space-between;
  flex-direction: column;
}

/* 左側タイトル */
.info-titlebox {
	width:230px;
}

.main-jp {
  font-size: clamp(21px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1;
  padding-bottom: clamp(2px, 1vw, 5px);
}
.info-jp {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1;
  padding-bottom: clamp(2px, 1vw, 5px);
}

.info-en {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
  margin-bottom: clamp(16px, 3vw, 24px);
}
.main-en {
  font-size: clamp(32px, 4.8vw, 48px);
  line-height: 1;
  margin-bottom: clamp(16px, 3vw, 24px);
}
@media (max-width: 980px) {
.info-jp {
  font-size: clamp(21px, 2.8vw, 28px);
}
.info-inner {
  border: 1px solid #ddd;
	}
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d47a1;
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 18px);
	padding: clamp(4px, 2vw, 10px) clamp(15px, 3vw, 25px);
  border-radius: 3px;
  text-decoration: none;
  transition: 0.3s;
	min-width:150px;
}

.btn-more:hover {
  background: #002f6c;
}





/* 右側リスト */
.info-list {
	width:calc(100% - 230px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}

.info-date {
  font-weight: 700;
  min-width: 100px;
}


.info-text a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  font-size: clamp(14px, 1.4vw, 18px);
}

.info-text a:hover {
  opacity: 0.7;
}

/* スマホ */
@media (max-width: 980px) {
  .info-inner {
	  flex-direction: column;
	  padding: clamp(10px, 4vw, 20px) clamp(5px, 3vw, 24px);
  }
  .info-titlebox {
	  flex: 0;
	  width:100%;
	  text-align: left;
	  display: flex;
	  align-items: center;
	  justify-content:space-between;
	  padding:0;
  }
	.title_inner {
		width:260px;
	}
	.info-list {
		width:100%;
	}
	.btn-more {
		min-width:100px;
	}
	.info-item {
		flex-direction: column;
		justify-content:flex-start;
		gap: 0px;
	}
	.info-inner_inner {
		width:100%;
		display: flex;
		align-items: center;
		justify-content:flex-start;
	}
	.info-date {
		min-width: auto;
		width:100%;
	}
	.info-text {
		padding-left:0;
	}
}


.message-section {
  display: flex;
  align-items: flex-start;
	justify-content:space-between;
  gap: 40px;
  margin: 0 auto;
}

@media (max-width: 768px) {
.message-section {
  flex-direction: column;
  gap: 0;
	}
}

.sign {
  text-align: right;
  margin-top: 32px;
  font-weight: 500;
	padding-top:10px;
}

/* ===============================
   service
=============================== */
/* ===== セクション背景 ===== */
.service-section {
  background: #FFF;
}

/* ===== カード ===== */
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.work-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.service-single {
  display: grid;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
	justify-content:flex-start;
	max-width:1440px;
	margin:0 auto;
}

/* ===== 画像 ===== */
.service-media {
  margin: 0;
  border-radius: 20px;
	overflow:hidden;
  aspect-ratio: 1 / 1;
	position:relative;
}
.work-media {
  margin: 0;
	overflow:hidden;
  aspect-ratio: auto;
  border-radius: 20px;
	overflow:hidden;
	border:1px solid #ccc;
	padding:10px;
}
.work-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.95);
}
.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
  border-radius: 20px;
  filter: saturate(0.95);
}
.work-flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

/* ===== テキスト側 ===== */
.service-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vw, 16px);
}


/* 英語大見出し（青） */
.sub-en {
  margin: 0;
  font-weight: 900;
  line-height: 1.1;
  font-size: clamp(32px, 5.5vw, 78px);
	padding:0;
}
@media (max-width: 980px) {
.sub-en {
  font-size: clamp(40px, 6vw, 78px);
	}
}

/* リード */
.srv-lead {
  margin: clamp(8px, 1.5vw, 12px) 0 0;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  font-size: clamp(20px, 2.2vw, 32px);
}



/* 本文 */
.srv-body p {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  line-height: 1.9;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #222;
}

/* CTA */
.srv-cta {
  margin-top: clamp(8px, 2vw, 24px);
  display: flex;
  justify-content: flex-end; /* 右下寄せ */
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #0d47a1;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: clamp(10px, 1.5vw, 14px) clamp(18px, 2.5vw, 32px);
  font-size: clamp(14px, 1.4vw, 16px);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 16px rgba(13,71,161,.18);
}
.btn-more:hover {
  transform: translateY(-1px);
  opacity: .9;
}

/* ===== スマホ（縦並び） ===== */
@media (max-width: 980px) {
  .service-inner {
    grid-template-columns: 1fr;
  }

.work-inner {
    grid-template-columns: 1fr;
  gap: clamp(5px, 1.8vw, 10px);
}
  /* CTAは中央に */
  .srv-cta {
    justify-content: center;
  }
  .srv-en {
    /* スマホでバランス良く */
    font-size: clamp(34px, 10vw, 56px);
  }
.btn-more {
  padding: 10px;
  font-size: clamp(18px, 2.5vw, 28px);
}
	.btn-more2 {
		padding:10px 30px;
	}
}





/* ===============================
   company
=============================== */

.company-section {
  background: #FFF;
	position:relative;
}

.company-inner {
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px) clamp(10px, 3vw, 30px);
  display: flex;
  gap: 20px;
  align-items: center;
	justify-content:space-between;
	aspect-ratio:16/6;
background:url("img/company_bg.jpg") center/cover no-repeat;
}
@media (max-width: 980px) {
	.company-inner {
	aspect-ratio:16/9;
	}
}

@media (max-width: 499px) {
	.company-inner {
	aspect-ratio:4/3;
	}
}


.company-inner:hover .btn-more{
  background: #002f6c;
  transform: translateY(-1px);
  opacity: .9;
}


/* ===============================
   contact
=============================== */

.contact-section {
  background: #065da4;
	position:relative;
}
.contact-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
	justify-content:center;
  flex-direction: column;
	aspect-ratio:16/3;
	padding-bottom:20px;
	max-height:20vh;
}

@media (max-width: 980px) {
	.contact-inner {
	max-height:25vh;
	}
}




/* ===============================
   single
=============================== */

.service-lead,
.company-lead {
	padding:3vw;
	text-align:left;
	margin:0 auto;
	aspect-ratio:19/6;
	background:url("img/service-single.jpg") center /cover no-repeat;
	position:relative;
}
.company-lead {
	background:url("img/company-single.jpg") center /cover no-repeat;
}
.gra-white {
  pointer-events: none; /* 必要に応じて */
  position: absolute;   /* 背景としてかぶせる場合 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.service-lead-text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: .02em;
  font-size: clamp(28px, 3vw, 30px);
	max-width:700px;
	text-align:left;
	margin:0 auto;
	position:relative;
  text-shadow:
    0 0 4px rgba(255,255,255,0.9),
    0 0 8px rgba(255,255,255,0.6);
}
@media (max-width: 980px) {
.service-lead,
.company-lead {
	padding:3vw 30px;
	aspect-ratio:19/8;
	}
.service-lead-text {
  font-size: clamp(21px, 2.8vw, 28px);
  line-height: 1.8;
	}
}
@media screen and (max-width: 499px) {

.service-lead,
.company-lead {
	padding:5vw 15px;
	aspect-ratio:19/11;
	}
.service-lead-text {
  font-size: clamp(17px, 2.3vw, 23px);
	}
}



/* ===============================
   会社概要
=============================== */
.company-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}


.map-col,
.info-col {
  flex: 1 1 50%;
}

.map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 420px; /* 任意で調整 */
  border: 0;
  display: block;
}


.info-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 24px;
  column-gap: 32px;
  font-size: clamp(14px, 1.4vw, 18px);
}
.label {
  font-weight: 700;
  color: #0055aa;
  white-space: nowrap;
  font-size: clamp(14px, 1.4vw, 18px);
}

.value {
  line-height: 1.7;
  color: #222;
  font-size: clamp(14px, 1.4vw, 18px);
}

@media (max-width: 768px) {
  .company-wrapper {
    flex-direction: column;
	  gap: 30px;
  }
  .map-col,
  .info-col {
    flex: 1 1 100%;
    width: 100%;
  }
  .map-col iframe {
    min-height: 250px;
  }
.info-grid {
  grid-template-columns: 70px 1fr;
	}
}


/* ===============================
   process
=============================== */
/* ========================
   全体レイアウト（PC）
======================== */
.flow-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0;
}

/* 各アイテム */
.flow-item {
  width: 23%;
  text-align: center;
  position: relative;
}
.flow-icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
	background:#f8f9f8;
	border-radius:20px;
	padding:30px;
}

/* アイコン画像 */
.flow-icon img {
  width: 80%;
	max-width:150px;
  aspect-ratio: 1/1;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	
}

.flow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 25px solid #0073c8;
}
.flow-item:last-child .flow-icon::after {
	display:none;
}

/* ========================
   テキスト部分
======================== */

/* 数字とタイトルを横並びにする！ */
.flow-title-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.flow-num {
	font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #0073c8;
  margin: 0;
}

.flow-title {
	font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  margin: 0;
}

.flow-desc {
  margin-top: 5px;
	font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
  text-align: left;
}



/* ========================
   スマホ（縦並び）
======================== */
@media screen and (max-width: 768px) {

  .flow-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .flow-item {
    width: 100%;
    display: flex;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
  }
	.flow-icon {
		width:30%;
	}
	.flow-text {
		width:calc(70% - 20px);
	}
	
.flow-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
    border-top: 20px solid #0073c8;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: none;
}
.flow-item:last-child .flow-icon::after {
	display:none;
}
	

  /* アイコン縮小 */
  .flow-icon img {
  width: 80%;
	max-width:100px;
  }

  /* スマホは矢印非表示（崩れ防止） */
  .flow-item::after {
    display: none;
  }

  .flow-title-row {
    justify-content: flex-start;
	  margin-top:0;
  }
}

@media screen and (max-width: 499px) {
  .flow-icon img {
  width: 80%;
	max-width:60px;
  }
}



/* ===============================
   footer
=============================== */
/* 全体 */
.site-footer {
  background: #232323;
  color: #fff;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 18px;
}

/* 上段 */
.footer-main {
  margin-bottom: 40px;
}

/* 会社名 */
.footer-logo {
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
}

/* 住所など */
.footer-address {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.9;
	margin:10px 0;
}

/* 電話番号 */
.footer-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
	line-height:1;
}

.footer-tel a {
  color: #fff;
  text-decoration: none;
	display:block;
	padding-bottom:5px;
}

.footer-tel a:hover {
  opacity: 0.8;
}

.footer-tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.footer-tel-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* 下段 */
.footer-bottom {
  border-top: 1px solid #2c2f2f;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* スマホ */
@media (max-width: 768px) {
  .footer-main {
    margin-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 12px;
  }

.footer-tel-icon {
  width: 23px;
  height: 23px;
}
  .footer-links {
    gap: 18px;
  }

  .footer-logo {
    letter-spacing: 0.08em;
  }
}





/* ===============================
   entry
=============================== */
.contact_form {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0;
}
.formA {
  box-sizing: border-box;
  width: 200px;
  flex-basis: 200px;
  font-size: 16px !important;
  line-height: 1.5;
  padding-top: 10px;
}
.formB {
  box-sizing: border-box;
  width: calc(100% - 200px);
  flex-basis: calc(100% - 200px);
}
@media screen and (max-width: 599px) {
  .formA {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 5px;
    font-size: 16px;
  }
  .formB {
    width: 100%;
    flex-basis: 100%;
  }
}
.haveto,
.any {
  box-sizing: border-box;
  font-size: 12px;
  padding: 1px 5px 3px 5px;
  color: #fff;
  border-radius: 2px;
  margin-left: 5px;
  position: relative;
  font-weight: 400;
}
.haveto {
  background: #aa3333;
}

.multistep_display {
  width: 100%;
  height: auto !important;
  line-height: 1.2;
  padding: 10px;
  font-weight: 500;
  color: #232323;
  font-weight: 500;
  border: none;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 5px;
	min-height:45px;
}


.wpcf7 input[name="your_name"],
.wpcf7 input[name="your_furi"],
.wpcf7 input[name="your_year"],
.wpcf7 input[name="your_address"],
.wpcf7 input[name="your_email"],
.wpcf7 input[name="your_email-confirm"],
.wpcf7 input[name="your_tel"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: auto !important;
  line-height: 1.2;
  padding: 10px;
  font-weight: 500;
  color: #232323;
  font-weight: 500;
  border: none;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 5px;
}
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  padding: 10px;
}

input[type="date"]::-webkit-date-and-time-value {
  color: #232323;
  padding: 10px;
  font-size: 16px;
}

.wpcf7 textarea[name="your_gakureki"],
.wpcf7 textarea[name="your_shikaku"],
.wpcf7 textarea[name="your_shokureki"],
.wpcf7 textarea[name="your_appeal"],
.wpcf7 textarea[name="your_question"] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100% !important;
  height: 120px !important;
  padding: 10px;
  font-weight: 500;
  border: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
}

.your_job {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  height: 45px !important;
  line-height: 45px;
  font-weight: 500;
  color: #232323;
  padding: 0 10px;
  font-weight: 500;
  border: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px !important;
  background: #ffffff;
  font-weight: 500;
}
.wpcf7 select[name="your_cat"] {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  height: 45px !important;
  line-height: 45px;
  font-weight: 500;
  color: #232323;
  padding: 0 10px;
  font-weight: 500;
  border: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px !important;
  background: #ffffff;
  background-image: url(img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 18px 15px;
  background-position: right 10px center;
  font-weight: 500;
}
.line16 {
  line-height: 1.6;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
span.wpcf7-list-item {
  position: relative;
  margin: 0 50px 0 0 !important;
  min-width: 180px;
}
.wpcf7-list-item-label {
  color: #232323;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.wpcf7-list-item-label:before {
  position: relative;
  content: "";
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -3px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  text-align: left;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(img/check.svg) no-repeat center;
  background-size: contain;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: #fff;
}


/* ====== CF7 submit ボタンのデザイン ====== */
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
	max-width:400px;
  height: 60px;
  font-size: 21px;
  font-weight: 700;
  border-radius: 30px;
  color: #fff;
  background: #006cb8;
  border: 2px solid #006cb8;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 599px) {
	.wpcf7-submit {
		max-width:300px;
		max-width:300px;
		height: 55px;
		font-size: 21px;
	}
}

.wpcf7-submit:hover {
  background: #006cb8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ====== Multi-Step 戻るボタン ====== */
.wpcf7-previous {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
	max-width:400px;
  height: 60px;
  font-size: 21px;
  font-weight: 700;
  border-radius: 30px;
  color: #006cb8;
  background: #ffffff;
  border: 2px solid #006cb8;
  cursor: pointer;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.wpcf7-previous:hover {
  background: #006cb8;          /* hoverで反転 */
  color: #ffffff;
  transform: translateY(-2px);
}
@media screen and (max-width: 599px) {
	.wpcf7-previous {
		max-width:300px;
		height: 55px;
		font-size: 21px;
		margin-top:10px;
	}
}





.flex-center p {
  display: contents;
}


.policy-box h2 {
	width:100%;
	padding:clamp(16px, 2vw, 19px) 0;
  line-height: 1.9;
  font-size: clamp(18px, 2.8vw, 28px);
  color: #006cb8;
	font-weight:700;
}
.policy-box p {
	width:100%;
	padding:clamp(16px, 2vw, 19px) 0;
  line-height: 1.9;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #222;
}
.policy-box ol,
.policy-box ul {
	width:100%;
  line-height: 1.9;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #222;
}
.policy-box ol li,
.policy-box ul li {
	width:100%;
	padding:5px 0;
}
.wid100 {
	width:100%!important;
}
@media screen and (max-width: 599px) {
.policy-box p {
	padding:clamp(8px, 2vw, 12px) 0;
}
}


/* ===============================
   info
=============================== */

.info-pagination {
  width: 100%;
  display: flex;
  justify-content: center; /* ← 中央揃え */
  align-items: center;
  margin-top: 40px;
  text-align: center;
	gap:5px;
}


.info-pagination .page-numbers {
  width: 36px;       /* ← 正方形サイズ（好みに調整可） */
  height: 36px;      /* ← 正方形 */
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;     /* 中央揃えにするために flex 使用 */
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #333;
  text-decoration: none;
	background:#FFF;
}

.info-pagination .current {
  background: #0073c8;
  color: #fff;
  border-color: #0073c8;
}




.single-info-section {
  padding: 60px 0;
}

.single-info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.single-info-header {
	width:100%;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 24px;
}

.single-info-date {
	width:100%;
  font-size: 18px;
  color: #0073c8;
  margin-bottom: 8px;
}

.single-info-title {
	width:100%;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
}

.single-info-content {
	width:100%;
  padding: 20px 0;
  line-height: 1.8;
  font-size: 16px;
}
.single-info-content p {
  padding: 10px 0;
}

.single-info-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.single-info-back {
	width:100%;
  margin-top: 40px;
  text-align: center;
}

.back-link {
  display: inline-block;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.back-link:hover {
  background: #333;
  color: #fff;
}


.min-h {
	min-height:60vh
}
/* ===============================
   basic
=============================== */

.flex-column {
  flex-direction: column;
}

.index9 {
  z-index: 9;
}
.opa06 {
  opacity: 0.6;
}
.bg_white {
  background: #fff;
}
.bg_blue {
  background: #169243;
}
.bg_grey {
  background: #f9f9f9;
}
.col_white {
  color: #fff;
}
.col_blue {
  color: #006cb8;
}

.forpc {
  display: flex;
}
.forsp {
  display: none;
}

@media screen and (max-width: 980px) {
  .forpc {
    display: none;
  }
  .forsp {
    display: flex;
  }
}

.link_absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 1;
}

.center {
	display:flex;
	width:100%;
	text-align:center;
	justify-content:center!important;
  flex-direction: column;
}


.m-first {
	margin-top:60px;
}
.p0 {
  padding: 0;
}
.pt0 {
  padding-top: 0;
}
.pb0 {
  padding-bottom: 0;
}
.m0 {
	margin:0;
}
.mt20 {
	margin-top:20px;
}
.mt30 {
  margin-top: clamp(10px, 4vw, 30px);
}

.radius-br {
  border-bottom-right-radius: clamp(60px, 8vw, 120px) !important;
}
.radius-tl {
  border-top-left-radius: clamp(60px, 8vw, 120px) !important;
}
