@charset "UTF-8";
/* CSS Document */

/* =========================
  基本設定
========================= */
:root {
  --main-color: #555555;
  --accent-color: #0069C7;
  --bg-color: #E9F4F7;

  /* 可変フォント */
  --font-base: 16px;
  --h2-size: clamp(20px, 4vw, 42px);
  --h2-p-size: clamp(16px, 2vw, 20px);
  --h3-size: clamp(18px, 2.5vw, 24px);
}

body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--main-color);
  line-height: 1.5;
  font-size: var(--font-base);
}
img {width: 100%;}
*{box-sizing: border-box;}
a{
  color: #0069C7;
  text-decoration: underline;
	display: block;	
	cursor: pointer!important;
}
a:hover {
	opacity: 0.6;
	cursor: pointer;

}
a * {cursor: pointer}

.pc{display: block}
.sp{display: none}

/* =========================
  背景 + コンテナ
========================= */
.page-bg {
  background-color: var(--bg-color);
  width: 100%;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
	padding: 2rem
}

/* =========================
  ヘッダー全体
========================= */
.header {
  overflow: hidden;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.header p{
	color: var(--accent-color);
	max-width: 880px;
	margin: 1rem auto 0;
	width: 90%
}
/* =========================
 メニュー
========================= */
.card-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
	
}
.card-list a{
	text-decoration: none;
	flex: 1;
	max-width: 300px;
	display: flex
}
.card-list a:hover{
	opacity: 1}

.card {
	border: 1px solid transparent;
	width: 100%;
	background: #fff;
	border-radius: 30px;
	padding: 30px 20px;
	text-align: center;
	display: flex; 
	flex-direction: column; 
	transition: all 0.3s
}
.card:hover{
	transform: translateY(-5px);
	border: 1px solid var(--accent-color);
	box-shadow: 0 2px 2px rgba(0,105,199,0.5);
}
.card:active{
	transform: translateY(-5px);
	border: 1px solid var(--accent-color);
	box-shadow: 0 2px 2px rgba(0,105,199,0.5);
}

/* 画像 */
.card img {
	margin: 0 auto;	
	max-height: 60px;
	width: auto;
}

/* テキスト */
.card-text {
  margin: 16px 0;
  color: #0069C7;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
}

/* 下向き三角 */
.triangle {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #0069C7;
}

/* =========================
  セクション共通
========================= */
section {
  width: 100%;
	padding-bottom: 2rem
}

/* 背景色 */
.bg-blue {
  background-color: var(--bg-color);
}

.bg-white {
  background-color: #fff;
}

.wave-section , .wave-section-b {
  position: relative;
	padding-top: 1rem
}

/* 上の波 */
.wave-section::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  height: 5rem;

  background: url("data:image/svg+xml;utf8,\
<svg viewBox='0 0 1440 50' xmlns='http://www.w3.org/2000/svg'>\
<path d='M 0 50 Q 80 50 160 25 Q 320 -25 480 25 Q 560 50 640 50 Q 720 50 800 25 Q 960 -25 1120 25 Q 1200 50 1280 50 Q 1360 50 1440 25 Q 1600 -25 1760 25 Q 1840 50 1920 50 L 1280 100 L 0 100 Z' fill='%23ffffff'/>\</svg>") no-repeat center / cover;
}

.wave-section-b::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  height: 5rem;

  background: url("data:image/svg+xml;utf8,\
<svg viewBox='0 0 1440 50' xmlns='http://www.w3.org/2000/svg'>\
<path d='M 0 50 Q 80 50 160 25 Q 320 -25 480 25 Q 560 50 640 50 Q 720 50 800 25 Q 960 -25 1120 25 Q 1200 50 1280 50 Q 1360 50 1440 25 Q 1600 -25 1760 25 Q 1840 50 1920 50 L 1280 100 L 0 100 Z' fill='%23E9F4F7'/>\</svg>") no-repeat center / cover;
}

/* =========================
  青背景セクション内ボックス
========================= */
.content-box {
  border-radius: 30px;
	padding: 3rem;
	margin:2rem auto;
}

/* 中身レイアウト */
.content-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* テキストと画像 */
.text {
  flex: 1;
}

.image {
  flex: 1;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-inner img{
	padding-bottom: 1.5rem
}
/* =========================
  見出し
========================= */
h2 {
  font-size: var(--h2-size);
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
	text-align: center
}
h2 img{
	max-width: 83px;
	width: 20%;
	margin: 1rem auto 0 auto;
	display: block
}
h2 p{
	font-size: var(--h2-p-size);
	font-weight: normal;
	color: var(--main-color);
}

h3 {
  font-size: var(--h3-size);
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

/* =========================
  サブタイトル
========================= */
.subtitle {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 1rem;
}

/* 画像 */
.subtitle img {
  max-width: 130px;
  height: auto;
}

/* テキスト */
.subtitle span {
  color: #0069C7;
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 32px);
  line-height: 1.3;
}

.specialbnr{
	max-width: 660px;
	width: 100%;
	margin: 0 auto;
	cursor: pointer
}

/* =========================
  画像2カラム
========================= */
.image-list {
  display: flex;
  gap: 50px;
	margin-top: 2rem
}

.image-item {
  flex: 1;
  margin: 0;
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャプション */
figcaption {
  margin-top: 8px;
  line-height: 1.5;
	text-align: center;
}

/* =========================
  プロセス（3カラム）
========================= */
.process {
  display: flex;
  gap: 20px;
}

.process-item {
  flex: 1;
  margin: 0;
}

/* 画像 */
.process-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャプション */
.process-item figcaption {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #555555;
}
/* =========================
  アイテム（4カラム）
========================= */
.item {
  display: flex;
  gap: 20px;
}

.item-box {
  flex: 1;
  margin: 0;
}

/* 画像 */
.item-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャプション */
.item-box figcaption {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #555555;
}

/* =========================
  PC（5カラム）
========================= */
.sdgsIcon {
  display: flex;
  gap: 20px;
}

.sdgsIcon-item {
  flex: 1;
}

.sdgsIcon-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
  CTAボタン
========================= */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 660px;
  width: 100%;
  padding: 2.5rem ;
  background-color: #0069C7;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
}

/* 三角（▶） */
.arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
}

footer{
	font-size: 12px;
	color: var(--accent-color);
	text-align: center;
}

/* =========================
  ブレイクポイント
========================= */

/* 767px〜480px */
@media (max-width: 767px) {
  .container {
    padding: 30px 16px;
	  padding: 2rem
  }
  .content-inner {
    flex-direction: column;
  }
	 /* 順番変更：テキスト上、画像下 */
  .text {
    order: 1;
  }

  .image {
    order: 2;
}
	.subtitle {
    flex-direction: column;
    text-align: center;
  }

  .subtitle img {
    margin: 0 auto;
  }


}

/* =========================
  スマホ
========================= */
@media (max-width: 480px) {

.pc{display: none}
.sp{display: block}

  .header-inner {
	height: auto;
	display: flex;
	align-items: center;
	flex-direction: column;
  }

  /* 写真*/
  .header-image {
	width: 180%;
	margin-top: -80%;
	margin-left: -40%;

  }

  /* テキスト */
  .header-text {
	width: 100%;
	text-align: center;
	margin-top: -60%;
  }

  .header-text img {
    width: 90%; 
  }

  .card-list {
    flex-direction: column;
    gap: 16px;
  }
	.card-list a{
	max-width: 100%;
	}

  .card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
	padding: 16px;
	text-align: left;
	flex-direction: row
  }

  /* 左：画像 */
  .card img {
	max-width: 60px;
	margin: 0;
	height: auto;
  }

  /* 中：テキスト */
.card-text {
	flex: 1;
	margin: 0 10px;
	font-size: 16px;
	text-align: left;
  }

  /* 右：三角 */
  .triangle {
    margin: 0;

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #0069C7;

    position: relative;
    right: 0;
  }

  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }

  .container {
    padding: 1rem ;
  }
.bg-blue {
    padding: 50px 0;
  }

  .content-box {
    padding: 1.5rem;
  }

  .content-inner {
    flex-direction: column;
	  gap:1rem;
  }
  .subtitle span {
    font-size: 20px;
  }
	
 .image-list {
    flex-direction: column;
  }
  
  .process {
    flex-direction: column;
  }

  .process-item {
    display: flex;
    align-items: center; 
    gap: 12px;
  }

  .process-item img {
    width:calc(50% - 10px); 
  }

  .process-item figcaption {
    width: 50%;
    margin-top: 0;
    text-align: left; 
  }
  .item {
    flex-wrap: wrap;
  }

  .item-box {
    flex: none; 
    width: calc(50% - 10px);
  }

  .sdgsIcon {
    flex-wrap: wrap;
  }

  .sdgsIcon-item {
	  flex: none;
    width: calc(50% - 10px);
  }

  /* 最後の1つを中央に */
  .sdgsIcon-item:nth-child(5) {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .sdgsIcon-item:nth-child(5) img {
    width: 50%;
  }
  .cta-button {
    width: 100%;
	  max-width: auto;
	  padding: 1.5rem
  }
}