@charset "utf-8";
/* CSS Document */
body {
	background: none;
}

h2 {
	font-weight: bold;
}

#global_page {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
	color: #202121;
	font-size: 16px;
	scroll-behavior: smooth;
	font-weight: 600;
	letter-spacing: 0.08em;
	font-feature-settings: 'palt'1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	z-index: 1;
}


@media screen and (max-width: 780px) { /*-----------------SP----- */
	body {
		padding-bottom: 50px;
	}

	#global_page {
		font-size: 15px;
		line-height: 1.875em;
		letter-spacing: 0.1em;
	}
}

@media only screen and (min-width: 781px) {
    .sp { display: none!important; }
    .pc { display: block; }
}
@media only screen and (max-width: 780px) {
    .pc { display: none!important; }
    .sp { display: block!important; }
}

/* header
--------------------------------------------------------*/
.glo_header {
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.glo_header_wrap {
	max-width: 1160px;
	width: 100%;
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}
.glo_header .head_logo {
	width: 250px;
	line-height: 1;
}
.glo_header .head_txt {
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}
.glo_header ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.glo_header li {
	font-weight: bold;
	margin-left: 30px;
	font-size: 14px;
}
.glo_header a {
	color: #202121;
	text-decoration: none;
	transition: .2s;
}
.glo_header a:hover {
	opacity: 0.6;
}
.glo_header .head_btn {
	transition: .2s;
}
.glo_header .head_btn:hover {
	opacity: 0.7;
}
.glo_header .head_btn a {
	background: url("/global/image/head_btn.png") left 20px center no-repeat;
	background-size: 14px auto;
	background-color: #D7063B;
	color: #fff;
	display: block;
	border-radius: 200px;
	line-height: 1;
	padding: 10px 20px 10px 38px;
}
@media screen and (max-width: 980px) { /*-----------------SP----- */
	.glo_header_wrap {
		padding: 16px 12px 16px 14px;
	}
	.glo_header .head_logo {
		width: 200px;
	}
	.glo_header ul a {
		font-size: 13px;
	}
	.glo_header ul li {
		margin-left: 20px;	
	}
}
@media screen and (max-width: 806px) { /*-----------------SP----- */
	.glo_header_wrap {
		padding: 12px 12px 12px 14px;
	}
	.glo_header .head_logo {
		width: 180px;
	}
	.glo_header ul a {
		font-size: 12px;
	}
	.glo_header ul li {
		margin-left: 14px;	
	}
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.glo_header li:nth-child(1), .glo_header li:nth-child(2), .glo_header li:nth-child(3), .glo_header li:nth-child(4) {
		display: none;
	}
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.glo_header_wrap {
		max-width: 100%;
		padding: 12px 20px;
	}
	.glo_header .head_logo {
		width: 160px;
	}
	.glo_header li {
		margin-left: 0;
	}
}

/* mv
--------------------------------------------------------*/
.sec_mv {
	padding: 40px 0 60px;
	background: linear-gradient(to bottom, #002366 0, #002366 330px, transparent 330px, transparent 100%);
}

/* slider: 画面幅いっぱいに広がり、絶対配置の.slidesを包むので高さを明示 */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* 必要に応じて高さを調整。ここでは仮に500pxとしています */
  min-height: 500px;
}

/* slides: 絶対配置でleft:50%にすることで、基準点を画面中央に */
.slides {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 100px;  /* 各.slide間の隙間 */
  transition: transform 0.5s ease;
}

/* slide: 固定幅600px、縮まないように設定 */
.slide {
  width: 600px;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* 矢印ボタン: 40pxサイズ、imageフォルダ内の画像を使用 */
.prev, .next {
  position: absolute;
  top: 35%;
  transform: translateY(-35%);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
	background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.prev {
  background-image: url('/global/image/sec_mv_left.png');
  /* 左側：中央スライドの左端（スライド半分300px）から20px＋ボタン幅40px分左へ */
  left: calc(50% - 300px - 20px - 40px);
}
.next {
  background-image: url('/global/image/sec_mv_right.png');
  /* 右側：中央スライドの右端から20px＋ボタン幅40px分右へ */
  right: calc(50% - 300px - 20px - 40px);
}

.slide img {
  width: 600px;
  height: 360px;
  object-fit: cover; /* 枠いっぱいに画像を埋め、はみ出した部分は切り取る */
  display: block;    /* 余計な隙間をなくす */
	border-radius: 10px;
	margin-bottom: 14px;
}
.slide a {
	color: #202121;
	text-decoration: none;
	transition: 0.3s;
}
.slide a:hover {
	opacity: 0.8;
}
.sec_mv_cate {
	background: url("/global/image/icon_cate.png") left 10px center no-repeat;
	background-size: 6px auto;
	color: #002366;
	border: 1px solid #002366;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1;
	display: inline;
	padding: 4px 10px 4px 20px;
}
.sec_mv h2 {
	margin: 10px 0 4px;
	font-size: 16px;
	color: #002366;
}
.sec_mv_txt {
	font-size: 14px;
	margin: 0;
	color: #666666;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec_mv {
		padding: 30px 0 30px;
		background: linear-gradient(to bottom, #002366 0, #002366 160px, transparent 160px, transparent 100%);
	}
	.slider {
	  min-height: 330px;
	}
	.slides {
	  gap: 100px;
	}
	.slide {
	  width: 300px;
	}

	/* 矢印ボタン: 40pxサイズ、imageフォルダ内の画像を使用 */
	.prev, .next {
	  top: 25%;
	  transform: translateY(-25%);
	  width: 30px;
	  height: 30px;
	}
	.prev {
	  background-image: url('/global/image/sec_mv_left.png');
	  /* 左側：中央スライドの左端（スライド半分150px）から4px＋ボタン幅30px分左へ */
	  left: 10px;
	}
	.next {
	  background-image: url('/global/image/sec_mv_right.png');
	  /* 右側：中央スライドの右端から4px＋ボタン幅30px分右へ */
	  right: 10px;
	}

	.slide img {
		width: 300px;
		height: 180px;
		margin-bottom: 10px;
	}
	.sec_mv_cate {
		font-size: 10px;
	}
	.sec_mv h2 {
		margin: 6px 0 8px;
		font-size: 15px;
		line-height: 1.4;
	}
	.sec_mv_txt {
		font-size: 13px;
		line-height: 1.4;
	}
}

/* sec01
--------------------------------------------------------*/
.sec01 {
	background: url("/global/image/sec01_bg1.png") left 40px top 20px no-repeat, url("/global/image/sec01_bg2.png") right 40px bottom 20px no-repeat;
	background-size: 200px auto, 200px auto;
	padding: 0 30px 40px;
}
.glo_bnr {
	max-width: 990px;
	margin: 0 auto 70px;
}
.sec01_head {
	max-width: 1100px;
	margin: 0 auto 54px;
	display: flex;
	justify-content: space-between;
}
.sec01_head h2 {
	font-size: 14px;
	background: url("/global/image/sec01_ttl.png") top left no-repeat;
	background-size: 225px auto;
	min-height: 85px;
	width: 225px;
	display: flex;
	align-items: flex-end;
}
.sec01_link {
	width: 410px;
}
.sec01_link ul {
	display: flex;
	flex-wrap: wrap;
}
.sec01_link li {
	border: 1px solid #002366;
	border-radius: 4px;
	margin: 0 0 10px 10px;
}
.sec01_link li a {
	background: url("/global/image/icon_cate.png") left 10px center no-repeat;
	background-size: 6px auto;
	color: #002366;
	font-size: 13px;
	line-height: 1;
	padding: 8px 10px 8px 20px;
	text-decoration: none;
	display: block;
	transition: 0.3s;
}
.sec01_link li a:hover {
	background: url("/global/image/icon_cate_white.png") left 10px center no-repeat;
	background-size: 6px auto;
	background-color: #002366;
	color: #fff;
}
.sec01_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec01_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sec01_list li {
	width: calc( 100% / 3 - 2.4% );
	border: 1px solid #5270AA;
	border-radius: 4px;
	background-color: #fff;
	margin-bottom: 50px;
	transition: 0.3s;
}
.sec01_list li:hover {
	opacity: 0.7;
}
.sec01_list li a {
	display: block;
	padding: 0 20px 20px;
	height: 100%;
	text-decoration: none;
	position: relative;
}
.sec01_list li img {
  width: 100%;
  height: 170px;
	background-color: #fff;
  object-fit: cover;
  display: block;
	border-radius: 6px;
	margin-bottom: -6px;
	transform: translateY(-20px);
}
.sec01_list li:nth-child(-n+3) a::before {
	content: "New";
	position: absolute;
	top: -20px;
	left: 20px;
	background: #D7063B;
  color: #fff;
  font-size: 12px;
	font-family: "Noto Serif", serif;
  padding: 2px 10px;
  border-radius: 6px 0 6px 0;
  z-index: 1;
}
.sec01_list li span {
	background: url("/global/image/icon_cate.png") left 10px center no-repeat;
	background-size: 6px auto;
	color: #002366;
	border: 1px solid #002366;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1;
	display: inline;
	padding: 4px 10px 4px 20px;
}
.sec01_list li h3 {
	font-size: 16px;
	font-weight: bold;
	color: #002366;
	margin: 10px 0;
}
.sec01_list li p {
	font-size: 14px;
	color: #666666;
	margin: 0;
	line-height: 1.4;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec01 {
		background: url("/global/image/sec01_bg1.png") left 10px top 20px no-repeat, url("/global/image/sec01_bg2.png") right 10px bottom 20px no-repeat;
		background-size: 100px auto, 100px auto;
		padding: 0 20px 20px;
	}
	.glo_bnr {
		max-width: 100%;
		margin: 0 auto 40px;
	}
	.sec01_head {
		max-width: 100%;
		margin: 0 auto 30px;
		display: block;
	}
	.sec01_head h2 {
		font-size: 15px;
		background: url("/global/image/sec01_ttl.png") top left no-repeat;
		background-size: 180px auto;
		min-height: 74px;
		width: 180px;
		margin: 0 auto 20px
	}
	.sec01_link {
		width: 100%;
	}
	.sec01_link ul {
		gap: 8px;
		justify-content: center;
	}
	.sec01_link li {
		margin: 0;
	}
	.sec01_link li a {
		font-size: 12px;
		padding: 4px 10px 4px 20px;
	}
	.sec01_wrap {
		max-width: 100%;
	}
	.sec01_list {
	}
	.sec01_list li {
		width: 49%;
		margin-bottom: 24px;
	}
	.sec01_list li a {
		padding: 0 10px 20px;
	}
	.sec01_list li img {
		height: 100px;
		margin-bottom: -6px;
		transform: translateY(-10px);
	}
	.sec01_list li a::before {
		top: -10px;
		left: 10px;
		font-size: 10px;
		line-height: 1;
		padding: 4px 10px;
		border-radius: 3px 0 3px 0;
	}
	.sec01_list li span {
		font-size: 9px;
		padding: 2px 10px 2px 20px;
	}
	.sec01_list li h3 {
		font-size: 14px;
		margin: 10px 0 8px;
		line-height: 1.4;
	}
	.sec01_list li p {
		font-size: 12px;
		line-height: 1.4;
	}
}


/* sec02
--------------------------------------------------------*/
.sec02 {
	background: url("/global/image/sec02_bg.png") center center no-repeat;
	background-size: 1920px auto;
	background-color: #B7C9DC;
	padding: 50px 0 54px;
}
.sec02_head {
	max-width: 1160px;
	margin: 0 auto 30px;
	padding: 0 30px;
	display: flex;
	align-items: center;
}
.sec02_head h2 {
	font-size: 30px;
	font-weight: bold;
	background: url("/global/image/sec02_ttl.png") left center no-repeat;
	background-size: 23px;
	padding-left: 35px;
	margin-right: 30px;
}
.sec02_link {
}
.sec02_link a {
	display: block;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #D7063B;
	border-radius: 100px;
	background: url("/global/image/sec02_btn.png") right 14px center no-repeat;
	background-size: 6px auto;
	background-color: #fff;
	color: #D7063B;
	padding: 6px 24px 6px 14px;
	transition: 0.3s;
}
.sec02_link a:hover {
	opacity: 0.7;
}

/* 横スクロール用のul */
.sec02_list {
	padding: 20px 100px 0 16%;
  display: flex;
  gap: 40px; /* 各li間の左右の間隔 */
  overflow-x: auto; /* 横スクロールを有効に */
  scroll-behavior: smooth; /* 滑らかなスクロール */
  cursor: grab;
  -webkit-overflow-scrolling: touch; /* iOSでの慣性スクロール */
	-ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}
.sec02_list::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}
/* ドラッグ中はグラブのカーソル */
.sec02_list.active {
  cursor: grabbing;
}
/* ドラッグ中（.draggingが付与されているとき）はa要素のクリックを無効にする */
.sec02_list.dragging a {
  pointer-events: none;
}

.sec02_list li {
	width: 320px;
  flex-shrink: 0;
	border-radius: 4px;
	background-color: #fff;
	transition: 0.3s;
	user-select: none;
}
.sec02_list li:hover {
	opacity: 0.7;
}
.sec02_list li a {
	display: block;
  text-decoration: none;
  color: inherit;
	padding: 0 20px 20px;
	height: 100%;
}
.sec02_list li img {
  width: 100%;
  height: 170px;
	background-color: #fff;
  object-fit: cover;
  display: block;
	border-radius: 6px;
	margin-bottom: -6px;
	transform: translateY(-20px);
	-webkit-user-drag: none;
	user-drag: none;
}
.sec02_list li span {
	background: url("/global/image/icon_cate.png") left 10px center no-repeat;
	background-size: 6px auto;
	color: #002366;
	border: 1px solid #002366;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1;
	display: inline;
	padding: 4px 10px 4px 20px;
}
.sec02_list li h3 {
	font-size: 16px;
	font-weight: bold;
	color: #002366;
	margin: 10px 0;
}
.sec02_list li p {
	font-size: 14px;
	color: #666666;
	margin: 0;
	line-height: 1.4;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec02 {
		background: url("/global/image/sec02_bg.png") center center no-repeat;
		background-size: 940px auto;
		background-color: #B7C9DC;
		padding: 40px 0 40px;
	}
	.sec02_head {
		max-width: 100%;
		margin: 0 auto 20px;
		padding: 0 20px;
		justify-content: center;
	}
	.sec02_head h2 {
		font-size: 20px;
		background: url("/global/image/sec02_ttl.png") left center no-repeat;
		background-size: 16px;
		padding-left: 25px;
		margin-right: 30px;
	}
	.sec02_link a {
		font-size: 12px;
		background: url("/global/image/sec02_btn.png") right 14px center no-repeat;
		background-size: 6px auto;
		background-color: #fff;
		padding: 8px 24px 8px 14px;
		line-height: 1;
	}

	/* 横スクロール用のul */
	.sec02_list {
		padding: 10px 30px 0 16%;
		gap: 20px;
	}
	.sec02_list li {
		width: 300px;
	}
	.sec02_list li a {
		padding: 0 20px 20px;
		height: 100%;
	}
	.sec02_list li img {
		width: 100%;
		height: 150px;
		margin-bottom: 0;
		transform: translateY(-10px);
	}
	.sec02_list li span {
		font-size: 10px;
		padding: 2px 10px 2px 20px;
	}
	.sec02_list li h3 {
		font-size: 14px;
		line-height: 1.4;
		margin: 6px 0 8px;
	}
	.sec02_list li p {
		font-size: 12px;
		line-height: 1.4;
	}
}


/* sec03
--------------------------------------------------------*/
.sec03 {
	padding: 80px 30px 50px;
}
.sec03_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec03_bnr {
	margin-bottom: 70px;
}
.sec03_bnr a {
	display: block;
	background: url("/global/image/sec03_bg.png") center center no-repeat;
	background-size: cover;
	border-radius: 6px;
	text-decoration: none;
	padding: 60px;
	transition: 0.3s;
	color: #fff;
}
.sec03_bnr a:hover {
	opacity: 0.7;
}
.sec03_bnr h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.sec03_bnr_txt {
	font-size: 15px;
	font-weight: normal;
	margin-bottom: 26px;
	max-width: 700px;
}
.sec03_bnr_btn {
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #fff;
	border-radius: 100px;
	background: url("/global/image/sec03_bnr_btn.png") right 14px center no-repeat;
	background-size: 6px auto;
	background-color: #D7063B;
	color: #fff;
	padding: 6px 24px 6px 14px;
	display: inline;
}
.sec03_list {
	border: 1px solid #002366;
	border-radius: 6px;
	display: flex;
}
.sec03_list li {
	border-right: 1px solid #002366;
	padding: 30px;
	text-align: center;
}
.sec03_list li:last-child {
	border-right: none;
}
.sec03_list h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
	height: 2em;
	letter-spacing: 0.01em;
}
.sec03_list img {
	border-radius: 6px;
	margin-bottom: 20px;
}
.sec03_link a {
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #002366;
	border-radius: 100px;
	background: url("/global/image/Icon_download.png") right 18px center no-repeat;
	background-size: 10px auto;
	background-color: #fff;
	color: #002366;
	padding: 6px 34px 6px 18px;
	display: inline-block;
	transition: 0.3s;
}
.sec03_link a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec03 {
		padding: 40px 20px 20px;
	}
	.sec03_wrap {
		max-width: 100%;
	}
	.sec03_bnr {
		margin-bottom: 30px;
	}
	.sec03_bnr a {
		padding: 30px;
	}
	.sec03_bnr h2 {
		font-size: 18px;
		margin-bottom: 20px;
		text-align: center;
	}
	.sec03_bnr_txt {
		font-size: 14px;
		line-height: 1.7;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.sec03_bnr_btn {
		font-size: 14px;
		padding: 6px 24px 6px 14px;
		display: block;
		text-align: center;
	}
	.sec03_list {
		display: block;
	}
	.sec03_list li {
		border-right: none;
		padding: 20px 20px 24px;
		border-bottom: 1px solid #002366;
	}
	.sec03_list li:last-child {
		border-bottom: none;
	}
	.sec03_list li:last-child {
		border-right: none;
	}
	.sec03_list h3 {
		font-size: 15px;
		margin-bottom: 14px;
		display: block;
		line-height: 1.4;
		height: auto;
	}
	.sec03_list img {
		width: 100%;
		height: 160px;
		margin: 0 auto 16px;
		object-fit: cover;
		display: block;
	}
	.sec03_link a {
		font-size: 12px;
		padding: 4px 34px 4px 18px;
	}
}



/* sec04
--------------------------------------------------------*/
.sec04 {
	background: url("/global/image/sec04_bg.png") bottom center no-repeat;
	background-size: cover;
	padding: 0 30px;
}
.sec04_wrap {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0;
}
.sec04_txt {
	color: #fff;
}
.sec04_txt h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 40px;
}
.sec04_txt p {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 40px;
}
.sec04_link {
	margin-bottom: 0!important;
}
.sec04_link a {
	display: block;
	background-color: #D7063B;
	border: 1px solid #fff;
	border-radius: 100px;
	text-decoration: none;
	padding: 20px 28px 20px 0;
	max-width: 360px;
	transition: 0.3s;
	color: #fff;
	position: relative;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.sec04_link a:hover {
	opacity: 0.7;
}
.sec04_link a::after {
	content: "";
	background: url("/global/image/sec04_link.png") center center no-repeat;
	background-size: 30px;
	width: 30px;
	height: 30px;
	position: absolute;
	margin-left: 20px;
	
}
.sec04_img {
	max-width: 40%;
	width: 100%;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec04 {
		padding: 0 20px 40px;
	}
	.sec04_wrap {
		max-width: 100%;
		display: block;
		padding: 40% 0 0;
	}
	.sec04_txt h2 {
		font-size: 18px;
		text-align: center;
		margin-bottom: 20px;
	}
	.sec04_txt p {
		font-size: 14px;
		text-align: center;
		margin-bottom: 30px;
	}
	.sec04_link a {
		padding: 12px 18px 12px 0;
		max-width: 80%;
		margin: 0 auto;
		font-size: 15px;
		line-height: 1.3;
	}
	.sec04_link a::after {
		background: url("/global/image/sec04_link.png") center center no-repeat;
		background-size: 20px;
		width: 20px;
		height: 20px;
		margin-left: 10px;
		line-height: 1.3;
	}
	.sec04_img {
		max-width: 140px;
		margin: 40px auto 0;
	}
}

/* foot_btn
--------------------------------------------------------*/
.foot_btn {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 100;
	background-color: #002366;
}
.foot_btn ul {
	display: flex;
}
.foot_btn li {
	width: 25%;
	border-right: 1px dotted #aaa;
}
.foot_btn li:last-child {
	border-right: none;
}
.foot_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	width: 100%;
	height: 100%;
	padding: 12px 0;
}
