@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 Serif JP";
font-style: normal;
font-weight: 400;
src: url("fonts/NSerif-400.woff2") format("woff2"), url("fonts/NSerif-400.woff") format("woff");
font-display: swap;
}
@font-face {
font-family: "Noto Serif JP";
font-style: normal;
font-weight: 700;
src: url("fonts/NSerif-700.woff2") format("woff2"), url("fonts/NSerif-700.woff") format("woff");
font-display: swap;
}


/*--------------------------------------------------------------------------
reset
---------------------------------------------------------------------------*/
:root {
--archivo: "Archivo Black", sans-serif;
}

h1, h2, h3, h4, h5, h6, p, span, small, dl, dt, dd, ol, ul, li {
margin: 0;
font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--archivo);
}

ul {
margin: 0;
padding: 0;
vertical-align: baseline;
}

img {
vertical-align: top;
}

li {
list-style-type: none;
vertical-align: baseline;
}

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

* {
box-sizing: border-box;
}

small {
font-size: 60%;
}

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


/*--------------------------------------
　Base
---------------------------------------*/
html {
font-size: 62.5%;
overflow: auto;
}

body {
color: #000;
font-family: Helvetica, "Helvetica Neue", sans-serif;
font-size: 2rem;
font-weight: 400;
line-height: 1.6;
min-width: 110rem;
-webkit-font-smoothing: subpixel-antialiased;
overflow: hidden;
word-break: break-word;
}

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

a {
color: #000;
text-decoration: none;
}

a:hover {
text-decoration: none;
opacity: 0.7;
}

.fl {
float: left;
}

.fr {
float: right;
}

.strong {
font-weight: 700;
}

.f110 {
font-size: 110%;
}

.f120 {
font-size: 120%;
}

.f130 {
font-size: 130%;
}

.f150 {
font-size: 150%;
}

.f200 {
font-size: 200%;
}

.f300 {
font-size: 300%;
}

.pc {
display: block !important;
}

.sp {
display: none !important;
}

.sp_br {
display: none;
}

/*--------------------------------------
　Header
---------------------------------------*/
header {
background: #fff;
}

header .headTopArea {
margin: 0 auto;
padding: 0.5rem 2rem;
}

header .headTopArea .rightTxt {
font-family: Helvetica, "Helvetica Neue", sans-serif;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.4;
text-align: right;
}

header .headTopArea .rightTxt a {
color: inherit;
}

header .headTopArea .rightTxt::before {
display: inline-block;
width: 3.2rem;
margin: 0 0.5rem 0 0;
background: #000;
color: #fff;
font-size: 1.5rem;
text-align: center;
content: "PR";
}


/*--------------------------------------
　Global Nav
---------------------------------------*/
.bargBg.pc {
background: #fff;
position: fixed;
top: 5rem;
right: 2.5rem;
z-index: 900;
transform: translateX(0);
transition: transform 0.5s;
width: 6.4rem;
height: 6.4rem;
cursor: pointer;
}

.menu-trigger {
display: inline-block;
width: 6.4rem;
height: 6.4rem;
vertical-align: middle;
}

.bargBg.active {
transform: translateX(-300px);
}

.bargBg span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 1.2rem;
width: 4rem;
height: 0.2rem;
background-color: #000;
border-bottom: none;
}

.bargBg.active span {
background-color: #000;
}

.bargBg span:nth-of-type(1) {
top: 1.7rem;
}

.bargBg.active span:nth-of-type(1) {
transform: translateY(15px) rotate(-45deg);
}

.bargBg span:nth-of-type(2) {
top: 3.2rem;
}

.bargBg.active span:nth-of-type(2) {
opacity: 0;
}

.bargBg span:nth-of-type(3) {
top: 4.7rem;
}

.bargBg.active span:nth-of-type(3) {
transform: translateY(-15px) rotate(45deg);
}

#g-nav {
background-color: #fff;
margin: 0 auto;
z-index: 100;
border-bottom: 1px solid #bbb;
}

#g-nav ul {
display: flex;
justify-content: space-between;
width: 1100px;
height: auto;
margin: 0 auto;
}

#g-nav li {
width: 100%;
min-height: 80px;
text-align: center;
position: relative;
}

#g-nav li::before {
content: "";
background: linear-gradient(#bbb, #bbb);
background-size: 1px 1px;
width: 1px;
height: calc(100% - 40px);
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translate(0%, -50%);
transform: translate(0%, -50%);
}

#g-nav li:last-child::after {
content: "";
background: linear-gradient(#bbb, #bbb);
background-size: 1px 1px;
width: 1px;
height: calc(100% - 40px);
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translate(0%, -50%);
transform: translate(0%, -50%);
}

#g-nav li a {
display: table;
width: 100%;
height: 100%;
font-size: 1.3rem;
font-weight: 500;
line-height: 1.6;
padding: 20px 12px;
position: relative;
}

#g-nav li a span {
display: table-cell;
vertical-align: middle;
font-weight: inherit;
color: inherit;
border-bottom: none;
}

#g-nav li a:hover::after {
content: "";
width: 100%;
height: 3px;
background-color: #5b4c06;
position: absolute;
left: 0;
bottom: 2px;
opacity: 1;
}

#g-nav li a:hover {
opacity: 0.7;
}

#g-nav-top {
width: 300px;
height: 100%;
background-color: #eeeeee;
position: fixed;
top: 0;
right: 0;
z-index: 999;
transform: translate(300px);
transition: all 0.5s;
overflow-y: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
}

#g-nav-top::-webkit-scrollbar {
display: none;
}

#g-nav-top.open {
transform: translateZ(0);
cursor: pointer;
}

#g-nav-top li {
color: #333;
text-align: center;
}

.header-menu ul.accordion ul {
display: none;
}

#g-nav-top .accordion li {
border-bottom: 1px solid #ccc;
margin: 0;}

#g-nav-top .accordion li a {
display: block;
text-align: left;
padding: 15px;
font-size: 14px;
font-size: 1.4rem;
color: #141414;
position: relative;
}

#g-nav-top .accordion li .tglMenu {
text-align: left;
color: #141414;
padding: 15px 35px 15px 15px;
position: relative;
background: url("img/arrow_black_down.png") 96% center no-repeat;
background-size: 10px auto;
}

#g-nav-top .accordion li .tglMenu.open {
background: url("img/arrow_black_up.png") 96% center no-repeat;
background-size: 9.5px auto;
}

#g-nav-top .accordion li .tglMenu.open::before {
transform: rotateZ(-90deg);
}

#g-nav-top .accordion li a,
#g-nav-top .accordion li .tglMenu {
line-height: 2rem;
}

#g-nav-top .accordion li ul li a {
padding: 15px 30px 15px 15px;
color: #141414;
background: rgba(255, 255, 255, 0.8) url(img/arrow_black.png) 95.5% center no-repeat;
background-size: 6px auto;
}

#g-nav-top .accordion li ul li {
border-bottom: none;
border-top: 1px solid #ccc;
margin: 0;
}


/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzuWrap {
margin: 3rem 0 0 0;
}

#pankuzu {
width: 110rem;
margin: 0 auto;
font-size: 1.2rem;
}

#pankuzu a {
text-decoration: underline;
}

#pankuzu a:hover {
text-decoration: none;
}

#pankuzu span {
border-bottom: none;
color: inherit;
font-size: 1.2rem;
font-weight: inherit;
}


/*--------------------------------------
　Main Contents
---------------------------------------*/
#contents {
margin: 0 auto 0;
padding: 0;
width: 110rem;
}

#index {
width: 100%;
margin: 5rem auto 0;
padding: 0;
}

#category, #page {
float: left;
width: 83rem;
margin: 0;
padding: 6rem 0;
}


/*--------------------------------------
　Side
---------------------------------------*/
#side {
float: right;
width: 22rem;
padding: 6rem 0;
}

#side .sideTopBox {
background: #ffeb30;
margin: 0 0 4rem 0;
position: relative;
}

#side .sideTopBox::before {
content: "";
display: block;
width: calc(100% - 1px);
height: calc(100% - 1px);
border: solid 1px #141414;
position: absolute;
right: -4px;
bottom: 4px;
pointer-events: none;
}

#side .sideTopBox a {
display: block;
padding: 20px;
transition: 0.2s;
}

#side .sideTopBox .catch {
margin: 0 0 1.5rem 0;
font-size: 1.7rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
}

#side .sideTopBox .imgBox {
margin: 0 0 15px;
}

#side .sideTopBox .dtlBtn {
display: block;
margin: 2rem auto 0 auto;
padding: 0.8rem 2rem;
background: #25a39a url(img/arrow_white.png) no-repeat right 1rem center;
background-size: 7px auto;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #141414;
color: #fff;
font-size: 1.3rem;
font-weight: 700;
text-align: center;
}

#side .sideBox {
margin: 0 0 2rem 0;
border-top: 2px solid #333;
}

#side .sideBox .sttl {
font-size: 1.5rem;
font-weight: 700;
}

#side .sideBox .sttl a {
display: block;
padding: 1rem 0;
}

#side .sideBox ul {
padding: 0;
margin: 0;
}

#side .sideBox ul li {
background-image: none;
padding: 0;
position: relative;
}

#side .sideBox ul li::before {
content: "";
background: linear-gradient(to right, #bbbbbb, #bbbbbb 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%) 0% 0%;
background-size: 6px 1px;
width: 100%;
height: 1px;
position: absolute;
top: 0;
left: 0;
}

#side .sideBox ul li a {
display: block;
padding: 10px 25px 10px 12px;
font-size: 1.3rem;
background: url(img/arrow_black.png) no-repeat right 10px center;
background-size: 5px auto;
text-decoration: none;
}

#side .sideBox ul li a:hover {
opacity: 0.7;
text-decoration: none;
}

#side .sideBox .subList {
margin: 0;
}

#side .sideBox .subList li {
margin: 0;
}

#side .sideBox .subList li a {
display: block;
padding: 10px 28px 10px 15px;
}

#side .sideBox .subList li a::before {
content: "└";
margin: 0 5px 0 0;
}


/*--------------------------------------
Footer
---------------------------------------*/
footer {
margin: 0;
padding: 0;
background-color: #e6e6e6;
}

footer .areaInner {
width: 100%;
padding: 5rem 0;
}

footer .areaInner .inner {
position: relative;
width: 1100px;
margin: 0 auto;
}

footer .areaInner .logo {
width: 25.5rem;
margin: 0 auto 4rem;
}

footer .areaInner .logo a {
display: block;
font-size: 2rem;
font-weight: 400;
line-height: 1.4;
text-align: center;
color: #141414;
text-decoration: none;
}

footer .areaInner .logo a:hover {
opacity: 0.7;
}

footer .areaInner .logo a span {
font-size: 3.8rem;
}

footer .areaInner .footBox {
margin: 0 0 3rem 0;
}

footer .areaInner .footBox .sttl {
border-bottom: 1px solid #141414;
padding: 0 0 1rem 0;
margin: 0 0 1.4rem 0;
}

footer .areaInner .footBox .sttl a {
display: block;
font-size: 1.6rem;
font-weight: 700;
color: #141414;
background: url("img/arrow_blue.png") left center no-repeat;
background-size: 6px auto;
border: none;
padding: 0.2rem 0 0 2rem;
margin: 0;
}

footer .areaInner .footBox .sttl a:hover {
text-decoration: none;
opacity: 0.7;
}

footer .footBox ul {
padding: 0 2rem;
}

footer .areaInner .footBox .accChild {
padding: 0;
display: flex;
width: 100%;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
}

footer .areaInner .footBox .accChild .sp {
display: none;
}

footer .areaInner .footBox .accChild li.subCat {
width: 25%;
margin: 0.5rem 0;
}

footer .areaInner .footBox .accChild li.subCat a {
display: inline-block;
padding: 0 2rem 0 1rem;
font-size: 1.2rem;
background: url("img/arrow_blue.png") left 0.5rem no-repeat;
background-size: 5px auto;
}

footer .areaInner .footBox .accChild li.subCat ul.subList li a {
display: inline-block;
padding: 0 2rem 0 1rem;
font-size: 1.2rem;
background: url(img/footer_bg_01.png) left 0.5rem no-repeat;
background-size: 7px auto;
}

footer .areaInner .noticeArea {
box-sizing: border-box;
width: 100%;
background: #7d7d7d;
border-radius: 0;
padding: 2.5rem 3rem;
margin: 5rem auto 0;
color: #fff;
}

footer .areaInner .noticeArea p {
font-size: 1.2rem;
margin: 0;
}

footer .areaInner p.ucp {
font-size: 1.2rem;
line-height: 1.4;
text-align: center;
margin: 1.5rem auto 0;
}

footer .botArea {
background-color: #7d7d7d;
}

footer .botArea .inner {
width: 1100px;
padding: 1.2rem 0 1.5rem;
margin: 0 auto;
}

footer .botArea .inner.cf {
content: none;
}

footer p.sitemap a {
font-size: 1.2rem;
line-height: 1.3;
text-align: right;
float: right;
padding: 0.2rem 0 0.4rem 0;
text-decoration: underline;
color: #fff;
}

footer p.sitemap a:hover {
text-decoration: none;
}

footer p.copy {
font-size: 1.2rem;
line-height: 1.3;
text-align: left;
color: #fff;
float: left;
padding: 0.2rem 0 0.4rem 0;
}

footer p.copy a {
color: #fff;
}

footer a {
color: #141414;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}


/*--------------------------------------
　PageTop
---------------------------------------*/
#page-top {
position: fixed;
bottom: 12rem;
right: 2rem;
z-index: 100;
width: 6rem;
}

#page-top img:hover {
opacity: 0.7;
}


/* ================== */
/*  メインコンテンツ　*/
/* ================== */

.main p {
margin: 1em auto;
}

.main p:not([class]) > span:not([class]),
.main li:not([class]) > span:not([class]),
.main td:not([class]) > span:not([class]) {
background: linear-gradient(transparent 70%, #ffdd00 70%);
font-weight: 700;
}

.main p:not([class]) > a:not([class]),
.main li:not([class]) > a:not([class]),
.main td:not([class]) > a:not([class]) {
text-decoration: underline;
}
.main p:not([class]) > a:not([class]):hover,
.main li:not([class]) > a:not([class]):hover,
.main td:not([class]) > a:not([class]):hover {
text-decoration: none;
}

.caption {
margin: 0.8rem 0 0 0;
color: #999;
font-size: 1rem;
line-height: 1.4;
word-break: break-all;
}
.caption a {
color: #999;
text-decoration: underline;
}
.caption a:hover {
text-decoration: none;
}

.caption.scroll {
    margin: 8px 2rem 0;
    padding: 0 0 0.5rem;
    color: #999;
    word-break: break-all;
    font-size: 1.0rem;
    line-height: 1.5;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.caption.scroll::-webkit-scrollbar {
  height: 3px;
}
.caption.scroll::-webkit-scrollbar-track {
  background: #efefef;
  margin: 0 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.caption.scroll::-webkit-scrollbar-thumb {
  background: #cacaca;
  border-radius: 0;
  box-shadow: none;
}


/*--------------------------------------
heading
---------------------------------------*/
.main-index h2:not([class]),
.main-index h3:not([class]),
.main-index h4:not([class]),
.main-index h5:not([class]),
.main-index h6:not([class]),
.main-low h1,
.main-low h2,
.main-low h3,
.main-low h4,
.main-low h5,
.main-low h6 {
position: relative;
font-family: var(--archivo);
font-weight: 700;
line-height: 1.4;
}

.main-index h2:not([class]),
.main-low h1 {
margin: 2.5rem 0 5rem 0;
padding: 2.8rem 4rem 2.8rem 6rem;
font-size: 4rem;
text-align: center;
}
.main-index h2:not([class])::before,
.main-low h1::before {
position: absolute;
left: 0;
top: -2.5rem;
width: calc(100% - 4rem);
height: 100%;
background: #e43535;
content: "";
z-index: -1;
}
.main-index h2:not([class])::after,
.main-low h1::after {
position: absolute;
right: 0;
top: 0;
width: calc(100% - 4rem);
height: 100%;
background: #fff;
box-shadow: 0 0 16px 0 rgba(0,0,0,0.1);
content: "";
z-index: -1;
}
.main-index h2:not([class]) span,
.main-low h1 span {
font-size: 2.6rem;
}

.main-index h3:not([class]),
.main-low h2 {
margin: 6rem 0 3rem 0;
padding: 2.4rem 2rem 2.4rem 3.6rem;
background: #003295 url(img/title_bg_01.png) no-repeat left top;
background-size: 25px auto;
color: #fff;
font-size: 3.2rem;
}

.main-index h4:not([class]),
.main-low h3 {
position: relative;
margin: 4rem 0 3rem 0;
padding: 0 2rem 0 1.5rem;
border-left: 4px solid #e63636;
font-size: 2.8rem;
}

.main-index h5:not([class]),
.main-index h6:not([class]),
.main-low h4,
.main-low h5,
.main-low h6  {
margin: 3rem 0 2rem 0;
padding: 0 2rem 0.8rem 1.5rem;
border-bottom: 1px solid #0f61ee;
font-size: 2.4rem;
}

.main-index h2:not([class]) a,
.main-low h1 a {
display: inline-block;
padding: 0 5rem;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}
.main-index h3:not([class]) a,
.main-low h2 a {
display: block;
padding: 0 2rem 0 0;
background: url(img/arrow_white.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}
.main-index h4:not([class]) a,
.main-index h5:not([class]) a,
.main-index h6:not([class]) a,
.main-low h3 a,
.main-low h4 a,
.main-low h5 a,
.main-low h6 a {
display: block;
padding: 0 2rem 0 0;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}


/*--------------------------------------
title
---------------------------------------*/
.main .check,
.main .point {
display: flex;
align-items: center;
position: relative;
min-height: 11rem;
margin: 3rem 0;
padding: 3rem 2rem 2rem 10rem;
border-bottom: 1px solid #141414;
font-family: var(--archivo);
font-size: 2.4rem;
font-weight: 700;
line-height: 1.4;
}
.main .check::before,
.main .point::before {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 8rem;
height: 9rem;
background: url(img/title_bg_02.png) no-repeat left top;
background-size: contain;
box-sizing: border-box;
content: "";
}
.main .point::before {
background: url(img/title_bg_03.png) no-repeat left top;
background-size: contain;
}
.main .check a,
.main .point a {
display: block;
width: 100%;
padding: 0 2rem 0 0;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}


/*--------------------------------------
lists
---------------------------------------*/
.main ul:not([class]) {
margin: 4rem 0;
padding: 0;
}
.main ul:not([class]) li {
position: relative;
margin: 0 0 0.6rem 0;
padding: 0 0 0 2.4rem;
font-size: 1.8rem;
}
.main ul:not([class]) li:last-child {
margin: 0;
}
.main ul:not([class]) li::before {
position: absolute;
left: 0;
top: 1rem;
width: 1.2rem;
height: 1.2rem;
background: #e63636;
border-radius: 50%;
content: "";
}

.main ol {
margin: 4rem 0;
padding: 0;
counter-reset: number 0;
}
.main ol li {
position: relative;
margin: 0 0 0.6rem 0;
padding: 0 0 0 3.2rem;
counter-increment: number;
}
.main ol li::before {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: 0.6rem;
width: 2.2rem;
height: 2.2rem;
background: #ffe357;
font-size: 1.4rem;
line-height: 1.1;
text-align: center;
}
.main ol li:nth-child(-n + 9)::before {
content: counter(number);
}
.main ol li:nth-child(n + 10)::before {
content: counter(number);
}


/*--------------------------------------
table
---------------------------------------*/
table th,
table td {
word-break: break-all;
}
table {
width: 100%;
margin: 4rem auto;
border-collapse: collapse;
font-size: 1.8rem;
}
table th {
padding: 1rem 1.5rem;
background: #eee;
border: 1px solid #999;
font-weight: 700;
line-height: 1.4;
text-align: center;
}
table td {
padding: 1rem 1.5rem;
background: #fff;
border: 1px solid #999;
line-height: 1.4;
}


/*--------------------------------------
float-wrap
---------------------------------------*/
.float-wrap {
margin: 6rem auto;
}
.float-wrap .fl {
width: 35rem;
margin: 0 3rem 1rem 0;
text-align: center;
}
.float-wrap .fr {
width: 35rem;
margin: 0 0 1rem 3rem;
text-align: center;
}
.float-wrap .ct {
width: 50rem;
margin: 0 auto 2rem auto;
text-align: center;
}
.float-wrap .catch {
margin: 0 0 1.5rem 0;
color: #0f61ee;
font-family: var(--archivo);
font-size: 2.4rem;
font-weight: 700;
line-height: 1.4;
text-align: left;
}
.float-wrap .catch a {
display: inline;
padding: 0 4rem 0 0;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}
.float-wrap.ct .catch {
text-align: center;
}
.float-wrap p:not([class]) {
margin: 0 0 1em 0;
}


/*--------------------------------------
box-wrap
---------------------------------------*/
.box-wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}
.box-wrap .box {
position: relative;
width: calc((100% - 8rem) / 2);
margin: 0 0 3rem 0;
background: #fff;
}
.box-wrap .box:nth-child(even)::before {
position: absolute;
left: -4rem;
top: 0.5rem;
width: 0.1rem;
height: calc(100% - 1rem);
border-left: 1px solid #bbb;
content: "";
}
.box-wrap .box-head {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 3rem 0;
padding: 0 1rem;
}
.box-wrap .box-head .fig {
width: 12rem;
}
.box-wrap .box-head .ttl {align-items: center;width: calc(100%);color: #1d6bf1;font-family: var(--archivo);font-size: 2.5rem;font-weight: 700;line-height: 1.4;}
.box-wrap .box-head .ttl a {
display: block;
width: 100%;
padding: 0 2rem 0 0;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}
.box-wrap .box-body p:not([class]) {
margin: 0;
}


/*--------------------------------------
frame-wrap
---------------------------------------*/
.frame-wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.main-low .frame-wrap {
margin: 8rem auto 5rem auto;
}
.frame-wrap::after {
display: block;
width: calc((100% - 7.2rem) / 3);
content: "";
}
.frame-wrap .frame {
position: relative;
width: calc((100% - 7.2rem) / 3);
margin: 0 0 3rem 0;
padding: 3rem 2.4rem;
background: #f8f8f8;
}
.frame-wrap .frame-head {
display: flex;
align-items: center;
margin: 0 0 2rem 0;
padding: 0 0 1.5rem 0;
border-bottom: 1px solid #201f1e;
}
.frame-wrap .frame-head .ttl {
width: 100%;
color: #0f61ee;
font-family: var(--archivo);
font-size: 2.4rem;
font-weight: 700;
line-height: 1.4;
}
.frame-wrap .frame-head .ttl a {
display: block;
padding: 0 2rem 0 0;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}
.frame-wrap .frame-head .ttl a:hover {
text-decoration: none;
opacity: 0.7;
}
.frame-wrap .frame-body p:not([class]) {
margin: 0;
font-size: 1.8rem;
}
.frame-wrap .frame-body ul:not([class]) {
margin: 2rem 0 0 0;
}
.frame-wrap .frame-body table {
margin: 2rem 0 0 0;
font-size: 1.8rem;
}
.frame-wrap .frame-body table th {
width: 8rem;
padding: 0.8rem 1rem;
}
.frame-wrap .frame-body table td {
padding: 0.8rem;
}


/*--------------------------------------
btns
---------------------------------------*/
.btn-tel {
display: none;
}

.btn-internal,
p.btn-internal {
max-width: 45rem;
margin: 4rem auto;
padding: 0;
text-align: center;
}
.btn-internal a {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
margin: 0 auto;
padding: 2rem 3rem;
background: #0f61ee url(img/arrow_white.png) no-repeat right 2rem center;
background-size: 8px auto;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #1a1f00;
box-sizing: border-box;
color: #fff;
font-size: 1.8rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
transition: 0.2s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn-internal.down a {
padding: 2rem 4rem;
background: #0f61ee url(img/arrow_white_down.png) no-repeat right 2rem center;
background-size: auto 8px;
}
.btn-internal a:hover {
opacity: 0.7;
}

.btn-web,
p.btn-web {
max-width: 45rem;
margin: 4rem auto;
padding: 0;
text-align: center;
}
.btn-web a {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
margin: 0 auto;
padding: 2rem 3rem;
background: #e63636 url(img/arrow_white.png) no-repeat right 2rem center;
background-size: 8px auto;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #1a1f00;
box-sizing: border-box;
color: #fff;
font-size: 1.8rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
transition: 0.2s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn-web a:hover {
opacity: 0.7;
}

.btn-link {
margin: 4rem 0;
padding: 0;
text-align: right;
}
.btn-link a {
display: inline-block;
position: relative;
min-height: 1.6rem;
padding: 0.1rem 0 0 2.4rem;
background: url(img/arrow_link.png) no-repeat left center;
background-size: 16px auto;
color: #333;
font-size: 1.8rem;
line-height: 1.4;
text-decoration: underline;
}
.btn-link a:hover {
text-decoration: none;
opacity: 0.7;
}


/*--------------------------------------
accordion
---------------------------------------*/
.accordion-item {
display: none;
}
.accordion-btn {
display: block;
position: relative;
width: 45rem;
margin: 0 auto 4rem auto;
padding: 2.5rem 4rem 2rem 4rem;
background: #807e7e;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #1a1f00;
box-sizing: border-box;
color: #fff;
font-size: 1.6rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
cursor: pointer;
transition: 0.2s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.accordion-btn::before {
position: absolute;
right: 2rem;
top: 50%;
transform: translateY(-50%);
width: 2rem;
height: 2rem;
background: url(img/acc_bg_01.png) no-repeat left top;
background-size: contain;
content: "";
}
.accordion-btn::after {
display: block;
padding: 0 4rem;
text-align: center;
content: "See more";
}
.accordion-btn.is-open::before {
background: url(img/acc_bg_02.png) no-repeat left top;
background-size: contain;
}
.accordion-btn.is-open::after {
display: block;
padding: 0 5rem;
text-align: center;
content: "Close";
}
.accordion-btn:hover {
opacity: 0.7;
}

.accordion-btn.btn-1::after {
display: block;
padding: 0 4rem;
text-align: center;
content: "Show Index";
}
.accordion-btn.btn-1.is-open::after {
display: block;
padding: 0 5rem;
text-align: center;
content: "Hide Index";
}

/*--------------------------------------
toc
---------------------------------------*/
.main-index .block-toc {
margin: 0 0 8rem 0;
}
.toc_parts {
width: 80rem;
margin: 0 auto;
padding: 4rem 4rem 2rem 4rem;
background: #f0f0f0;
}
.main-low .toc_parts {
width: 100%;
margin: 0 auto 4rem auto;
}
.toc_parts .ttl {
display: flex;
align-items: center;
padding: 0 4rem 0 1rem;
border-left: 4px solid #e63636;
font-family: var(--archivo);
font-size: 2rem;
font-weight: 700;
line-height: 1.4;
}
#toc {
margin: 1.5rem 0 0 0;
border-top: 1px solid #484747;
}
#toc .chapter {
margin: 0 0 2rem 0;
padding: 0 1rem;
counter-reset: count;
}
#toc .chapter .chapter-h {
position: relative;
margin: 2rem 0 0 0;
padding: 0 0 0 4rem;
font-size: 1.8rem;
font-weight: 700;
counter-increment: count;
}
#toc .chapter .chapter-h:last-child {
margin-bottom: 0;
}
#toc ul.chapter .chapter-h::before {
position: absolute;
left: 0;
top: 1.4rem;
transform: translateY(-50%);
width: auto;
height: auto;
background: none;
border-radius: 0;
color: #0f61ee;
font-size: 2.4rem;
font-weight: 700;
content: counter(count, decimal-leading-zero);
}
#toc .chapter .chapter-h a {
text-decoration: none;
}
#toc .chapter .chapter-h a:hover {
opacity: 0.7;
}
#toc li.chapter-h.chapter-h-three {
margin: 0.5rem 0 0.5rem 4rem;
padding: 0 0 0 1.5rem;
font-size: 1.5rem;
counter-increment: none;
}
#toc li.chapter-h.chapter-h-three::before {
position: absolute;
left: 0;
top: 0.7rem;
transform: rotate(180deg);
width: 0.8rem;
height: 0.8rem;
border-top: 1px solid #333;
border-right: 1px solid #333;
content: "";
}
#toc li.chapter-h.chapter-h-three a {
font-weight: normal;
}
#toc li.chapter-h.chapter-h-three span {
font-weight: 400;
}
#toc .chapter br {
display: none;
}
.main-low .toc_parts {
width: 100%;
margin: 0 auto 4rem auto;
}
.main-low .block-toc .accordion-btn {
width: 37rem;
}


/*--------------------------------------
visArea
---------------------------------------*/
#visArea.lower {
display: flex;
align-items: center;
justify-content: center;
height: 12rem;
background: url(img/mv_bg_02.jpg) no-repeat center top;
background-size: cover;
}
#visArea.lower .siteName img {
width: 25.5rem;
}


/*--------------------------------------
addParts
---------------------------------------*/
.addInner {
width: 110rem;
margin: 0 auto;
}

.addParts-title {
position: relative;
margin: 0 0 5rem 0;
font-family: var(--archivo);
font-size: 4rem;
font-weight: 700;
line-height: 1.2;
text-align: center;
}
.addParts-title span {
font-size: 5rem;
}
.addParts-title .txt-1 {
color: #0f61ee;
}
.addParts-title .txt-2 {
color: #e63636;
}
.addParts-title a {
display: inline-block;
padding: 0 3rem;
background: url(img/arrow_black.png) no-repeat right center;
background-size: 8px auto;
color: inherit;
text-decoration: none;
}

p.lead {
width: calc(100% - 20rem);
margin: 0 auto 5rem auto;
}
p.lead span {
background: linear-gradient(transparent 60%, #ffe600 60%);
color: #000a63;
font-weight: 700;
}


/*--------------------------------------
addParts01
---------------------------------------*/
.addParts01 {
padding: 8rem 0 10rem 0;
background: url(img/add01_bg_01.jpg) no-repeat center bottom;
background-size: 100% auto;
}
.addParts01 p.note {
margin: 1rem 0 0 0;
color: #9f9f9f;
font-size: 1.4rem;
}
.addParts01 .block {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.addParts01 .block::after {
display: block;
width: calc((100% - 4.8rem) / 3);
content: "";
}
.addParts01 .block .box {
width: calc((100% - 4.8rem) / 3);
background: #fff;
}
.addParts01 .block .box-head {
display: flex;
align-items: center;
padding:1rem;
background: #003295;
}
.addParts01 .block .box:nth-child(2) .box-head {
background: #003295;
}
.addParts01 .block .box:nth-child(3) .box-head {
background: #003295;
}
.addParts01 .block .box-head .catch {
color: #fff;
font-family: var(--archivo);
font-size: 1.8rem;
font-weight: 700;
line-height: 1.4;
}
.addParts01 .block .box-head .catch span {
display: inline-block;
margin: 0 0 0.5rem 0;
padding: 0.5rem;
background: #fff;
color: #0f61ee;
font-size: 2rem;
}
.addParts01 .block .box-head .catch span span {
display: inline;
color: #e63636;
font-size: 3rem;
padding: 0rem;
}
.addParts01 .block .box-body {
padding: 2rem 2rem 4rem 2rem;
}
.addParts01 .block .box-body p:not([class]) {
margin: 0;
}
.addParts01 .block .box-body .catch {
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 1rem 0;
color: #0f61ee;
font-family: var(--archivo);
font-size: 2rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
}
.addParts01 .block .box-body .name {
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 1rem 0;
color: #000;
font-family: var(--archivo);
font-size: 2.6rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
}
.addParts01 .block .box-body .company {
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 2rem 0;
color: #9f9f9f;
font-family: var(--archivo);
font-size: 2rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
}
.addParts01 .block .box-body .fig {
margin: 0 -2rem;
text-align: center;
}
.addParts01 .block .box-body .fig + .caption {
text-align: center;
}
.addParts01 .block .box-body p:not([class]) {
margin: 0;
}
.addParts01 .block .box-body ul:not([class]) {
margin: 1.2rem 0 0 0;
padding: 1.5rem;
background: #f7f7f7;
font-size: 1.8rem;
}
.addParts01 .block .box-body ul:not([class]) li {
position: relative;
margin: 0 0 0.6rem 0;
padding: 0 0 0 2.4rem;
}
.addParts01 .block .box-body ul:not([class]) li:last-child {
margin: 0;
}
.addParts01 .block .box-body ul:not([class]) li::before {
position: absolute;
left: 0;
top: 0.8rem;
width: 1.2rem;
height: 1.2rem;
background: #e63636;
border-radius: 50%;
content: "";
}
.addParts01 .block .box-body ul:not([class]) li:not([class]) > span:not([class]) {
background: linear-gradient(transparent 70%, #ffdd00 70%);
font-weight: 700;
}
.addParts01 .block .box-body .btn-web {
max-width: 90%;
margin: 3rem auto 0 auto;
}
.addParts01 .block .box-body .btn-internal {
max-width: 90%;
margin: 2rem auto 0 auto;
}

.addParts02 .inner .float-wrap.cf p:not([class]) {
overflow:hidden;
}


/*--------------------------------------
banner
---------------------------------------*/
.block-banner {
display: none;
position: fixed;
right: 0;
bottom: 0rem;
width: 29rem;
height: 10rem;
box-sizing: border-box;
z-index: 310;
}
.block-banner a {
display: block;
position: relative;
width: 29rem;
height: 10rem;
padding: 4rem 1rem 0 1rem;
background: url(img/arrow_white.png) no-repeat right 1rem top calc(50% + 1.5rem), url(img/banner_bg_01.jpg) no-repeat left top;
background-size: 8px auto, cover;
color: #fff;
font-family: var(--archivo);
font-size: 1.9rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
}
.block-banner a::before {
position: absolute;
left: 0;
top: 0;
width: 20rem;
height: 3rem;
background: #fff;
color: #e63636;
font-size: 1.7rem;
line-height: 2.8rem;
content: "By Building Type";
}


/*--------------------------------------
slider
---------------------------------------*/
.sliderArea {
position: relative;
}
.slideTxtArea {
position: relative;
width: calc(100% - 4rem);
border-left: 1px solid #333;
padding: 4.5rem 0 1.5rem 3.5rem;
margin: -3rem auto 0 auto;
z-index: 2;
}
.slideTxtArea::before {
position: absolute;
left: 0;
bottom: 0;
width: 3rem;
height: 0.1rem;
background: #333;
content: "";
}
.slideTxtArea {
opacity: 0;
transition: all 1.0s 0s ease;
transition-delay: 300ms;
}
.slideTxtInner {
margin-left: -1.5rem;
opacity: 0;
transition: all 0.5s 0s ease;
transition-delay: 600ms;
}
.slick-slide.slick-current .slideTxtArea,
.slick-slide.is-active-next .slideTxtArea {
opacity: 1;
}
.slick-slide.slick-current .slideTxtInner,
.slick-slide.is-active-next .slideTxtInner {
margin-left: 0;
opacity: 1;
}
.slideTxtArea p:not([class]),
.slideTxtArea .caption {
margin: 0;
}
.slideTit {
margin: 1.5rem 0 0.5rem 0;
font-family: var(--archivo);
font-size: 2.4rem;
font-weight: 700;
line-height: 1.4;
}


/*--------------------------------------
table-accordion
---------------------------------------*/
.table-accordion {
position: relative;
margin: 4rem 0;
padding: 0 0 0.1rem 0;
font-size: 1.8rem;
}
.table-accordion table {
table-layout: fixed;
margin: 0;
}
.table-accordion table th[scope="col"] {
color: #fff;
}
.table-accordion table th[scope="col"]:nth-child(1) {
background: #7d7d7d;
}
.table-accordion table th[scope="col"]:nth-child(2) {
background: #ed7171;
}
.table-accordion table th[scope="col"]:nth-child(3) {
background: #5690f3;
}
.table-accordion .inner {
position: relative;
height: 40rem;
margin: 0 auto;
overflow-y: hidden;
}
.table-accordion .inner::after {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 20rem;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 30%);
content: "";
z-index: 1;
}
.table-accordion .inner.is-visible {
height: auto;
margin: 0 auto 12rem auto;
overflow-y: visible;
}
.table-accordion .inner.is-visible::after {
display: none;
}
.table-accordion .inner .more {
display: block;
position: absolute;
left: 50%;
bottom: 1rem;
transform: translateX(-50%);
width: 45rem;
margin: 0 auto;
padding: 2.5rem 4rem 2rem 4rem;
background: #807e7e url(img/acc_bg_01.png) no-repeat right 2rem center;
background-size: 20px auto;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #1a1f00;
box-sizing: border-box;
color: #fff;
font-size: 1.8rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
cursor: pointer;
transition: 0.2s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
z-index: 2;
}
.table-accordion .inner .more::before {
content: "See more";
}
.table-accordion .inner .more:hover {
text-decoration: none;
opacity: 0.7;
}
.table-accordion .inner .more.is-open {
bottom: -9rem;
background: #807e7e url(img/acc_bg_02.png) no-repeat right 2rem center;
background-size: 20px auto;
}
.table-accordion .inner .more.is-open::before {
content: "Close";
}




















@media screen and (max-width: 480px) {

html,
body {
position: relative;
width: 100%;
scroll-padding-top: 6rem;
}

.pc {
display: none !important;
}

.sp {
display: block !important;
}

.sp_br {
display: block;
}

.pc_br {
display: none;
}

body {
width: 100%;
min-width: initial;
min-width: auto;
font-size: 1.6rem;
line-height: 1.8;
}

a:hover {
opacity: 1;
}


/*--------------------------------------
　Header
---------------------------------------*/
header .headTopArea {
width: 100%;
padding: 0.5rem;
}

header .headTopArea .rightTxt {
text-align: center;
}


/*--------------------------------------
　spMenuBox
---------------------------------------*/
#navWrap {
box-sizing: border-box;
width: 100%;
height: auto;
background-color: #f5f1e9;
margin: 0 auto;
}

#navWrap .navTop {
width: 100%;
background-color: #fff;
border-bottom: 1px solid #b5b5b5;
position: fixed;
top: 0;
z-index: 9999;
display: none;
}

#navWrap .navTopInner {
display: table;
width: 100%;
padding: 0.5rem 0;
position: relative;
}

#navWrap .siteName {
display: table-cell;
vertical-align: middle;
width: 40%;
font-size: 1.1rem;
font-weight: 700;
line-height: 1.4;
padding: 0.8rem 1.2rem;
text-align: center;
}

#navWrap .siteName span {
font-size: 1.4rem;
}

#navWrap .recommendBtn {
display: table-cell;
width: calc(60% - 6.2rem);
vertical-align: middle;
font-size: 1.2rem;
line-height: 1.4;
text-align: center;
padding: 0 0.8rem;
position: relative;
font-weight: 700;
color: #fff;
font-family: var(--archivo);
background: #003295;
}

#navWrap .recommendBtn::after {
content: "";
position: absolute;
right: 3px;
bottom: 3px;
border-top: 4px solid transparent;
border-right: 4px solid #fff;
border-bottom: 4px solid #fff;
border-left: 4px solid transparent;
z-index: 1;
}

#menuBtn {
display: table-cell;
vertical-align: middle;
box-sizing: content-box;
width: 42px;
height: 50px;
padding: 0 1rem;
cursor: pointer;
z-index: 9999;
}

#menuBtn .menu {
width: 21px;
height: 16px;
position: absolute;
right: 2rem;
top: calc(50% - 8px);
outline: none;
border: none;
background: url("img/sp_ico_menu.png") center no-repeat;
background-size: 100%;
}

body.open #menuBtn .menu {
width: 21px;
height: 16px;
background: url("img/sp_ico_close.png") center no-repeat;
background-size: 100%;
}

#navSp {
position: fixed;
top: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
background-color: #e6e6e6;
z-index: 999;
display: none;
}

#navSp > div {
height: 100%;
overflow-y: scroll;
}

#navSp a {
text-decoration: none;
}

#navSp .navBox:first-child {
border-top: 1px solid #ccc;
overflow: hidden;
}

#navSp .navBox .sttl a, #navSp .sitemap a {
display: block;
box-sizing: border-box;
font-size: 1.4rem;
font-weight: 400;
line-height: 1.4;
color: #141414;
background: url("img/arrow_black.png") 96% center no-repeat;
background-size: 6px auto;
padding: 1.5rem 9% 1.5rem 4%;
}

#navSp .navBox .tglMenu a {
background: url("img/arrow_black_down.png") 96% center no-repeat;
background-size: 10px auto;
}

#navSp .navBox .sttl.collapsible a {
background: url("img/arrow_black_down.png") 96% center no-repeat;
background-size: 10px auto;
}

#navSp .navBox .sttl a br {
display: none;
}

#navSp .navBox .sttl.open > a {
background: url("img/arrow_black_up.png") 96% center no-repeat;
background-size: 10px auto;
}

#navSp .navBox .sttl, #navSp .sitemap {
border-bottom: 1px solid #b5b5b5;
padding: 0;
margin: 0;
}

#navSp .sitemap {
margin: 0 0 100px;
}

#navSp .navBox .accChild {
display: none;
font-size: 1.3rem;
padding: 0;
box-sizing: border-box;
background-color: rgba(255, 255, 255, 0.8);
}

#navSp .navBox .accChild li {
float: none;
}

#navSp .navBox .accChild li a {
display: block;
box-sizing: border-box;
color: #141414;
background: url("img/arrow_black.png") 95.5% center no-repeat;
background-size: 5px auto;
border-bottom: 1px solid #b5b5b5;
padding: 1.2rem 9% 1.2rem 7%;
}

body.open {
height: inherit !important;
}


/*--------------------------------------
side
---------------------------------------*/
#side {
display: none;
}

/*--------------------------------------
pankuzu
---------------------------------------*/
#pankuzuWrap {
box-sizing: border-box;
width: 100%;
background-color: #fff;
margin: 0.5rem auto 4rem;
overflow: auto;
white-space: nowrap;
position: relative;
}

#pankuzu {
box-sizing: border-box;
width: 100%;
font-size: 1.1rem;
line-height: 1.2;
color: #141414;
padding: 0.5rem 0.5rem 1rem 0.5rem;
margin: 0 auto;
white-space: nowrap;
}

#pankuzu a {
color: #141414;
text-decoration: underline;
transition: none;
}

#pankuzu a:hover {
color: #141414;
text-decoration: underline;
}

#pankuzu span:last-child {
margin-right: 4%;
}

#pankuzu a span:last-child {
margin-right: 0;
}


/*--------------------------------------
Main Contents
---------------------------------------*/
#contents {
box-sizing: border-box;
width: 100%;
margin: 0 auto;
padding: 0;
}

#index {
width: 100%;
margin: 0;
padding: 0;
}

#category, #page {
float: none;
width: 100%;
margin: 0;
padding: 0 4%;
}


/*--------------------------------------
Footer
---------------------------------------*/
footer {
width: 100%;
margin-top: 0;
}

footer .areaInner {
position: relative;
width: 100%;
margin: 0 auto;
padding: 3rem 0 2.5rem;
}

footer .areaInner .inner {
width: 100%;
padding: 0;
}

footer .areaInner .logo {
width: 17rem;
}

footer .areaInner .logo + .footBox {
border-top: 1px solid #141414;
}

footer .areaInner .footBox {
margin: 0;
}

footer .areaInner .footBox .sttl {
border: none;
padding: 0;
margin: 0;
}

footer .areaInner .footBox .sttl a {
display: block;
box-sizing: border-box;
font-size: 1.4rem;
font-weight: 600;
color: #141414;
background: url("img/arrow_black_down.png") right 10px center no-repeat;
background-size: 10px auto;
padding: 1rem 4rem 1rem 4%;
transition: none;
}

footer .areaInner .footBox .sttl a:hover {
opacity: 1;
}

footer .areaInner .footBox .sttl.open a {
background: url("img/arrow_black_up.png") right 10px center no-repeat;
background-size: 10px auto;
}

footer .areaInner .footBox .sttl {
border-bottom: 1px solid #141414;
padding: 0;
margin: 0;
}

footer .footBox ul {
padding: 0;
}

footer .areaInner .footBox .accChild {
display: none;
font-size: 1.3rem;
padding: 0;
box-sizing: border-box;
}

footer .areaInner .footBox .accChild li {
display: block;
float: none;
}

footer .areaInner .footBox .accChild li a {
display: block;
box-sizing: border-box;
font-size: 1.3rem;
color: #141414;
background: #fff url("img/arrow_black.png") 96.5% center no-repeat;
background-size: 6px auto;
border-bottom: 1px solid #999;
padding: 1rem 9% 1rem 4%;
}

footer .areaInner .footBox .accChild li.subCat {
width: 100%;
margin: 0;
}

footer .areaInner .footBox .accChild li.subCat:nth-of-type(4n + 1) {
margin: 0 0 0 0;
}

footer .areaInner .footBox .accChild li.subCat a {
display: block;
background: #fff url("img/arrow_black.png") 96.5% center no-repeat;
background-size: 6px auto;
padding: 1rem 9% 1rem 4%;
color: #141414;
}

footer .areaInner .footBox .accChild li.subCat a::before {
content: none;
font-size: 1.2rem;
position: relative;
left: -2px;
margin-right: 0.2rem;
}

footer .areaInner .footBox .accChild .subList {
padding: 0;
margin: 0;
}

footer .areaInner .footBox .accChild .subList li {
padding: 0;
display: block;
float: none;
margin: 0;
}

footer .areaInner .footBox .accChild .subList li::before {
content: none;
color: #141414;
margin-right: 0;
}

footer .areaInner .footBox .accChild .subList li a {
font-size: 1.3rem;
padding: 1rem 9% 1rem 9%;
background: #fff url("img/arrow_black.png") 96.5% center no-repeat;
background-size: 6px auto;
}

footer .areaInner .footBox .accChild .subList li a::before {
content: "└";
display: block;
color: #141414;
position: absolute;
top: 12px;
left: 4%;
margin-right: 0.4rem;
}

footer .areaInner .noticeArea {
box-sizing: border-box;
width: 92%;
margin: 2.5rem auto 0rem;
padding: 1.5rem;
font-size: 1.2rem;
line-height: 1.8;
border-radius: 0;
}

footer .areaInner .noticeArea p {
font-size: 1.2rem;
}

footer .areaInner p.ucp {
font-size: 1.1rem;
line-height: 1.4;
text-align: center;
margin: 1.5rem auto 0;
}

footer .botArea .inner {
width: 92%;
padding: 1rem 0;
margin: 0 auto;
}

footer .botArea .inner .cf {
content: none;
}

footer p.sitemap {
font-size: 1.2rem;
line-height: 1.3;
text-align: right;
padding: 0.5rem 0;
}

footer p.copy {
width: 100%;
font-size: 1.2rem;
line-height: 1.3;
text-align: center;
padding: 0.5rem 0;
}

footer p.sitemap a {
text-decoration: underline;
}

footer p.copy a {
text-decoration: none;
}

footer a {
text-decoration: none;
}

footer a:hover {
text-decoration: none;
}


/*--------------------------------------
　PageTop
---------------------------------------*/
#page-top {
position: fixed;
bottom: 4%;
right: 4%;
width: 50px;
}

#page-top img {
width: 100%;
}


/* ================== */
/*  メインコンテンツ　*/
/* ================== */

/*--------------------------------------
heading
---------------------------------------*/
.main-index h2:not([class]),
.main-low h1 {
margin: 1.5rem 0 3rem 0;
padding: 2rem 2rem 2rem 4rem;
font-size: 3rem;
}
.main-index h2:not([class])::before,
.main-low h1::before {
top: -1.5rem;
width: calc(100% - 1.5rem);
}
.main-index h2:not([class])::after,
.main-low h1::after {
width: calc(100% - 1.5rem);
}
.main-index h2:not([class]) span,
.main-low h1 span {
font-size: 2.1rem;
}

.main-index h3:not([class]),
.main-low h2 {
margin: 5rem 0 2.5rem 0;
padding: 1.5rem;
background-size: 20px auto;
font-size: 2.8rem;
}

.main-index h4:not([class]),
.main-low h3  {
margin: 4rem 0 2rem 0;
padding: 0 1.5rem 0 1rem;
font-size: 2.6rem;
}

.main-index h5:not([class]),
.main-index h6:not([class]),
.main-low h4,
.main-low h5,
.main-low h6  {
margin: 3rem 0 2rem 0;
padding: 0 1.5rem 0.8rem 1rem;
font-size: 2.4rem;
}

.main-index h2:not([class]) a,
.main-low h1 a {
display: block;
padding: 0 2rem 0 0;
}


/*--------------------------------------
title
---------------------------------------*/
.main .check,
.main .point {
min-height: 7rem;
padding: 1.5rem 1.5rem 1.5rem 8rem;
font-size: 2rem;
}
.main .check::before,
.main .point::before {
width: 7rem;
height: 7rem;
}


/*--------------------------------------
lists
---------------------------------------*/
.main ul:not([class]) li::before {
top: 0.7rem;
}

.main ol li::before {
top: 0.2rem;
}

  .main ul:not([class]) li{
    font-size: 1.6rem;
  }

/*--------------------------------------
table
---------------------------------------*/
table {
font-size: 1.6rem;
}
  
/* 
table th {
display: block;
width: 100%;
border-top: none;
}
table td {
display: block;
width: 100%;
border-top: none;
} */


/*--------------------------------------
float-wrap
---------------------------------------*/
.float-wrap {
margin: 4rem 0;
}
.float-wrap .float-img.fr {
float: none;
width: 100%;
margin: 0 auto 1.5rem auto;
}
.float-wrap .float-img.fl {
float: none;
width: 100%;
margin: 0 auto 1.5rem auto;
}
.float-wrap .float-img.ct {
width: 100%;
margin: 0 auto 1.5rem auto;
}
.float-wrap .catch {
font-size: 2.2rem;
}
.float-wrap.ct .catch {
text-align: left;
}
.float-wrap .fl.t_small {
float: left;
width: 40%;
padding: 0 6% 0.5rem 0;
box-sizing: content-box;
text-align: center;
}
.float-wrap .fr.t_small {
float: right;
width: 40%;
padding: 0 0 0.5rem 6%;
box-sizing: content-box;
text-align: center;
}
.float-wrap .fl.t_small .flame,
.float-wrap .fr.t_small .flame {
width: 100%;
}


/*--------------------------------------
box-wrap
---------------------------------------*/
.box-wrap {
display: block;
margin: 4rem auto;
}
.box-wrap .box {
width: 100%;
padding: 0 0 2rem 0;
border-bottom: 1px solid #bbb;
}
.box-wrap .box:last-child {
padding: 0;
border: none;
}
.box-wrap .box:nth-child(even)::before {
display: none;
content: none;
}
.box-wrap .box-head {
margin: 0 0 3rem 0;
}
.box-wrap .box-head .fig {
width: 8rem;
}
.box-wrap .box-head .ttl {
width: calc(100%);
font-size: 2rem;
}


/*--------------------------------------
frame-wrap
---------------------------------------*/
.frame-wrap {
display: block;
margin: 4rem auto;
}
.frame-wrap::after {
display: none;
content: none;
}
.frame-wrap .frame {
width: 100%;
margin: 0 0 3rem 0;
padding: 3rem 2rem 2rem 2rem;
}
.frame-wrap .frame-head .ttl {
font-size: 2.2rem;
}
.frame-wrap .frame-head .ttl a:hover {
opacity: 1;
}
  
.frame-wrap .frame-body p:not([class]) {
font-size: 1.6rem;
}
  .frame-wrap .frame-body table {
  font-size: 1.6rem;
  }

/*--------------------------------------
btns
---------------------------------------*/
.btn-internal,
p.btn-internal {
max-width: 90%;
margin: 3rem auto;
}
.btn-internal a {
font-size: 1.6rem;
}
.btn-internal a:hover {
opacity: 1;
}

.btn-web,
p.btn-web {
max-width: 90%;
margin: 3rem auto;
}
.btn-web a {
font-size: 1.6rem;
}
.btn-web a:hover {
opacity: 1;
}

.btn-tel,
p.btn-tel {
display: block;
max-width: 90%;
margin: 3rem auto;
padding: 0;
text-align: center;
}
.btn-tel a {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
margin: 0 auto;
padding: 2rem 4.5rem;
background: #ffe357 url(img/ico_sp.png) no-repeat 2rem center;
background-size: 20px auto;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #000;
box-sizing: border-box;
color: #000;
font-size: 1.6rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
transition: 0.2s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn-tel a:hover {
opacity: 1;
}

.btn-link,
p.btn-link {
max-width: 90%;
margin: 3rem auto;
padding: 0;
text-align: center;
}
.btn-link a {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
margin: 0 auto;
padding: 2rem 3rem;
background: #fff url(img/arrow_link.png) no-repeat right 1.2rem center;
background-size: 16px auto;
border: 1px solid #1a1f00;
border-radius: 1rem;
box-shadow: 0 5px 0 0 #1a1f00;
box-sizing: border-box;
color: #000;
font-size: 1.6rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
text-decoration: none;
transition: 0.2s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn-link a:hover {
opacity: 1;
}


/*--------------------------------------
accordion
---------------------------------------*/
.accordion-item {
display: none;
}
.accordion-btn {
width: 90%;
margin: 0 auto 3rem auto;
font-size: 1.8rem;
}
.accordion-btn:hover {
opacity: 1;
}
.main-low .block-toc .accordion-btn {
width: 90%;
}


/*--------------------------------------
toc
---------------------------------------*/
.toc_parts {
width: 100%;
margin: 0 auto 3rem auto;
padding: 1.5rem;
}
.toc_parts .ttl {
font-size: 1.8rem;
}
#toc {
margin: 1rem 0 0 0;
padding: 1rem 0 0 0;
}
#toc .chapter {
margin: 0;
padding: 0;
}
#toc .chapter .chapter-h {
margin: 1rem 0;
padding: 0 0 0 3rem;
font-size: 1.4rem;
line-height: 1.6;
}
#toc ul.chapter .chapter-h::before {
top: 1rem;
font-size: 1.8rem;
}
#toc li.chapter-h.chapter-h-three {
margin: 0.5rem 0 0.5rem 3rem;
}
#toc li.chapter-h.chapter-h-three::before {
top: 0.7rem;
width: 6px;
height: 6px;
}
#toc li.chapter-h-three + .chapter-h-two {
margin-top: 2rem;
}
.main-index .block-toc {
width: calc(100% - 2rem);
margin: 0 auto;
padding: 0 0 1rem 0;
}
.block-toc .accordion-btn {
width: 90%;
margin: 0 auto 3rem auto;
}


/*--------------------------------------
visArea
---------------------------------------*/
#visArea.lower {
display: flex;
align-items: center;
justify-content: center;
height: 9rem;
background: url(img/mv_bg_04.jpg) no-repeat center top;
background-size: cover;
}
#visArea.lower .siteName img {
width: 17rem;
}


/*--------------------------------------
addParts
---------------------------------------*/
.addInner {
width: 100%;
padding: 0 1.5rem;
}

.addParts-title {
margin: 0 0 2rem 0;
font-size: 2.4rem;
}
.addParts-title span {
font-size: 3.2rem;
}

p.lead {
width: 100%;
margin: 0 auto 3rem auto;
}


/*--------------------------------------
addParts01
---------------------------------------*/
.addParts01 {
padding: 2rem 0 4rem;
}
.addParts01 .block {
display: block;
}
.addParts01 .block::after {
display: none;
content: none;
}
.addParts01 .block .box {
width: 100%;
margin: 0 0 3rem 0;
}
.addParts01 .block .box:last-child {
margin: 0;
}
.addParts01 .block .box-body .btn-tel {
margin: 2rem auto 0 auto;
}


/*--------------------------------------
addParts02
---------------------------------------*/
.main .addParts02 .check{
margin: 0;
padding: 1.5rem 1.5rem 1.5rem 8rem;
}
  
  
/*--------------------------------------
slider
---------------------------------------*/
.slideTit {
font-size: 2.1rem;
}


/*--------------------------------------
table-accordion
---------------------------------------*/
.table-accordion {
position: relative;
margin: 4rem 0;
}
.table-accordion table {
margin: 0;
}
.table-accordion .inner {
height: 30rem;
}
.table-accordion .inner .more {
width: 90%;
}
.table-accordion .inner .more:hover {
opacity: 1;
}
.table-accordion .notice {
text-align: center;
}


/*--------------------------------------
table-scroll
---------------------------------------*/
.table-scroll {
max-width: 100%;
width: 80rem;
margin: 0;
background: #fff;
overflow-x: scroll;
}
.table-scroll table {
width: 80rem;
margin: 0;
}
.table-scroll table th,
.table-scroll table td {
display: table-cell;
position: relative;
width: auto;
}
.table-scroll table th[scope="col"]:nth-child(1),
.table-scroll table th[scope="row"] {
position: -webkit-sticky;
position: sticky;
left: 0;
top: 0;
width: 12rem;
z-index: 1;
}
.table-scroll table th::before {
position: absolute;
left: -0.1rem;
top: -0.1rem;
width: 100%;
height: 100%;
border: 1px solid #999;
content: "";
}


/*--------------------------------------
banner
---------------------------------------*/
.block-banner {
display: none !important;
}

}
