@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
#main-box {
  margin-top: 700px;
}

@media (max-width: 1000px) {
  #main-box {
    margin-top: 550px;
  }
}
@media (max-width: 790px) {
  #main-box {
    margin-top: 500px;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.sp {
  display: none;
}

@media (max-width: 790px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  background: white;
  width: 100%;
  box-shadow: 0px 3px 5px 0px rgb(145, 144, 144);
}
.header__content {
  padding: 10px;
}
.header__logo {
  width: 233px;
}
.header__item {
  margin: 0 12.5px;
  text-align: center;
}
.header__link {
  color: black;
  font-size: 15px;
  font-weight: bold;
}
.header__link--cta {
  color: white;
  font-weight: 700;
  font-size: 19px;
}
.header__cta {
  background: #FF6E01;
  padding: 15px 40px;
  color: white;
  border-radius: 20px;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}
.header__cta:hover {
  background: #BF4E11;
}

@media (max-width: 1100px) {
  .header__logo {
    width: 180px;
  }
  .header__link {
    font-size: 13px;
  }
  .header__item {
    margin: 0 7.5px;
  }
  .header__cta {
    padding: 15px 30px;
  }
}
@media (max-width: 790px) {
  .header__content {
    padding: 2.5px 2.5px 2.5px 15px;
  }
  .header__logo {
    width: 120px;
  }
  .header__cta {
    padding: 15px 50px;
    margin-top: 20px;
  }
  .header__link {
    font-size: 17px;
  }
  .header__item {
    margin: 20px auto;
  }
}
#menu-toggle-icon {
  margin: 12.5px;
  width: 32px;
  height: 27px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

#menu-toggle-icon > span {
  transition-duration: 0.5s;
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
}

#menu-toggle-icon > span > .menu-toggle-button-line {
  position: absolute;
  width: 100%;
  height: 3px;
  top: -0.15rem;
  background-color: #FF6E01;
}

#menu-toggle-icon span:nth-of-type(1) {
  top: 15%;
}

#menu-toggle-icon span:nth-of-type(2) {
  top: 50%;
}

#menu-toggle-icon span:nth-of-type(3) {
  top: 85%;
}

#menu-toggle-icon.active span:nth-of-type(1) {
  top: 50%;
  /* transform: rotate(45deg); */
  transform: rotate(135deg);
  /* transform: rotateZ(135deg) rotateX(180deg); */
}

#menu-toggle-icon.active span:nth-of-type(2) {
  /* top: 50%; */
  transform: rotateY(90deg);
  opacity: 0;
}

#menu-toggle-icon.active span:nth-of-type(3) {
  top: 50%;
  /* transform: rotate(-45deg); */
  transform: rotate(-135deg);
  /* transform: rotateZ(-135deg) rotateX(-180deg); */
}

.menu {
  position: fixed;
  top: 58px;
  left: 0;
  z-index: 3;
  background: white;
  width: 100%;
  height: 100%;
  display: none;
}
.menu--active {
  display: block;
  animation-name: showMenu;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective: 10;
  -webkit-perspective: 10;
}
.menu--hidden {
  animation-name: hiddenMenu;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective: 10;
  -webkit-perspective: 10;
}
.menu__content {
  margin-top: 40px;
}
.menu__item {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin: 15px;
}

@keyframes showMenu {
  0% {
    height: 0;
    opacity: 0;
  }
  90% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes hiddenMenu {
  0% {
    display: block;
  }
  100% {
    height: 0;
    opacity: 0;
    display: none;
  }
}
.main {
  margin-top: 77px;
}
.main.showPopup::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
}

@media (max-width: 1000px) {
  .main {
    margin-top: 550px;
  }
}
@media (max-width: 790px) {
  .main {
    margin-top: 57px;
  }
}
.fvSection {
  background-image: url(../../img/lp/fv_pc_img.png);
  width: 100%;
  min-height: 650px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.fvSection--02 {
  background-image: url(../../img/lp/fv_background.png);
}
.fvSection__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.fvSection__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 14.25%;
  margin-top: 0;
}
.fvSection__wrap--02 {
  margin: 0;
}
.fvSection__titleWrap {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.fvSection__title {
  background: white;
  text-align: center;
  padding: 2.5px 10px;
}
.fvSection__title--sub {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: bolder;
  line-height: 1.4;
  margin-bottom: 5px;
}
.fvSection__title--main {
  margin-top: 5px;
  font-size: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: bolder;
  line-height: 1.4;
}
.fvSection__title--highlight {
  font-size: 60px;
  color: #FF6E01;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 0.8;
}
.fvSection__title--big {
  font-size: 100px;
}
.fvSection__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
}
.fvSection__item {
  background: #683109;
  color: white;
  width: calc(50% - 5px);
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  border-radius: 10px;
  padding: 5px 0 10px;
}
.fvSection__item span {
  font-size: 60px;
}

@media (max-width: 1000px) {
  .main-box {
    margin-top: 450px;
  }
  .fvSection {
    min-height: 450px;
  }
  .fvSection__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 14.25%;
    margin-top: 3%;
  }
  .fvSection__titleWrap {
    margin-bottom: 20px;
  }
  .fvSection__title {
    background: white;
    padding: 2.5px 10px;
  }
  .fvSection__title--sub {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .fvSection__title--main {
    margin-top: 5px;
    font-size: 38px;
  }
  .fvSection__title--highlight {
    font-size: 64px;
  }
  .fvSection__title--big {
    font-size: 80px;
  }
}
@media (max-width: 790px) {
  .main-box {
    margin-top: 560px;
  }
  .fvSection {
    height: 500px;
    background-image: url(../..//img/lp/fv_sp_img.png);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .fvSection--02 {
    background-image: url(../../img/lp/fv_background-sp.png);
    justify-content: start;
    padding-top: 20px;
    margin-bottom: 375px;
  }
  .fvSection__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 0;
    height: 90%;
    justify-content: space-between;
    align-items: start;
  }
  .fvSection__titleWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .fvSection__title {
    padding: 1.5px 5px;
  }
  .fvSection__title--sub {
    font-size: 20px;
  }
  .fvSection__title--main {
    margin-bottom: 5px;
    font-size: 24px;
    margin-top: 2.5px;
    line-height: 1.2;
    padding: 0px 5px 2.5px;
  }
  .fvSection__title--highlight {
    font-size: 40px;
  }
  .fvSection__title--big {
    font-size: 50px;
    line-height: 0.75;
  }
  .fvSection__list {
    margin-top: 5px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
  }
  .fvSection__item {
    font-size: 17.5px;
    padding: 2.5px 15px 7.5px;
    letter-spacing: 0.05em;
    font-weight: 600;
    width: fit-content;
  }
  .fvSection__item span {
    font-size: 30px;
  }
}
.fvSection__inner .wpcf7 {
  flex: 1;
  max-width: 100%;
  width: 100%;
}

.ctaSection {
  position: relative;
  z-index: 2;
}
.ctaSection__btnWrap {
  position: relative;
}
.ctaSection__btnWrap:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 12px;
  left: 3px;
  /*影の形状*/
  width: 590px;
  height: 106px;
  border-radius: 200px;
  background-color: rgba(0, 0, 0, 0.25);
}
.ctaSection__btn {
  background: #FF6E01;
  border: 6px solid #FFFFFF;
  border-radius: 200px;
  width: 575px;
  height: 94px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.ctaSection__btn:hover {
  background: #BF4E11;
  cursor: pointer;
  transform: translate(3px, 12px);
}
.ctaSection__btn--form {
  width: 70%;
  margin: 20px auto;
}
.ctaSection__text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 28px;
  color: #FFFFFF;
  line-height: 1.4;
}
.ctaSection__img {
  margin-left: 25px;
}
.ctaSection__heading {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

@media (max-width: 1000px) {
  .ctaSection__btn {
    border: 4.7px solid #FFFFFF;
    border-radius: 160px;
    width: 473px;
    height: 75px;
  }
  .ctaSection__btn:hover {
    transform: translate(2.5px, 7px);
  }
  .ctaSection__btnWrap:before {
    content: "";
    z-index: -1;
    top: 7px;
    left: 2.5px;
    width: 482.4px;
    height: 84.4px;
    border-radius: 100px;
  }
  .ctaSection__text {
    font-size: 22px;
  }
  .ctaSection__img {
    margin-left: 20px;
    width: 15px;
  }
}
@media (max-width: 799px) {
  .ctaSection__btn {
    border: 3px solid #FFFFFF;
    border-radius: 100px;
    width: 360px;
    height: 60px;
  }
  .ctaSection__btn:hover {
    transform: translate(2.5px, 7px);
  }
  .ctaSection__btn--form {
    width: 100%;
  }
  .ctaSection__btnWrap:before {
    top: 7px;
    left: 2.5px;
    width: 366px;
    height: 66px;
    border-radius: 100px;
  }
  .ctaSection__text {
    font-size: 16px;
  }
  .ctaSection__img {
    margin-left: 10px;
    width: 10px;
  }
  .ctaSection__heading {
    font-size: 17.5px;
  }
}
.bottom-cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  z-index: -1;
}

.title {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.45;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.title::before {
  content: "";
  display: block;
  width: 36px;
  height: 4.5px;
  background-color: #FF6E01;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 790px) {
  .title {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .title::before {
    width: 24px;
    height: 3px;
  }
  .bottom-cta-btn {
    right: 0;
    width: 100%;
    bottom: -5px;
  }
}
.content {
  padding: 60px 0;
}

@media (max-width: 790px) {
  .content {
    padding: 30px 0;
  }
}
.centerCenterVerti {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.centerCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.startCenterVerti {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.startCenter {
  display: flex;
  justify-content: start;
  align-items: center;
}

.media {
  margin-bottom: 30px;
}
.media__item {
  width: fit-content !important;
}
.media__list {
  align-items: center !important;
  gap: 50px !important;
}
.media__img--4 {
  width: 475px;
}
.media__img--5 {
  width: 250px;
}
.media__img--6 {
  width: 343px;
}

@media (max-width: 1000px) {
  .media__item {
    margin: 0 20px;
  }
  .media__img {
    width: 90px;
  }
  .media__img--side {
    width: 200px;
  }
}
@media (max-width: 790px) {
  .media__item {
    margin: 0 10px;
  }
  .media__img {
    width: 150px;
  }
  .media__img--small {
    width: 100px;
  }
  .media__list {
    gap: 10px !important;
  }
}
.xkitchen {
  background-image: url("../..//img/lp/xkitchen-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
.xkitchen__img {
  width: 75%;
}

@media (max-width: 790px) {
  .xkitchen {
    background-image: url("../..//img/lp/xkitchen-background-sp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .xkitchen__img {
    width: 100%;
    max-width: 410px;
  }
}
.counseling {
  position: relative;
}
.counseling__content {
  padding-top: 0;
}
.counseling__title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}
.counseling__captionWrap {
  margin-bottom: 25px;
}
.counseling__caption {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  color: white;
  margin: 0 10px;
}
.counseling__caption--black {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin: 10px;
}
.counseling__wrap {
  background: #865A3A;
  position: relative;
  padding-top: 60px;
  margin-bottom: 120px;
}
.counseling__wrap::before, .counseling__wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-bottom: 100px solid transparent;
}
.counseling__wrap::before {
  left: 0;
  border-right: 50vw solid #865A3A;
}
.counseling__wrap::after {
  right: 0;
  border-left: 50vw solid #865A3A;
}
.counseling__item {
  position: relative;
  margin: 0 15px;
}
.counseling__itemWrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  top: 15%;
}
.counseling__itemText {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  margin-left: 10px;
  text-align: center;
}
.counseling__bottomImg {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 900px) {
  .counseling__title {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
  }
  .counseling__captionWrap {
    margin-bottom: 25px;
  }
  .counseling__caption {
    text-align: center;
  }
  .counseling__caption--black {
    font-size: 14px;
    margin: 10px auto 5px;
  }
  .counseling__wrap {
    padding-top: 30px;
    margin-bottom: 60px;
  }
  .counseling__wrap::before, .counseling__wrap::after {
    border-bottom: 50px solid transparent;
  }
  .counseling__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 410px;
  }
  .counseling__item {
    margin: 2.5px 0;
  }
  .counseling__item--left {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .counseling__item--right {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
  }
}
.support {
  background-image: url("../..//img/lp/support-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.support__caption {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  margin-bottom: 50px;
}
.support__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 62.5%;
  min-width: 870px;
}
.support__item {
  background: #F0822D;
  border-radius: 8px;
  width: 33%;
  margin: 0 20px;
  padding: 20px 15px;
}
.support__heading {
  color: white;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 20px;
}
.support__img {
  margin-bottom: 20px;
}
.support__text {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .support__item {
    margin: 0 10px;
  }
}
@media (max-width: 790px) {
  .support {
    background-image: url("../..//img/lp/support-background-sp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .support__content {
    width: 90%;
    margin: 0 auto;
  }
  .support__caption {
    margin-bottom: 20px;
  }
  .support__list {
    width: 75%;
    min-width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .support__item {
    width: 100%;
    margin: 10px 0;
    padding: 30px 20px;
    max-width: 410px;
  }
}
.merit {
  background: #FFE2B7;
}
.merit__caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 30px;
}
.merit__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 80%;
  min-width: 990px;
}
.merit__item {
  background: white;
  border: 4px solid #000000;
  box-shadow: 2px 4px 0px #000000;
  border-radius: 20px;
  margin: 0 10px;
  position: relative;
  padding: 25px 15px;
  width: 275px;
}
.merit__heading {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  color: #F0822D;
  margin-left: 20px;
}
.merit__headinWrap {
  margin-bottom: 25px;
  margin-left: 10px;
}
.merit__text {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.42;
  text-align: center;
  color: #683109;
}
.merit__topImg {
  position: absolute;
  top: 12px;
  right: -2px;
}

@media (max-width: 1100px) {
  .merit__list {
    min-width: 800px;
  }
  .merit__item {
    padding: 20px 15px;
  }
}
@media (max-width: 790px) {
  .merit__caption {
    width: 90%;
    margin: 0 auto 20px;
  }
  .merit__wrap {
    overflow-x: scroll;
    width: 95%;
    margin-left: auto;
    padding-bottom: 20px;
  }
  .merit__item {
    margin: 0;
    width: 275px;
  }
  .merit__item:last-child {
    margin-right: 30px;
  }
  .merit__list {
    gap: 20px;
    min-width: auto;
    width: fit-content;
  }
}
.brand__swiper .swiper-wrapper,
.voice__swiper .swiper-wrapper,
.media__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.brand__swiper .swiper-slide img {
  height: 171px;
  width: 240px;
  border-radius: 15px;
}

.brand__swiper .swiper-slide {
  margin: 0 10px !important;
}

@media (max-width: 790px) {
  .brand__swiper .swiper-slide img {
    width: 160px;
    height: 114px;
  }
  .brand__swiper .swiper-slide {
    margin: 0 2.5px !important;
  }
}
.brand {
  margin-top: 40px;
}
.brand__caption {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
}
.brand__leadWrap {
  position: relative;
  margin-bottom: 30px;
}
.brand__lead {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 17.5%;
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 27px;
  line-height: 1.44;
}
.brand__wrap {
  margin: 50px auto;
}
.brand__list {
  width: 50%;
  margin-bottom: 30px;
  min-width: 600px;
  cursor: pointer;
}
.brand__item {
  background: #F0822D;
  margin-bottom: 20px;
  box-shadow: 4.5px 6px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.brand__item:hover {
  background: #ac5c20;
}
.brand__itemImg {
  border-radius: 0 15px 15px 0;
  width: 287px;
}
.brand__textWrap {
  margin: 0 10px 0 30px;
  cursor: pointer;
}
.brand__itemText {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  color: #FFFFFF;
}
.brand__heading {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.45;
  color: white;
  margin-left: 7.5px;
}
.brand__swiper {
  overflow: hidden;
}

@media (max-width: 790px) {
  .brand {
    margin-top: 30px;
  }
  .brand__caption {
    margin-bottom: 30px;
    width: 95%;
    margin: 0 auto 25px;
  }
  .brand__leadWrap {
    margin-bottom: 15px;
  }
  .brand__img {
    width: 358px;
    height: 87.75px;
  }
  .brand__lead {
    font-size: 18px;
  }
  .brand__wrap {
    margin: 25px auto;
  }
  .brand__list {
    width: 95%;
    margin-bottom: 10px;
    min-width: auto;
    max-width: 410px;
  }
  .brand__item {
    margin-bottom: 12.5px;
  }
  .brand__textWrap {
    margin: 0 5px 0 15px;
  }
  .brand__itemText {
    font-size: 14px;
  }
  .brand__heading {
    font-size: 16px;
    margin-left: 5px;
  }
  .brand__clickImg {
    height: 13px;
  }
  .brand__itemImg {
    width: 140px;
  }
}
.voice {
  background: #F1EFEB;
}
.voice__caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 30px;
}
.voice__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  min-width: 960px;
}
.voice__item {
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  flex: 1;
  margin: 0 10px;
}
.voice__img {
  border-radius: 20px 20px 0 0;
  width: 100%;
}
.voice__heading {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  color: #F0822D;
  margin-bottom: 10px;
}
.voice__subHeading {
  font-weight: 900;
  font-size: 12px;
  line-height: 1.4;
  color: #683109;
  margin-bottom: 10px;
}
.voice__text {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.67;
}
.voice__textWrap {
  padding: 10px 20px;
}

@media (max-width: 1000px) {
  .voice__list {
    min-width: 840px;
  }
  .voice__item {
    margin: 0 5px;
  }
  .voice__textWrap {
    padding: 10px;
  }
}
@media (max-width: 790px) {
  .voice__list {
    min-width: auto;
    display: none;
  }
  .voice__item {
    margin: 0;
  }
  .voice__content {
    display: block;
    margin: 0 auto;
  }
  .voice__caption {
    width: 90%;
    margin: 0 auto 15px;
  }
  .voice__img {
    border-radius: 20px 20px 0 0;
    width: 270px !important;
  }
  .voice__textWrap {
    padding: 10px 20px;
  }
  .voice__swiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
  }
  .voice__swiper .swiper-wrapper {
    width: 100%;
    margin-left: 10px;
    margin-top: 10px;
  }
  .voice__swiper .swiper-slide {
    width: 270px !important;
    height: 515px !important;
  }
}
.swiper-pagination-bullet {
  width: 80px !important;
  height: 10px !important;
  margin: 0 2.5px !important;
  border-radius: 10px !important;
  background: #BFBFBF;
}
.swiper-pagination-bullet-active {
  background: #F0822D !important;
}

.swiper-pagination {
  bottom: 0px !important;
}

.qanda {
  background: #FFE2B7;
}
.qanda__caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 50px;
}
.qanda__list {
  width: 60%;
}
.qanda__item {
  width: 100%;
}
.qanda__qWrap {
  background: #FFFFFF;
  border-radius: 26px;
  padding: 15px 30px;
  margin-bottom: 15px;
  cursor: pointer;
}
.qanda__qWrap:hover {
  background: #e0e0e0;
}
.qanda__qText {
  font-weight: 900;
  font-size: 18.2px;
  line-height: 1.42;
}
.qanda__qImg--active {
  animation-name: rotateDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective: 10;
  -webkit-perspective: 10;
}
.qanda__qImg--hidden {
  animation-name: rotateUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective: 10;
  -webkit-perspective: 10;
}
.qanda__aText {
  font-weight: 700;
  font-size: 18.2px;
  line-height: 1.4;
  padding: 0 30px 15px;
  display: none;
  height: 0;
}
.qanda__aText--active {
  display: block;
  animation-name: showQaAAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective: 10;
  -webkit-perspective: 10;
}

@keyframes showQaAAnime {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
@keyframes rotateDownAnime {
  0% {
    transform: rotateX(0);
  }
  50% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(180deg);
  }
}
@keyframes rotateUpAnime {
  0% {
    transform: rotateX(180deg);
  }
  50% {
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(0);
  }
}
@media (max-width: 790px) {
  .qanda__content {
    width: 95%;
    margin: 0 auto;
  }
  .qanda__caption {
    width: 90%;
    margin: 0 auto 25px;
  }
  .qanda__list {
    width: 100%;
    max-width: 410px;
  }
  .qanda__qImg {
    height: 12.5px;
  }
  .qanda__qWrap {
    padding: 15px 20px;
    margin-bottom: 10px;
  }
  .qanda__qText {
    font-size: 14px;
  }
  .qanda__aText {
    font-size: 14px;
    padding: 0 15px 15px;
  }
}
.footer {
  background: #424242;
  color: white;
  padding: 50px 50px;
}
.footer__logo {
  margin-bottom: 20px;
}
.footer__img {
  margin-bottom: 10px;
}
.footer__caption {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.footer__link {
  font-size: 12px;
  margin: 0 10px;
}

@media (max-width: 790px) {
  .footer {
    padding: 30px 30px 100px;
  }
  .footer__logo {
    margin-bottom: 10px;
  }
  .footer__link {
    margin: 0 5px;
  }
}
.card {
  width: 100%;
  height: 100vh;
  background: rgba(86, 86, 85, 0.59);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
}
.card--active {
  display: block;
  animation-name: showAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective: 10;
  -webkit-perspective: 10;
}
.card__content {
  background: white;
  width: 358px;
  height: 641px;
  position: fixed;
  inset: 0;
  border-radius: 10px;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.card__titleWrap {
  background: #F0822D;
  text-align: center;
  color: #FFFFFF;
  border-radius: 10px 10px 0 0;
  position: relative;
  padding: 15px 0;
  margin-bottom: 10px;
}
.card__caption {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.card__title {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.4;
}
.card__closeImg {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.card__list {
  margin: 0 auto;
  width: 90%;
  padding: 7.5px 0;
}
.card__item {
  margin-bottom: 25px;
}
.card__headingWrap {
  margin-bottom: 10px;
}
.card__heading {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.1;
  margin-left: 10px;
}
.card__lead {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 17.5px;
}
.card__menuWrap {
  margin-right: 10px;
}
.card__menuLead {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: white;
  background: #BFBFBF;
  border-radius: 100px;
  padding: 0 10px;
  margin-bottom: 5px;
}
.card__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.card__text--center {
  text-align: center;
  margin-bottom: 5px;
}
.card__text--bottom {
  margin-top: 5px;
  margin-left: 10px;
}
.card__menuImg {
  width: 175px;
  border-radius: 10px;
}

@keyframes showAnime {
  0% {
    opacity: 0;
    color: #000;
  }
  90% {
    opacity: 1;
    color: #000;
  }
}
.award__item {
  position: relative;
}
.award__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  font-size: 27.5px;
  font-weight: 800;
  line-height: 1.2;
  width: 100%;
}
.award__list {
  gap: 30px;
}
.award__img {
  width: 100%;
}

@media (max-width: 1000px) {
  .award__item {
    width: calc(33% - 60px);
  }
  .award__text {
    font-size: 24px;
  }
  .award__list {
    gap: 30px;
  }
}
@media (max-width: 790px) {
  .award__item {
    width: calc(50% - 20px);
  }
  .award__text {
    font-size: 17.5px;
  }
  .award__list {
    gap: 10px 20px;
    flex-wrap: wrap;
  }
}
.banner {
  width: 375px;
  display: block;
}
.banner .pc {
  width: 100%;
  display: block;
}
.banner .sp {
  width: 100%;
  display: none;
}

@media (max-width: 790px) {
  .banner {
    width: 100%;
  }
  .banner .pc {
    width: 100%;
    display: none;
  }
  .banner .sp {
    width: 100%;
    display: block;
  }
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  width: 500px;
  opacity: 0;
}
.popup__wrap, .popup__wrap img {
  width: 100%;
}
.popup__closeImg {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  z-index: 2000;
}

@media (max-width: 790px) {
  .popup {
    width: 92.5%;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=index.css.map */