@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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;
}

input[type="button"], input[type="text"], input[type="submit"], input[type="email"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/*@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);*/
html,
body {
  width: 100%;
  overflow-y: scroll;
}

body {
  font-family: Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow: hidden;
  font-weight: normal;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    overflow: hidden;
  }
}

@supports (-ms-ime-align: auto) {
  body {
    font-family: "メイリオ", Meiryo, Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    overflow: hidden;
  }
}

/* ===================================

↑リセット、共通css

=================================== */
/* ===================================

↓ヘッダーcss 

=================================== */
header {
  　　width: 100%;
  overflow: hidden;
  position: relative;
  /* ↓ハンバーガーメニューcss */
}

header .inner {
  width: 98%;
  min-width: 1000px;
  padding: 20px 1% 15px;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: white;
  box-shadow: 1px 7px 20px -9px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  header .inner {
    position: fixed;
    padding: 0;
    min-width: 100%;
    top: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

header .head_left {
  float: left;
}

header .head_left h1 {
  width: 163px;
  margin-right: 24px;
  float: left;
}

@media only screen and (max-width: 768px) {
  header .head_left h1 {
    width: 120px;
    padding: 15px;
  }
}

header .head_left p {
  float: right;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75em;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 768px) {
  header .head_left p {
    display: none;
  }
}

header .head_left p strong {
  font-size: 24px;
}

header .head_right {
  float: right;
  /*width: 400px;*/
}

@media only screen and (max-width: 768px) {
  header .head_right {
    width: 100%;
    float: none;
    position: absolute;
  }
}

header .head_right nav ul {
  padding-top: 30px;
}

@media only screen and (max-width: 768px) {
  header .head_right nav ul {
    display: none;
    position: absolute;
    width: 100%;
    padding-top: 0;
    top: 66px;
    z-index: 9999;
  }
}

header .head_right nav ul li {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  header .head_right nav ul li {
    display: block;
    text-align: center;
    background-color: #333;
  }
}

header .head_right nav ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

@media only screen and (max-width: 768px) {
  header .head_right nav ul li a {
    color: #fff;
    padding: 20px 0;
    border-top: 1px solid #555;
    letter-spacing: 0.1em;
  }
}

header .head_right nav ul li a:hover {
  opacity: 0.6;
}

header .head_right nav ul li:not(:last-of-type) {
  margin-right: 52px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  header .head_right nav ul li:not(:last-of-type) {
    margin-right: 0;
  }
}

header .head_right nav ul li:not(:last-of-type)::after {
  content: "／";
  display: block;
  position: absolute;
  top: 0;
  right: -40px;
}

header #toggle {
  display: none;
  position: absolute;
  right: 13px;
  top: 20px;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  header #toggle {
    display: block;
  }
}

header #toggle div {
  position: relative;
}

header #toggle span {
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: solid 3px #1b1b1b;
  transition: .35s ease-in-out;
}

header #toggle span:nth-child(1) {
  top: 0;
}

header #toggle span:nth-child(2) {
  top: 11px;
}

header #toggle span:nth-child(3) {
  top: 22px;
}

header.openNav nav ul {
  top: 66px;
}

header.openNav #toggle span:nth-of-type(1) {
  top: 11px;
  transform: rotate(-45deg);
}

header.openNav #toggle span:nth-of-type(2) {
  opacity: 0;
}

header.openNav #toggle span:nth-of-type(3) {
  top: 11px;
  transform: rotate(45deg);
}

#filter.openNav {
  background-color: red;
  opacity: 0.9;
  z-index: 5;
  transition: 0.5s;
}

#contents {
  padding-top: 86px;
}

@media only screen and (max-width: 768px) {
  #contents {
    padding-top: 66px;
  }
}

/* ===================================

↓フッターcss 

=================================== */
footer {
  width: 100%;
  min-width: 1000px;
  padding-top: 60px;
  background-color: #eeeeee;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  footer {
    min-width: 100%;
    padding-top: 30px;
  }
}

footer h1 {
  width: 270px;
  margin: 0 auto 38px;
}

@media only screen and (max-width: 768px) {
  footer h1 {
    width: 50%;
    margin: 0 auto 20px;
  }
}

footer .footer_inner {
  width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  footer .footer_inner {
    width: 90%;
  }
}

footer .footer_inner dl {
  float: left;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 0;
  margin-bottom: 50px;
  margin-right: 50px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  footer .footer_inner dl {
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

footer .footer_inner dl:first-of-type {
  margin-left: 100px;
}

@media only screen and (max-width: 768px) {
  footer .footer_inner dl:first-of-type {
    margin-left: 0;
  }
}

footer .footer_inner dl dt {
  margin-bottom: 15px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  footer .footer_inner dl dt {
    margin-bottom: 10px;
  }
}

footer .footer_inner dl dd {
  line-height: 1.5em;
}

footer .footer_inner dl dd em {
  font-size: 20px;
  line-height: 2em;
}

@media only screen and (max-width: 768px) {
  footer .footer_inner dl dd em {
    line-height: 1.5em;
  }
}

footer .footer_inner dl dd em .small_c {
  font-size: 14px;
}

footer .footer_under {
  clear: left;
  width: 100%;
  padding: 30px 0;
  min-width: 1000px;
  margin: 0 auto;
  background-color: #1b1b1b;
  border-top: 10px solid #e60012;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  footer .footer_under {
    min-width: 100%;
    padding: 20px 0;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_under ul {
    margin-bottom: 20px;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_under ul li {
    display: inline-block;
  }
}

footer .footer_under ul li a {
  color: #999;
  text-decoration: none;
  display: block;
  float: left;
  font-size: 12px;
  margin-left: 30px;
}

@media only screen and (max-width: 768px) {
  footer .footer_under ul li a {
    margin: 0 20px;
  }
}

footer .footer_under p {
  float: right;
  color: #999;
  font-size: 12px;
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  footer .footer_under p {
    clear: both;
    float: none;
    text-align: center;
    margin-right: 0;
  }
}

#page_top {
  position: fixed;
  bottom: 71px;
  right: 20px;
  transition: 0.5s;
}

@media only screen and (max-width: 768px) {
  #page_top {
    position: static;
    margin: 0 0 20px 44%;
  }
}

#page_top:hover {
  opacity: 0.9;
}

#page_top p a {
  background-color: #1b1b1b;
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
}

#page_top p a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(-45deg);
  position: absolute;
  top: 24px;
  left: 22px;
  transition: 0.3s;
}

#page_top p a:hover:after {
  top: 20px;
}

#contents {
  width: 100%;
}

#formWrap table tr td .img_area {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 1em;
}
#formWrap table tr td span.pt10 {
    display: block;
    margin: 0.5em 0;
    font-size: 14px;
}

#formWrap table tr td .img_area > div {
    width: calc((100%/2) - 1em);
}
@media only screen and (max-width: 768px) {
#formWrap table tr td .img_area > div {
    width: 100%;
}
}