@charset "utf-8";

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

@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/ZKG-500.woff2") format("woff2"), url("fonts/ZKG-500.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/ZKG-700.woff2") format("woff2"), url("fonts/ZKG-700.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New vertical";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/ZKG-500-vertical.woff2") format("woff2"), url("fonts/ZKG-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 {
  color: #404040;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	/*overflow-x: hidden;*/
}

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

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

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

strong {
	font-weight: bold;
}

body, html {
	height: 100%;
}

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

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

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

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

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

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

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



/*--------------------------------------
　color
---------------------------------------*/
.cl-wh {
  color: #fff;
}
.cl-rd {
  color: #d85438;
}
.cl-gn {
  color: #2eb173;
}
.cl-bl {
  color: #56b6cb;
}
.cl-or {
  color: #dc6b2c;
}
.cl-yl {
  color: #f6bd29;
}



/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1000px;
  padding: 1rem 0 0 0;
}


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

header .sponsored {
  display: inline-block;
  margin-left: 10px;
  font-size: 1rem;
	line-height: 1.5;
}

header .operation {
  font-size: 1rem;
	line-height: 1.5;
}

.header_lower {
  padding: 2rem 0 0 4rem;
}
.header_lower .inner {
	max-width: 1000px;
  margin: auto;
}
.header_lower .boxInner {
  display: flex;
  justify-content: space-between;
  align-items: start;
	padding: 0 0 0 3rem;
  flex-wrap: wrap;
  width: calc(100% - 350px);
}
.header_lower .logo {
  width: 90px;
}
.header_lower .sitename_wrap {
  width: calc(100% - 120px);
	color: #838383;
}
.header_lower .sitename_wrap a{
	color: #838383;
}

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

  header .sitename {
    display: block;
  }

  header .sponsored {
    display: block;
    margin-left: 0;
  }

  .header_lower {
    padding: 1rem 0 0 1.5rem;
  }
  .header_lower .inner {
    max-width: 100%;
  }
  .header_lower .boxInner {
    width: calc(100% - 60px);
	  padding: 0;
  }
  .header_lower .logo {
    width: 26%;
    margin:2rem 3rem 0;
    order: 2;
	  z-index: 2;
  }
  .header_lower .sitename_wrap {
    width: 100%;
    order: 1;
  }  
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 10px;
	right: 10px;
	width: 70px;
	height: 65px;
	background: #2eb173;
	box-sizing: border-box;
  border-radius: 10px;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #fff;
  margin: 10px auto 0 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(1) {
	width: 40px;
	height: 2px;
}
#hb-menu span:nth-of-type(2) {
	width: 35px;
	height: 2px;
  margin: 10px auto 0 15px;
}
#hb-menu span:nth-of-type(3) {
  background: none;
  width: inherit;
  height: inherit;
  margin-top: 5px;
}
#hb-menu span:nth-of-type(3)::after {
  content: "MENU";
  display: block;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* ナビゲーションアイコン：アクティブ */
.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) {
	width: 40px;
	-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(3)::after {
  content: "CLOSE";
}


/* overlay */
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 9990; 
	transition: 0.2s;
}
.hb-open .overlay {
	background: #00000014;
	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: 520px;
	height: 100dvh;
  padding: 4rem 0 10rem;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  transition: .5s;
  transform: translateX(100%);
}
.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 .g-nav-inner::-webkit-scrollbar {
  display: none;
}

.g-nav_upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
	max-width: 80%;
  margin: auto;
}
.g-nav_upper .logo {
  width: 120px;
}
.g-nav_upper .btn-web {
  width: 100%;
    margin: 0 3rem;
}
.g-nav_upper .btn-web a {
 max-width: 265px;
    margin: 0 0 0;
    padding: 3rem 2rem 2rem;
    font-size: 1.6rem;
    border-radius: 0 15px 0 15px;
}
.g-nav_upper .btn-web a::before {
	width: 50px;
  height: 40px;
  border-radius: 100% 0 0 0;
}
.g-nav_upper .btn-web a::after {
  content: "";
	position: absolute;
  bottom: 10px;
	right: 10px;
  background: url("img/arrow-bnr.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 12px;
  margin-top: 0;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.g-nav_upper .btn-web a .icon {
  font-size: 1.1rem;
}


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


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


.hb_menu_title {
	padding: 1.5rem 4rem 1.5rem 0;
	border-bottom: 2px dashed #cccccc;
  position: relative;
}
.hb_menu_title::after { 
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: none;
  border-top: solid 2px #404040;
  border-right: solid 2px #404040;
  -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 {
	display: block;
	padding: 0 3rem 0 0;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
  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 {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: none;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}


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

.hb_menu_list_item {
  width: 100%;
	margin: 0 0 0 0;
	padding: 1.5rem 0;
	box-sizing: border-box;
  border-bottom: 2px dashed #cccccc;
	position: relative;
}
.hb_menu_list_item:first-child {
	display: block;
}

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


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    top: 5px;
    right: 5px;
    width: 50px;
    height: 45px;
    background: #2eb173;
    border-radius: 5px;
  }
  #hb-menu span {
    margin: 8px auto 0 auto;
    border-radius: 0;
  }
  #hb-menu span:nth-of-type(1) {
    width: 30px;
    height: 2px;
  }
  #hb-menu span:nth-of-type(2) {
    width: 25px;
    height: 2px;
    margin: 8px auto 0 10px;
  }
  #hb-menu span:nth-of-type(3) {
    margin-top: 3px;
  }
  #hb-menu span:nth-of-type(3)::after {
    font-size: 1rem;
  }
  
  /* ナビゲーションアイコン：アクティブ */
  .hb-open #hb-menu span:nth-of-type(1) {
    -webkit-transform: translateY(5px) translateX(0) rotate(45deg);
    -ms-transform: translateY(5px) translateX(0) rotate(45deg);
    transform: translateY(5px) translateX(0) rotate(45deg);
  }
  .hb-open #hb-menu span:nth-of-type(2) {
    width: 30px;
    -webkit-transform: translateY(-5px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-5px) translateX(0) rotate(-45deg);
    transform: translateY(-5px) translateX(0) rotate(-45deg);
  }

  /*----- g-nav -----*/
  .g-nav .g-nav-inner {
    width: 100%;
    height: 100%;
    padding: 6rem 2.5rem 10rem;
  }

  .g-nav_upper {
    max-width: 100%;
  }
  .g-nav_upper .logo {
	  width: 80px;
	  display: none;
  }
  .g-nav_upper .btn-web {
    width: 80%;
    margin: 0 3rem;
  }
  .g-nav_upper .btn-web a {
    max-width: 100%;
    padding: 1.8rem 3rem;
    font-size: 1.4rem;
    border-radius: 0 8px 0 8px;
  }
  .g-nav_upper .btn-web a::before {
    width: 30px;
    height: 30px;
  }
  .g-nav_upper .btn-web a::after {
    bottom: 8px;
    right: 5px;
    background: url("img/arrow-bnr.png") left top no-repeat;
    background-size: contain;
    width: 17px;
    height: 8px;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .g-nav_upper .btn-web a .icon {
    font-size: 1rem;
  }


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


  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px dashed #cccccc;
  }
	.hb_menu_title::after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 2px #404040;
		border-right: solid 2px #404040;
		-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 {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}

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

  .hb_menu_list_item {
    width: 100%;
    margin: 0 0 0 0;
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px dashed #cccccc;
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    padding: 0 2.5rem;
    font-size: 1.4rem;
  }
	.hb_menu_list_link br{
   display:none;
  }
  .hb_menu_list_link::after {
    right: 5px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 2px solid #404040;
    border-right: 2px solid #404040;
  }
}



/*--------------------------------------
　Pankuzu
---------------------------------------*/
.pankuzu_wrap {
  max-width: 1000px;
	margin: 3rem auto 0;
  padding: 0 0 0 4rem;
}
#pankuzu {
	width: 55%;
	margin: 0 0 0;
  font-size: 1.1rem;
  position: relative;
	color: #838383;
}
#pankuzu a {
	display: inline-block;
  text-decoration: underline;
	line-height: 1.8;
	color: #838383;
}
#pankuzu a:hover {
  text-decoration: none;
}

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



/*--------------------------------------
　media_parts
---------------------------------------*/
.media_parts {
    background: rgba(255, 255, 255, 0.8);
    max-width: 920px;
    margin: auto;
    padding: 1rem 4rem 3rem;
    border-radius: 40px;
    position: relative;
}
.media_parts::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% + 120px);
  background: url("img/media_parts_deco.png") left top no-repeat;
  background-size: contain;
  width: 390px;
  height: 275px;
}

.media_parts .eng {
  width: 483px;
	position: relative;
    top: 36px;
}

.media_parts .media_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.media_parts .boxL {
  width: 75%;
}

.media_parts .txt {
  margin: 1.5rem 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

.media_parts .boxR {
  width: 20%;
}

.media_parts .logo {
  width: 90px;
  margin: auto;
}

.media_parts .btn-link {
  text-align: center;
}
.media_parts .btn-link a {
  margin: 2rem 0 0;
	padding: 0 3rem 0 0;
}
.media_parts .btn-link a::after {
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .media_parts {
    max-width: 100%;
    padding: 3rem 2rem;
    border-radius: 20px;
  }
  .media_parts::before {
            left: inherit;
        right: 0;
        background: url(img/media_parts_deco.png) left top no-repeat;
        background-size: contain;
        width: 65%;
        bottom: 92%;
        height: 0;
        padding-top: calc(65% * 320 / 390);
  }

  .media_parts .eng {
    width: 100%;
	  top: 0;
    margin: auto;
  }

  .media_parts .boxL {
    width: 100%;
    order: 2;
  }

  .media_parts .boxR {
    width: 100%;
    margin: 1.5rem 0 0;
    order: 1;
  }

  .media_parts .logo {
    width: 25%;
  }

  .media_parts .btn-link {
    text-align: right;
  }
  .media_parts .btn-link a {
    margin: 1.5rem 0 0;
    padding: 0 2.5rem 0 0;
  }
  .media_parts .btn-link a::after {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }  
}



/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
  background: url("img/bg01.jpg") center top repeat;
  background-size: 1400px auto;
	width: 100%;
	min-width: 1000px;
  margin: 34rem 0 0;
  position: relative;
}
.l-footer-area::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/bg02.png") left top no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 160px;
}

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


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


.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: 2px dashed #cccccc;
	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__list {
  display: flex;
  flex-flow: row wrap;
	box-sizing: border-box;
	margin-top: 2rem;
}

.l-footer-menu__list__item {
  width: calc(100% / 2);
	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 0 0 2.5rem;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link::before {
	content: "";
 	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 3px solid #404040;
	border-right: 3px solid #404040;
  -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: #000;
	width: 8px;
	height: 1px;
}


.l-footer-area .menseki {
	background: #fff;
	max-width: 800px;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
	font-size: 1.2rem;
	line-height: 2;
  border-radius: 100px;
}
.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 {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 0;
	font-size: 1.4rem;
	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: 2px solid #404040;
	border-right: 2px solid #404040;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .l-footer-area {
    background: url("img/bg01.jpg") center top repeat;
    background-size: 100% auto;
    width: 100%;
    min-width: 100%;
    margin: 37% 0 0;
  }
  .l-footer-area::before {
    background: url("img/bg02.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*160/1400);
  }

  .l-footer-area__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 5rem 1.5rem 2rem;
  }


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


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


  .l-footer-menu__title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px dashed #cccccc;
    position: relative;
  }
	.l-footer-menu__title::after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		-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__list {
    display: none;
    margin-top: 0;
  }

  .l-footer-menu__list__item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 0 0 1.5rem;
  }
  .l-footer-menu__list__item:first-child {
    display: block;
  }

  .l-footer-menu__list__link {
    padding: 1rem 0 1rem 1.5rem;
  }
  .l-footer-menu__list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }


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

  .l-footer-submenu__list__item {
    margin: 0 0 0 0;
  }

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


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


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


  .l-footer-copy {
    display: block;
    max-width: 100%;
    padding: 1rem 1rem 5rem;
    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 #000;
		border-right: 1px solid #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}


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

.l-pagetop__link {
  display: block;
}

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



/*--------------------------------------
　Main Contents
---------------------------------------*/
.bg_wrap {
  background: url("img/bg01.jpg") center top repeat;
  background-size: 1400px auto;
  overflow: hidden;
}

.contents_wrap {
  width: 100%;
	min-width: 1000px;
  padding: 0 0 10rem;
  position: relative;
  z-index: 0;
}

.contents {
  background: #fff;
  width: 980px;
  margin: 3rem auto 0;
  padding: 7rem 5rem 5rem;
  border-radius: 60px;
  box-shadow: 15px 15px 0 0 #f6bd29;
  position: relative;
  z-index: 0;
}
.contents::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  background: url("img/contents_deco.png") left top no-repeat;
  background-size: contain;
  width: 474px;
    height: 193px;
}

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

@media screen and (max-width: 768px) {
  .bg_wrap {
    background: url("img/bg01.jpg") center top repeat;
    background-size: 100% auto;
    padding: 0 0 4rem;
  }

  .contents_wrap {
    background: #fff;
    width: calc(100% - 3rem);
    min-width: calc(100% - 3rem);
    margin: 3rem auto 0;
    padding: 3rem 2rem 3rem;
    border-radius: 20px;
    box-shadow: none;
  }
      .contents_wrap::before {
        content: "";
        position: absolute;
        bottom: 100%;
        right: -34px;
        background: url(img/contents_deco_sp.png) left top no-repeat;
        background-size: contain;
        width: 100%;
        height: 0;
        padding-top: calc(100% * 245 / 540);
    }
  
  .contents {
    width: 100%;
    margin: 3rem auto 0;
    padding: 0 0 0;
    border-radius: 0;
    box-shadow: none;
  }
  .contents::before {
    display: none;
  }
}



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

.contents h1 {
	margin: 0 0 5rem;
	font-size: 3.8rem;
	font-weight: bold;
  text-align: center;
	line-height: 1.4;
}


.contents h2 {
	margin: 7rem 0 2rem;
    padding: 1rem 1rem 1rem 6rem;
    background: #fbeecc;
    font-size: 2.4rem;
    position: relative;
    border-radius: 0 20px 0 20px;
    z-index: 0;
}
.contents h2::before {
  content: "";
  position: absolute;
    top: 7px;
    left: 10px;
  background: url("img/icon-h2.png") left top no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  z-index: -1;
}

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


.contents h3 {
	margin: 5rem 0 2rem;
	padding: 0 2rem 1rem 2rem;
	font-size: 2rem;
	border-bottom: 4px dashed #f4e6d3;
}

.contents h3 a {
	padding: 0 3rem 0 0;
	position: relative;
}
.contents h3 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -20px;
	width: calc(100% + 2rem);
	height: calc(100% + 2rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 3px #000;
	border-right: solid 3px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.contents h4 {
	    margin: 5rem 0 2rem;
    font-size: 2rem;
    color: #d85438;
    border-bottom: 1px solid #e1ada2;
    /* border-top: 1px solid #e6702e; */
    padding: 1rem 2rem;
}

.contents h4 a {
	display: inline-block;
	padding: 0 2.5rem 0 0;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 3px #000;
	border-right: solid 3px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 3rem;
    font-size: 2.5rem;
  }


  .contents h2 {
   margin: 4rem 0 2rem;
        padding:1rem 1rem 1rem 4.5rem;
        font-size: 2rem;
        border-radius: 0 10px 0 10px;
  }
  .contents h2::before {
    top: 13px;
    width: 28px;
    height: 28px;
  }

  .contents h2 a {
    padding: 0 2rem 0 0;
  }
  .contents h2 a::before {
    left: -40px;
    width: calc(100% + 4rem);
  }
  .contents h2 a::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }


  .contents h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 0;
    font-size: 1.8rem;
    border-bottom: 2px dashed #f4e6d3;
  }

  .contents h3 a {
    padding: 0 2rem 0 0;
  }
  .contents h3 a::before {
    left: 0;
    width: 100%;
    height: calc(100% + 1.5rem);
  }
  .contents h3 a::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }


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

  .contents h4 a {
    padding: 0 2rem 0 0;
  }
  .contents h4 a::after {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.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: #e6702e;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 70%, #ffdcd4 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: #efefef;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #cacaca;
	border-radius: 0;
	box-shadow: none;
}
.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #cacaca #efefef;
  	scrollbar-width: thin;
  }
}

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



/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 2rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1.5rem 0;
  padding: 0 0 0 3rem;
	font-size: 1.6rem;
  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: 3px;
  left: 0;
	background: url("img/icon-list.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
	box-sizing: border-box;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}


/*----- olリスト -----*/
.contents ol {
	margin: 4rem 0 4rem;
	list-style-type: none;
	counter-reset: count;
}
.contents ol li {
  margin: 0 0 1.5rem 0;
	padding: 0 0 0 3.5rem;
	font-size: 1.6rem;
  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);
  display: flex;
  justify-content: center;
  align-items: center;
	position: absolute;
	top: 5px;
	left: 0;
  background: #64bacc;
  width: 22px;
  height: 22px;
  padding: 0 0 2px;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
}
.contents ol a {
	display: inline-block;
	text-decoration: underline;
}
.contents ol li a:hover {
	text-decoration: none;
}

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


  /*----- olリスト -----*/
  .contents ol {
    margin: 3rem 0 3rem;
  }
  .contents ol li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 3rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .contents ol li::before{
    width: 18px;
    height: 18px;
    font-size: 1.4rem;
  }
}



/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 440px;
	margin: 4rem auto 4rem;
	padding: 3rem 5rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.3;
	border-radius: 20px;
	text-decoration: none!important;
  box-shadow: 0 6px 6px 0 #ded7cf;
	position: relative;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #d85438;
}
.btn-web a::before {
	content: "";
	position: absolute;
  bottom: 0;
	right: 0;
  background: rgba(255,255,255,0.75);
	width: 55px;
  height: 55px;
  border-radius: 100% 0 20px 0;
}
.btn-web a::after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: solid 3px #d85438;
  border-right: solid 3px #d85438;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-web a:hover {
  background: #d14325;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}

.btn-web.check .icon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%,0);
	background: #f6bd29;
  padding: 5px 1rem;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 100px;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #2eb173;
}
.btn-internal a::before {
	content: "";
	position: absolute;
  bottom: 0;
	right: 0;
  background: rgba(255,255,255,0.75);
	width: 55px;
  height: 55px;
  border-radius: 100% 0 20px 0;
}
.btn-internal a::after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: solid 3px #2eb173;
  border-right: solid 3px #2eb173;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-internal a:hover {
  background: #139155;
  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 3.5rem 0 0;
	font-size: 1.6rem;
	line-height: 1.5;
	text-decoration: none;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-gn.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
	margin-top: -14px;
}
.btn-link a:hover {
	text-decoration: none;
}


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


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

@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 95%;
    margin: 3rem auto 3rem;
    padding: 2rem 2.5rem;
    font-size: 1.6rem;
    border-radius: 10px;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a::before {
    width: 40px;
    height: 40px;
    border-radius: 100% 0 10px 0;
  }
  .btn-web a::after {
    bottom: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #d85438;
    border-right: solid 2px #d85438;
  }

  .btn-web.check .icon {
    top: -10px;
    padding: 3px 8px;
    font-size: 1.2rem;
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a::before {
    width: 40px;
    height: 40px;
    border-radius: 100% 0 10px 0;
  }
  .btn-internal a::after {
    bottom: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #2eb173;
    border-right: solid 2px #2eb173;
  }

  
  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.6rem;
    line-height: 1.5;
    text-decoration: none;
    position: relative;
  }
  .btn-link a::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }


	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #56B6CB;
		max-width: 95%;
		margin: 3rem auto 3rem;
		padding: 2rem 4.5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.3;
    border-radius: 10px;
		text-decoration: none!important;
		box-shadow: 0 6px 6px 0 #ded7cf;
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    left: 25px;
    background: url("img/icon-tel.png") left top no-repeat;
    background-size: contain;
		width: 15px;
		height: 26px;
		margin-top: -13px;
	}
  
  
  /*----- btnBox -----*/
  .btnBox {
    display: block;
    margin: 3rem 0 3rem;
  }
  .btnBox > div {
    width: 95%;
    margin: 0 auto 2rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  }
  .btnBox > div a {
    display: block;
  }
}



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

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

table td {
	padding: 2rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}
table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}
 .table_scroll.set table td{
      width: 25%;
}

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

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

	table td {
		display: block;
		padding: 1.5rem;
		font-size: 1.5rem;
		border-left: none;
		border-bottom: 1px solid #cccccc;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  .table_scroll {
		margin: 3rem 0 5rem;
    overflow-x: scroll;
  }
	.table_scroll::before {
  content: "▼スクロールできます▼";
  display: block;
  text-align: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 4px;
}
  .table_scroll::-webkit-scrollbar {
    height: 6px;
  }
  .table_scroll::-webkit-scrollbar-track{
		background: #e5e5e5;
		border: none;
		border-radius: 3px;
		box-shadow: none;
	}
	.table_scroll::-webkit-scrollbar-thumb {
		background: #b1b0b0;
		border-radius: 3px;
		box-shadow: none;
	}
  .table_scroll table {
		min-width: 650px;
    margin: 0 0 2rem;
	}
  .table_scroll table th {
    display: table-cell;
    border-left: 1px solid #cccccc;
  }
  .table_scroll table td {
    display: table-cell;
    border-left: 1px solid #cccccc;
  }

}



/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
	margin: 5rem 0 5rem;
	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: 50%;
  padding-right: 4rem;
}
.float-img.fr {
  float: right;
  width: 50%;
  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: 3rem 0 2rem 0;
	font-size: 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: 4rem 0 4rem;
	}
	
	.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:center;
  }

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



/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  background: #fdf7f4;
  max-width: 660px;
	margin: 5rem auto 5rem;
	padding: 3rem 4rem 3rem;
  border-radius: 20px;
  position: relative;
}

.toc_parts .ttl {
	font-size: 2.2rem;
	font-weight: bold;
}

#toc {
	margin: 2.5rem 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.6rem;
  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: -11px;
    left: 6px;
    background: none;
    width: inherit;
    height: inherit;
    border-radius: 0;
    color: #d85438;
    font-size: 2.4rem;
    font-weight: bold;
}
#toc ul.chapter li a {
	display: block;
	text-decoration: none;
}
#toc .chapter .chapter {
  margin: 0 0 2rem 4rem;
}
#toc .chapter .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 2rem;
	font-size: 1.4rem;
	position: relative;
	counter-increment: none;
}
#toc .chapter .chapter li::before {
content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: solid 2px #6b6b6b;
    border-right: solid 2px #6b6b6b;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

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


.toc_parts .acc_btn {
	position: absolute;
	right: 40px;
  bottom: 30px;
  padding: 0 3.5rem 0 0;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn:hover {
  opacity: 0.6;
}
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	transition: all 0.4s;
}
.toc_parts .acc_btn::after {
  background: url("img/acc-open.png") left top no-repeat;
  background-size: contain;
}
.toc_parts .acc_btn.is-show::after {
  background: url("img/acc-close.png") left top no-repeat;
  background-size: contain;
}
.toc_parts .acc_btn span {
  font-size: 1.6rem;
	font-weight: bold;
}
.toc_parts .acc_btn span:after {
	content: "⽬次を開く";
}
.toc_parts .acc_btn.is-show span:after {
	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(253,247,244,0) 0%, rgba(253,247,244,.9) 50%, rgba(253,247,244,.9) 50%, #fdf7f4 100%);
  background: linear-gradient(top, rgba(253,247,244,0) 0%, rgba(253,247,244,.9) 50%, rgba(253,247,244,.9) 50%, #fdf7f4 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;
}

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

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

  .toc_parts .ttl {
    font-size: 1.8rem;
  }

  #toc {
    margin: 2rem 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 2rem 3rem;
  }
  #toc .chapter .chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.5rem;
  }
  #toc .chapter .chapter li::before {
    top: 5px;
    width: 8px;
    height: 8px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
  }



  .toc_parts .acc_btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 0 2.5rem 0 0;
  }
  .toc_parts .acc_btn::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  .toc_parts .acc_btn span {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .toc_parts .acc_box.is-hide {
    height: 200px;
  }

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



/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts h2,
.summary_parts h3,
.summary_parts h4 {
  margin: 0 0 0;
  padding: 0 0 0 0;
  border: none;
  font-size: 2.8rem;
}
.summary_parts h2::before,
.summary_parts h3::before,
.summary_parts h4::before {
  display: none;
}
.summary_parts h2::after,
.summary_parts h3::after,
.summary_parts h4::after {
  display: none;
}

.summary_parts {
  background-color: rgba(213,207,195,0.1);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  margin: 6rem 0 6rem;
  padding: 7rem 6rem 5rem;
  position: relative;
  z-index: 0;
}
.summary_parts::after {
 content: "";
    position: absolute;
    top: -15px;
    right: 60px;
    background: url(img/icon-summary.png) left top no-repeat;
    background-size: contain;
    width: 91px;
    height: 93px;
    box-sizing: border-box;
}

.summary_parts .eng {
  position: absolute;
  top: 20px;
  left: 60px;
  width: 580px;
  z-index: -1;
}

.summary_parts .cc {
  font-size: 2.8rem;
}

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

@media screen and (max-width: 768px) {
  .summary_parts {
    margin: 6rem 0 6rem;
    padding: 3rem 2rem 3rem;
  }
  .summary_parts::after {
    top: -15px;
    right: 10px;
    width: 60px;
    height: 60px;
  }

  .summary_parts .eng {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
  }

  .summary_parts .cc {
    margin: 1rem 0 0;
    font-size: 1.8rem;
  }

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



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

.sponsored_parts .eng {
  width: 550px;
  margin: 0 0 -8px 3rem;
}

.sponsored_parts .upper {
  position: relative;
}

.sponsored_parts .sponsored_ttl {
  display: inline-block;
  background: #f6bd29;
  padding: 3rem 4rem 3rem;
  font-size: 4rem;
  border: 8px solid #fbeecc;
  border-radius: 0 40px 0 40px;
  position: relative;
  z-index: 1;
    font-weight: bold;
  overflow: hidden; 
}
.sponsored_parts .sponsored_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translate(0,-50%);
  background: #f8cf65;
  width: 330px;
  height: 330px;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: -1;
}
.sponsored_parts .mark {
  display: inline-block;
  background: rgba(255,255,255,0.8);
  margin: 0 1rem;
  padding: 5px 1rem;
  line-height: 1;
}
.sponsored_parts .bb {
  display: inline-block;
  margin: 0 1rem;
  padding: 0 0 5px;
  line-height: 1;
  border-bottom: 1px solid #d85438;
}

.sponsored_parts .imgBox {
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  z-index: 1;
}
.sponsored_parts .imgBox img {
  border: 4px solid #c5c4c4;
}
.sponsored_parts .caption {
  text-align: center;
}

.sponsored_parts .sponsored_parts_block {
  background: #f4ebdf;
  padding: 2.5rem 7rem 8rem;
  border-radius: 0 0 0 50px;
  position: relative;
  z-index: 0;
}
.sponsored_parts .sponsored_parts_block .marker{
    background:linear-gradient(transparent 70%, #f9e09d 0%);
}
.sponsored_parts .sponsored_parts_block::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%,0);
  background: #f4ebdf;
  width: 100%;
  height: 50px;
  z-index: -1;
}

.sponsored_parts .c_name_wrap {
  padding: 0 0 2rem 0;
  border-bottom: 4px dashed #fff;
}
.sponsored_parts .c_name {
font-size: 3.2rem;
    font-weight: bold;
    justify-content: flex-start;
    display: flex;
    align-items: center;
}
.sponsored_parts .c_name .sub {
  display: inline-block;
  background: #d85438;
  margin: 0 2rem 0 0;
  padding: 5px 2rem;
  font-size: 2.4rem;
  border-radius: 100px;
}

.sponsored_parts .btnBox {
  justify-content: space-between;
  margin: 6rem 0 0;
}
.sponsored_parts .btnBox > div {
  width: calc(50% - 2rem);
  margin: 0 0 0;
}

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

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

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

  .sponsored_parts .sponsored_ttl {
    display: block;
    width: calc(100% + 1.6rem);
    margin: 0 8px 0 -8px;
    padding: 2rem 1.5rem 2rem;
    font-size: 2rem;
    border: 4px solid #fbeecc;
    border-radius: 0 20px 0 20px;
  }
  .sponsored_parts .sponsored_ttl::before {
    left: -30px;
    width: 160px;
    height: 160px;
  }
  .sponsored_parts .mark {
    margin: 0 5px;
    padding: 5px 5px;
  }
  .sponsored_parts .bb {
    margin: 0 5px;
    padding: 0 0 5px;
  }

  .sponsored_parts .imgBox {
    position: relative;
    top: inherit;
    right: inherit;
    width: 100%;
    margin: 2rem 0 0;
  }
  .sponsored_parts .imgBox img {
    border: 2px solid #c5c4c4;
  }

  .sponsored_parts .sponsored_parts_block {
    padding: 2rem 1.5rem 3rem;
    border-radius: 0 0 0 25px;
  }
  .sponsored_parts .sponsored_parts_block::before {
    height: 25px;
  }

  .sponsored_parts .c_name_wrap {
    padding: 0 0 2rem 0;
    text-align: center;
    border-bottom: 2px dashed #fff;
  }
  .sponsored_parts .c_name {
           font-size: 2rem;
        justify-content: center;
        display: flex;
  }
  .sponsored_parts .c_name .sub {
    margin: 0 1rem 0 0;
        padding: 5px 1rem;
        font-size: 1.3rem;
  }

  .sponsored_parts .btnBox {
    margin: 3rem 0 0;
  }
  .sponsored_parts .btnBox > div {
    width: 95%;
    margin: 0 auto 2rem;
  }
	.sponsored_parts .btn-link a{
 margin: 1rem 0 0;
}
}



/*--------------------------------------
　comment_parts
---------------------------------------*/
.comment_parts {
  background: #fff;
  max-width: 800px;
  margin: 5rem auto 5rem;
  padding: 2.5rem 4rem 2.5rem;
  border-radius: 50px;
  position: relative;
}
.comment_parts.or {
  border: 5px solid #e6702e;
}
.comment_parts.bl {
  border: 5px solid #64bacc;
}
.comment_parts::before {
  content: "";
  position: absolute;
  bottom: -5px;
  background: #fff;
  width: 20px;
  height: 5px;
  box-sizing: border-box;
}
.comment_parts.or::before {
  right: 232px;
}
.comment_parts.bl::before {
  left: 232px;
}
.comment_parts::after {
  content: "";
  position: absolute;
  bottom: -22px;
  width: 4px;
  height: 32px;
  box-sizing: border-box;
  border-radius: 10px;
}
.comment_parts.or::after {
  right: 240px;
  background: #e6702e;
  transform: rotate(-25deg);
}
.comment_parts.bl::after {
  left: 240px;
  background: #64bacc;
  transform: rotate(25deg);
}

.comment_parts .comment_parts_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.comment_parts .comment_parts_inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 32px;
  box-sizing: border-box;
}
.comment_parts.or .comment_parts_inner::before {
  left: 0;
  background: url("img/comment_parts_deco-or01.png") left top no-repeat;
  background-size: contain;
}
.comment_parts.bl .comment_parts_inner::before {
  right: 0;
  background: url("img/comment_parts_deco-bl01.png") left top no-repeat;
  background-size: contain;
}

.comment_parts .boxL {
  width: 28%;
  text-align: center;
}
.comment_parts.bl .boxL {
  order: 2;
}

.comment_parts .imgBox {
  width: 120px;
  margin: auto;
}

.comment_parts .sub {
  display: inline-block;
  padding: 5px 2.5rem;
  font-size: 1.8rem;
  border-radius: 100px;
  position: relative;
  top: 0;
}
.comment_parts.or .sub {
  background: #e6702e;
}
.comment_parts.bl .sub {
  background: #64bacc;
}

.comment_parts .boxR {
  width: 68%;
}

.comment_parts .comment_ttl {
  font-size: 2.4rem;
}
.comment_parts.or .comment_ttl {
  color: #e6702e;
}
.comment_parts.bl .comment_ttl {
  color: #64bacc;
}

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

@media screen and (max-width: 768px) {
  .comment_parts {
    max-width: 100%;
    margin: 4rem auto 6rem;
    padding: 0 2rem 2.5rem;
    border-radius: 25px;
  }
  .comment_parts.or {
    border: 3px solid #e6702e;
  }
  .comment_parts.bl {
    border: 3px solid #64bacc;
  }
  .comment_parts::before {
    bottom: -3px;
    width: 15px;
    height: 3px;
  }
  .comment_parts.or::before {
    right: 38%;
  }
  .comment_parts.bl::before {
    left: 38%;
  }
  .comment_parts::after {
    bottom: -15px;
    width: 3px;
    height: 20px;
  }
  .comment_parts.or::after {
    right: 40%;
  }
  .comment_parts.bl::after {
    left: 40%;
  }

  .comment_parts .comment_parts_inner {
    display: block;
  }
  .comment_parts .comment_parts_inner::before {
    top: 15px;
    width: 40px;
    height: 26px;
  }
  .comment_parts.or .comment_parts_inner::before {
    left: 0;
    background: url("img/comment_parts_deco-or01.png") left top no-repeat;
    background-size: contain;
  }
  .comment_parts.bl .comment_parts_inner::before {
    right: 0;
    background: url("img/comment_parts_deco-bl01.png") left top no-repeat;
    background-size: contain;
  }

  .comment_parts .boxL {
    width: 100%;
    position: relative;
    top: -30px;
  }

  .comment_parts .imgBox {
    width: 36%;
    margin: auto;
  }

  .comment_parts .sub {
    padding: 5px 1.5rem;
    font-size: 1.4rem;
    top: -10px;
  }
  .comment_parts.or .sub {
    background: #e6702e;
  }
  .comment_parts.bl .sub {
    background: #64bacc;
  }

  .comment_parts .boxR {
    width: 100%;
    margin: -3rem 0 0;
  }

  .comment_parts .comment_ttl {
    font-size: 1.8rem;
    text-align: center;
  }

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



/*--------------------------------------
　check-ttl
---------------------------------------*/
 h2.check-ttl,
 h3.check-ttl,
 h4.check-ttl {
  margin: 6rem 0 6rem;
  padding: 0 5rem 3rem;
  border: none;
  font-size: 2.2rem;
}
 h2.check-ttl::before,
 h3.check-ttl::before,
 h4.check-ttl::before {
  display: none;
}
 h4.check-ttl::after,
 h4.check-ttl::after,
 h4.check-ttl::after {
  display: none;
}

.check-ttl {
  background: #f4ebdf;
  margin: 6rem 0 3rem;
  padding: 1rem 5rem 2rem;
  font-size: 2.2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.check-ttl .icon {
  position: absolute;
  top: -20px;
  left: 30px;
  display: inline-block;
  background: #f6bd29;
  width: 80px;
  height: 50px;
  padding: 2.5rem 0 0;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  border-radius: 0 0 100% 100%;
}

@media screen and (max-width: 768px) {
   h2.check-ttl,
   h3.check-ttl,
   h4.check-ttl {
    margin: 4rem 0 4rem;
    padding: 0 2rem 2rem;
    font-size: 1.5rem;
  }
   h2.check-ttl::before,
   h3.check-ttl::before,
   h4.check-ttl::before {
    display: none;
  }
   h4.check-ttl::after,
   h4.check-ttl::after,
   h4.check-ttl::after {
    display: none;
  }

  .check-ttl {
    margin: 4rem 0 4rem;
    padding: 8px 2rem 2rem;
    font-size: 1.5rem;
    border-radius: 10px;
  }

  .check-ttl .icon {
    top: -20px;
    left: 10px;
    width: 70px;
    height: 45px;
    margin: 0 0 1rem;
    padding: 2.5rem 0 0;
    font-size: 1rem;
  }
}



/*--------------------------------------
　qa_parts
---------------------------------------*/
.qa_parts {
  margin: 6rem 2rem 6rem;
  
}

.qa_parts .qa_item {
  margin: 0 0 7rem;
}
.qa_parts .qa_item:last-child {
  margin: 0 0 0;
}

.qa_parts .q_txt {
  padding: 0 0 0 5rem;
  color: #e6702e;
  font-size: 2.8rem;
  position: relative;
}
.qa_parts .q_txt::before {
  content: "Q.";
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 3.6rem;
  font-weight: bold;
}

.qa_parts .a_txt {
  background: #fcf3ee;
  width: 100%;
  margin: 2rem 0 0 auto;
  padding: 2rem 2rem 2rem 10rem;
  font-size: 2rem;
  border-radius: 0 30px 0 0;
  position: relative;
}
.qa_parts .a_txt::before {
  content: "└A.";
  position: absolute;
  top: 5px;
  left: 20px;
  color: #e6702e;
  font-size: 3.6rem;
  font-weight: bold;
}

.qa_parts .txt {
  width: calc(100% - 50px);
  margin: 3rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .qa_parts {
    margin: 6rem 0 6rem;
    padding: 2rem 0 2rem;
    border-top: 2px dashed #f4e6d3;
    border-bottom: 2px dashed #f4e6d3;
  }

  .qa_parts .qa_item {
    margin: 0 0 5rem;
  }

  .qa_parts .q_txt {
    padding: 0 0 0 3.5rem;
    font-size: 1.8rem;
  }
  .qa_parts .q_txt::before {
    top: -8px;
    font-size: 2.6rem;
  }

  .qa_parts .a_txt {
    width: 100%;
    margin: 1.5rem 0 0 0;
    padding: 1.5rem 1.5rem 1.5rem 5rem;
    font-size: 1.5rem;
    border-radius: 0 15px 0 0;
  }
  .qa_parts .a_txt::before {
    top: 10px;
    left: 5px;
    font-size: 2rem;
  }
  .qa_parts .a_txt::after {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    background: #fcf3ee;
    width: 15px;
    height: 100%;
  }

  .qa_parts .txt {
      width: calc(100% - 15px);
    margin: 2rem 0 0 auto;
  }
}



/*--------------------------------------
　interview_parts
---------------------------------------*/
.interview_parts {
  background: #fcf3ee;
  margin: 5rem 0 8rem;
  padding: 3rem 0 3rem;
  border-radius: 0 50px 0 50px;
}

.interview_parts .interview_ttl {
  display: inline-block;
  background:#ffe9b0;
	position: relative;
    z-index: 1;
  padding: 1.2rem 1rem 1.2rem 3rem ;
  font-size: 2rem;
  border-radius: 0 100px 100px 0;
	margin-bottom: 2rem;
}

.interview_parts .interview_ttl.flex {
  display: flex;
   align-items: center;
	    width: fit-content;
}
.interview_parts .interview_ttl .name {
  background: #e6702e;
  margin: 0 0 0 3rem;
  padding: 8px 2rem;
  font-size: 1.8rem;
  border-radius: 100px;
}

.interview_parts .interview_parts_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0 0;
  padding: 0 5rem 0 8rem;
}
.interview_parts .interview_parts_block .btn-link a {
	margin: 3rem 0 2rem;
    padding: 1rem 5rem 1rem 2rem;
    background: #ffffff;
    box-shadow: -3px 3px 6px 0 #ded7cf;
    border-radius: 100px;
}
.interview_parts .interview_parts_block .btn-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    background: url(img/arrow-gn.png) left top no-repeat;
    background-size: contain;
}

.interview_parts .imgBox {
  width: 270px;
  position: relative;
  z-index: 0;
	top: -30px;
}
.interview_parts .imgBox::before,
.interview_parts .imgBox::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
}
.interview_parts .imgBox::before {
  top: -50px;
  left: -60px;
  background: #e6702e;
  width: 130px;
  height: 130px;
  z-index: -1;
}
.interview_parts .imgBox::after {
  bottom: -50px;
  right: 0;
  background: #f7d4c0;
  width: 80px;
  height: 80px;
}
.interview_parts .imgBox img {
  border-radius: 30px;
}

.interview_parts .txtBox {
  width: calc(100% - 270px);
  padding: 0 0 0 5rem;
}

.interview_parts .cc {
  font-size: 2.8rem;
}

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

@media screen and (max-width: 768px) {
  .interview_parts {
    margin: 4rem 0 6rem;
    padding: 3rem 0 4rem;
    border-radius: 0 25px 0 25px;
  }

  .interview_parts .interview_ttl {
    padding: 1rem 5px 1rem 1rem ;
    font-size: 1.4rem;
	  margin-bottom: 0;
    font-size: 3.4vw;
  }
	.interview_parts .interview_ttl.flex {
   display: inline-block;
}
	.interview_parts .interview_ttl .name.tutor{
    margin:0.5rem 1rem 0 0;
  }
  .interview_parts .interview_ttl .name {
    margin: 0 0 0 1rem;
    padding: 5px 1rem;
    font-size: 1.4rem;
    font-size: 3.4vw;
  }

  .interview_parts .interview_parts_block {
    display: block;
    margin: 5rem 0 0;
    padding: 0 2rem 0 2rem;
  }

  .interview_parts .imgBox {
    width: 75%;
    margin: 0 -4rem 0 4rem;
	      top:0;
  }
  .interview_parts .imgBox::before,
  .interview_parts .imgBox::after {
  }
  .interview_parts .imgBox::before {
    top: -40px;
    left: -50px;
    width: 100px;
    height: 100px;
  }
  .interview_parts .imgBox::after {
    bottom: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
  }
  .interview_parts .imgBox img {
    border-radius: 15px;
  }

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

  .interview_parts .cc {
    font-size: 1.8rem;
    text-align: center;
  }

  .interview_parts .txt {
    margin: 1.5rem 0 0;
  }
	.interview_parts .interview_parts_block .btn-link a {
    margin: 3rem 0 1rem;
    padding: 1rem 4rem 1.5rem 2rem;
}
}



/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  max-width: 660px;
  margin: 8rem auto 5rem;
  padding: 3rem 4rem 3rem;
  border: 8px solid #f4e6d3;
  border-radius: 20px;
}

.related-article01-title {
	font-size: 2rem;
	font-weight: bold;
}
.related-article01-title span {
	font-weight: bold;
}

.related-article01-frame p.catch-01 {
  margin: 0 0 0;
	line-height: 1.8;
	    font-size: 1.5rem;
}


ul.related-article01-list {
	margin: 2rem 0 0 1.5rem;
}
ul.related-article01-list li {
  margin: 0 0 1.5rem 0;
	padding: 0 0 0 0;
  font-size: 1.5rem;
	position: relative;
}
ul.related-article01-list li:last-child {
	margin: 0 0 0 0;
}
ul.related-article01-list li::before {
  display: none;
}
ul.related-article01-list li a {
  display: inline-block;
  padding: 0 3rem 0 0;
	text-decoration: underline;
  position: relative;
}
ul.related-article01-list li br{
  display: none;
}
ul.related-article01-list li a::after {
  content: "";
  display: block;
	position: absolute;
  top: 50%;
  right: 0;
	background: url("img/arrow-gn.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-top: -10px;
	box-sizing: border-box;
}

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

  .related-article01-title {
    font-size: 1.6rem;
  }

  ul.related-article01-list {
    margin: 1.5rem 0 0 0;
  }
  ul.related-article01-list li {
    margin: 0 0 1rem 0;
  }
  ul.related-article01-list li a {
    padding: 0 0 0 2.5rem;
  }
  ul.related-article01-list li a::after {
    top: 5px;
    left: 0;
    right: inherit;
    width: 16px;
    height: 16px;
    margin-top: 0;
  }
}



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

.fixed_bnr a {
  display: block;
  background: #d85438;
  padding: 0 0 4rem;
  font-size: 1.5rem;
  line-height: 1.4;
  border-radius: 15px 0 15px 0;
  box-shadow: -3px 3px 6px 0 #ded7cf;
  position: relative;
}
.fixed_bnr a::before {
	content: "";
	position: absolute;
  bottom: 0;
	right: 0;
  background: rgba(255,255,255,0.75);
	width: 50px;
  height: 40px;
  border-radius: 100% 0 15px 0;
}
.fixed_bnr a::after {
	content: "";
	position: absolute;
  bottom: 10px;
	right: 10px;
  background: url("img/arrow-bnr.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 12px;
}
.fixed_bnr a:hover {
  background: #d14325;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}

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

.fixed_bnr .sub {
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  top: -8px;
}
.fixed_bnr .sub span {
  display: inline-block;
  background: #f6bd29;
  padding: 2px 1rem;
  border-radius: 100px;
}

.fixed_bnr .bnr_txt {
  display: flex;
	text-orientation: upright;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.fixed_bnr .bnr_txt span {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New vertical";
}

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

  .fixed_bnr a {
    padding: 0 5rem 1.5rem 1.5rem;
    font-size: 3.8vw;
    border-radius: 0 8px 0 0;
    box-shadow: 3px 3px 6px 0 #ded7cf;
  }
  .fixed_bnr a::before {
    width: 40px;
    height: 40px;
    border-radius: 100% 0 0 0;
  }
  .fixed_bnr a::after {
    bottom: 10px;
    right: 8px;
    background: url("img/arrow-bnr.png") left top no-repeat;
    background-size: contain;
    width: 19px;
    height: 10px;
  }

  .fixed_bnr .sub {
    font-size: 1rem;
    text-align: left;
    top: -6px;
  }
  .fixed_bnr .sub span {
    padding: 2px 8px;
  }

  .fixed_bnr .bnr_txt {
    display: block;
  }
  .fixed_bnr .bnr_txt span {
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    font-family: "Zen Kaku Gothic New";
  }
}


