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



/*----------------------------------------------------------------------------
　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: #172853;
  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: #172853;
  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;
}

.cl-wh {
  color: #fff;
}
.cl-gr {
  color: #77a530;
}
.cl-or {
  color: #f28500;
}

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

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



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

header .sitename {
	padding: 1rem 2rem;
  font-size: 1.4rem;
	line-height: 1.5;
	text-align: right;
}


.header_lower {
  position: relative;
}

.header_lower .header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
}

.header_lower .image {
  width: 30%;
}

.header_lower .logo {
  width: 40%;
}
.header_lower .logo img {
  display: block;
  width: 290px;
  margin: auto;
}
.header_lower .logo a {
  display: block;
}


.header_lower .circle-s {
  position: absolute;
  top: -40px;
  left: 40px;
  background: #f3e3d8;
  width: 50px;
  height: 100px;
  border-radius: 50px 0 0 50px;
  opacity: 0.3;
  z-index: -1;
}

.header_lower .square {
  position: absolute;
  top: 50%;
  left: calc(30% + 16px);
  background: url("img/shape_square01.png") left top no-repeat;
  background-size: contain;
  width: 130px;
  height: 130px;
  z-index: -1;
}

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

  header .sitename {
    padding: 5px 1rem;
    font-size: 1.2rem;
    text-align: center;
  }


  .header_lower .header_block {
    display: block;
    padding: 0 2rem;
  }

  .header_lower .image {
    display: none;
  }

  .header_lower .logo {
    width: 50%;
    margin: auto;
  }
  .header_lower .logo img {
    width: 100%;
  }

  
  .header_lower .circle-s {
    top: -20px;
    left: 0;
    width: 30px;
    height: 60px;
    border-radius: 30px 0 0 30px;
  }

  .header_lower .square {
    top: 60%;
    left: 10%;
    width: 15%;
    height: 0;
    padding-top: 15%;
  }  
}


/*--------------------------------------
　#fixed-header
---------------------------------------*/
.fixed_header {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 2rem 1.5rem 4rem;
    border-radius: 0 0 0 50px;
}

.fixed_header::before, .fixed_header::after {
    content: "";
    position: absolute;
    background: url(img/deco_br06.png) left top no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
}

.fixed_header .btn-web {
    margin: 0 8rem 0 0;
}
.fixed_header .btn-web a {
    margin: 0 0 0;
    background: #93bb55 url(img/btnbg.png) no-repeat center;
    background-size: cover;
    padding: 1.5rem 5rem;
}
.fixed_header::after {
    top: calc(100% - 1px);
    right: -1px;
}
.fixed_header::before {
    top: -1px;
    right: calc(100% - 1px);
}

/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 20px;
	right: 20px;
	width: 52px;
	height: 52px;
	background: none;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #172853;
	width: 52px;
	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: 15px;
}
#hb-menu span:nth-of-type(4) {
  background: none;
	width: inherit;
	height: inherit;
  margin-top: 8px;
}
#hb-menu span:nth-of-type(4)::after {
  content: "MENU";
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span:nth-of-type(1) {
	-webkit-transform: translateY(12px) translateX(0) rotate(45deg);
	-ms-transform: translateY(12px) translateX(0) rotate(45deg);
	transform: translateY(12px) 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(-12px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-12px) translateX(0) rotate(-45deg);
	transform: translateY(-12px) translateX(0) rotate(-45deg);
}
.hb-open #hb-menu span:nth-of-type(4)::after {
  content: "CLOSE";
}

/* 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.25);
	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: #fff;
	width: 45%;
	height: 100%;
	padding: 12rem 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 #172853;
  position: relative;
}

.hb_menu_title_link {
	display: block;
	padding: 0 5rem 0 0;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #172853;
	border-right: 2px solid #172853;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

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

.hb_menu_list_item {
  width: 100%;
	padding: 2rem 0 2rem 0;
	border-bottom: 1px solid #172853;
	position: relative;
}
.hb_menu_list_item:first-child {
	display: none;
}

.hb_menu_list_link {
	display: block;
	padding: 0 5rem 0 0;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.hb_menu_list_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #172853;
	border-right: 2px solid #172853;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    top: 0;
    right: 0;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 15px;
  }
  #hb-menu::before,
  #hb-menu::after {
    content: "";
    position: absolute;
    background: url("img/deco_br06.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
  }
  #hb-menu::before {
    top: 0;
    right: 100%;
  }
  #hb-menu::after {
    top: 100%;
    right: 0;
  }
  #hb-menu .hb-inner {
    display: table-cell;
    vertical-align: middle;
  }
  #hb-menu span {
    width: 30px;
    height: 1px;
  }
  #hb-menu span:nth-of-type(2),
  #hb-menu span:nth-of-type(3){
    margin-top: 9px;
  }
  #hb-menu span:nth-of-type(4) {
    margin-top: 5px;
  }
  #hb-menu span:nth-of-type(4)::after {
    font-size: 1rem;
  }

	/*--------------------------------------
　SP banner
---------------------------------------*/
.fixed_header .btn-web {
        position: fixed;
        bottom: 0;
        left: 0;
        background: #fff;
        width: calc(100% - 80px);
        margin: 0 0 0 0;
        padding: 1rem 1.5rem 1rem 1.5rem;
        border-radius: 0 25px 0 0;
    }
    .fixed_header_inner {
        transition: all 0.3s ease;
    }

    .fixed_header .btn-web a {
        max-width: 100%;
        margin: 0 0 0;
    }
    .fixed_header .btn-web::before {
        bottom: 100%;
        left: 0;
    }
	.fixed_header .btn-web::after {
        bottom: 0;
        left: 100%;
    }
	.fixed_header .btn-web::before, .fixed_header .btn-web::after {
        content: "";
        position: absolute;
        background: url(img/deco_br06.png) left top no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        transform: rotate(180deg);
    }
	    .fixed_header_inner.stop {
        opacity: 0;
    }


	
  /* ナビゲーションアイコン：アクティブ */
  .hb-open #hb-menu span:nth-of-type(1) {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    -ms-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) 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(-8px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) 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;
  }
	.hb_menu_title::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #172853;
		border-right: solid 1px #172853;
		-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 3rem 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 #172853;
		border-right: solid 1px #172853;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

  .hb_menu_list {
    display: none;
  }

  .hb_menu_list_item {
    padding: 1.5rem 0 1.5rem 0;
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    padding: 0 3rem 0 0;
  }
  .hb_menu_list_link::after {
    right: 5px;
    border-top: 1px solid #172853;
    border-right: 1px solid #172853;
  }
}



/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
	width: 1100px;
	margin: 4rem auto 0;
  font-size: 1.4rem;
  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: 2rem auto 0;
		padding: 0 1.5rem 0.5rem 1.5rem;
		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 1.5rem;
		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: #f8f2ee;
	width: 100%;
	min-width: 1100px;
  border-radius: 100px 100px 0 0;
}

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


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


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


.l-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 6rem 0 0;
}

.l-footer-about {
  background: #f2ebe6;
  width: 240px;
  padding: 2.5rem 2.5rem;
  border-radius: 10px;
}
.l-footer-about-ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
.l-footer-about p {
  margin: 1rem 0 0;
  font-size: 1.3rem;
  line-height: 1.8;
}


.l-footer-menu-wrapper {
  /* width: calc(100% - 300px); */
  margin: 0 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 #172853;
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
  font-size: 1.6rem;
	font-weight: bold;
	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;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #172853;
	border-right: 2px solid #172853;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.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 2rem 0 0;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link::after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 2px solid #172853;
	border-right: 2px solid #172853;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.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;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-submenu__list__link::before {
	content: "";
 	position: absolute;
	top: 11px;
	left: 0;
	background: #172853;
	width: 8px;
	height: 1px;
}


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


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


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

.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: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
	font-size: 1.3rem;
	line-height: 1.5;
}
.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
}
.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 #172853;
	border-right: 1px solid #172853;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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


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


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


  .l-footer-wrap {
    display: block;
    margin: 2rem 0 0;
  }

  .l-footer-about {
    width: 100%;
    padding: 2rem 2rem;
    border-radius: 5px;
  }
  .l-footer-about-ttl {
    font-size: 1.4rem;
  }
  .l-footer-about p {
    font-size: 1.2rem;
  }


  .l-footer-menu-wrapper {
    width: 100%;
    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 #172853;
		border-right: solid 1px #172853;
		-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;
    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 #172853;
  }
  .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 {
    right: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #172853;
    border-right: 1px solid #172853;
  }


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

  .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;
		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 #172853;
		border-right: 1px solid #172853;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}



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

.l-pagetop__link {
  display: block;
	background: #fff;
  width: 100%;
  height: 100%;
	box-sizing: border-box;
	border-radius: 50%;
	border: 2px solid #172853;
  position: relative;
}
.l-pagetop__link::after {
	display: block;
	content: "";
	position: absolute;
	top: 43%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin-left: -6px;
	border-top: 2px solid #172853;
	border-left: 2px solid #172853;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pagetop span {
	display: none;
}

@media screen and (max-width: 768px) {
	.l-pagetop {
		bottom: 50px;
		right: 5px;
		width: 45px;
		height: 45px;
	}
		
	.l-pagetop__link {
		border: 1px solid #172853;
	}
	.l-pagetop__link::after {
		width: 8px;
		height: 8px;
		margin-left: -4px;
		border-top: 1px solid #172853;
		border-left: 1px solid #172853;
	}
}



/*--------------------------------------
　Side
---------------------------------------*/
#side .sideBox {
  margin: 0 0 2rem 0;
}

#side .sideBox .sttl a {
	display: block;
	background: #c2aa96;
	padding: 2rem 4rem 2rem 1.5rem;
	color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
	line-height: 1.5;
  border-radius: 0 25px 0 0;
	position: relative;
}
#side .sideBox .sttl a::after {
	content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("img/arrow_wh02.png") left top no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  box-sizing: border-box;
}

#side .sideBox ul {
  background: #f8f2ee;
	margin: 0 0 0 0;
  padding: 2rem 1.5rem;
  border-radius: 0 0 10px 10px;
}
#side .sideBox li {
	margin: 0 0 0 0;
  padding: 1.5rem 0 1.5rem 0;
  border-bottom: 1px solid #172853;
}
#side .sideBox li:first-child {
  padding: 0 0 1.5rem 0;
}
#side .sideBox li:last-child {
  padding: 1.5rem 0 0 0;
  border-bottom: none;
}
#side .sideBox li::before {
	display: none;
}
#side .sideBox li a {
	display: block;
	padding: 0 3rem 0 0;
  font-size: 1.4rem;
	line-height: 1.5;
  text-decoration: none;
	position: relative;
}
#side .sideBox li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bl02.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 18px;
  margin-top: -9px;
  box-sizing: border-box;
}



/*--------------------------------------
　Main Contents
---------------------------------------*/
.wrap {
  width: 100%;
	min-width: 1100px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.wrap::after {
  content: "";
  position: absolute;
  top: -250px;
  right: -40px;
  width: 380px;
  height: 380px;
  border: 120px solid #f3e3d8;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.contents_wrap {
  width: 100%;
	min-width: 1100px;
  position: relative;
  z-index: 0;
}

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

#category,
#page {
  float: left;
  width: 850px;
  margin: 0!important;
  padding: 0!important;
	box-sizing: border-box;
}

#side {
  float: right;
  width: 225px;
	box-sizing: border-box;
}


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

@media screen and (max-width: 768px) {
  .wrap {
    min-width: 100%;
  }
  .wrap::after {
    top: -80px;
    right: -20px;
    width: 30%;
    height: 0;
    padding-top: 30%;
    border: 50px solid #f3e3d8;
  }
  
  .contents_wrap {
    min-width: 100%;
  }
  
	.contents {
		width: 100%;
		min-width: 100%;
		padding: 4rem 1.5rem 6rem;
	}

	#category,
	#page {
		float: inherit;
		width: 100%;
	}

	#side {
		display: none;
	}
  
  
  .flexBox {
    display: block;
  }
}



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


p.operation {
  color: #8a8a8a;
  font-size: 1.4rem;
}


.contents h1 {
  margin: 0 0 2rem;
  padding: 4.5rem 3rem 4.5rem 0;
	color: #fff;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.4;
  position: relative;
  z-index: 0;
}
.contents h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  background: url("img/h1_bg01.png") right bottom no-repeat;
  background-size: contain;
  width: 100px;
  height: 62px;
  box-sizing: border-box;
  z-index: -1;
}
.contents h1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #987a66 url("img/h1_bg02.png") right bottom no-repeat;
  background-size: 250px auto;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  border-radius: 0 100px 0 0;
  border-bottom: 10px solid #f28500;
  z-index: -2;
}


.contents h2 {
	background: #f8f2ee;
	margin: 8rem 0 2rem;
	padding: 2.5rem 3rem 2.5rem 3rem;
	font-size: 3rem;
	border-radius: 40px 0 40px 0;
	position: relative;
}
.contents h2::after {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #f28500;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contents h2 a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -25px;
	left: -30px;
	width: calc(100% + 6rem);
	height: calc(100% + 5rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bl01.png") left top no-repeat;
  background-size: contain;
	width: 34px;
	height: 34px;
  margin-top: -17px;
  box-sizing: border-box;
}


.contents h3 {
	margin: 6rem 0 2rem;
	padding: 0 0 0 2rem;
	font-size: 2.5rem;
	position: relative;
}
.contents h3::before {
  content: "";
	position: absolute;
	top: 0;
  left: 0;
  background: #d6ecb4;
	width: 46px;
	height: 46px;
  box-sizing: border-box;
	transform: rotate(45deg);
  z-index: -1;
}

.contents h3 a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bl01.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 32px;
  margin-top: -16px;
  box-sizing: border-box;
}


.contents h4 {
	margin: 4rem 0 2rem;
	padding: 0 0 0 5rem;
	font-size: 2rem;
	position: relative;
}
.contents h4::before {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
  background: #fff;
	width: 32px;
	height: 32px;
  box-sizing: border-box;
  border: 8px solid #f3e3d8;
  border-radius: 50%;
  z-index: -1;
}
.contents h4::after {
	content: "";
	position: absolute;
	top: 16px;
  left: 16px;
  background: #172853;
	width: 20px;
	height: 1px;
  box-sizing: border-box;
  z-index: -1;
}

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

@media screen and (max-width: 768px) {
  .operation {
    font-size: 1.2rem;
  }


  .contents h1 {
    margin: 0 0 1.5rem;
    padding: 1.8rem 2rem 1.8rem 0;
    font-size: 2.5rem;
  }
  .contents h1::before {
    left: -15px;
    width: 20%;
    height: 0;
    padding-top: calc(20%*62/100);
  }
  .contents h1::after {
    background: #987a66 url("img/h1_bg02.png") right bottom no-repeat;
    background-size: 32% auto;
    min-width: 100%;
    border-radius: 0 50px 0 0;
    border-bottom: 5px solid #f28500;
  }


  .contents h2 {
    margin: 6rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 2.2rem;
    border-radius: 20px 0 20px 0;
  }

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


  .contents h3 {
    margin: 5rem 0 2rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.8rem;
  }
  .contents h3::before {
    width: 30px;
    height: 30px;
  }

  .contents h3 a {
    padding: 0 4rem 0 0;
  }
  .contents h3 a::after {
    width: 22px;
    height: 22px;
    margin-top: -11px;
  }


  .contents h4 {
    margin: 3rem 0 2rem;
    padding: 0 0 0 3.5rem;
    font-size: 1.6rem;
  }
  .contents h4::before {
    width: 20px;
    height: 20px;
    border: 4px solid #f3e3d8;
  }
  .contents h4::after {
    top: 10px;
    left: 10px;
    width: 15px;
    height: 1px;
  }

  .contents h4 a {
    padding: 0 4rem 0 0;
  }
  .contents h4 a::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}



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

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

.txt_bold {
	color: #f28500;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 70%, #ffcba0 0%);
	font-weight: bold;
}


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

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



/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 430px;
	margin: 4rem auto 4rem;
	padding: 2.8rem 4rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 4px;
	text-decoration: none!important;
	position: relative;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	color: #fff;
	background: #93bb55;
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  background: url("img/icon_web.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 16px;
  margin-top: -8px;
  box-sizing: border-box;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #fff;
  color: #f28500;
  border: 2px solid #f28500;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 2px #f28500;
	border-right: solid 2px #f28500;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/*----- 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;
  background: url("img/arrow_bl03.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
  margin-top: -10px;
  box-sizing: border-box;
}
.btn-link.cl-wh a {
  color: #fff;
}
.btn-link.cl-wh a::after {
  background: url("img/arrow_bl04.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;
  margin: 6rem 0 6rem;
}
.btnBox > div {
  width: 340px;
  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: 2rem 3.5rem;
    font-size: 1.4rem;
    border-radius: 3px;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a::after {
    right: 15px;
    width: 16px;
    height: 12px;
    margin-top: -6px;
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    border: 1px solid #f28500;
  }
  .btn-internal a::after {
    right: 15px;
    border-top: solid 1px #f28500;
    border-right: solid 1px #f28500;
  }


  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.4rem;
  }
  .btn-link a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #172853;
		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: 3px;
		text-decoration: none!important;
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    left: 20px;
    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 3rem;
  }
  .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 #172853;
}

table th {
	background: #f8f2ee;
	padding: 1.5rem;
	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 #172853;
	border-bottom: 1px solid #172853;
}
table th a {
	font-weight: bold;
	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 #172853;
	border-bottom: 1px solid #172853;
}
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 #172853;
	}

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #172853;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  .table_parts02 th {
    display: table-cell;
	  border-left: 1px solid #172853;
  }
  .table_parts02 td {
    display: table-cell;
	  border-left: 1px solid #172853;
  }
}



/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.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: 350px;
  padding-right: 4rem;
}
.float-img.fr {
  float: right;
  width: 350px;
  padding-left: 4rem;
}

.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.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.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: #f8f2ee;
	margin: 5rem auto 6rem;
	padding: 4rem 5rem 4rem;
  border-radius: 10px;
  position: relative;
}

.toc_parts .ttl {
  padding: 0 0 0 1.5rem;
	font-size: 2.4rem;
	font-weight: bold;
  line-height: 1;
  border-left: 4px solid #a9d16a;
  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 4rem;
  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: -8px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	color: #f28500;
	font-size: 2.2rem;
  font-weight: bold;
}
#toc ul.chapter li a {
	display: block;
  font-weight: bold;
	text-decoration: none;
}
#toc .chapter .chapter {
  margin: 0 0 2rem 4rem;
}
#toc .chapter .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 1.5rem;
	font-size: 1.5rem;
	position: relative;
	counter-increment: none;
}
#toc .chapter .chapter li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: solid 1px #172853;
	border-right: solid 1px #172853;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#toc .chapter .chapter li a {
  font-weight: 400;
}
#toc ul.chapter li br {
	display: none;
}


/*グラデーションアコーディオン*/
.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -25px;
	background: #fff;
	max-width: 220px;
	margin: auto;
	padding: 1.5rem 4rem;
	box-sizing: border-box;
  border: 2px solid #172853;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	cursor: pointer;
  border-radius: 4px;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::before,
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	background: #172853;
	width: 15px;
	height: 2px;
	margin-top: -1px;
	transition: all 0.4s;
}
.toc_parts .acc_btn::after {
	transform: rotate(90deg);
}
.toc_parts .acc_btn.is-show::before {
  display: none;
}
.toc_parts .acc_btn.is-show::after {
  transform: rotate(180deg);
}
.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: 200px;
}
.toc_parts .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(top, rgba(248,242,238,0) 0%, rgba(248,242,238,.9) 50%, rgba(248,242,238,.9) 50%, #f8f2ee 100%);
  background: linear-gradient(top, rgba(248,242,238,0) 0%, rgba(248,242,238,.9) 50%, rgba(248,242,238,.9) 50%, #f8f2ee 100%);
	width: 100%;
  height: 90px;
	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;
}

@media screen and (max-width: 768px) {
  .toc_parts {
    margin: 4rem auto 5rem;
    padding: 3rem 2rem 3rem;
    border-radius: 5px;
  }

  .toc_parts .ttl {
    padding: 0 0 0 1.2rem;
    font-size: 1.8rem;
    border-left: 2px solid #a9d16a;
  }

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

  #toc ul.chapter {
    margin: 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;
    font-size: 1.8rem;
  }
  #toc .chapter .chapter {
    margin: 0 0 1.5rem 3rem;
  }
  #toc .chapter .chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
  }
  #toc .chapter .chapter li::before {
    top: 6px;
    width: 6px;
    height: 6px;
  }


  /*グラデーションアコーディオン*/
  .toc_parts .acc_btn {
    bottom: -20px;
    max-width: 60%;
    padding: 1.2rem 3rem;
    border: 1px solid #172853;
    font-size: 1.4rem;
    border-radius: 3px;
  }
  .toc_parts .acc_btn::before,
  .toc_parts .acc_btn::after {
    width: 12px;
    height: 1px;
  }

  .toc_parts .acc_box.is-hide {
    height: 180px;
  }
  .toc_parts .acc_box::before {
    height: 80px;
  }

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


/*--------------------------------------
　lower_movie
---------------------------------------*/
#page .movie_block {
    width: 100%;
    height: 0;
    margin: 4rem auto 0;
    padding-top: 56.25%;
    position: relative;
}

#page .movie_block iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  margin: 10rem 0 10rem;
}

.summary_parts .summary_ttl {
  background: #172853;
  margin: 0 6rem 0 -6rem;
  padding: 3rem 5rem;
  font-size: 2.5rem;
  border-radius: 0 50px 0 50px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.summary_parts .summary_ttl::after {
  content: "";
  position: absolute;
  top: -130px;
  right: 30px;
  width: 270px;
  height: 270px;
  box-sizing: border-box;
  border: 60px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: -1;
}

.summary_parts .summary_parts_block {
  background: #f8f2ee;
  margin: -6rem 0 0;
  padding: 10rem 5rem 6rem;
  border-radius: 25px;
}

.summary_parts .txt {
  margin: 0 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 .summary_ttl {
    margin: 0 2rem 0 -2rem;
    padding: 2rem 3rem;
    font-size: 1.8rem;
    border-radius: 0 25px 0 25px;
  }
  .summary_parts .summary_ttl::after {
    top: -60px;
    right: 15px;
    width: 120px;
    height: 120px;
    border: 30px solid rgba(255,255,255,0.06);
  }

  .summary_parts .summary_parts_block {
    margin: -3rem 0 0;
    padding: 5rem 2rem 3rem;
    border-radius: 12px;
  }

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



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

.comment_parts .comment_item {
  margin: 0 0 4rem;
  padding: 3rem 5rem 3rem;
  border: 2px solid #c2aa96;
}




.comment_parts .comment_item:nth-child(odd)::before{
	content:"";
	position:absolute;
	background: url(img/comment-q.png) no-repeat center;
	width: 40px;
	height: 40px;
	background-size:100%;
	margin: auto 0;
	left: 19px;
	top: 26px;
}



.comment_parts .comment_item:nth-child(even)::before{
	content:"";
	position:absolute;
	background:url(img/comment-a.png) no-repeat;
	width: 40px;
	height: 40px;
	background-size:100%;
	left: 18px;
	top: 23px;
}



.comment_item:not(:has(.txt)) .comment_ttl {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.comment_parts .comment_item:nth-child(odd) {
  background: #f8f2ee;
  position: relative;
  border-radius: 30px 30px 0 30px;
}
.comment_parts .comment_item:nth-child(even) {
  background: #fff;
  border-radius: 30px 30px 30px 0;
  position: relative;
}

.comment_parts .comment_item:nth-child(even) .comment_ttl{
	color:#f28500;
}
.comment_parts .comment_item:last-child {
  margin: 0 0 0;
}

.comment_parts .comment_ttl {
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  font-size: 2rem;
  border-bottom: 2px solid #c2aa96;
}

.comment_parts .txt {
  margin: 0 0 0;
}

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

  .comment_parts .comment_item {
    margin: 0 0 2rem;
    padding: 2.5rem 2rem 2.5rem;
    border: 1px solid #c2aa96;
  }
  .comment_parts .comment_item:nth-child(odd) {
    border-radius: 25px 25px 0 25px;
  }
  .comment_parts .comment_item:nth-child(even) {
    border-radius: 25px 25px 25px 0;
  }

  .comment_parts .comment_ttl {
    margin: 0 0 1.5rem;
    padding: 0 0 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #c2aa96;
  }
}


/*--------------------------------------
sp-movie
---------------------------------------*/
#page .movie_block {
        margin: 2rem auto 0;
}



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

.intro_parts .intro_parts_block {
  display: flex;
  justify-content: space-between;
}

.intro_parts .intro_item {
  width: 50%;
  padding: 4rem 5rem 5rem;
}
.intro_parts .intro_item.after {
  background: #f8f2ee;
  border-radius: 10px;
}

.intro_parts .sub {
  text-align: center;
}
.intro_parts .sub span {
  display: inline-block;
  padding: 1.5rem 4rem;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 100px;
}
.intro_parts .intro_item.before .sub span {
  background: #f8f2ee;
}
.intro_parts .intro_item.after .sub span {
  background: #93bb55;
}

.intro_parts .intro_ttl {
  margin: 2rem 0 0;
  font-size: 2rem;
}

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

.intro_parts ul {
  margin: 3rem 0 0;
}

.intro_parts table {
  margin: 3rem 0 0;
}

.intro_parts .imgBox {
  margin: 3rem auto 0;
}

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

  .intro_parts .intro_parts_block {
    display: block;
  }

  .intro_parts .intro_item {
    width: 100%;
    padding: 2.5rem 2rem 2.5rem;
  }
  .intro_parts .intro_item.after {
    border-radius: 5px;
  }

  .intro_parts .sub span {
    padding: 1rem 3rem;
    font-size: 1.5rem;
  }

  .intro_parts .intro_ttl {
    margin: 1.5rem 0 0;
    font-size: 1.8rem;
  }

  .intro_parts .txt {
    margin: 1.5rem 0 0;
  }  
  
  .intro_parts ul {
    margin: 2rem 0 0;
  }

  .intro_parts table {
    margin: 2rem 0 0;
  }
}



/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  background: #fff;
  margin: 10rem 0 10rem;
	padding: 4rem 5rem 4rem;
  border: 2px solid #c2aa96;
  border-radius: 10px;
}

.related-article01-title {
  padding: 0 0 0 1.5rem;
	font-size: 2.4rem;
	font-weight: bold;
  line-height: 1;
  border-left: 4px solid #f28500;
  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 2rem 0;
	padding: 0 0 0 0;
  font-size: 1.8rem;
}
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: block;
  padding: 0 0 0 4rem;
  font-weight: bold;
	text-decoration: none;
}
ul.related-article01-list li a::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  background: url("img/arrow_or04.png") left top no-repeat;
  background-size: contain;
	width: 26px;
	height: 26px;
  margin-top: -13px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .related-article01-frame {
    margin: 6rem 0 6rem;
    padding: 2.5rem 2rem 2.5rem;
    border: 1px solid #c2aa96;
    border-radius: 5px;
  }

  .related-article01-title {
    padding: 0 0 0 1.2rem;
    font-size: 1.8rem;
    border-left: 2px solid #f28500;
  }

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



/*--------------------------------------
　com_parts
---------------------------------------*/
.com_parts {
  margin: 15rem 0 0rem;
  padding: 8rem 5rem 8rem 0;
  position: relative;
  z-index: 0;
}
.com_parts::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #172853;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  border-radius: 0 100px 0 0;
  z-index: -2;
}

.com_parts .com_ttl {
  font-size: 3.2rem;
  text-align: center;
  position: relative;
}
.com_parts .com_ttl::after {
	content: "";
  display: block;
  background: url("img/deco_gr.png") left top no-repeat;
  background-size: contain;
	width: 44px;
	height: 12px;
  margin: 2rem auto 0;
  box-sizing: border-box;
}

.com_parts .sponsored {
  margin: 8rem 0 0;
  padding: 5rem 4rem 5rem 0;
  position: relative;
  z-index: 0;
}
.com_parts .sponsored::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  background: url("img/eng_sponsored.png") left top no-repeat;
  background-size: contain;
  width: 352px;
  height: 40px;
}
.com_parts .sponsored::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255,255,255,0.16);
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  border-radius: 0 10px 10px 0;
  z-index: -1;
}
.com_parts .sponsored .imgBox {
  width: 390px;
  margin: 0 0 3rem 3rem;
  float: right;
}
.com_parts .sponsored .imgBox img {
  border-radius: 10px;
}
.com_parts .sponsored .caption {
  color: #dbdbdb;
  text-align: center;
}
.com_parts .sponsored .sponsored_ttl {
  font-size: 1.8rem;
}
.com_parts .sponsored .cc {
  margin: 4rem 0 0;
  font-size: 2.4rem;
}
.com_parts .sponsored .txt {
  margin: 4rem 0 0;
}
.com_parts .sponsored .btnBox {
  margin: 4rem 0 0;
}

.com_parts .media {
  margin: 6rem 0 0;
}
.com_parts .media .boxL {
  width: 40%;
  padding: 0 5rem 0 0;
}
.com_parts .media .media_ttl {
  font-size: 2.4rem;
}
.com_parts .media .cc {
  margin: 2rem 0 0;
  font-size: 1.8rem;
}
.com_parts .media .boxR {
  width: 55%;
  padding: 0 0 0 5rem;
  border-left: 1px solid #fff;
}
.com_parts .media .txt {
  margin: 0 0 0;
}

.com_parts .btn-link a {
  margin: 4rem 0 0;
}


.com_parts .circle-b {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 530px;
  border: 120px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: -1;
}
.com_parts .circle-b::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.com_parts .square {
  position: absolute;
  bottom: 250px;
  right: 0;
  background: url("img/shape_square02.png") left top no-repeat;
  background-size: contain;
  width: 170px;
  height: 170px;
  z-index: -1;
}

.com_parts .diamond {
  position: absolute;
  bottom: 0;
  left: -170px;
  background: rgba(255,255,255,0.1);
  width: 260px;
  height: 260px;
  transform: rotate(45deg);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .com_parts {
    margin: 6rem 0 6rem;
    padding: 4rem 0 4rem 0;
  }
  .com_parts::after {
    left: 50%;
    right: inherit;
    transform: translate(-50%,0);
    width: calc(100% + 4rem);
    min-width: 100%;
    border-radius: 50px 0 0 0;
  }

  .com_parts .com_ttl {
    font-size: 2.4rem;
  }
  .com_parts .com_ttl::after {
    width: 22px;
    height: 6px;
    margin: 1rem auto 0;
  }

  .com_parts .sponsored {
    margin: 5rem 0 0;
    padding: 3rem 2rem 3rem 0;
  }
  .com_parts .sponsored::before {
    width: 70%;
    height: 0;
    padding-top: calc(70%*40/352);
  }
  .com_parts .sponsored::after {
    width: calc(100% + 2rem);
    min-width: 100%;
    border-radius: 0 5px 5px 0;
  }
  .com_parts .sponsored .imgBox {
    width: 100%;
    margin: 0 0 0 0;
    float: inherit;
  }
  .com_parts .sponsored .imgBox img {
    border-radius: 5px;
  }
  .com_parts .sponsored .sponsored_ttl {
    margin: 2rem 0 0;
    font-size: 1.5rem;
  }
  .com_parts .sponsored .cc {
    margin: 2rem 0 0;
    font-size: 1.8rem;
  }
  .com_parts .sponsored .txt {
    margin: 2rem 0 0;
  }
  .com_parts .sponsored .btnBox {
    margin: 3rem 0 0;
  }

  .com_parts .media {
    margin: 4rem 0 0;
  }
  .com_parts .media .boxL {
    width: 100%;
    padding: 0 0 0 0;
  }
  .com_parts .media .media_ttl {
    font-size: 1.8rem;
  }
  .com_parts .media .cc {
    margin: 1.5rem 0 0;
    font-size: 1.5rem;
  }
  .com_parts .media .boxR {
    width: 100%;
    margin: 2rem 0 0;
    padding: 2rem 0 0 0;
    border-top: 1px solid #fff;
    border-left: none;
  }

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

  
  .com_parts .circle-b {
    top: -30px;
    right: -70px;
    width: 65%;
    border: 50px solid rgba(255,255,255,0.1);
  }

  .com_parts .square {
    bottom: 25%;
    right: -20px;
    width: 25%;
    height: 0;
    padding-top: 25%;
  }

  .com_parts .diamond {
    left: -30px;
    width: 35%;
    height: 0;
    padding-top: 35%;
  }
}





