
:root {
  --c-ye: #feb900; /* ベース：黄色*/
  --c-lightgreen: #eff6f5; /* 薄グリーン（ホバー等）*/
  --c-black: #333333;
  --c-gradient();
} 

.title-1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #111;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.title-1:before {
  content: attr(data-txt);
  display: block;
  font-size: .66em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #111111;
  text-transform: capitalize;
  letter-spacing: -.01em;
}
@media (max-width:768px) {
  .title-1 {
    font-size: 2.5rem;
    letter-spacing: normal;
  }
}

.title-2 {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 2em;
  margin-bottom: 1.25em;
}
.title-2:before {
  content: '';
  position: absolute;
  top: .8em;
  left: 0;
  display: block;
  width: 1.25em;
  height: 5px;
  background: var(--c-ye);
}

.title-3 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #111;
  line-height: 1.5;
  margin-bottom: 1em;
}

.btn-1 {
  max-width: 100%;
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  cursor: pointer;
  padding: .75em 2em;
  background: #000;
  border: 1px solid #000;
  transition: 0.2s;
}
.btn-1 img {
  vertical-align: middle;
  margin-top: -4px;
  margin-right: .4em;
}
.btn-1:after {
  content: '';
  position: absolute;
  top: 50%;
  right: .75em;
  display: block;
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px var(--c-ye);
  border-right: solid 2px var(--c-ye);
  border-left-color: inherit;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -5px;
  transition: .2s;
}
.btn-1.back:after {
  left: .75em;
  right: auto;
  border: 0;
  border-bottom: solid 2px var(--c-ye);
  border-left: solid 2px var(--c-ye);
}
.btn-1:hover {
  opacity: 0.7;
}
.btn-1:hover:after {
  right: .5em;
}
.btn-1.back:hover:after {
  right: auto;
  left: .5em;
}
@media (max-width:768px) {
  .btn-1 {
    font-size: 1.8rem;
  }
}

table.default + *,* + table.default { margin-top:1em }
table.default { width:100% }
table.default > tbody > tr > th,table.default > tbody > tr > td {
  padding: 1em;
  background: #fff;
  border: 1px solid #ccc;
}
table.default > tbody > tr > th { background:#f6f6f6; }
@media (max-width:768px) {
  table.default:not(.no-responsive),table.default:not(.no-responsive) tbody,table.default:not(.no-responsive) tr,table.default:not(.no-responsive) tr > * {
    width: 100%;
    display: block;
  }
  table.default:not(.no-responsive) tr ~ tr {
    margin-top: 2em;
  }
  table.default:not(.no-responsive) tr > th {
    padding: .5em;
  }
  table.default:not(.no-responsive) tr > td {
    clear: both;
    border: none;
    padding: .5em 0;
  }
  table.default:not(.no-responsive) caption {
    display: block;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.5em;
  }
}

ul.pager-archive {
  text-align: center;
}
ul.pager-archive li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}
ul.pager-archive li a {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
ul.pager-archive li.num a {
  width: 2em;
  line-height: 2;
  color: var(--c-ye);
  border:1px solid var(--c-ye);
  background: #fff;
}
ul.pager-archive li.num.current a[href],ul.pager-archive li.num a[href]:hover {
  color: #fff;
  background: var(--c-ye);
}
ul.pager-archive li.prev a,ul.pager-archive li.next a {
  color: var(--c-ye);
  opacity: 0.5;
}
ul.pager-archive li.prev a[href],ul.pager-archive li.next a[href] {
  opacity: 1;
}
ul.pager-archive li.prev a[href]:hover,ul.pager-archive li.next a[href]:hover {
  text-decoration: underline;
}
ul.pager-single {
  width: 100%;
  display: table;
  table-layout: fixed;
}
ul.pager-single li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
ul.pager-single li a {
  display: inline-block;
  color: inherit;
  text-decoration: none !important;
  opacity: 0.5;
  padding: 0.5em 1em;
}
ul.pager-single li a[href] {
  opacity: 1;
}
ul.pager-single li a[href]:hover {
  color: #fff;
  background: #000;
}

@media (max-width:1024px) {
  #wrapper {
    position: relative;
    left: 0;
    transition: .2s;
  }
  .nav-active #wrapper {
    left: -290px;
  }
  #global-nav-btn {
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    width: 50px;
    padding-top: 50px;
    height: 0;
    background: var(--c-ye);
  }
  #global-nav-btn:before,#global-nav-btn:after,#global-nav-btn span:before {
    content: '';
    position: absolute;
    left: 25%;
    display: block;
    width: 50%;
    height: 0;
    padding-top: 1px;
    background: #fff;
  }
  #global-nav-btn:before {
    top: 31%;
    transition: 0.2s top, 0.2s transform;
  }
  #global-nav-btn:after {
    top: 47%;
    transition: 0.2s opacity;
  }
  #global-nav-btn span:before {
    top: 63%;
    transition: 0.2s top, 0.2s transform;
  }
  .nav-active #global-nav-btn:before {
    top: 50%;
    transform: rotate(135deg);
  }
  .nav-active #global-nav-btn:after {
    opacity: 0;
  }
  .nav-active #global-nav-btn span:before {
    top: 50%;
    transform: rotate(45deg);
  }
}
@media (max-width:1024px) {
  #sitemap-trigger {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    padding: .5em 1em;
    background: var(--c-ye);
  }
  #sitemap-trigger + .nav {
    display: none;
  }
  #sp-footer-nav {
    position: webkit-sticky;
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 9998;
    width: 100%;
    color: #fff;
    background: #000;
  }
  #sp-footer-nav ul {
    width: 100%;
    display: table;
  }
  #sp-footer-nav ul li {
    display: table-cell;
  }
  #sp-footer-nav ul li a {
    display: block;
    text-align: center;
  }
  #sp-footer-nav ul li a img {
    width: auto;
    max-height: 60px;
  }
}

@media (min-width:769px) { .display-sp { display:none!important } }
@media (min-width:1025px) { .display-tb { display:none!important } }
@media (max-width:768px) { .display-pc { display:none!important } }

#breadcrumb { padding: 1em 0 0; }
#breadcrumb ol { letter-spacing:-.4em; }
#breadcrumb ol li { display:inline-block; vertical-align:top; letter-spacing:normal; }
#breadcrumb ol li a { display:inline-block; color:var(--c-ye); }
#breadcrumb ol li ~ li:before { content:'>'; display:inline-block; margin:0 1em; }
@media (max-width:768px) { #breadcrumb { font-size:0.85em; } }

#pagetop { position:fixed; right:3.125%; bottom:3.125%; z-index:9998; transition:.2s;}
#pagetop:hover {
  opacity: .8;
}
@media (max-width:768px) {
  #pagetop {
    width: 50px;
    bottom: 70px;
  }
  .nav-active #pagetop {
    right: calc( 3.125% + 290px );
  }
}

ul.default,ol.default { margin-left:1.25em }
ul.default li ~ li,ol.default li ~ li { margin-top:0.4em }
ul.default + *,* + ul.default,ol.default + *,* + ol.default { margin-top:1em }
ul.default li { list-style:disc }
ol.default li { list-style:decimal }

[class*="layout-col"] {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.layout-col-2.reverse { flex-direction:row-reverse }
.layout-col-2 > * { width:48% }
.layout-col-2 > *:nth-child(n+3) { margin-top:4% }
@media (min-width:769px) {
.layout-col-3 > * { width: 30.76%; }
.layout-col-3 > *:nth-child(n+4) { margin-top:3.86%; }
}
@media (max-width:768px) {
.layout-col-3 { display:block }
}

.flex-box {
  position: relative;
  height: 0;
  padding-top: 56.25%;
}
.flex-box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-box > img {
  object-fit: cover;
}

[class*="inview"] { opacity:0; visibility:hidden;transition: 1s transform, 1s opacity; }
.inview-up { transform:translate3d(0,40px,0) }
.inview-left { transform:translate3d(40px,0,0) }
.inview-right { transform:translate3d(-40px,0,0) }
.inview-active { transform:translate3d(0,0,0); opacity:1; visibility:visible; }

.c-red{color:#fe0002;}
.fw-b{font-weight:bold}

.ta-l{text-align:left} .ta-c{text-align:center} .ta-r{text-align:right}
@media (max-width:768px){ .sp-ta-l{text-align:left} .sp-ta-c{text-align:center} .sp-ta-r{text-align:right} }

.fs-20px {
  font-size: 2rem;
}
[class*="m-0"]{margin:0}
[class*="mt-0"]{margin-top:0} [class*="mt-10px"]{margin-top:10px} [class*="mt-15px"]{margin-top:15px} [class*="mt-20px"]{margin-top:20px} [class*="mt-30px"]{margin-top:30px} [class*="mt-40px"]{margin-top:40px} [class*="mt-50px"]{margin-top:50px}
[class*="mr-0"]{margin-right:0} [class*="mr-5px"]{margin-right:5px} [class*="mr-10px"]{margin-right:10px} [class*="mr-20px"]{margin-right:20px} [class*="mr-auto"]{margin-right:auto}
[class*="mb-0"]{margin-bottom:0} [class*="mb-10px"]{margin-bottom:10px} [class*="mb-20px"]{margin-bottom:20px} [class*="mb-30px"]{margin-bottom:30px} [class*="mb-40px"]{margin-bottom:40px} [class*="mb-50px"]{margin-bottom:50px}
[class*="ml-0"]{margin-left:0} [class*="ml-5px"]{margin-left:5px} [class*="ml-10px"]{margin-left:10px} [class*="ml-20px"]{margin-left:20px} [class*="ml-auto"]{margin-left:auto}
@media(min-width:769px) {
[class*="sp-mt"]{margin-top:0}
[class*="sp-mr"]{margin-right:0}
[class*="sp-mb"]{margin-bottom:0}
[class*="sp-ml"]{margin-left:0}
}
@media(max-width:768px) {
[class*="pc-mt"]{margin-top:0}
[class*="pc-mr"]{margin-right:0}
[class*="pc-mb"]{margin-bottom:0}
[class*="pc-ml"]{margin-left:0}
}

.table-c { display:table; margin-left:auto; margin-right:auto; }
