@charset "utf-8";

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

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

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

@font-face {
  font-family: "Noto Serif JP vertical";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/NSerif-500-vertical.woff2") format("woff2"), url("fonts/NSerif-500-vertical.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 {
  background: #fbf7f1;
  color: #3f342f;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	color: #3f342f;
  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: 500;
}

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-pk {
  color: #d38768;
}

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

.vertical {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  font-family: "Noto Serif JP vertical";
}

@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;
  position: relative;
  z-index: 1;
}

header .sitename {
  font-size: 1.2rem;
}

header .operation {
  font-size: 1.2rem;
}


.header_lower {
  background: url("img/header_lower_bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 1rem 2rem 4rem;
  overflow: hidden;
}

.header_lower .sitename {
	text-align: center;
  position: relative;
  z-index: 1;
}
.header_lower .sitename a {
  display: block;
}

.header_lower .logo {
  width: 260px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 0;
}
.header_lower .logo::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/logo_bg.png") left top no-repeat;
  background-size: 100% auto;
  width: 404px;
  height: 310px;
  margin: auto;
  z-index: -1;
}
.header_lower .logo a {
  display: block;
}

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

  header .sitename {
    font-size: 1rem;
  }


  .header_lower {
    background: url("img/header_lower_bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 5px 1rem 2rem;
  }

  .header_lower .logo {
    width: 100%;
    margin: 1rem auto 0;
  }
  .header_lower .logo::after {
    top: -60px;
    background: url("img/logo_bg.png") left top no-repeat;
    background-size: contain;
    width: 90%;
    height: 0;
    padding-top: calc(90%*310/404);
  }
  .header_lower .logo img {
    display: block;
    width: 40%;
    margin: auto;
  }
}

/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 20px;
	right: 20px;
	width: 58px;
	height: 58px;
	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: #3f342f;
	width: 58px;
	height: 1px;
	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){
	margin-top: 20px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span:nth-of-type(1) {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	-ms-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
}
.hb-open #hb-menu span:nth-of-type(2) {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) 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.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: #fbf7f1;
	width: 45%;
	height: 100%;
	padding: 5rem 0 10rem;
	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);
}


.g-nav .logo_hb {
  width: 220px;
  margin: auto;
}

.g-nav .btn-web a {
  margin: 5rem auto 0;
}
.g-nav .btn-web a .small {
  font-size: 1.2rem;
}


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


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


.hb_menu_title {
  padding: 2rem 0 2rem 1rem;
  border-bottom: 1px solid #eae3da;
  position: relative;
}
.hb_menu_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: solid 1px #3f342f;
  border-right: solid 1px #3f342f;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hb_menu_title.open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}	
.hb_menu_title.first {
  padding: 2rem 0 2rem 1rem;
}
.hb_menu_title.first::after {
  display: none;
}

.hb_menu_title_link {
	display: block;
	padding: 0 4rem 0 0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
  pointer-events: none;
	position: relative;
}
.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: 20px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: solid 1px #3f342f;
  border-right: solid 1px #3f342f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


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

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

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


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  #hb-menu span {
    width: 30px;
  }
  #hb-menu span:nth-of-type(2){
    margin-top: 11px;
  }

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

  .hb-open .overlay {
    background: rgba(0,0,0,0.25);
  }

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


  .g-nav .logo_hb {
    width: 50%;
  }
  
  .g-nav .btn-web a {
    margin: 3rem auto 0;
  }


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


  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px solid #eae3da;
  }
  .hb_menu_title::after {
    right: 5px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
  .hb_menu_title.first {
    padding: 1.5rem 0 1.5rem 0;
  }

  .hb_menu_title_link {
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
  }
  .hb_menu_title.first .hb_menu_title_link::after {
    right: 5px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }


  .hb_menu_list_item {
    padding: 1.5rem 0 1.5rem 1rem;
  }

  .hb_menu_list_link {
    padding: 0 2.5rem 0 0;
  }
  .hb_menu_list_link::after {
    right: 10px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
}


/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
	width: 1100px;
	margin: 4rem auto 0;
  font-size: 1rem;
  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: 1rem;
		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: #82969c;
	width: 100%;
	min-width: 1100px;
}

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


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


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


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


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


.l-footer-menu__title {
	padding: 0 0 1.5rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
}

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


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

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

.l-footer-menu__list__link {
	display: block;
	padding: 0 4rem 0 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link::after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_wh02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
  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: #7c9096;
	max-width: 880px;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
	color: #fff;
	font-size: 1.2rem;
	line-height: 2;
}
.l-footer-area .menseki span {
  display: inline-block;
}


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


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

.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;
  color: #fff;
}
.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
  color: #fff;
}
.l-footer-copy a:hover {
  text-decoration: none;
}

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

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


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


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


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


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


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

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


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

  .l-footer-menu__list__item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
  }
  .l-footer-menu__list__item:first-child {
    display: block;
  }

  .l-footer-menu__list__link {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  }
  .l-footer-menu__list__link:after {
    right: 5px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
  .l-footer-menu__list__link::after {
    right: 5px;
    background: none;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

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

  .l-footer-submenu__list__item {
    margin: 0 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.5);
  }

  .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;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}



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

.l-pagetop__link {
  display: block;
}

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



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

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

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


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

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

	#category,
	#page {
		width: 100%;
	}
  
  
  .flexBox {
    display: block;
  }
}



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

.contents h1 {
	margin: 0 0 3rem;
	font-size: 3.6rem;
	font-weight: 500;
  text-align: center;
	line-height: 1.4;
  position: relative;
}
.contents h1::before {
  content: "";
  display: block;
  background: url("img/eng_topic.png") left top no-repeat;
  background-size: contain;
  width: 400px;
  height: 100px;
  margin: 0 auto 2rem;
}

.contents .operation {
  color: #8a8a8a;
	font-size: 1rem;
  text-align: center;
}


.contents h2 {
	background: #fff url("img/h2_bg.png") left -100px top -140px no-repeat;
  background-size: 280px auto;
	margin: 4rem 0 2rem;
	padding: 2.5rem 3rem 2.5rem 4rem;
	font-size: 2.8rem;
  border: 1px solid #eee7db;
	position: relative;
  overflow: hidden;
  z-index: 0;
}
.contents h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 1px solid #3f342f;
}

.contents h2 a {
	padding: 0 4rem 0 0;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -25px;
	left: -40px;
	width: calc(100% + 7rem);
	height: calc(100% + 5rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-top: solid 1px #3f342f;
	border-right: solid 1px #3f342f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.contents h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 0 4.5rem;
	font-size: 2.4rem;
  position: relative;
}
.contents h3::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
	background: #dea483;
  width: 30px;
  height: 1px;
}

.contents h3 a {
	padding: 0 4rem 0 0;
	position: relative;
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-top: solid 1px #3f342f;
	border-right: solid 1px #3f342f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.contents h4 {
	margin: 4rem 0 2rem;
	font-size: 2rem;
}

.contents h4 a {
	padding: 0 3rem 0 0;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 1px #3f342f;
	border-right: solid 1px #3f342f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

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


  .contents h2 {
    background: #fff url("img/h2_bg.png") left -50px top -70px no-repeat;
    background-size: 50% auto;
    margin: 3rem 0 2rem;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    font-size: 2.2rem;
  }

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


  .contents h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 0 3rem;
    font-size: 1.8rem;
  }
  .contents h3::before {
    width: 20px;
  }

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


  .contents h4 {
    margin: 3rem 0 2rem;
    font-size: 1.6rem;
  }

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



/*--------------------------------------
　テキスト
---------------------------------------*/
.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: #d9886d;
	font-weight: 500;
}
.marker {
	font-weight: 500;
  border-bottom: 1px solid #dea483;
}


.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 1.5rem;
	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: 13px;
  left: 0;
	background: #dfa381;
  width: 6px;
  height: 6px;
	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 1rem 0;
	padding: 0 0 0 2.5rem;
	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: #3f342f;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
	color: #fff;
	font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.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: 3rem 0 3rem;
  }
  .contents ul li {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .contents ul li::before {
    top: 10px;
  }


  /*----- olリスト -----*/
  .contents ol {
    margin: 3rem 0 3rem;
  }
  .contents ol li {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .contents ol li::before {
    top: 6px;
  }
}



/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a,
.btn-line a {
	display: block;
	max-width: 450px;
	margin: 4rem auto 7rem;
	padding: 2.8rem 7rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
	text-decoration: none!important;
	position: relative;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
  background: linear-gradient(90deg, #d1ad94 0%, #d3886a 25%, #d1a78d 100%);
  border: 1px solid #d3886a;
}
.btn-web a::after {
  content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  background: url("img/link_web.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 24px;
	margin-top: -12px;
  box-sizing: border-box;
}
.btn-web a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fbf7f1;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}
.btn-web a:hover::before {
  transform: scaleY(1);
}
.btn-web a:hover {
  color: #d3886a;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
  background: linear-gradient(90deg, #82969c, #b7c4c8);
  border: 1px solid #82969c;
}
.btn-internal a::after {
  content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  background: url("img/arrow_wh01.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
	margin-top: -14px;
  box-sizing: border-box;
}
.btn-internal a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fbf7f1;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}
.btn-internal a:hover::before {
  transform: scaleY(1);
}
.btn-internal a:hover {
  color: #82969c;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}

/*----- btn-line（LINEリンク） -----*/
.btn-line a {
  background: #94d1b5;
}
.btn-line a::after {
  content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  background: url("img/arrow_wh01.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
	margin-top: -14px;
  box-sizing: border-box;
}
.btn-line a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fbf7f1;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}
.btn-line a:hover::before {
  transform: scaleY(1);
}
.btn-line a:hover {
  color: #94d1b5;
  border: 1px solid #94d1b5;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 1.5rem 0 0;
	font-size: 1.4rem;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: solid 1px #3f342f;
	border-right: solid 1px #3f342f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-link a:hover {
	text-decoration: none;
}


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


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

@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a,
  .btn-line a {
    max-width: 90%;
    margin: 3rem auto 3rem;
    padding: 2rem 4.5rem;
    font-size: 1.4rem;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a::after {
    top: 50%;
    right: 15px;
    width: 19px;
    height: 14px;
    margin-top: -7px;
  }


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


  /*----- btn-line（LINEリンク） -----*/
  .btn-line a::after {
    right: 15px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }


  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
  }

  
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #D1AD94;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 500;
		text-align: center;
		line-height: 1.5;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
		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;
  }
  .btnBox > div {
    width: 90%;
    margin: 0 auto 1.5rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  }
  .btnBox > div a {
    display: block;
  }
}



/*--------------------------------------
　scroll-hint
---------------------------------------*/
@media screen and (max-width: 768px) {
  .scroll-hint-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 90px;
  }
  .scroll-hint-text {
    font-size: 1rem;
    margin-top: 5px;
  }
}



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

table th {
	background: #f0ede9;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #3f342f;
	border-bottom: 1px solid #3f342f;
}
table th a {
	font-weight: 500;
	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 #3f342f;
	border-bottom: 1px solid #3f342f;
}
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 #3f342f;
	}

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #3f342f;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  .table_scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .table_scroll::-webkit-scrollbar {
    display: none;
  }
  .table_scroll table {
    min-width: 768px;
  }
  .table_scroll table th {
    display: table-cell;
    border-left: 1px solid #3f342f;
  }
  .table_scroll table td {
    display: table-cell;
    border-left: 1px solid #3f342f;
  }
}



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

.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: 500;
	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 {
  max-width: 740px;
	margin: 10rem auto 10rem;
  padding: 4rem 0 0 6rem;
  border-top: 1px solid #3f342f;
  border-bottom: 1px solid #3f342f;
  position: relative;
}
.toc_parts::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  background: url("img/eng_index.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 54px;
}

.toc_parts .ttl {
	margin: 0 0 3rem;
	font-size: 1.7rem;
	font-weight: 500;
}

.toc_parts .toc ul.chapter {
	margin: 0 0 0;
}
.toc_parts .toc ul.chapter li {
  margin: 0 0 1rem 0;
	padding: 0 0 0 4rem;
  font-size: 1.5rem;
  overflow-wrap: break-word;
	position: relative;
	counter-increment: toccount;
}
.toc_parts .toc ul.chapter li:last-child {
	margin: 0 0 0 0;
}
.toc_parts .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;
	font-size: 2rem;
  font-weight: 500;
}
.toc_parts .toc ul.chapter li a {
	display: block;
  font-weight: 500;
	text-decoration: none;
}
.toc_parts .toc .chapter .chapter {
  margin: 0 0 3rem 4rem;
}
.toc_parts .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_parts .toc .chapter .chapter li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: solid 1px #3f342f;
	border-right: solid 1px #3f342f;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

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


/*グラデーションアコーディオン*/
.toc_parts .toc_parts_inner {
  padding: 0 0 5rem;
}
.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: 0;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn_inner {
  display: inline-block;
  padding: 0 4rem 1rem 1rem;
  position: relative;
}
.toc_parts .acc_btn_inner::before,
.toc_parts .acc_btn_inner::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	background: #3f342f;
	width: 14px;
	height: 1px;
	margin-top: -5px;
	transition: all 0.4s;
}
.toc_parts .acc_btn_inner::after {
	transform: rotate(90deg);
}
.toc_parts .acc_btn.is-show .acc_btn_inner::before {
  display: none;
}
.toc_parts .acc_btn.is-show .acc_btn_inner::after {
  transform: rotate(180deg);
}
.toc_parts .acc_btn span {
  font-weight: 500;
}
.toc_parts .acc_btn span:before {
	content: "more";
}
.toc_parts .acc_btn.is-show span:before {
	content: "close";
}

.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(251,247,241,0) 0%, rgba(251,247,241,.9) 50%, rgba(251,247,241,.9) 50%, #fbf7f1 100%);
  background: linear-gradient(top, rgba(251,247,241,0) 0%, rgba(251,247,241,.9) 50%, rgba(251,247,241,.9) 50%, #fbf7f1 100%);
	width: 100%;
  height: 80px;
	transition: all 0.4s;
  z-index: 1;
}
.toc_parts .acc_btn.is-show + .acc_box::before {
	background: none;
	height: auto;
}

@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 6rem auto 6rem;
    padding: 2rem 0 0 4rem;
  }
  .toc_parts::before {
    width: 70px;
  }
  .toc_parts::after {
    top: 20px;
  }

  .toc_parts .ttl {
    margin: 0 0 2rem;
    font-size: 1.6rem;
  }

  .toc_parts .toc ul.chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 3.5rem;
    font-size: 1.3rem;
  }
  .toc_parts .toc ul.chapter li::before {
    top: -3px;
    font-size: 1.6rem;
  }
  .toc_parts .toc .chapter .chapter {
    margin: 0 0 1.5rem 3.5rem;
  }
  .toc_parts .toc .chapter .chapter li {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
  }


  .toc_parts .toc_parts_inner {
    padding: 0 0 4rem;
  }
  .toc_parts .acc_btn {
    text-align: right;
  }
  .toc_parts .acc_btn_inner {
    display: inline-block;
    padding: 0 3rem 5px 5px;
  }
  .toc_parts .acc_btn_inner::before,
  .toc_parts .acc_btn_inner::after {
    right: 3px;
    width: 10px;
    margin-top: -3px;
  }
  
  .toc_parts .acc_box.is-hide {
    height: 180px;
  }
  .toc_parts .acc_box::before {
    height: 80px;
  }
}



/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  margin: 10rem 0 10rem;
  padding: 8rem 20rem 10rem 0;
  position: relative;
  z-index: 0;
}
.summary_parts::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: radial-gradient(rgba(213,117,87,0.9) 15%, #eae3da);
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -1;
}
.summary_parts::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 60px;
  background: url("img/illust01.png") left top no-repeat;
  background-size: contain;
  width: 150px;
  height: 300px;
  opacity: 0.7;
}

.summary_parts .eng {
  position: absolute;
  top: 0;
  left: 0;
  width: 680px;
}

.summary_parts .summary_ttl {
  font-size: 2.8rem;
  position: relative;
}
.summary_parts .summary_ttl::after {
  content: "";
  display: block;
  background: #fff;
  width: 40px;
  height: 1px;
  margin: 3rem 0 0;
}

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

.summary_parts .marker {
    border-bottom: 1px solid #F6CCCC;
}

@media screen and (max-width: 768px) {
  .summary_parts {
    margin: 6rem 0 6rem;
    padding: 4rem 0 4rem 0;
  }
  .summary_parts::before {
    left: 50%;
    right: inherit;
    transform: translate(-50%,0);
    background: linear-gradient(180deg, #dea894 0%, rgba(213,117,87,0.9) 30%, rgba(213,117,87,0.9) 70%, #dea894 100%);
    width: calc(100% + 4rem);
    min-width: 100%;
  }
  .summary_parts::after {
    bottom: -55px;
    right: -20px;
    width: 15%;
    height: 0;
    padding-top: calc(15%*300/150);
  }

  .summary_parts .eng {
    width: 100%;
  }

  .summary_parts .summary_ttl {
    font-size: 1.8rem;
  }
  .summary_parts .summary_ttl::after {
    width: 25px;
    margin: 1.5rem 0 0;
  }

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



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

.sv_parts .eng {
  width: 610px;
  margin: auto;
}

.sv_parts .sv_parts_block {
  padding: 6rem 0 6rem;
  border-top: 1px solid #ecc8b9;
  border-bottom: 1px solid #ecc8b9;
  position: relative;
}
.sv_parts .sv_parts_block::after {
  content: "";
	position: absolute;
	top: 20px;
	right: 10px;
  background: url("img/illust02.png") left top no-repeat;
  background-size: contain;
	width: 180px;
	height: 100px;
  z-index: -1;
}

.sv_parts .imgBox {
  width: 320px;
}
.sv_parts .caption {
  text-align: center;
}

.sv_parts .txtBox {
  width: calc(100% - 370px);
  position: relative;
}
.sv_parts .txtBox::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 35%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg01.png") left top no-repeat;
  background-size: contain;
	width: 580px;
	height: 580px;
  z-index: -1;
}

.sv_parts .sv_ttl {
  width: calc(100% - 200px);
  font-size: 1.6rem;
}
.sv_parts .sv_ttl .large {
  font-size: 2.6rem;
}

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

.sv_parts .btnBox {
  margin: 5rem 0 0;
}

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

@media screen and (max-width: 768px) {
.sv_parts {
    margin: 6rem 0 6rem;
}
.sv_parts .eng {
width: 90%;
}
.sv_parts .sv_parts_block {
padding: 3rem 0 3rem;
}
.sv_parts .sv_parts_block::after {
top: 10;
right: 0;
width: 25%;
height: 0;
padding-top: calc(25%*100/180);
}
.sv_parts .imgBox {
width: 100%;
margin: 2rem 0 0;
}
.sv_parts .txtBox {
width: 100%;
}
.sv_parts .txtBox::after {
top: -25%;
left: 50%;
transform: translate(-50%,0);
width: 100%;
height: 0;
padding-top: 100%;
}
.sv_parts .sv_ttl {
width: 75%;
font-size: 1.4rem;
}
.sv_parts .sv_ttl .large {
font-size: 1.8rem;
}
.sv_parts .txt {
margin: 2rem 0 0;
}
.sv_parts .btnBox {
margin: 3rem 0 0;
}
.sv_parts .btn-link a {
margin: 2rem 0 0;
}
}



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

.comment_parts .comment_item ,
.comment_item_left,
.comment_item_right{
  background: #fff;
  margin: 0 0 6rem;
  padding: 5rem 5rem 5rem;
}
.comment_parts .comment_item:last-child, {
  margin: 0 0 0;
}

.comment_parts .flexBox {
  align-items: center;
}

.comment_parts .imgBox {
  width: 120px;
  position: relative;
  z-index: 0;
}
.comment_parts .imgBox  img{
  border-radius: 50%;
}

.comment_parts .imgBox::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg01.png") left top no-repeat;
  background-size: contain;
	width: 280px;
	height: 280px;
  z-index: -1;
}
.comment_parts .comment_item:nth-child(even) .imgBox,
.comment_parts .comment_item_right .imgBox{
  order: 2;
}

.comment_parts .comment_ttlWrap {
  width: calc(100% - 170px);
}
.comment_parts .comment_ttl {
  padding: 0 0 2rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #3f342f;
}
.comment_parts .career {
  margin: 2rem 0 0;
  font-size: 1.4rem;
}
.comment_parts .comment_item:nth-child(even) .comment_ttlWrap {
  order: 1;
}

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

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

  .comment_parts .comment_item {
    margin: 0 0 5rem;
    padding: 0 2rem 3rem;
  }

  .comment_parts .imgBox {
    width: 25%;
    margin: auto;
    position: relative;
    top: -30px;
  }
  .comment_parts .imgBox::after {
    width: 150px;
    height: 150px;
  }  
  
  .comment_parts .comment_ttlWrap {
    width: 100%;
    margin: -1rem 0 0;
  }
  .comment_parts .comment_ttl {
    padding: 0 0 1.5rem;
    font-size: 1.8rem;
  }
  .comment_parts .career {
    margin: 1.5rem 0 0;
  }
  .comment_parts .comment_item:nth-child(even) .comment_ttlWrap {
    order: 1;
  }

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



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

.schedule_parts .schedule_ttlWrap {
  text-align: center;
}
.schedule_parts .name {
  font-size: 1.5rem;
}
.schedule_parts .name .large {
  font-size: 2.2rem;
}
.schedule_parts .schedule_ttl {
  margin: 1rem 0 0;
  font-size: 2.6rem;
}

.schedule_parts .block_inner {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
  padding: 3rem 0 5rem;
  border-top: 1px solid #3f342f;
  border-bottom: 1px solid #3f342f;
}

.schedule_parts .schedule_item {
  flex-grow: 1;
  position: relative;
}
.schedule_parts .schedule_item:last-child::after {
	content: "";
	position: absolute;
  top: 35px;
	right: -3px;
	width: 18px;
	height: 18px;
	border-top: solid 3px #eae3da;
	border-right: solid 3px #eae3da;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  z-index: 1;
}

.schedule_parts .time {
  font-size: 1.8rem;
  position: relative;
  left: 20px;
}
.schedule_parts .ccWrap {
  width: 100%;
	margin: 4rem 0 0;
  padding: 0 3rem 0 3rem;
  position: relative;
}
.schedule_parts .schedule_item:last-child .ccWrap {
  padding: 0 0 0 3rem;
}
.schedule_parts .ccWrap::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 14px);
  left: 35px;
  background: #dda483;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: 2;
}
.schedule_parts .ccWrap::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 20px);
	left: 35px;
  background: #eae3da;
  width: 100%;
  height: 3px;
  box-sizing: border-box;
  z-index: 1;
}
.schedule_parts .schedule_item:last-child .ccWrap::after {
  width: calc(100% - 3rem);
}
.schedule_parts .cc {
  font-size: 2rem;
  line-height: 1.3;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -ms-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  font-family: "Noto Serif JP vertical";
}
.schedule_parts .cc .small {
  font-size: 1.4rem;
}

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

  .schedule_parts .name {
    font-size: 1.4rem;
  }
  .schedule_parts .name .large {
    font-size: 1.6rem;
  }
  .schedule_parts .schedule_ttl {
    margin: 5px 0 0;
    font-size: 1.8rem;
  }

  .schedule_parts .schedule_parts_block {
    overflow-x: scroll;
    white-space: nowrap;
    border-top: 1px solid #3f342f;
    border-bottom: 1px solid #3f342f;
    margin: 2rem 0 0;
    padding: 2rem 0 4rem;
  }
  .schedule_parts .schedule_parts_block::-webkit-scrollbar {
    height: 2px;
    display: none;
  }

  .schedule_parts .block_inner {
    display: flex;
    justify-content: space-between;
    min-width: 768px;
    margin: 0 0 0;
    padding: 0 0 0;
    border-top: none;
    border-bottom: none;
  }

  .schedule_parts .schedule_item:last-child::after {
    top: 27px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #eae3da;
    border-right: solid 2px #eae3da;
  }
  
  .schedule_parts .time {
    font-size: 1.4rem;
    left: 15px;
  }

  .schedule_parts .ccWrap {
    margin: 3rem 0 0;
    padding: 0 2rem 0 2rem;
  }
  .schedule_parts .schedule_item:last-child .ccWrap {
    padding: 0 0 0 2rem;
  }
  .schedule_parts .ccWrap::before {
    bottom: calc(100% + 12px);
    left: 25px;
    width: 12px;
    height: 12px;
  }
  .schedule_parts .ccWrap::after {
    bottom: calc(100% + 17px);
    left: 25px;
    height: 2px;
  }
  .schedule_parts .schedule_item:last-child .ccWrap::after {
    width: calc(100% - 2rem);
  }
  .schedule_parts .cc {
    font-size: 1.8rem;
  }
  .schedule_parts .cc .small {
    font-size: 1.3rem;
  }
}



/*--------------------------------------
　interview_parts
---------------------------------------*/
.interview_parts {
  margin: 15rem 0 10rem;
  padding: 0 10rem 8rem 0;
  position: relative;
  z-index: 0;
}
.interview_parts::before {
  content: "";
  position: absolute;
  top: 0;
  left: -645px;
  background: url("img/grad_bg02.png") left top no-repeat;
  background-size: contain;
  width: 1290px;
  height: 730px;
  z-index: -1;
}
.interview_parts::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -2;
}

.interview_parts .eng {
  position: absolute;
  top: 0;
  left: -150px;
  width: 300px;
}

.interview_parts .txtBox {
  width: calc(100% - 380px);
  margin: 6rem 0 0;
}

.interview_parts .sub {
  display: inline-block;
  background: #fff;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border: 1px solid #d38768;
}
.interview_parts .sub .small {
  font-size: 1.2rem;
}

.interview_parts .interview_ttl {
  margin: 2rem 0 0;
  padding: 0 0 2rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #3f342f;
}

.interview_parts .profile {
  margin: 3rem 0 0;
}

.interview_parts .imgBox {
  width: 380px;
  margin: -4rem -10rem 0 0;
  position: relative;
}
.interview_parts .imgBox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50px;
  background: url("img/illust03.png") left top no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  transform: scale(-1, 1);
}

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

.interview_parts .btnBox {
  margin: 5rem 0 0;
}

@media screen and (max-width: 768px) {
  .interview_parts {
    margin: 6rem 0 6rem;
    padding: 4rem 0 6rem 0;
  }
  .interview_parts::before {
    left: -50%;
    width: 150%;
    height: 0;
    padding-top: calc(150%*730/1290);
  }
  .interview_parts::after {
    left: 50%;
    right: inherit;
    transform: translate(-50%,0);
    min-width: 100%;
  }

  .interview_parts .eng {
    left: 0;
    width: 60%;
  }

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

  .interview_parts .subWrap {
    text-align: center;
  }
  .interview_parts .sub {
    padding: 8px 1rem;
  }

  .interview_parts .interview_ttl {
    margin: 2rem 0 0;
    padding: 0 0 1.5rem;
    font-size: 1.7rem;
  }

  .interview_parts .profile {
    margin: 2rem 0 0;
  }

  .interview_parts .imgBox {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .interview_parts .imgBox::after {
    bottom: -10px;
    left: -9px;
    width: 15%;
    height: 0;
    padding-top: 15%;
  }

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

  .interview_parts .btnBox {
    margin: 3rem 0 0;
  }
}



/*--------------------------------------
　com_bnr
---------------------------------------*/
.com_bnr {
  max-width: 700px;
  margin: 15rem auto 10rem;
  position: relative;
}

.com_bnr a {
  display: block;
  background: url("img/com_bnr_bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 3rem 3rem 3rem;
  border: 1px solid #c4cac9;
  position: relative;
}
.com_bnr a::after {
  content: "";
	position: absolute;
	bottom: -20px;
	right: -40px;
  background: url("img/illust04.png") left top no-repeat;
  background-size: contain;
	width: 140px;
	height: 130px;
}

.com_bnr .com_bnr_block {
  background: rgba(255,255,255,0.3);
  padding: 5rem 6rem 3rem;
}

.com_bnr .eng {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 480px;
}

.com_bnr .bnr_txt {
  font-size: 2.4rem;
}

.com_bnr .more_link {
  margin: 1rem 0 0;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .com_bnr {
    max-width: 100%;
    margin: 8rem auto 6rem;
  }

  .com_bnr a {
    padding: 1.5rem 1.5rem 1.5rem;
  }
  .com_bnr a::after {
    bottom: -10px;
    right: -20px;
    width: 20%;
    height: 0;
    padding-top: calc(20%*130/140);
  }

  .com_bnr .com_bnr_block {
    padding: 2rem 1.5rem 2rem;
  }

  .com_bnr .eng {
    top: -15px;
    left: -15px;
    width: 65%;
  }

  .com_bnr .bnr_txt {
    font-size: 1.8rem;
  }

  .com_bnr .more_link {
    margin: 5px 0 0;
    font-size: 1.5rem;
  }
}



/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  max-width: 810px;
  margin: 10rem auto 10rem;
  padding: 4rem 5rem 4rem;
  border: 1px solid #3f342f;
}

.related-article01-title {
  padding: 0 0 0 1.5rem;
	font-size: 1.8rem;
	font-weight: 500;
  line-height: 1.3;
  border-left: 1px solid #dea483;
  position: relative;
}
.related-article01-title span {
	font-weight: 500;
  line-height: 1.3;
}

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

ul.related-article01-list {
	margin: 3rem 0 0;
}
ul.related-article01-list li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 1.5rem;
  font-size: 1.4rem;
	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: block;
  padding: 0 0 0 3rem;
  font-weight: 500;
	text-decoration: none;
  position: relative;
}
ul.related-article01-list li a::before {
  content: "";
	position: absolute;
	top: 50%;
  left: 0;
  background: url("img/arrow_bk02.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}

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

  .related-article01-title {
    padding: 0 0 0 1.5rem;
    font-size: 1.7rem;
  }

  ul.related-article01-list {
    margin: 1.5rem 0 0;
  }
  ul.related-article01-list li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 0;
  }
  ul.related-article01-list li a {
    padding: 0 0 0 2.5rem;
  }
}



/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr {
  position: fixed;
  bottom: 80px;
  right: 0;
  z-index: 1;
}

.fixed_bnr .bnr {
  width: 95px;
  height: 40%;
  margin: 0 0 1.5rem auto;
}
.fixed_bnr .bnr:last-child {
  margin: 0 0 0 auto;
}
.fixed_bnr .bnr02 {
  height: 35%;
}

.fixed_bnr .bnr a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2.5rem 2rem 4rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  position: relative;
}
.fixed_bnr .bnr01 a {
  background: radial-gradient(#d3886a 20%, #d1ad94);
  border: 1px solid #d3886a;
}
.fixed_bnr .bnr02 a {
  background: linear-gradient(180deg, #82969c 0%, #82969c 40%, #eae3da 100%);
  border: 1px solid #82969c;
}
.fixed_bnr .bnr a::after {
	content: "";
	position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%,0);
  width: 60px;
  height: 20px;
  margin: auto;
}
.fixed_bnr .bnr01 a::after {
  background: url("img/link_check.png") left top no-repeat;
  background-size: contain;
}
.fixed_bnr .bnr02 a::after {
  background: url("img/link_more.png") left top no-repeat;
  background-size: contain;
}

.fixed_bnr_block {
  transition: all 0.3s ease;
}
.fixed_bnr_block.stop {
  opacity: 0;
}
.fixed_bnr_block.stop a {
  pointer-events: none;
}

@media screen and (max-width: 1366px) {
  .fixed_bnr .bnr {
    width: 80px;
    height: inherit;
    max-height: 40%;
    margin: 0 0 1rem auto;
  }
  .fixed_bnr .bnr02 {
    height: inherit;
    max-height: 40%;
  }
  
  .fixed_bnr .bnr a {
    padding: 2rem 2rem 4rem;
    font-size: 1.3rem;
    font-size: 85%;
  }
  .fixed_bnr .bnr a::after {
    bottom: 15px;
    width: 48px;
    height: 16px;
  }
}

@media screen and (max-width: 768px) {
  .fixed_bnr {
    bottom: 0;
    left: 0;
    right: inherit;
    width: calc(100% - 60px);
  }

  .fixed_bnr .bnr {
    width: 100%;
    height: auto;
    margin: 0 0 0;
  }

  .fixed_bnr .bnr a {
    display: block;
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
    font-size: 3.8vw;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
  }
  .fixed_bnr .bnr01 a {
    background: linear-gradient(90deg, #d1ad94 0%, #d3886a 25%, #d1a78d 100%);
  }
  .fixed_bnr .bnr02 a {
    display: none;
  }
  .fixed_bnr .bnr a::after {
    top: 50%;
    bottom: inherit;
    left: inherit;
    right: 10px;
    transform: translate(0%,-50%);
    width: 19px;
    height: 14px;
    margin: 0;
  }
  .fixed_bnr .bnr01 a::after {
    background: url("img/link_web.png") left top no-repeat;
    background-size: contain;
  }
  .fixed_bnr .bnr02 a::after {
    display: none;
  }
  
  .fixed_bnr .vertical {
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    font-family: "Noto Serif JP";
  }
}



/*--------------------------------------
　more
---------------------------------------*/
.more_link {
  font-size: 1.4rem;
  text-align: right;
}
.more_link span {
  display: inline-block;
  padding: 0 2rem 5px 0;
  line-height: 1;
  border-bottom: 1px solid #3f342f;
  position: relative;
}
.more_link span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-top: solid 1px #3f342f;
	border-right: solid 1px #3f342f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .more_link span {
    padding: 0 1.5rem 5px 0;
  }
}
