@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

:root {
    /* ベース */
  --color-bg: #ffdbed;
  --color-text: #222;
  --color-text-muted: #888;

  /* タイトル系 */
  --color-heading: #111;
  --color-section-bg:#eceeed;

  /* メインカラー */
  --color-primary: #ff4d88;
  --color-accent: #2F3E5C;
  --color-accent2: #4f9aa0;
  --color-accent3: #c6364e;

  /* UI */
  --color-border: #ccc;
  --color-border-light: #e5e5e5;

  /* テーブル */
  --color-table-bg: #f7f7f7;

  /* フッター */
  --color-footer-text: #555;
  --color-footer-hover: #aaa;

  /* 汎用 */
  --color-white: #fff;
  --color-black: #000;
  
}

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	font: 14px/1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	/* color: #111010; */
  color: var(--color-text);
	background: var(--color-bg);
}

/* a{
	color: #000000;
	text-decoration: none;
} */


a:active, a:focus,input:active, input:focus{outline:0;}



/* ヘッダー
------------------------------------------------------------*/
/* =========================
   固定ヘッダー
========================= */
#site-header{
  background: transparent;
  transition: all 0.3s ease;
}

/* スクロール後 */
#site-header.scrolled{
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner{
  min-height: 72px;
  padding: 10px 24px;
}

body{
  padding-top: 0px;
  font-size: 17px;
  font-weight: 400;
}

#content{
  width: 100%;
}

/* セクションへ飛んだときヘッダーに隠れないように */
section{
  scroll-margin-top: 90px;
}

/* =========================
   ロゴ・サイト名
========================= */
#site-header .navbar-brand{
  margin-right: 2rem;
  padding: 0;
}

.header-a{
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
}


.header-a:hover{
  text-decoration: none;
  color: inherit;
}

/* =========================
   ナビゲーション
========================= */
#site-header .navbar-nav{
  align-items: center;
}

#site-header .nav-link{
  color: var(--color-black);
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-family: monospace, "Noto Sans JP", "Meiryo", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color .3s ease;
}

#site-header .nav-link::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width .3s ease;
}

#site-header .nav-link:hover,
#site-header .nav-link.active{
  color: var(--color-primary);
}

#site-header .nav-link:hover::after,
#site-header .nav-link.active::after{
  width: calc(100% - 1.8rem);
}

/* Bootstrapのhover/focus対策 */
#site-header .nav-link:focus,
#site-header .nav-link:active,
#site-header .navbar-brand:focus,
#site-header .navbar-brand:active{
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

/* SNS */
#site-header #sns{
  margin: 0;
  padding: 0;
}

#site-header .sns-link::after{
  content: none;
}


/* フッター
------------------------------------------------------------*/
.footer {
  background: rgba(255,255,255,0.9);
  color: var(--color-black);
  padding: 30px 20px 15px;
  font-size: 14px;
}

.footer-inner {
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer-company {
  font-weight: 600;
  color: var(--color-black);
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-footer-text);
}

.footer-links a {
  color: var(--color-black);
  text-decoration: none;
  margin-left: 20px;
}

.footer-links a:hover {
  color: var(--color-footer-hover);
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 12px;
  color: var(--color-black);
}

/* 共通
------------------------------------------------------------*/
h1, h2{
	font-family: 'Noto Serif JP', 'Meiryo', sans-serif;
	letter-spacing: .1em;
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: 2px;
}

#wrapper{
  width: 100%;
}

img{
	max-width: 100%;
	height: auto;
}

section{
  clear: both;
  text-align: center;
}

section h2{
  margin: 55px auto;
}

.section-title {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin: 80px auto 40px;
    letter-spacing: 0.1em;
    padding: 1.0rem;
    background:var(--color-section-bg);
}

/* 下線 */
.section-title .line {
    display: block;
    width: 80px;          
    height: 3px;
    background: var(--color-accent);      
    margin: 15px auto;
    transition: width .3s ease;
}

/* 英語 */
.section-title .en {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 5px;
    transition: all .3s ease;
}

/* 発火状態 */
.is-active .section-title .line {
  width: 120px;
}

.is-active .section-title .en {
  color: var(--color-accent);
}

.inner{
	width: 80%;
	margin: 0 auto;
	padding-bottom: 50px;
}

#sec03 .inner,#sec04 .inner, #sec05 .inner{
	border-bottom: 1px solid var(--color-black);
}

.innerS{
	width: 60%;
	margin: 0 auto;
	padding-bottom: 80px;
	font-weight: 400;
}

.jump-btn {
  display: block;
  margin: 30px auto 0;
  font-weight: 700;
  max-width: 220px;
}

.btn-primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* SEC01 業務内容
------------------------------------------------------------*/
.col4 .img{
	margin: 0 auto;
}
.col4{
  text-align: center;
}

.col4 li{
  display: inline-block;
  width: 22%;
  padding: 0 1%;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
}

/* SEC02 Gallery
------------------------------------------------------------*/
#sec02{
	padding: 0 !important;
}

#sec02 header{
	display: none;
}

#gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding: 0;
	margin: 0;
	list-style: none;
}

#gallery li{
	width: calc((100% - 10px) / 3);
	line-height: 0;
}
/* #gallery li.full{
	width: 100%;
} */


#gallery img{
	display: block;
	width: 100%;
	height: auto;
}

/* sec03 代表挨拶
------------------------------------------------------------*/
#sec04{
	padding-bottom: 0 !important;
}

.article{
	clear: both;
	overflow: hidden;
	padding-bottom: 50px;
	font-weight: 400;
}

/* .article img{
	float: right;
	margin: 5px 20px 20px;
} */
 .article img{
    float: right;
    width: 40%;
    margin: 0 0 10px 15px;
}

.article p{
	/* margin-bottom: 20px; */
	font-weight: 400;
}

.text {
    width: 50%;
}

.text p{
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

/* sec04 FAQ
------------------------------------------------------------*/
.faq {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-icon {
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  transform: rotate(135deg);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 15px 15px;
  line-height: 1.7;
}

.faq-item.is-open .faq-icon {
  transform: rotate(-45deg);
}

/* SEC05 会社概要
------------------------------------------------------------*/
/* 外枠（白背景） */
.company-wrap {
  background: var(--color-white);
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05); /* ←ほんのり影 */
  max-width: 80%;
  margin: 40px auto;
}

/* テーブル本体 */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

/* セル共通 */
.company-table th,
.company-table td {
  padding: 15px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

/* 左側（項目名） */
.company-table th {
  width: 30%;
  background: var(--color-table-bg);
  font-weight: 600;
}

/* sec06 CONTACT
------------------------------------------------------------*/



/* ハンバーガーメニュー
------------------------------------------------------------*/
#site-header .navbar-toggler{
  border: none;
  padding: 0.25rem 0.5rem;
}

#site-header .navbar-toggler:focus{
  box-shadow: none;
}

#site-header .navbar-toggler-icon{
  background-image: none;
  width: 28px;
  height: 20px;
  position: relative;
  display: inline-block;
  border-top: 2px solid var(--color-black);
}

#site-header .navbar-toggler-icon::before,
#site-header .navbar-toggler-icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  border-top: 2px solid var(--color-black);
}

#site-header .navbar-toggler-icon::before{
  top: 7px;
}

#site-header .navbar-toggler-icon::after{
  top: 16px;
}

/* トップ画像
------------------------------------------------------------*/
#mainImg{
  height: 90vh;
  overflow: hidden;
  position: relative;
}

#mainImg::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

#mainImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#mainImg .catch{
  position: absolute;
  top: 55%;
  left: 8%;
  transform: translateY(-50%);

  color: var(--color-white);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;

  text-align: left;
  line-height: 1.4;

  text-shadow: 0 4px 20px rgba(0,0,0,0.5);

  z-index: 2;
}

/* 個人情報保護方針
------------------------------------------------------------*/
.policy-section {
  padding: 80px 20px 100px;
  margin-top: 50px;
}

.policy-inner {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 80px 60px 90px;
}

/* 白枠の中で本文幅だけ少し絞る */
.policy-inner > header,
.policy-lead,
.policy-block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.policy-inner > header {
  margin-bottom: 55px;
}

.policy-lead {
  margin-bottom: 70px;
  font-size: 18px;
  line-height: 2.1;
  text-align: left;
}

.policy-block {
    margin-bottom: 65px;
    text-align: left;
}

.policy-block h3 {
  margin: 0 0 30px;
  padding-left: 20px;
  border-left: 5px solid var(--border-left-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.policy-block p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 2.1;
  text-align: left;
}

.policy-block ol {
  margin: 20px 0 0 1.5em;
  padding: 0;
}

.policy-block li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 2.1;
}

.policy-contact {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--border-left-color);
}

/* お問い合わせページ
------------------------------------------------------------*/
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  padding: 50px;
  max-width: 1200px;
  background: var(--color-table-bg);
}

.Form-Row {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--color-border);
}

.Form-Row:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.Form-Item-Label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  color: var(--color-black);
}

.Form-Item-Label-Textarea {
  padding-top: 8px;
}

.Form-Item-Label-Required,
.Form-Item-Label-Optional {
  display: inline-block;
  width: 48px;
  text-align: center;
  border-radius: 6px;
  margin-right: 8px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--color-white);
}

.Form-Item-Label-Required {
  background: var(--color-accent3);
}

.Form-Item-Label-Optional {
  background: var(--color-text-muted);
}

.Form-Item-Input,
.Form-Item-Textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-section-bg);
  font-size: 18px;
  box-shadow: none;
}

.Form-Item-Input {
  height: 48px;
  padding-left: 1em;
  padding-right: 1em;
  max-width: 410px;
}

.Form-Item-Textarea {
  height: 216px;
  padding: 1em;
  /* max-width: 410px; */
  resize: vertical;
}

.Form-Item-Input:focus,
.Form-Item-Textarea:focus {
  background: var(--color-section-bg);
  border-color: var(--color-border);
  box-shadow: none;
}

.Form-Btn {
  display: inline-block;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  padding: 20px 0;
  border: none;
  border-radius: 6px;
  background: var(--color-accent2);
  color: var(--color-white);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.Form-Btn:hover {
  opacity: 0.9;
}

@media screen and (max-width: 767.98px) {
  .Form {
    margin-top: 40px;
  }

  .Form-Row {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .Form-Row > div:first-child {
    margin-bottom: 12px;
  }

  .Form-Item-Label {
    font-size: 15px;
  }

  .Form-Item-Label-Textarea {
    padding-top: 0;
  }

  .Form-Item-Label-Required {
    width: 36px;
    margin-right: 8px;
    padding: 5px 0;
    border-radius: 4px;
    font-size: 10px;
  }

  .Form-Item-Input,
  .Form-Item-Textarea {
    max-width: 100%;
    font-size: 15px;
  }

  .Form-Item-Input {
    height: 40px;
  }

  .Form-Item-Textarea {
    height: 200px;
  }

  .Form-Btn {
    width: 160px;
    margin-top: 24px;
    padding: 8px 0;
    font-size: 16px;
  }
}


/* Responsive
------------------------------------------------------------*/


/* =========================
   1024px以下
========================= */
@media (max-width: 1024px){

  .section-title {
    font-size: 40px;
  }

  .article {
    padding-bottom: 0;
  }

  .article img{
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
  }

  .text {
    width: 100%;
    padding-top: 0;
  }

  /* col4：4列 → 2列寄り */
  .col4 li{
    display: inline-block;
    width: 43%;
    padding: 0 1%;
    vertical-align: top;
    text-align: left;
    font-weight: 400;
  }
}


/* =========================
   991.98px以下
========================= */
@media (max-width: 991.98px){

  .header-inner{
    padding: 10px 16px;
  }

  body{
    padding-top: 68px;
  }

  section{
    scroll-margin-top: 85px;
  }

  #site-header{
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  #site-header.scrolled{
    background: var(--color-white);
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  #site-header .navbar-collapse{
    background: var(--color-white);
    padding: 12px 0 16px;
    margin-top: 10px;
    border-top: 1px solid var(--color-border-light);
  }

  #site-header .navbar-nav{
    align-items: stretch;
  }

  #site-header .nav-link{
    display: block;
    padding: 12px 8px;
  }

  #site-header .nav-link::after{
    content: none;
  }

  #site-header .nav-link:hover,
  #site-header .nav-link.active{
    color: var(--color-black);
  }

  #site-header #sns{
    margin-top: 8px;
  }

  #mainImg{
    height: 60vh;
  }
}


/* =========================
   767px以下
========================= */
@media (max-width: 767px){

  .policy-section {
    padding: 50px 15px 70px;
    margin-top: 0;
  }

  .policy-inner {
    padding: 45px 20px 55px;
  }

  .policy-inner > header {
    margin-bottom: 35px;
  }

  .policy-lead {
    margin-bottom: 45px;
    font-size: 16px;
    line-height: 2;
  }

  .policy-block {
    margin-bottom: 45px;
  }

  .policy-block h3 {
    margin-bottom: 20px;
    padding-left: 14px;
    font-size: 22px;
    line-height: 1.5;
  }

  .policy-block p,
  .policy-block li {
    font-size: 16px;
    line-height: 2;
  }

  .policy-contact {
    padding-left: 14px;
  }

  /* col4：スマホでは1列 */
  .col4{
    text-align: center;
  }

  .col4 li{
    display: block;
    width: 80%;
    margin: 0 auto 50px;
    text-align: center;
    font-weight: 400;
  }

  #gallery li{
    float: none;
    width: 100%;
  }

  #map iframe{
    width: 96% !important;
    left: 2%;
  }
}


/* =========================
   640px以下
========================= */
@media (max-width: 640px){

  .innerS{
    width: 94%;
    padding-bottom: 30px;
  }

  /* 白背景をフル幅に */
  .company-wrap {
    max-width: 100%;
    padding: 20px; /* 少し詰める */
    margin: 20px 0;
  }

  /* 文字サイズ少し縮小 */
  .company-table th,
  .company-table td {
    padding: 10px;
    font-size: 14px;
  }

  /* 左側の幅少し広げる or 調整 */
  .company-table th {
    width: 35%;
  }
}