@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: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}

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

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*--------------------------------------------------------------------------------
  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: #1d1d1d;
  font-size: 1.4rem;
  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;
}

a {
	color: #1d1d1d;
  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: bold;
}

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;
}

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

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}

@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;
	}
}


/*--------------------------------------------------
　color
--------------------------------------------------*/
.cl-wh {
  color: #fff;
}
.cl-or {
  color: #ff6d19;
}
.cl-yl01 {
  color: #ffdb87;
}
.cl-yl02 {
  color: #f9b71c;
}
.cl-gn01 {
  color: #16b857;
}
.cl-gn02 {
  color: #16b857;
}
.cl-bl {
  color: #1895f0;
}


/*--------------------------------------------------
　background
--------------------------------------------------*/
.bg-or {
  background: #ff6c19;
}
.bg-yl {
  background: #e1a519;
}
.bg-gn {
  background: #1cb459;
}
.bg-bl {
  background: #1895f0;
}


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

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

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

.p-sitemap br {
  display: none;
}

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

  .contents {
    width: 100%;
    padding: 4rem 2rem 6rem;
  }
}


/*--------------------------------------------------
　fixed-nav
--------------------------------------------------*/
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0 2rem;
  z-index: 1;
  background: #ffffffb3;
}

.fixed-nav__inner {
  display: flex;
  justify-content: flex-end;
  padding: 0 120px 0 0;
  gap: 12px;
}

.fixed-nav .btn-web {
  margin: 0 2rem 0 0;
}
.fixed-nav .btn-web,
.fixed-nav .btn-internal {
  width: 350px;
}
.fixed-nav .btn-web a,
.fixed-nav .btn-internal a {
  max-width: 100%;
  margin: 0 0 0;
  padding: 1.5rem 5rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .fixed-nav {
    top: inherit;
    bottom: 0;
    padding: 5px 5px;
  }

  .fixed-nav__inner {
    display: flex;
    justify-content: space-between;
    gap: 0 5px;
    padding: 0 0 0 0;
  }

  .fixed-nav .btn-web {
    margin: 0 0 0 0;
  }
  .fixed-nav .btn-web,
  .fixed-nav .btn-internal {
    width: calc(100% / 2);
  }
  .fixed-nav .btn-web a,
  .fixed-nav .btn-internal a {
    padding: 8px 2rem;
    font-size: 3vw;
    box-shadow: 3px 3px 0px 0px #242424;
  }
  .fixed-nav .btn-web a::after,
  .fixed-nav .btn-internal a::after {
    right: 5px;
    width: 16px;
    height: 16px;
  }
}


/*--------------------------------------------------
　mv-lower
--------------------------------------------------*/
.mv-lower {
  background: #f9b71c;
  padding: 7rem 0 4rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.mv-lower::before {
	content: "";
  position: absolute;
  top: -90px;
  left: -35px;
  background: #ff6e12;
  width: 250px;
  height: 250px;
  box-sizing: border-box;
  border-radius: 100%;
  z-index: -1;
}
.mv-lower::after {
	content: "";
  position: absolute;
  bottom: -100px;
  right: -90px;
  background: #1cb459;
  width: 320px;
  height: 320px;
  box-sizing: border-box;
  border-radius: 100%;
  z-index: -1;
}

.mv-lower__inner {
  width: 1100px;
  margin: auto;
}

.mv-lower .h1__wrap {
  background: #fff;
  max-width: 960px;
  margin: auto;
  padding: 5rem 10rem 5rem;
  text-align: center;
  border-radius: 20px;
  position: relative;
}
.mv-lower .h1__wrap::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  box-sizing: border-box;
  border: 20px solid #1895f0;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 100%;
}
.mv-lower .h1__wrap:after {
	content: "";
	position: absolute;
	top: calc(100% - 5px);
	left: 50%;
  transform: translate(-50%,0) rotate(-10deg);
  box-sizing: border-box;
  border-right: 50px solid #fff;
  border-bottom: 40px solid transparent;
}
.mv-lower h1 {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
.mv-lower h1::before {
  content: "TOPIC";
  display: block;
  position: absolute;
  bottom: calc(100% + 4px);
  left: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-align: left;
  line-height: 1;
  margin-left: -2.5rem;
  color: #c7c7c7;
}

@media screen and (max-width: 768px) {
  .mv-lower {
    padding: 2rem 2rem 2rem;
  }
  .mv-lower::before {
    display: none;
  }
  .mv-lower::after {
    bottom: -50px;
    right: -50px;
    width: 50%;
    height: 0;
    padding-top: 50%;
  }

  .mv-lower__inner {
    width: 100%;
  }

  .mv-lower .h1__wrap {
    max-width: 100%;
    padding: 3rem 2rem 2rem;
    border-radius: 10px;
  }
  .mv-lower .h1__wrap::before {
    width: 32px;
    height: 32px;
    border: 10px solid #1895f0;
    border-top: none;
    border-left: none;
  }
  .mv-lower .h1__wrap:after {
    border-right: 30px solid #fff;
    border-bottom: 20px solid transparent;
  }
  .mv-lower h1 {
    font-size: 2.5rem;
  }
  .mv-lower h1::before {
    bottom: calc(100% + 5px);
    font-size: 1.1rem;
    margin-left: 1.5rem;
  }
}


/*--------------------------------------------------
　Header
--------------------------------------------------*/
header {
	width: 100%;
	min-width: 1100px;
	padding: 2rem 1rem 1rem;
	z-index: 1;
}

header .sitename {
  display: inline-block;
  font-size: 1.3rem;
	line-height: 1.5;
}
header .sponsored {
  display: inline-block;
  font-size: 1.3rem;
	line-height: 1.5;
}
header .operation {
  font-size: 1.3rem;
	line-height: 1.5;
}

.header_lower {
  position: absolute;
  top: 0;
  left: 0;
}
.header_lower .boxInner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header_lower .logo-header {
  width: 170px;
}
.header_lower .logo-header a {
  display: block;
}
.header_lower .sitename__wrap {
  width: calc(100% - 170px);
  text-align: right;
}

@media screen and (max-width: 768px) {
  header {
    min-width: 100%;
    padding: 5px 5px;
  }

  header .sitename {
    font-size: 1.1rem;
  }
  header .sponsored {
    font-size: 1.1rem;
  }
  header .operation {
    font-size: 1.1rem;
  }

  .header_lower {
    background: #fff;
    position: relative;
  }
  .header_lower .logo-header {
    width: calc(100% - 2rem);
    margin: 1.5rem auto 1.5rem;
    order: 2;
  }
  .header_lower .sitename__wrap {
    width: 100%;
    text-align: center;
    order: 1;
  }
}


/*--------------------------------------------------
　#hb-menu
--------------------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
	width: 70px;
	height: 70px;
	background: #161616;
	box-sizing: border-box;
  border-radius: 10px;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #fff;
	width: 34px;
	height: 2px;
	margin: auto;
	border-radius: 0;
	transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2),
#hb-menu span:nth-of-type(3){
	margin-top: 11px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span:nth-of-type(1) {
	-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
	-ms-transform: translateY(10px) translateX(0) rotate(45deg);
	transform: translateY(10px) 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(-10px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-10px) translateX(0) rotate(-45deg);
	transform: translateY(-10px) 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,0,0,0.45);
	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: #525252;
	width: 45%;
	height: 100%;
	padding: 12rem 0;
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .5s;
	transform: translateX(100%);
	z-index: 9999;
}
.hb-open .g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	transform: translateX(0);
	transform: translateZ(0);
}
.g-nav .g-nav-inner::-webkit-scrollbar {
  display: none;
}

.hb-logo {
  width: 80%;
  margin: 0 auto 3rem;
}
.hb-logo a {
  display: block;
}

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

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

.hb_menu_title {
	padding: 2.5rem 0 2.5rem 0;
	border-bottom: 1px solid #fff;
  position: relative;
}
.hb_menu_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0,-50%) rotate(90deg);
  background: url("img/arrow-wh03.png") left top no-repeat;
  background-size: contain;
  width: 24px;
	height: 18px;
  box-sizing: border-box;
}
.hb_menu_title.open::after {
  transform: translate(0,-50%) rotate(-90deg);
}	
.hb_menu_title.first {
  padding: 2.5rem 0 2.5rem 0;
}
.hb_menu_title.first::after {
  display: none;
}

.hb_menu_title_link {
	display: block;
	padding: 0 4rem 0 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
  pointer-events: none;
	position: relative;
}
.hb_menu_title.first .hb_menu_title_link {
  pointer-events: auto;
  position: relative;
}
.hb_menu_title.first .hb_menu_title_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0,-50%);
  background: url("img/arrow-wh03.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 18px;
  box-sizing: border-box;
}

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

.hb_menu_list_item {
  width: 100%;
  padding: 2.5rem 0 2.5rem 2rem;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
  position: relative;
  background: #3b3b3b;
}
.hb_menu_list_item:first-child {
	display: block;
}

.hb_menu_list_link {
	display: block;
	padding: 0 4rem 0 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.hb_menu_list_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0,-50%);
  background: url("img/arrow-wh03.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 18px;
  box-sizing: border-box;
}

.g-nav br {
  display: none;
}

@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    position: fixed;
    top: 5px;
    right: 5px;
    transform: translate(0,0);
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  #hb-menu span {
    width: 24px;
    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: 100%;
    padding: 7rem 2rem;
  }

  .hb-logo {
    width: 100%;
    margin: 0 auto 2rem;
  }

  .hb_menu_wrapper {
    max-width: 100%;
    margin: 0 0 0;
  }

  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
  }
  .hb_menu_title::after {
    right: 0;
    width: 19px;
    height: 14px;
  }
  .hb_menu_title.first {
    padding: 1.5rem 0 1.5rem 0;
  }

  .hb_menu_title_link {
    padding: 0 3rem 0 0;
    font-size: 1.5rem;
  }
  .hb_menu_title.first .hb_menu_title_link::after {
    right: 0;
    width: 19px;
    height: 14px;
  }

  .hb_menu_list_item {
    width: 100%;
    padding: 1.5rem 0 1.5rem 1rem;
  }

  .hb_menu_list_link {
    padding: 0 3rem 0 0;
  }
  .hb_menu_list_link::after {
    right: 0;
    width: 19px;
    height: 14px;
  }
}


/*--------------------------------------------------
　Pankuzu
--------------------------------------------------*/
#pankuzu {
	width: 960px;
	margin: 5rem auto 0;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
}
#pankuzu a {
	display: inline-block;
  text-decoration: underline;
  color: #fff;
	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 {
	width: 100%;
	min-width: 1100px;
  position: relative;
  z-index: 0;
}
.l-footer-area::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%,0);
  background: #525252;
  width: 100%;
  height: calc(100% - 120px);
  box-sizing: border-box;
  z-index: -1;
}

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

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

.footer-media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 40px;
  background: #fff;
  padding: 4rem 6rem;
  border: 2px solid #e6e6e6;
  border-radius: 20px;
}
.l-footer-logo {
	width: 230px;
}
.l-footer-logo a {
	display: block;
}
.footer-media .media-txtBox {
	width: calc(100% - 230px);
}
.footer-media .media-ttl {
  font-size: 2rem;
}
.footer-media .txt {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 2;
}
.footer-media .btn-link a {
  margin: 2rem 0 0;
}

.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: bold;
	line-height: 1.6;
  transition: all 0.3s ease;
	position: relative;
}
.l-footer-menu__title__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-wh02.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
  box-sizing: border-box;
}

.l-footer-menu__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
	box-sizing: border-box;
	margin-top: 3rem;
  gap: 0 30px;
}

.l-footer-menu__list__item {
  width: calc((100% - 60px) / 3);
  margin: 0 0 15px 0;
	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.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-wh03.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 18px;
  box-sizing: border-box;
}

.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: #5f5f5f;
	max-width: 750px;
  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 .menseki a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}

.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: #242424;
}

.l-footer-copy {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  color: #fff;
	font-size: 1.3rem;
	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;
  transform: translate(0,-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

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

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

  .footer-media {
    display: block;
    padding: 3rem 2rem;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
  }
  .l-footer-logo {
    width: 55%;
    margin: 1rem auto 0;
  }
  .footer-media .media-txtBox {
    width: 100%;
  }
  .footer-media .media-ttl {
    font-size: 1.7rem;
    text-align: center;
  }
  .footer-media .txt {
    margin: 1.5rem 0 0;
    line-height: 1.8;
  }
  .footer-media .btn-link a {
    margin: 1.5rem 0 0;
  }

  .l-footer-menu-wrapper {
    margin: 4rem 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: 0;
    transform: translate(0,-50%) rotate(90deg);
    background: url("img/arrow-wh02.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
  }
	.l-footer-menu__title.open::after {
    transform: translate(0,-50%) rotate(-90deg);
	}
  
  
  .l-footer-menu__title__link {
    display: block;
    padding: 0 3rem 0 0;
    font-size: 1.5rem;
    pointer-events: none;
  }
  .l-footer-menu__title__link::after {
    display: none;
  }

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

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

  .l-footer-menu__list__link {
    padding: 1.5rem 3rem 1.5rem 1.5rem;
  }
  .l-footer-menu__list__link::after {
    right: 5px;
    width: 19px;
    height: 14px;
  }

  .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;
    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;
    transform: translate(0,-50%) rotate(45deg);
		width: 6px;
		height: 6px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
	}
}


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

.l-pagetop__link {
  display: block;
}

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


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

.contents h2:not([class]) {
	background: #ffe9ba;
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 4rem;
	font-size: 3.2rem;
	position: relative;
}
.contents h2:not([class])::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  box-sizing: border-box;
  border: 16px solid #f9b71c;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 100%;
}

.contents h2:not([class]) a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h2:not([class]) a::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
	width: calc(100% + 7rem);
	height: calc(100% + 4rem);
}
.contents h2:not([class]) a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-or01.png") left top no-repeat;
  background-size: contain;
	width: 38px;
	height: 38px;
  box-sizing: border-box;
}


.contents h3:not([class]) {
	margin: 6rem 0 2rem;
	padding: 0 0 1.5rem 5rem;
	font-size: 2.4rem;
	border-bottom: 1px solid rgba(79,79,79,0.25);
	position: relative;
	z-index: 0;
}
.contents h3:not([class])::before {
	content: "";
	position: absolute;
	top: calc(50% - 6px);
	left: 0;
  transform: translate(0,-50%);
  background: url("img/icon-h3.png") left top no-repeat;
  background-size: contain;
	width: 35px;
	height: 35px;
  box-sizing: border-box;
  z-index: -1;
}

.contents h3:not([class]) a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h3:not([class]) a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 1.5rem);
}
.contents h3:not([class]) a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/arrow-or01.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 32px;
  box-sizing: border-box;
}


.contents h4:not([class]) {
	color: #ff6c19;
	margin: 4rem 0 2rem;
  padding: 0 0 0 3rem;
	font-size: 2rem;
  position: relative;
  z-index: 0;
}
.contents h4:not([class])::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #ffe9ba;
	width: 18px;
	height: 18px;
  box-sizing: border-box;
  border-radius: 4px;
  z-index: -1;
}

.contents h4:not([class]) a {
	padding: 0 6rem 0 0;
	color: #ff6c19;
	position: relative;
}
.contents h4:not([class]) a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/arrow-or02.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
  box-sizing: border-box;
}


.contents h5:not([class]) {
	margin: 4rem 0 2rem;
  padding: 0 0 0 1.5rem;
	font-size: 1.8rem;
  position: relative;
}
.contents h5:not([class])::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #1895f0;
	width: 3px;
	height: 80%;
  border-radius: 2px;
}

.contents h5:not([class]) a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h5:not([class]) a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-or02.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .contents h2:not([class]) {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    font-size: 2.2rem;
  }
  .contents h2:not([class])::before {
    width: 24px;
    height: 24px;
    border: 8px solid #f9b71c;
    border-top: none;
    border-left: none;
  }

  .contents h2:not([class]) a {
    padding: 0 3rem 0 0;
  }
  .contents h2:not([class]) a::before {
    width: calc(100% + 4rem);
    height: calc(100% + 3rem);
  }
  .contents h2:not([class]) a::after {
    width: 24px;
    height: 24px;
  }


  .contents h3:not([class]) {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 3rem;
    font-size: 2rem;
  }
  .contents h3:not([class])::before {
    top: calc(50% - 5px);
    width: 24px;
    height: 24px;
  }

  .contents h3:not([class]) a {
    padding: 0 3rem 0 0;
  }
  .contents h3:not([class]) a::before {
    height: calc(100% + 1rem);
  }
  .contents h3:not([class]) a::after {
    right: 0;
    width: 20px;
    height: 20px;
  }


  .contents h4:not([class]) {
    margin: 3rem 0 2rem;
    padding: 0 0 0 2.5rem;
    font-size: 1.8rem;
  }
  .contents h4:not([class])::before {
    width: 12px;
    height: 12px;
    border-radius: 2px;
  }

  .contents h4:not([class]) a {
    padding: 0 3rem 0 0;
  }
  .contents h4:not([class]) a::after {
    right: 0;
    width: 18px;
    height: 18px;
  }

  
  .contents h5:not([class]) {
    margin: 3rem 0 2rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
  }
  .contents h5:not([class])::before {
    width: 2px;
    height: 90%;
  }

  .contents h5:not([class]) a {
    padding: 0 3rem 0 0;
  }
  .contents h5:not([class]) a::after {
    width: 16px;
    height: 16px;
  }
}


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

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

.txt_bold {
	color: #ff6c19;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 90%, #fab71d 0%);
	font-weight: bold;
}


.caption {
	margin: 1rem 0 0 0;
	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: #efefef;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #cacaca;
	border-radius: 0;
	box-shadow: none;
}
.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #cacaca #efefef;
  	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;
    font-size: 1rem;
	}
}


/*--------------------------------------------------
　リスト
--------------------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1.5rem 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: 12px;
  left: 0;
	background: #f9b71c;
  width: 8px;
  height: 8px;
	box-sizing: border-box;
  border-radius: 50%;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}


/*----- olリスト -----*/
.contents ol {
	margin: 4rem 0 4rem;
	list-style-type: none;
	counter-reset: count;
}
.contents ol li {
  margin: 0 0 1.5rem 0;
	padding: 0 0 0 3rem;
	font-size: 1.5rem;
  line-height: 1.8;
	position: relative;
	counter-increment: count;
}
.contents ol li:last-child {
  margin: 0 0 0 0;
}
.contents ol li::before {
  content: counter(count);
  position: absolute;
  top: 8px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e76e2b;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
}
.contents ol a {
	display: inline-block;
	text-decoration: underline;
}
.contents ol li a:hover {
	text-decoration: none;
}

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


/*--------------------------------------------------
　リンク
--------------------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 420px;
	margin: 4rem auto 4rem;
	padding: 2.5rem 5rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 100px;
	text-decoration: none!important;
	box-shadow: 8px 8px 0px 0px #242424;
	position: relative;
}
.btn-web a::after,
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
  box-sizing: border-box;
}
.btn-web a::after{
  background: url("img/arrow-wh-web.png") left top no-repeat;
	background-size: contain;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #e76e2b;
	color: #fff;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #ffdf5c;
}


/*----- 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: bold;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-or02.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
  box-sizing: border-box;
}
.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: 4rem 0 0;
}
.btnBox > div {
  width: 410px;
  margin: 0 1.5rem 0;
}
.btnBox > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 90%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
    box-shadow: 5px 5px 0px 0px #242424;
  }
  .btn-web a::after,
  .btn-internal a::after {
    right: 15px;
    width: 20px;
    height: 20px;
  }


  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.4rem;
  }
  .btn-link a::after {
    width: 18px;
    height: 18px;
  }

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #1895F0;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 100px;
		text-decoration: none!important;
    box-shadow: 5px 5px 0px 0px #242424;
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    left: 25px;
    transform: translate(0,-50%);
    background: url("img/icon-tel.png") left top no-repeat;
    background-size: contain;
		width: 15px;
		height: 26px;
	}
  
  
  /*----- btnBox -----*/
  .btnBox {
    display: block;
    margin: 3rem 0 0;
  }
  .btnBox > div {
    width: 90%;
    margin: 0 auto 2.2rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  } 
}


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

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

table td {
	padding: 2rem 2rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #b1b1b1;
	border-bottom: 1px solid #b1b1b1;
}
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 {
		padding: 1.5rem 1.5rem;
		font-size: 1.4rem;
	}

	table td {
		padding: 1.5rem 1.5rem;
		font-size: 1.4rem;
	}
  
  /*----- ScrollHint -----*/
  .scroll-table {
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-table::-webkit-scrollbar{
    height: 2px;
  }
  .scroll-table::-webkit-scrollbar-track{
    background: #efefef;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .scroll-table::-webkit-scrollbar-thumb {
    background: #cacaca;
    border-radius: 0;
    box-shadow: none;
  }
  .scroll-table table {
    margin: 0 0 1rem;
  }
  .scroll-table table th {
    display: table-cell;
		border-left: 1px solid #b1b1b1;
  }
  .scroll-table table td {
    display: table-cell;
		border-left: 1px solid #b1b1b1;
  }
}


/*--------------------------------------------------
　画像＋テキスト
--------------------------------------------------*/
.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;
  border-radius: 20px;
}

.float-img.fl {
  float: left;
  width: 380px;
  margin-right: 5rem;
}
.float-img.fr {
  float: right;
  width: 380px;
  margin-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;
  color: #ff6c19;
	font-size: 2.2rem;
	font-weight: bold;
	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 .flame img {
    border-radius: 10px;
  }

	.float-img.fl {
		float: inherit;
		width: 100%;
		margin-right: 0;
	}
	.float-img.fr {
		float: inherit;
		width: 100%;
		margin-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: #f6f6f6;
  max-width: 840px;
  margin: 4rem auto 8rem;
  padding: 4rem 7rem 4rem;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  position: relative;
}

.toc_parts .ttl {
  padding: 0 0 4px 1.5rem;
	font-size: 2.2rem;
	font-weight: bold;
  line-height: 1;
  border-left: 6px solid #ffbb18;
  position: relative;
}

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

#toc ul.chapter {
	margin: 0 0 0;
}
#toc ul.chapter li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 3.5rem;
  font-size: 1.5rem;
  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: -6px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	color: #ff6e12;
	font-size: 1.8rem;
  font-weight: bold;
}
#toc ul.chapter li a {
	display: block;
  font-weight: bold;
	text-decoration: none;
}

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

.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -30px;
	background: #1d1d1d;
	max-width: 200px;
	margin: auto;
	padding: 1.8rem 5rem;
	box-sizing: border-box;
  color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	cursor: pointer;
  border-radius: 100px;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  transform: translate(0,-50%);
  background: url("img/toc-open.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
  box-sizing: border-box;
	transition: all 0.4s;
}
.toc_parts .acc_btn.is-show::after {
  background: url("img/toc-close.png") left top no-repeat;
  background-size: contain;
}
.toc_parts .acc_btn span {
	font-weight: bold;
}
.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: 120px;
}
.toc_parts .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(180deg, rgba(246,246,246,0) 0%, rgba(246,246,246,.9) 50%, rgba(246,246,246,.9) 50%, #f6f6f6 100%);
  background: linear-gradient(180deg, rgba(246,246,246,0) 0%, rgba(246,246,246,.9) 50%, rgba(246,246,246,.9) 50%, #f6f6f6 100%);
	width: 100%;
  height: 50px;
  box-sizing: border-box;
  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 2rem;
}
#toc ul.chapter li.chapter-h-three {
  counter-increment: none; /* H2の連番カウントアップをストップ */
  padding-left: 3.5rem;    /* 数字がない分、左の開始位置をH2のテキストと揃える */
}
#toc ul.chapter li.chapter-h-three::before {
  content: none; /* オレンジの数字を非表示 */
  display: none;
}
@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 3rem auto 6rem;
    padding: 2.5rem 2rem 2.5rem;
    border-radius: 10px;
  }

  .toc_parts .ttl {
    padding: 0 0 3px 1rem;
    font-size: 1.6rem;
    border-left: 3px solid #ffbb18;
  }

  #toc {
    margin: 1.5rem 0 0 0;
  }

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

  .toc_parts .acc_btn {
    bottom: -25px;
    max-width: 60%;
    padding: 1.5rem 4rem;
  }
  .toc_parts .acc_btn::after {
    right: 10px;
    width: 20px;
    height: 20px;
  }
}


/*--------------------------------------------------
　related-article01-frame
--------------------------------------------------*/
.related-article01-frame {
  background: #f6f6f6;
  max-width: 840px;
	margin: 10rem auto 10rem;
	padding: 4rem 7rem 4rem;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  position: relative;
}

.related-article01-title {
  padding: 0 0 4px 1.5rem;
	font-size: 2.2rem;
	font-weight: bold;
  line-height: 1;
  border-left: 6px solid #ffbb18;
  position: relative;
}
.related-article01-title span {
	font-weight: bold;
  line-height: 1;
}

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

ul.related-article01-list {
	margin: 3rem 0 0;
}
ul.related-article01-list li {
  margin: 0 0 1rem 0;
	padding: 0 0 0 0;
  font-size: 1.5rem;
	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 {
  display: inline-block;
  padding: 0 3rem 0 0;
  font-weight: bold;
	text-decoration: none;
  position: relative;
}
ul.related-article01-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-or02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
  box-sizing: border-box;
}

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

  .related-article01-title {
    padding: 0 0 3px 1rem;
    font-size: 1.8rem;
    border-left: 3px solid #ffbb18;
  }

  ul.related-article01-list {
    margin: 1.5rem 0 0;
  }
  ul.related-article01-list li {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  ul.related-article01-list li a {
    padding: 0 2.5rem 0 0;
  }
  ul.related-article01-list li a::after {
    width: 16px;
    height: 16px;
  }
}


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

.summary-parts .eng {
  color: #fff4de;
  font-size: 8rem;
  line-height: 1;
}

.summary-parts__block {
  margin-top: -1.2rem;
  padding: 6rem 0 6rem 8rem;
  position: relative;
  z-index: 0;
}
.summary-parts__block::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 24px solid #fab71c;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 100%;
}
.summary-parts__block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff4de;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  border-radius: 20px 0 0 20px;
  z-index: -1;
}

.summary-parts .summary-ttl {
  font-size: 2.8rem;
}

.summary-parts .txt {
  margin: 2rem 0 0;
}

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

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

  .summary-parts .eng {
    font-size: 9vw;
  }

  .summary-parts__block {
    margin-top: -6px;
    padding: 3rem 0 3rem 2rem;
  }
  .summary-parts__block::before {
    width: 30px;
    height: 30px;
    border: 12px solid #fab71c;
    border-top: none;
    border-left: none;
  }
  .summary-parts__block::after {
    min-width: 100%;
    border-radius: 10px 0 0 10px;
  }

  .summary-parts .summary-ttl {
    font-size: 1.8rem;
  }

  .summary-parts .txt {
    margin: 1.5rem 0 0;
  }

  .summary-parts .btn-internal a {
    margin: 2rem auto 0;
  }
}


/*--------------------------------------------------
　interview-parts
--------------------------------------------------*/
.interview-parts {
  margin: 7rem 0 5rem;
}

.interview-parts .interview-item {
  width: 860px;
  margin: 0 auto 10rem;
}
.interview-parts .interview-item:last-child {
  margin: 0 auto 0;
}

.interview-parts .interview-box {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  padding: 4rem 5rem;
  position: relative;
  z-index: 0;
}
.interview-parts .interview-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  box-sizing: border-box;
  border-bottom-right-radius: 100%;
  z-index: -1;
}
.interview-parts .interview-box.bg-or::before {
  background: #1cb459;
}
.interview-parts .interview-box.bg-bl::before {
  background: #ff6c19;
}
.interview-parts .interview-box.bg-yl::before {
  background: #1895f0;
}
.interview-parts .interview-box.bg-gn::before {
  background: #f9b71c;
}

.interview-parts .txtBox {
  width: calc(100% - 220px);
}

.interview-name {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2rem 1rem 0;
  font-size: 1.6rem;
}
.interview-name .large {
  font-size: 2.2rem;
}

.interview-parts .interview-tag__wrap {
  display: inline-block;
  vertical-align: middle;
}
ul.interview-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin: 0 0 0;
}
ul.interview-tag li {
  background: rgb(109 109 109 / 30%);
  margin: 0 0 0;
  padding: 5px 1.5rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 100px;
}
ul.interview-tag li::before {
  display: none;
}

.interview-parts .interview-ttl {
  margin: 3rem 0 0;
  font-size: 2.8rem;
}

.interview-parts .imgBox {
  width: 220px;
  margin-top: -8rem;
}
.interview-parts .imgBox img {
  border-radius: 20px;
}

.interview-parts .bottom-txt {
  background: #fff;
  padding: 3rem 4rem;
  border: 2px solid #e9e9e9;
  border-top: none;
}

.interview-parts .txt {
  margin: 0 0 1rem;
}

@media screen and (max-width: 768px) {
  .interview-parts {
    margin: 3rem 0 3rem;
  }

  .interview-parts .interview-item {
    width: 100%;
    margin: 0 0 2rem;
  }
  .interview-parts .interview-item:last-child {
    margin: 0 0 0;
  }

  .interview-parts .interview-box {
    display: block;
    padding: 2rem 2rem;
  }
  .interview-parts .interview-box::before {
    width: 35px;
    height: 35px;
  }

  .interview-parts .txtBox {
    width: 100%;
  }

  .interview-name {
    display: block;
    margin-right: 0;
    font-size: 1.5rem;
  }
  .interview-name .large {
    font-size: 1.6rem;
  }

  .interview-parts .interview-tag__wrap {
    display: block;
    width: 70%;
    margin: 1.5rem 0 0;
  }
  ul.interview-tag {
    gap: 5px 5px;
  }
  ul.interview-tag li {
    padding: 5px 1.2rem;
    font-size: 1.2rem;
  }

  .interview-parts .interview-ttl {
    margin: 2rem 0 0;
    font-size: 2rem;
  }

  .interview-parts .imgBox {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 25%;
    margin-top: 0;
  }
  .interview-parts .imgBox img {
    border-radius: 10px;
  }

  .interview-parts .bottom-txt {
    padding: 2rem 2rem;
    border: 1px solid #e9e9e9;
    border-top: none;
  }
}


/*--------------------------------------------------
　sv-parts
--------------------------------------------------*/
.sv-parts {
  margin: 10rem 0 10rem;
  position: relative;
  z-index: 0;
}
.sv-parts::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #1cb459;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  border-radius: 0 60px 60px 0;
  z-index: -1;
}

.sv-parts__inner {
  padding: 5rem 9rem 8rem 0;
  position: relative;
  z-index: 0;
}
.sv-parts__inner::before {
  content: "";
  position: absolute;
  top: 50px;
  right: calc(100% - -52px);
  background: url("img/sv-parts-bg01.png") left top no-repeat;
  background-size: contain;
  width: 460px;
  height: 430px;
  box-sizing: border-box;
  z-index: -1;
}
.sv-parts__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/sv-parts-bg02.png") left top no-repeat;
  background-size: contain;
  width: 92px;
  height: 180px;
  box-sizing: border-box;
  z-index: -1;
}
.sv-parts .caption a {
    color: #ffffff;
}
.sv-parts .txt_bold {
    color: #ffdb87;
}
.sv-parts .eng {
  color: #30c76d;
  font-size: 8rem;
  text-align: center;
  line-height: 1;
}

.sv-parts__block {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
  margin: 3rem 0 0;
}

.sv-parts .capture {
  width: 410px;
}
.sv-parts .caption {
  color: #fff;
  text-align: center;
}

.sv-parts .txtBox {
  width: calc(100% - 410px);
}

.sv-parts .sv-ttl {
  font-size: 3.5rem;
}
.sv-parts .sv-ttl .sub {
  display: inline-block;
  background: rgb(17 17 17 / 20%);
  margin-right: 1.5rem;
  padding: 5px 1.5rem;
  font-size: 1.6rem;
  border-radius: 100px;
}

.sv-parts .cc {
  margin: 3rem 0 0;
  font-size: 2.4rem;
}

.sv-parts .txt {
  margin: 2rem 0 0;
  z-index: -1;
}

.sv-parts .btnBox {
  margin: 4rem 0 0;
}
.sv-parts .btnBox > div {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .sv-parts {
    margin: 6rem 0 6rem;
  }
  .sv-parts::after {
    right: -20px;
    min-width: 100%;
    border-radius: 0 30px 30px 0;
  }
  
  .sv-parts__inner {
    padding: 1.5rem 0 4rem 0;
    position: relative;
    z-index: 0;
  }
  .sv-parts__inner::before {
    top: 50px;
    right: -40px;
    width: 50%;
    height: 0;
    padding-top: calc(50%*430/460);
  }
  .sv-parts__inner::after {
    display: none;
  }  

  .sv-parts .eng {
    font-size: 10vw;
  }

  .sv-parts__block {
    display: block;
    margin: 1rem 0 0;
  }

  .sv-parts .capture {
    width: 100%;
    margin: 2rem 0 0;
  }

  .sv-parts .txtBox {
    width: 100%;
  }

  .sv-parts .sv-ttl {
    font-size: 2.6rem;
  }
  .sv-parts .sv-ttl .sub {
    margin-right: 0;
    padding: 5px 1rem;
    font-size: 1.3rem;
  }

  .sv-parts .cc {
    margin: 1.5rem 0 0;
    font-size: 2rem;
  }

  .sv-parts .txt {
    margin: 1.5rem 0 0;
  }

  .sv-parts .btnBox {
    margin: 3rem 0 0;
  }
  .sv-parts .btnBox > div {
    width: 100%;
  }  
}


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

.column-parts__block {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin: 0 0 3rem;
}

.column-parts .column-item {
  background: #f5f5f5;
  padding: 3rem 3rem;
  border-radius: 10px;
  flex: 1;
  position: relative;
}
.column-parts .column-item::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  border: 14px solid #fab71c;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 100%;
}

.column-parts .column-ttl {
  font-size: 2.2rem;
}

.column-parts .txt {
  margin: 2rem 0 0;
}

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

  .column-parts__block {
    display: block;
    margin: 0 0 2rem;
  }

  .column-parts .column-item {
    margin: 0 0 2rem;
    padding: 2rem 2rem;
    border-radius: 5px;
  }
  .column-parts .column-item:last-child {
    margin: 0 0 0;
  }
  .column-parts .column-item::before {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 7px solid #fab71c;
    border-top: none;
    border-left: none;
  }

  .column-parts .column-ttl {
    font-size: 1.8rem;
  }

  .column-parts .txt {
    margin: 1.5rem 0 0;
  }
}


/*--------------------------------------------------
　qa-parts
--------------------------------------------------*/
.qa-parts {
  margin: 9rem 0 3rem;
}

.qa-parts .qa-item {
  margin: 0 0 8rem;
}
.qa-parts .qa-item:last-child {
  margin: 0 0 0;
}

.qa-parts .q-ttl {
  padding: 0 0 0 8rem;
  font-size: 2.2rem;
  position: relative;
}
.qa-parts .q-ttl::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 0;
  background: #ff6d19;
	width: 60px;
	height: 2px;
  box-sizing: border-box;
}

.qa-parts .a-ttl {
  margin: 4rem 0 0;
  padding: 0 0 0 8rem;
  font-size: 2.2rem;
  position: relative;
}
.qa-parts .a-ttl::before {
	content: "A.";
	position: absolute;
	top: 3px;
	left: 40px;
  color: #c1c1c1;
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1;
}

.qa-parts .a-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
  margin: 3rem 0 0;
  padding: 0 0 0 8rem;
}

.qa-parts .imgBox {
  width: 400px;
  flex-grow: 1;
}
.qa-parts .imgBox img {
  border-radius: 20px;
}
.qa-parts .caption {
  text-align: center;
}

.qa-parts .txt {
  width: calc(100% - 400px);
  margin: 0 0 0;
  flex-grow: 1;
}

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

  .qa-parts .qa-item {
    margin: 0 0 5rem;
  }

  .qa-parts .q-ttl {
    padding: 0 0 0 3rem;
    font-size: 1.8rem;
  }
  .qa-parts .q-ttl::before {
    top: 12px;
    width: 20px;
    height: 1px;
  }

  .qa-parts .a-ttl {
    margin: 2rem 0 0;
    padding: 0 0 0 3rem;
    font-size: 1.8rem;
  }
  .qa-parts .a-ttl::before {
    top: 3px;
    left: 0;
    font-size: 2.2rem;
  }

  .qa-parts .a-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 0;
    margin: 2rem 0 0;
    padding: 0 0 0 0;
  }

  .qa-parts .imgBox {
    width: 100%;
    margin: 0 0 2rem;
    order: 1;
  }
  .qa-parts .imgBox img {
    border-radius: 10px;
  }

  .qa-parts .txt {
    width: 100%;
    order: 2;
  }
}


/*--------------------------------------------------
　comment-parts
--------------------------------------------------*/
.comment-parts {
  margin: 3rem 0 3rem;
}

.comment-parts .comment-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
  margin: 0 0 6rem;
}
.comment-parts .comment-item:last-child {
  margin: 0 0 0;
}

.comment-parts .comment-sb {
  background: #ffe9ba;
  width: 80%;
  max-width: 80%;
  margin: auto;
  padding: 3rem 3rem;
  position: relative;
  flex-grow: 1;
}
.comment-parts .comment-item:nth-child(even) .comment-sb {
  order: 2;
}
.comment-parts .comment-sb::after {
	content: "";
	position: absolute;
	top: 70px;
	left: 100%;
  box-sizing: border-box;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #ffe9ba;
}
.comment-parts .comment-item:nth-child(even) .comment-sb::after {
	left: inherit;
  right: 100%;
  border-left: none;
  border-right: 30px solid #ffe9ba;
}
.comment-parts .comment-sb__inner {
  background: #fff;
  padding: 3rem 3rem;
  border-radius: 10px;
}
.comment-parts .comment-ttl {
  font-size: 2.2rem;
}
.comment-parts .txt {
  margin: 2rem 0 0;
}

.comment-parts .imgBox__wrap {
  width: 20%;
  flex-grow: 1;
}
.comment-parts .comment-item:nth-child(even) .imgBox__wrap {
  order: 1;
}
.comment-parts .imgBox {
  width: 150px;
  margin: auto;
}
.comment-parts .imgBox img {
  border-radius: 100%;
}
.comment-parts .type {
  margin: 2rem 0 0;
  text-align: center;
}
.comment-parts .type span {
  display: inline;
  background: linear-gradient(transparent 0%, #ff6e12 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem;
  font-size: 1.3rem;
  border-radius: 100px;
  line-height: 2.5;
}

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

  .comment-parts .comment-item {
    display: block;
    margin: 0 0 6rem;
  }

  .comment-parts .comment-sb {
    width: 100%;
    max-width: 100%;
    padding: 2rem 2rem;
  }
  .comment-parts .comment-item:nth-child(even) .comment-sb {
    order: 2;
  }
  .comment-parts .comment-sb::after {
    top: 100%;
    left: 13%;
    border-top: none;
    border-right: 20px solid #ffe9ba;
    border-bottom: 16px solid transparent;
    border-left: none;
  }
  .comment-parts .comment-item:nth-child(even) .comment-sb::after {
    left: inherit;
    right: 68%;
    border-right: none;
    border-bottom: 16px solid transparent;
    border-left: 18px solid #ffe9ba;
  }
  .comment-parts .comment-sb__inner {
    padding: 2rem 2rem;
    border-radius: 5px;
  }
  .comment-parts .comment-ttl {
    font-size: 1.8rem;
  }
  .comment-parts .txt {
    margin: 1.5rem 0 0;
  }

  .comment-parts .imgBox__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    margin: 2rem 0 0;
  }
  .comment-parts .imgBox {
    width: 32%;
    margin: 0;
    order: 1;
  }
  .comment-parts .comment-item:nth-child(even) .imgBox {
    order: 1;
  }
  .comment-parts .type {
    width: 68%;
    margin: 0 0 0;
    text-align: left;
    order: 1;
  }
  .comment-parts .comment-item:nth-child(even) .type {
    text-align: left;
    order: 2;
  }
  .comment-parts .type span {
    padding: 3px 8px;
    font-size: 1.3rem;
    line-height: 2.5;
  }
}



