@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: #333;
  font-size: 1.4rem;
  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: #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;
}

.cl01 {
  color: #3e6fc6;
}
/* 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;
  }
}

/*--------------------------------------
　Header
---------------------------------------*/
header {
  width: 100%;
  padding: 2rem 6rem;
  box-sizing: border-box;
}

header .sitename {
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.5;
}
header .sitename:before {
  content: 'PR';
  display: inline-block;
  background: #000;
  color: #fff;
  text-align: center;
  width: 3rem;
  margin-right: 1rem;
  font-size: 1.4rem;
}
header .sitename a {
  display: inline-block;
}

header .logo a {
  display: block;
}

.header_lower {
  min-width: 1000px;
}
.header_lower .logo {
  max-width: 270px;
  margin: 0.5rem 0 0;
}

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

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

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

  .header_lower {
    min-width: 100%;
  }
  .header_lower .logo {
    max-width: 45%;
  }
}

/*--------------------------------------
　Navi
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
  display: table;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: #3e6fc6;
  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: 36px;
  height: 4px;
  margin: auto;
  border-radius: 10px;
  -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: 12px;
}

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

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

.hb_menu_title {
  padding: 2rem 0 2rem;
  border-bottom: 1px solid #fff;
}

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

.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: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.hb_menu_list_link:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  background: #fff;
  width: 8px;
  height: 1px;
}

/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    display: table;
    position: fixed;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background: #3e6fc6;
    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: 10px;
    -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: #3e6fc6;
    width: 100%;
    height: 100%;
    padding: 6rem 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);
  }

  .g-nav .close {
    width: 80%;
    margin: 3rem auto 0;
    padding: 1.5rem 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100px;
  }
}

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  #pankuzu {
    width: 100%;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem 0.5rem 1.5rem;
    box-sizing: border-box;
    font-size: 1rem;
    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: #41535d;
  width: 100%;
  min-width: 1000px;
  box-sizing: border-box;
}
.footer_home .l-footer-area {
  min-width: 1100px;
}

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

.l-footer-logo {
  max-width: 200px;
  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.7rem;
  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 #f89231;
  border-right: 2px solid #f89231;
  -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.4rem;
  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 #f89231;
  border-right: 2px solid #f89231;
  -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: #f89231;
  width: 6px;
  height: 1px;
}

.l-footer-area .menseki {
  background: #f7f7f7;
  max-width: 970px;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
  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: #354249;
}

.l-footer-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer_home .l-footer-copy {
  max-width: 1100px;
}

.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%;
  }
  .footer_home .l-footer-area {
    min-width: 100%;
  }

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

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

  .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 #f89231;
    border-right: solid 1px #f89231;
    -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 #f89231;
    border-right: 1px solid #f89231;
    -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: #f89231;
    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 10rem;
    font-size: 1.2rem;
    text-align: center;
  }
  .footer_home .l-footer-copy {
    max-width: 100%;
  }

  .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: 180px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 0;
}

.l-pagetop__link {
  background: #41535d;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #fff;
  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 #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-pagetop span {
  display: none;
}

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

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

/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents_wrap {
  background: #f5f5f5;
  position: relative;
  z-index: 0;
}
.contents_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('img/header_lower_bg.png') center bottom no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  z-index: -1;
}

.contents {
  width: 100%;
  min-width: 1000px;
  margin: auto;
  padding: 6rem 0 12rem;
  box-sizing: border-box;
}

#category,
#page {
  width: 1000px;
  margin: auto !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .contents_wrap::after {
    background: url('img/header_lower_bg.png') center top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100% * 400 / 1400);
  }

  .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.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 h1,
#page h1 {
  margin: 0 0 5rem;
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  position: relative;
}
#category h1::before,
#page h1::before {
  content: 'Contents';
  display: block;
  margin: 0 0 3rem;
  color: #3e6fc6;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
}

#category h2,
#page h2 {
  background: #fff url('img/deco_h2.png') left top no-repeat;
  background-size: 64px 100%;
  margin: 8rem 0 2rem;
  padding: 2rem 3rem 2rem 5rem;
  font-size: 2.8rem;
  position: relative;
}
#category h2::before,
#page h2::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -28px;
  background: url(img/icon_chara_01.png) left top no-repeat;
  background-size: 100% auto;
  width: 70px;
  height: 60px;
}

#category h2 a,
#page h2 a {
  padding: 0 4rem 0 0;
  position: relative;
}
#category h2 a:after,
#page h2 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: 16px;
  height: 18px;
}

#category h3,
#page h3 {
  margin: 6rem 0 2rem;
  padding: 0 4rem 1.5rem 0;
  color: #3e6fc6;
  font-size: 2.6rem;
  border-bottom: 2px solid #3e6fc6;
}

#category h3 a,
#page h3 a {
  padding: 0 4rem 0 0;
  color: #3e6fc6;
  position: relative;
}
#category h3 a:after,
#page h3 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: 16px;
  height: 18px;
}

#category h4,
#page h4 {
  margin: 4rem 0 2rem;
  padding: 0 0 0 1.5rem;
  font-size: 2.4rem;
  position: relative;
}
#category h4::before,
#page h4::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  background: #3e6fc6;
  width: 3px;
  height: 20px;
}

#category h4 a,
#page h4 a {
  display: inline-block;
  padding: 0 3rem 0 0;
  position: relative;
}
#category h4 a:after,
#page h4 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: 8px;
  height: 9px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  #category h1,
  #page h1 {
    margin: 0 0 3rem;
    font-size: 2.5rem;
  }
  #category h1::before,
  #page h1::before {
    margin: 0 0 1rem;
    font-size: 1.8rem;
  }

  #category h2,
  #page h2 {
    background: #fff url('img/deco_h2.png') left top no-repeat;
    background-size: 38px 100%;
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    font-size: 2.2rem;
  }
  #category h2::before,
  #page h2::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -14px;
    background: url(img/icon_chara_01.png) left top no-repeat;
    background-size: 100% auto;
    width: 50px;
    height: 42px;
  }

  #category h2 a,
  #page h2 a {
    padding: 0 3rem 0 0;
  }
  #category h2 a:after,
  #page h2 a:after {
    background: url('img/arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 8px;
    height: 9px;
  }

  #category h3,
  #page h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 0;
    font-size: 1.8rem;
    border-bottom: 1px solid #3e6fc6;
  }

  #category h3 a,
  #page h3 a {
    padding: 0 3rem 0 0;
  }
  #category h3 a:after,
  #page h3 a:after {
    background: url('img/arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 8px;
    height: 9px;
  }

  #category h4,
  #page h4 {
    margin: 3rem 0 2rem;
    padding: 0 0 0 1rem;
    font-size: 1.6rem;
  }
  #category h4::before,
  #page h4::before {
    top: 5px;
    width: 2px;
    height: 14px;
  }
}

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

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

.marker {
  background: linear-gradient(transparent 70%, #ffd76a 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;
  }

  .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: 12px;
  left: 0;
  background: #eb821e;
  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: 620px;
  margin: 4rem auto 4rem;
  padding: 2.8rem 6rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  border-radius: 100px;
  text-decoration: none !important;
  position: relative;
}

/*----- btn-web（外部リンク） -----*/
.btn-web a {
  background: #f59f2f;
  color: #fff;
}
.btn-web a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  background: url('img/arrow_02.png') left top no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 18px;
}

/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
  background: #fff;
  color: #3e6fc6;
  border: 4px solid #3e6fc6;
}
.btn-internal a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  background: url('img/arrow_01.png') left top no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 18px;
}

/*----- 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.8rem;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: underline;
  position: relative;
}
.btn-link a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: solid 2px #f4a100;
  border-right: solid 2px #f4a100;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.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 3rem;
    font-size: 1.5rem;
  }

  /*----- btn-web（外部リンク） -----*/
  .btn-web a:after {
    right: 15px;
    background: url('img/arrow_02.png') left top no-repeat;
    background-size: 100% auto;
    width: 8px;
    height: 9px;
  }

  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    border: 2px solid #3e6fc6;
  }
  .btn-internal a:after {
    right: 15px;
    background: url('img/arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 8px;
    height: 9px;
  }

  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 1.5rem 0 0;
    font-size: 1.5rem;
  }
  .btn-link a:after {
    border-top: solid 1px #f4a100;
    border-right: solid 1px #f4a100;
  }

  /*----- btn-tel（電話ボタン） -----*/
  .btn-tel a {
    display: block;
    background: #41535d url('img/icon_tel.png') left 25px center no-repeat;
    background-size: 14px auto;
    max-width: 85%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 5rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    border-radius: 100px;
    text-decoration: none !important;
    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 #dad9d9;
}

table th {
  background: #eef3f6;
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-all;
  border-left: 1px solid #dad9d9;
  border-bottom: 1px solid #dad9d9;
}
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.4rem;
  line-height: 1.4;
  word-break: break-all;
  border-left: 1px solid #dad9d9;
  border-bottom: 1px solid #dad9d9;
}
table td a {
  text-decoration: underline;
}
table td a:hover {
  text-decoration: none;
}

/* 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 #dad9d9;
  }

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

  table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
}

/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.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: 450px;
  padding-right: 4rem;
}
.float-img.fr {
  float: right;
  width: 450px;
  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: #3e6fc6;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  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;
  }
}

/*--------------------------------------
　yb_parts
---------------------------------------*/
.yb_parts {
  max-width: 890px;
  margin: auto;
}

.yb_parts .yb_parts_block {
  position: relative;
  width: 100%;
  height: 0;
  margin: auto;
  padding-top: 56.25%;
}

.yb_parts .yb_parts_block iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  background: #f1f1f1;
  margin: 10rem 0 10rem;
  padding: 3rem 3rem;
  box-sizing: border-box;
  border: 2px solid #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
}

.toc_parts .ttl {
  color: #3e6fc6;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

.toc_block {
  margin: 2.5rem 0 0;
  padding: 3rem 3rem 0;
  border-top: 2px solid #fff;
}

.toc_block .chapter {
  margin: 0 0 0;
}
.toc_block .chapter li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  position: relative;
  counter-increment: count;
}
.toc_block .chapter li:before {
  content: '0' counter(count);
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: -3px;
  left: 0;
  background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
  color: #3e6fc6;
  font-size: 2rem;
  font-weight: bold;
}
.toc_block .chapter li:last-child {
  margin: 0 0 0;
}
.toc_block .chapter li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: bold;
}

.toc_block .chapter .chapter {
  margin: 2rem 0 0 5rem;
}
.toc_block .chapter .chapter li {
  margin: 0 0 1rem;
  padding: 0 0 0 2.5rem;
  font-size: 1.8rem;
  position: relative;
  counter-increment: none;
}
.toc_block .chapter .chapter li:before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  background: #3e6fc6;
  width: 15px;
  height: 2px;
}

.toc_block .chapter li br {
  display: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .toc_parts {
    margin: 6rem 0 6rem;
    padding: 2rem 1.5rem;
    border: 1px solid #fff;
  }

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

  .toc_block {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid #222;
  }

  .toc_block .chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 3.5rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .toc_block .chapter li:before {
    top: -6px;
    font-size: 2rem;
  }

  .toc_block .chapter .chapter {
    margin: 1rem 0 0 3.5rem;
  }
  .toc_block .chapter .chapter li {
    margin: 0 0 1rem;
    padding: 0 0 0 2rem;
    font-size: 1.5rem;
  }
  .toc_block .chapter .chapter li:before {
    top: 11px;
    width: 10px;
    height: 1px;
  }
}

/*--------------------------------------
　links_parts
---------------------------------------*/
.links_parts {
  background: #f9f9f9;
  margin: 10rem 0 10rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
  border: 2px solid #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
}

.links_parts .ttl {
  color: #3e6fc6;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: left;
  padding-left: 3rem;
}

.links_parts_block {
  margin: 2.5rem 0 0;
  padding: 3rem 3rem 0;
  border-top: 2px solid #c3c3c3;
}

.links_parts_block ul {
  margin: 0 0 0;
}
.links_parts_block ul li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 0;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
}
.links_parts_block ul li:before {
  display: none;
}
.links_parts_block ul li:last-child {
  margin: 0 0 0;
}
.links_parts_block ul li:last-child .marker {
  background: linear-gradient(transparent 70%, #ffd76a 0%);
  font-weight: bold;
}
.links_parts_block ul li a {
  display: block;
  padding: 0 0 0 4rem;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: none;
  position: relative;
}
.links_parts_block ul li a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url('img/arrow_01.png') left top no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 18px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .links_parts {
    margin: 6rem 0 6rem;
    padding: 2rem 1.5rem;
    border: 1px solid #fff;
  }

  .links_parts .ttl {
    font-size: 1.7rem;
  }

  .links_parts_block {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid #222;
  }

  .links_parts_block ul li {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .links_parts_block ul li a {
    padding: 0 0 0 2rem;
  }
  .links_parts_block ul li a:after {
    background: url('img/arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 11px;
    height: 13px;
  }
}

/*--------------------------------------
　com01_parts
---------------------------------------*/
.com01_parts {
  width: 100%;
  min-width: 1000px;
  background: #3e6fc6;
  padding: 0 0 10rem;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.com01_parts::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('img/com01_parts_bg.png') center bottom no-repeat;
  background-size: cover;
  width: 100%;
  height: 730px;
  z-index: -1;
}

.com01_parts .com01_parts_inner {
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.com01_parts .com01_parts_inner::before,
.com01_parts .com01_parts_inner::after {
  content: '';
  position: absolute;
}
.com01_parts .com01_parts_inner::before {
  top: 20px;
  left: -135px;
  background: url(img/com01_parts_01.png) left top no-repeat;
  background-size: 100% auto;
  width: 182px;
  height: 220px;
}
.com01_parts .com01_parts_inner::after {
  top: 45px;
  right: -100px;
  background: url(img/com01_parts_02.png) left top no-repeat;
  background-size: 100% auto;
  width: 240px;
  height: 240px;
}

.com01_parts .chara {
  width: 320px;
  margin: auto;
  position: relative;
  top: -55px;
  left: -60px;
}

.com01_parts .ttl_wrap {
  margin: -3rem 0 0;
  color: #fff;
  text-align: center;
}
.com01_parts .eng {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.com01_parts .com01_ttl {
  margin: 3rem 0 0;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.4;
}
.com01_parts .com01_ttl span {
  display: inline-block;
  margin: 0 0 2.5rem;
  padding: 0 0 1rem;
  font-size: 3.2rem;
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

.com01_parts .lead {
  margin: 5rem 0 0;
  padding: 0 10rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
}

.com01_parts .note {
  margin: 3rem 0 0;
  padding: 0 10rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
}

.com01_parts_block {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 10rem);
  margin: 8rem auto 0 -5rem;
}

.com01_parts_block .com01_item {
  width: calc(50% - 3rem);
  box-sizing: border-box;
}

.com01_parts_block .main_cc {
  background: #264a8d;
  width: calc(100% - 13rem);
  margin: 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 30px 30px 30px 0;
  position: relative;
}

.com01_parts_block .com01_item_inner {
  background: #fff;
  margin: -8rem 0 0;
  padding: 12rem 5rem 5rem;
  box-sizing: border-box;
}

.com01_parts_block .c_name {
  padding: 0 0 0 9rem;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.com01_parts_block .c_name::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url('img/deco_arrow_01.png') left top no-repeat;
  background-size: 100% auto;
  width: 80px;
  height: 30px;
}
.com01_parts_block .img_box img {
    border: 1px solid #d5d5d5;
}
.com01_parts_block .upper {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 0;
}
.com01_parts_block .img_box {
  width: 260px;
  margin: 0 0 0 -5rem;
  box-sizing: border-box;
}
.com01_parts_block .img_box .caption {
  margin: 1rem 1rem 0 2rem;
}
.com01_parts_block .cc {
    width: calc(100% - 162px);
    padding: 2rem 0 0 3rem;
    box-sizing: border-box;
    color: #3e6fc6;
    font-size: 2rem;
    font-weight: bold;
    background: #eef3f6;
    margin: 2rem -5rem -2rem auto;
}

.com01_parts_block .offer {
  margin: 4rem 0 0;
}
.com01_parts_block .offer dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.com01_parts_block .offer dt {
  background: #41535d;
  width: 110px;
  margin: 0 0 2rem;
  padding: 3rem 2rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.com01_parts_block .offer dt:last-of-type {
  margin: 0 0 0;
}
.com01_parts_block .offer dt:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 10px solid #41535d;
}
.com01_parts_block .offer dd {
  width: calc(100% - 110px);
  margin: 0 0 2rem;
  padding: 0 0 0 3rem;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: bold;
}
.com01_parts_block .offer dd:last-of-type {
  margin: 0 0 0;
}
.com01_parts_block .offer ul li {
  background: #ebebeb;
  margin: 0 0 1rem;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  border-radius: 5px;
}
.com01_parts_block .offer ul li:last-child {
  margin: 0 0 0;
}

.com01_parts_block .different {
  margin: 4rem 0 0;
}
.com01_parts_block .d_ttl {
  background: #3e6fc6;
  width: calc(100% - 25rem);
  margin: auto;
  padding: 1.2rem 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
  position: relative;
}
.com01_parts_block .d_ttl:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 10px solid #3e6fc6;
}
.com01_parts_block .check_list {
  margin: 2rem 0 0;
}
.com01_parts_block .check_list li {
  margin: 0 0 1.5rem;
  padding: 0 0 1rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid #e3e3e3;
}
.com01_parts_block .check_list li:last-child {
  margin: 0 0 0;
}
.com01_parts_block .check_list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url('img/icon_check_01.png') left top no-repeat;
  background-size: 100% auto;
  width: 32px;
  height: 24px;
}

.com01_parts_block .btn-internal a {
  max-width: 100%;
  margin: 5rem auto 0;
  width: 90%;
}

.com01_parts_block .btn-web a {
  max-width: 100%;
  margin: 2rem auto 0;
  width: 90%;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .com01_parts {
    min-width: 100%;
    padding: 0 1.5rem 6rem;
  }
  .com01_parts::after {
    background: url('img/com01_parts_bg.png') center top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100% * 730 / 1400);
  }

  .com01_parts .com01_parts_inner {
    max-width: 100%;
  }
  .com01_parts .com01_parts_inner::before {
    top: 35px;
    left: 0;
    background: url('img/com01_parts_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 20%;
    height: 0;
    padding-top: 25%;
  }
  .com01_parts .com01_parts_inner::after {
    top: 20px;
    right: 0;
    background: url('img/com01_parts_02.png') left top no-repeat;
    background-size: 100% auto;
    width: 25%;
    padding-top: 23%;
  }

  .com01_parts .chara {
    width: 60%;
    top: -40px;
    left: -40px;
  }

  .com01_parts .ttl_wrap {
    margin: -1rem 0 0;
  }
  .com01_parts .eng {
    font-size: 1.4rem;
  }
  .com01_parts .com01_ttl {
    margin: 1.5rem 0 0;
    font-size: 2.2rem;
  }
  .com01_parts .com01_ttl span {
    margin: 0 0 1.5rem;
    padding: 0 0 0.5rem;
    font-size: 1.6rem;
    border-bottom: 1px solid #fff;
  }

  .com01_parts .lead {
    margin: 2rem 0 0;
    padding: 0 0;
    font-size: 1.4rem;
  }

  .com01_parts .note {
    margin: 2rem 0 0;
    padding: 0 0;
  }

  .com01_parts_block {
    display: block;
    width: 100%;
    margin: 5rem 0 0 0;
  }

  .com01_parts_block .com01_item {
    width: 100%;
    margin: 0 0 4rem;
  }
  .com01_parts_block .com01_item:last-child {
    margin: 0 0 0;
  }

  .com01_parts_block .main_cc {
    width: calc(100% - 3rem);
    padding: 2rem 1.5rem;
    font-size: 2rem;
    border-radius: 15px 15px 15px 0;
  }

  .com01_parts_block .com01_item_inner {
    margin: -5rem 0 0;
    padding: 8rem 1.5rem 4rem;
  }

  .com01_parts_block .c_name {
    padding: 0 0 0 5rem;
    font-size: 2rem;
  }
  .com01_parts_block .c_name::before {
    background: url('img/deco_arrow_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 40px;
    height: 15px;
  }

  .com01_parts_block .upper {
    display: block;
    margin: 3rem 0 0;
  }
  .com01_parts_block .img_box {
    width: 100%;
    margin: 0 0 0 0;
  }
  .com01_parts_block .img_box .caption {
    margin: 1rem 0 0 0;
  }
  .com01_parts_block .cc {
    width: 100%;
    margin: 2rem 0 0;
    padding: 1rem 0;
    font-size: 1.8rem;
    text-align: center;
  }

  .com01_parts_block .offer {
    margin: 3rem 0 0;
  }
  .com01_parts_block .offer dt {
    width: 30%;
    margin: 0 0 1rem;
    padding: 2rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
  }
  .com01_parts_block .offer dt:after {
    margin-top: -5px;
    border: 5px solid transparent;
    border-left: 8px solid #41535d;
  }
  .com01_parts_block .offer dd {
    width: 70%;
    margin: 0 0 1rem;
    padding: 0 0 0 2rem;
    font-size: 1rem;
  }
  .com01_parts_block .offer ul li {
    margin: 0 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 3px;
  }

  .com01_parts_block .different {
    margin: 3rem 0 0;
  }
  .com01_parts_block .d_ttl {
    width: calc(100% - 6rem);
    padding: 1rem 1rem;
    font-size: 1.5rem;
  }
  .com01_parts_block .d_ttl:after {
    margin-left: -5px;
    border: 5px solid transparent;
    border-top: 8px solid #3e6fc6;
  }
  .com01_parts_block .check_list {
    margin: 1.5rem 0 0;
  }
  .com01_parts_block .check_list li {
    margin: 0 0 1rem;
    padding: 0 0 0 2.5rem;
    font-size: 1.3rem;
  }
  .com01_parts_block .check_list li::before {
    background: url('img/icon_check_01.png') left top no-repeat;
    background-size: 100% auto;
    width: 19px;
    height: 14px;
  }

  .com01_parts_block .btn-internal a {
    max-width: 100%;
    margin: 3rem auto 0;
  }

  .com01_parts_block .btn-web a {
    max-width: 100%;
    margin: 1.5rem auto 0;
  }
}

/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr {
  position: fixed;
  bottom: 50px;
  right: 0;
  width: 255px;
  z-index: 1;
}
.fixed_bnr a {
  display: block;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .fixed_bnr {
    bottom: 0;
    right: inherit;
    left: 0;
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  iframe {
    width: 330px;
    height: 250px;
  }
}
