@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

@media (min-width: 769px) {
	.sp-br {
		display: none;
	}
	.sp{
		display: none;
	}
}

@media (max-width: 768px) {
	.pc{
		display: none;
	}
}

:root {
  --color-bg-dark: #2C2C2C;
  --color-bg-light: #ffffff;
  --color-bg-gray: #f7f7f7;
  --color-accent: #0DBFBA; /* NAD BLUE */
  --color-text-main: #222222;
  --color-text-muted: #666666;
  --max-width: 1500px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.7;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 12px 100px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  background-color: var(--color-bg-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.hero-content {
  max-width: 920px;
  padding-left: 80px;
}

.hero-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 24px;
}

.hero-sub {
  font-size: 30px;
  margin: 0 0 36px;
  font-weight: 600;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-image img {
  width: 500px;
}

	
/* スマホ対応：ヒーロー */
@media (max-width: 768px) {

  .hero {
    padding: 30px 0 260px;
  }

  .hero-inner {
    max-width: 100%;
    padding: 0 16px;
    flex-direction: column;        /* 縦並びにする */
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-copy {
    font-size: 28px; 
    line-height: 1.6;
    margin: 0 0 20px;
  }

  .hero-sub {
    font-size: 24px;
    margin: 0 0 24px;
  }

  /* ボタンを中央寄せ */
  .hero .btn {
    display: block;
    margin: 0 auto;
  }

  /* 画像を通常フローに戻して右寄せ */
  .hero-image {
    position: absolute;
    right: -20px;  /* ← もっと右へ寄せたい場合、ここを -30px / -40px */
    top: 280px;    /* ← もっと上へ上げたい場合、ここを 160 / 150 / 140 に調整 */
    transform: none;
    margin: 0;
    z-index: 1;
  }

  .hero-image img {
    width: 60vw;                  /* 画面幅の6割くらい */
    max-width: 260px;             /* 大きくなりすぎないよう上限 */
  }
}




/* NAD イントロ */
.nad-intro {
  background-color: #ffffff;
  padding: 80px 0 0;
}

.nad-intro-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.nad-logo-block {
  flex: 0 0 280px;
  padding-right: 20px;
}

.nad-photo-block {
  flex: 0 0 360px;
  padding-left: 20px;
}

.container-nad-text {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}


/* スマホ対応：イントロ */
@media (max-width: 768px) {
	.nad-intro {
  	background-color: #ffffff;
	padding: 40px 0 0;		
}
.nad-intro-inner {
  margin-bottom: 0px;
}
.nad-logo-block {
  	width: 70%;
	padding: 0;
	margin-bottom: -220px;
	}
	.nad-photo-block {
  	width: 90%;
	padding: 0;
	}
	.container-nad-text {
  	text-align: center;
  	font-size: 16px;
  	font-weight: 600;
	margin-top: -20px;
  	margin-bottom: 40px;
	}
}

/* NAD Features */
.nad-features {
  width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}

/* スマホ対応：features */
@media (max-width: 768px) {
	.nad-features {
  	width: 60%;
  	margin: 0 auto;
  	padding-top: 0px;
	}
}

/* ライフスタイル写真 */
.nad-lifestyle {
margin-top: 80px;
}

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

/* スマホ対応：features */
@media (max-width: 768px) {
	.nad-lifestyle {
	margin-top: 40px;
	}

  .nad-lifestyle-inner {
    display: flex;
    flex-direction: column;   /* ← 縦並びにする */
    align-items: center;       /* ← 画像を中央寄せ */
    gap: 2px;                 /* ← 縦の余白（任意） */
  }

  .nad-lifestyle-inner img {
    width: 90%;                /* ← スマホでは少し縮めるなら */
    max-width: 360px;          /* ← 大きすぎないよう上限 */
    height: auto;
  }
}


/*=============================
  会社概要
==============================*/

.company {
  background: #ffffff;
  padding: 120px 0;
  width: 100%;
}

.company-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.company-title {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  font-weight: 400;
}

/* 表全体 */
.company-table {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}

/* 各行 */
.company-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
  font-size: 16px;
}

.company-row dt {
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
}

.company-row dd {
  margin: 0;
  display: flex;
  align-items: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .company-container {
    max-width: 92%;
  }

  .company-row {
    grid-template-columns: 1fr;
    padding: 20px 0;
	text-align: center; 
  }
  .company-row dt,
  .company-row dd {
    justify-content: center;
  }

  .company-row dt {
    margin-bottom: 6px;
  }
}

/* お問合せ */
.contact {
  background-color: var(--color-accent);
  color: #2C2C2C;
  padding: 80px 0 100px;
}
#contacth2{
  text-align: center;
}

.contact-title {
  color: #ffffff;
}

.contact-inner {
  max-width: 640px;
}

.contact-form {
  margin-top: 40px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
  border: 1px solid #cccccc;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-action {
  text-align: center;
  margin-top: 24px;
}

.form-action .btn-primary {
  min-width: 200px;
}


/* 送信ボタン */
.btn-send {
  background-color: #117B78;
  color: #ffffff;
}

.btn-send:hover {
  opacity: 0.85;
}





/* フッター */
.footer {
  background-color: #2C2C2C;
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    margin-top: 40px;
    align-self: center;
  }

  .nad-intro-inner {
    flex-direction: column;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-row dt {
    margin-bottom: 4px;
  }

  .nad-lifestyle-inner {
    grid-template-columns: 1fr;
  }
}
