@charset "UTF-8";
/*メインカラー*/
/*サブカラー*/
/*タブレット*/
/*スマホ*/
* { /*全部*/
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  letter-spacing: 0.1em;
}

html {
  width: 100%;
  height: auto;
  scroll-behavior: smooth; /* スクロール */
  font-size: 0.6944444444vw;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  scroll-padding-top: 8rem;
}
@media screen and (max-width: 599px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  height: auto;
  font-size: 1.6rem;
  color: #132939;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp {
    display: inline-block;
  }
}

@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.header {
  width: 100%;
  height: 8.3rem;
  position: fixed;
  z-index: 99;
  background-color: #F6F6F6;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .header {
    height: 9.1rem;
    padding: 0 2.5rem 0 2rem;
  }
}
.header__inner {
  width: 110rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .header__inner {
    width: 100%;
  }
}
.header__inner .header__company--icon {
  width: 13.3rem;
  margin: 0 auto 0 0;
}
.header__inner .header__nav { /*ヘッダーナビゲーション*/
  width: auto;
  height: auto;
  color: #1A1A1A;
}
@media screen and (max-width: 599px) {
  .header__inner .header__nav {
    display: none;
  }
}
.header__inner .header__nav--list { /*ul*/
  display: flex;
}
.header__inner .header__nav--list--item { /*liの要素*/
  margin-right: 7rem;
}
.header__inner .header__nav--list--item a {
  transition: opacity 0.3s;
}
.header__inner .header__nav--list--item a:hover {
  opacity: 0.5;
}
.header__inner .header__nav--list--item:nth-last-child(1) { /*liの要素*/
  margin-right: 5.7rem;
}
.header__inner .header__button {
  width: 18.5rem;
  border-radius: 100vw;
  padding: 0.63rem 0 0.83rem;
  background: rgb(192, 22, 22);
  background: linear-gradient(119deg, rgb(192, 22, 22) 0%, rgb(204, 200, 71) 100%);
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  letter-spacing: 0.07em;
  border: #F6F6F6 solid 0.2rem;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
@media screen and (max-width: 599px) {
  .header__inner .header__button {
    display: none;
  }
}
.header__inner .header__button:hover {
  color: #C01616;
  background: #fff;
  border: #C01616 solid 0.2rem;
  margin: 0;
}
.header__inner .header__button--icon {
  width: 1.529rem;
  height: 1.529rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: boder 0.3s;
}
.header__inner .header__button--icon--img {
  width: 0.34rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__inner .header__button:hover .header__button--icon {
  border: 0.1rem #C01616 solid;
}

/*ハンバーガー*/
.burger-wrapper {
  display: none;
}
@media screen and (max-width: 599px) {
  .burger-wrapper {
    cursor: pointer;
    margin: 0 0 0 auto;
    width: 4.2rem;
    height: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(192, 22, 22);
    background: linear-gradient(119deg, rgb(192, 22, 22) 0%, rgb(204, 200, 71) 100%);
    border-radius: 100vw;
    position: fixed;
    z-index: 100;
    left: auto;
    top: 2rem;
    right: 2.6rem;
  }
}
.burger-wrapper .wrap {
  height: 1.6rem;
}
.burger-wrapper .wrap .hamburger {
  background: #fff;
  width: 2.1rem;
  height: 0.2rem;
  position: relative;
  transition: background 10ms 300ms ease;
  transform: translateY(0.8rem);
}
.burger-wrapper .wrap .hamburger:before, .burger-wrapper .wrap .hamburger:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  background: #fff;
  width: 2.1rem;
  height: 0.2rem;
  content: "";
}
.burger-wrapper .wrap .hamburger:before {
  top: -0.7rem;
}
.burger-wrapper .wrap .hamburger:after {
  top: 0.7rem;
}
.burger-wrapper.hamburgerButtonactive {
  background-color: #fff;
}
.burger-wrapper.hamburgerButtonactive .hamburger {
  background: #fff;
}
.burger-wrapper.hamburgerButtonactive .hamburger:before, .burger-wrapper.hamburgerButtonactive .hamburger:after {
  background-color: #fff;
}

.menu-trigger:checked ~ .burger-wrapper .hamburger {
  background: transparent;
}
.menu-trigger:checked ~ .burger-wrapper .hamburger:after, .menu-trigger:checked ~ .burger-wrapper .hamburger:before {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}
.menu-trigger:checked ~ .burger-wrapper .hamburger:before {
  transform: rotate(45deg);
}
.menu-trigger:checked ~ .burger-wrapper .hamburger:after {
  transform: rotate(-45deg);
}

.headerNav {
  display: none;
}
@media screen and (max-width: 599px) {
  .headerNav {
    display: inline-block;
    transition: all 0.3s;
    left: 100%;
    position: fixed;
    z-index: 99;
  }
}
.headerNav.active {
  display: none;
  transition: all 0.3s;
  left: 0;
}
@media screen and (max-width: 599px) {
  .headerNav.active {
    display: inline-block;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99;
    transition: all 0.3s;
    left: 0;
  }
}
.headerNav .headerNav__inner {
  width: 35.5rem;
  height: 100vh;
  background-color: #132939;
  border-radius: 5rem 0 0 0;
  overflow: hidden;
  margin: 0 0 0 2rem;
  color: #fff;
  position: relative;
}
.headerNav .headerNav__inner .headerNav__button {
  width: 18.5rem;
  border-radius: 100vw;
  padding: 0.63rem 0 0.83rem;
  background: rgb(192, 22, 22);
  background: linear-gradient(119deg, rgb(192, 22, 22) 0%, rgb(204, 200, 71) 100%);
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  letter-spacing: 0.07em;
  position: absolute;
  z-index: 10;
  top: 9.2rem;
  right: 2.5rem;
  left: auto;
}
.headerNav .headerNav__inner .headerNav__button--icon {
  width: 1.529rem;
  height: 1.529rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.headerNav .headerNav__inner .headerNav__button--icon--img {
  width: 0.34rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerNav .headerNav__inner ul {
  display: inline-block;
  margin-left: 2.5rem;
  margin-top: 18rem;
}
.headerNav .headerNav__inner ul li a {
  display: inline-block;
  font-size: 1.8rem;
  margin-top: 2.4rem;
  letter-spacing: 0.1em;
}

.main .kv {
  width: 100%;
  height: auto;
  position: relative;
}
.main .kv__background {
  width: 100%;
  height: auto;
}
.main .kv__background img {
  width: 100%;
  height: auto;
}
.main .kv__element {
  width: 48.5rem;
  height: auto;
  position: absolute;
  top: 20.22rem;
  left: 17rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .main .kv__element {
    width: 100%;
    top: 10.22rem;
    left: 50%;
    transform: translate(-50%);
  }
}
.main .kv__element--speechBubble {
  width: 38.3rem;
  position: relative;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 599px) {
  .main .kv__element--speechBubble {
    width: 27.35rem;
    margin: auto;
  }
}
.main .kv__element--speechBubble--text {
  position: absolute;
  width: 33.8rem;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.058em;
  display: flex;
  justify-content: center;
  top: 1.2rem;
  left: 2.05rem;
  color: #1D2E5C;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .main .kv__element--speechBubble--text {
    width: 21rem;
    left: 50%;
    transform: translate(-50%);
  }
}
.main .kv__element h1 {
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.3888888889;
  color: #1D2E5C;
}
@media screen and (max-width: 599px) {
  .main .kv__element h1 {
    font-size: 3.9rem;
  }
}
.main .kv__element h1 .colorRed {
  color: #C01616;
}
.main .kv__element--item {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 1.45rem 0 2rem;
}
@media screen and (max-width: 599px) {
  .main .kv__element--item {
    margin: 1.15rem 0;
    padding: 0 2.5rem 0 2rem;
    align-items: start;
    justify-content: space-between;
  }
}
.main .kv__element--item--logo {
  width: 28.435rem;
}
@media screen and (max-width: 599px) {
  .main .kv__element--item--logo {
    width: 19.767rem;
  }
}
.main .kv__element--item--text {
  display: inline-block;
  font-size: 4.9rem;
  font-weight: 900;
  padding-bottom: 0.8rem;
  margin-left: 2.17rem;
  color: #2F2D2C;
}
@media screen and (max-width: 599px) {
  .main .kv__element--item--text {
    font-size: 3.4rem;
    margin-left: 0;
  }
}
.main .kv__element--subText1 {
  font-size: 2.2rem;
  color: #1A1A1A;
}
@media screen and (max-width: 599px) {
  .main .kv__element--subText1 {
    font-size: 1.5rem;
  }
}
.main .kv__element__button {
  width: 37.5rem;
  border-radius: 100vw;
  padding: 1.3rem 0 1.6rem;
  background: rgb(192, 22, 22);
  background: linear-gradient(119deg, rgb(192, 22, 22) 0%, rgb(204, 200, 71) 100%);
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  letter-spacing: 0.07em;
  display: inline-block;
  margin: 3.44rem 0 0 0;
  border: #F5F5F5 solid 0.2rem;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
@media screen and (max-width: 599px) {
  .main .kv__element__button {
    font-size: 1.7rem;
    width: 27.691rem;
    padding: 0.96rem 0 1.27rem;
    margin: 2.48rem 0.6rem 0 0;
  }
}
.main .kv__element__button:hover {
  color: #C01616;
  background: #fff;
  border: #C01616 solid 0.2rem;
}
.main .kv__element__button--icon {
  width: 3.1rem;
  height: 3.1rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: border 0.3s;
}
@media screen and (max-width: 599px) {
  .main .kv__element__button--icon {
    width: 2.289rem;
    height: 2.289rem;
  }
}
.main .kv__element__button--icon--img {
  width: 0.689rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .main .kv__element__button--icon--img {
    width: 0.509rem;
  }
}
.main .kv__element__button:hover .kv__element__button--icon {
  border: #C01616 solid 0.1rem;
}
.main .kv__element--subText2 {
  padding-top: 0.67rem;
  font-size: 1.8rem;
  color: #1D2E5C;
}
@media screen and (max-width: 599px) {
  .main .kv__element--subText2 {
    font-size: 1.6rem;
    padding-top: 0.6rem;
  }
}
.main .company {
  width: 110rem;
  margin: 0 auto 4.64rem;
}
@media screen and (max-width: 599px) {
  .main .company {
    width: 100%;
    margin: 0 auto 2.79rem;
  }
}
.main .company h2 {
  font-size: 9rem;
  font-weight: 700;
  color: #C01616;
  opacity: 0.05;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: -5.5rem;
}
@media screen and (max-width: 599px) {
  .main .company h2 {
    font-size: 5rem;
    margin-bottom: -3.3rem;
    margin-left: -0.7rem;
    line-height: 1.5;
  }
}
.main .company__element {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .main .company__element {
    flex-flow: column;
    align-items: baseline;
    margin-left: 2rem;
  }
}
.main .company__element h3 {
  font-size: 3.2rem;
  line-height: 1.40625;
}
@media screen and (max-width: 599px) {
  .main .company__element h3 {
    font-size: 1.8rem;
  }
}
.main .company__element h3 small {
  font-size: 2.7rem;
}
@media screen and (max-width: 599px) {
  .main .company__element h3 small {
    font-size: 1.5rem;
  }
}
.main .company__element p {
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 13.7rem;
  display: inline-block;
  line-height: 1.6666666667;
  opacity: 0.8;
}
@media screen and (max-width: 599px) {
  .main .company__element p {
    font-size: 1.2rem;
    padding: 0.54rem 0 0;
  }
}
.main .company__slide {
  width: 100%;
  height: auto;
}
.main .company__slide--img {
  width: 12.8rem;
  height: auto;
}
.main .about {
  width: 100%;
  overflow: hidden;
  margin-top: 7.32rem;
}
.main .about--inner {
  width: 110rem;
  margin: 0 auto 10.75rem;
}
@media screen and (max-width: 599px) {
  .main .about--inner {
    width: 100%;
  }
}
.main .about--inner h2 {
  font-size: 9rem;
  font-weight: 700;
  color: #C01616;
  opacity: 0.05;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: -5.5rem;
}
@media screen and (max-width: 599px) {
  .main .about--inner h2 {
    font-size: 5rem;
    margin-bottom: -3.3rem;
    margin-left: -0.7rem;
    line-height: 1.5;
  }
}
.main .about--inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (max-width: 599px) {
  .main .about--inner h3 {
    margin-left: 2rem;
  }
}
.main .about--inner .about__element {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  .main .about--inner .about__element {
    flex-flow: column;
    position: static;
    align-items: start;
  }
}
.main .about--inner .about__element--item h4 {
  width: 48.4rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 599px) {
  .main .about--inner .about__element--item h4 {
    font-size: 2.4rem;
    width: 100%;
    text-align: center;
  }
}
.main .about--inner .about__element--item p {
  width: 52.5rem;
  padding-top: 4.7rem;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.9047619048;
}
@media screen and (max-width: 599px) {
  .main .about--inner .about__element--item p {
    width: 33rem;
    margin-left: 2rem;
    margin-bottom: 3.2rem;
    font-size: 1.6rem;
  }
}
.main .about--inner .about__element--img {
  width: 72.5rem;
  min-width: 72.5rem;
  position: absolute;
  right: -21.3rem;
}
@media screen and (max-width: 599px) {
  .main .about--inner .about__element--img {
    width: 35.5rem;
    min-width: 35.5rem;
    position: static;
    margin: 0 0 0 auto;
  }
}
.main .conversion {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main .conversion img {
  width: 100vw;
}
.main .conversion__element {
  text-align: center;
  position: absolute;
  color: #fff;
}
.main .conversion__element strong {
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .main .conversion__element strong {
    font-size: 1.8rem;
  }
}
.main .conversion__element h2 {
  font-size: 3.5rem;
  font-weight: 700;
  padding-top: 1rem;
}
@media screen and (max-width: 599px) {
  .main .conversion__element h2 {
    font-size: 2.4rem;
  }
}
.main .conversion__element p {
  padding: 1rem 0 2.62rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (max-width: 599px) {
  .main .conversion__element p {
    font-size: 1.4rem;
  }
}
.main .conversion__element__button {
  width: 37.5rem;
  border-radius: 100vw;
  padding: 1.3rem 0 1.6rem;
  background: rgb(192, 22, 22);
  background: linear-gradient(119deg, rgb(192, 22, 22) 0%, rgb(204, 200, 71) 100%);
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  letter-spacing: 0.07em;
  display: inline-block;
  margin: 0.2rem;
  transition: color 0.3s;
}
@media screen and (max-width: 599px) {
  .main .conversion__element__button {
    width: 27.691rem;
    font-size: 1.7rem;
  }
}
.main .conversion__element__button:hover {
  color: #C01616;
  background: #fff;
  border: #C01616 solid 0.2rem;
  margin: 0;
}
.main .conversion__element__button--icon {
  width: 3.1rem;
  height: 3.1rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .main .conversion__element__button--icon {
    width: 2.289rem;
    height: 2.289rem;
  }
}
.main .conversion__element__button--icon--img {
  width: 0.689rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .conversion__element__button:hover .conversion__element__button--icon {
  border: #C01616 solid 0.1rem;
}
.main .why--inner {
  width: 110rem;
  margin: 0 auto 10.75rem;
}
@media screen and (max-width: 599px) {
  .main .why--inner {
    width: 100%;
    margin-bottom: 5.26rem;
  }
}
.main .why--inner h2 {
  font-size: 9rem;
  font-weight: 700;
  color: #C01616;
  opacity: 0.05;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: -4.8rem;
}
@media screen and (max-width: 599px) {
  .main .why--inner h2 {
    font-size: 5rem;
    margin-top: 0.46rem;
    margin-bottom: -3.3rem;
    margin-left: -0.7rem;
    line-height: 1.2;
  }
}
.main .why--inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (max-width: 599px) {
  .main .why--inner h3 {
    font-size: 1.8rem;
    margin-left: 2rem;
  }
}
.main .why--inner h4 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin: 8.3rem 0;
}
@media screen and (max-width: 599px) {
  .main .why--inner h4 {
    font-size: 2.4rem;
    margin: 2.4rem 0 3.4rem;
    line-height: 1.6666666667;
  }
}
.main .why--inner p {
  width: 95.4rem;
  font-size: 2.1rem;
  font-weight: 500;
  margin-left: 5.9rem;
  text-align: center;
  line-height: 1.6666666667;
}
@media screen and (max-width: 599px) {
  .main .why--inner p {
    width: 33rem;
    font-size: 1.6rem;
    margin-left: 2rem;
    line-height: 2;
    text-align: center;
  }
}
.main .why--inner .why__element {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .main .why--inner .why__element {
    width: 100%;
    flex-flow: column;
    justify-content: start;
  }
}
.main .why--inner .why__element--item {
  width: 53.6rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .main .why--inner .why__element--item {
    width: 33rem;
    margin-left: 2rem;
  }
}
.main .why--inner .why__element--item strong {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 5.72rem 0 1.6rem;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .main .why--inner .why__element--item strong {
    font-size: 1.8rem;
    padding: 5.2rem 0 1.75rem;
  }
}
@media screen and (max-width: 599px) {
  .main .why--inner .why__element--item strong::nth-child(2) {
    padding: 2.94rem 0 1.75rem;
  }
}
.main .why--inner .why__element--item--content {
  width: 100%;
  display: inline-block;
  border-radius: 4rem;
}
.main .why--inner .subTitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16.62rem 0 7.32rem;
}
@media screen and (max-width: 599px) {
  .main .why--inner .subTitle {
    width: 25.462rem;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: 5.49rem 0 0;
  }
}
.main .why--inner .subTitle .logo {
  width: 28.435rem;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .main .why--inner .subTitle .logo {
    width: 15.872rem;
    height: 3rem;
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  .main .why--inner .subTitle .logo img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }
}
.main .why--inner .subTitle .text {
  font-size: 3.2rem;
  font-weight: 700;
  padding: 0 0 0.5rem 2.92rem;
}
@media screen and (max-width: 599px) {
  .main .why--inner .subTitle .text {
    font-size: 2.4rem;
    line-height: 1.7083333333;
    padding: 0;
  }
}
.main .why .conversation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.main .why .conversation__figure {
  width: 110rem;
  margin-bottom: -24.5rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__figure {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #FAFAFA;
    border-radius: 5rem;
    padding-top: 2rem;
  }
}
.main .why .conversation__figure--img {
  width: 106.8rem;
  z-index: 1;
  position: relative;
  margin-left: auto;
  margin-right: -1.6rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__figure--img {
    width: 33rem;
    margin: 0;
  }
}
.main .why .conversation__element {
  width: 100%;
  padding-top: 30.5rem;
  background-color: #FAFAFA;
  border-radius: 18.3rem;
  padding-bottom: 8.65rem;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element {
    border-radius: 0;
    padding-top: 4rem;
    padding-bottom: 3.79rem;
    margin-bottom: 3.23rem;
  }
}
.main .why .conversation__element p {
  text-align: center;
  line-height: 1.75;
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element p {
    font-size: 1.6rem;
  }
}
.main .why .conversation__element--inner {
  width: 110rem;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner {
    width: 33rem;
  }
}
.main .why .conversation__element--inner strong {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin: 4.6rem 0 1.9rem 9.7rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner strong {
    margin: 4rem 0 1.6rem;
  }
}
.main .why .conversation__element--inner strong .blackCircleIcon {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 1.1rem;
  display: inline-block;
  border-radius: 100%;
  background-color: #132939;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .pc {
    display: none;
  }
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list1 {
  margin-left: 9.7rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .pc .conversation__element--inner--list1 {
    margin: 0;
    font-size: 1rem;
  }
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list1--item {
  width: -moz-fit-content;
  width: fit-content;
  border: 0.2rem #132939 solid;
  box-shadow: 0.2rem 0.3rem #132939;
  padding: 0.65rem 4.05rem 1.05rem 4.05rem;
  margin-bottom: 2.3rem;
  border-radius: 1rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .pc .conversation__element--inner--list1--item {
    padding: 0.43rem 1.25rem 0.67rem;
  }
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list1--item:nth-child(2) {
  padding: 0.65rem 5.7rem 1.05rem 5.7rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .pc .conversation__element--inner--list1--item:nth-child(2) {
    padding: 0.43rem 1.33rem 0.67rem 1.37rem;
  }
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list1--item:nth-child(3) {
  padding: 0.65rem 8.25rem 1.05rem 8.25rem;
  margin-left: 0.3rem;
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list1--item:nth-child(4) {
  padding: 0.65rem 4.5rem 1.05rem 4.6rem;
  margin-left: 0.8rem;
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list2 {
  margin-left: 9.7rem;
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .pc .conversation__element--inner--list2 {
    margin: 0;
    font-size: 1rem;
  }
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list2--item {
  width: -moz-fit-content;
  width: fit-content;
  border: 0.2rem #132939 solid;
  box-shadow: 0.2rem 0.3rem #132939;
  padding: 0.65rem 2.8rem 1.05rem 2.1rem;
  margin-bottom: 2.3rem;
  border-radius: 1rem;
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list2--item:nth-child(2) {
  padding: 0.65rem 3.3rem 1.05rem 3.3rem;
  margin-left: 2rem;
}
.main .why .conversation__element--inner .pc .conversation__element--inner--list2--item:nth-child(3) {
  padding: 0.65rem 3.8rem 1.05rem 3.8rem;
  margin-left: 3rem;
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list1 {
  margin-left: 9.7rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list1 {
    margin: 0;
    font-size: 1rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list1--item {
  width: -moz-fit-content;
  width: fit-content;
  border: 0.2rem #132939 solid;
  box-shadow: 0.2rem 0.3rem #132939;
  padding: 0.65rem 4.05rem 1.05rem 4.05rem;
  margin-bottom: 2.3rem;
  border-radius: 1rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list1--item {
    padding: 0.43rem 1.25rem 0.67rem;
    margin-bottom: 1.2rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list1--item:nth-child(2) {
  padding: 0.65rem 5.7rem 1.05rem 5.7rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list1--item:nth-child(2) {
    padding: 0.43rem 1.33rem 0.67rem 1.37rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list1--item:nth-child(3) {
  padding: 0.65rem 8.25rem 1.05rem 8.25rem;
  margin-left: 0.3rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list1--item:nth-child(3) {
    padding: 0.43rem 1.05rem 0.67rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list2 {
  margin-left: 9.7rem;
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list2 {
    margin: 0;
    font-size: 1rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list2--item {
  width: -moz-fit-content;
  width: fit-content;
  border: 0.2rem #132939 solid;
  box-shadow: 0.2rem 0.3rem #132939;
  padding: 0.65rem 2.8rem 1.05rem 2.1rem;
  margin-bottom: 2.3rem;
  border-radius: 1rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list2--item {
    padding: 0.49rem 1.25rem 0.51rem;
    margin-bottom: 1.1rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list2--item:nth-child(2) {
  padding: 0.65rem 3.3rem 1.05rem 3.3rem;
  margin-left: 2rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list2--item:nth-child(2) {
    margin-left: 0.8rem;
    padding: 0.4rem 0.97rem 0.7rem 0.93rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list2--item:nth-child(3) {
  padding: 0.65rem 3.8rem 1.05rem 3.8rem;
  margin-left: 3rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list2--item:nth-child(3) {
    margin-left: 1.1rem;
    padding: 0.4rem 1.04rem 0.7rem 1.06rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list3 {
  margin-left: 9.7rem;
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list3 {
    margin: 0;
    font-size: 1rem;
  }
}
.main .why .conversation__element--inner .sp .conversation__element--inner--list3--item {
  width: -moz-fit-content;
  width: fit-content;
  border: 0.2rem #132939 solid;
  box-shadow: 0.2rem 0.3rem #132939;
  padding: 0.65rem 2.8rem 1.05rem 2.1rem;
  margin-bottom: 2.3rem;
  border-radius: 1rem;
}
@media screen and (max-width: 599px) {
  .main .why .conversation__element--inner .sp .conversation__element--inner--list3--item {
    padding: 0.49rem 1.21rem 0.61rem 0.99rem;
    margin-bottom: 0;
  }
}
.main .consultant {
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.main .consultant__inner {
  width: 110rem;
}
@media screen and (max-width: 599px) {
  .main .consultant__inner {
    width: 100%;
    padding-top: 2.8rem;
  }
}
.main .consultant__inner h2 {
  font-size: 9rem;
  font-weight: 700;
  color: #C01616;
  opacity: 0.05;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: -4.8rem;
}
@media screen and (max-width: 599px) {
  .main .consultant__inner h2 {
    font-size: 5rem;
    margin-bottom: -3.3rem;
    margin-left: -0.7rem;
    line-height: 1.5;
  }
}
.main .consultant__inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (max-width: 599px) {
  .main .consultant__inner h3 {
    margin-left: 2rem;
    font-size: 1.8rem;
  }
}
.main .consultant .slide {
  width: 100%;
  position: relative;
  margin: 9.64rem auto 19.76rem;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide {
    margin: 9.82rem auto 6rem;
  }
}
.main .consultant .slide__element {
  pointer-events: none;
}
.main .consultant .slide__element--item {
  padding: 6.4rem 3rem 0;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item {
    padding: 5.3rem 2.4rem 0 2.6rem;
  }
}
.main .consultant .slide__element--item--inner {
  width: 40.1rem;
  height: 51.1rem;
  background-color: #F8F8F8;
  border-radius: 5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item--inner {
    width: 33rem;
    height: auto;
  }
}
.main .consultant .slide__element--item--img {
  width: 15.8rem;
  margin-top: -6.4rem;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item--img {
    width: 13rem;
    margin-top: -5.3rem;
  }
}
.main .consultant .slide__element--item h4 {
  font-size: 3.2rem;
  text-align: center;
  padding: 2.5rem 0 0;
  line-height: 1.15625;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item h4 {
    font-size: 2.6rem;
    padding: 2.1rem 0 0;
    line-height: 1.1923076923;
  }
}
.main .consultant .slide__element--item h4 small {
  font-size: 2rem;
}
.main .consultant .slide__element--item .texts {
  width: 34.1rem;
  padding-left: 0.1rem;
  margin-top: 3.1rem;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item .texts {
    width: 28rem;
    margin-top: 2.5rem;
    padding-left: 0.2rem;
  }
}
.main .consultant .slide__element--item .texts strong {
  width: 10.4rem;
  height: 3.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.2rem;
  background-color: #C01616;
  color: #fff;
  border-radius: 1.4rem;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item .texts strong {
    width: 8.5rem;
    height: 3.1rem;
    font-size: 1.4rem;
  }
}
.main .consultant .slide__element--item .texts p {
  padding-top: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .main .consultant .slide__element--item .texts p {
    font-size: 1.6rem;
    padding-bottom: 4.4rem;
  }
}
.main .consultant .slide .arrow_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main .consultant .slide .arrow_box .prev-arrow1, .main .consultant .slide .arrow_box .next-arrow1 {
  display: block;
  width: 5rem;
  height: 5rem;
  background: #fff;
  border: #132939 solid 0.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  margin: 0 1rem;
}
.main .consultant .slide .arrow_box .prev-arrow1::before, .main .consultant .slide .arrow_box .next-arrow1::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #132939;
  border-top: 2px solid #132939;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0.5rem;
  margin: auto;
  transform: rotate(45deg);
}
.main .consultant .slide .arrow_box .prev-arrow1 {
  transform: rotate(180deg);
}
.main .consultant .slide .buttonContent {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main .consultant .slide .buttonContent .arrow_box2 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
}
.main .consultant .slide .buttonContent .arrow_box2 .prev-arrow, .main .consultant .slide .buttonContent .arrow_box2 .next-arrow {
  display: block;
  width: 2.505rem;
  height: 2.505rem;
  background: #fff;
  border: #132939 solid 0.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.main .consultant .slide .buttonContent .arrow_box2 .prev-arrow::before, .main .consultant .slide .buttonContent .arrow_box2 .next-arrow::before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #132939;
  border-top: 2px solid #132939;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0.5rem;
  margin: auto;
  transform: rotate(45deg);
}
.main .consultant .slide .buttonContent .arrow_box2 .prev-arrow {
  transform: rotate(180deg);
}
.main .consultant .slide .buttonContent .arrow_box2 .dots-box {
  display: flex;
  align-items: center;
}
.main .consultant .slide .buttonContent .arrow_box2 .dots-box .dots-wrap {
  display: flex;
}
.main .consultant .slide .buttonContent .arrow_box2 .dots-box .dots-wrap li {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem;
  border-radius: 50%;
  background-color: #132939;
  cursor: pointer;
}
.main .consultant .slide .buttonContent .arrow_box2 .dots-box .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.main .consultant .slide .buttonContent .arrow_box2 .dots-box .dots-wrap li:hover, .main .consultant .slide .buttonContent .arrow_box2 .dots-box .dots-wrap li.slick-active {
  background: #C01616;
}
.main .flow {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.main .flow__inner {
  width: 110rem;
}
@media screen and (max-width: 599px) {
  .main .flow__inner {
    width: 100%;
  }
}
.main .flow__inner h2 {
  font-size: 9rem;
  font-weight: 700;
  color: #C01616;
  opacity: 0.05;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: -4.8rem;
}
@media screen and (max-width: 599px) {
  .main .flow__inner h2 {
    font-size: 5rem;
    margin-bottom: -3.3rem;
    margin-left: -0.7rem;
    line-height: 1.2;
  }
}
.main .flow__inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (max-width: 599px) {
  .main .flow__inner h3 {
    font-size: 1.8rem;
    padding-left: 2rem;
  }
}
.main .flow__inner .figure {
  width: 100%;
  padding: 0 8.7rem 0 9.5rem;
  margin: 9.52rem 0;
}
@media screen and (max-width: 599px) {
  .main .flow__inner .figure {
    display: none;
  }
}
.main .flow__inner .flow__slide {
  width: 100%;
  margin: 9.64rem auto 19.76rem;
  display: none;
}
@media screen and (max-width: 599px) {
  .main .flow__inner .flow__slide {
    display: block;
    margin: 9.82rem auto 6rem;
  }
}
.main .flow__inner .flow__slide--element--item {
  width: 100%;
}
.main .flow__inner .flow__slide--element--item--img {
  width: 100%;
}
.main .flow__inner .flow__slide .buttonContent-flow {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow {
  width: 30rem;
  display: flex;
  justify-content: space-between;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .prev-arrow-flow, .main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .next-arrow-flow {
  display: block;
  width: 2.505rem;
  height: 2.505rem;
  background: #fff;
  border: #132939 solid 0.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .prev-arrow-flow::before, .main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .next-arrow-flow::before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #132939;
  border-top: 2px solid #132939;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0.5rem;
  margin: auto;
  transform: rotate(45deg);
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .prev-arrow-flow {
  transform: rotate(180deg);
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .dots-box-flow {
  display: flex;
  align-items: center;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .dots-box-flow .dots-wrap-flow {
  display: flex;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .dots-box-flow .dots-wrap-flow li {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem;
  border-radius: 50%;
  background-color: #132939;
  cursor: pointer;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .dots-box-flow .dots-wrap-flow li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .dots-box-flow .dots-wrap-flow li:hover, .main .flow__inner .flow__slide .buttonContent-flow .arrow_box-flow .dots-box-flow .dots-wrap-flow li.slick-active {
  background: #C01616;
}
.main .faq {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.main .faq__inner {
  width: 110rem;
}
@media screen and (max-width: 599px) {
  .main .faq__inner {
    width: 100%;
  }
}
.main .faq__inner h2 {
  font-size: 9rem;
  font-weight: 700;
  color: #C01616;
  opacity: 0.05;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: -4.7rem;
}
@media screen and (max-width: 599px) {
  .main .faq__inner h2 {
    font-size: 5rem;
    margin-bottom: -3.3rem;
    margin-left: -0.7rem;
    line-height: 1.5;
  }
}
.main .faq__inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (max-width: 599px) {
  .main .faq__inner h3 {
    padding-left: 2rem;
    font-size: 1.8rem;
  }
}
.main .faq__inner .element {
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  flex-flow: column;
  margin-top: 8.948rem;
}
@media screen and (max-width: 599px) {
  .main .faq__inner .element {
    display: none;
  }
}
.main .faq__inner .element__item1 {
  width: 97.7rem;
  border-radius: 2rem;
  background-color: #F8F8F8;
  padding: 2.9rem 3.9rem 6.8rem;
  display: flex;
}
@media screen and (max-width: 599px) {
  .main .faq__inner .element__item1 {
    width: 100%;
  }
}
.main .faq__inner .element__item1 .qIcon {
  font-size: 2.4rem;
  font-weight: 400;
  padding-right: 2.5rem;
  color: #C11516;
  display: inline-block;
  margin-top: -0.5rem;
}
.main .faq__inner .element__item1--textContainer h4 {
  color: #C11516;
  font-size: 1.9rem;
  font-weight: 700;
}
.main .faq__inner .element__item1--textContainer p {
  padding-top: 2.4rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.main .faq__inner .element__item2 {
  width: 97.7rem;
  border-radius: 2rem;
  background-color: #F8F8F8;
  padding: 2.9rem 3.9rem 3.48rem;
  display: flex;
  margin-top: 3.5rem;
}
.main .faq__inner .element__item2 .qIcon {
  font-size: 2.4rem;
  font-weight: 400;
  padding-right: 2.5rem;
  color: #C11516;
  display: inline-block;
  margin-top: -0.5rem;
}
.main .faq__inner .element__item2--textContainer h4 {
  color: #C11516;
  font-size: 1.9rem;
  font-weight: 700;
}
.main .faq__inner .element__item2--textContainer p {
  padding-top: 2.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7857142857;
}
.main .faq__inner .element__item2--textContainer p::nth-child(1) {
  font-weight: 500;
}
.main .faq__inner .element__item2--textContainer .external__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 4.55rem;
}
.main .faq__inner .element__item2--textContainer .external__container a {
  width: 15.972rem;
  background-color: #fff;
  color: #1D2E5C;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.31rem 0 1.46rem;
  border-radius: 100vw;
  border: 0.1rem #1D2E5C solid;
  position: relative;
  transition: 0.3s opacity;
}
.main .faq__inner .element__item2--textContainer .external__container a:nth-child(2) {
  width: 28.943rem;
}
.main .faq__inner .element__item2--textContainer .external__container a:nth-child(3) {
  width: 28.943rem;
}
.main .faq__inner .element__item2--textContainer .external__container a:hover {
  opacity: 0.5;
}
.main .faq__inner .element__item2--textContainer .external__container a .externalLinkIcon {
  width: 1.311rem;
  display: inline-block;
  margin-bottom: 0.1rem;
  filter: brightness(0) saturate(100%) invert(15%) sepia(13%) saturate(5644%) hue-rotate(199deg) brightness(96%) contrast(93%);
  position: absolute;
  right: 2.04rem;
}
.main .faq__inner .element__item3 {
  width: 97.7rem;
  border-radius: 2rem;
  background-color: #F8F8F8;
  padding: 2.9rem 3.9rem 6.1rem;
  display: flex;
  margin-top: 3.8rem;
}
.main .faq__inner .element__item3 .qIcon {
  font-size: 2.5rem;
  font-weight: 400;
  padding-right: 2.5rem;
  color: #C11516;
  display: inline-block;
  margin-top: -0.5rem;
}
.main .faq__inner .element__item3--textContainer h4 {
  color: #C11516;
  font-size: 1.9rem;
  font-weight: 700;
}
.main .faq__inner .element__item3--textContainer p {
  padding-top: 2.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7857142857;
}
.main .faq__inner .element__item3--textContainer p::nth-child(1) {
  font-weight: 500;
}
.main .faq__inner .element__item4 {
  width: 97.7rem;
  border-radius: 2rem;
  background-color: #F8F8F8;
  padding: 2.8rem 3.9rem 3.4rem;
  display: flex;
  margin-top: 3.8rem;
}
.main .faq__inner .element__item4 .qIcon {
  font-size: 2.5rem;
  font-weight: 400;
  padding-right: 2.5rem;
  color: #C11516;
  display: inline-block;
  margin-top: -0.5rem;
}
.main .faq__inner .element__item4--textContainer h4 {
  color: #C11516;
  font-size: 1.9rem;
  font-weight: 700;
}
.main .faq__inner .element__item4--textContainer p {
  padding-top: 2.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7857142857;
}
.main .faq__inner .element__item4--textContainer p::nth-child(1) {
  font-weight: 500;
}
.main .faq__inner .accordions {
  display: none;
}
@media screen and (max-width: 599px) {
  .main .faq__inner .accordions {
    width: 100%;
    display: inline-block;
    margin-top: 3.94rem;
  }
}
.main .faq__inner .accordions details {
  width: 100%;
}
.main .faq__inner .accordions details summary {
  width: 100%;
  height: 6.9rem;
  display: flex;
  background-color: #F8F8F8;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2.5rem 0 2rem;
  margin-top: 1.4rem;
  cursor: pointer;
  line-height: 1.375;
}
.main .faq__inner .accordions details summary::-webkit-details-marker {
  display: none;
}
.main .faq__inner .accordions details summary .accordion__Q--icon {
  font-size: 1.8rem;
  display: inline-block;
  color: #C11516;
  margin-right: 2.6rem;
  font-weight: 400;
}
.main .faq__inner .accordions details summary .accordion__text {
  font-size: 1.6rem;
  color: #C11516;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.main .faq__inner .accordions details summary .accordion__icon {
  width: 0.975rem;
  display: inline-block;
  margin: 0 0 0 auto;
}
.main .faq__inner .accordions details p {
  padding: 1.7rem 2.5rem 1rem 2rem;
  line-height: 1.7857142857;
}
.main .faq__inner .accordions details .buttonItems {
  display: flex;
  flex-flow: column;
}
.main .faq__inner .accordions details .buttonItems a {
  width: 28.943rem;
  height: 4.768rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  border: #132939 solid 0.1rem;
  margin-top: 1.5rem;
  margin-left: 2rem;
}
.main .faq__inner .accordions details .buttonItems a .ExternalIcon {
  width: 1.311rem;
  display: inline-block;
  position: absolute;
  right: 2.47rem;
}
.main .faq__inner .accordions details .buttonItems a .ExternalIcon img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(13%) saturate(5644%) hue-rotate(199deg) brightness(96%) contrast(93%);
}
.main .reception {
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: column;
  margin-top: 20.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 599px) {
  .main .reception {
    margin: 4.41rem 2.3rem 0 0;
  }
}
.main .reception strong {
  width: 52.726rem;
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 599px) {
  .main .reception strong {
    width: 16.966rem;
    margin-bottom: 2.1rem;
  }
}
.main .reception h2 {
  font-size: 3.7rem;
  text-align: center;
  line-height: 1.6486486486;
}
@media screen and (max-width: 599px) {
  .main .reception h2 {
    font-size: 1.8rem;
  }
}
.main .reception__element {
  width: 84.8rem;
  padding-left: 5rem;
  margin-top: 9.34rem;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .main .reception__element {
    width: 29.2rem;
    padding-left: 0.5rem;
    margin-top: 3.3rem;
    margin-bottom: 3.1rem;
  }
}
.main .reception__element--item {
  width: 23rem;
  display: flex;
  align-items: center;
  flex-flow: column;
}
@media screen and (max-width: 599px) {
  .main .reception__element--item {
    width: 9rem;
  }
}
.main .reception__element--item--img {
  width: 14.336rem;
  margin-bottom: 1.62rem;
}
@media screen and (max-width: 599px) {
  .main .reception__element--item--img {
    width: 4.95rem;
    margin-bottom: 0.36rem;
  }
}
.main .reception__element--item--img:nth-child(1) {
  width: 14.214rem;
  margin-bottom: 2.09rem;
}
@media screen and (max-width: 599px) {
  .main .reception__element--item--img:nth-child(1) {
    width: 4.907rem;
    margin-bottom: 0.52rem;
  }
}
.main .reception__element--item h3 {
  font-size: 4.6rem;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .main .reception__element--item h3 {
    font-size: 1.6rem;
  }
}
.main .reception__element--item h3 small {
  display: inline-block;
  font-size: 2.5rem;
}
@media screen and (max-width: 599px) {
  .main .reception__element--item h3 small {
    font-size: 0.8rem;
  }
}
.main .reception__element--item p {
  font-size: 2.1rem;
  line-height: 1.5238095238;
  padding-top: 2.3rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .main .reception__element--item p {
    font-size: 0.8rem;
    padding-top: 0.57rem;
  }
}
.main .form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main .form__main {
  width: 110rem;
  height: auto;
  margin: 10.3rem 0 10.3rem 5.9rem;
}
@media screen and (max-width: 599px) {
  .main .form__main {
    width: 33rem;
    height: auto;
    margin: 0 0.5rem 7.43rem 0;
  }
}

.footer {
  width: 100%;
  height: 20rem;
  background-color: #132939;
  border-radius: 5rem 5rem 0 0;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  .footer {
    width: 33.5rem;
    height: auto;
    margin-left: auto;
    border-radius: 5rem 0 0 0;
  }
}
.footer .topButton {
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 5.6rem;
  top: -3rem;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .footer .topButton {
    display: none;
  }
}
.footer .topButton .topIcon {
  width: 1.523rem;
  height: 1.523rem;
  display: inline-block;
  margin-top: 0.15rem;
  margin-bottom: 0.43rem;
}
.footer .topButton .text {
  color: #C01616;
  letter-spacing: 0;
  padding-top: 0.33rem;
}
.footer__inner {
  width: 110rem;
  margin-top: 3.73rem;
}
@media screen and (max-width: 599px) {
  .footer__inner {
    width: 100%;
    margin-top: 4.49rem;
    margin-left: 3.8rem;
  }
}
.footer__inner--icon {
  width: 28.48rem;
  margin-left: 2.3rem;
  margin-bottom: 0.92rem;
}
@media screen and (max-width: 599px) {
  .footer__inner--icon {
    width: 18.236rem;
    margin: 0;
  }
}
.footer__inner ul {
  display: flex;
  margin-left: 11.8rem;
}
@media screen and (max-width: 599px) {
  .footer__inner ul {
    display: inline-block;
    margin: 0;
  }
}
.footer__inner ul li {
  color: #fff;
  margin-right: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .footer__inner ul li {
    margin: 3rem 0 0 0;
  }
}
.footer__inner ul li a {
  transition: opacity 0.3s;
}
.footer__inner ul li a:hover {
  opacity: 0.5;
}
.footer__inner .list {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.48rem;
  margin-left: 11.8rem;
}
@media screen and (max-width: 599px) {
  .footer__inner .list {
    margin: 5rem 0 0 0;
    flex-flow: column;
  }
}
.footer__inner .list a {
  transition: opacity 0.3s;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .footer__inner .list a {
    margin: 3rem 0 0 0;
    font-size: 1.4rem;
  }
}
.footer__inner .list a:hover {
  opacity: 0.5;
}
.footer__inner .list a .externalLinkIcon {
  width: 0.962rem;
  height: 0.962rem;
  display: flex;
  align-items: center;
  margin-left: 0.52rem;
}
.footer__inner .list a:nth-child(2) {
  margin-left: 3.52rem;
}
@media screen and (max-width: 599px) {
  .footer__inner .list a:nth-child(2) {
    margin: 3rem 0 0 0;
  }
}
.footer__inner .list small {
  display: inline-block;
  color: #fff;
  margin-left: auto;
  margin: 0 0 2.18rem auto;
}
@media screen and (max-width: 599px) {
  .footer__inner .list small {
    margin: 10rem auto 3rem;
  }
}/*# sourceMappingURL=style.css.map */