@charset "UTF-8";
* { /*全部*/
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: auto;
  scroll-behavior: smooth; /* スクロール */
  font-size: 62.5%;
}

body {
  width: 100%;
  height: auto;
  letter-spacing: 0.1em;
  overflow-wrap: break-word;
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

h2 {
  font-size: 1.6666666667vw;
  text-align: center;
  font-weight: 700;
  color: #373737;
  overflow-wrap: break-word;
  line-height: 1.09375;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2.5vw;
  }
}
@media (max-width: 599px) {
  h2 {
    font-size: 6.4vw;
  }
}

.header {
  width: 100%;
  height: auto;
}
.header__button {
  position: fixed;
  top: 2.1354166667vw;
  right: 6.25vw;
  text-align: center;
  background-color: #373737;
  color: #fff;
  border-radius: 3.125vw;
  transition: all 0.3s;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.4583333333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .header__button {
    top: 3.203125vw;
    right: 5vw;
    text-align: center;
    background-color: #373737;
    color: #fff;
    border-radius: 4.6875vw;
    font-size: 1.875vw;
    font-weight: 700;
    line-height: 1.4583333333;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.header__button:hover {
  background-color: #ac1816;
}
.header__button a {
  display: block;
  padding: 1.0416666667vw 2.7083333333vw 1.1979166667vw;
}
@media screen and (max-width: 1024px) {
  .header__button a {
    padding: 1.5625vw 4.0625vw 1.796875vw;
  }
}
@media (max-width: 599px) {
  .header {
    display: none;
  }
}

.kv {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}
@media (max-width: 599px) {
  .kv {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
  }
}
.kv__img {
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .kv__img {
    margin: 0 0 13.3333333333vw 0;
  }
}
.kv__img--pc {
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .kv__img--pc {
    display: none;
  }
}
.kv__img--sp {
  width: 100%;
  height: auto;
  display: none;
}
@media (max-width: 599px) {
  .kv__img--sp {
    display: inline;
  }
}
.kv__scroll {
  width: 13.5416666667vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0 5.2083333333vw 0 0;
  font-family: "Prompt", sans-serif;
}
@media (max-width: 599px) {
  .kv__scroll {
    width: 100%;
    height: 47.4666666667vw;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
    border-radius: 0;
  }
}
.kv__scroll--text {
  width: 16.6666666667vw;
  height: auto;
  transform: rotate(0.25turn);
  position: absolute;
  top: 30.2083333333vw;
  left: -1.9791666667vw;
  font-size: 2.0833333333vw;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .kv__scroll--text {
    width: 44.8vw;
    transform: rotate(0);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10.6666666667vw;
    font-size: 8.5333333333vw;
  }
}
.kv__scroll {
  /* 丸の描写 */
}
.kv__scroll--down:before {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 42.1614583333vw;
  left: 5.9791666667vw;
  /*丸の形状*/
  width: 0.78125vw;
  height: 0.78125vw;
  border-radius: 50%;
  background: #373737;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
  /*下からの距離が変化して丸の全体が上から下に動く*/
}
@keyframes circlemove {
  0% {
    top: 41.6666666667vw;
  }
  100% {
    top: 48.1770833333vw;
  }
}
.kv__scroll--down:before {
  /*上から下にかけて丸が透過→不透明→透過する*/
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 599px) {
  .kv__scroll--down:before {
    position: absolute;
    top: 12.8vw;
    left: 87.0666666667vw;
    /*丸の形状*/
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  @keyframes circlemove {
    0% {
      top: 12.8vw;
    }
    100% {
      top: 28.8vw;
    }
  }
}
.kv__scroll {
  /* 線の描写 */
}
.kv__scroll--down:after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 42.1614583333vw;
  left: 6.2760416667vw;
  /*線の形状*/
  width: 0.15625vw;
  height: 6.6145833333vw;
  border-radius: 1000px;
  background: #373737;
}
@media (max-width: 599px) {
  .kv__scroll--down:after {
    top: 14.5333333333vw;
    left: 88.1333333333vw;
    width: 0.5333333333vw;
    height: 15.4666666667vw;
  }
}

.about {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about__text {
  text-align: center;
  padding-top: 5.2083333333vw;
  padding-bottom: 4.1666666667vw;
  font-size: 1.25vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.2916666667;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .about__text {
    padding-top: 7.8125vw;
    padding-bottom: 6.25vw;
    font-size: 1.875vw;
  }
}
@media (max-width: 599px) {
  .about__text {
    font-size: 4.8vw;
    padding: 0 5.3333333333vw;
  }
  .about__text br {
    display: none;
  }
}
.about__text span {
  background-image: linear-gradient(90deg, rgb(236, 178, 177) 0%, rgb(172, 24, 22) 100%);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 98% 36%; /* マーカーの太さ調整箇所 */
}
.about__button {
  text-align: center;
  background-color: #373737;
  color: #fff;
  border-radius: 3.125vw;
  transition: all 0.3s;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.4583333333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .about__button {
    border-radius: 5.859375vw;
    font-size: 2.34375vw;
  }
}
@media (max-width: 599px) {
  .about__button {
    border-radius: 16vw;
    font-size: 6.4vw;
    margin: 0;
  }
}
.about__button:hover {
  background-color: #ac1816;
}
.about__button a {
  display: block;
  padding: 1.0416666667vw 2.7083333333vw 1.1979166667vw;
}
@media screen and (max-width: 1024px) {
  .about__button a {
    padding: 1.5625vw 4.0625vw 1.796875vw;
  }
}
@media (max-width: 599px) {
  .about__button a {
    padding: 5.3333333333vw 13.8666666667vw 6.1333333333vw;
  }
}
.about__button {
  margin: 0 auto 3.4375vw;
}
@media screen and (max-width: 1024px) {
  .about__button {
    margin: 0 auto 5.15625vw;
  }
}
@media (max-width: 599px) {
  .about__button {
    margin: 16vw auto 21.3333333333vw;
  }
}

.element-img__bar {
  position: relative;
  z-index: -1;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .element-img__bar {
    width: 150%;
    height: auto;
    left: -50%;
    overflow: hidden;
  }
}
@media (max-width: 599px) {
  .element-img__bar {
    width: 100%;
    height: auto;
    left: 0;
    overflow: auto;
  }
}
.element-img__bar--img {
  width: 100%;
  height: auto;
}
.element-img__bar--img--pc {
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .element-img__bar--img--pc {
    display: none;
  }
}
.element-img__bar--img--sp {
  width: 100%;
  height: auto;
  display: none;
}
@media (max-width: 599px) {
  .element-img__bar--img--sp {
    display: inline;
  }
}

.recommendation {
  width: 100%;
  height: auto;
  margin-top: -5.9375vw;
  font-family: "Noto Sans JP", sans-serif;
  color: #373737;
}
@media screen and (max-width: 1024px) {
  .recommendation {
    margin-top: -8.90625vw;
  }
}
@media (max-width: 599px) {
  .recommendation {
    margin-top: -17.8666666667vw;
  }
}
.recommendation__inner {
  width: 52.0833333333vw;
  height: auto;
  border-radius: 5.2083333333vw;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .recommendation__inner {
    width: 78.125vw;
    border-radius: 7.8125vw;
  }
}
@media (max-width: 599px) {
  .recommendation__inner {
    width: 89.3333333333vw;
    border-radius: 13.3333333333vw;
  }
}
.recommendation__inner--h2 {
  padding-top: 2.6041666667vw;
  padding-bottom: 2.7604166667vw;
}
@media screen and (max-width: 1024px) {
  .recommendation__inner--h2 {
    padding-top: 3.90625vw;
    padding-bottom: 4.140625vw;
  }
}
@media (max-width: 599px) {
  .recommendation__inner--h2 {
    padding-top: 8vw;
    padding-bottom: 13.0666666667vw;
  }
}
.recommendation__inner--item {
  padding: 0 10.1041666667vw 1.6145833333vw;
  font-weight: 500;
  line-height: 1.4583333333;
}
@media screen and (max-width: 1024px) {
  .recommendation__inner--item {
    padding: 0 15.15625vw;
    padding-bottom: 2.421875vw;
  }
}
@media (max-width: 599px) {
  .recommendation__inner--item {
    padding: 0 5.3333333333vw;
    padding-bottom: -0.8vw;
  }
}
.recommendation__inner--item--text {
  display: flex;
  align-items: center;
  font-size: 1.25vw;
  margin: 0 auto;
  padding-bottom: 2.1875vw;
}
@media screen and (max-width: 1024px) {
  .recommendation__inner--item--text {
    font-size: 1.875vw;
    padding-bottom: 3.28125vw;
  }
}
@media (max-width: 599px) {
  .recommendation__inner--item--text {
    font-size: 4.8vw;
    padding-bottom: 9.6vw;
  }
}
.recommendation__inner--item--text i {
  color: #ac1816;
  padding-right: 1.5625vw;
}
@media screen and (max-width: 1024px) {
  .recommendation__inner--item--text i {
    padding-right: 2.34375vw;
  }
}
@media (max-width: 599px) {
  .recommendation__inner--item--text i {
    padding-right: 4vw;
  }
}

.seminar {
  width: 100%;
  height: auto;
}
.seminar__h2 {
  padding-top: 4.0104166667vw;
}
@media screen and (max-width: 1024px) {
  .seminar__h2 {
    padding-top: 6.015625vw;
  }
}
@media (max-width: 599px) {
  .seminar__h2 {
    padding-top: 8.8vw;
  }
}
.seminar__element {
  width: 47.6041666667vw;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .seminar__element {
    width: 71.40625vw;
  }
}
@media (max-width: 599px) {
  .seminar__element {
    width: 89.3333333333vw;
  }
}
.seminar__element--item {
  width: 100%;
  height: auto;
  border-radius: 7.8645833333vw;
  display: flex;
  position: relative;
  margin-top: 6.40625vw;
  padding: 2.7604166667vw 0 3.1770833333vw 0;
  box-shadow: 0 0.3125vw 1.0416666667vw rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 1024px) {
  .seminar__element--item {
    width: 100%;
    height: auto;
    border-radius: 11.796875vw;
    display: flex;
    position: relative;
    margin: 9.609375vw auto 0;
    box-shadow: 0 0.46875vw 1.5625vw rgba(0, 0, 0, 0.14);
  }
}
@media (max-width: 599px) {
  .seminar__element--item {
    width: 82.4vw;
    height: auto;
    border-radius: 11.796875vw;
    display: flex;
    position: relative;
    margin: 26.6666666667vw 0 0 auto;
    box-shadow: 0 0.46875vw 1.5625vw rgba(0, 0, 0, 0.14);
  }
}
.seminar__element--item--icon {
  width: 10.4166666667vw;
  height: 10.4166666667vw;
  background: rgb(172, 24, 22);
  background: linear-gradient(38deg, rgb(172, 24, 22) 0%, rgb(172, 24, 22) 50%, rgb(220, 120, 119) 100%);
  border-radius: 52.0833333333vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: -6% 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .seminar__element--item--icon {
    width: 15.625vw;
    height: 15.625vw;
    background: rgb(172, 24, 22);
    background: linear-gradient(38deg, rgb(172, 24, 22) 0%, rgb(172, 24, 22) 50%, rgb(220, 120, 119) 100%);
    border-radius: 97.65625vw;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .seminar__element--item--icon {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    background: rgb(172, 24, 22);
    background: linear-gradient(38deg, rgb(172, 24, 22) 0%, rgb(172, 24, 22) 50%, rgb(220, 120, 119) 100%);
    border-radius: 97.65625vw;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -14% 0 0 -8%;
  }
}
.seminar__element--item--icon--inner {
  padding-top: 0.5208333333vw;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .seminar__element--item--icon--inner {
    padding-top: 0.78125vw;
  }
}
.seminar__element--item--icon--inner--text1 {
  font-size: 1.8229166667vw;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .seminar__element--item--icon--inner--text1 {
    font-size: 2.734375vw;
  }
}
@media (max-width: 599px) {
  .seminar__element--item--icon--inner--text1 {
    font-size: 4.8vw;
  }
}
.seminar__element--item--icon--inner--text2 {
  font-size: 4.2708333333vw;
  font-weight: 700;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .seminar__element--item--icon--inner--text2 {
    font-size: 6.40625vw;
  }
}
@media (max-width: 599px) {
  .seminar__element--item--icon--inner--text2 {
    font-size: 11.2vw;
  }
}
.seminar__element--item--text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  color: #373737;
  z-index: 1;
}
.seminar__element--item--text h3 {
  font-size: 1.25vw;
  font-weight: 700;
  padding-bottom: 1.5625vw;
  padding-left: 13.3854166667vw;
  padding-right: 5.2083333333vw;
  line-height: 1.4583333333;
}
@media screen and (max-width: 1024px) {
  .seminar__element--item--text h3 {
    font-size: 1.875vw;
    padding-bottom: 2.34375vw;
    padding-left: 20.078125vw;
    padding-right: 7.8125vw;
  }
}
@media (max-width: 599px) {
  .seminar__element--item--text h3 {
    font-size: 4.8vw;
    padding-top: 9.6vw;
    padding-bottom: 5.6vw;
    padding-left: 9.8666666667vw;
    padding-right: 9.6vw;
  }
}
.seminar__element--item--text p {
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.9444444444;
  padding-left: 13.3854166667vw;
  padding-right: 5.46875vw;
}
@media screen and (max-width: 1024px) {
  .seminar__element--item--text p {
    font-size: 1.40625vw;
    padding-left: 20.078125vw;
    padding-right: 8.203125vw;
  }
}
@media (max-width: 599px) {
  .seminar__element--item--text p {
    font-size: 3.7333333333vw;
    padding-left: 9.8666666667vw;
    padding-right: 9.6vw;
    padding-bottom: 7.2vw;
  }
}

.gift {
  width: 100%;
  height: auto;
  margin-bottom: 5.2083333333vw;
}
@media screen and (max-width: 1024px) {
  .gift {
    margin-bottom: 7.8125vw;
  }
}
.gift__h2 {
  padding-top: 5.2083333333vw;
  padding-bottom: 2.6041666667vw;
}
.gift__h2 br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .gift__h2 {
    padding-top: 7.8125vw;
    padding-bottom: 3.90625vw;
  }
}
@media (max-width: 599px) {
  .gift__h2 {
    padding: 16vw 5.3333333333vw 8vw;
  }
  .gift__h2 br {
    display: inline;
  }
}
.gift__img {
  width: 43.125vw;
  height: 26.7708333333vw;
  background-color: #F8F8F8;
  border-radius: 5.2083333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .gift__img {
    width: 64.6875vw;
    height: 40.15625vw;
    border-radius: 7.8125vw;
  }
}
@media (max-width: 599px) {
  .gift__img {
    width: 89.3333333333vw;
    height: 55.4666666667vw;
    border-radius: 13.3333333333vw;
  }
}

.outline {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 6.9791666667vw;
}
@media screen and (max-width: 1024px) {
  .outline {
    padding-top: 10.46875vw;
  }
}
@media (max-width: 599px) {
  .outline {
    padding-top: 13.3333333333vw;
  }
}
.outline__h2 {
  color: #fff;
  border-radius: 1.8229166667vw;
  background-color: #ac1816;
  margin: 0 auto;
  display: inline-block;
  padding: 0.625vw 3.0729166667vw;
}
@media screen and (max-width: 1024px) {
  .outline__h2 {
    border-radius: 3.41796875vw;
    padding: 0.9375vw 4.609375vw;
  }
}
@media (max-width: 599px) {
  .outline__h2 {
    border-radius: 9.3333333333vw;
    padding: 4.8vw 9.3333333333vw 4.5333333333vw 9.6vw;
  }
}
.outline__element {
  width: 43.125vw;
  height: auto;
  margin: -1.8229166667vw auto 6.9791666667vw;
  background-color: #fff;
  z-index: -1;
  border-radius: 5.2083333333vw;
  box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #373737;
}
@media screen and (max-width: 1024px) {
  .outline__element {
    width: 64.6875vw;
    margin: -2.734375vw auto 10.46875vw;
    border-radius: 7.8125vw;
    box-shadow: 0 0.234375vw 0.46875vw rgba(0, 0, 0, 0.16);
  }
}
@media (max-width: 599px) {
  .outline__element {
    width: 89.3333333333vw;
    margin: -9.3333333333vw auto 13.3333333333vw;
    border-radius: 13.3333333333vw;
    box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
    display: inline;
    align-items: baseline;
    justify-content: baseline;
  }
}
.outline__element--inner {
  width: auto;
  padding-top: 1.9791666667vw;
  padding-bottom: 3.3854166667vw;
  padding-right: 2.6041666667vw; /*調整*/
}
@media screen and (max-width: 1024px) {
  .outline__element--inner {
    padding-top: 3.0078125vw;
    padding-bottom: 5.078125vw;
    padding-right: 3.90625vw; /*調整*/
  }
}
@media (max-width: 599px) {
  .outline__element--inner {
    padding-top: 9.3333333333vw;
    padding-bottom: 5.8666666667vw;
    padding-right: 0; /*調整*/
  }
}
.outline__element--inner--item {
  padding-top: 2.6041666667vw;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .outline__element--inner--item {
    padding-top: 3.90625vw;
  }
}
@media (max-width: 599px) {
  .outline__element--inner--item {
    display: inline;
    padding-top: 8vw;
  }
}
.outline__element--inner--item--title {
  max-width: 7.8125vw;
  height: auto;
  font-size: 0.9375vw;
  margin: 0 0 auto auto;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.9444444444;
}
@media screen and (max-width: 1024px) {
  .outline__element--inner--item--title {
    max-width: 11.71875vw;
    font-size: 1.40625vw;
  }
}
@media (max-width: 599px) {
  .outline__element--inner--item--title {
    max-width: 73.3333333333vw;
    font-size: 4.8vw;
    padding-left: 8vw;
    padding-top: 8vw;
    margin: 0 auto 0 0;
  }
}
.outline__element--inner--item--title .icon {
  min-width: 0.15625vw;
  width: 0.15625vw;
  height: 0.9895833333vw;
  margin-left: 1.5625vw;
  background-color: #ac1816;
  border-radius: 0.5208333333vw;
}
@media screen and (max-width: 1024px) {
  .outline__element--inner--item--title .icon {
    width: 0.234375vw;
    height: 1.484375vw;
    margin-left: 2.34375vw;
    border-radius: 0.78125vw;
  }
}
@media (max-width: 599px) {
  .outline__element--inner--item--title .icon {
    width: 0.8vw;
    height: 5.0666666667vw;
    margin-left: 2.6666666667vw;
  }
}
.outline__element--inner--item--text {
  width: 21.09375vw;
  padding-left: 3.125vw;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 2.1875;
}
@media screen and (max-width: 1024px) {
  .outline__element--inner--item--text {
    width: 31.640625vw;
    padding-left: 4.6875vw;
    font-size: 1.25vw;
  }
}
@media (max-width: 599px) {
  .outline__element--inner--item--text {
    width: 70.6666666667vw;
    height: auto;
    padding-left: 10.6666666667vw;
    font-size: 3.7333333333vw;
    margin: 0 auto;
  }
}

.company {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.company__h2 {
  color: #333;
}
.company__inner {
  width: 52.0833333333vw;
  display: flex;
  justify-content: center;
  padding-top: 2.6041666667vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .company__inner {
    padding-top: 3.90625vw;
  }
}
@media (max-width: 599px) {
  .company__inner {
    width: 89.3333333333vw;
    flex-direction: column;
  }
}
.company__inner--img {
  width: 19.375vw;
  height: auto;
  padding-right: 4.53125vw;
}
@media screen and (max-width: 1024px) {
  .company__inner--img {
    width: 29.0625vw;
    padding-right: 6.796875vw;
  }
}
@media (max-width: 599px) {
  .company__inner--img {
    width: 89.3333333333vw;
    margin: 0 auto;
    padding: 0;
  }
}
.company__inner--img img {
  width: 100%;
  height: auto;
}
.company__inner--text {
  width: 24.1666666667vw;
  font-size: 0.9375vw;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9444444444;
}
@media screen and (max-width: 1024px) {
  .company__inner--text {
    font-size: 1.40625vw;
  }
}
@media (max-width: 599px) {
  .company__inner--text {
    width: 76.8vw;
    height: auto;
    margin: 0 auto;
  }
}
.company__inner--text h4 {
  padding-top: 5vw;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .company__inner--text h4 {
    padding-top: 7.5vw;
  }
}
@media (max-width: 599px) {
  .company__inner--text h4 {
    font-size: 4.8vw;
    padding-top: 8vw;
  }
}
.company__inner--text dl {
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.4583333333;
}
@media screen and (max-width: 1024px) {
  .company__inner--text dl {
    font-size: 1.875vw;
  }
}
@media (max-width: 599px) {
  .company__inner--text dl {
    font-size: 6.4vw;
  }
}
.company__inner--text dl dt {
  padding-right: 0.8333333333vw;
  float: left;
}
.company__inner--text p {
  padding-top: 2.0833333333vw;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .company__inner--text p {
    padding-top: 1.6666666667vw;
  }
}
@media (max-width: 599px) {
  .company__inner--text p {
    padding-top: 6.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.company__button {
  text-align: center;
  background-color: #373737;
  color: #fff;
  border-radius: 3.125vw;
  transition: all 0.3s;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.4583333333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .company__button {
    border-radius: 5.859375vw;
    font-size: 2.34375vw;
  }
}
@media (max-width: 599px) {
  .company__button {
    border-radius: 16vw;
    font-size: 6.4vw;
    margin: 0;
  }
}
.company__button:hover {
  background-color: #ac1816;
}
.company__button a {
  display: block;
  padding: 1.0416666667vw 2.7083333333vw 1.1979166667vw;
}
@media screen and (max-width: 1024px) {
  .company__button a {
    padding: 1.5625vw 4.0625vw 1.796875vw;
  }
}
@media (max-width: 599px) {
  .company__button a {
    padding: 5.3333333333vw 13.8666666667vw 6.1333333333vw;
  }
}
.company__button {
  margin: 4.1666666667vw auto 7.8125vw;
}
@media screen and (max-width: 1024px) {
  .company__button {
    margin: 6.25vw auto 11.71875vw;
  }
}
@media (max-width: 599px) {
  .company__button {
    margin: 13.3333333333vw auto 26.6666666667vw;
  }
}

.form {
  width: 100%;
  margin: 0 auto 7.8125vw;
}
@media screen and (max-width: 1024px) {
  .form {
    margin: 0 auto 11.71875vw;
  }
}
@media (max-width: 599px) {
  .form {
    margin: 0 auto 26.6666666667vw;
  }
}
.form__inner {
  width: 52.0833333333vw;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .form__inner {
    width: 89.3333333333vw;
    margin: 0 auto;
  }
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.footer small {
  text-align: center;
  margin: 0 auto 2.1354166667vw;
  font-size: 0.7291666667vw;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.5;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .footer small {
    margin: 0 auto 3.203125vw;
    font-size: 1.09375vw;
  }
}
@media (max-width: 599px) {
  .footer small {
    margin: 0 auto 4.5333333333vw;
    font-size: 3.7333333333vw;
  }
}/*# sourceMappingURL=style.css.map */