@charset "Shift_JIS";


/* ------------------------------ Clear Standard Style ------------------------------ */

@import url("//fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url("//fonts.googleapis.com/css?family=Lato");
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Lato';
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}

img{
  border: 0;
}

body {
  font-size: 100%;
  line-height: 2;
  color: #333;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

ul {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  display: block;
}

img {
  max-width: 100%;
  display: block;
}

input[type="text"],
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  appearance: none;
}


/* ------------------------------ COMMON HEADER ------------------------------ */

header {
  height: 80px;
  position: relative;
}
header .head-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header .head-link .logo {
  height: 80px;
  padding: 19px;
  display: inline-block;
}
header .head-link .logo a img {
  height: 42px;
}
header .external-pc {
  display: inline-block;
}
header .external-pc ul li {
  display: inline-block;
  line-height: 120%;
  margin-right: 10px;
}
header .external-pc ul li:last-child {
  margin-right: 0;
}
header .external-pc ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
}
header .external-pc ul li a p:after {
  right: auto;
  left: -12px;
  width: 6px;
  height: 6px;
}
header .external-pc ul li a:hover p {
  text-decoration: underline;
}
/* -----------------------下　190218追加--------------------- */
header ul.language {
  text-align: right;
  padding-right: 21px;
}
header ul.language li a {
  display:inline;
}
header ul.language li span {
  color: #C8C8C8;
}
/* -----------------------上　190218追加--------------------- */
header .burger-btn {
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: #cc0000;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10000;
}
header .burger-btn p {
  width: 100%;
  height: 100%;
  position: relative;
}
header .burger-btn p span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
header .burger-btn p span:nth-child(1) {
  top: 29px;
  transition: top 0.4s ease 0.4s, transform 0.4s ease 0s;
}
header .burger-btn p span:nth-child(2) {
  top: 39px;
  transition: transform 0.4s ease 0s;
}
header .burger-btn p span:nth-child(3) {
  bottom: 29px;
  transition: bottom 0.4s ease 0.4s, transform 0.4s ease 0s;
}
header .burger-btn.active p span:nth-child(1) {
  transform-origin: center;
  top: 39px;
  transform: rotate(-45deg);
  transition: top 0.4s ease 0s, transform 0.4s ease 0.4s;
}
header .burger-btn.active p span:nth-child(2) {
  transform-origin: center;
  transform: rotate(45deg);
  transition: transform 0.4s ease 0.4s;
}
header .burger-btn.active p span:nth-child(3) {
  transform-origin: center;
  bottom: 39px;
  transform: rotate(45deg);
  transition: bottom 0.4s ease 0s, transform 0.4s ease 0.4s;
}

@media screen and (max-width: 1090px) {
  header .external-pc {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  header .head-link {
    padding-right: 100px;
  }
}


/* ------------------------------ BURGER MENU ------------------------------ */

html, body {
  overflow-x: hidden;
}
html.nav-active, body.nav-active {
  position: fixed;
  width: 100%;
}

.burger {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  right: -100vw;
  top: 80px;
  z-index: 1000;
  width: 560px;
  height: 100%;
  background: #cc0000;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.burger::-webkit-scrollbar {
  display: none;
}
.burger .ac > p {
  position: relative;
  background: #cc0000;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  font-size: 18px;
  font-size: 1.125rem;
}
.burger .ac > p:before {
  content: "";
  display: block;
  width: 1px;
  height: 21px;
  background: #fff;
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.burger .ac > p:after {
  content: "";
  display: block;
  width: 21px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.burger .ac > p.active:before {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
.burger .ac > p.active:after {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.burger .ac .ac-item {
  display: none;
}
.burger .ac .ac-item ul {
  background: #700000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
}
.burger .ac .ac-item ul li {
  width: 230px;
  margin-bottom: 20px;
}
.burger .ac .ac-item ul li a {
  color: #fff;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.burger .ac .ac-item ul li a:hover {
  transition: opacity 0.3s ease;
  opacity: 0.8;
}
.burger .ac .ac-item ul li a figure img {
  width: 100%;
}
.burger .ac .ac-item ul li a figure figcaption {
  line-height: 1.2;
  margin-top: 5px;
}
.burger .ac .ac-item ul li a figure figcaption p {
  font-size: 18px;
  font-size: 1.125rem;
}
.burger .ac .ac-item ul li a figure figcaption p:after {
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
}
.burger .external-sp {
  background: #cc0000;
  padding: 30px 30px 0;
}
.burger .external-sp .wrap {
  background: #303030;
  padding: 15px;
}
.burger .external-sp .wrap > p {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.burger .external-sp .wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.burger .external-sp .wrap ul li {
  background: #272727;
  width: 48%;
  padding: 10px;
  margin-bottom: 10px;
}
.burger .external-sp .wrap ul li a {
  color: #fff;
}
.burger .external-sp .wrap ul li a p.add-external-w {
  display: block;
  font-size: 10px;
  font-size: 2.66667vw;
}
.burger .language {
  background: #cc0000;
  padding: 30px;
}
.burger .language a.normal-btn {
  margin-top: 0;
}


@media screen and (min-width: 1091px) {
  .burger .external-sp {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .burger .external-sp .wrap ul li a p.add-external-w {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .burger {
    width: 100%;
  }
  .burger .ac > p {
    font-size: 16px;
    font-size: 4.26667vw;
  }
  .burger .ac .ac-item ul li {
    width: 100%;
  }
  .burger .ac .ac-item ul li a figure figcaption p {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

.navi-layer {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}


/* ------------------------------ COMMON FOOTER ------------------------------ */

.foot_link{
  background: #333;
}

.foot_link .inner{
  max-width: 1160px;
  margin: 0 auto;
}

footer .inner{
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
footer li + li{
  padding-top: 10px;
}
footer ul li a {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
footer ul li a:hover p {
  text-decoration: underline;
}
footer ul li a .add-arrow-w {
  padding-left: 20px;
  margin-left: 15px;
  padding-right: 0;
}
footer ul li a .add-arrow-w:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  right: auto;
  left: 0;
}
footer small {
  display: block;
  background: #cc0000;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 15px 15px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (max-width: 768px) {
  footer ul li a .add-arrow-w {
    margin-left: 0;
}
footer .inner{
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}
footer li + li{
  padding-top: 0;
}
  footer ul {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }
  footer ul + ul{
    border-top: solid 1px #fff;
  }
  footer ul li {
    width: 50%;
    padding: 5px;
    margin: 0;
  }
  footer ul li a {
    font-size: 12px;
    font-size: 3.2vw;
  }
  footer small {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}

/* ------------------------------ PAGE TOP ------------------------------ */
.pagetop {
  position: fixed;
  right: 3%;
  bottom: 12%;
}
@media only screen and (max-width: 768px) {
  .pagetop {
    width: 47px;
  }
}



/* ------------------------------ サイトからの動的ソース流用パーツ ------------------------------ */


/*　ページ内リンク　汎用
----------------------------------------------------------------------*/

.under > .diversion:first-child {
  margin-top: 40px;
}
.diversion table th {
  text-align: left;
}
.diversion .h3-area {
  margin-bottom: 60px;
}
.diversion .h3-area #aboutcompany table {
  width: 100%;
  table-layout: auto;
}
.diversion .h5-area {
  margin-bottom: 40px;
}


/*　動的部分タイトル
----------------------------------------------------------------------*/

.diversion h3 {
  background: #f3f3f3;
  padding: 10px 10px 10px 20px;
  margin-bottom: 30px;
  font-size: 32px;
  font-size: 2rem;
}
.diversion h4 {
  border-bottom: 4px #f3f3f3 solid;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.4;
  padding-bottom: 10px;
  font-size: 26px;
  font-size: 1.625rem;
}
.diversion h4.txt-down {
  font-size: 22px;
  font-size: 1.375rem;
}
.diversion h4:after {
  content: "";
  height: 4px;
  width: 35px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  background: #cc0000;
}
.diversion h5 {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .diversion h3 {
    font-size: 24px;
    font-size: 6.4vw;
  }
  .diversion h4 {
    font-size: 20px;
    font-size: 5.33333vw;
  }
  .diversion h5 {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}


/*　インデント
----------------------------------------------------------------------*/
.indent01 {
	text-indent: -1em;
	padding-left: 1em;
}
.indent01 > * {
	text-indent: 0;
}
.indent01 > a {
	display: inline-block;
}

/*　ページ内リンク　アンカーボタン　株式会社ジェイティービー
----------------------------------------------------------------------*/

.diversion .index-area ul p {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .diversion .index-area ul p {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
