@charset "utf-8";

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

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

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

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

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

/*--------------------------------------------------------------------------------
  reset
--------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: 400;
  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: #142952;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

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

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

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

strong {
	font-weight: 900;
}

body, html {
	height: 100%;
}

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

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

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

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

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

.inter {
  font-family: 'Inter';
  font-weight: 700;
}

@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-or01 {
  color: #FA7A39;
}
.cl-or02 {
  color: #FF9E6C;
}
.cl-or03 {
  color: #FF5600;
}
.cl-gn {
  color: #009655;
}


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

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

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

.p-sitemap br {
  display: none;
}

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


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

header .sitename__wrap {
  padding: 1rem 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

header .sitename {
  display: inline-block;
  font-size: 1.1rem;
	line-height: 1.5;
}
header .sponsored {
  display: inline-block;
  margin-left: 5px;
  font-size: 1.1rem;
	line-height: 1.5;
  position: relative;
}
header .sponsored::before {
  content: "|";
  display: inline-block;
  margin-right: 5px;
}

.header_lower .inner {
  width: 1000px;
  margin: auto;
  position: relative;
}

.header-logo {
  width: 320px;
  margin: auto;
  position: relative;
  top: 40px;
  z-index: 1;
}
.header-logo a {
  display: block;
}

.header_lower .lower-img01 {
  position: absolute;
  top: 40px;
  right: calc(100% - 50px);
  width: 363px;
}
.header_lower .lower-img02 {
  position: absolute;
  top: 0;
  left: 136px;
  width: 188px;
}
.header_lower .lower-img03 {
  position: absolute;
  top: -9px;
  right: 0;
  width: 159px;
}
.header_lower .lower-img04 {
  position: absolute;
  top: 60px;
  left: calc(100% + 50px);
  width: 252px;
}

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

  header .sitename__wrap {
    padding: 5px 5px;
    position: relative;
    text-align: center;
  }

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

  header .sponsored {
    margin-left: 3px;
  }
  header .sponsored::before {
    margin-right: 3px;
  }

  .header_lower .inner {
    width: 100%;
  }

  .header-logo {
    width: 46%;
    margin: -2rem auto 0;
    top: -26px;
  }

  .lower-imgWrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  .header_lower .lower-img01 {
    position: relative;
    top: inherit;
    right: inherit;
    width: 30%;
  }
  .header_lower .lower-img02 {
    display: none;
  }
  .header_lower .lower-img03 {
    position: relative;
    top: inherit;
    right: inherit;
    width: 17%;
  }
  .header_lower .lower-img04 {
    position: relative;
    top: inherit;
    left: inherit;
    width: 27%;
  }
}


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

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

/* overlay */
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 9999;
	transition: 0.2s;
}
.hb-open .overlay {
	background: none;
	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: #009655;
	width: 40%;
	height: 100%;
	padding: 12rem 0;
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .5s;
	transform: translateX(100%);
	z-index: 9999;
}
.hb-open .g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	transform: translateX(0);
	transform: translateZ(0);
}
.g-nav .g-nav-inner::-webkit-scrollbar {
  display: none;
}

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

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

.hb_menu_title {
	padding: 2rem 0 2rem 0;
	border-bottom: 1px solid #fff;
  position: relative;
  cursor: pointer;
	transition: all 0.3s ease;
}
.hb_menu_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  transform: translate(0,-50%) rotate(135deg);
  background: none;
  border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}
.hb_menu_title.open::after {
  transform: translate(0,-50%) rotate(-45deg);
}	
.hb_menu_title.first {
  padding: 2rem 0 2rem 0;
}
.hb_menu_title.first::after {
  display: none;
}
.hb_menu_title:hover {
  opacity: 0.6;
}

.hb_menu_title_link {
	display: block;
	padding: 0 4rem 0 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	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 {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  transform: translate(0,-50%) rotate(45deg);
  background: none;
  border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

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

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

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

.g-nav br {
  display: none;
}

@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
  }
  #hb-menu span {
    width: 20px;
    height: 1px;
  }
  #hb-menu span:nth-of-type(2),
  #hb-menu span:nth-of-type(3){
    margin-top: 5px;
  }

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

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

  .hb_menu_wrapper {
    max-width: 100%;
  }

  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
  }
  .hb_menu_title::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .hb_menu_title.first {
    padding: 1.5rem 0 1.5rem 0;
  }
  .hb_menu_title:hover {
    opacity: 1;
  }

  .hb_menu_title_link {
    padding: 0 3rem 0 0;
    font-size: 1.5rem;
  }
  .hb_menu_title.first .hb_menu_title_link::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

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

  .hb_menu_list_link {
    padding: 0 3rem 0 0;
    font-size: 1.4rem;
  }
  .hb_menu_list_link::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}


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

@media screen and (max-width: 768px) {
	#pankuzu {
		width: 100%;
		margin: 0 auto;
		padding: 0 2rem 0.5rem 2rem;
		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 2rem;
		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: #EFEFEF;
	width: 100%;
	min-width: 1200px;
}

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

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

.footer-media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 60px;
  background: #fff;
  padding: 6rem 7rem 6rem;
  border-radius: 10px;
}
.footer-logo {
  width: 260px;
}
.footer-logo a {
	display: block;
}
.footer-media__txtBox {
  flex: 1;
}
.footer-media__ttl {
  font-size: 3.4rem;
  font-weight: 900;
}
.footer-media__txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
}
.footer-media .btn-link a {
  margin: 2rem 0 0;
}

.footer-block {
  display: flex;
  justify-content: space-between;
  gap: 0 60px;
  margin-top: 7rem;
}

.footer-right {
  width: 70%;
  order: 2;
}

.footer-left {
  width: 30%;
  order: 1;
}

.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 #009655;
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
  font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.6;
  transition: all 0.3s ease;
	position: relative;
}
.l-footer-menu__title__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: 3px solid #009655;
	border-right: 3px solid #009655;
}

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

.l-footer-menu__list__item {
  width: calc((100% - 60px) / 3);
  margin: 0 0 15px 0;
  padding-left: 3rem;
	box-sizing: border-box;
	position: relative;
}
.l-footer-menu__list__item:first-child {
  display: none;
}
.l-footer-menu__list__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background: #009655;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
}

.l-footer-menu__list__link {
	display: block;
	padding: 0 2rem 0 0;
	font-size: 1.6rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link::after {
	content: "";
	display: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: 3px solid #009655;
	border-right: 3px solid #009655;
}

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

.l-footer-area .menseki {
	max-width: 100%;
  box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 2;
}
.l-footer-area .menseki span {
  display: inline-block;
}
.l-footer-area .menseki a {
  display: inline-block;
  text-decoration: underline;
}

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

.l-footer-area .link-web a {
  display: block;
  background: #fff;
  margin-top: 5rem;
  padding: 1rem 3rem 1rem 5.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 100px;
  position: relative;
}
.l-footer-area .link-web a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0,-50%);
  background: url("img/icon-web02.png") left top no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
}

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

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

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

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

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

  .footer-media {
    display: block;
    gap: 0 0;
    padding: 2rem 2rem 3rem;
    border-radius: 5px;
  }
  .footer-logo {
    width: 55%;
    margin: 1rem auto 0;
  }
  .footer-media__ttl {
    font-size: 1.8rem;
    text-align: center;
  }
  .footer-media__txt {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .footer-media .btn-link a {
    margin: 1.5rem 0 0;
  }

  .footer-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 0;
    margin-top: 3rem;
  }

  .footer-right {
    width: 100%;
    order: 1;
  }

  .footer-left {
    width: 100%;
    order: 2;
  }

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

  .l-footer-menu__title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px solid #fff;
  }
	.l-footer-menu__title::after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
    transform: translate(0,-50%);
		background: url("img/arrow-link.png") left top no-repeat;
    background-size: contain;
		width: 18px;
		height: 18px;
    box-sizing: border-box;
	}
	.l-footer-menu__title.open::after {
    transform: translate(0,-50%) rotate(-180deg);
	}  

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

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

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

  .l-footer-menu__list__link {
    display: block;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .l-footer-menu__list__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0,-50%) rotate(-90deg);
    background: url("img/arrow-link.png") left top no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border-top: none;
    border-right: none;
  }

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

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

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

  .l-footer-area .menseki {
    font-size: 1.2rem;
  }

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

  .l-footer-area .link-web a {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem 1rem 4rem;
    font-size: 1.4rem;
  }
  .l-footer-area .link-web a::before {
    left: 15px;
    width: 16px;
    height: 16px;
  }


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

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


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

.l-pagetop__link {
  display: block;
}

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


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

.contents h1 {
	margin: 0 0 3rem;
	font-size: 4rem;
	font-weight: 900;
  text-align: center;
	line-height: 1.4;
}
.contents h1::after {
  content: "";
  display: block;
  background: #009655;
  width: 210px;
  height: 3px;
  margin: 2.5rem auto 0;
  box-sizing: border-box;
}


.contents h2:not([class]) {
	background: #009655;
	margin: 4rem 0 2rem;
	padding: 1.5rem 2rem 1.5rem 2rem;
	color: #fff;
	font-size: 2.8rem;
  border-radius: 10px;
	position: relative;
}

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


.contents h3:not([class]) {
	margin: 4rem 0 2rem;
	padding: 0 0 1rem 6.5rem;
	font-size: 2.4rem;
	border-bottom: 2px solid #009655;
	position: relative;
}
.contents h3:not([class])::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  transform: translate(0,-50%);
  background: url("img/fixed-bnr01-img.png") left top no-repeat;
  background-size: contain;
  width: 58px;
  height: 46px;
  box-sizing: border-box;
}

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


.contents h4:not([class]) {
  background: #efefef;
	margin: 4rem 0 2rem;
  padding: 1rem 1.5rem;
	font-size: 2rem;
  border-radius: 5px;
}

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

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 2rem;
    font-size: 2.5rem;
  }
  .contents h1::after {
    width: 100px;
    height: 2px;
    margin: 1.5rem auto 0;
  }


  .contents h2:not([class]) {
    margin: 3rem 0 2rem;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
    font-size: 2.2rem;
    border-radius: 5px;
  }

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


  .contents h3:not([class]) {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #009655;
  }
  .contents h3:not([class])::before {
    top: calc(50% - 5px);
    width: 41px;
    height: 34px;
  }

  .contents h3:not([class]) a {
    padding: 0 4rem 0 0;
  }
  .contents h3:not([class]) a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 1rem);
  }
  .contents h3:not([class]) a::after {
    right: 0;
    width: 20px;
    height: 20px;
  }


  .contents h4:not([class]) {
    margin: 3rem 0 2rem;
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    border-radius: 3px;
  }

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


/*--------------------------------------------------
　テキスト
--------------------------------------------------*/
.update-date {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  text-align: right;
}

.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: #F46E43;
	font-weight: 900;
}
.marker {
	background: #D7EAE2;
	font-weight: 900;
}

p.operation {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.8;
}


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

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


/*--------------------------------------------------
　icon-ttl
--------------------------------------------------*/
.icon-ttl {
  background: #FFECE3;
  width: calc(100% - 40px);
  padding: 1.5rem 3rem 1.5rem 6rem;
  margin: 6rem 0 6rem auto;
  font-size: 2.4rem;
  font-weight: 900;
  border-radius: 10px;
  position: relative;
}
.icon-ttl .icon {
  position: absolute;
  top: -8px;
  left: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #142952;
  width: 82px;
  height: 82px;
  color: #FF9E6C;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .icon-ttl {
    width: calc(100% - 30px);
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin: 4rem 0 4rem auto;
    font-size: 1.8rem;
    border-radius: 5px;
  }
  .icon-ttl .icon {
    position: absolute;
    top: -3px;
    left: -30px;
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }  
}


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


/*----- olリスト -----*/
.contents ol {
	margin: 4rem 0 4rem;
	list-style-type: none;
	counter-reset: count;
}
.contents ol li {
  margin: 0 0 1.5rem 0;
	padding: 0 0 0 3.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: 3px;
	left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #142952;
  width: 24px;
  height: 24px;
	color: #fff;
	font-size: 1.9rem;
  font-weight: 900;
  font-family: 'Inter';
  text-align: center;
  line-height: 1;
  border-radius: 3px;
}
.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 {
    margin: 0 0 1rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .contents ul li::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }


  /*----- 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{
    top: 4px;
    width: 18px;
    height: 18px;
    font-size: 1.4rem;
    border-radius: 2px;
  }
}


/*--------------------------------------------------
　リンク
--------------------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 430px;
	margin: 4rem auto 4rem;
	padding: 2rem 7rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
  border: 1px solid #fff;
	border-radius: 100px;
	text-decoration: none!important;
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.16);
	position: relative;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #FF5600;
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/icon-web01.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
  box-sizing: border-box;
}

.btn-web .sb {
  position: absolute;
  bottom: calc(100% - 5px);
  background: #D5FFF1;
  width: 100%;
  max-width: 65%;
  padding: 1rem 2rem;
  color: #142952;
  font-size: 1.6rem;
  font-weight: 900;
  border-radius: 10px;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
}
.btn-web .sb::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
  transform: translate(-50%,0);
  box-sizing: border-box;
  border-top: 12px solid #D5FFF1;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #142952;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/arrow-wh.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
  box-sizing: border-box;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 3rem 0 0;
	font-size: 1.6rem;
  font-weight: 900;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
  box-sizing: border-box;
}
.btn-link a:hover {
	text-decoration: none;
}


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


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

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


  /*----- btn-web（外部リンク） -----*/
  .btn-web a::after {
    right: 15px;
    width: 20px;
    height: 20px;
  }
  
  .btn-web .sb {
    bottom: calc(100% - 3px);
    max-width: 70%;
    padding: 8px 1rem;
    font-size: 3.0vw;
    border-radius: 5px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25));
  }
  .btn-web .sb::after {
    border-top: 8px solid #D5FFF1;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
  }


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


  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
  }
  .btn-link a::after {
    width: 16px;
    height: 16px;
  }
  
	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #fbe61f;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		font-size: 1.5rem;
		font-weight: 900;
		text-align: center;
		line-height: 1.5;
    border: 2px solid #142952;
		border-radius: 100px;
		text-decoration: none!important;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.16);
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    left: 20px;
    transform: translate(0,-50%);
    background: url("img/icon-tel.png") left top no-repeat;
    background-size: contain;
		width: 17px;
		height: 21px;
	}
  
  
  /*----- btnBox -----*/
  .btnBox {
    display: block;
    margin: 3rem 0 0;
  }
  .btnBox > div {
    width: 90%;
    margin: 0 auto 1.5rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  } 
}


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

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

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

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


/*--------------------------------------------------
　画像＋テキスト
--------------------------------------------------*/
/* 画像を原寸より拡大しない */
.custom-img-class {
	width: auto;
	max-width: 100%;
	height: auto;
}

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

.float-wrap {
	margin: 2rem 0 2rem;
	box-sizing: border-box;
}

.float-img {
  position: relative;
}

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

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

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

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

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

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

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

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


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

.comment-parts__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
}

.comment-parts .imgBox__wrap {
  width: 180px;
  text-align: center;
}
.comment-parts .imgBox img {
  border-radius: 50%;
}
.comment-parts .img-txt01 {
  margin: 1rem 0 0;
  font-size: 1.1rem;
}
.comment-parts .img-txt02 {
  margin: 1rem 0 0;
  font-size: 1.8rem;
}

.comment-parts .sbBox__wrap {
  flex: 1;
}
.comment-parts .sbBox {
  background: #EFEFEF;
  padding: 4rem 5rem;
  border-radius: 10px;
  position: relative;
}
.comment-parts .sbBox::after {
	content: "";
	position: absolute;
	top: 80px;
	right: 100%;
  box-sizing: border-box;
  border-top: 15px solid transparent;
  border-right: 25px solid #EFEFEF;
  border-bottom: 15px solid transparent;
}
.comment-parts .comment-ttl {
  font-size: 2.4rem;
}
.comment-parts .txt {
  margin: 2rem 0 0;
}

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

  .comment-parts__block {
    display: block;
    background: #EFEFEF;
    padding: 2rem 2rem 3rem;
    border-radius: 5px;
  }

  .comment-parts .imgBox__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    text-align: left;
  }
  .comment-parts .imgBox {
    width: 35%;
  }
  .comment-parts .imgTxt {
    flex: 1;
  }
  .comment-parts .img-txt01 {
    margin: 0 0 0;
    font-size: 1.1rem;
  }
  .comment-parts .img-txt02 {
    font-size: 1.5rem;
  }

  .comment-parts .sbBox {
    background: none;
    margin: 2rem 0 0;
    padding: 0 0;
    border-radius: 0;
  }
  .comment-parts .sbBox::after {
    display: none;
  }
  .comment-parts .comment-ttl {
    font-size: 1.9rem;
  }
  .comment-parts .txt {
    margin: 1.5rem 0 0;
  }
}


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

.summary-parts__block {
  background: #ECF5F2;
  padding: 5rem 8rem 5rem;
  border-radius: 10px;
}


.summary-parts .summary-ttl__sub {
  text-align: center;
}
.summary-parts .summary-ttl__sub span {
  display: inline-block;
  background: #FA7A39;
  padding: 5px 4rem;
  font-size: 2rem;
  border-radius: 100px;
}

.summary-parts .summary-ttl {
  margin-top: 2rem;
  font-size: 2.6rem;
}
.summary-parts .summary-ttl .large {
  font-size: 3rem;
}

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

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

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

  .summary-parts__block {
    padding: 3rem 2rem 3rem;
    border-radius: 5px;
  }


  .summary-parts .summary-ttl__sub span {
    padding: 3px 2rem;
    font-size: 1.6rem;
  }

  .summary-parts .summary-ttl {
    margin-top: 1.5rem;
    font-size: 1.9rem;
  }
  .summary-parts .summary-ttl .large {
    font-size: 2.2rem;
  }

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

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


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

.qa-parts .q-ttl {
  background: #717B8E;
  padding: 1.5rem 4rem 1.5rem 7rem;
  font-size: 2.2rem;
  border-radius: 4px;
  position: relative;
}
.qa-parts .q-ttl::before {
  content: "Q.";
  position: absolute;
  top: 5px;
  left: 20px;
  font-size: 3.4rem;
  font-family: 'Inter';
  font-weight: 900;
}

.qa-parts .a-ttl {
  margin-top: 3rem;
  padding-left: 7rem;
  font-size: 2.2rem;
  position: relative;
}
.qa-parts .a-ttl::before {
  content: "A.";
  position: absolute;
  top: -10px;
  left: 20px;
  color: #FA7A39;
  font-size: 3.4rem;
  font-family: 'Inter';
  font-weight: 900;
}

.qa-parts .txt {
  margin: 2rem 0 0;
  padding-left: 7rem;
}

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

  .qa-parts .q-ttl {
    padding: 1.5rem 2rem 1.5rem 5rem;
    font-size: 1.8rem;
    border-radius: 2px;
  }
  .qa-parts .q-ttl::before {
    top: 8px;
    left: 15px;
    font-size: 2.6rem;
  }

  .qa-parts .a-ttl {
    margin-top: 2rem;
    padding-left: 5rem;
    font-size: 1.8rem;
  }
  .qa-parts .a-ttl::before {
    top: -6px;
    left: 15px;
    font-size: 2.6rem;
  }

  .qa-parts .txt {
    margin: 1.5rem 0 0;
    padding-left: 5rem;
  }
}


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

.explanation-parts__block {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
  background: #EFEFEF;
  padding: 5rem 5rem;
  border-radius: 10px;
}

.explanation-parts .imgBox__wrap {
  width: 165px;
}
.explanation-parts .imgBox img {
  border-radius: 50%;
}
.explanation-parts .name {
  margin-top: 1rem;
  font-size: 1.8rem;
}
.explanation-parts .name .large {
  font-size: 2rem;
}

.explanation-parts .txt__wrap {
  flex: 1;
}
.explanation-parts .explanation-ttl {
  font-size: 2.4rem;
}
.explanation-parts .explanation-ttl .large {
  font-size: 3rem;
}
.explanation-parts .txt {
  margin: 2rem 0 0;
}

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

  .explanation-parts__block {
    display: block;
    padding: 2rem 2rem 3rem;
    border-radius: 5px;
  }

  .explanation-parts .imgBox__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    text-align: left;
    flex-direction: column;
  }
  .explanation-parts .imgBox {
    width: 35%;
  }
  .explanation-parts .name {
    flex: 1;
    margin-top: 0;
    font-size: 1.6rem;
  }
  .explanation-parts .name .large {
    font-size: 1.8rem;
  }

  .explanation-parts .txt__wrap {
    margin-top: 2rem;
  }
  .explanation-parts .explanation-ttl {
    font-size: 1.6rem;
  }
  .explanation-parts .explanation-ttl .large {
    font-size: 1.9rem;
  }
  .explanation-parts .txt {
    margin: 1.5rem 0 0;
  }
}


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

.sv-parts__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 50px;
  background: #142952;
  padding: 5rem 5rem 5rem;
  border-radius: 10px;
  position: relative;
}

.sv-parts .icon {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009655;
  width: 110px;
  height: 110px;
  font-size: 3.2rem;
  text-align: center;
  border-radius: 50%;
}

.sv-parts .imgBox__wrap {
  width: 25%;
  margin-top: 3rem;
}
.sv-parts .imgBox {
  width: 150px;
  margin: auto;
  position: relative;
}
.sv-parts .sb {
  position: absolute;
  bottom: 0;
  left: 100%;
  background: #ADC6EB;
  padding: 2rem 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
  border-radius: 100px;
  -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 Sans JP vertical";
}
.sv-parts .sb::after {
	content: "";
	position: absolute;
	top: 50%;
	right: calc(100% - 4px);
  transform: translate(0,-50%) rotate(-20deg);
  box-sizing: border-box;
  border-right: 35px solid #ADC6EB;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
}
.sv-parts .sponsored {
  margin-top: 1rem;
}
.sv-parts .sponsored .small {
  display: block;
  font-size: 1.2rem;
}
.sv-parts .sponsored .large {
  font-size: 1.8rem;
}
.sv-parts .name {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.sv-parts .name .large {
  margin-left: 1.5rem;
  font-size: 2.6rem;
}

.sv-parts .txt__wrap {
  flex: 1;
}
.sv-parts .sv-ttl .small {
  font-size: 2.8rem;
}
.sv-parts .sv-ttl .small span {
  font-size: 2rem;
}
.sv-parts .sv-ttl .large {
  font-size: 3.8rem;
}
.sv-parts .txt {
  margin: 2rem 0 0;
}

.sv-parts .btnBox {
  margin: 5rem 0 0;
}
.sv-parts .btnBox > div {
  width: 290px;
}
.sv-parts .btnBox > div a {
	padding: 1.8rem 4rem;
  font-size: 1.6rem;
}
.sv-parts .btnBox > div:nth-child(1).btn-internal a {
	background: #FF5600;
}
.sv-parts .btnBox > div:nth-child(2).btn-internal a {
	background: #009655;
}
.sv-parts .btnBox > div.btn-internal a::after {
	right: 10px;
  width: 22px;
  height: 22px;
}

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

  .sv-parts__block {
    display: block;
    padding: 3rem 2rem 3rem;
    border-radius: 5px;
  }

  .sv-parts .icon {
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }

  .sv-parts .imgBox__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    margin-top: 0;
    padding-left: 3.5rem;
  }
  .sv-parts .imgBox {
    width: 30%;
    margin: 0;
  }
  .sv-parts .sb {
    position: relative;
    bottom: inherit;
    left: inherit;
    display: inline-block;
    padding: 5px 1.2rem;
    font-size: 3.6vw;
    letter-spacing: inherit;
    white-space: wrap;
    border-radius: 100px;
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    -webkit-text-orientation: inherit;
    text-orientation: inherit;
  }
  .sv-parts .sb.pc_only {
    display: none;
  }
  .sv-parts .sb::after {
    top: inherit;
    bottom: 3px;
    right: calc(100% - 3px);
    transform: translate(0,0) rotate(-20deg);
    border-right: 12px solid #ADC6EB;
    border-bottom: 3px solid transparent;
    border-top: 3px solid transparent;
  }
  .sv-parts .name__wrap {
    flex: 1;
  }
  .sv-parts .sponsored {
    margin-top: 5px;
  }
  .sv-parts .sponsored .small {
    display: none;
    font-size: 2.6vw;
  }
  .sv-parts .sponsored .large {
    font-size: 3.1vw;
  }
  .sv-parts .name {
    margin-top: 5px;
    font-size: 3.1vw;
  }
  .sv-parts .name .large {
    margin-left: 1rem;
    font-size: 5vw;
  }

  .sv-parts .txt__wrap {
    margin-top: 2rem;
  }
  .sv-parts .sv-ttl {
    text-align: center;
  }
  .sv-parts .sv-ttl .small {
    font-size: 4.4vw;
  }
  .sv-parts .sv-ttl .small span {
    font-size: 4.4vw;
  }
  .sv-parts .sv-ttl .large {
    font-size: 6.2vw;
  }
  .sv-parts .sv-ttl .large span {
    font-size: 4.4vw;
  }
  .sv-parts .txt {
    margin: 1.5rem 0 0;
  }

  .sv-parts .btnBox {
    margin: 3rem 0 0;
  }
  .sv-parts .btnBox > div {
    width: 100%;
  }
  .sv-parts .btnBox > div a {
    padding: 1.8rem 4rem;
    font-size: 1.5rem;
  }
  .sv-parts .btnBox > div.btn-internal a::after {
    right: 15px;
    width: 20px;
    height: 20px;
  }
}


/*--------------------------------------------------
　toc_parts
--------------------------------------------------*/
.toc_parts {
  background: #fff;
  max-width: 850px;
	margin: 6rem auto 8rem;
	padding: 4rem 6rem 4rem;
  border: 8px solid #CEE9DD;
  border-radius: 15px;
  position: relative;
}

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

.toc_parts .ttl {
	font-size: 2.4rem;
	font-weight: 900;
  position: relative;
}

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

#toc ul.chapter {
	margin: 0 0 0;
}
#toc ul.chapter li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 4rem;
  font-size: 1.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: -5px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	font-size: 2rem;
  font-weight: 900;
  font-family: 'Inter';
}
#toc ul.chapter li a {
	display: block;
  font-weight: 900;
	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.6rem;
	position: relative;
	counter-increment: none;
}
#toc .chapter .chapter li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 12px;
	height: 8px;
	border-top: solid 1px #142952;
	border-right: solid 1px #142952;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

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

.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -30px;
	background: #A5B1C8;
	max-width: 270px;
	margin: auto;
	padding: 1.5rem 5rem;
	box-sizing: border-box;
  color: #fff;
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	cursor: pointer;
  border-radius: 100px;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::before,
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
	background: #fff;
	width: 20px;
	height: 3px;
	transition: all 0.4s;
}
.toc_parts .acc_btn::after {
	transform: translate(0,-50%) rotate(90deg);
}
.toc_parts .acc_btn.is-show::before {
  display: none;
}
.toc_parts .acc_btn.is-show::after {
  transform: translate(0,-50%) rotate(180deg);
}
.toc_parts .acc_btn span {
	font-weight: 900;
}
.toc_parts .acc_btn span:before {
	content: "目次を開く";
}
.toc_parts .acc_btn.is-show span:before {
	content: "閉じる";
}

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

@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 3rem auto 6rem;
    padding: 2rem 2rem 2rem;
    border: 4px solid #CEE9DD;
    border-radius: 8px;
  }

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

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

  .toc_parts .acc_btn {
    bottom: -25px;
    max-width: 70%;
    padding: 1.2rem 4rem;
    font-size: 1.6rem;
  }
  .toc_parts .acc_btn::before,
  .toc_parts .acc_btn::after {
    right: 15px;
    width: 16px;
    height: 2px;
  }
}


/*--------------------------------------------------
　related-article01-frame
--------------------------------------------------*/
.related-article01-frame {
  margin: 10rem auto 10rem;
  padding: 4rem 8rem 4rem;
  border: 8px solid #CED6E5;
  border-radius: 10px;
}

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

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

ul.related-article01-list {
	margin: 2rem 0 0;
}
ul.related-article01-list li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 0;
  font-size: 1.6rem;
	position: relative;
}
ul.related-article01-list li:last-child {
	margin: 0 0 0 0;
}
ul.related-article01-list li::before {
  display: none;
}
ul.related-article01-list li a {
  padding-left: 3.5rem;
  font-weight: 900;
	text-decoration: underline;
  position: relative;
}
ul.related-article01-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 22px;
  box-sizing: border-box;
}

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

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

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


/*--------------------------------------------------
　recommended-parts
--------------------------------------------------*/
.recommended-parts {
  margin: 10rem 0 0;
  padding: 8rem 0 8rem;
  position: relative;
  z-index: 0;
}
.recommended-parts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255,255,255,0.3) calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255,255,255,0.3) calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center top;
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}
.recommended-parts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: linear-gradient(180deg, #009655, #76C9A5);
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: -2;
}

.recommended-parts__block {
  background: #fff;
  width: 1200px;
  margin: 0 10rem 0 -10rem;
  padding: 6rem 10rem 6rem;
  border-radius: 10px;
}

.recommended-parts .eng {
  color: #C9D0DC;
  font-size: 5.7rem;
  text-align: center;
  line-height: 1;
}

.recommended-parts .recommended-ttl {
  margin-top: 3rem;
  font-size: 2.8rem;
  text-align: center;
  line-height: 2;
}
.recommended-parts .recommended-ttl .large01 {
  font-size: 3.5rem;
}
.recommended-parts .recommended-ttl .large02 {
  font-size: 4.6rem;
}
.recommended-parts .recommended-ttl .mark {
  background: linear-gradient(transparent 80%, #FA7A39 0%);
}

.recommended-parts .txt {
  margin: 2rem 0 0;
  text-align: center;
}

.recommended-parts .imgBox {
  margin: 3rem 0 0;
}

.recommended-parts .btn-web a {
  max-width: 560px;
  margin: 8rem auto 0;
  padding: 2.5rem 7rem;
}

@media screen and (max-width: 768px) {
  .recommended-parts {
    margin: 6rem 0 0;
    padding: 3rem 0 3rem;
  }
  .recommended-parts::before {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255,255,255,0.3) calc(100% - 1px)),
                      linear-gradient(90deg, transparent calc(100% - 1px), rgba(255,255,255,0.3) calc(100% - 1px));
    background-size: 15px 15px;
  }

  .recommended-parts__block {
    width: 100%;
    margin: 0 0 0 0;
    padding: 3rem 2rem 3rem;
    border-radius: 5px;
  }

  .recommended-parts .eng {
    font-size: 7.8vw;
  }

  .recommended-parts .recommended-ttl {
    margin-top: 1.5rem;
    font-size: 3.6vw;
    line-height: 1.8;
  }
  .recommended-parts .recommended-ttl .large01 {
    font-size: 4.5vw;
  }
  .recommended-parts .recommended-ttl .large02 {
    font-size: 5.9vw;
  }

  .recommended-parts .txt {
    margin: 1.5rem 0 0;
    text-align: justify;
  }

  .recommended-parts .imgBox {
    margin: 2rem 0 0;
  }

  .recommended-parts .btn-web a {
    max-width: 100%;
    margin: 5rem auto 0;
    padding: 1.8rem 4rem;
  }
}


/*--------------------------------------------------
　fixed_bnr
--------------------------------------------------*/
.fixed-bnr {
  position: fixed;
  bottom: 140px;
  right: 0;
  width: 235px;
  z-index: 1;
}

.fixed-bnr a {
  display: block;
}

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

.fixed-bnr01 {
  background: #FF5600;
  margin-bottom: 2rem;
  border: 2px solid #fff;
  border-right: none;
  border-radius: 15px 0 0 0;
  transition: all 0.3s ease;
}
.fixed-bnr01:hover {
  opacity: 0.6;
}
.fixed-bnr01 a {
  position: relative;
}
.fixed-bnr01 a::after {
	content: "";
	position: absolute;
	top: -15px;
	right: 5px;
	background: url("img/fixed-bnr01-img.png") left top no-repeat;
	background-size: contain;
	width: 37%;
	height: 0;
	padding-top: calc(43%*96/92);
	box-sizing: border-box;
}
.fixed-bnr01 a:hover {
  opacity: 1;
}
.fixed-bnr01 .txt-wrap {
  padding: 1rem 1.5rem;
}
.fixed-bnr01 .bnr-txt01 {
  font-size: 1.6rem;
  line-height: 1.3;
}
.fixed-bnr01 .bnr-txt01 .large {
  font-size: 2rem;
  line-height: 1.3;
}
.fixed-bnr01 .bnr-txt02 {
  background: #F9D9C9;
  padding: 5px 1.5rem;
  font-size: 1.4rem;
  position: relative;
}
.fixed-bnr01 .bnr-txt02::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
  transform: translate(0,-50%);
  background: url("img/arrow-bl.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 18px;
  box-sizing: border-box;  
}

.fixed-bnr02 {
  display: flex;
  flex-wrap: wrap;
  background: #142952;
  border: 2px solid #fff;
  border-right: none;
  border-radius: 0 0 0 15px;
  position: relative;
}
.fixed-bnr02::after {
	content: "";
	position: absolute;
	top: 6px;
	right: -5px;
	background: url("img/fixed-bnr02-img.png") left top no-repeat;
	background-size: contain;
	width: 32%;
	height: 0;
	padding-top: calc(37%*70/74);
	box-sizing: border-box;
}
.fixed-bnr02 .txt-wrap {
  order: 2;
  width: 100%;
  padding: 1rem 1.5rem;
}
.fixed-bnr02 .bnr-txt01 {
  color: #FF9E6C;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}
.fixed-bnr02 .bnr-txt02 {
  font-size: 1.2rem;
  line-height: 1;
}
.fixed-bnr02 .bnr-txt02 span {
  margin-right: 5px;
  font-size: 1.4rem;
}
.fixed-bnr02 .bnr-txt03 {
  order: 1;
  background: #ADC6EB;
  width: 125%;
  padding: 5px 1.5rem;
  border-radius: 0 0 0 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .fixed-bnr {
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .fixed-bnr__inner {
    display: flex;
    justify-content: space-between;
  }

  .fixed-bnr01 {
    width: 50%;
    margin-bottom: 0;
    border: 1px solid #fff;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
  }
  .fixed-bnr01:hover {
    opacity: 1;
  }
  .fixed-bnr01 a::after {
    display: none;
  }
  .fixed-bnr01 .txt-wrap {
    padding: 2vw 2.5vw;
  }
  .fixed-bnr01 .txt-wrap::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    background: url("img/fixed-bnr01-img.png") left top no-repeat;
    background-size: contain;
    width: 41%;
    height: 0;
    padding-top: calc(41%*96/92);
    box-sizing: border-box;
    z-index: 1;
  } 
  .fixed-bnr01 .bnr-txt01 {
    font-size: 3.5vw;
  }
  .fixed-bnr01 .bnr-txt01 .large {
    font-size: 4.5vw;
  }
  .fixed-bnr01 .bnr-txt02 {
    padding: 1.2vw 2.5vw;
    font-size: 3vw;
  }
  .fixed-bnr01 .bnr-txt02::after {
    right: 5px;
    width: 14px;
    height: 14px; 
  }

  .fixed-bnr02 {
    width: 50%;
    border: 1px solid #fff;
    border-right: none;
    border-bottom: none;
    border-radius: 0 0 0 0;
  }
  .fixed-bnr02::after {
    display: none;
  }
  .fixed-bnr02 .txt-wrap {
    order: 1;
    padding: 2vw 2.5vw;
    position: relative;
  }
  .fixed-bnr02 .txt-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: -36px;
    background: url("img/fixed-bnr02-img.png") left top no-repeat;
    background-size: contain;
    width: 43%;
    height: 0;
    padding-top: calc(43%*74/70);
    box-sizing: border-box;
  }    
  .fixed-bnr02 .bnr-txt01 {
    font-size: 4.5vw;
  }
  .fixed-bnr02 .bnr-txt02 {
    font-size: 2.5vw;
  }
  .fixed-bnr02 .bnr-txt02 span {
    margin-right: 0;
    font-size: 3.5vw;
  }
  .fixed-bnr02 .bnr-txt03 {
    order: 2;
    padding: 1.2vw 2.5vw;
    font-size: 3vw;
    border-radius: 0;
  }
}

/* テーブル内のiframe（Googleマップなど）を画面幅に収める */
table iframe {
  width: 100% !important;
  max-width: 100%;
}

.btn-web .sb {
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
  max-width: none !important;
}