@charset "UTF-8";
/******* setting.scss *******/
/******* mixin.scss *******/
@import url("https://fonts.googleapis.com/css?family=Didact+Gothic");
main .secCont h1 span {
  font-family: 'Didact Gothic', sans-serif;
}

/******* reset.scss *******/
html {
  font-size: 62.5%;
}

html,
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  margin: 0;
  max-width: 100%;
  min-height: 100%;
  padding: 0;
  text-align: center;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fildset, input, textarea, p, blockquote, table, th, td, address, textarea, input, figure {
  font-weight: 400;
  color: #333;
  font-size: 15px;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 150%;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption, th {
  text-align: left;
}

td, th {
  vertical-align: top;
}

fieldset, img, abbr {
  border: none;
}

li {
  list-style-type: none;
}

strong {
  font-weight: bold;
}

a {
  color: #333;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

body {
  background: url("../img/common/body_bg.jpg") repeat;
}

.wrapper {
  margin: 0 auto;
  text-align: left;
  position: relative;
  overflow: hidden;
}

br.sp {
  display: none;
}

img.sp {
  display: none;
}

/******header******/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: url("../img/common/info_bg.png") repeat;
  transition: 0.3s;
}
header .headCont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 10px 40px;
  position: relative;
  transition: 0.3s;
  transition: all 0.6s;
  box-sizing: border-box;
  min-height: 80px;
}
header .headCont .headLogo {
  position: absolute;
  left: 40px;
  top: 10px;
}
header .headCont .headLogo a {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  text-indent: 180%;
  white-space: nowrap;
  content: "";
  display: block;
  height: 60px;
  width: 210px;
  background-image: url(../img/common/logo_w.png);
  transition: opacity 0.6s;
  text-decoration: none;
  transition: 0.3s;
}
header .headCont .headLogo a:hover {
  opacity: 0.7;
}
header .headCont .headNav {
  display: block;
  overflow: hidden;
  transition: all 0.6s;
}
header .headCont .headNav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .headCont .headNav nav ul {
  display: flex;
  margin-left: 40px;
}
header .headCont .headNav nav ul:first-child {
  padding: 0;
  margin: 0;
  border: none;
}
header .headCont .headNav nav ul li a {
  display: block;
  text-decoration: none;
  padding: 20px;
  color: #fff;
  font-weight: normal;
  position: relative;
}
header .headCont .headNav nav ul li a::after {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  bottom: 8px;
  left: 0;
  right: 0;
  border-radius: 50%;
}
header .headCont .headNav nav ul li a:hover::after {
  opacity: 1;
}
header .headCont .headNav nav ul li.telBtn a, header .headCont .headNav nav ul li.mailBtn a {
  height: 100%;
  background: -moz-linear-gradient(top left, #54C3F1, #2BAEE9);
  background: -webkit-linear-gradient(top left, #54C3F1, #2BAEE9);
  background: linear-gradient(to bottom right, #54C3F1, #2BAEE9);
  color: #fff;
}
header .headCont .headNav nav ul li.telBtn a strong, header .headCont .headNav nav ul li.mailBtn a strong {
  font-size: 161%;
}
header .headCont .headNav nav ul li.mailBtn a {
  background-color: #333;
}
header .headCont .headNav nav ul li.mailBtn a strong {
  font-size: 1em;
}
header .headCont .cartArea {
  display: block;
  overflow: hidden;
  transition: all 0.6s;
  display: flex;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px dotted #fff;
}
header .headCont .cartArea:first-child {
  padding: 0;
  margin: 0;
  border: none;
}
header .headCont .cartArea li a {
  display: block;
  text-decoration: none;
  padding: 0 20px;
  color: #333;
  font-weight: normal;
  position: relative;
}
header .headCont .cartArea li a::after {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  background-color: #333;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  bottom: 8px;
  left: 0;
  right: 0;
  border-radius: 50%;
}
header .headCont .cartArea li a:hover::after {
  opacity: 1;
}
header .headCont .cartArea li.telBtn a, header .headCont .cartArea li.mailBtn a {
  height: 100%;
  background: -moz-linear-gradient(top left, #54C3F1, #2BAEE9);
  background: -webkit-linear-gradient(top left, #54C3F1, #2BAEE9);
  background: linear-gradient(to bottom right, #54C3F1, #2BAEE9);
  color: #fff;
}
header .headCont .cartArea li.telBtn a strong, header .headCont .cartArea li.mailBtn a strong {
  font-size: 161%;
}
header .headCont .cartArea li.mailBtn a {
  background-color: #333;
}
header .headCont .cartArea li.mailBtn a strong {
  font-size: 1em;
}
header.scroll .headCont {
  min-height: 70px;
}
header.scroll .headCont .headLogo a {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  text-indent: 180%;
  white-space: nowrap;
  content: "";
  display: block;
  height: 50px;
  width: 175px;
}
header.scroll .headCont .contactBtn a {
  color: #333;
}
header.scroll .headCont .spMenu span {
  background-color: #333;
}

/******footer******/
.ec-blockTopBtn {
  background-color: #333;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.ec-blockTopBtn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  text-indent: 0;
  transform: rotate(-45deg);
}

footer {
  background-color: #EEEEEE;
  position: relative;
  padding: 0 40px;
}
footer .footCont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
}
footer .footCont .infoArea {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
footer .footCont .infoArea figure {
  margin-right: 40px;
}
footer .footCont .infoArea dl dt {
  margin-bottom: 20px;
  text-align: left;
}
footer .footCont .infoArea dl dd {
  margin-bottom: 20px;
  text-align: left;
}
footer .footCont .infoArea dl dd a {
  color: #fff;
  text-decoration: none;
}
footer .footCont ul {
  display: flex;
  flex-wrap: wrap;
  width: 35%;
}
footer .footCont ul li {
  width: 70%;
}
footer .footCont ul li:nth-child(2n) {
  width: 30%;
}
footer .footCont ul li a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
  text-align: left;
}

address {
  background-color: #333;
  padding: 20px 0;
  color: #fff;
}

p.hojo {
  background-color: #eee;
  padding: 20px 0;
  color: #333;
}

/******main******/
main {
  position: relative;
}
@media screen and (max-width: 1920px) {
  main {
    background-size: 1920px;
  }
}
main .grayBg {
  background-color: rgba(238, 238, 238, 0.9);
}
main .secCont {
  max-width: 1200px;
  margin: 0 auto;
}
main .secCont h1 {
  margin: 0 auto 60px;
  text-align: center;
}
main .secCont h1 span {
  color: #333;
  font-size: 425%;
  line-height: 130%;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  display: block;
}
main p {
  margin-bottom: 60px;
}
main .btn {
  margin: 0 auto;
  width: 400px;
}
main .btn a {
  background-color: #333;
  color: #fff;
  font-size: 125%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  position: relative;
  transition: opacity 0.6s;
  text-decoration: none;
}
main .btn a:hover {
  opacity: 0.7;
}
main .btn a:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  height: 10px;
  transform: rotate(-45deg);
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
}
