@charset "UTF-8";
/*Variable
－－－－－－－*/
/*
ブレークポイント

基本  1920px
ipad 1050px
sp   767px;

コンテンツ幅1000px

*/
.inner {
  width: 1160px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}

@media only screen and (max-width: 991px) {
  .inner {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}
.inner-large {
  width: 1980px;
  max-width: 100%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .inner-large {
    width: 100%;
    padding: 0 20px;
  }
}
.c-front-heading {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 35px auto;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-front-heading {
    gap: 15px;
    font-size: 36px;
  }
}
.c-front-heading > span {
  position: relative;
  top: -4px;
  font-size: 14px;
  font-weight: 300;
  color: #999;
}
@media screen and (max-width: 767px) {
  .c-front-heading > span {
    font-size: 12px;
  }
}

.c-btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 330px;
  min-height: 80px;
  margin: auto;
  border-radius: 10px;
  background-color: #037075;
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    min-width: 280px;
  }
}
.c-btn01__arrow {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
  margin-left: 20px;
}
.c-btn01__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 0px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}