/*Theme Name:AirEra*/

@charset "UTF-8";

/* Reset */
* {
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/*--------------------------
* responsive
--------------------------*/
/*--------------------------
* 共通  フォント
--------------------------*/
/*--------------------------
* header
--------------------------*/
/*--------------------------
* hero
--------------------------*/
.hero {
  position: relative;
}

.hero__bg {
  position: relative;
  height: 300px;
  background-image: url(img/header/sub/main.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
  background: linear-gradient(90deg, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
}

.hero .page_name {
  position: absolute;
  bottom: 24px;
  left: 10%;
  z-index: 998;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hero .page_name {
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
}

.hero .page_name h1 {
  text-align: center;
  font-size: 3.2em;
  font-weight: 800;
  border-bottom: solid 1px #fff;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .hero .page_name h1 {
    font-size: 2.4em;
  }
}

.hero .page_name .breadcrumb {
  height: 40px;
  margin-top: 8px;
  word-break: keep-all;
  white-space: nowrap;
}

.hero .page_name .breadcrumb::-webkit-scrollbar {
  height: 5px;
}

.hero .page_name .breadcrumb::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 960px) {
  .hero .page_name .breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.hero .page_name .breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}

.hero .page_name .breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #fff;
}

.hero .page_name .breadcrumb li:last-child:after {
  content: "";
}

.hero .page_name .breadcrumb li a {
  margin: 0 16px;
  color: #fff;
  text-decoration: none;
}

.hero .page_name-en {
  position: absolute;
  bottom: 0px;
  right: 10%;
  z-index: 998;
  font-size: 5rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hero .page_name-en {
    display: none;
  }
}

/*----------------------------
*  hamburger メニュー
*----------------------------*/
#js-hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  #js-hamburger {
    display: block;
  }
}

.hamburger {
  width: 60px;
  height: 60px;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
  transition: all 0.6s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

.hamburger span:nth-child(1) {
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

.hamburger span:nth-child(3) {
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
}

.active .hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.active .hamburger span:nth-child(2) {
  width: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.active .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #000;
}

.active .drawer {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 9999;
}

/*----------------------------
*  drawer
*----------------------------*/
.drawer {
  display: none;
}

@media screen and (max-width: 768px) {
  .drawer {
    display: block;
    position: fixed;
    z-index: -10;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    will-change: auto;
    display: block;
    overflow-y: scroll;
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }

  .drawer__container {
    height: 100%;
    padding-top: 20px;
    max-width: 720px;
    position: relative;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .drawer__wrapper {
    z-index: 2;
    position: relative;
    padding-right: 5px;
    padding-left: 5px;
  }

  .drawer__logo {
    width: 100px;
    margin-bottom: 1rem;
  }

  .drawer__nav--link {
    display: inline-block;
    overflow: hidden;
    color: #554c49;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-decoration: none;
  }

  .drawer .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .drawer .row .sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .drawer .drawer__nav {
    margin: 0;
    padding: 0;
    color: #554c49;
    list-style: none;
  }

  .drawer .drawer__nav.slide-in span {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  .drawer .drawer__nav li {
    margin-bottom: 13px;
    padding: 0.4rem 0;
  }

  .drawer .drawer__nav li a {
    display: inline-block;
    overflow: hidden;
    color: #554c49;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-decoration: none;
  }

  .drawer .drawer__nav li span {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1.1;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }

  .drawer .drawer__nav li span .en {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .drawer .drawer__nav li span .ja {
    margin-top: 4px;
    font-size: 0.75rem;
  }
}

.drawer .drawer__copyright {
  padding: 40px 0;
  font-size: 0.6875rem;
  text-align: center;
}

/*----------------------------
*  header
*----------------------------*/
.header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-bg-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: #fcf9f4;
  content: "";
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  max-width: 200px;
  margin-right: 40px;
  margin-bottom: 0;
  padding: 15px 0 15px 25px;
  font-size: 1rem;
  line-height: 100%;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header__logo--link {
  position: relative;
}

.header__logo--link .logo-big {
  width: 120px;
  height: 120px;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header__logo--link .logo-small {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.1;
  transition-delay: 0.1;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*----------------------------
*  globalNav
*----------------------------*/
.global__nav {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

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

.global__nav--list {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.global__nav--list li a {
  display: block;
  padding: 0 30px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: wrap;
  padding: 1.2rem;
}

.common .hamburger span {
  background: #000;
}

.common .global__nav--list a {
  color: #554c49;
}

.common .global__nav--list a:before {
  background: #000;
}

.common .header-bg-el {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.common .header__logo--link {
  display: block;
  height: 48px;
}

.common .header__logo--link .logo-big {
  width: 48px;
  height: 48px;
  opacity: 0;
}

.common .header__logo--link .logo-small {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  word-wrap: break-word;
  scrollbar-width: none;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.sec {
  padding: min(8vw, 80px) 0;
  margin: 0 auto;
}

.sec .sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sec__title {
  text-align: center;
}

.sec__title h2 {
  display: inline-block;
  font-size: 3.2rem;
  margin-bottom: 24px;
  padding: 0 30px 4px;
  border-bottom: solid 2px #707070;
  color: #707070;
}

@media screen and (max-width: 768px) {
  .sec__title h2 {
    font-size: 2.4rem;
  }
}

.globalcontact {
  text-align: center;
}

.globalcontact .globalcontact-content {
  background-color: #E4E4E4;
  border-radius: 50px;
  padding: 42px;
}

@media screen and (max-width: 768px) {
  .globalcontact .globalcontact-content {
    padding: 32px;
  }
}

@media screen and (max-width: 375px) {
  .globalcontact .globalcontact-content {
    padding: 32px 16px;
  }
}

.globalcontact .globalcontact-content .globalcontact-text {
  margin-bottom: 32px;
}

@media screen and (max-width: 375px) {
  .globalcontact .globalcontact-content .globalcontact-text {
    margin-bottom: 16px;
  }
}

.sec__btn {
  text-align: center;
}

.btn {
  display: inline-block;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 2rem 6rem;
  border-radius: 100vh;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(rgb(247, 93, 139)), to(rgb(254, 220, 64)));
  background: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
}

.btn::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn:hover::before {
  right: 25px;
}

footer {
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
  background: linear-gradient(90deg, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
}

footer .sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

footer .sec__wrapper .footer-nav {
  padding: 2rem;
}

@media screen and (max-width: 768px) {
  footer .sec__wrapper .footer-nav {
    padding: 1rem 2rem;
  }
}

footer .sec__wrapper .footer-nav .pc-gnavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 3% 0;
}

footer .sec__wrapper .footer-nav .pc-gnavi__list li span a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #554c49;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: wrap;
  padding: 1.2rem;
}

@media screen and (max-width: 768px) {
  footer .sec__wrapper .footer-nav .pc-gnavi__list li span a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  footer .sec__wrapper .footer-nav .pc-gnavi__list li span a {
    font-size: 1rem;
  }
}

footer .copyright {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 50px 0 20px;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 0.3rem;
    margin: 0 0 20px;
  }
}

/*--------------------------
* 共通
--------------------------*/
/*--------------------------
* hero
--------------------------*/
.main-hero {
  position: relative;
}

.main-hero__bg {
  position: relative;
  height: 700px;
  background-image: url(img/header/main/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media screen and (max-width: 1200px) {
  .main-hero__bg {
    background-position: right 65% bottom 10%;
  }
}

.main-hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
  background: linear-gradient(90deg, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
}

.main-hero .company_name {
  position: absolute;
  width: 500px;
  height: 300px;
  top: 55%;
  left: 5%;
  z-index: 998;
}

@media screen and (max-width: 1200px) {
  .main-hero .company_name {
    width: 350px;
    height: 200px;
    top: 35%;
  }
}

@media screen and (max-width: 375px) {
  .main-hero .company_name {
    left: 0;
    width: 200px;
    height: auto;
  }
}

.main-hero .catchcopy {
  position: absolute;
  width: 500px;
  height: 300px;
  bottom: 150px;
  right: 8%;
  z-index: 998;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .main-hero .catchcopy {
    background-color: #3D475A;
    width: 60%;
    height: auto;
    position: relative;
    padding: 2rem;
    margin: 0 0 0 auto;
    bottom: 150px;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .main-hero .catchcopy {
    width: 100%;
  }
}

.main-hero .catchcopy__top,
.main-hero .catchcopy__bot {
  font-size: 3rem;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {

  .main-hero .catchcopy__top,
  .main-hero .catchcopy__bot {
    font-size: 2rem;
  }
}

.main-hero .catchcopy__top span {
  color: rgb(247, 93, 139);
  font-weight: 900;
}

.main-hero .catchcopy__mid {
  display: inline-block;
  margin: 24px 0;
  font-size: 5rem;
  font-weight: 700;
  padding: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(247, 93, 139)), to(rgb(254, 220, 64)));
  background: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
}

@media screen and (max-width: 768px) {
  .main-hero .catchcopy__mid {
    font-size: 3rem;
  }
}

/*--------------------------
* support AND training
--------------------------*/
.support__content,
.training__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {

  .support__content,
  .training__content {
    display: block;
  }
}

.support__img,
.training__img {
  width: 50%;
}

@media screen and (max-width: 768px) {

  .support__img,
  .training__img {
    width: 100%;
  }
}

.support__text,
.training__text {
  width: 50%;
}

@media screen and (max-width: 768px) {

  .support__text,
  .training__text {
    width: 100%;
  }
}

.support__img {
  padding-right: 32px;
  position: relative;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  z-index: 9;
}

@media screen and (max-width: 768px) {
  .support__img {
    width: 80%;
    margin: 0 auto;
    padding-right: 0px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 375px) {
  .support__img {
    width: 100%;
  }
}

.support__img::before {
  position: absolute;
  top: -50px;
  left: -200px;
  content: "";
  width: 100%;
  height: 500px;
  background-image: url(img/main/layout/bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .support__img::before {
    content: none;
  }
}

.support__img figure {
  position: relative;
  z-index: 2;
}

.support__text {
  padding-left: 32px;
}

@media screen and (max-width: 768px) {
  .support__text {
    padding-left: 0px;
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 375px) {
  .support__text {
    width: 100%;
  }
}

.training__text {
  padding-right: 32px;
  z-index: 9;
}

@media screen and (max-width: 768px) {
  .training__text {
    padding-right: 0px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 375px) {
  .training__text {
    width: 100%;
  }
}

.training__text figure {
  position: relative;
  z-index: 2;
}

.training .sec__btn {
  margin-top: 32px;
}

.training__img {
  padding-left: 32px;
  position: relative;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

@media screen and (max-width: 768px) {
  .training__img {
    padding-left: 0px;
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 375px) {
  .training__img {
    width: 100%;
  }
}

.training__img::before {
  position: absolute;
  top: -10px;
  left: 10px;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: solid 3px rgb(254, 220, 64);
  -o-border-image: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
  border-image: -webkit-gradient(linear, left top, right top, from(rgb(247, 93, 139)), to(rgb(254, 220, 64)));
  border-image: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
  border-image-slice: 1;
  z-index: 1;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

@media screen and (max-width: 768px) {
  .training__img::before {
    width: 100%;
    height: 100%;
    left: 0;
  }
}

/*--------------------------
* system
--------------------------*/
.system__text {
  max-width: 650px;
  margin: 0 auto;
}

.system__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .system__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.system__list li {
  border-radius: 30px;
  padding: 8% 5%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
  height: 350px;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .system__list li {
    padding: 5%;
  }
}

.system__list li:nth-child(1) {
  width: 100%;
  height: 100%;
  background-image: url(img/main/system/system-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.system__list li:nth-child(2) {
  width: 100%;
  height: 100%;
  background-image: url(img/main/system/system-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.system__list li:nth-child(3) {
  width: 100%;
  height: 100%;
  background-image: url(img/main/system/system-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.system__list li::before {
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
  background: linear-gradient(90deg, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
  content: "";
  z-index: -1;
}

.system__list li h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 3rem 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .system__list li h3 {
    padding: 0 0 3% 0;
  }
}

.system__list li .comment {
  height: 100%;
  border-radius: 10px;
  padding: 1rem;
  background-color: #fff;
  opacity: 0.8;
}

@media screen and (max-width: 1200px) {
  .system__list li .comment {
    padding: 3%;
  }
}

/*--------------------------
* question
--------------------------*/
.question__list {
  max-width: 700px;
  margin: 0 auto;
}

.question__list li {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1px;
  /* 質問 */
  /* 答え */
}

.question__list li input {
  position: absolute;
  opacity: 0;
  /* 質問を開いた時の仕様 */
  /* --アイコン */
  /* --答えの高さ */
}

.question__list li input:checked~label {
  color: rgb(247, 93, 139);
}

.question__list li input:checked~.actab-content {
  max-height: 40em;
}

.question__list li input[type=checkbox]+label::after {
  content: "+";
  font-size: 2rem;
}

.question__list li input[type=checkbox]:checked+label::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.question__list li label {
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  display: block;
  margin: 0;
  padding: 1em 2.5em 1em 1em;
  cursor: pointer;
  border-bottom: 1px solid #000;
  /* 質問をクリックした時のアイコンの動き */
}

.question__list li label::after {
  line-height: 1.6;
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 3em;
  margin-top: -12.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.question__list li label:hover {
  color: rgb(247, 93, 139);
}

.question__list li .actab-content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  color: #000;
  background: rgba(247, 93, 139, 0.1);
}

.question__list li .actab-content p {
  margin: 1em;
}

.question__list li .actab-content span {
  color: rgb(247, 93, 139);
}

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


.training-top {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .training-top .sec__wrapper {
    width: 100%;
  }

  .training-top .sec__wrapper .sec__title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.training-top .training-text {
  margin-top: 40px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .training-top .training-text {
    padding: 20px 40px;
    margin-top: 0;
  }
}

.flow {
  text-align: center;
}

.flow .sec__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 70px;
}

@media screen and (max-width: 768px) {
  .flow .sec__wrapper {
    width: 100%;
  }
}

.flow .sec__title {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .flow .sec__title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.flow .step {
  border: solid 2px #FEA62E;
  border-radius: 20px;
  padding: 20px 40px;
}

@media screen and (max-width: 768px) {
  .flow .step {
    margin: 0 20px;
  }
}

.flow .step .step-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .flow .step .step-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.flow .step .step-top .count-round {
  background-color: #FFF8E5;
  color: #FEA62E;
  border-radius: 100%;
  width: 130px;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Sinhala Sangam MN", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
}

.flow .step .step-top .count-round .count-top {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.flow .step .step-top .count-round .count {
  font-size: 4rem;
  line-height: 44px;
}

.flow .step .step-top .step-text {
  display: inline;
  text-align: left;
  width: calc(100% - 130px);
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .flow .step .step-top .step-text {
    width: 100%;
    padding-left: 0;
    margin: -60px 0 20px;
  }
}

.flow .step .step-top .step-text .head-line {
  font-size: 2.2rem;
  color: #FEA62E;
}

.flow .step .step-top .step-text .step-content {
  margin-top: 20px;
}

.flow .step .step-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .flow .step .step-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.flow .step .step-main .step-main-content {
  width: 50%;
  border: solid 1px #FEA62E;
  border-radius: 20px;
  padding: 20px;
  margin: 30px 40px;
}

@media screen and (max-width: 768px) {
  .flow .step .step-main .step-main-content {
    width: 100%;
    margin: 20px 0;
  }
}

.flow .step .step-main .step-main-content .text-area {
  padding-bottom: 20px;
}

.flow .step .step-main .step-main-content .text-area .head-line {
  display: inline-block;
  color: #FEA62E;
  font-size: 2rem;
  margin-bottom: 20px;
}

.flow .step .step-main .step-main-content .text-area .main-text {
  text-align: left;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.flow .step .step-main .step-main-content .skil-area .skil-headline {
  color: #FEA62E;
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 6px;
}

.flow .step .step-main .step-main-content .skil-area .skil-text {
  text-align: left;
}

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

.recruit-top {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit-top .sec__wrapper {
    width: 100%;
  }

  .recruit-top .sec__wrapper .sec__title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.recruit-top .recruit-text {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .recruit-top .recruit-text {
    padding: 20px;
    margin-top: 0;
    text-align: left;
  }
}

.interview {
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
  background: linear-gradient(90deg, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
}

@media screen and (max-width: 768px) {
  .interview {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
    background: linear-gradient(bottom, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
  }

  .interview .sec__wrapper {
    width: 100%;
  }

  .interview .sec__wrapper .sec__title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.interview .sec__title {
  margin-bottom: 50px;
}

.interview .interview-cardlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .interview .interview-cardlist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
}

.interview .interview-cardlist .interview-card {
  width: 30%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .interview .interview-cardlist .interview-card {
    width: 90%;
    text-align: left;
  }
}

.interview .interview-cardlist .interview-card .interview-title {
  color: #FEA62E;
  line-height: 80px;
  border-bottom: 1.5px solid #FEA62E;
}

@media screen and (max-width: 768px) {
  .interview .interview-cardlist .interview-card .interview-title {
    line-height: normal;
    padding: 0 30px;
  }
}

.interview .interview-cardlist .interview-card .interview-text {
  margin: 20px 20px 0;
}

.recruit-info {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit-info .sec__wrapper {
    width: 100%;
  }

  .recruit-info .sec__wrapper .sec__title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.recruit-info .recruit-table {
  margin-top: 32px;
  width: 100%;
  line-height: 34px;
}

@media screen and (max-width: 768px) {
  .recruit-info .recruit-table {
    padding: 0 20px;
  }
}

.recruit-info tr:first-child td br:nth-of-type(2n-1) {
  display: none;
}

@media screen and (max-width: 768px) {
  .recruit-info tr:first-child td br:nth-of-type(2n-1) {
    display: inline;
  }
}

.recruit-info tr th {
  border-bottom: solid 1px #FFCA39;
  padding: 30px;
  width: 35%;
  font-size: 18px;
  font-weight: bold;
  background-color: #FFF8E5;
}

@media screen and (max-width: 768px) {
  .recruit-info tr th {
    width: 100%;
    display: block;
    border-bottom: 0;
    border-top: solid 2px #FFCA39;
    padding: 6px;
  }
}

.recruit-info tr td {
  border-bottom: solid 1px #FFCA39;
  width: 65%;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .recruit-info tr td {
    width: 100%;
    display: block;
    border-bottom: 0;
    text-align: left;
  }
}

.recruit-info tr:first-of-type th {
  border-top: solid 1px #FFCA39;
}

@media screen and (max-width: 768px) {
  .recruit-info tr:first-of-type th {
    border-top: solid 2px #FFCA39;
  }
}

.recruit-info tr:first-of-type td {
  border-top: solid 1px #FFCA39;
}

@media screen and (max-width: 768px) {
  .recruit-info tr:first-of-type td {
    border-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .recruit-info tr:last-of-type td {
    border-bottom: solid 2px #FEA62E;
  }
}

.recruit-info span {
  margin-top: 20px;
  display: inline-block;
  line-height: 35px;
}

@media screen and (max-width: 768px) {
  .recruit-info span {
    font-size: 0.9em;
    line-height: 30px;
    text-align: left;
    padding: 0 20px;
  }
}

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

/*--------------------------
* about
--------------------------*/
.about__text {
  max-width: 650px;
  width: 90%;
  margin: 0 auto;
}

/*--------------------------
* company-info
--------------------------*/
.company-info table {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  line-height: 2em;
}

.company-info table tr th {
  border-bottom: solid 1px #FEA62E;
  padding: 30px;
  width: 35%;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .company-info table tr th {
    width: 100%;
    display: block;
    border: none;
    padding: 24px 0 0 2rem;
    text-align: left;
  }
}

.company-info table tr td {
  border-bottom: solid 1px #FEA62E;
  width: 65%;
  padding: 32px;
}

@media screen and (max-width: 768px) {
  .company-info table tr td {
    width: 100%;
    display: block;
    padding: 0 0 16px 4rem;
  }
}

.company-info table tr:last-of-type th {
  border-bottom: none;
}

.company-info table tr:last-of-type td {
  border-bottom: none;
}

/*--------------------------
* service
--------------------------*/
.service__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .service__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service__list li {
  border-radius: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
  border: solid 1px #FEA62E;
  z-index: 0;
}

.service__list li:not(:first-child) {
  line-height: 56px;
}

.service__list li h3 {
  height: 91px;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  padding: 8% 5% 0;
  border-bottom: solid 1px #FEA62E;
  color: #FEA62E;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 16px;
}

.service__list li h3 span {
  font-size: 2rem;
  padding-right: 1.6rem;
}

@media screen and (max-width: 768px) {
  .service__list li h3 {
    padding: 5% 5% 3%;
  }
}

.service__list li p {
  padding: 3% 5% 8%;
  line-height: normal;
}

/*--------------------------
* access
--------------------------*/
.access table {
  width: 100%;
  margin: 32px 0 auto;
}

.access table tr th {
  padding: 30px;
  width: 40%;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .access table tr th {
    display: block;
    width: 100%;
    padding: 24px 0 0 2rem;
    text-align: left;
  }
}

.access table tr td {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .access table tr td {
    display: block;
    width: 100%;
    padding: 0 0 16px 4rem;
  }
}

.access iframe {
  width: 100%;
  display: block;
  margin: 32px auto 0;
}

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

/*--------------------------
* contact form
--------------------------*/
.contact {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact .sec__wrapper {
    width: 100%;
  }

  .contact .sec__wrapper .sec__title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.contact p {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contact p {
    text-align: left;
    padding: 10px 20px 0;
  }
}

.form {
  margin-top: 32px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
  background: linear-gradient(90deg, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
}

@media screen and (max-width: 768px) {
  .form {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(247, 93, 139, 0.5)), to(rgba(254, 220, 64, 0.5)));
    background: linear-gradient(bottom, rgba(247, 93, 139, 0.5), rgba(254, 220, 64, 0.5));
    margin-top: 20px;
  }
}

.form__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 4vw 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .form__wrapper {
    padding: 2vw 0;
  }
}

.form .Form-Item {
  padding: 16px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .form .Form-Item {
    padding: 8px 0;
  }
}

.form .Form-Item-Label {
  width: 100%;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .form .Form-Item-Label {
    padding-left: 5px;
  }
}

.form .Form-Item-Label.isMsg {
  margin-top: 0;
  margin-bottom: auto;
}

.form .Form-Item-Label-Required {
  border-radius: 4px;
  margin-left: 30px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background-color: #FEA62E;
  color: #ffffff;
  font-size: 14px;
}

.form .Form-Item-Input {
  border-radius: 6px;
  margin-left: 0px;
  margin-top: 18px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 18px;
}

.form .Form-Item-Input::-webkit-input-placeholder {
  color: rgb(182, 182, 182);
}

.form .Form-Item-Input::-moz-placeholder {
  color: rgb(182, 182, 182);
}

.form .Form-Item-Input:-ms-input-placeholder {
  color: rgb(182, 182, 182);
}

.form .Form-Item-Input::-ms-input-placeholder {
  color: rgb(182, 182, 182);
}

.form .Form-Item-Input::placeholder {
  color: rgb(182, 182, 182);
}

.form .Form-Item-Textarea {
  border-radius: 6px;
  margin-left: 0;
  margin-top: 18px;
  padding: 1em;
  height: 216px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 16px;
}

.form .contact-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .form .contact-type {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.form .contact-type li .typeButton {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.form .contact-type li .typeButton::before,
.form .contact-type li .typeButton::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.form .contact-type li .typeButton::before {
  background-color: #fff;
  height: 20px;
  width: 20px;
  left: 5px;
}

.form .contact-type li .typeButton::after {
  background-color: #FEA62E;
  opacity: 0;
  height: 14px;
  width: 14px;
  left: 8px;
}

.form .contact-type li input:checked+label::after {
  opacity: 1;
}

.form .contact-type li .visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

/*--------------------------
* privacy
--------------------------*/
.privacy {
  margin-bottom: 8vw;
  background-color: #fff;
}

.privacy .sec__wrapper .sec__text {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .privacy .sec__wrapper .sec__text {
    text-align: left;
  }
}

.privacy .agree {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .privacy .agree {
    margin-top: 40px;
  }
}

.privacy .agree h3 {
  text-align: center;
}

.privacy .agree__cntent {
  margin-top: 32px;
  padding: 40px;
  text-align: left;
  background-color: #FFF8E5;
  height: 500px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .privacy .agree__cntent {
    margin-top: 20px;
  }
}

.privacy .agree__cntent h4 {
  margin-top: 16px;
}

.privacy .agree .check-text {
  margin: 30px auto;
  text-align: center;
}


.privacy .agree button[type=submit] {
  border: none;
  background-color: transparent;
  color: #fff;
}

.wpcf7 input[name="your-name"] {
  width: 100%;
  border-radius: 6px;
  margin-left: 0px;
  margin-top: 18px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 18px;
}

.wpcf7 input[name="furigana"] {
  border-radius: 6px;
  margin-left: 0px;
  margin-top: 18px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 18px;
}

.wpcf7 input[name="your-tel"] {
  border-radius: 6px;
  margin-left: 0px;
  margin-top: 18px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 18px;
}

.wpcf7 input[name="your-email"] {
  border-radius: 6px;
  margin-left: 0px;
  margin-top: 18px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 18px;
}

.wpcf7-radio {
  text-align: left;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}

/* デフォルトのボタン */
input[type="radio"] {
  opacity: 0;
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border-radius: 100%;
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .5s;
  width: 1.2em;
}

/* チェック後のボタン */
input[type="radio"]:checked+.wpcf7-list-item-label::before {
  background-color: #FEA62E;
  box-shadow: inset 0 0 0 3px #fff;
}

.contact p:has(.wpcf7-radio) {
  text-align: left;
  margin-top: 18px;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .wpcf7-radio {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.wpcf7 textarea[name="your-message"] {
  width: 100%;
  border-radius: 6px;
  margin-left: 0;
  margin-top: 18px;
  padding: 1em;
  height: 216px;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
  width: 100%;
  background: #ffffff;
  font-size: 16px;
}




input[type="checkbox"] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.privacy .agree .check-text .visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.privacy .agree .check-text label span {
  cursor: pointer;
  padding-left: 50px;
  position: relative;
}

.privacy .agree .check-text label span::before,
.privacy .agree .check-text label span::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  border-radius: 0;
}

.privacy .agree .check-text label span::before {
  background-color: #fff;
  border: 1px solid #FEA62E;
  height: 30px;
  width: 30px;
  left: 5px;
}

.privacy .agree .check-text label span::after {
  border-bottom: 2px solid #FEA62E;
  border-left: 2px solid #FEA62E;
  opacity: 0;
  height: 10px;
  width: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 4px;
  left: 12px;
}

.privacy .agree .check-text label input:checked+span::after {
  opacity: 1;
}

.privacy .agree input[type=checkbox] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}





input[type="submit"] {
  display: inline-block;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 2rem 6rem;
  border-radius: 100vh;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(rgb(247, 93, 139)), to(rgb(254, 220, 64)));
  background: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
}



.btn-wrap {
  color: #fff;
  position: relative;
  width: 184px;
  transition: 0.5s;
  margin: 0 auto;
  height: 64px;
}

.btn-wrap::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% - 5px);
  right: 25px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-wrap:hover::after {
  right: 18px;
}




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