@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/NS-400.woff2') format('woff2'),
    url('fonts/NS-400.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/NS-700.woff2') format('woff2'),
    url('fonts/NS-700.woff') format('woff');
  font-display: swap;
}

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

a {
  color: #000;
  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;
}
/* SP ------------------------------*/
@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
---------------------------------------*/
.cl01 {
  color: #04acf3;
}
.cl02 {
  color: #60c7ff;
}
.cl03 {
  color: #d0f224;
}
.cl04 {
  color: #98b500;
}
.cl05 {
  color: #0067f3;
}
.cl06 {
  color: #00b901;
}

/*--------------------------------------
　Header
---------------------------------------*/
header {
  width: 100%;
  min-width: 1300px;
  box-sizing: border-box;
}

header .sitename {
  background: #15141b;
  padding: 0.8rem 2rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: right;
}

.l-header-area .sitename:before {
  content: 'PR';
  display: inline-block;
  background: #fff;
  color: #000;
  text-align: center;
  width: 3rem;
  margin-right: 1rem;
  font-size: 1.2rem;
}

header .sitename a {
  display: inline-block;
  color: #fff;
}

header .logo_wrap {
  background: #4b4b4b;
  padding: 3rem 0 0;
}
header .logo {
  width: 380px;
  margin: auto;
}

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

  header .sitename {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    text-align: center;
  }

  header .logo_wrap {
    padding: 1.5rem 0 0;
  }
  header .logo {
    width: 50%;
  }
}

/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    display: table;
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    background: #15141b;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 10000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #hb-menu .hb-inner {
    display: table-cell;
    vertical-align: middle;
  }
  #hb-menu span {
    display: block;
    background: #fff;
    width: 22px;
    height: 2px;
    margin: auto;
    border-radius: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  #hb-menu span:nth-of-type(2),
  #hb-menu span:nth-of-type(3) {
    margin-top: 7px;
  }

  /* ナビゲーションアイコン：アクティブ */
  .hb-open 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 span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  .hb-open 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: rgba(21, 20, 27, 0.95);
    width: 100%;
    height: 100%;
    padding: 7rem 2rem;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
    transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    z-index: 9999;
  }
  .hb-open .g-nav .g-nav-inner {
    position: fixed;
    top: 0;
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

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

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

  .hb_menu_title {
    padding: 1.5rem 2.5rem 1.5rem 0;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  .hb_menu_title:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: none;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .hb_menu_title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hb_menu_title.first {
    padding: 1.5rem 0 1.5rem 0;
  }
  .hb_menu_title.first:after {
    display: none;
  }

  .hb_menu_title_link {
    display: block;
    padding: 0 0 0 0;
    color: #fff;
    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;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: none;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

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

  .hb_menu_list_item {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    display: block;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    color: #fff;
    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;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/*--------------------------------------
　Pankuzu
---------------------------------------*/
.pankuzu_wrap {
  background: #4b4b4b;
  padding: 2.5rem 0 2.5rem;
  box-sizing: border-box;
}
#pankuzu {
  max-width: 1300px;
  margin: 0 auto 0;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}
#pankuzu a {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  line-height: 1.8;
}
#pankuzu a:hover {
  text-decoration: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .pankuzu_wrap {
    padding: 1rem 0 1rem;
  }
  #pankuzu {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem 0.5rem 1.5rem;
    box-sizing: border-box;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #pankuzu::-webkit-scrollbar {
    height: 3px;
  }
  #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: #15141b;
  width: 100%;
  min-width: 1300px;
  box-sizing: border-box;
}

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

.l-footer-logo {
  max-width: 380px;
  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 #fff;
  position: relative;
}

.l-footer-menu__title__link {
  display: inline-block;
  padding: 0 3rem 0 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  position: relative;
}
.l-footer-menu__title__link:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

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

.l-footer-menu__list__link {
  display: block;
  padding: 0 2rem 0 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
}
.l-footer-menu__list__link:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.l-footer-submenu__list__item {
  margin: 0 0 1rem 0;
  position: relative;
}

.l-footer-submenu__list__link {
  display: block;
  padding: 0 0 0 1.5rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.l-footer-submenu__list__link:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  background: #fff;
  width: 6px;
  height: 1px;
}

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

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

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

.l-footer-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 0;
  color: #fff;
  font-size: 1.3rem;
  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;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

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

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

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

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

  .l-footer-menu__title {
    padding: 1.5rem 2.5rem 1.5rem 0;
  }
  .l-footer-menu__title:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: none;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .l-footer-menu__title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

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

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

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

  .l-footer-menu__list__link {
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .l-footer-menu__list__link:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

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

  .l-footer-submenu__list__item {
    margin: 0 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.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: #fff;
    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 1rem 0 0;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: underline;
    position: relative;
  }
  .sitemap a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

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

.l-pagetop__link {
  background: #fff;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #000;
  position: relative;
  transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}
.l-pagetop__link:after {
  display: block;
  content: '';
  position: absolute;
  top: 43%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-pagetop span {
  display: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .l-pagetop {
    bottom: 100px;
    right: 5px;
    width: 40px;
    height: 40px;
  }

  .l-pagetop__link {
    border: 1px solid #000;
  }
  .l-pagetop__link:after {
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
  }
}

/*--------------------------------------
　Side
---------------------------------------*/
.side_bnr {
  width: 250px;
  margin: 0 0 5rem;
}
.side_bnr a {
  display: block;
  width: 100%;
}

#side .sideBox {
  margin: 0 0 2rem 0;
  box-sizing: border-box;
}

#side .sideBox .sttl a {
  display: block;
  background: #fff;
  padding: 2rem 3rem 2rem 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
#side .sideBox .sttl a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#side .sideBox ul {
  margin: 0 0 0 0;
}
#side .sideBox li {
  margin: 0 0 0;
  padding: 2rem 0 2rem;
  border-bottom: 1px solid #3b3b3b;
}
#side .sideBox li::before {
  display: none;
}
#side .sideBox li:last-child {
  border-bottom: none;
}
#side .sideBox li a {
  display: block;
  padding: 0 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}
#side .sideBox li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#side .subList {
  margin: 2rem 0 0 0 !important;
  border-top: 1px solid #3b3b3b;
}
#side .subList li {
  padding: 2rem 0 2rem;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.3);
  position: relative;
}
#side .subList li:last-child {
  padding: 2rem 0 0;
}
#side .subList li a {
  display: block;
  padding: 0 2rem 0 1.5rem;
}
#side .subList li a:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents_wrap {
  width: 100%;
  min-width: 1300px;
  margin: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  box-sizing: border-box;
}

#category,
#page {
  background: #fff;
  width: 1000px;
  margin: 0 0 0;
  padding: 6rem 5rem 12rem 0;
  box-sizing: border-box;
}

#side {
  background: #f6f6f6;
  width: 300px;
  padding: 6rem 0 12rem 5rem;
  box-sizing: border-box;
  position: relative;
}
#side::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  background: #f6f6f6;
  width: 200%;
  height: 100%;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .contents_wrap {
    min-width: 100%;
  }

  .contents {
    display: block;
    max-width: 100%;
  }

  #category,
  #page {
    width: 100%;
    padding: 4rem 2rem 5rem 2rem;
  }

  #side {
    display: none;
    width: 100%;
  }
  #side::after {
    display: none;
  }
}

/*--------------------------------------
　Title
---------------------------------------*/
.h1_wrap {
  background: #15141b url('img/bg_01.png') right bottom no-repeat;
  background-size: 870px auto;
  width: 100%;
  min-width: 1300px;
  box-sizing: border-box;
}
.h1_wrap h1 {
  max-width: 1300px;
  margin: auto;
  padding: 4rem 0 4rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.4;
}

h2,
h3,
h4,
h5,
h6,
.cc {
  font-weight: bold;
  line-height: 1.4;
  box-sizing: border-box;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  display: block;
  font-weight: bold;
  box-sizing: border-box;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.cc span {
  font-weight: bold;
}

#category h2,
#page h2 {
  background: #15141b;
  margin: 4rem 0 2rem;
  padding: 2rem 3rem 2rem 11rem;
  color: #fff;
  font-size: 3.2rem;
  position: relative;
}
#category h2::before,
#page h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(0, -50%);
  background: url('img/icon_h2.png') left top no-repeat;
  background-size: 100% auto;
  width: 70px;
  height: 70px;
}

#category h2 a,
#page h2 a {
  padding: 0 4rem 0 0;
  color: #fff;
  position: relative;
}
#category h2 a:after,
#page h2 a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#category h3,
#page h3 {
  margin: 5rem 0 2rem;
  padding: 0 0 1.5rem 2rem;
  color: #00a1f3;
  font-size: 2.8rem;
  border-bottom: 2px solid #15141b;
  position: relative;
  z-index: 0;
}
#category h3::before,
#page h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('img/bg_h3.png') left top no-repeat;
  background-size: 100% auto;
  width: 332px;
  height: 82px;
  z-index: -1;
}

#category h3 a,
#page h3 a {
  padding: 0 4rem 0 0;
  color: #00a1f3;
  position: relative;
}
#category h3 a:after,
#page h3 a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-top: solid 2px #15141b;
  border-right: solid 2px #15141b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#category h4,
#page h4 {
  color: #15141b;
  margin: 4rem 0 2rem;
  font-size: 2.2rem;
}

#category h4 a,
#page h4 a {
  display: inline-block;
  padding: 0 3rem 0 0;
  color: #15141b;
  position: relative;
}
#category h4 a:after,
#page h4 a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 2px #15141b;
  border-right: solid 2px #15141b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .h1_wrap {
    background: #15141b url('img/bg_01.png') right bottom no-repeat;
    background-size: 60% auto;
    width: 100%;
    min-width: 100%;
    padding: 0 2rem;
  }
  .h1_wrap h1 {
    max-width: 100%;
    padding: 2rem 0 2rem;
    font-size: 2.5rem;
  }

  #category h2,
  #page h2 {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 6rem;
    font-size: 2.2rem;
  }
  #category h2::before,
  #page h2::before {
    left: 10px;
    background: url('img/icon_h2.png') left top no-repeat;
    background-size: 100% auto;
    width: 42px;
    height: 42px;
  }

  #category h2 a,
  #page h2 a {
    padding: 0 2rem 0 0;
  }
  #category h2 a:after,
  #page h2 a:after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }

  #category h3,
  #page h3 {
    margin: 4rem 0 2rem;
    padding: 0 0 1rem 1rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #15141b;
  }
  #category h3::before,
  #page h3::before {
    background: url('img/bg_h3.png') left top no-repeat;
    background-size: contain;
    width: 60%;
    height: 0;
    padding-top: calc(60% * 82 / 332);
  }

  #category h3 a,
  #page h3 a {
    padding: 0 2rem 0 0;
  }
  #category h3 a:after,
  #page h3 a:after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #15141b;
    border-right: solid 1px #15141b;
  }

  #category h4,
  #page h4 {
    margin: 3rem 0 2rem;
    font-size: 1.6rem;
  }

  #category h4 a,
  #page h4 a {
    padding: 0 2rem 0 0;
  }
  #category h4 a:after,
  #page h4 a:after {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: solid 1px #15141b;
    border-right: solid 1px #15141b;
  }
}

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

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

.txt_bold {
  color: #0096e2;
  font-weight: bold;
}
.marker {
  background: linear-gradient(transparent 70%, #d0f224 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;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #aeaeae #e7e7e7;
  scrollbar-width: thin;
}
.caption::-webkit-scrollbar {
  height: 2px;
}
.caption::-webkit-scrollbar-track {
  background: #e7e7e7;
  margin: 0 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
  background: #aeaeae;
  border-radius: 0;
  box-shadow: none;
}
.caption a {
  color: #888;
  text-decoration: underline;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .contents p {
    margin: 2rem 0 2rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .caption {
    margin: 1rem 0 0 0;
  }
}

/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
  margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background: #04acf3;
  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;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  /*----- ulリスト -----*/
  .contents ul {
    margin: 2rem 0 2rem;
  }
  .contents ul li {
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .contents ul li:before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
}

/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
  display: block;
  max-width: 480px;
  margin: 4rem auto 4rem;
  padding: 2rem 5rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  text-decoration: none !important;
  position: relative;
}
.btn-web a:hover,
.btn-internal a:hover,
.btn-tel a:hover {
  transform: translateY(5px);
  box-shadow: none;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: 'alpha(opacity=100)';
}

/*----- btn-web（外部リンク） -----*/
.btn-web a {
  background: #f40375;
  color: #fff;
  border: 2px solid #000;
  box-shadow: 10px 10px 0px 0px #890342;
}
.btn-web a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
  background: #fff;
  border: 2px solid #000;
  box-shadow: 10px 10px 0px 0px #60c7ff;
}
.btn-internal a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*----- btn-link（テキストリンク） -----*/
.btn-link {
  text-align: right;
}
.btn-link a {
  display: inline-block;
  margin: 4rem 0 4rem;
  padding: 0 3rem 0 0;
  font-size: 1.6rem;
  font-weight: bold;
  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_01.png') left top no-repeat;
  background-size: 100% auto;
  width: 22px;
  height: 22px;
}

.btn-link a:hover {
  text-decoration: none;
}

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 85%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 2.5rem 1.8rem 1.5rem;
    font-size: 1.4rem;
  }

  /*----- btn-web（外部リンク） -----*/
  .btn-web a {
    border: 1px solid #000;
    box-shadow: 5px 5px 0px 0px #890342;
  }
  .btn-web a:after {
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }

  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    border: 1px solid #000;
    box-shadow: 5px 5px 0px 0px #60c7ff;
  }
  .btn-internal a:after {
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
  }

  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.4rem;
  }
  .btn-link a::after {
    background: url('img/arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 18px;
    height: 18px;
  }

  /*----- btn-tel（電話ボタン） -----*/
  .btn-tel a {
    display: block;
    background: #00b901 url('img/icon_tel.png') left 25px center no-repeat;
    background-size: 18px auto;
    max-width: 85%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 3rem 1.8rem 5rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    text-decoration: none !important;
    border: 1px solid #000;
    box-shadow: 5px 5px 0px 0px #2c6e2c;
    position: relative;
  }
}

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

table th {
  background: #f6f6f6;
  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 #000;
  border-bottom: 1px solid #000;
}
table th a {
  font-weight: bold;
  text-decoration: underline;
}
table th a:hover {
  text-decoration: none;
}

table td {
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  word-break: break-all;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
table td a {
  text-decoration: underline;
}
table td a:hover {
  text-decoration: none;
}
.sec03 table th:nth-child(odd) {
  width: 50%;
}

/* SP ------------------------------*/
@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 #000;
  }

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

  table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
  .sec03 table tr {
    display: flex;
  }
  .sec03 table tr:nth-child(6) th {
    border-bottom: none;
  }
  .sec03 table td {
    align-items: center;
    width: 35%;
  }
  .sec03 table th:nth-child(odd) {
    width: 65%;
    border-right: 1px solid #000;
  }
  .sec04_block01 .table_parts tr:last-child td:last-child {
    border-bottom: 1px solid #e4e4e4;
  }
}

/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
  margin: 8rem 0 8rem;
  box-sizing: border-box;
}

.float-img {
  position: relative;
}

.float-img .flame img {
  display: block;
  width: auto;
  margin: auto;
}

.float-img.fl {
  float: left;
  width: 380px;
  padding-right: 4rem;
}
.float-img.fr {
  float: right;
  width: 380px;
  padding-left: 4rem;
}

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

.float-wrap .catch-copy {
  margin: 2rem 0 2rem 0;
  color: #0096e2;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .float-wrap {
    margin: 5rem 0 5rem;
  }

  .float-img.fl {
    float: left;
    width: 100%;
    padding-right: 0;
  }
  .float-img.fr {
    float: right;
    width: 100%;
    padding-left: 0;
  }

  .float-img .caption {
    margin: 1rem 0 1.5rem 0;
  }

  .float-wrap .catch-copy {
    margin: 1.5rem 0 1.5rem 0;
    font-size: 1.8rem;
  }

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

/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  margin: 0 0 10rem;
  padding: 8rem 0 0;
  position: relative;
  z-index: 0;
}
.toc_parts::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url('img/bg_toc.png') left top no-repeat;
  background-size: 100% auto;
  width: 350px;
  height: 350px;
  z-index: -1;
}

.toc_parts .ttl {
  padding: 0 0 3rem;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #d9d9d9;
}

#toc {
  margin: 3rem 0 0 0;
}
#toc .chapter {
  margin: 0 0 0;
}
#toc .chapter li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 4rem;
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-wrap: break-word;
  position: relative;
  counter-increment: count;
}
#toc .chapter li:before {
  content: '0' counter(count);
  position: absolute;
  top: -12px;
  left: 0;
  background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
  color: #00a1f3;
  font-size: 2.6rem;
  font-weight: bold;
}
#toc .chapter li a {
  font-weight: bold;
}

#toc .chapter .chapter {
  margin: 0 0 0 4rem;
}
#toc .chapter .chapter li {
  margin: 0 0 1rem;
  padding: 0 0 0 1.5rem;
  font-size: 1.4rem;
  position: relative;
  counter-increment: none;
}
#toc .chapter .chapter li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#toc .chapter .chapter li a {
  font-weight: 400;
}

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .toc_parts {
    margin: 0 0 5rem;
    padding: 1.5rem 0 0;
  }
  .toc_parts::after {
    background: url('img/bg_toc.png') left top no-repeat;
    background-size: 100% auto;
    width: 40%;
    height: 0;
    padding-top: calc(40% * 350 / 350);
  }

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

  #toc {
    margin: 2rem 0 0 0;
  }
  #toc .chapter li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 3.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  #toc .chapter li:before {
    top: -10px;
    font-size: 2.2rem;
  }

  #toc .chapter .chapter li {
    padding: 0 0 0 1.2rem;
  }
}

/*--------------------------------------
　links_parts
---------------------------------------*/
.links_parts {
  background: #f6f6f6;
  margin: 10rem 0 10rem;
  padding: 4rem 5rem 4rem;
  box-sizing: border-box;
}

.links_parts .ttl {
  padding: 0 0 0 3.5rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.links_parts .ttl::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  background: #00a1f3;
  width: 25px;
  height: 4px;
}

.links_parts ul {
  margin: 2rem 0 0;
}
.links_parts ul li {
  margin: 0 0 1.5rem;
  padding: 0 0 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
.links_parts ul li:last-child {
  margin: 0 0 0;
}
.links_parts ul li:before {
  display: none;
}
.links_parts ul li a {
  padding: 0 0 0 2.5rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.links_parts ul li a::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  background: url('img/arrow_01.png') left top no-repeat;
  background-size: 100% auto;
  width: 18px;
  height: 18px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .links_parts {
    margin: 6rem 0 6rem;
    padding: 3rem 2rem 3rem;
  }

  .links_parts .ttl {
    padding: 0 0 0 2.5rem;
    font-size: 1.8rem;
  }
  .links_parts .ttl::before {
    top: 12px;
    width: 18px;
    height: 2px;
  }

  .links_parts ul {
    margin: 1.5rem 0 0;
  }
  .links_parts ul li {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .links_parts ul li a {
    padding: 0 0 0 2rem;
  }
  .links_parts ul li a::before {
    top: 5px;
    background: url('img/arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 14px;
    height: 14px;
  }
}

/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  background: #15141b url('img/bg_02.png') right bottom no-repeat;
  background-size: 850px auto;
  padding: 3rem 5rem 6rem;
  box-sizing: border-box;
  color: #fff;
}

.summary_parts p {
  margin: 0 0 0;
}

.summary_parts .cc_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary_parts .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cff223;
  width: 120px;
  height: 120px;
  box-sizing: border-box;
  color: #000;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
}
.summary_parts .cc {
  width: calc(100% - 120px);
  padding: 0 0 0 2rem;
  box-sizing: border-box;
  font-size: 2.8rem;
}

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

.summary_parts .btn-internal a {
  background: #cff223;
  margin: 5rem auto 0;
  box-shadow: 10px 10px 0px 0px #c3c9a6;
}
.summary_parts .btn-internal a:hover {
  box-shadow: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .summary_parts {
    background: #15141b url('img/bg_02.png') right bottom no-repeat;
    background-size: 60% auto;
    padding: 2rem 2rem 4rem;
  }

  .summary_parts .cc_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .summary_parts .icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .summary_parts .cc {
    width: calc(100% - 70px);
    padding: 0 0 0 1.5rem;
    font-size: 1.8rem;
  }

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

  .summary_parts .btn-internal a {
    margin: 3rem auto 0;
    box-shadow: 5px 5px 0px 0px #c3c9a6;
  }
}

/*--------------------------------------
　slider_parts
---------------------------------------*/
.slider_parts {
  margin: 10rem 0 10rem;
  position: relative;
  z-index: 0;
}

.slider_parts .item {
  padding: 0 2rem;
  box-sizing: border-box;
}

.slider_parts .s_ttl {
  color: #04acf3;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.slider_parts .item_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0 0;
}

.slider_parts .l_box {
  width: 450px;
  box-sizing: border-box;
}

.slider_parts .r_box {
  width: calc(100% - 450px);
  padding: 0 3rem 0 4rem;
  box-sizing: border-box;
}

.slider_parts .cc {
  font-size: 2.4rem;
}

.slider_parts ul {
  margin: 2rem 0 0;
}
.slider_parts ul li {
  font-size: 1.4rem;
}
.slider_parts ul li:before {
  top: 9px;
}

.slider_parts .caption {
  margin: 2rem 0 0;
  font-size: 1.2rem;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* arrow */
.slide-arrow {
  display: block;
  position: absolute;
  top: 42%;
  width: 50px;
  height: 50px;
  z-index: 1;
  cursor: pointer;
}
.prev-arrow {
  left: 0;
  background: url('img/arrow_prev.png') left top no-repeat;
  background-size: 100% auto;
}
.next-arrow {
  right: 0;
  background: url('img/arrow_next.png') left top no-repeat;
  background-size: 100% auto;
}

/* dots */
.slide-dots {
  text-align: center;
  margin: 1.5rem 0 0 !important;
  padding: 0 0;
  font-size: 0;
}
.slide-dots li {
  display: inline-block;
  margin: 0 10px;
}
.slide-dots li button {
  background: #e5e5e5;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  position: relative;
  text-indent: -9999px;
}
.slide-dots li.slick-active button {
  background: #000;
}
.slide-dots li:before {
  display: none !important;
}

.slick-slide:focus {
  outline: none;
}

.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}

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

  .slider_parts .item {
    padding: 0 0;
    margin: 0 0.8rem;
  }

  .slider_parts .s_ttl {
    font-size: 1.8rem;
  }

  .slider_parts .item_inner {
    display: block;
    margin: 2rem 0 0;
  }

  .slider_parts .l_box {
    width: 100%;
  }

  .slider_parts .r_box {
    width: 100%;
    margin: 2rem 0 0;
    padding: 0 0 0 0;
  }

  .slider_parts .cc {
    font-size: 1.6rem;
  }

  .slider_parts ul {
    margin: 1.5rem 0 0;
  }
  .slider_parts ul li {
    margin: 0 0 0.5rem 0;
  }
  .slider_parts ul li:before {
    top: 8px;
  }

  .slider_parts .caption {
    margin: 1rem 0 0;
    font-size: 1rem;
  }

  /* arrow */
  .slide-arrow {
    top: 25%;
    width: 34px;
    height: 34px;
  }
  .prev-arrow {
    left: -17px;
  }
  .next-arrow {
    right: -17px;
  }

  /* dots */
  .slide-dots {
    margin: 1.5rem 0 0 !important;
  }
  .slide-dots li {
    margin: 0 8px;
  }
  .slide-dots li button {
    width: 12px;
    height: 12px;
  }
}

/*--------------------------------------
　bnr_parts
---------------------------------------*/
.bnr_parts {
  width: 730px;
  margin: 10rem auto 10rem;
  box-sizing: border-box;
}

.bnr_parts a {
  display: block;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .bnr_parts {
    width: 100%;
    margin: 6rem auto 6rem;
  }
}

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

.com_parts01 p {
  margin: 0 0 0;
}

.com_parts01 .ttl_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #15141b url('img/bg_02.png') right bottom no-repeat;
  background-size: 425px auto;
  padding: 2.5rem 5rem 3.5rem;
  box-sizing: border-box;
  color: #fff;
}
.com_parts01 .ttl_box .ttl {
  width: 50%;
  box-sizing: border-box;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.4;
}
.com_parts01 .ttl_box .ttl span {
  font-weight: bold;
}
.com_parts01 .ttl_box .ttl .spn01 {
  display: block;
  font-size: 2.4rem;
}
.com_parts01 .ttl_box .ttl_txt {
  width: 45%;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.8;
}
.com_parts01 .ttl_box .ttl_txt span {
  font-size: 2.2rem;
  font-weight: bold;
}

.com_parts01_block {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 60px);
  margin: 3rem 0 0 -3rem;
}

.com_parts01_block .item {
  width: 33.33%;
  padding: 0 3rem;
  box-sizing: border-box;
}
.com_parts01_block .item:nth-child(2) {
  border-left: 3px solid #15141b;
  border-right: 3px solid #15141b;
}

.com_parts01_block .cc_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.com_parts01_block .cc {
  color: #474747;
  font-size: 2.2rem;
  text-align: center;
}
.com_parts01_block .cc span {
  font-size: 3rem;
  font-weight: bold;
}

.com_parts01_block .sub {
  background: #15141b;
  margin: 1.5rem 0 0;
  padding: 1rem 1rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.com_parts01_block .arrow_deco {
  width: 80px;
  margin: 1rem auto 0;
}

.com_parts01_block .name {
  margin: 0.5rem 0 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.com_parts01_block .name span {
  margin: 0 1.5rem 0 0;
  font-size: 2.8rem;
  font-weight: bold;
}

.com_parts01_block .img_box {
  margin: 1.5rem 0 0;
}
.com_parts01_block .caption {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

.com_parts01_block .area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0 0;
}
.com_parts01_block .area dt {
  background: #dbdbdb;
  width: 65px;
  padding: 5px 0;
  box-sizing: border-box;
  font-size: 1rem;
  text-align: center;
  line-height: 1.3;
}
.com_parts01_block .area dd {
  width: calc(100% - 75px);
  font-size: 1.3rem;
  line-height: 1.3;
}
.com_parts01_block .area dd span {
  color: #f40375;
}

.com_parts01_block .check_list {
  margin: 2rem 0 0;
}
.com_parts01_block .check_list li {
  margin: 0 0 1.5rem;
  padding: 0 0 0 2.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
}
.com_parts01_block .check_list li:last-child {
  margin: 0 0 0;
}
.com_parts01_block .check_list li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  background: url('img/icon_check.png') left top no-repeat;
  background-size: 100% auto;
  width: 20px;
  height: 15px;
}
.com_parts01_block .check_list li span {
  font-weight: bold;
}

.com_parts01_block .btn-web a {
  max-width: 100%;
  margin: 3rem auto 0;
  padding: 2rem 3rem;
  line-height: 1.3;
  box-shadow: 8px 8px 0px 0px #890342;
}

.com_parts01_block .btn-internal a {
  max-width: 100%;
  margin: 3rem auto 0;
  padding: 2rem 3rem;
  line-height: 1.3;
  box-shadow: 8px 8px 0px 0px #60c7ff;
}

.com_parts01_block .btn-web a:hover,
.com_parts01_block .btn-internal a:hover {
  box-shadow: none;
}

.com_parts01 .sc {
  background: #f6f6f6;
  margin: 8rem 0 0;
  padding: 4rem 4rem;
  box-sizing: border-box;
}
.com_parts01 .sc .txt {
  font-size: 1.4rem;
}
.com_parts01 .sc .txt span {
  font-size: 1.8rem;
  font-weight: bold;
}

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

  .com_parts01 .ttl_box {
    display: block;
    background: #15141b url('img/bg_02.png') right top 20px no-repeat;
    background-size: 70% auto;
    padding: 2rem 2rem;
  }
  .com_parts01 .ttl_box .ttl {
    width: 100%;
    font-size: 2.8rem;
  }
  .com_parts01 .ttl_box .ttl .spn01 {
    font-size: 1.6rem;
  }
  .com_parts01 .ttl_box .ttl_txt {
    width: 100%;
    margin: 1.5rem 0 0;
    font-size: 1.4rem;
  }
  .com_parts01 .ttl_box .ttl_txt span {
    font-size: 1.6rem;
  }

  .com_parts01_block {
    display: block;
    width: 100%;
    margin: 0 0 0 0;
  }

  .com_parts01_block .item {
    width: 100%;
    padding: 3rem 0;
  }
  .com_parts01_block .item:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 2px solid #15141b;
    border-bottom: 2px solid #15141b;
  }

  .com_parts01_block .cc_wrap {
    display: block;
  }
  .com_parts01_block .cc {
    font-size: 1.8rem;
  }
  .com_parts01_block .cc span {
    font-size: 2.5rem;
  }

  .com_parts01_block .sub {
    margin: 1.5rem 0 0;
    padding: 5px 5px;
    font-size: 1.6rem;
  }

  .com_parts01_block .arrow_deco {
    width: 20%;
    margin: 1rem auto 0;
  }

  .com_parts01_block .name {
    margin: 1rem 0 0;
    font-size: 1.8rem;
  }
  .com_parts01_block .name span {
    margin: 0 1rem 0 0;
    font-size: 2.4rem;
  }

  .com_parts01_block .area {
    justify-content: flex-start;
    margin: 1.5rem 0 0;
  }
  .com_parts01_block .area dt {
    width: 25%;
    padding: 5px 5px;
    font-size: 1rem;
  }
  .com_parts01_block .area dd {
    width: 75%;
    padding: 0 0 0 1rem;
    font-size: 1.4rem;
  }

  .com_parts01_block .check_list {
    margin: 1.5rem 0 0;
  }
  .com_parts01_block .check_list li {
    margin: 0 0 1rem;
    padding: 0 0 0 2rem;
    font-size: 1.5rem;
  }
  .com_parts01_block .check_list li::before {
    background: url('img/icon_check.png') left top no-repeat;
    background-size: contain;
    width: 5%;
    height: 0;
    padding-top: calc(5% * 15 / 20);
  }

  .com_parts01_block .btn-web a {
    max-width: 85%;
    margin: 2rem auto 0;
    padding: 1.8rem 3rem;
    line-height: 1.3;
    box-shadow: 5px 5px 0px 0px #890342;
  }

  .com_parts01_block .btn-internal a {
    max-width: 85%;
    margin: 2rem auto 0;
    padding: 1.8rem 3rem;
    box-shadow: 5px 5px 0px 0px #60c7ff;
  }

  .com_parts01 .sc {
    margin: 2rem 0 0;
    padding: 2rem 2rem;
  }
  .com_parts01 .sc .txt {
    font-size: 1.3rem;
  }
  .com_parts01 .sc .txt span {
    font-size: 1.6rem;
  }
}

/*--------------------------------------
　Link
---------------------------------------*/
.link01 a {
  display: block;
  background: #d0f224;
  max-width: 480px;
  margin: 0 auto 0;
  padding: 2.5rem 5rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  border: 2px solid #000;
  box-shadow: 10px 10px 0px 0px #c3c9a6;
  position: relative;
}
.link01 a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .link01 a {
    max-width: 85%;
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
    border: 1px solid #000;
    box-shadow: 5px 5px 0px 0px #c3c9a6;
    position: relative;
  }
  .link01 a:after {
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
  }
}

/*--------------------------------------
　fixed_nav
---------------------------------------*/
.fixed_nav_lower {
  display: none;
}

.fixed_nav {
  position: fixed;
  top: 0;
  left: 0;
  background: #15141b;
  width: 100%;
  min-width: 1300px;
  padding: 0.5rem 1.5rem 1rem;
  box-sizing: border-box;
  z-index: 2;
  display: none;
}

.fixed_nav .fixed_nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fixed_nav .logo {
  width: 270px;
  margin: 0 2rem 0 0;
  box-sizing: border-box;
}

.fixed_nav .nav_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0 auto;
}
.fixed_nav .nav_link li {
  width: 14.5%;
  margin: 0 3rem 0 0;
  box-sizing: border-box;
}
.fixed_nav .nav_link li:nth-child(5) {
  width: 23%;
  margin: 0 1.5rem 0 0;
}
.fixed_nav .nav_link li:last-child {
  display: none;
}
.fixed_nav .nav_link li a {
  display: block;
  padding: 0 1.5rem 0 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
}
.fixed_nav .nav_link li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fixed_nav .link01 {
  width: 31rem;
  box-sizing: border-box;
}
.fixed_nav .link01 a {
  max-width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  box-shadow: 5px 5px 0px 0px #c3c9a6;
}
.fixed_nav .link01 a:after {
  right: 15px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
}
.fixed_nav .link01 span {
  display: inline-block;
  font-weight: bold;
}

.fixed_nav_lower .fixed_nav .link01 a:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .fixed_nav_lower {
    display: block;
  }

  .fixed_nav {
    height: 55px;
    min-width: 100%;
    padding: 0 0.5rem 0;
  }

  .fixed_nav .fixed_nav_inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .fixed_nav .logo {
    display: flex;
    align-items: center;
    width: 40%;
    height: 55px;
    margin: 0 1rem 0 0;
  }

  .fixed_nav .nav_link {
    display: none;
  }

  .fixed_nav .link01 {
    width: 50%;
    margin: 0 55px 0 0;
  }
  .fixed_nav .link01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    padding: 0.6rem 1.5rem 0.8rem 0;
    box-sizing: border-box;
    font-size: 2.4vw;
    box-shadow: 2px 2px 0px 0px #c3c9a6;
  }
  .fixed_nav .link01 a:after {
    right: 7px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
  }
}

/*--------------------------------------
　sec
---------------------------------------*/
.sec03 .list h4 {
  margin: 4rem 0 -6rem;
  font-size: 2rem;
  background: #f6f6f6;
  padding: 2rem;
}
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec03 .list h4 {
    font-size: 1.6rem;
    margin: 2rem 0 -3rem;
    padding: 1rem;
  }
}
