@charset "UTF-8";
/*-----------------------------------------------------
	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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/*-----------------------------------------------------
	base
-----------------------------------------------------*/
html {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4;
  min-width: initial;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.inner {
  padding: 0 10px;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    min-width: 1020px;
  }

  .inner {
    margin: 0 auto;
    padding: 0;
    width: 1000px;
  }
}
/*-----------------------------------------------------
	header
-----------------------------------------------------*/
#headNav {
  position: fixed;
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #333;
  z-index: 500;
}
#headNav .logo {
  padding: 10px 0;
  font-size: 1.5rem;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  line-height: 1.0;
  -webkit-transition: font-size  0.2s ease;
  transition: font-size  0.2s ease;
}
#headNav .logo span {
  display: block;
}
#headNav .logo a {
  color: #000;
}
#headNav.static {
  position: static;
  border-bottom: none;
}
#headNav.static .logo {
  margin-bottom: 20px;
  padding-top: 60px;
  font-size: 2.8rem;
}

#navBtn {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 32px;
  height: 32px;
}
#navBtn span {
  position: absolute;
  left: 2px;
  width: 28px;
  height: 2px;
  background-color: #000;
  -webkit-transition: all .4s;
  transition: all .4s;
}
#navBtn span:nth-of-type(1) {
  top: 7px;
}
#navBtn span:nth-of-type(2) {
  top: 15px;
}
#navBtn span:nth-of-type(3) {
  top: 23px;
}
#navBtn.open span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
      -ms-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
#navBtn.open span:nth-of-type(2) {
  opacity: 0;
}
#navBtn.open span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
      -ms-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

#gNav {
  position: absolute;
  top: 50px;
  left: 0;
  padding: 10px 0;
  width: 100%;
  font-family: "Arial", sans-serif;
  background: #FFF;
  border-bottom: 1px solid #666;
  z-index: 100;
}
#gNav li a {
  position: relative;
  display: block;
  padding: 10px 10px;
  color: #000;
}
#gNav li a:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media print, screen and (min-width: 768px) {
  #header .inner {
    position: relative;
  }

  #headNav .logo {
    padding: 20px 0;
    font-size: 2.4rem;
  }
  #headNav .logo span {
    display: inline;
  }
  #headNav.static .logo {
    margin-bottom: 30px;
    padding-top: 90px;
    font-size: 9rem;
  }
  #headNav.static .logo span {
    display: block;
  }

  #navBtn {
    display: none;
  }

  #gNav {
    top: 10px;
    left: auto;
    right: 0;
    width: auto;
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: none;
  }
  #gNav li {
    display: inline-block;
    margin-left: 40px;
  }
  #gNav li a {
    padding: 0;
  }
  #gNav li a:before {
    display: none;
  }
  #gNav li a:hover {
    opacity: 0.8;
  }
}
/*-----------------------------------------------------
	breadCrumb
-----------------------------------------------------*/
#breadCrumb {
  margin-bottom: 20px;
  padding: 65px 10px 0;
}
#breadCrumb li {
  display: inline-block;
  font-size: 1rem;
}
#breadCrumb li:after {
  content: ">";
  margin: 0 5px;
}
#breadCrumb li:last-child:after {
  display: none;
}
#breadCrumb a {
  color: #000;
}

@media print, screen and (min-width: 768px) {
  #breadCrumb {
    margin: 0 auto 70px;
    padding: 80px 0 0;
    width: 1000px;
  }
  #breadCrumb li {
    font-size: 1.1rem;
  }
  #breadCrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}
/*-----------------------------------------------------
	contentWrap
-----------------------------------------------------*/
/* pageHead */
#pageHead {
  margin-bottom: 30px;
}
#pageHead span {
  display: block;
}
#pageHead .en {
  font-family: "Arial", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
}
#pageHead .ja {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
  #pageHead {
    margin-bottom: 80px;
  }
  #pageHead .en {
    margin-bottom: 0;
    font-size: 4.8rem;
  }
  #pageHead .ja {
    font-size: 1.6rem;
  }
}
/* form */
.contactBox input, .contactBox textarea, .contactBox button, .contactBox select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contactBox input[type="text"], .contactBox input[type="email"], .contactBox input[type="tel"], .contactBox textarea {
  padding: 5px 3px;
  width: 100%;
}
.contactBox textarea {
  height: 100px;
}
.contactBox input[type="checkbox"] {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  position: absolute;
}
.contactBox input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  line-height: 20px;
}
.contactBox input[type="checkbox"] + label:before, .contactBox input[type="checkbox"] + label:after {
  position: absolute;
  display: block;
  content: "";
}
.contactBox input[type="checkbox"] + label:before {
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FFF;
}
.contactBox input[type="checkbox"]:checked + label:after {
  top: 1px;
  left: 6px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #D83434;
  border-bottom: 2px solid #D83434;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contactBox input[type="submit"], .contactBox input[type="button"] {
  padding: 12px;
  color: #FFF;
  width: 100%;
  max-width: 450px;
  background: #D83434;
  border-radius: 4px;
}
.contactBox input[type="submit"]:disabled, .contactBox input[type="button"]:disabled {
  color: #999;
  background: #CCC;
}
.contactBox .submitBtn {
  text-align: center;
}

.contactForm dt {
  margin-bottom: 3px;
}
.contactForm dd {
  margin-bottom: 15px;
}
.contactForm .require {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 1rem;
  color: #FFF;
  vertical-align: middle;
  background: #D83434;
  border-radius: 3px;
}
.contactForm input[type="text"], .contactForm input[type="email"], .contactForm input[type="tel"], .contactForm textarea {
  color: #FFF;
  background: #2c2c2c;
}

.agreeCheck {
  margin-bottom: 20px;
  text-align: center;
}
.agreeCheck .privacyLink {
  display: inline-block;
  margin-bottom: 15px;
}
.agreeCheck .privacyLink:after {
  content: "PDF";
  padding: 1px 6px;
  font-size: 0.8rem;
  border-radius: 2px;
}
.agreeCheck a {
  font-size: 1.2rem;
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .contactBox {
    margin: 0 auto;
    width: 820px;
  }
  .contactBox input[type="text"], .contactBox input[type="email"], .contactBox input[type="tel"], .contactBox textarea {
    padding: 7px 8px;
  }
  .contactBox textarea {
    height: 170px;
  }
  .contactBox input[type="submit"], .contactBox input[type="button"] {
    max-width: 320px;
  }
  .contactBox input[type="submit"]:hover, .contactBox input[type="button"]:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .contactForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .contactForm dt {
    width: 230px;
  }
  .contactForm dd {
    margin-bottom: 25px;
    width: 590px;
  }
  .contactForm .require {
    font-size: 1.1rem;
  }

  .agreeCheck {
    margin-bottom: 40px;
  }
  .agreeCheck a {
    font-size: 1.4rem;
  }
  .agreeCheck a:after {
    font-size: 1rem;
  }
  .agreeCheck a:hover {
    opacity: 0.8;
  }
}
/*-----------------------------------------------------
	pageTop
-----------------------------------------------------*/
#pageTop {
  position: fixed;
  right: 10px;
  bottom: 70px;
  background: #000;
  border-radius: 4px;
  z-index: 200;
}
#pageTop a {
  position: relative;
  display: block;
  padding: 22px 8px 5px;
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  color: #FFF;
}
#pageTop a:after {
  position: absolute;
  top: 9px;
  left: 50%;
  margin-left: -7px;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media print, screen and (min-width: 768px) {
  #pageTop a {
    padding: 28px 12px 8px;
    font-size: 1.1rem;
  }
  #pageTop a:after {
    top: 12px;
  }
}
/*-----------------------------------------------------
	footer
-----------------------------------------------------*/
#footer {
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid #333;
}
#footer .copyright {
  font-size: 1rem;
}

@media print, screen and (min-width: 768px) {
  #footer .copyright {
    font-size: 1.1rem;
  }
}
