html {
  font-size: 62.5%;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth"100;
}

h1 {
  font-size: 2.6rem;
  color: #333;
  font-weight: 900;
  width: 280px;
}

h2 {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
  color: #333;
}

h3 {
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  color: #333;
  margin-bottom: 24px;
}

p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  line-height: 1.8;
}

li {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 16px;
}

/*-----------------------------

header

------------------------------*/

.hd {
  position: fixed;
  z-index: 9999;
  padding: 10px 16px;
  width: 100%;
  margin: auto;
  background: #fff;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(10, 10, 10, 0);
  top: 0;
}

.hd2 {
  position: fixed;
  z-index: 9999;
  padding: 10px 16px;
  width: 100%;
  margin: auto;
  background: #fff;
  top: 0;
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(10, 10, 10, 1);
}

.hd,
.hd2 {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.header-fadeIn {
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(10, 10, 10, 1);
}

.transition {
  transition: all 1.2s;
}

header img {
  max-width: 70px;
  width: 100%;
  vertical-align: middle;
  margin-right: 2.5%;
}

@media screen and (min-width:851px) {

  .hd-wrap,
  .hd2-wrap {
    padding: 0;
  }

  .hd,
  .hd2 {
    padding: 16px;
  }

  .hd ul,
  .hd2 ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hd ul li,
  .hd2 ul li {
    margin-bottom: 0;
    font-size: 2.2rem;
    font-weight: 900;
  }


  .hd ul li span,
  .hd2 ul li span {
    display: block;
    font-size: 1.4rem;
    text-align: center;
  }

  .hd-nav_item {
    display: block;
  }

  .hd-nav-sp a {
    display: block;
    padding: 10px 16px;
    color: #333;
  }

  .hd-nav-sp li {
    margin-bottom: 10px;
  }

  .line li a {
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
  }

  .line li a:hover {
    background: #333;
    color: #fff;
  }

  .line li a:hover {
    transition-delay: 0.5s;
  }

  .line li a::before,
  .line li a::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.5s;
  }

  .line li a::before {
    top: 0;
    transform: translateX(-100%);
  }

  .line li a::after {
    bottom: 0;
    transform: translateX(100%);
  }

  .line li a:hover::before,
  .line li a:hover::after {
    transform: translateX(0);
  }

  .disabled {
    background: #79f5e9;
    color: #ffffff;
    pointer-events: none;
  }


}

/*-------ハンバーガー---------------*/

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


  .hd-nav-sp ul li a {
    font-weight: bold;
    font-size: 2.6rem;
  }

  .hd-nav-sp ul li a span {
    display: block;
    font-size: 1.4rem;
  }

  .hd-nav-sp li a {
    position: relative;
    display: inline-block;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
  }

  .hd-nav-sp li a:hover {
    background: #333;
    color: #fff;
    transition-delay: .5s;
  }

  .hd-nav-sp li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0%;
    width: 0%;
    height: 2px;
    background: #333;
    box-sizing: border-box;
  }

  .hd-nav-sp li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    bottom: 1px;
    width: 0%;
    height: 2px;
    background: #333;
    box-sizing: border-box;
  }

  .hd-nav-sp li a:hover::before {
    left: 0%;
    width: 100%;
  }

  .hd-nav-sp li a:hover::after {
    left: 0%;
    width: 100%;
  }

  .hd-nav-sp li a:hover::before,
  .hd-nav-sp li a:hover::after {
    transition: all .5s;
  }

  .hd-nav-sp li a {
    display: inline-block;
    color: white;
    padding: 8px 0;
  }

  .open-btn,
  .open-btn_2 {
    position: relative;
    background-color: #7f4af7;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 9999;
  }

  .open-btn-border,
  .open-btn-border_2 {
    display: inline-block;
    position: absolute;
    transition: all .4s;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: white;
    width: 45%;
  }

  .open-btn-border:nth-of-type(1),
  .open-btn-border_2:nth-of-type(1) {
    top: 13px;
  }

  .open-btn-border:nth-of-type(2),
  .open-btn-border_2:nth-of-type(2) {
    top: 19px;
  }

  .open-btn-border:nth-of-type(3),
  .open-btn-border_2:nth-of-type(3) {
    top: 25px;
  }

  .open-btn-border:nth-of-type(3)::after,
  .open-btn-border_2:nth-of-type(3)::after {
    content: 'MENU';
    position: absolute;
    top: 5px;
    left: 50%;
    color: white;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  .open-btn.active .open-btn-border:nth-of-type(1),
  .open-btn_2.active .open-btn-border_2:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .open-btn.active .open-btn-border:nth-of-type(2),
  .open-btn_2.active .open-btn-border_2:nth-of-type(2) {
    display: none;
  }

  .open-btn.active .open-btn-border:nth-of-type(3),
  .open-btn_2.active .open-btn-border_2:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .open-btn.active .open-btn-border:nth-of-type(3)::after,
  .open-btn_2.active .open-btn-border_2:nth-of-type(3)::after {
    content: 'CLOSE';
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: -2px;
  }

  .hd-nav-sp.panel-active {
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 9000;
  }

  .hd-nav-sp {
    display: none;
    position: fixed;
    z-index: 9000;
    width: 100%;
    height: 100vh;
    overflow: auto;
  }

  .hd-nav-sp.panel-active {
    display: block;
  }

  .hd-nav-sp ul {
    text-align: center;
    max-width: 820px;
    width: 100%;
    opacity: 0;
    position: absolute;
    z-index: 9001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hd-nav-sp.panel-active ul {
    opacity: 1;
  }

  .hd-nav-sp.panel-active ul li {
    animation-name: g-navAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes g-navAnime {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}







/*-----------------------------

FV

------------------------------*/

.fv-height {
  height: 6500px;
}

.fv-wrap {
  position: relative;
  z-index: 9000;
}

.fv-images {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.fv-zoom {
  position: fixed;
  background-image: url(../img/bg_sp.svg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

@media screen and (min-width:681px) {

  .fv-zoom {
    background-image: url(../img/bg.svg);
  }

}

.fv-catch {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: 8000;
  opacity: 0;

}

.fv h2 {
  padding: 20px;
  box-sizing: border-box;
  font-weight: bold;
  writing-mode: vertical-rl;
  color: white;
  font-weight: bolder;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  font-size: 5.6rem;
}


/*-----------------------------------
scrollDown
=------------------------------------*/

.scrollDown {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 9800;
}

.scrollDown span {
  position: absolute;
  left: 10px;
  bottom: 14px;
  color: #298f85;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.scrollDown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #298f85;
  animation:
    circleMove 1.6s ease-in-out infinite,
    circleMoveHide 1.6s ease-out infinite;
}

@keyframes circleMove {
  0% {
    bottom: 65px;
  }

  100% {
    bottom: -5px;
  }
}

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

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.scrollDown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 70px;
  background: #298f85;
}


.secWrap {
  max-width: 680px;
  width: 100%;
  margin: auto;
  padding: 0 16px;
}

@media screen and (min-width:681px) {

  .secWrap {
    max-width: 780px;
    width: 100%;
    margin: auto;
  }

}


/*----------------------------

sec01

------------------------------*/

.sec01,
.sec02,
.sec03 {
  position: relative;
  z-index: 9998;
  padding: 60px 0;
  width: 100%;
}

.sec04 {
  position: relative;
  z-index: 9998;
  padding: 30px 0 0;
  width: 100%;
}

.sec h3 {
  font-size: 2.3rem;

}

.strong {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.txt {
 margin-bottom:48px;
}

.my-strong {
  display: table;
  margin: auto;
}

.sec01 .me img {
  border-radius: 50%;
}

.me {
  text-align: center;
}

.sec01 .gold {
  text-align: center;
  margin-bottom: 28px;
}


.sec {
     padding:60px 0 0;
}

@media screen and (min-width:681px) {

  .sec {
    padding: 80px 0 0;
  }

  .sec01 ul li br {
    display: none;
  }

  .none {
    display: none;
  }

  .sec01 ul {
    display: table;
    margin: auto;
  }


  .sec h2 {
    font-size: 3.4rem;
    font-weight: bold;
    margin-bottom: 32px;
  }

  .sec h3 {
    font-size: 2.6rem;

  }

  .sec01 img {
    max-width: 420px;
  }
}

/*----------------------------

sec02

------------------------------*/

.sec02 img {
  max-width: 120px;
}

.sec02 .flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* .sec02 .flow_list ul{
  display: table;
  margin: auto;
} */

.sec02 .flow_list {
  width: 300px;
  margin-top: 25px;
}

.sec02 .flow_list,
.sec02 .flow {
  margin-bottom: 40px;
}

.sec02 .flow img {
  margin-right: 28px;
}

.sec02 .flow:last-child {
  margin-bottom: 0;
}

@media screen and (min-width:681px) {


  .sec02 .flow_list {

    margin-top: 0;
  }

  .sec02 img {
    max-width: 250px;
  }

}

/*----------------------------

sec03

------------------------------*/

.skill_wrap img {
  max-width: 90px;
  width: 100%;
}

.skill_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
}


/*----------------------------

sec04

------------------------------*/

#slider {
  position: relative;
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
  margin: auto;
  height: auto;
}

.slideContents {
  transition: all 0.5s;
}


.slider-left_1 {
  position: absolute;
  left: -100%;
  background: url(../../assets/img/course02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 450px;
  z-index: 50;
  bottom: 0;
}

.slider-left_2 {
  position: absolute;
  left: -100%;
  background: url(../../assets/img/course03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  z-index: 50;
  bottom: 0;
}

.slider-right_1 {
  position: absolute;
  bottom: 0;
  left: 100%;
  background: url(../../assets/img/course01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  z-index: 50;
}

.slider-right_2 {
  position: absolute;
  bottom: 0;
  left: 100%;
  background: url(../../assets/img/course04.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  z-index: 50;
}

.slider-left_1.show,
.slider-left_2.show {
  left: 0%;
}

.slider-right_1.show,
.slider-right_2.show {
  left: 0%;
}

@media screen and (min-width:681px) {

  #slider {
    max-width: 100vw;
  }

  .slider-left_1,
  .slider-left_2,
  .slider-right_1,
  .slider-right_2 {
    height: 400px;
  }
}

/*ーーーーーーーelementーーーーーーーーーー*/

.course {
  width: 100%;
}

.left {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.right {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (min-width:681px) {

  .course {
    max-width: 820px;
    margin: auto;
  }

  .left {
    justify-content: space-between;
  }

  .right {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.element1,
.element3 {
  position: relative;
  width: 240px;
  border-radius: 4px 50%;
  top: -200px;
  z-index: 100;
  margin-top: 80px;

}

.element2,
.element4 {
  position: relative;
  width: 240px;
  border-radius: 50% 4px;
  top: -200px;
  z-index: 100;
  margin-top: 80px;
}

.element {
  transition: all 2s;
  opacity: 0;
}

.about-ex {
  width: 100%;
  padding: 0 16px;
  position: relative;
  top: 150px;
  margin-top: 25px;
  opacity: 0;
  transition: all 2s;
  z-index: 10000;
}

.about-ex h3 span {
  display: block;
  font-size: 1.4rem;


}

.about-ex ul {
  display: table;
  text-align: left;
  margin: auto;

}

.is-fadeIn {
  top: 0%;
}

.is-fadeIn {
  opacity: 1;
  top: 0%;
}

@media screen and (min-width: 681px) {

  .element {
    max-width: 300px;
    width: 100%;
    margin-top: 300px;
  }

  .element1,
  .element3 {
    top: -500px;
    left: -200px;
  }

  .element2,
  .element4 {
    top: -500px;
    left: 200px;
  }

  .about-ex {
    bottom: -300px;
    max-width: 500px;
    transition: 4s;
  }

  .sec04 h2 br,
  .sec04 h3 br {
    display: none;
  }

  .is-fadeIn {
    top: -20%;
    left: 0%;
  }
}


footer {
  padding: 18px 0;
  background-color: #414141;
}

.rgb-name {
  text-align: center;
  font-size: 2.2rem;
  color: #FFF;
}

.small {
  text-align: center;
  color: #FFF;
}





/*------------------------

fadeIn Out

-------------------------*/

.fadeIn {
  opacity: 1;
  transition: all 1.5s;
}

.fadeOut {
  opacity: 0;
  transition: all 1.5s;
}





/*---------------------------

works pege

------------------------------*/

.fv-works-wrap {
  position: relative;
}

.web-fv,
.gart-fv,
.contact-fv {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: 100vh;
}

.web-fv {
  background-image: url(../../assets/img/web-kv_sp.jpg);
}

.gart-fv {
  background-image: url(../../assets/img/art-kv_sp.jpg);
}

.contact-fv {
  background-image: url(../../assets/img/contact-sp_v2.jpg);
}

.works-bg,
.gart-bg {
  position: absolute;
  bottom: 12vh;
  padding: 15px 0;
  width: 100%;
}

.works-bg {
  background-color: rgba(136, 210, 233, 0.8);
}

.gart-bg {
  background-color: rgba(252, 205, 228, 0.8);
}

@media screen and (min-width:681px) {

  .web-fv {
    background-image: url(../../assets/img/web-kv_pc.jpg);
    background-position: bottom;
  }

  .contact-fv {
    background-image: url(../../assets/img/contact.jpg);
  }

}

.lp-wrap h3,
.lp-wrap02 h3 {
  padding-top:36px
}


.works-bg h2,
.gart-bg h2 {
  font-size: 4.8rem;
  color: #fff;
  line-height: 1;
}

.works-bg h2 span,
.gart-bg h2 span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
}

.sec05 h3 span {
  display: block;
  font-size: 2.0rem;
}

.lp h3 {
  font-size: 2.8rem;
}

.lp-wrap {
  padding-bottom: 50px;
}

.lp-wrap02 {
  background-color: #f1f1f1;
  padding-bottom: 50px;
}

.lp {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 30px;
}

.img_sp {
  max-width: 300px;
  width: 100%;
}

.img_pc {
  width: 100%;
  padding: 0 16px;

}


@media screen and (min-width:681px) {

  .lp {
    max-width: 940px;
    width: 100%;
    margin: auto;
  }


  .img_sp {
    max-width: 240px;
    width: 100%;
  }

  .img_pc {
    max-width: 640px;
    width: 100%;
  }

}




.sec06,
.sec07,
.sec08 {
  padding: 60px 16px 0px;
}



.sec06 h3 {
  margin-top: 0;
}

.buppan-wrap {
  max-width: 680px;
  width: 100%;
  margin: auto;
}

.lp15 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 40px;
}


.img_sp_2 {
  max-width: 400px;
}

.img_pc_2 {
  max-width: 400px;
}

.img_food_sales {
  max-width: 400px;
}

@media screen and (min-width:681px) {

  .buppan-wrap {
    max-width: 920px;
  }

  .lp15 {
    gap: 40px;
  }

  .img_sp_2 {
    max-width: 440px;
  }

  .img_pc_2 {
    max-width: 440px;
  }

}


.lp-fv figure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 680px;
  width: 100%;
  margin: auto;
  gap: 20px;
}

.lp-fv-img {
  max-width: 400px;
}

@media screen and (min-width:681px) {

  .lp-fv figure {
    max-width: 920px;
  }

  .lp-fv-img {
    max-width: 450px;
  }

}


.banner-wrap {
  max-width: 680px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 30px;
}

.banner-wrap img {
  max-width: 400px;
}





@media screen and (min-width:681px) {

  .banner-wrap {
    max-width: 920px;
    gap: 10px;
  }

  .banner-wrap img {
    max-width: 300px;
  }

}


.banner-facebook {
  max-width: 680px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.banner-facebook img {
  max-width: 400px;
}



@media screen and (min-width:681px) {

  .banner-facebook {
    max-width: 920px;
  }

  .banner-facebook img {
    max-width: 440px;
  }

}



.header-design {
  max-width: 680px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.header-design img {
  max-width: 400px;
}

.sec08 h3,
.sec10 h3 {
padding-top: 48px;
}

.sec08 h3:first-of-type,
.sec10 h3:first-of-type {
  padding-top: 0;
}

.charactor a:last-of-type,
.header-design img:last-child {
 margin-bottom:40px;
}



@media screen and (min-width:681px) {

  .header-design {
    max-width: 920px;
    gap: 40px;
  }

  .header-design img {
    max-width: 440px;
  }

  .header-design {
   padding-bottom:80px;
 }

 .header-design img:last-child {
 margin-bottom:0;
 }

}






.sec09,
.sec10 {
  max-width: 680px;
  width: 100%;
  margin: auto;
  padding-top: 60px;
}

.graphic-design,
.graphic-design-paper,
.texture,
.art,
.charactor {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.graphic-design a,
.graphic-design-paper a,
.texture a,
.art a,
.charactor a {
  display: inline-block;
}

.graphic-design a img,
.graphic-design-paper a img,
.texture a img,
.art a img,
.charactor a img,
.glasses {
  border: solid 2px #414141;
  width: 350px;
}

.art-movie-sp {
  text-align: center;
  margin-bottom: 46px;
}

.art-movie-pc {
  display: none;
}

.glasses {
  border: none;
}


@media screen and (min-width:681px) {

  .sec10,
  .sec09 {
    padding: 80px 0;
  }

  .sec09 h2,
  .sec10 h2 {
    margin-bottom: 0;
  }



  .h3-2 {
    margin-top: 52px;
  }

  .art-movie-sp {
    display: none;
  }

  .art-movie-pc {
    display: block;
    text-align: center;
    margin-bottom: 52px;
  }

  .gart-fv {
    background-image: url(../../assets/img/art.jpg);
  }

  .sec09,
  .sec10 {
    max-width: 920px;
  }

  .graphic-design a img,
  .graphic-design-paper a img,
  .texture a img,
  .art a img,
  .charactor a img,
  .glasses {
    max-width: 285px;
    width: 100%;
  }


  .art-movie {
    width: 100%;
  }

}



.contact-page,
.confirm-page {
  width: 92%;
  margin: auto;
  padding: 60px 0;
}


label {
  font-size: 1.9rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

label span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  padding: 8px;
  background: pink;
  border-radius: 4px;
  margin-right: 20%;
}

input,
textarea {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 10px 12px;
  width: 100%;
  border: solid 1px #333;
  color: #333;
  border-radius: 6px;
}

textarea {
  height: 400px;
  resize: none;
}

table tr {
  display: block;
  padding: 48px 0;
  border-bottom: dotted 1px #333;
}

table th,
table td {
  display: block;
}

table tr:last-child,
table tr:last-child {
  border-bottom: none;
}

.submit {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: bold;
  background: rgb(57, 156, 57);
  height: 140px;
  width: 100%;
  color: #fff;
  border-radius: 20px;
  border: none;
}

.submit:hover {
  background: rgb(38, 102, 38);
  transition: all .5s;
}

.mw_wp_form_confirm p {
    white-space: pre-wrap;
    word-wrap: break-word;
}


.thanks-page {
  position: relative;
  top: 0 0 100px;
  padding: 250px 0;
}

.contact-finish p {
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width:681px) {

  .contact-page,
  .confirm-page {
    max-width: 860px;
    width: 100%;
    padding: 100px 0 100px;
  }

  table {
    border: solid 1px #333;
    margin-bottom: 48px;
  }

  label {
    font-size: 2.1rem;
    margin-bottom: 0;
    vertical-align: middle;
  }

  label span {
    margin-right: 5%;
  }

  textarea {
    height: 600px;
    resize: none;
  }

  table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 52px 26px;
  }
  
  table tr th {
    max-width: 368px;
    width: 100%;
  }
  
  table tr td {
    max-width: 490px;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    overflow-wrap: break-word;
  }

  .textarea-td {
    max-width: 438px;
  }

  .btn {
    text-align: center;
  }

  .submit {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: bold;
    background: rgb(57, 156, 57);
    height: 100px;
    max-width: 600px;
    width: 100%;
  }
}

.mw_wp_form tr {
  font-size: 2rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact-finish {
  text-align: center;
}