/*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;
  background: #000000;
  color: #ffffff;
}

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 {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
@media screen and (min-width: 992px) {
  header {
    padding: 20px 35px;
  }
}
header .headerLogo {
  color: #ffffff;
  font-weight: 900;
  font-size: 2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  header .headerLogo {
    font-size: 2.8rem;
  }
}
header .headerMenu {
  display: none;
}
@media screen and (min-width: 768px) {
  header .headerMenu {
    display: flex;
    justify-content: flex-end;
  }
  header .headerMenu li {
    margin-right: 10px;
    font-size: 1.3rem;
  }
  header .headerMenu li:last-of-type {
    margin-right: 0;
  }
  header .headerMenu li a {
    color: #ffffff;
  }
}

main {
  min-height: 1000px;
}
main .content {
  max-width: 1270px;
  margin: 0 auto;
}
main .content .contentInner {
  position: relative;
}
main .contentTitle {
  margin-bottom: 30px;
}
main .contentTitle .contentTitleLabel {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  main .contentTitle .contentTitleLabel {
    font-size: 2.8rem;
  }
}
main .contentTitle .contentTitleLabel span {
  display: block;
  font-family: "Karantina", system-ui;
  font-weight: 700;
  font-size: 4.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  main .contentTitle .contentTitleLabel span {
    font-size: 7rem;
  }
}

footer .footerInner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 20px 35px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  footer .footerInner {
    display: flex;
    justify-content: flex-end;
    text-align: left;
  }
}
footer .footerInner .footerInfo .footerLogo {
  color: #ffffff;
  font-weight: 900;
  font-size: 2.4rem;
}
footer .footerInner .footerInfo .footerInfoList li {
  color: #ffffff;
  font-size: 1.6rem;
}
footer small {
  padding: 15px;
}
@media screen and (min-width: 992px) {
  footer small {
    padding: 20px 35px;
  }
}
footer small.copyright {
  display: block;
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
}

.hero {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100%;
  min-height: 852px;
  background: url(../images/heroBg.png) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .hero {
    min-height: 1023px;
  }
}
.hero .heroLabel {
  margin: 0 15px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .hero .heroLabel {
    margin: 0 35px;
  }
}
.hero .heroLabel * {
  color: #ffffff;
  font-family: "Karantina", system-ui;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero .heroLabel .heroSubText {
  font-size: 1.9rem;
}
@media screen and (min-width: 992px) {
  .hero .heroLabel .heroSubText {
    font-size: 4.5rem;
  }
}
.hero .heroLabel .heroMainText {
  margin: 10px 0;
  font-size: 5.5rem;
}
@media screen and (min-width: 992px) {
  .hero .heroLabel .heroMainText {
    font-size: 14.5rem;
  }
}

.about {
  padding: 40px 15px;
}
@media screen and (min-width: 992px) {
  .about {
    padding: 100px 15px;
  }
}
.about .aboutImage {
  position: absolute;
  top: 0;
  left: -15px;
  opacity: 0.5;
  width: 75%;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .about .aboutImage {
    position: relative;
    width: auto;
    margin-right: 30px;
    left: 0;
    opacity: 1;
  }
}
.about .aboutInfo {
  z-index: 1;
  margin-left: 50px;
  padding: 170px 0 0;
}
@media screen and (min-width: 992px) {
  .about .aboutInfo {
    margin-left: 0;
    padding: 0;
  }
}
.about .aboutInfo .aboutText p {
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .about .aboutInfo .aboutText p {
    font-size: 1.6rem;
    line-height: 1;
  }
}
.about .aboutInfo .aboutText p:last-of-type {
  margin-bottom: 0;
}
.about .aboutInfo .aboutText p.aboutName {
  text-align: right;
}

.history {
  padding: 0 15px;
}
@media screen and (min-width: 992px) {
  .history {
    padding: auto;
  }
}
.history .historyList {
  margin: 50px 0 0;
}
.history .historyList .historyBox {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #272727;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .history .historyList .historyBox {
    width: 31.25%;
  }
}
.history .historyList .historyBox .historyBoxImage {
  width: 100%;
  background: #ffffff;
}
.history .historyList .historyBox .historyTitle {
  margin: 10px 0;
}
.history .historyList .historyBox .historyTitle .historyDate {
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 1.3rem;
}
.history .historyList .historyBox .historyTitle .historyLabel {
  margin: 0;
  font-weight: 600;
  font-size: 1.6rem;
}
.history .historyList .historyBox .historyText {
  font-size: 1.2rem;
  line-height: 2.2;
}
.history .historyList .historyBox .historyText p {
  margin: 0;
}

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