/*clear fix*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
.pc-display {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-display {
    display: block;
  }
}

.sp-display {
  display: block;
}
@media screen and (min-width: 992px) {
  .sp-display {
    display: none;
  }
}

.flex-r {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-moreBtn {
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 35px;
  border: solid 1px #707070;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-moreBtn {
    max-width: 300px;
    font-size: 2.4rem;
  }
}
.c-moreBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-moreBtn a {
    height: 70px;
    padding: 0 30px;
  }
}
.c-moreBtn a:hover {
  background: #ffc247;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

select {
  -webkit-appearance: none;
  appearance: none;
  text-align-last: center;
}

.selectWrap {
  position: relative;
}
.selectWrap::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 25px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #CBC2AC;
  border-bottom: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  background-size: 100%;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
  webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  body {
    background-size: auto;
  }
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li {
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
  transition: all 0.1s ease;
}
a:hover {
  text-decoration: none;
}
a img {
  transition: all 0.8s ease;
}
a img:hover {
  opacity: 0.9;
}
a:focus {
  outline: none;
}

a[href^=tel] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^=tel] {
    pointer-events: auto;
  }
}

img {
  max-width: 100%;
  margin: auto;
  vertical-align: top;
}

h1, h2, h3, h4, h5 {
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

span {
  word-break: break-word;
}

th, td {
  word-break: break-all;
}

input,
textarea {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input:placeholder-shown,
textarea:placeholder-shown {
  color: #A3A3A3 !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A3A3A3 !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A3A3A3 !important;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #A3A3A3 !important;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A3A3A3 !important;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #A3A3A3 !important;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  background: #ffffff;
  z-index: 100;
}
@media screen and (min-width: 992px) {
  header {
    padding: 15px 25px;
  }
}
header .headerLogo {
  margin: 0;
  line-height: 0;
}
@media screen and (min-width: 992px) {
  header .headerLogo {
    line-height: 1;
  }
}
header .headerLogo img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  header .headerLogo img {
    width: auto;
  }
}

main {
  min-height: 1000px;
}
main .content {
  max-width: 1270px;
  margin: 0 auto 20px;
  padding: 15px;
}
@media screen and (min-width: 992px) {
  main .content {
    margin: 0 auto 70px;
    padding: 15px 0;
  }
}
main .content.full {
  max-width: 100%;
}
main .content .contentInner {
  max-width: 1270px;
  margin: 0 auto;
}
main .contentTitle {
  position: relative;
  margin-bottom: 30px;
  padding: 0 0 0 15px;
}
main .contentTitle::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  content: "";
  width: 6px;
  height: 63px;
  background: #01AD4E;
  background: linear-gradient(0deg, rgb(1, 173, 78) 0%, rgb(1, 173, 78) 50%, rgb(0, 0, 255) 50%);
}
main .contentTitle .contentTitleLabel {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
main .contentTitle .contentTitleLabel span {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 4rem;
  text-transform: uppercase;
}

footer small {
  padding: 20px 35px;
}
footer small.copyright {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 807px;
  margin-bottom: 70px;
  background: url(../images/heroBg.png) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .hero {
    min-height: 1024px;
  }
}
.hero .heroLabel {
  margin: 0;
  text-align: center;
}
.hero .heroLabel * {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}
.hero .heroLabel .heroMainText {
  margin: 10px 0;
  font-size: 2.9rem;
  text-shadow: #000 1px 0 10px;
}
@media screen and (min-width: 992px) {
  .hero .heroLabel .heroMainText {
    font-size: 6.3rem;
  }
}
.hero .heroLabel .heroSubText {
  padding: 15px;
  font-size: 1.8rem;
  text-shadow: #000 1px 0 10px;
}
@media screen and (min-width: 992px) {
  .hero .heroLabel .heroSubText {
    font-size: 3rem;
    padding: 0;
  }
}
.hero .heroLabel .heroSubText br {
  display: none;
}
@media screen and (min-width: 992px) {
  .hero .heroLabel .heroSubText br {
    display: block;
  }
}

.business .businessBox {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .business .businessBox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .business .businessBox:nth-child(even) {
    flex-direction: row;
    justify-content: flex-start;
  }
  .business .businessBox:nth-child(even) .businessImage {
    margin: 0 30px 0 0;
  }
}
.business .businessBox:last-of-type {
  margin-bottom: 0;
}
.business .businessBox .businessImage {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .business .businessBox .businessImage {
    width: 50%;
    margin: 0 0 0 30px;
  }
}
.business .businessBox .businessImage img {
  object-fit: cover;
}
.business .businessBox .businessInfo {
  width: auto;
}
@media screen and (min-width: 992px) {
  .business .businessBox .businessInfo {
    width: 50%;
    padding: 15px;
  }
}
.business .businessBox .businessInfo .businessInfoTitle {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .business .businessBox .businessInfo .businessInfoTitle {
    margin: 0 0 20px;
  }
}
.business .businessBox .businessInfo .businessInfoText ul li {
  font-size: 1.4rem;
}
.business .businessBox .businessInfo .businessInfoText p {
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.access .accessInfo {
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .access .accessInfo ul {
    display: flex;
    margin-bottom: 5px;
  }
}
.access .accessInfo ul li {
  margin: 0 0 5px 0;
}
@media screen and (min-width: 992px) {
  .access .accessInfo ul li {
    margin: 0 5px 0 0;
  }
}
.access .accessMap {
  margin: 40px 0 0;
}
.access .accessMap iframe {
  width: 100%;
  height: 500px;
}

.company .companyBox {
  display: block;
}
@media screen and (min-width: 992px) {
  .company .companyBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.company .companyBox .companyImage {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 992px) {
  .company .companyBox .companyImage {
    width: 373px;
    height: auto;
    margin-right: 40px;
  }
}
.company .companyBox .companyImage img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company .companyBox .companyInfo {
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .company .companyBox .companyInfo {
    width: calc(100% - 413px);
    font-size: 1.6rem;
  }
}
.company .companyBox .companyInfo table {
  width: 100%;
  text-align: left;
}
.company .companyBox .companyInfo table th, .company .companyBox .companyInfo table td {
  padding: 20px 0;
  border-bottom: solid 1px #D9D9D9;
  vertical-align: top;
}
.company .companyBox .companyInfo table th {
  width: 120px;
  font-weight: normal;
}
.company .companyBox .companyInfo table td span {
  display: block;
  font-size: 1.4rem;
}

/*# sourceMappingURL=style.css.map */
