@charset "utf-8";

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

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

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

@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-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%;
  overflow-y: scroll;
}
body {
  color: #383030;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: none;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  color: #333;
  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;
  }
}


/*--------------------------------------
　Header
---------------------------------------*/
header {
  width: 100%;
  min-width: 1000px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
header .sitename_wrap {
  margin-left: auto;
  text-align: right;
  text-shadow:
    1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
  font-size: 1.2rem;
}
header .sitename {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
}
header .sitename a {
  font-weight: bold;
}
header .boxInner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
}
header .boxInner .logo {
  width: 220px;
}
header .header_lower .boxInner {
  display: inherit;
  padding: 1rem 2rem;
}
header .h_float_wrap {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  height: 80px;
  background: #ffd37d;
  box-sizing: border-box;
  z-index: 10000;
  border-radius: 0 0 0 20px;
}
header .h_float_wrap .logo {
  width: 170px;
  margin: 0 1rem;
}
header .h_float_wrap .btn-web {
  margin: inherit;
  width: 190px;
}
header .h_float_wrap .btn-web::before {
  top: 0.3rem;
  left: 0.3rem;
}
header .h_float_wrap .btn-web a {
  padding: 0.6rem 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
header .h_float_wrap .btn-web a::after {
  right: 10px;
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    min-width: 100%;
  }
  header .sitename_wrap {
    font-size: 8px;
  }
  header .sitename {
    font-size: 8px;
  }
  header .boxInner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 1rem;
  }
  header .boxInner .logo {
    width: 220px;
  }
  header .header_lower .boxInner {
    display: inherit;
    padding: 1rem 2rem;
  }
  header .h_float_wrap {
    width: 290px;
    height: 54px;
    border-radius: 0 0 0 15px;
  }
  header .h_float_wrap .logo {
    width: 120px;
    margin: 0 1rem;
  }
  header .h_float_wrap .btn-web {
    margin: inherit;
    width: 100px;
  }
  header .h_float_wrap .btn-web::before {
    top: 0.1rem;
    left: 0.1rem;
  }
  header .h_float_wrap .btn-web a {
    padding: 0.4rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  header .h_float_wrap .btn-web a::after {
    right: 6px;
    width: 12px;
    height: 12px;
  }
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
  display: table;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 10000;
}
#hb-menu .hb-inner {
  display: table-cell;
  vertical-align: middle;
}
#hb-menu span {
  display: block;
  background: #383030;
  width: 46px;
  height: 2px;
  margin: auto;
  border-radius: 0;
  transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2), #hb-menu span:nth-of-type(3) {
  margin-top: 12px;
}
/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span:nth-of-type(1) {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
  -ms-transform: translateY(11px) translateX(0) rotate(45deg);
  transform: translateY(11px) translateX(0) rotate(45deg);
}
.hb-open #hb-menu span:nth-of-type(2) {
  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(-11px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
}
/* overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 9999;
  transition: 0.2s;
}
.hb-open .overlay {
  background: 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: #fff;
  width: 100%;
  height: 100vh;
  padding: 0 0;
  box-sizing: border-box;
  overflow: hidden;
  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 {
  width: 60%;
  margin: 0 0 0 auto;
  padding: 12rem 10rem;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.hb_menu_wrapper::-webkit-scrollbar{
  display: none;
}
.hb_menu {
  margin-bottom: 0;
}
.hb_menu:last-child {
  margin-bottom: 0;
}
.hb_menu_title {
  padding: 2rem 0 2rem 0;
  border-bottom: 1px solid #383030;
  position: relative;
}
.hb_menu_title_link {
  display: block;
  padding: 0 3rem 0 0;
  color: #383030;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
}
.hb_menu_title_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #383030;
  border-right: 2px solid #383030;
}
.hb_menu_list {
  display: block;
  margin-top: 0;
}
.hb_menu_list_item {
  width: 100%;
  margin: 2rem 0 2rem 2rem;
  padding: 0 0;
  box-sizing: border-box;
  position: relative;
}
.hb_menu_list_item:first-child {
  display: none;
}
.hb_menu_list_link {
  display: block;
  padding: 0 0 0 1.5rem;
  color: #383030;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.hb_menu_list_link::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background: #383030;
  width: 8px;
  height: 1px;
}


.hb_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
.hb_slider_wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 100vh;
  overflow: hidden;
}
.hb_slider_wrap::before,
.hb_slider_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  z-index: 1;
}
.hb_slider_wrap::before {
  top: 0;
  background: linear-gradient(180deg, #fff, transparent);
}
.hb_slider_wrap::after {
  bottom: 0;
  background: linear-gradient(180deg, transparent, #fff);
}

.hb_slider {
  width: 75%;
  margin: auto;
}
.hb_slider .slick-list {
	overflow: visible;
}
.slick-slide:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slider_parts .slick-track {
	display: flex;
	align-items: center;
}
.slick-slider div {
  transition: none;
}
.slick-vertical .slick-slide {
  border: none;
}

/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    display: table;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 10000;
  }
  #hb-menu .hb-inner {
    display: table-cell;
    vertical-align: middle;
  }
  #hb-menu span {
    display: block;
    width: 22px;
    height: 1px;
    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(7px) translateX(0) rotate(45deg);
    -ms-transform: translateY(7px) translateX(0) rotate(45deg);
    transform: translateY(7px) translateX(0) rotate(45deg);
  }
  .hb-open #hb-menu span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  .hb-open #hb-menu span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
  }
  /* overlay */
  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 9999;
    transition: 0.1s;
  }
  .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;
    width: 100%;
    height: 100%;
    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);
  }
  .hb_menu_wrapper {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    padding: 6rem 2rem;
    order: 1;
  }
  .hb_menu {
    margin-bottom: 0;
  }
  .hb_menu:last-child {
    margin-bottom: 0;
  }
  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px solid #383030;
    position: relative;
  }
  .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: solid 1px #383030;
    border-right: solid 1px #383030;
  }
  .hb_menu_title.open::after {
    transform: translate(0, -50%) 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 2.5rem 0 0;
    color: #383030;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    pointer-events: none;
    position: relative;
  }
  .hb_menu_title_link::after {
    display: none;
  }
  .hb_menu_title.first .hb_menu_title_link {
    pointer-events: auto;
    position: relative;
  }
  .hb_menu_title.first .hb_menu_title_link::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: none;
    border-top: solid 1px #383030;
    border-right: solid 1px #383030;
  }
  .hb_menu_list {
    display: none;
    box-sizing: border-box;
    margin-top: 0;
  }
  .hb_menu_list_item {
    width: 100%;
    margin: 0 0 0 0;
    padding: 1.5rem 0 1.5rem 1rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
  }
  .hb_menu_list_item:first-child {
    display: block;
  }
  .hb_menu_list_link {
    display: block;
    padding: 0 2.5rem 0 0;
    color: #383030;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
  }
  .hb_menu_list_link::before {
    display: none;
  }
  .hb_menu_list_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #383030;
    border-right: 1px solid #383030;
  }
  
  
  .hb_slider_wrap {
    position: relative;
    width: 100%;
    height: auto;
    order: 2;
  }
  .hb_slider_wrap::before,
  .hb_slider_wrap::after {
    display: none;
  }
  
  .hb_slider {
    width: 100%;
  }
  .hb_slider .slide img {
    height: 180px;
    object-fit: cover;
  }
}

/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
  width: 1000px;
  margin: 2rem 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: 2rem auto 0;
    padding: 0 1.5rem 0.5rem 1.5rem;
    box-sizing: border-box;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: auto;
  }
  #pankuzu::-webkit-scrollbar {
    height: 2px;
  }
  #pankuzu::-webkit-scrollbar-track {
    background: #efefef;
    margin: 0 1.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  #pankuzu::-webkit-scrollbar-thumb {
    background: #cacaca;
    border-radius: 0;
    box-shadow: none;
  }
}


/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
  background: #ffd37d;
  width: 100%;
  min-width: 1000px;
  border-radius: 120px 120px 0 0;
}
.l-footer-area br {
  display: none;
}
.l-footer-area__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 0 5rem;
}
.l-footer-logo {
  max-width: 256px;
  margin: auto;
}
.l-footer-logo a {
  display: block;
}
.l-footer-menu-wrapper {
  margin: 6rem auto 0;
}
.l-footer-menu {
  margin-bottom: 4rem;
}
.l-footer-menu:last-child {
  margin-bottom: 0;
}
.l-footer-menu__title {
  padding: 0 0 1.5rem 0;
  border-bottom: 1px solid #383030;
  position: relative;
}
.l-footer-menu__title__link {
  display: inline-block;
  padding: 0 3rem 0 0;
  color: #383030;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
}
.l-footer-menu__title__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #383030;
  border-right: 2px solid #383030;
}
.l-footer-menu__list {
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  margin-top: 3rem;
}
.l-footer-menu__list__item {
  width: calc(100% / 3);
  margin-bottom: 1.5rem;
  padding: 0 2rem;
  box-sizing: border-box;
  position: relative;
}
.l-footer-menu__list__item:first-child {
  display: none;
}
.l-footer-menu__list__link {
  display: block;
  padding: 0 2rem 0 0;
  color: #383030;
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
}
.l-footer-menu__list__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #383030;
  border-right: 2px solid #383030;
}
.l-footer-submenu__list {
  margin: 1rem 0 0 0;
  padding: 0 2rem;
}
.l-footer-submenu__list__item {
  margin: 0 0 1rem 0;
  position: relative;
}
.l-footer-submenu__list__link {
  display: block;
  padding: 0 0 0 1.5rem;
  color: #383030;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.l-footer-submenu__list__link::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  background: #383030;
  width: 8px;
  height: 1px;
}
.l-footer-area .menseki {
  background: none;
  max-width: 100%;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
  color: #383030;
  font-size: 1.2rem;
  line-height: 2;
}
.l-footer-area .menseki span {
  display: inline-block;
}
.l-footer-area .ucp {
  margin: 1.5rem auto 0;
  color: #383030;
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
}
.l-footer-copy-wrapper {
  background: #fff;
}
.l-footer-copy {
  display: flex;
  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;
  transform: translate(0, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .l-footer-area {
    min-width: 100%;
    border-radius: 50px 50px 0 0;
  }
  .l-footer-area__inner {
    max-width: 100%;
    padding: 3rem 1.5rem 4rem;
  }
  .l-footer-logo {
    width: 50%;
  }
  .l-footer-menu-wrapper {
    margin: 3rem auto 0;
  }
  .l-footer-menu {
    margin-bottom: 0;
  }
  .l-footer-menu__title {
    padding: 1.5rem 0 1.5rem 0;
  }
  .l-footer-menu__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%) rotate(135deg);
    width: 8px;
    height: 8px;
    background: none;
    border-top: solid 1px #383030;
    border-right: solid 1px #383030;
  }
  .l-footer-menu__title.open::after {
    transform: translate(0, -50%) rotate(-45deg);
  }
  .l-footer-menu__title__link {
    display: block;
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
    pointer-events: none;
  }
  .l-footer-menu__title__link::after {
    display: none;
  }
  .l-footer-menu__list {
    display: none;
    margin-top: 0;
  }
  .l-footer-menu__list__item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  }
  .l-footer-menu__list__item:first-child {
    display: block;
  }
  .l-footer-menu__list__link {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .l-footer-menu__list__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #383030;
    border-right: 1px solid #383030;
  }
  .l-footer-submenu__list {
    margin: 0 0 0 0;
    padding: 0 0;
  }
  .l-footer-submenu__list__item {
    margin: 0 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
  .l-footer-submenu__list__link {
    padding: 1.5rem 0 1.5rem 3rem;
  }
  .l-footer-submenu__list__link::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 15px;
    background: #383030;
    width: 6px;
    height: 1px;
  }
  .l-footer-area .menseki {
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
  }
  .l-footer-area .ucp {
    margin: 1rem auto 0;
  }
  .l-footer-copy {
    display: block;
    max-width: 100%;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    text-align: center;
  }
  .sitemap {
    margin: 2rem 0 0 0;
    text-align: center;
  }
  .sitemap a {
    padding: 0 1.5rem 0 1.5rem;
    font-size: 1.4rem;
    color: #383030;
    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 #383030;
    border-right: 1px solid #383030;
  }
}


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

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


/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents_wrap {
  background: #fdfaf5;
  width: 100%;
  min-width: 1000px;
  margin: -40px 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
}
.contents {
  width: 1000px;
  min-width: 1000px;
  margin: auto;
  padding: 6rem 0 12rem;
  position: relative;
  z-index: 0;
}
#category, #page {
  width: 1000px;
  margin: 0 auto;
  padding: 0 !important;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .contents_wrap {
    margin: -20px 0 0;
    min-width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .contents {
    width: 100%;
    min-width: 100%;
    padding: 4rem 1.5rem 6rem;
  }
  #category, #page {
    width: 100%;
  }
}


/*--------------------------------------
　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_wrap {
  margin: 0 0 5rem;
  padding: 0 170px;
  text-align: center;
  position: relative;
}
.contents .h1_wrap:before {
  position: absolute;
  content: "";
  display: block;
  background: url("img/sec03_illust01.png") center no-repeat;
  background-size: contain;
  width: 140px;
  height: 78px;
  left: 0;
  top: 0;
}
.contents .h1_wrap:after {
  position: absolute;
  content: "";
  display: block;
  background: url("img/sec03_illust02.png") center no-repeat;
  background-size: contain;
  width: 130px;
  height: 78px;
  right: 0;
  top: 0;
}

.contents h1 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}

.contents .h1_wrap .operation {
  color: #8b8b8b;
  font-size: 1.3rem;
}
  
.contents h2 {
  background: #ffd37d;
  margin: 10rem 0 2rem;
  padding: 2rem 3rem 2rem 4rem;
  font-size: 3.2rem;
  position: relative;
  border-radius: 20px;
}
.contents h2:before {
  position: absolute;
  content: "";
  display: block;
  left: -12px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background: #f99191;
  border-radius: 50%;
  border: 2px solid #fdfaf5;
}
.contents h2 a {
  padding: 0 6rem 0 0;
  position: relative;
}
.contents h2 a::before {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 32px;
  height: 32px;
  background: url("img/arrow01.webp") center no-repeat;
  background-size: cover;
  border-radius: 50%;
}
.contents h3 {
  margin: 4rem 0 2rem;
  padding: 0 0 0 24px;
  font-size: 2.8rem;
  position: relative;
}
.contents h3:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 15px;
  width: 15px;
  height: 15px;
  background: #ffd37d;
  border-radius: 50%;
}
.contents h3 a {
  padding: 0 3rem 0 0;
  position: relative;
  display: inline-block;
}
.contents h3 a::before {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background: url("img/arrow01.webp") center no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: 2px solid #fdfaf5;
}
.contents h4 {
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #383030;
}
.contents h4 a {
  display: inline-block;
  padding: 0 2.5rem 0 0;
  position: relative;
}
.contents h4 a::before {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background: url("img/arrow01.webp") center no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: 2px solid #fdfaf5;
}
.midashi_box {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 3rem;
}
.midashi_box .midashi {
  font-size: 2.8rem;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
  padding: 1.8rem 3rem 1.8rem 8rem;
  margin: 4rem 0 3rem;
  border: 1px solid #383030;
}
.midashi_box .icon_box {
  width: 90px;
  height: 90px;
  background: url("img/icon_point.png") center no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 2.5rem;
  color: #fff;
  margin-right: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.midashi_box .icon_box.icon_check {
  background: url("img/icon_check.png") center no-repeat;
  background-size: cover;
}
.midashi_box .icon_box.icon_num01 {
  background: url("img/icon_num01.png") center no-repeat;
  background-size: cover;
}
.midashi_box .icon_box.icon_num02 {
  background: url("img/icon_num02.png") center no-repeat;
  background-size: cover;
}
.midashi_box .icon_box.icon_num03 {
  background: url("img/icon_num03.png") center no-repeat;
  background-size: cover;
}
.midashi_box .icon_box.icon_num04 {
  background: url("img/icon_num04.png") center no-repeat;
  background-size: cover;
}
.midashi_box .icon_box.icon_num05 {
  background: url("img/icon_num05.png") center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contents .h1_wrap {
    margin: 0 0 3rem;
    padding: 55px 0 0;
  }
  .contents .h1_wrap:before {
    width: 80px;
    height: 45px;
    left: 0;
    top: 0;
  }
  .contents .h1_wrap:after {
    width: 80px;
    height: 48px;
    right: 0;
    top: 0;
  }

  .contents h1 {
    font-size: 2.4rem;
  }

  .contents .h1_wrap .operation {
    font-size: 1.2rem;
  }

  .contents h2 {
    margin: 3rem 0 1.5rem;
    padding: 1rem 1.5rem 1rem 2rem;
    font-size: 2.2rem;
    position: relative;
    border-radius: 10px;
  }
  .contents h2:before {
    left: -8px;
    width: 16px;
    height: 16px;
  }
  .contents h2 a {
    padding: 0 4rem 0 0;
    position: relative;
  }
  .contents h2 a::before {
    width: 20px;
    height: 20px;
    border: none;
  }
  .contents h3 {
    margin: 2rem 0 1.5rem;
    padding: 0 0 0 2rem;
    font-size: 1.8rem;
  }
  .contents h3:before {
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
  }
  .contents h3 a {
    padding: 0 3rem 0 0;
  }
  .contents h3 a::before {
    width: 20px;
    height: 20px;
    border: 1px solid #fdfaf5;
  }
  .contents h4 {
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.8rem;
    font-size: 1.6rem;
  }
  .contents h4 a {
    padding: 0 2.5rem 0 0;
  }
  .contents h4 a::before {
    width: 20px;
    height: 20px;
    border: 1px solid #fdfaf5;
  }
  .midashi_box {
    margin-bottom: 2rem;
    padding-left: 2rem;
  }
  .midashi_box .midashi {
    font-size: 1.8rem;
    border-radius: 10px;
    padding: 1rem 2rem 1rem 5rem;
  }
  .midashi_box .icon_box {
    width: 60px;
    height: 60px;
    padding-top: 1.5rem;
    font-size: 1.2rem;
  }
  .midashi_box .icon_box.icon_check {
    background: url("img/icon_check.webp") center no-repeat;
    background-size: cover;
  }
  .midashi_box .icon_box.icon_num {
    background: url("img/icon_num.webp") center no-repeat;
    background-size: cover;
  }
}


/*--------------------------------------
　テキスト
---------------------------------------*/
.contents p {
  margin: 2rem 0 2rem;
  font-size: 1.8rem;
  line-height: 2;
}
.contents p a {
  text-decoration: underline;
}
.contents p a:hover {
  text-decoration: none;
}
.txt_bold {
  font-weight: bold;
  color: #ec5212;
}
.marker {
  background: linear-gradient(transparent 70%, #ffd37d 0%);
  font-weight: bold;
}
.caption {
  margin: 1rem 0 0 0;
  padding: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #888;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-all;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.caption::-webkit-scrollbar {
  height: 2px;
}
.caption::-webkit-scrollbar-track {
  background: #efefef;
  margin: 0 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
  background: #cacaca;
  border-radius: 0;
  box-shadow: none;
}
.caption a {
  color: #888;
  text-decoration: underline;
}
.orange {
  color: #ec5212;
  font-weight: bold;
}
.eng {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #cacaca #efefef;
    scrollbar-width: thin;
  }
}
@media screen and (max-width: 768px) {
  .contents p {
    margin: 1rem 0 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .caption {
    margin: 1rem 0 0 0;
    font-size: 1rem;
  }
}


/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
  margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1.5rem 0;
  padding: 0 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1.8;
  position: relative;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background: #70a2e1;
  width: 10px;
  height: 10px;
  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.7rem;
  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, decimal-leading-zero);
  position: absolute;
  top: -5px;
  left: 0;
  color: #70a2e1;
  font-size: 2rem;
  font-weight: bold;
}
.contents ol a {
  display: inline-block;
  text-decoration: underline;
}
.contents ol li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  /*----- ulリスト -----*/
  .contents ul {
    margin: 2rem 0 2rem;
  }
  .contents ul li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .contents ul li::before {
    top: 10px;
    width: 8px;
    height: 8px;
  }
  /*----- olリスト -----*/
  .contents ol {
    margin: 2rem 0 2rem;
  }
  .contents ol li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 3rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .contents ol li::before {
    top: -4px;
    font-size: 1.8rem;
  }
}


/*--------------------------------------
　リンク
---------------------------------------*/
/* 親：白い下地（影側） */
.btn-web,
.btn-internal {
  display: table;
  width: 530px;
  margin: 4rem auto;
  position: relative;
  transition: all 0.3s ease;
}
/* 白い楕円（親要素の ::before に移動） */
.btn-web::before,
.btn-internal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1.2rem; /* ずらし量はお好みで調整 */
  left: 1.2rem;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #383030;
  z-index: 0;
  transition: all 0.3s ease;
}
/* 子：オレンジのボタン本体 */
.btn-web a,
.btn-internal a {
  display: block;
  width: 100%;
  padding: 2.5rem 8rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  border-radius: 100px;
  text-decoration: none !important;
  position: relative;
  background: #d8612a; /* オレンジ */
  border: 1px solid #383030;
  z-index: 1; /* 白より手前 */
}
/* 右端の矢印アイコン */
.btn-web a::after,
.btn-internal a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  background: url("img/arrow_web.webp") center no-repeat;
  background-size: cover;
}

.btn-web a,
.btn-internal a {
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.btn-web::before,
.btn-internal::before {
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.btn-web:hover a,
.btn-internal:hover a {
  opacity: 1;
}

.btn-web:hover a,
.btn-internal:hover a,
.btn-web:hover::before,
.btn-internal:hover::before {
  animation: btnHoverSmooth 700ms cubic-bezier(.75,.8,.75,1);
}

@keyframes btnHoverSmooth {
  0%   { transform: scaleX(1); }
  40%  { transform: scaleX(0.95); }  /* ゆっくり縮む */
  65%  { transform: scaleX(1.05); }   /* 行き過ぎはごく弱く */
  100% { transform: scaleX(1); }
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
  display: block;
  max-width: 100%;
  background: #ec5212;
}
/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
  background: #3658d3;
}
.btn-internal a::after {
  background: url("img/arrow02.webp") center no-repeat;
  background-size: cover;
}
/*----- 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.8rem;
	font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.btn-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 22px;
  height: 22px;
  background: url("img/arrow01.webp") center no-repeat;
  background-size: cover;
}
.btn-link a:hover {
  text-decoration: none;
}
/*----- btn-tel（電話ボタン） -----*/
.btn-tel a {
  display: none;
}


.btnBox {
  display: flex;
  justify-content: center;
  margin: 4rem 0 0;
}
.btnBox > div {
  width: 400px;
  margin: 0 20px;
}
.btnBox > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .btn-web,
  .btn-internal {
    display: table;
    width: 80%;
    margin: 2rem auto;
    position: relative;
  }
  .btn-web::before,
  .btn-internal::before {
    width: 100%;
    height: 100%;
    top: 0.5rem;
    left: 0.5rem;
  }
  /* 子：オレンジのボタン本体 */
  .btn-web a,
  .btn-internal a {
    width: 100%;
    padding: 1.5rem 4rem;
    font-size: 1.4rem; /* 白より手前 */
  }
  /* 右端の矢印アイコン */
  .btn-web a::after,
  .btn-internal a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
  }
	
  /*----- btn-link（テキストリンク） -----*/
  .btn-link {
    text-align: right;
  }
  .btn-link a {
    display: inline-block;
    margin: 4rem 0 4rem;
    padding: 0 2rem 0 0;
    font-size: 1.4rem;
    line-height: 1.5;
    position: relative;
  }
  .btn-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    background: url("img/arrow01.webp") center no-repeat;
    background-size: cover;
  }
  .btn-link a:hover {
    text-decoration: none;
  }
  /*----- btn-tel（電話ボタン） -----*/
  .btn-tel {
    display: table;
    width: 85%;
    margin: 2rem auto;
    position: relative;
  }  
  .btn-tel::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0.5rem; 
    left: 0.5rem;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #383030;
    z-index: 0;
  }
  .btn-tel a {
    display: block;
    background: #77C6B3;
    padding: 1.5rem 4rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    border-radius: 100px;
    border: 1px solid #383030;
    text-decoration: none !important;
    position: relative;
  }
  .btn-tel a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(0, -50%);
    background: url("img/icon-tel.png") left top no-repeat;
    background-size: contain;
    width: 15px;
    height: 26px;
  }
  
  
  .btnBox {
    display: block;
    margin: 3rem 0 0;
  }
  .btnBox > div {
    width: 85%;;
    margin: 0 auto 2rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  } 
	
 /* 下層内部リンク余白 */
  #category .btn-internal {
    margin: 2rem auto 7rem !important;
 }
	
}

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

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

table td {
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
  word-break: break-all;
  border-left: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
table td a {
  text-decoration: underline;
}
table td a:hover {
  text-decoration: none;
}


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

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

  table td {
    display: block;
    padding: 1.2rem;
    font-size: 1.4rem;
    border-left: none;
    border-bottom: 1px solid #b3b3b3;
  }
  
  table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
  
  .table_parts02 table th,
  .table_parts03 table th {
    display: table-cell;
    border-left: 1px solid #b3b3b3;
	min-width: 7rem;
  }
  .table_parts02 table td,
  .table_parts03 table td {
    display: table-cell;
    border-left: 1px solid #b3b3b3;
  }
  .table_parts02 {
    overflow-x: scroll;
  }
  .table_parts02::-webkit-scrollbar {
    height: 2px;
  }
  .table_parts02::-webkit-scrollbar-track {
    background: #efefef;
    margin: 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .table_parts02::-webkit-scrollbar-thumb {
    background: #cacaca;
    border-radius: 0;
    box-shadow: none;
  }
  .table_parts02 table {
    min-width: 768px;
    margin: 0 0 1rem;
  }
}


/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
  margin: 5rem 0 7rem;
  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: 360px;
  margin-right: 5rem;
}
.float-img.fr {
  float: right;
  width: 360px;
  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: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.float-wrap.ct .catch {
  text-align: center;
}
.float-wrap p {
  margin: 2rem 0 2rem;
}

@media screen and (max-width: 768px) {
  .float-wrap {
    margin: 5rem 0 5rem;
  }
  .float-img.fl {
    float: inherit;
    width: 100%;
    margin-right: 0;
  }
  .float-img.fr {
    float: inherit;
    width: 100%;
    margin-left: 0;
  }
  .float-img .caption {
    margin: 1rem 0 1.5rem 0;
  }
  .float-wrap .catch {
    margin: 1.5rem 0 1.5rem;
    font-size: 1.8rem;
  }
  .float-wrap.ct .catch {
    text-align: left;
  }
  .float-wrap p {
    margin: 1.5rem 0 1.5rem;
  }
}


/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  max-width: 840px;
  margin: 5rem auto;
  padding: 3rem 7rem 4rem;
  border-radius: 10px;
  position: relative;
}
.toc_parts .ttl {
  padding: 0 0 1rem 0;
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
}
.toc_parts .ttl img {
  display: inline-block;
  vertical-align: middle;
  width: 84px;
  margin-left: 2rem;
}
#toc {
  margin: 2rem 0 0 0;
}
#toc ul.chapter {
  margin: 0 0 0;
}
#toc ul.chapter li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 3.5rem;
  font-size: 1.8rem;
  overflow-wrap: break-word;
  position: relative;
  counter-increment: toccount;
}
#toc ul.chapter li:last-child {
  margin: 0 0 0 0;
}
#toc ul.chapter li::before {
  content: counter(toccount, decimal-leading-zero);
  position: absolute;
  top: -3px;
  left: 0;
  background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
  color: #70a2e1;
  font-size: 1.8rem;
  font-weight: bold;
}
#toc ul.chapter li a {
  display: block;
  font-weight: bold;
  text-decoration: none;
}
#toc .chapter .chapter {
  margin: 0 0 2rem 3.5rem;
}
#toc .chapter .chapter li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
  font-size: 1.5rem;
  position: relative;
  counter-increment: none;
}
#toc .chapter .chapter li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: solid 1px #02143a;
  border-right: solid 1px #02143a;
  -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: #fff;
  max-width: 240px;
  margin: auto;
  padding: 1.4rem 5rem;
  box-sizing: border-box;
  border: 1px solid #3a2429;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::before, .toc_parts .acc_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: #3a2429;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  transition: all 0.4s;
}
.toc_parts .acc_btn::after {
  transform: rotate(90deg);
}
.toc_parts .acc_btn.is-show::before {
  display: none;
}
.toc_parts .acc_btn.is-show::after {
  transform: rotate(180deg);
}
.toc_parts .acc_btn span {
  font-weight: bold;
}
.toc_parts .acc_btn span:before {
  content: "もっと見る";
}
.toc_parts .acc_btn.is-show span:before {
  content: "閉じる";
}
.toc_parts .acc_box {
  overflow: hidden;
  position: relative;
}
.toc_parts .acc_box.is-hide {
  height: 200px;
}
.toc_parts .toc_parts_inner {
  padding: 0 0 4rem;
}
/* 共通 */
.toc_parts::before, .toc_parts::after, .toc_parts .corner::before, .toc_parts .corner::after {
  content: "";
  position: absolute;
  width: 100px; /* コーナー線の長さ */
  height: 100px;
  border-color: #383030;
  border-style: solid;
  border-width: 0;
}
/* 左上 */
.toc_parts::before {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
  border-top-left-radius: 40px;
}
/* 右上 */
.toc_parts::after {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
  border-top-right-radius: 40px;
}
/* 左下 */
.toc_parts .corner::before {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-bottom-left-radius: 40px;
}
/* 右下 */
.toc_parts .corner::after {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-bottom-right-radius: 40px;
}

@media screen and (max-width: 768px) {
  .toc__wrap {
    padding: 0 0;
  }
  .toc_parts {
    max-width: 100%;
    margin: 4rem 1rem 7rem;
    padding: 3rem 2rem 2rem;
    border-radius: 5px;
  }
  .toc_parts .ttl {
    padding: 0 0 1rem 0;
    font-size: 1.8rem;
  }
  .toc_parts .ttl img {
    width: 67px;
    margin-left: 1rem;
  }
  #toc {
    margin: 1rem 0 0 0;
  }
  #toc ul.chapter li {
    margin: 0 0 1.5rem;
    padding: 0 0 0 3rem;
    font-size: 1.6rem;
  }
  #toc ul.chapter li::before {
    top: -1px;
    font-size: 1.6rem;
  }
  #toc .chapter .chapter {
    margin: 0 0 1.5rem 3rem;
  }
  #toc .chapter .chapter li {
    font-size: 1.4rem;
  }
  #toc .chapter .chapter li::before {
    top: 6px;
    width: 6px;
    height: 6px;
  }
  /* 共通 */
  .toc_parts::before, .toc_parts::after, .toc_parts .corner::before, .toc_parts .corner::after {
    width: 60px; /* コーナー線の長さ */
    height: 60px;
  }
  /* 左上 */
  .toc_parts::before {
    top: 0;
    left: 0;
    border-top-width: 1px;
    border-left-width: 1px;
    border-top-left-radius: 20px;
  }
  /* 右上 */
  .toc_parts::after {
    top: 0;
    right: 0;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-right-radius: 20px;
  }
  /* 左下 */
  .toc_parts .corner::before {
    bottom: 0;
    left: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-left-radius: 20px;
  }
  /* 右下 */
  .toc_parts .corner::after {
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-bottom-right-radius: 20px;
  }
}


/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame p.catch-01 {
  margin: 0 0 0;
  font-weight: 900;
}
.related-article .ttl img {
  display: inline-block;
  vertical-align: middle;
  width: 130px;
  margin-left: 2rem;
}
.related-article01-title {
  padding: 0 0 1rem 0;
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
}
.related-article01-title img {
  display: inline-block;
  vertical-align: middle;
  width: 130px;
  margin-left: 2rem;
}
ul.related-article01-list {
  margin: 1rem 0 0!important;
}
ul.related-article01-list li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 2.5rem;
  font-size: 1.8rem;
  position: relative;
}
ul.related-article01-list li:last-child {
  margin: 0 0 0 0;
}
ul.related-article01-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background: #77c6b3;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
}
ul.related-article01-list li a {
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .related-article .ttl img {
    width: 104px;
    margin-left: 1rem;
  }
  .related-article01-title {
    font-size: 1.8rem;
  }
  .related-article01-title img {
    width: 104px;
    margin-left: 1rem;
  }
  .related-article01-frame {
    max-width: 100%;
    margin: 6rem auto 6rem;
  }
  .related-article01-title {
    padding: 0 0 1rem 0;
    font-size: 1.8rem;
  }
  ul.related-article01-list {
    margin: 2rem 0;
  }
  ul.related-article01-list li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
  }
  ul.related-article01-list li::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }
}


/*--------------------------------------
　下層MV
---------------------------------------*/
.underMV_slider-wrapper {
  overflow: hidden;
  width: 100%;
  height: 240px; /* 高さ固定 */
  position: relative;
}
/* ★ 460px × 10枚 = 4600px の横長 */
.underMV_slider-wrapper .slider {
  display: flex;
  width: calc(460px * 10);
  animation: scroll-left 40s linear infinite;
}
/* ★ 1枚 = 460px 固定 */
.underMV_slider-wrapper .slide {
  width: 460px;
  flex: 0 0 460px; /* shrinkさせない（重要） */
}
.underMV_slider-wrapper .slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
/* ★ アニメーション距離：5枚分 → 460px × 5 = 2300px */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2300px);
  }
}
/* SPのアニメーション距離：80vw × 5 = -400vw */
@keyframes scroll-left-sp {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-80vw * 5));
  }
}
@media screen and (max-width: 768px) {
  .underMV_slider-wrapper {
    overflow: hidden;
    height: auto; /* SPは高さ自動 */
  }
  .underMV_slider-wrapper .slide {
    width: 80vw; /* 中央大きく・左右見切れ */
  }
  /* 80vw × 10枚（5枚 × 2） */
  .underMV_slider-wrapper .slider {
    width: calc(80vw * 10);
    animation: scroll-left-sp 40s linear infinite;
  }
  .underMV_slider-wrapper .slide img {
    height: 180px;
  }
}
/*------- supervisor_box -------*/
.supervisor_box {
  background: #fff;
  border: 1px solid #383030;
  border-radius: 40px;
  padding: 80px;
  position: relative;
  margin: 12rem 0 6rem;
}
.supervisor_box .check_ttl {
  position: absolute;
  left: 3rem;
  top: -6rem;
  width: 120px;
}
.supervisor_box .midashi {
  font-weight: bold;
  font-size: 2.6rem;
}
.supervisor_box .kazari01 {
  position: absolute;
  left: 18rem;
  top: -7rem;
  width: 340px;
}
.supervisor_box .kazari02 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -8rem;
  width: 28px;
}
.supervisor_box .check_box_inner {
  display: flex;
  justify-content: space-between;
}
.supervisor_box .left {
  width: 63%;
}
.supervisor_box .right {
  width: 35%;
  text-align: center;
}
.supervisor_box .tantou_box .img {
  width: 60%;
  margin: 0 auto 1rem;
}
.supervisor_box .tantou_box .name {
  font-size: 16px;
  font-weight: bold;
}
.supervisor_box .tantou_box .name span {
  font-size: 12px;
}
.supervisor_box .tantou_box .btn-link {
  display: table;
  margin: auto;
}
.supervisor_box .tantou_box .btn-link a {
  font-size: 12px;
  margin: 0 auto;
}
.supervisor_box .btn-web {
  margin: 0 auto;
}
/*------- matome_box -------*/
.matome_box {
  background: #fff;
  border: 1px solid #383030;
  border-radius: 40px;
  padding: 4rem 8rem 6rem;
  position: relative;
  margin: 11rem 0 6rem;
}
.matome_box .logo {
  position: absolute;
  width: 320px;
  left: 50%;
  top: -4.5rem;
  transform: translate(-50%, 0);
}
.matome_box .txt_01 {
  margin: 4rem 0 2rem;
  padding: 0 0 0 24px;
  font-size: 2.4rem;
  position: relative;
  font-weight: bold;
}
.matome_box .txt_01:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 15px;
  width: 15px;
  height: 15px;
  background: #ffd37d;
  border-radius: 50%;
}
.matome_box .btn-internal {
  margin: 0 auto;
}
/*-------  comment_box -------*/
.comment_box {
  background: #fff;
  border: 1px solid #383030;
  border-radius: 40px;
  padding: 6rem 8rem;
  position: relative;
  margin-bottom: 6rem;
}
.comment_box .midashi {
  display: inline-block;
  font-weight: bold;
  font-size: 2.6rem;
  padding: 1.5rem 6rem;
  position: relative;
  z-index: 0;
}
.comment_box .midashi::before,
.comment_box .midashi::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 52px;
  box-sizing: border-box;
  z-index: -1;
}
.comment_box .midashi::before {
  top: 0;
  left: 0;
  background: url("img/comment_deco01.png") left top no-repeat;
  background-size: contain;
}
.comment_box .midashi::after {
  bottom: 0;
  right: 0;
  background: url("img/comment_deco02.png") left top no-repeat;
  background-size: contain;
}
.comment_box .comment_box_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.comment_box .left {
  width: calc(100% - 250px);
}
.comment_box .right {
  width: 210px;
  text-align: center;
}
.comment_box .right .name {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 1rem 0 0 0;
}
@media screen and (max-width: 768px) {
  /*------- supervisor_bo -------*/
  .supervisor_box {
    border-radius: 20px;
	margin: 8rem 0 3rem;
    padding: 4rem 2rem 2rem;
  }
  .supervisor_box .check_ttl {
    position: absolute;
    left: 3rem;
    top: -4rem;
    width: 70px;
  }
  .supervisor_box .kazari01 {
    position: absolute;
    left: 12rem;
    top: -4rem;
    width: 200px;
  }
  .supervisor_box .kazari02 {
    left: 50%;
    bottom: -4rem;
    width: 14px;
  }
  .supervisor_box .midashi {
    font-size: 2rem;
  }
  .supervisor_box .check_box_inner {
    display: flex;
    flex-direction: column;
  }
  .supervisor_box .left {
    width: 100%;
	order: 2;
  }
  .supervisor_box .right {
    width: 100%;
	order: 1;
	margin-bottom: 2rem;
  }
  .supervisor_box .btn-web {
    margin: 0 auto 2rem;
  }
  /*------- matome_box -------*/
  .matome_box {
    border-radius: 20px;
    padding: 2rem 2rem 2rem;
    margin: 6rem 0 4rem;
  }
  .matome_box .logo {
    width: 220px;
    top: -3rem;
  }
  .matome_box .txt_01 {
    margin: 3rem 0 2rem;
    padding: 0 0 0 24px;
    font-size: 1.8rem;
  }
  .matome_box .txt_01:before {
    top: 10px;
    width: 10px;
    height: 10px;
  }
  .matome_box .btn-internal {
    margin: 0 auto 2rem;
  }
  /*-------  comment_box -------*/
  .comment_box {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    margin-bottom: 6rem;
  }
  .comment_box .midashi {
    font-weight: bold;
    font-size: 1.7rem;
    padding: 1rem 2rem;
  }
  .comment_box .midashi::before,
  .comment_box .midashi::after {
    width: 34px;
    height: 23px;
  }
  .comment_box .left {
    width: 100%;
    margin: 2rem 0 0;
    order: 2;
  }
  .comment_box .right {
    width: 100%;
    order: 1;
  }
  .comment_box .right .img {
    width: 60%;
    margin: auto;
  }
  .comment_box .right .name {
    font-size: 1.4rem;
    margin: 1rem 0 0 0;
  }
}


/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  position: relative; /* これが基準になる */
  padding-top: 15rem;
}
.contents_top .sec01 {
  overflow: hidden;
}
.sec01 .circle_txt {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 124rem;
  z-index: -1;
  pointer-events: none;
  animation: rotateCircle 80s linear infinite;
}
@keyframes rotateCircle {
  0% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 0) rotate(-360deg);
  }
}
.sec01_bg {
  background: #fff;
  border-radius: 9999px 9999px 0 0;
  padding: 10rem 8rem 14rem;
  position: relative;
}
/* 下だけを隠すマスク */
.sec01_bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 16rem;
  background: #fdfaf5;
  z-index: -1;
  pointer-events: none;
}
.sec01 .fukidashi {
  background: #70a2e1;
  position: relative;
  display: table;
  margin: 1.5em auto;
  padding: 1rem 3rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 100px;
}
.sec01 .fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 10px solid #70a2e1;
}
.sec01 .txt_01 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.sec01 .txt_02 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #70a2e1;
  margin: 3rem 0 6rem;
}
.sec01 .txt_02 span {
  font-size: 22px;
  margin-right: 1rem;
}
.sec01 .wrap_01 {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.sec01 .wrap_01 .left {
  width: 58%;
}
.sec01 .wrap_01 .right {
  width: 35%;
}
.tantou_box {
  text-align: center;
}
.tantou_box .img {
  width: 80%;
  margin: 0 auto 1rem;
}
.tantou_box .img img {
  border-radius: 50%;
}
.tantou_box .name {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
}
.tantou_box .name span {
  font-size: 1.4rem;
  line-height: 1.6;
}
.tantou_box .btn-link a {
  font-size: 1.4rem;
  margin: 1rem auto 0;
  display: table;
}
.sec01 .wrap_01 .btn-web {
  margin: 4rem 0 0;
}
.sec01 .wrap_01 .btn-web.sp_only {
  display: none;
}

.slider-wrapper_01 {
  position: relative;
  top: -10rem;
}
.slider-wrapper_01 .centerimg {
  position: absolute;
  left: 50%;
  bottom: -4rem;
  width: 200px;
  transform: translate(-50%, 0);
  z-index: 10;
}

.js-loop-slider .slick-track {
  display: flex;
}

.js-loop-slider .slick-slide {
  width: 230px !important;
  margin-right: 4rem;
}
.js-loop-slider .slick-list {
	overflow: visible;
}


@media screen and (max-width: 768px) {
  .sec01 {
    padding-top: 7rem;
  }
  .sec01 .inner {
    padding: 0;
  }
  .sec01 .circle_txt {
    top: 2rem;
    width: 120%;
  }
  .sec01_bg {
    padding: 4rem 2rem 8rem;
  }
  /* 下だけを隠すマスク */
  .sec01_bg::after {
    display: none;
  }
  .sec01 .fukidashi {
    margin: 0 auto 1.6rem;
    padding: 0.5rem 1.5rem;
    color: #fff;
    font-size: 1.2rem;
  }
  .sec01 .fukidashi:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -7px;
    border: 7px solid transparent;
    border-top: 10px solid #70a2e1;
  }
  .sec01 .txt_01 {
    font-size: 1.8rem;
  }
  .sec01 .txt_02 {
    font-size: 2.8rem;
    margin: 2rem 0 3rem;
  }
  .sec01 .txt_02 span {
    font-size: 1.6rem;
    display: block;
    margin-right: 0;
  }
  .sec01 .wrap_01 {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
  }
  .sec01 .wrap_01 .left {
    width: 100%;
  }
  .sec01 .wrap_01 .right {
    width: 100%;
  }
  .tantou_box {
    text-align: center;
  }
  .tantou_box .img {
    width: 60%;
    margin: 0 auto 1rem;
  }
  .tantou_box .name {
    font-size: 16px;
    font-weight: bold;
  }
  .tantou_box .name span {
    font-size: 12px;
  }
  .tantou_box .btn-link {
    display: table;
    margin: auto;
  }
  .tantou_box .btn-link a {
    font-size: 1.4rem;
    margin: 1rem auto 2rem;
  }
  .sec01 .wrap_01 .btn-web {
    margin: 2rem auto 0;
  }
  
  .slider-wrapper_01 {
    top: -5rem;
  }
  .slider-wrapper_01 .centerimg {
    width: 160px;
  }

  .js-loop-slider .slick-slide {
    width: 130px !important;
    margin-right: 3rem;
  }

}

