@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/NS-500.woff2") format("woff2"), url("fonts/NS-500.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/NS-900.woff2") format("woff2"), url("fonts/NS-900.woff") format("woff");
  font-display: swap;
}



/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight:normal;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align: left;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
	width: 100%;
}
textarea {
	vertical-align: top;
}



/*----------------------------------------------------------------------------
　Base
-----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

a {
	color: #000;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

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

strong {
	font-weight: 900;
}

body, html {
	height: 100%;
}

.fl {
  float: left;
}
.fr {
  float: right;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.cl-wh {
  color: #fff;
}
.cl-bl {
  color: #00c8ff;
}
.cl-bl02 {
  color: #0077ff;
}

.fb {
  font-weight: 900;
}
.fb span {
  font-weight: 900;
}

@media screen and (max-width: 768px) {
	a:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha(opacity=100)";
	}
	
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}



/*--------------------------------------
　fixed_header
---------------------------------------*/
.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.85);
  width: 100%;
  min-width: 1000px;
  padding: 0.5rem 0.5rem;
  z-index: 1;
}

.fixed_header.lower01 {
  position: relative;
	transition: all 0.3s ease;
}
.fixed_header.lower01.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.fixed_header.lower02 {
  position: fixed;
  top: 0;
  left: 0;
}

.fixed_header .fixed_header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed_header .logo {
  width: 120px;
}

.fixed_header .header_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 172px);
  padding: 0 170px 0 0;
}

.fixed_header .header_nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 240px);
}
.fixed_header .header_nav ul li {
  margin: 0 3rem 0 0;
  font-size: 1.5rem;
}
.fixed_header .header_nav ul li a {
  display: block;
}

.fixed_header .btn-web {
  width: 240px;
}
.fixed_header .btn-web a {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: 65px;
  margin: 0 0 0;
  padding: 0 6rem 0 1.5rem;
  text-align: left;
}
.fixed_header .btn-web a::before {
	right: 50px;
}
.fixed_header .btn-web a::after {
	right: 15px;
}

.fadein02 {
  display: none;
}

@media screen and (max-width: 1366px) {
  .fixed_header .logo {
    width: 100px;
  }

  .fixed_header .header_nav {
    width: calc(100% - 140px);
    padding: 0 160px 0 0;
  }

  .fixed_header .header_nav ul {
    width: calc(100% - 220px);
  }  
  .fixed_header .header_nav ul li {
    margin: 0 2rem 0 0;
    font-size: 1.4rem;
  }
    .fixed_header .btn-web {
    width: 220px;
  }
  .fixed_header .btn-web a {
    font-size: 1.4rem;
  }  
}

@media screen and (max-width: 768px) {
  .fixed_header {
    width: 100%;
    min-width: 100%;
    padding: 8px 1rem;
  }

  .fixed_header .logo {
    width: 28%;
  }

  .fixed_header .header_nav {
    display: block;
    width: calc(72% - 1.8rem);
    padding: 0 0 0 0;
  }

  .fixed_header .header_nav ul {
    display: none;
  }

  .fixed_header .btn-web {
    width: calc(100% - 55px);
  }
  .fixed_header .btn-web a {
    height: 50px;
    padding: 0 3.5rem 0 1rem;
    font-size: 3vw
  }
  .fixed_header .btn-web a::before {
    right: 35px;
  }
  .fixed_header .btn-web a::after {
    right: 10px;
  }
}


/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1000px;
}

header .sitename {
	padding: 1rem 2rem;
  font-size: 1.3rem;
	line-height: 1.5;
	text-align: right;
  mix-blend-mode: differnce;
}
header .sitename a {
  mix-blend-mode: differnce;
}

.lower_bg {
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/lower_bg.png") left top no-repeat;
  background-size: auto auto;
  width: 100%;
  height: 630px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
	header {
		width: 100%;
		min-width: 100%;
	}
	
	header .sitename {
		padding: 1rem 1rem;
		font-size: 1rem;
		text-align: center;
	}  
  
  .lower_bg {
    background: url("img/lower_bg.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100% * (630 / 1240));
  }
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: absolute;
	top: 50%;
	right: 5px;
  transform: translate(0,-50%);
	width: 65px;
	height: 65px;
	background: #000;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu::before {
  content: "MENU";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 100%;
  background: #000;
  width: calc(100% + 20px);
  height: 100%;
  color: #fff;
  font-size: 1.6rem;
}
#hb-menu::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0,-50%);
  background: rgba(255,255,255,0.5);
  width: 1px;
  height: calc(100% - 3rem);
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #fff;
	width: 28px;
	height: 2px;
	margin: auto;
	border-radius: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2),
#hb-menu span:nth-of-type(3){
	margin-top: 9px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu::before {
  content: "CLOSE";
}
.hb-open #hb-menu span:nth-of-type(1) {
	-webkit-transform: translateY(9px) translateX(0) rotate(45deg);
	-ms-transform: translateY(9px) translateX(0) rotate(45deg);
	transform: translateY(9px) translateX(0) rotate(45deg);
}
.hb-open #hb-menu span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}
.hb-open #hb-menu span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
	transform: translateY(-9px) translateX(0) rotate(-45deg);
}

/* overlay */
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 9999;
	transition: 0.2s;
}
.hb-open .overlay {
	background: rgba(0,200,255,0.7);
	pointer-events: auto;
}

/*----- g-nav -----*/
.g-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}
.g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	right: 0;
	background: #e8f2f5;
	width: 45%;
	height: 100%;
	padding: 13rem 0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .5s;
	transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	z-index: 9999;
}
.hb-open .g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
}


.hb_menu_wrapper {
	max-width: 80%;
	margin: auto;
}


.hb_menu {
  margin-bottom: 0;
}
.hb_menu:last-child {
  margin-bottom: 0;
}


.hb_menu_title {
	padding: 2rem 0 2rem 0;
	border-bottom: 1px solid rgba(0,0,0,0.16);
  position: relative;
}

.hb_menu_title_link {
	display: block;
	padding: 0 5rem 0 0;
	font-size: 1.6rem;
  font-weight: 900;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk02.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 10px;
	margin-top: -5px;
}


.hb_menu_list {
	display: block;
	margin-top: 0;
}

.hb_menu_list_item {
  width: 100%;
	margin: 2rem 0 2rem 2rem;
	padding: 0 0;
	box-sizing: border-box;
	position: relative;
}
.hb_menu_list_item:first-child {
	display: none;
}

.hb_menu_list_link {
	display: block;
	padding: 0 0 0 1.5rem;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.hb_menu_list_link::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	background: #00c8ff;
	width: 10px;
	height: 2px;
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    right: 5px;
    width: 50px;
    height: 50px;
  }
  #hb-menu::before {
    display: none;
  }
  #hb-menu::after {
    display: none;
  }
  #hb-menu span {
    width: 20px;
    height: 1px;
  }
  #hb-menu span:nth-of-type(2),
  #hb-menu span:nth-of-type(3){
    margin-top: 7px;
  }

  /* ナビゲーションアイコン：アクティブ */
  .hb-open #hb-menu span:nth-of-type(1) {
    -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
    -ms-transform: translateY(7px) translateX(0) rotate(45deg);
    transform: translateY(7px) translateX(0) rotate(45deg);
  }
  .hb-open #hb-menu span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  .hb-open #hb-menu span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
  }

  /*----- g-nav -----*/
  .g-nav .g-nav-inner {
    width: 95%;
    padding: 6rem 2rem;
  }


  .hb_menu_wrapper {
    max-width: 100%;
  }


  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.16);
  }
  .hb_menu_title::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #000;
		border-right: solid 1px #000;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.hb_menu_title.open::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}	
	.hb_menu_title.first {
		padding: 1.5rem 0 1.5rem 0;
	}
	.hb_menu_title.first::after {
		display: none;
	}

  
  .hb_menu_title_link {
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
    pointer-events: none;
  }
  .hb_menu_title_link::after {
    display: none;
  }
	.hb_menu_title.first .hb_menu_title_link {
		pointer-events: auto;
		position: relative;
	}
	.hb_menu_title.first .hb_menu_title_link::after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #000;
		border-right: solid 1px #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}


  .hb_menu_list {
    display: none;
  }

  .hb_menu_list_item {
    width: 100%;
    margin: 0 0 0 0;
    padding: 1.5rem 0 1.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.16);
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    padding: 0 2.5rem 0 0;
  }
  .hb_menu_list_link::before {
    display: none;
  }
	.hb_menu_list_link::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}  
}



/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
	width: 1000px;
	margin: 6rem auto 0;
  font-size: 1.2rem;
  position: relative;
}
#pankuzu a {
	display: inline-block;
  text-decoration: underline;
	line-height: 1.8;
}
#pankuzu a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
	#pankuzu {
		width: 100%;
		margin: 3rem auto 0;
		padding: 0 0 0.5rem 0;
		box-sizing: border-box;
		font-size: 1.2rem;
		white-space: nowrap;
		overflow: auto;
	}
	#pankuzu::-webkit-scrollbar{
		height: 2px;
}
	#pankuzu::-webkit-scrollbar-track{
		background: #efefef;
		margin: 0 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	#pankuzu::-webkit-scrollbar-thumb {
		background: #cacaca;
		border-radius: 0;
		box-shadow: none;
	}
}



/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
	background: #1d2527;
	width: 100%;
	min-width: 1000px;
}

.l-footer-area br {
  display: none;
}


.l-footer-area__inner {
  max-width: 1000px;
  margin: 0 auto;
	padding: 8rem 0 5rem;
}


.l-footer-logo {
	max-width: 210px;
	margin: auto;
}
.l-footer-logo a {
	display: block;
}


.l-footer-menu-wrapper {
  margin: 6rem auto 0;
}


.l-footer-menu {
  margin-bottom: 4rem;
}
.l-footer-menu:last-child {
  margin-bottom: 0;
}


.l-footer-menu__title {
	padding: 0 0 1.5rem 0;
	border-bottom: 1px solid #fff;
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 4rem 0 0;
	color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
	line-height: 1.6;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
	position: relative;
}
.l-footer-menu__title__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_wh03.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 10px;
	margin-top: -5px;
}


.l-footer-menu__list {
  display: flex;
  flex-flow: row wrap;
	box-sizing: border-box;
	margin-top: 3rem;
}

.l-footer-menu__list__item {
  width: calc(100% / 3);
	margin-bottom: 1.5rem;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
}
.l-footer-menu__list__item:first-child {
  display: none;
}

.l-footer-menu__list__link {
	display: block;
	padding: 0 4rem 0 0;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_wh03.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 10px;
	margin-top: -5px;
}


.l-footer-submenu__list {
	margin: 1rem 0 0 0;
	padding: 0 2rem;
}

.l-footer-submenu__list__item {
	margin: 0 0 1rem 0;
	position: relative;
}

.l-footer-submenu__list__link {
	display: block;
	padding: 0 0 0 1.5rem;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-submenu__list__link::before {
	content: "";
 	position: absolute;
	top: 11px;
	left: 0;
	background: #fff;
	width: 8px;
	height: 1px;
}


.l-footer-area .menseki {
	background: #484a4b;
	max-width: 730px;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
	color: #fff;
	font-size: 1.2rem;
	line-height: 2;
}
.l-footer-area .menseki span {
  display: inline-block;
}


.l-footer-area .ucp {
  margin: 1.5rem auto 0;
	color: #fff;
  font-size: 1rem;
  text-align: center;
	line-height: 1.8;
}


.l-footer-copy-wrapper {
  background: #1d2527;
}

.l-footer-copy {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 0;
  color: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
}
.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
  color: #fff;
}
.l-footer-copy a:hover {
  text-decoration: none;
}

.l-footer-copy .sitemap {
	width: 15%;
	margin: 0 0 0 4rem;
	box-sizing: border-box;
  text-align: right;
}
.l-footer-copy .sitemap a {
	padding: 0 1.5rem 0 0;
 	position: relative;
}
.l-footer-copy .sitemap a::after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .l-footer-area {
    min-width: 100%;
  }


  .l-footer-area__inner {
    max-width: 100%;
    padding: 4rem 2rem 4rem;
  }


  .l-footer-logo {
    max-width: 40%;
  }


  .l-footer-menu-wrapper {
    margin: 3rem auto 0;
  }

  
  .l-footer-menu {
    margin-bottom: 0;
  }


  .l-footer-menu__title {
    padding: 1.5rem 0 1.5rem 0;
  }
  .l-footer-menu__title::after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.l-footer-menu__title.open::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
}

  .l-footer-menu__title__link {
    display: block;
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
    pointer-events: none;
  }
  .l-footer-menu__title__link::after {
    display: none;
  }


  .l-footer-menu__list {
    display: none;
    margin-top: 0;
  }

  .l-footer-menu__list__item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 0;
    border-bottom: 1px solid #fff;
  }
  .l-footer-menu__list__item:first-child {
    display: block;
  }

  .l-footer-menu__list__link {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .l-footer-menu__list__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    background: none;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }


  .l-footer-submenu__list {
    margin: 0 0 0 0;
    padding: 0 0;
  }

  .l-footer-submenu__list__item {
    margin: 0 0 0 0;
    border-top: 1px solid #fff;
  }

  .l-footer-submenu__list__link {
    padding: 1.5rem 0 1.5rem 3rem;
  }
  .l-footer-submenu__list__link::before {
    top: 26px;
    left: 15px;
    width: 6px;
  }


  .l-footer-area .menseki {
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
  }


  .l-footer-area .ucp {
    margin: 1rem auto 0;
  }


  .l-footer-copy {
    display: block;
    max-width: 100%;
    padding: 1rem 1rem 6rem;
    font-size: 1.2rem;
    text-align: center;
  }

	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		padding: 0 1.5rem 0 1.5rem;
		font-size: 1.4rem;
		color: #fff;
		text-decoration: underline;
		position: relative;
	}
	.sitemap a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}



/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 75px;
  z-index: 0;
}

.l-pagetop__link {
  display: block;
}

@media screen and (max-width: 768px) {
	.l-pagetop {
		bottom: 10px;
		right: 5px;
		width: 40px;
		height: 40px;
	}
}



/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents_wrap {
  width: 100%;
	min-width: 1000px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.contents {
  width: 1000px;
	min-width: 1000px;
  margin: auto;
  padding: 6rem 0 12rem;
  position: relative;
  z-index: 0;
}

#category,
#page {
  width: 100%;
  margin: 0!important;
  padding: 0!important;
	box-sizing: border-box;
}

.flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .contents_wrap {
    min-width: 100%;
  }
  
	.contents {
		width: 100%;
		min-width: 100%;
		padding: 4rem 2rem 6rem;
	}

	#category,
	#page {
		float: inherit;
		width: 100%;
	}
  
  .flexBox {
    display: block;
  }
  
  .flexBox_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}



/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6,
.cc {
	font-weight: 900;
	line-height: 1.5;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	display: block;
	font-weight: 900;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.cc span {
	font-weight: 900;
}
h2 br,
h3 br,
h4 br,
h5 br,
h6 br,
.cc br {
	line-height: 0;
}
*:not(br){
  line-height: 1.5;
}

.contents h1 {
	margin: 0 0 3rem;
	font-size: 4.4rem;
	font-weight: 900;
	line-height: 1.4;
  position: relative;
}
.contents h1::before {
  content: "";
  display: block;
  background: url("img/eng_h1.png") left top no-repeat;
  background-size: contain;
  width: 240px;
  height: 20px;
  margin: 0 0 4rem;
  box-sizing: border-box;
}

.contents .operation {
	color: #939393;
	font-size: 1.2rem;
}


.contents h2 {
  background: #1d2527;
	margin: 8rem 0 2rem;
	padding: 2.5rem 8rem 2.5rem 4rem;
	color: #fff;
	font-size: 3.6rem;
  clip-path: polygon(0 0, calc(100% - 70px) 0, 100% 100%, 0% 100%);
  border-left: 5px solid #00c8ff;
	position: relative;
  z-index: 0;
}

.contents h2 a {
	padding: 0 6rem 0 0;
	color: #fff;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -25px;
	left: -40px;
	width: calc(100% + 7rem);
	height: calc(100% + 5rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_wh01.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 40px;
	margin-top: -20px;
}


.contents h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 2rem 6rem;
	font-size: 2.8rem;
	border-bottom: 3px solid #00c8ff;
  position: relative;
}
.contents h3::after {
	content: "";
	position: absolute;
	top: 10px;
  left: 0;
  background: url("img/icon_h3.png") left top no-repeat;
  background-size: contain;
	width: 50px;
	height: 30px;
}

.contents h3 a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h3 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 2rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
}


.contents h4 {
	margin: 4rem 0 2rem;
  padding: 0 0 0 3rem;
	font-size: 2.2rem;
  position: relative;
}
.contents h4::before {
	content: "";
	position: absolute;
	top: 15px;
  left: 0;
  background: #00b6e4;
	width: 20px;
	height: 3px;
}

.contents h4 a {
	padding: 0 6em 0 0;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
}

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 2rem;
    font-size: 2.5rem;
  }
  .contents h1::before {
    width: 50%;
    height: 0;
    margin: 0 0 2rem;
    padding-top: calc(50%*20/240);
  }

  .contents .operation {
    font-size: 1rem;
  }


  .contents h2 {
    margin: 3rem 0 2rem;
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    font-size: 2.2rem;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
    border-left: 3px solid #00c8ff;
  }

  .contents h2 a {
    padding: 0 4rem 0 0;
  }
  .contents h2 a::before {
    top: -15px;
    left: -15px;
    width: calc(100% + 5.5rem);
    height: calc(100% + 3rem);
  }
  .contents h2 a::after {
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }


  .contents h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1.5rem 3.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #00c8ff;
  }
  .contents h3::after {
    top: 8px;
    width: 24px;
    height: 15px;
  }

  .contents h3 a {
    padding: 0 4rem 0 0;
  }
  .contents h3 a::before {
    height: calc(100% + 1.5rem);
  }
  .contents h3 a::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }


  .contents h4 {
    margin: 3rem 0 2rem;
    padding: 0 0 0 2.5rem;
    font-size: 1.6rem;
  }
  .contents h4::before {
    top: 12px;
    width: 14px;
    height: 2px;
  }

  .contents h4 a {
    padding: 0 4rem 0 0;
  }
  .contents h4 a::after {
    background: url("img/arrow_bk01.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.contents p {
	margin: 2rem 0 2rem;
	font-size: 1.5rem;
	line-height: 2;
}

.contents p a {
	text-decoration: underline;
}
.contents p a:hover {
	text-decoration: none;
}

.txt_bold {
	color: #0077ff;
	font-weight: 900;
}
.marker {
	background: linear-gradient(transparent 75%, #f88674 0%);
	font-weight: 900;
}


.caption {
	margin: 1rem 0 0 0!important;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}
.caption::-webkit-scrollbar {
	height: 2px;
}
.caption::-webkit-scrollbar-track {
	background: #e7e7e7;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #aeaeae;
	border-radius: 0;
	box-shadow: none;
}
.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #aeaeae #e7e7e7;
  	scrollbar-width: thin;
  }
}

@media screen and (max-width: 768px) {
	.contents p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}
	
	.caption {
		margin: 1rem 0 0 0!important;
    font-size: 1rem;
	}
}



/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.5rem;
  line-height: 1.8;
	position: relative;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 11px;
  left: 0;
	background: #0077ff;
  width: 8px;
  height: 8px;
	box-sizing: border-box;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	/*----- ulリスト -----*/
	.contents ul {
		margin: 2rem 0 2rem;
	}
	.contents ul li {
		padding: 0 0 0 1.5rem;
		font-size: 1.4rem;
    line-height: 1.6;
	}
	.contents ul li::before {
		top: 9px;
	}
}

/*----- olリスト -----*/
.contents ol:not([class]) {
  margin: var(--s4) 0;
  counter-reset: number;
}
.contents ol:not([class]) li {
  padding: 0 0 0 2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.contents ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #00c8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.contents ol:not([class]) li + li {
  margin-top: 1em;
}

/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 450px;
	margin: 4rem auto 4rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	text-decoration: none!important;
	position: relative;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #ef5c45 url("img/btn_bg01.png") left -10px top -20px no-repeat;
  background-size: 240px auto;
	padding: 3rem 8rem 3rem 4rem;
}
.btn-web a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 65px;
  transform: translate(0,-50%);
  background: rgba(255,255,255,0.5);
	width: 1px;
	height: calc(100% - 3rem);
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
  background: url("img/arrow_wh03.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 10px;
	margin-top: -5px;
	transform: rotate(-45deg);
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #0077ff;
	padding: 3rem 7rem;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
  background: url("img/arrow_wh02.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 3rem 0 0;
	font-size: 1.5rem;
  font-weight: 900;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk02.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 10px;
	margin-top: -5px;
}
.btn-link.cl-wh a {
  color: #fff;
}
.btn-link.cl-wh a::after {
  background: url("img/arrow_wh03.png") left top no-repeat;
  background-size: contain;
}
.btn-link a:hover {
	text-decoration: none;
}


/*----- btn-tel（電話ボタン） -----*/
.btn-tel a {
	display: none;
}


/*----- btnBox -----*/
.btnBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5rem 0 0;
}
.btnBox > div {
  width: 440px;
  margin: 0 1.5rem 0;
}
.btnBox > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto 0;
}

@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 90%;
    margin: 3rem auto 3rem;
    font-size: 1.5rem;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a {
    background: #ef5c45 url("img/btn_bg01.png") left -5px top -15px no-repeat;
    background-size: 80% auto;
    padding: 2rem 6rem 2rem 3rem;
  }
  .btn-web a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(0,-50%);
    background: rgba(255,255,255,0.5);
    width: 1px;
    height: calc(100% - 3rem);
  }
  .btn-web a::after {
    right: 15px;
    width: 18px;
    height: 8px;
    margin-top: -4px;
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    padding: 2rem 4rem;
  }
  .btn-internal a::after {
    right: 15px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }


  /*----- btn-link（テキストリンク） -----*/
  .btn-link {
    text-align: right;
  }
  .btn-link a {
    display: inline-block;
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.4rem;
  }
  .btn-link a::after {
    width: 18px;
    height: 8px;
    margin-top: -4px;
  }
	
  
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #000;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 2rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 900;
		text-align: center;
		line-height: 1.5;
		text-decoration: none!important;
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    left: 25px;
    background: url("img/icon_tel.png") left top no-repeat;
    background-size: contain;
		width: 15px;
		height: 26px;
		margin-top: -13px;
	}
  
  
  /*----- btnBox -----*/
  .btnBox {
    display: block;
    margin: 3rem 0 0;
  }
  .btnBox > div {
    width: 90%;
    margin: 0 auto 1.5rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  }
  .btnBox > div a {
    display: block;
  }
}



/*--------------------------------------
　Table
---------------------------------------*/
table {
	background: #fff;
  width: 100%;
  margin: 8rem 0 8rem;
	box-sizing: border-box;
	border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #000;
}

table th {
	background: #e8f2f5;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
}
table th a {
	text-decoration: underline;
}
table th a:hover {
	text-decoration: none;
}

table td {
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
}
table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	table {
		margin: 5rem 0 5rem;
	}

	table th {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #000;
	}

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #000;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  
  .table_parts02 table th {
    display: table-cell;
    border-left: 1px solid #000;
  }
  .table_parts02 table td {
    display: table-cell;
    border-left: 1px solid #000;
  }
  
  .table_scroll {
    overflow-x: scroll;
		white-space: nowrap;
  }
  .table_scroll::-webkit-scrollbar {
    height: 2px;
  }
  .table_scroll::-webkit-scrollbar-track {
    background: #e7e7e7;
    margin: 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .table_scroll::-webkit-scrollbar-thumb {
    background: #aeaeae;
    border-radius: 0;
    box-shadow: none;
  }
	.table_scroll table {
		min-width: 768px;
    margin: 5rem 0 2rem;
	}
  .table_scroll table th {
    display: table-cell;
    border-left: 1px solid #000;
  }
  .table_scroll table td {
    display: table-cell;
    border-left: 1px solid #000;
  }
}

/* ===============================
   sec03_ability テーブル用 上書きCSS
   =============================== */

.sec03_ability table {
  width: 100%;
  border-collapse: collapse;
  margin: 4rem 0;
  border: none;
}

.sec03_ability table th,
.sec03_ability table td {
  background: #fff;
  padding: 2rem 1.5rem;
  font-size: 2.6rem;
  font-weight: 900;
  border-left: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  text-align: center;
  box-sizing: border-box;
}

/* 最上段見出し */
.sec03_ability thead th {
  background: #1d2527;
  color: #fff;
  font-size: 2rem;
  border-left: none;
  border-bottom: none;
}

/* 1列目 */
.sec03_ability tbody th {
  background: #ececec;
  font-size: 1.6rem;
}

/* 温度差セル */
.sec03_ability td.cl-bl02 {
  background: #d3f8ff;
  color: #0077ff;
  font-size: 3.2rem;
}

/* 小さめフォント指定 */
.sec03_ability td.small {
  font-size: 1.5rem;
}

/* 天気アイコン（晴れ） */
.sec03_ability .ws {
  display: inline-block;
  padding-left: 4.5rem;
  font-weight: 900;
  position: relative;
}
.sec03_ability .ws::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("img/icon_sunny.png") no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
}

/* 天気アイコン（くもり） */
.sec03_ability .wc {
  display: inline-block;
  padding-left: 4.5rem;
  font-weight: 900;
  position: relative;
}
.sec03_ability .wc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("img/icon_cloudy.png") no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
}

.sec03_ability table th,
.sec03_ability table td {
  white-space: nowrap;
  word-break: keep-all;
}


/* 天気/外気温のアイコン＋数値も折れ防止 */
.sec03_ability .ws,
.sec03_ability .wc {
  white-space: nowrap;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .sec03_ability table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sec03_ability table thead,
  .sec03_ability table tbody {
    display: table;
    width: 100%;
  }

  .sec03_ability table tr {
    display: table-row;
    width: 100%;
  }

  .sec03_ability table th,
  .sec03_ability table td {
    display: table-cell;
    font-size: 1.3rem;
    padding: 1rem;
  }

  .sec03_ability td.cl-bl02 {
    font-size: 1.6rem;
  }

  .sec03_ability .ws,
  .sec03_ability .wc {
    padding-left: 2.5rem;
  }

  .sec03_ability .ws::before,
  .sec03_ability .wc::before {
    width: 18px;
    height: 18px;
  }
  .sec03_ability td.small {
  font-size: 1.3rem;
}
}



/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
	margin: 8rem 0 8rem;
	box-sizing: border-box;
}

.float-img {
  position: relative;
}

.float-img .flame img {
	display: block;
	width: auto;
	margin: auto;
  vertical-align: top;
}

.float-img.fl {
  float: left;
  width: 460px;
  padding-right: 5rem;
}
.float-img.fr {
  float: right;
  width: 460px;
  padding-left: 5rem;
}

.float-img .caption {
	margin: 1rem 0 0 0;
	font-size: 1rem;
	color: #888;
	text-align: center;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
}

.float-wrap .catch {
	margin: 2rem 0 2rem 0;
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.5;
}
.float-wrap.ct .catch {
  text-align: center;
}

.float-wrap p {
	margin: 2rem 0 2rem;
}

@media screen and (max-width: 768px) {
	.float-wrap {
		margin: 5rem 0 5rem;
	}
	
	.float-img.fl {
		float: inherit;
		width: 100%;
		padding-right: 0;
	}
	.float-img.fr {
		float: inherit;
		width: 100%;
		padding-left: 0;
	}
	
	.float-img .caption {
		margin: 1rem 0 1.5rem 0;
	}

	.float-wrap .catch {
		margin: 1.5rem 0 1.5rem;
		font-size: 1.8rem;
	}
	.float-wrap.ct .catch {
    text-align: left;
  }

	.float-wrap p {
		margin: 1.5rem 0 1.5rem;
	}
}



/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  background: #f8f8f8;
  max-width: 880px;
  margin: 10rem auto 10rem;
  padding: 1rem 5rem 2rem;
  position: relative;
}

.toc_parts .ttl {
  padding: 0 0 0 6rem;
	font-size: 2.8rem;
	font-weight: 900;
  position: relative;
}
.toc_parts .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  background: #00c8ff;
  width: 20px;
  height: 30px;
  margin-top: -15px;
  transform: skewX(-30deg);
}

#toc {
	margin: 3rem 0 0 0;
  padding: 0 0 0 6rem;
}

#toc ul.chapter {
	margin: 0 0 0;
}
#toc ul.chapter li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 4.5rem;
  font-size: 1.8rem;
  overflow-wrap: break-word;
	position: relative;
	counter-increment: toccount;
}
#toc ul.chapter li:last-child {
	margin: 0 0 0 0;
}
#toc ul.chapter li::before {
	content: counter(toccount,decimal-leading-zero);
	position: absolute;
  top: -10px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	color: #00b6e4;
	font-size: 2.5rem;
  font-weight: 900;
}
#toc ul.chapter li a {
	display: block;
  font-weight: 900;
	text-decoration: none;
}

#toc ul.chapter li br {
	display: none;
}

/* --- ▼アコーディオン関連のCSS --- */

/*
.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -30px;
	background: #fff;
	max-width: 300px;
	margin: auto;
	padding: 2rem 5rem;
	box-sizing: border-box;
  border: 2px solid #000;
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	background: url("img/acc_open.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	transition: all 0.4s;
}
.toc_parts .acc_btn.is-show::after {
	background: url("img/acc_close.png") left top no-repeat;
  background-size: contain;
}
.toc_parts .acc_btn span {
	font-weight: 900;
}
.toc_parts .acc_btn span:before {
	content: "もっと見る";
}
.toc_parts .acc_btn.is-show span:before {
	content: "閉じる";
}

.toc_parts .acc_box {
	overflow: hidden;
	position: relative;
}
.toc_parts .acc_box.is-hide {
  height: 180px;
}
.toc_parts .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(top, rgba(248,248,248,0) 0%, rgba(248,248,248,.9) 50%, rgba(248,248,248,.9) 50%, #f8f8f8 100%);
  background: linear-gradient(top, rgba(248,248,248,0) 0%, rgba(248,248,248,.9) 50%, rgba(248,248,248,.9) 50%, #f8f8f8 100%);
	width: 100%;
  height: 50px;
	transition: all 0.4s;
  z-index: 1;
}
.toc_parts .acc_btn.is-show + .acc_box::before {
	background: none;
	height: auto;
}
*/

.toc_parts .toc_parts_inner {
  padding: 0 0 3rem;
}

@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 3rem auto 5rem;
    padding: 0 2rem 1rem;
  }

  .toc_parts .ttl {
    padding: 0 0 0 3.5rem;
    font-size: 1.8rem;
  }
  .toc_parts .ttl::before {
    left: 10px;
    width: 12px;
    height: 20px;
    margin-top: -10px;
  }

  #toc {
    margin: 2rem 0 0 0;
    padding: 0 0 0 0;
  }

  #toc ul.chapter {
    margin: 0 0 0;
  }
  #toc ul.chapter li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 3.5rem;
    font-size: 1.5rem;
  }
  #toc ul.chapter li::before {
    top: -6px;
    font-size: 2rem;
  }

/* --- ▼アコーディオン関連のCSS --- */
/*
	.toc_parts .acc_btn {
    bottom: -25px;
    max-width: 75%;
    margin: auto;
    padding: 1.5rem 4rem;
    border: 1px solid #000;
    font-size: 1.4rem;
  }
  .toc_parts .acc_btn::after {
    right: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }

  .toc_parts .acc_box.is-hide {
    height: 150px;
  }
*/

  .toc_parts .toc_parts_inner {
    padding: 0 0 2rem;
  }
}



/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  background: #f8f8f8;
  max-width: 880px;
  margin: 10rem auto 10rem;
	padding: 3rem 5rem 5rem;
  position: relative;
}

.related-article01-title {
  padding: 0 0 0 4rem;
	font-size: 2.8rem;
	font-weight: 900;
  position: relative;
}
.related-article01-title span {
	font-weight: 900;
}
.related-article01-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #00c8ff;
  width: 20px;
  height: 30px;
  margin-top: -15px;
  transform: skewX(-30deg);
}

.related-article01-frame p.catch-01 {
  margin: 0 0 0;
  font-weight: 900;
}

ul.related-article01-list {
	margin: 3rem 0 0;
  padding: 0 0 0 4rem;
}
ul.related-article01-list li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 0;
  font-size: 1.8rem;
	position: relative;
}
ul.related-article01-list li:last-child {
	margin: 0 0 0 0;
}
ul.related-article01-list li::before {
  display: none;;
}
ul.related-article01-list li a {
  padding: 0 0 0 5rem;
  font-weight: 900;
	text-decoration: none;
  position: relative;
}
ul.related-article01-list li a::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
}

@media screen and (max-width: 768px) {
  .related-article01-frame {
    max-width: 100%;
    margin: 3rem auto 5rem;
    padding: 2.5rem 2rem 3rem;
  }

  .related-article01-title {
    padding: 0 0 0 2.5rem;
    font-size: 1.8rem;
  }
  .related-article01-title::before {
    width: 12px;
    height: 20px;
    margin-top: -10px;
  }

  ul.related-article01-list {
    margin: 2rem 0 0;
    padding: 0 0 0 2.5rem;
  }
  ul.related-article01-list li {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
  }
  ul.related-article01-list li a {
    padding: 0 0 0 3rem;
  }
  ul.related-article01-list li a::before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}



/*--------------------------------------
　icon_ttl
---------------------------------------*/
.icon_ttl {
  background: #e8f2f4;
  max-width: 950px;
  margin: 8rem 0 8rem auto;
  padding: 3rem 3rem 3rem 8rem;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.icon_ttl .icon {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translate(0,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: calc(100% + 20px);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  z-index: 0;
}
.icon_ttl .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #00c8ff;
  width: 100%;
  height: 100%;
  font-weight: 900;
  transform: skewX(-20deg);
  z-index: -1;
}
.icon_ttl.num .icon {
  font-size: 4rem;
}

@media screen and (max-width: 768px) {
  .icon_ttl {
    max-width: calc(100% - 20px);
    margin: 5rem 0 5rem auto;
    padding: 1.5rem 1.5rem 1.5rem 7rem;
    font-size: 1.8rem;
  }
  .icon_ttl .icon {
    left: -20px;
    width: 70px;
    height: calc(100% + 10px);
    font-size: 1.5rem;
  }
  .icon_ttl.num .icon {
    font-size: 2.8rem;
  }
}



/*--------------------------------------
　comment_parts
---------------------------------------*/
.comment_parts {
  margin: 10rem 0 10rem;
}

.comment_parts .comment_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 5rem;
}
.comment_parts .comment_item:last-child {
  margin: 0 0 0;
}

.comment_parts .sbBox {
  background: #fff url("img/comment_parts_bg.png") left -50px top no-repeat;
  background-size: 220px auto;
  width: calc(100% - 240px);
  padding: 5rem 5rem 5rem;
  border: 2px solid #d9d9d9;
  position: relative;
  transform: skewX(-10deg);
}
.comment_parts .comment_item:nth-child(even) .sbBox {
  order: 2;
}
.comment_parts .sbBox:before {
	content: "";
	position: absolute;
	top: 50%;
  transform: translate(0,-50%);
	width: 0;
	height: 0;
	border-style: solid;
  z-index: 2;
}
.comment_parts .sbBox:after {
	content: "";
	position: absolute;
	top: 50%;
  transform: translate(0,-50%);
	width: 0;
	height: 0;
	border-style: solid;
  z-index: 1;
}
.comment_parts .comment_item:nth-child(odd) .sbBox:before {
	left: calc(100% - 1px);
	border-width: 32px 0 0 42px;
	border-color: transparent transparent transparent #fff;
}
.comment_parts .comment_item:nth-child(odd) .sbBox:after {
	left: 100%;
	border-width: 36px 0 0 46px;
	border-color: transparent transparent transparent #d9d9d9;
}
.comment_parts .comment_item:nth-child(even) .sbBox:before {
	right: calc(100% - 1px);
	border-width: 32px 42px 0 0;
	border-color: transparent #fff transparent transparent;
}
.comment_parts .comment_item:nth-child(even) .sbBox:after {
	right: 100%;
	border-width: 36px 46px 0 0;
	border-color: transparent #d9d9d9 transparent transparent;
}

.comment_parts .txtBox {
  transform: skewX(10deg);
}
.comment_parts .cc {
  font-size: 2.4rem;
}
.comment_parts .txt {
  margin: 3rem 0 0;
}

.comment_parts .imgBox {
  width: 190px;
  margin: 6rem 0 0;
}
.comment_parts .comment_item:nth-child(even) .imgBox {
  order: 1;
}
.comment_parts .name {
  margin: 2rem 0 0;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .comment_parts {
    margin: 6rem 0 6rem;
  }

  .comment_parts .comment_item {
    margin: 0 0 3rem;
  }

  .comment_parts .sbBox {
    background: #fff url("img/comment_parts_bg.png") left -20px top no-repeat;
    background-size: 40% auto;
    width: calc(100% - 2rem);
	margin: 1rem auto 0;
    padding: 3rem 2rem 3rem;
    border: 1px solid #d9d9d9;
    transform: skewX(-2deg);
    order: 2;
  }
  .comment_parts .comment_item:nth-child(even) .sbBox {
    margin: 3rem auto 0;
  }
  .comment_parts .sbBox:before {
    top: inherit;
    bottom: 100%;
    transform: translate(0,0);
  }
  .comment_parts .sbBox:after {
    top: inherit;
    bottom: 100%;
    transform: translate(0,0);
  }
  .comment_parts .comment_item:nth-child(odd) .sbBox:before {
    left: calc(40% + 1px);
    border-width: 23px 0 0 23px;
    border-color: transparent transparent transparent #fff;
  }
  .comment_parts .comment_item:nth-child(odd) .sbBox:after {
    left: 40%;
    border-width: 26px 0 0 26px;
    border-color: transparent transparent transparent #d9d9d9;
  }
  .comment_parts .comment_item:nth-child(even) .sbBox:before {
    right: calc(50% + 1px);
    border-width: 23px 23px 0 0;
    border-color: transparent #fff transparent transparent;
  }
  .comment_parts .comment_item:nth-child(even) .sbBox:after {
    right: 50%;
    border-width: 26px 26px 0 0;
    border-color: transparent #d9d9d9 transparent transparent;
  }

  .comment_parts .txtBox {
    transform: skewX(5deg);
  }
  .comment_parts .cc {
    font-size: 1.8rem;
  }
  .comment_parts .txt {
    margin: 1.5rem 0 0;
  }

  .comment_parts .imgBox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 0 0;
    position: relative;
    order: 1;
    flex-direction: column;
    align-items: center;
  }
  .comment_parts .comment_item:nth-child(even) .imgBox {
    margin: 0 0 -2rem auto;
  }
  .comment_parts .image {
    order: 2;
  }
  .comment_parts .name {
    margin: 0 0 5px;
    font-size: 1.4rem;
    order: 1;
  }
}



/*--------------------------------------
  interview_parts01
---------------------------------------*/
.interview_parts01 {
  margin: 10rem 0 10rem;
}

.interview_parts01 .interview_item {
  display: flex;
  justify-content: space-between;
}

.interview_parts01 .imgBox {
  width: 240px;
  position: relative;
  z-index: 1;
}

.interview_parts01 .txtBox {
  width: calc(100% - 300px);
  margin: 3rem 0 0;
}

.interview_parts01 .nameBox .job {
  display: inline-block;
  background: #00c8ff;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  margin: 0 1.5rem 0 0;
  padding: 5px 1.5rem;
  font-size: 1.8rem;
}
.interview_parts01 .nameBox .name {
  display: inline-block;
  font-size: 1.5rem;
}
.interview_parts01 .nameBox .name .large {
  font-size: 2.4rem;
}

.interview_parts01 .txt_block {
  margin: 3rem 0 0;
  padding: 5rem 5rem 5rem 0;
  position: relative;
  z-index: 0;
}
.interview_parts01 .txt_block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #e8f2f5;
  width: calc(100% + 250px);
  height: 100%;
  transform: skewX(20deg);
  z-index: -1;
}

.interview_parts01 .cc {
  font-size: 2.4rem;
}

.interview_parts01 .txt {
  margin: 3rem 0 0;
}


@media screen and (max-width: 768px) {
  .interview_parts01 {
    margin: 6rem 0 6rem;
  }

  .interview_parts01 .interview_item {
    display: block;
  }

  .interview_parts01 .flexBox_sp {
    align-items: center;
  }

  .interview_parts01 .imgBox {
    width: 35%;
  }

  .interview_parts01 .txtBox {
    width: 100%;
    margin: 0 0 0;
  }

  .interview_parts01 .nameBox {
    width: 60%;
	z-index: 1;
  }
  .interview_parts01 .nameBox .job {
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    margin: 0 1rem 0 0;
    padding: 5px 1rem;
    font-size: 1.4rem;
  }
  .interview_parts01 .nameBox .name {
    display: block;
    margin: 5px 0 0;
    font-size: 1.4rem;
  }
  .interview_parts01 .nameBox .name .large {
    font-size: 2rem;
  }

  .interview_parts01 .txt_block {
    width: calc(100% - 2rem);
    margin: -2rem auto 0;
    padding: 4rem 3rem 3rem 3rem;
  }
  .interview_parts01 .txt_block::after {
    width: 100%;
    transform: skewX(10deg);
  }

  .interview_parts01 .cc {
    font-size: 1.8rem;
  }

  .interview_parts01 .txt {
    margin: 1.5rem 0 0;
  }
}



/*--------------------------------------
　interview_parts02
---------------------------------------*/
.interview_parts02 {
  margin: 10rem 0 10rem;
}

.interview_parts02 .interview_item {
  margin: 0 0 6rem;
}
.interview_parts02 .interview_item:last-child {
  margin: 0 0 0;
}

.interview_parts02 .interview_ttl {
  padding: 0 0 0 15rem;
  font-size: 2.4rem;
  position: relative;
}
.interview_parts02 .interview_ttl::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background: #00c8ff;
  width: 130px;
  height: 3px;
}

.interview_parts02 .txt {
  margin: 3rem 0 0;
}

@media screen and (max-width: 768px) {
  .interview_parts02 {
    margin: 6rem 0 6rem;
  }

  .interview_parts02 .interview_item {
    margin: 0 0 4rem;
  }

  .interview_parts02 .interview_ttl {
    padding: 0 0 0 6rem;
    font-size: 1.8rem;
  }
  .interview_parts02 .interview_ttl::before {
    width: 50px;
    height: 2px;
  }

  .interview_parts02 .txt {
    margin: 1.5rem 0 0;
  }
}



/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  background: #1d2527;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  margin: 10rem 0 10rem;
  padding: 4rem 6rem 6rem;
}

.summary_parts .logoWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary_parts .logo {
  width: 200px;
}
.summary_parts .edit {
  width: calc(100% - 230px);
  font-size: 2.8rem;
}

.summary_parts .txtBox {
  margin: 4rem 0 0;
}
.summary_parts .summary_ttl {
  font-size: 2.4rem;
}
.summary_parts .txt {
  margin: 2rem 0 0;
}

.summary_parts .btn-internal a {
  margin: 4rem auto 0;
}

@media screen and (max-width: 768px) {
  .summary_parts {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    margin: 6rem 0 6rem;
    padding: 3rem 2rem 4rem;
  }

  .summary_parts .logoWrap {
    display: block;
  }
  .summary_parts .logo {
    width: 45%;
    margin: auto;
  }
  .summary_parts .edit {
    width: 100%;
    margin: 1rem 0 0;
    font-size: 2rem;
    text-align: center;
  }

  .summary_parts .txtBox {
    margin: 2rem 0 0;
  }
  .summary_parts .summary_ttl {
    font-size: 1.8rem;
  }
  .summary_parts .txt {
    margin: 1.5rem 0 0;
  }

  .summary_parts .btn-internal a {
    margin: 3rem auto 0;
  }
}



/*--------------------------------------
　tag_parts
---------------------------------------*/
.tag_parts {
  margin: 10rem 0 10rem;
}

ul.tagList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0;
}
ul.tagList li {
  background: #e0e0e0;
  margin: 0 5px 5px 0;
  padding: 5px 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}
ul.tagList li:last-child {
  margin: 0 5px 5px 0;
}
ul.tagList li::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .tag_parts {
    margin: 6rem 0 6rem;
  }

  ul.tagList li {
    margin: 0 3px 3px 0;
    padding: 3px 1rem;
    font-size: 1.5rem;
  }
  ul.tagList li:last-child {
    margin: 0 3px 3px 0;
  }
}



/*--------------------------------------
　sv_parts
---------------------------------------*/
.sv_parts {
  margin: 10rem 0 10rem;
}

.sv_parts .eng {
  width: 750px;
  margin: 0 0 0 -12rem;
}

.sv_parts .sv_parts_inner {
  padding: 8rem 0 8rem;
  position: relative;
  z-index: 0;
}
.sv_parts .sv_parts_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/sv_parts_bg.png") left bottom no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100%;
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -1;
}

.sv_parts .sv_parts_block {
  display: flex;
  justify-content: space-between;
}

.sv_parts .boxL {
  width: 350px;
}

.sv_parts .boxR {
  width: calc(100% - 400px);
}

.sv_parts .c_name {
  font-size: 1.8rem;
}
.sv_parts .c_name .sub {
  display: inline-block;
  background: #00c8ff;
  margin: 0 2rem 0 0;
  padding: 5px 1rem;
  font-size: 1.6rem;
}

.sv_parts .sv_ttl {
  margin: 2rem 0 0;
  font-size: 3rem;
}

.sv_parts .txt {
  margin: 2rem 0 0;
}

.sv_parts .btn-link a {
  margin: 3rem 0 0;
}

.sv_parts .btn-web a {
  margin: 3rem auto 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sv_parts {
    margin: 6rem 0 6rem;
  }

  .sv_parts .eng {
    width: 100%;
    margin: 0 0 0 0;
  }

  .sv_parts .sv_parts_inner {
    padding: 4rem 0 5rem;
  }
  .sv_parts .sv_parts_inner::after {
    background: url("img/sv_parts_bg.png") left top no-repeat;
    background-size: 100% 100%;
    min-width: 100%;
  }

  .sv_parts .sv_parts_block {
    display: block;
  }

  .sv_parts .boxL {
    width: 100%;
  }

  .sv_parts .boxR {
    width: 100%;
  }

  .sv_parts .c_name {
    font-size: 1.6rem;
  }
  .sv_parts .c_name .sub {
    margin: 0 1rem 0 0;
    padding: 3px 8px;
    font-size: 1.4rem;
  }

  .sv_parts .sv_ttl {
    margin: 1rem 0 2rem;
    font-size: 1.8rem;
  }

  .sv_parts .txt {
    margin: 1.5rem 0 0;
  }

  .sv_parts .btn-link a {
    margin: 2rem 0 0;
  }

  .sv_parts .btn-web a {
    margin: 2rem auto 0;
  }
}



/*--------------------------------------
　下層 cate2
---------------------------------------*/
.lower_cate .header_lower {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.lower_cate .header_lower::after {
  display: none;
}
.lower_cate .sitename a {
  display: inline-block;
  mix-blend-mode: difference;
  color: #fff;
}

.lower_cate .contents_wrap {
  position: relative;
  z-index: 0;
}
.lower_cate .contents_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/lower_bg.png") left top no-repeat;
  background-size: auto auto;
  width: 100%;
  height: 630px;
  z-index: -1;
}

.lower_cate .contents {
  padding: 3rem 0 12rem;
}

.lower_cate #pankuzu {
  margin: 0 0 0;
}

.cate_mv {
  background: url("img/lower_cate_mv.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  min-width: 1000px;
  padding: 4rem 8rem 8rem;
  position: relative;
}
.warehouse-casestudy-shibusawa .cate_mv {
  background: url("img/lower_cate_mv01.jpg") center center no-repeat;
  background-size: cover;
}
.kokura-kokusai-ryutsu-center .cate_mv {
  background: url("img/lower_cate_mv02.jpg") center center no-repeat;
  background-size: cover;
}
.yakiyama-center .cate_mv {
  background: url("img/lower_cate_mv03.jpg") center center no-repeat;
  background-size: cover;
}
.chugokumokuzai .cate_mv {
  background: url("img/lower_cate_mv04.jpg") center center no-repeat;
  background-size: cover;
}
.moriyama .cate_mv {
  background: url("img/lower_cate_mv05.jpg") center center no-repeat;
  background-size: cover;
}
.hachijo .cate_mv {
  background: url("img/lower_cate_mv06.jpg") center center no-repeat;
  background-size: cover;
}
/*.countermeasure .cate_mv {
  background: url("img/lower_cate_mv07.jpg") center center no-repeat;
  background-size: cover;
}
.countermeasure .cate_mv {
  background: url("img/lower_cate_mv08.jpg") center center no-repeat;
  background-size: cover;
}
.countermeasure .cate_mv {
  background: url("img/lower_cate_mv09.jpg") center center no-repeat;
  background-size: cover;
}*/

.cate_mv .num {
  width: 120px;
}
.cate_mv .mv_box {
  margin: 20rem 0 0;
}
.cate_mv h1 {
  color: #fff;
}
.cate_mv h1 span {
  display: inline;
  background: linear-gradient(transparent 0%, #262829 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2.5rem;
  font-weight: 900;
}
.cate_mv h1 .large {
  color: #00c8ff;
  font-size: 7.6rem;
  line-height: 1.3;
}
.cate_mv h1 .small {
  padding: 1rem 2.5rem;
  font-size: 3.4rem;
  line-height: 1.8;
}
.cate_mv ul.tagList {
  max-width: 50%;
  margin: 3rem 0 0;
}
.cate_mv ul.tagList li {
  padding: 3px 1rem;
  font-size: 1.5rem;
  font-weight:700;
}
.cate_mv .operation {
  display: inline-block;
  background: rgba(255,255,255,0.8);
  padding: 5px 5px;
  margin: 2rem 0 0;
	font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .lower_cate .contents_wrap::after {
    background: url("img/lower_bg.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*630*1240);
  }

  .lower_cate .contents {
    padding: 2rem 2rem 6rem;
  }

  .cate_mv {
    min-width: 100%;
    padding: 5rem 2rem 5rem;
  }
  .cate_mv .num {
    width: 25%;
  }
  .cate_mv .mv_box {
    margin: 8rem 0 0;
  }
  .cate_mv h1 span {
    padding: 0 1.2rem;
  }
  .cate_mv h1 .large {
    color: #00c8ff;
    font-size: 3.6rem;
  }
  .cate_mv h1 .small {
    padding: 8px 1.2rem;
    font-size: 1.8rem;
  }
  .cate_mv ul.tagList {
    max-width: 100%;
    margin: 2rem 0 0;
  }
  .cate_mv ul.tagList li {
    padding: 3px 8px;
    font-size: 1.4rem;
  }
  .cate_mv .operation {
    display: block;
    margin: 1.5rem 0 0;
    font-size: 1rem;
  }
}


