html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
th,
td,
form,
button,
label,
address,
blockquote,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 100;
  color: #333;
}

body {
  margin: 0 auto;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

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

a {
  text-decoration: none;
  color: #333;
}

ul,
ol,
li {
  list-style: none;
}

@media only screen and (max-width: 768px) {
  #pc {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  #smp {
    display: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes slideup {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-160px);
    transform: translateY(-160px);
  }
}

@keyframes slideup {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-160px);
    transform: translateY(-160px);
  }
}

textarea:focus,
input:focus,
input[type]:focus,
.uneditable-input:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #fafafa;
  background-color: #ffffff;
}

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

  textarea,
  input {
    border: solid 1px #eee;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
  }
}

/* header */

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 50px) scale(0.8);
  -webkit-transition: all 1000ms;
  transition: all 0.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0);
}

.header {
  width: 100%;
  height: 100vh;
  position: relative;
}

nav.menu {
  width: 160px;
  position: absolute;
  top: 100px;
  left: 10vw;
  cursor: pointer;
  overflow: hidden;
  z-index: 9999;
  text-align: center;
  -webkit-animation: fadeIn 1s ease-in forwards;
  animation: fadeIn 1s ease-in forwards;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  nav.menu {
    top: 40px;
    left: 30px;
    width: 60px;
  }
}

.menu a img {
  width: 60px;
}

@media only screen and (max-width: 767px) {
  .menu1 a img {
    width: 40px;
  }
}

.menu a img:hover {
  opacity: 0.5;
}

.menu1 p:hover {
  opacity: 0.6;
  -webkit-transition: 0.5;
  transition: 0.5;
}

.menuclick1 {
  color: #999;
}

#menu {
  position: absolute;
  display: none;
  top: 140px;
  left: 10.5vw;
  height: auto;
  text-align: left;
  list-style-type: none;
  background-color: #FFF5E3;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  #menu {
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    text-align: center;
    padding-top: 40px;
    opacity: 0.9;
  }
}

#menu li {
  margin: 20px 2em;
}

#menu li a {
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  #menu li a {
    font-size: 18px;
  }
}

#menu li a:hover {
  color: #FA7D00;
}

.logo {
  text-align: center;
}

.logo img {
  width: 280px;
  height: auto;
  -webkit-animation: slideup 0.5s ease 1s forwards;
  animation: slideup 0.5s ease 1s forwards;
  position: absolute;
  top: 30vh;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .logo img {
    width: 160px;
    animation: none;
    top: 28vh;
  }
}


/* main */
.hero {
  text-align: center;
  height: 100vh;
}

.hero img {
  width: 800px;
  height: auto;
  -webkit-animation: fadeIn 1s ease-in forwards;
  animation: fadeIn 1s ease-in forwards;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (max-width: 1025px) {
  .hero img {
    width: 80%;
    top: 240px;
  }
}

@media only screen and (max-width: 769px) {
  .hero img {
    width: 90%;
  }
}

@media only screen and (max-width: 769px) {
  .hero img {
    width: 100%;
    top: 100px;
  }
}

.concept {
  background: #fafafa;
  width: 100vw;
  text-align: center;
  padding: 80px 0;
}

.concept h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .concept h2 {
    font-size: 24px;
  }
}

.concept h2 span {
  color: #65B7EC;
}

.concept-inner {
  background: #fff;
  width: 70%;
  margin: 0 auto;
  border-radius: 30px;
  padding: 40px 100px;
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .concept-inner {
    width: 90%;
    padding: 20px;
    margin-top: 60px;
  }
}

.concept p {
  font-size: 18px;
  margin-top: 40px;
  text-align: left;
  text-indent: 1em;
}

@media only screen and (max-width: 767px) {
  .concept p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.concept p span {
  font-size: 22px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .concept p span {
    font-size: 20px;
  }
}

.concept img {
  width: 60%;
  margin: 40px 0;
}

@media only screen and (max-width: 769px) {
  .concept img {
    width: 100%;
  }
}

.service {
  width: 80vw;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 0 0;
}

@media only screen and (max-width: 767px) {
  .service {
    width: 90%;
    padding: 80px 0;
  }
}

.service h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .service h2 {
    font-size: 24px;
  }
}

.service h3 {
  font-weight: bold;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  .service h3 {
    font-size: 20px;
  }
}

.service-subtext {
  width: 140px;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .service-subtext {
    width: 100px;
  }
}

.service-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .service-flex {
    margin-top: 40px;
  }
}

.service-flex a {
  display: inline-block;
}

.rental {
  width: 400px;
  height: auto;
  margin: 40px 0;
  -webkit-box-shadow: 0 0 8px rgb(228, 228, 228);
  box-shadow: 0 0 8px rgb(228, 228, 228);
  border-radius: 10px;
  padding-top: 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .rental {
    width: 100%;
    margin: 20px 0 10px 0;
  }
}

.rental:hover {
  opacity: 0.6;
}

.reform {
  width: 400px;
  height: auto;
  margin: 40px 0;
  -webkit-box-shadow: 0 0 8px rgb(228, 228, 228);
  box-shadow: 0 0 8px rgb(228, 228, 228);
  border-radius: 10px;
  padding-top: 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .reform {
    width: 100%;
    margin: 20px 0 10px 0;
  }
}

.underline-o {
  width: 200px;
  margin: 0 auto;
  font-size: 24px;
  margin-bottom: 40px;
  border-bottom: solid 3px #ECB865;
}

.underline-g {
  width: 200px;
  margin: 0 auto;
  font-size: 24px;
  margin-bottom: 40px;
  border-bottom: solid 3px #5DB551;
}

.linkto-detail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.button-wrapper {
  margin-top: 80px;
  text-align: center;
}

.button {
  width: 320px;
  padding: 10px;
  background: #65B7EC;
  border-radius: 5px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .button {
    width: 100%;
  }
}

.button-text {
  color: #fafafa;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  width: 100%;
}

.button:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.tel p {
  font-size: 18px;
}

.about {
  width: 100vw;
  text-align: center;
  padding: 60px 0 100px 0;
}

@media only screen and (max-width: 767px) {
  .about {
    padding: 0 0 60px 0;
  }
}

.about h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .about h2 {
    font-size: 24px;
  }
}

.about-subtext {
  width: 110px;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .about-subtext {
    width: 80px;
  }
}

.about-inner {
  background: #FFF5E3;
  width: 70%;
  margin: 0 auto;
  border-radius: 30px;
  padding: 80px 0 20px 0;
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .about-inner {
    width: 90%;
    padding: 80px 0 20px 0;
    margin-top: 0;
  }
}

.about-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0;
}

@media only screen and (max-width: 767px) {
  .about-flex {
    margin: 0;
  }
}

.about-inner ul {
  text-align: left;
  margin-left: 60px;
}

@media only screen and (max-width: 769px) {
  .about-inner ul {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-inner ul {
    margin: 20px;
    margin-bottom: 0;
  }
}

.about-inner ul li {
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .about-inner ul li {
    font-size: 16px;
  }
}

.about-img {
  width: 340px;
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .about-img {
    width: 80%;
    margin-top: 40px;
  }
}

.access {
  width: 90vw;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .access {
    padding: 40px 0;
  }
}

.access h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .access h2 {
    font-size: 24px;
  }
}

.access-subtext {
  width: 90px;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .access-subtext {
    width: 65px;
  }
}

.access h4 {
  font-size: 20px;
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .access h4 {
    font-size: 16px;
    margin: 40px 20px 0 20px;
  }
}

.access p {
  font-size: 20px;
  margin: 40px 0 80px 0;
}

@media only screen and (max-width: 767px) {
  .access p {
    font-size: 16px;
    margin: 20px 0 40px 0;
  }
}

.map iframe {
  margin: 0 auto;
  border-radius: 30px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .map iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }
}

/* footer */
#pageTop {
  position: fixed;
  bottom: 130px;
  right: 60px;
}

@media only screen and (max-width: 767px) {
  #pageTop {
    bottom: 40px;
    right: 40px;
  }
}

#pageTop a {
  display: block;
  z-index: 999;
  width: 60px;
  height: 60px;
  font-weight: bold;
  text-align: center;
  opacity: 0.9;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  #pageTop a {
    width: 40px;
    font-size: 10px;
  }
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-text {
  width: 30px;
  margin-left: 10px;
}

footer {
  background: #f0f0f0;
  height: 100px;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  footer {
    height: 200px;
  }
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100vw;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .footer-flex {
    width: 90%;
    display: inherit;
  }
}

footer img {
  width: 100px;
}

@media only screen and (max-width: 767px) {
  footer img {
    width: 60px;
  }
}

footer h2,
footer p,
footer a,
footer address,
footer small {
  font-size: 1vw;
  color: #707070;
  font-style: normal;
}

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

  footer h2,
  footer p,
  footer a,
  footer address,
  footer small {
    font-size: 8px;
  }
}

/* CURSOR STALKER
#cursor {
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgb(160, 255, 192);
background: #65B7EC;
width: 5px;
height: 5px;
border-radius: 100%;
pointer-events: none;
z-index: 9999;
}

#cursor.active {
  -webkit-transform: scale(0);
  transform: scale(0);
}

#stalker {
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgb(160, 255, 192);
  background: #65B7EC;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-transition: 0;
  transition: 0;
  opacity: 0.3;
  pointer-events: none;
  z-index: 9999;
}

#stalker.active {
  -webkit-transform: scale(3);
  transform: scale(3);
}

.active {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
*/

/* header-small */
.header-small {
  width: 100%;
  height: 100px;
  text-align: center;
  padding: 30px 0;
}

nav.menu2 {
  width: 160px;
  position: absolute;
  top: 60px;
  left: 10vw;
  cursor: pointer;
  overflow: hidden;
  z-index: 9999;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  nav.menu2 {
    top: 40px;
    left: 30px;
    width: 60px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
}

.menu2 a img {
  width: 60px;
}

@media only screen and (max-width: 767px) {
  .menu2 a img {
    width: 40px;
  }
}

.menu2 a img:hover {
  opacity: 0.5;
}

.logo-small img {
  width: 100px;
  margin: 0 auto;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .logo-small img {
    margin-top: -10px;
  }
}

/* product */
.product-text {
  text-align: center;
}

.product-text h2 {
  font-size: 32px;
  margin-top: 100px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .product-text h2 {
    margin-top: 40px;
    font-size: 24px;
  }
}

.product-text h3 {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 40px;
  color: #65B7EC;
}

@media only screen and (max-width: 767px) {
  .product-text h3 {
    margin: 40px 30px 0 30px;
    font-size: 14px;
  }
}

.product-wrapper {
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  width: 90%;
}

@media only screen and (max-width: 767px) {
  .product-wrapper {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.product-flex {
  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;
  width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .product-flex {
    width: 100%;
  }
}

.product-item {
  max-width: 300px;
  min-width: 200px;
  width: 20vw;
  position: relative;
  margin: 20px;
}

@media only screen and (max-width: 767px) {
  .product-item {
    width: 100%;
    max-width: none;
    margin: 20px 0;
  }
}

.product-caption {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  font-size: 18px;
}

.product-caption p {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .product-caption {
    font-size: 16px;
  }
}

/* process */
.process {
  width: 90vw;
  text-align: center;
  margin: 0 auto;
  padding: 100px 0;
}

@media only screen and (max-width: 767px) {
  .process {
    padding: 40px 0;
  }
}

.process h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .process h2 {
    font-size: 24px;
  }
}

.process-subtext {
  width: 100px;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .process-subtext {
    width: 75px;
  }
}

.process-wrapper {
  margin-top: 80px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .process-wrapper {
    margin-top: 40px;
  }
}

.process-flex {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}

.inquiry {
  width: 300px;
  margin: 20px 20px 100px 20px;
}

@media only screen and (max-width: 767px) {
  .inquiry {
    width: 100%;
    margin: 20px 0 40px 0;
  }
}

.inquiry p {
  font-weight: bold;
}

.inquiry p::after {
  content: '';
  display: block;
  background: #ECB865;
  height: 2px;
  width: 165px;
  margin: 0 auto;
  margin-top: -10px;
}

.inquiry span {
  font-size: 32px;
}

.inquiry img {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .inquiry img {
    margin-top: 40px;
  }
}

.delivery {
  width: 300px;
  margin: 20px 20px 100px 20px;
}

@media only screen and (max-width: 767px) {
  .delivery {
    width: 100%;
    margin: 20px 0 40px 0;
  }
}

.delivery p {
  font-weight: bold;
}

.delivery p::after {
  content: '';
  display: block;
  background: #ECB865;
  height: 2px;
  width: 165px;
  margin: 0 auto;
  margin-top: -10px;
}

.delivery span {
  font-size: 32px;
}

.delivery img {
  margin-top: 80px;
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .delivery img {
    margin-top: 40px;
  }
}

.contract {
  width: 300px;
  margin: 40px 20px 100px 20px;
}

@media only screen and (max-width: 767px) {
  .contract {
    width: 100%;
    margin: 20px 0 40px 0;
  }
}

.contract p {
  font-weight: bold;
}

.contract p::after {
  content: '';
  display: block;
  background: #ECB865;
  height: 2px;
  width: 165px;
  margin: 0 auto;
  margin-top: -10px;
}

.contract span {
  font-size: 32px;
}

.contract img {
  margin-top: 90px;
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .contract img {
    margin-top: 40px;
  }
}

.backup {
  width: 300px;
  margin: 40px 20px 100px 20px;
}

@media only screen and (max-width: 767px) {
  .backup {
    width: 100%;
    margin: 20px 0 40px 0;
  }
}

.backup p {
  font-weight: bold;
}

.backup p::after {
  content: '';
  display: block;
  background: #ECB865;
  height: 2px;
  width: 165px;
  margin: 0 auto;
  margin-top: -10px;
}

.backup span {
  font-size: 32px;
}

.backup img {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .backup img {
    margin-top: 40px;
  }
}

.pickup {
  width: 300px;
  margin: 40px 20px 40px 20px;
}

@media only screen and (max-width: 1025px) {
  .pickup {
    width: 100%;
    margin: 20px 0 40px 0;
  }
}

.pickup p {
  font-weight: bold;
}

.pickup p::after {
  content: '';
  display: block;
  background: #ECB865;
  height: 2px;
  width: 165px;
  margin: 0 auto;
  margin-top: -10px;
}

.pickup span {
  font-size: 32px;
}

.pickup img {
  margin-top: 80px;
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .pickup img {
    margin-top: 40px;
  }
}

.arrow-column {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

@media only screen and (max-width: 769px) {
  .arrow-column {
    width: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .arrow-column {
    display: none;
  }
}

.arrow1 {
  position: absolute;
  top: 220px;
  margin-left: -40px;
}

.arrow2 {
  position: absolute;
  top: 440px;
  margin-left: -40px;
}

.arrow3 {
  position: absolute;
  top: 660px;
  margin-left: -40px;
}

.arrow4 {
  position: absolute;
  top: 880px;
  margin-left: -40px;
}


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

.contact-text h2 {
  font-size: 32px;
  margin-top: 100px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .contact-text h2 {
    margin-top: 0;
  }
}

.contact-text h3 {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .contact-text h3 {
    margin: 40px 30px 0 30px;
    font-size: 14px;
  }
}

.contact-wrapper {
  width: 420px;
  height: auto;
  margin: 0 auto;
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .contact-wrapper {
    width: 80%;
  }
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-small {
  width: 200px;
  height: 30px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .form-small {
    width: 100%;
  }
}

.form-large {
  width: 414px;
  height: 30px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .form-large {
    width: 100%;
  }
}

.textarea {
  width: 414px;
  height: 300px;
}

@media only screen and (max-width: 767px) {
  .textarea {
    width: 100%;
    height: 300px;
  }
}

.button-flex {
  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;
}

.confirm-wrapper {
  text-align: center;
}

.confirm {
  width: 320px;
  padding: 10px;
  background: #65B7EC;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 20px;
  text-align: center;
  color: #fafafa;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .confirm {
    width: 100%;
  }
}

.confirm-text {
  color: #fafafa;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  width: 100%;
}

.confirm:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.tel2 {
  font-size: 16px;
  margin-bottom: 80px;
}

.return-wrapper {
  text-align: center;
}

.return {
  width: 320px;
  padding: 10px;
  background: #fafafa;
  border-radius: 5px;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
  color: #333;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .return {
    width: 100%;
  }
}

.return:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.submit-wrapper {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.submit-text {
  width: 100%;
  height: 200px;
  text-align: center;
  margin-top: 20vh;
}

.footer-fixed {
  position: absolute;
  bottom: 0;
}