body {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  width: 100vw;
  height: auto;
  max-width: 1920px;
  font-family: "Josefin Sans", "fot-tsukuardgothic-std", sans-serif;
}

a {
  text-decoration: none;
}

iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

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

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

ul {
  margin-left: 0;
  padding-left: 0;
}

li {
  list-style: none;
}

/* CURSOR STALKER */
#cursor {
  position: fixed;
  transform: translate(-50%, -50%);
  background: #61b7d9;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  pointer-events: none;
}

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

#stalker {
  position: fixed;
  transform: translate(-50%, -50%);
  background: #b1a79a;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: 0.2s;
  opacity: 0.3;
  pointer-events: none;
}

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

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: .5s;
  z-index: 3;
}


@media screen and (max-width: 900px) {
  nav {
    left: -240px;
    width: 240px;
  }
}

.open nav {
  left: 0;
}

nav .inner {
  padding: 25px;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}

nav .inner ul li a:hover {
  background: #e4e4e4;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 30px;
  transform: translate(0, 0);
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}

.open .toggle_btn {
  left: 330px;
}

@media screen and (max-width: 900px) {
  .open .toggle_btn {
    left: 260px;
  }
}


.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fafafa;
  transition: all .5s;
  box-shadow: 0 0 8px black;
}

.toggle_btn span:nth-child(1) {
  top: 5px;
  width: 60px;
  -webkit-animation: equalizer01 7000ms infinite;
  animation: equalizer01 7000ms infinite;
}

.toggle_btn span:nth-child(2) {
  top: 15px;
  width: 30px;
  -webkit-animation: equalizer02 5000ms infinite;
  animation: equalizer02 5000ms infinite;
  -webkit-animation-delay: 0.33s;
  animation-delay: 0.33s;
}

.toggle_btn span:nth-child(3) {
  top: 25px;
  width: 20px;
  -webkit-animation: equalizer02 5000ms infinite;
  animation: equalizer02 5000ms infinite;
}

.open .toggle_btn span {
  background-color: #fff;
  width: 30px;
}

.open .toggle_btn span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  -webkit-animation: unset;
  animation: unset;
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
  -webkit-animation: unset;
  animation: unset;
}

.open .toggle_btn span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  -webkit-animation: unset;
  animation: unset;
}

/*toggle btn 2*/
.toggle_btn2 {
  display: block;
  position: absolute;
  top: 30px;
  left: 5rem;
  width: 60px;
  height: 30px;
  transform: translate(0, 0);
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}

@media(max-width:900px) {
  .toggle_btn2 {
    left: 30px;
  }
}

.open .toggle_btn2 {
  left: 330px;
}

.toggle_btn2 span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all .5s;
}

.toggle_btn2 span:nth-child(1) {
  top: 5px;
  width: 60px;
  -webkit-animation: equalizer01 7000ms infinite;
  animation: equalizer01 7000ms infinite;
}

.toggle_btn2 span:nth-child(2) {
  top: 15px;
  width: 30px;
  -webkit-animation: equalizer02 5000ms infinite;
  animation: equalizer02 5000ms infinite;
  -webkit-animation-delay: 0.33s;
  animation-delay: 0.33s;
}

.toggle_btn2 span:nth-child(3) {
  top: 25px;
  width: 20px;
  -webkit-animation: equalizer02 5000ms infinite;
  animation: equalizer02 5000ms infinite;
}

.open .toggle_btn2 span {
  background-color: #fff;
  width: 30px;
}

.open .toggle_btn2 span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  -webkit-animation: unset;
  animation: unset;
}

.open .toggle_btn2 span:nth-child(2) {
  opacity: 0;
  -webkit-animation: unset;
  animation: unset;
}

.open .toggle_btn2 span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  -webkit-animation: unset;
  animation: unset;
}

@media screen and (max-width: 900px) {
  .open .toggle_btn2 {
    left: 260px;
  }
}

/*============
#mask
=============*/
#mask {
  display: none;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
  transition: all .5s;
}

[data-loading="true"] .logo1 {
  opacity: 1;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 540px) {
  [data-loading="true"] .logo1 {
    font-size: 24px;
  }
}

[data-loading="true"] .logo2 {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  width: 500px;
  height: auto;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  margin: auto;
  margin-top: 40px;
}

@media only screen and (max-width: 900px) {
  [data-loading="true"] .logo2 {
    font-size: 2rem;
  }
}


@-webkit-keyframes menu-fade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes menu-fade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.loading {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

.loading__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


#top {
  height: 100vh;
  position: relative;
  width: 100vw;
}


#video {
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -o-object-fit: cover;
  object-fit: cover;
}


#scroll-animation {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14vh;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  z-index: 0;
  cursor: none;
  -webkit-animation: menu-fade 2s ease-in 1.5s;
  animation: menu-fade 2s ease-in 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.menu {
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 2;
}

.menu ul {
  display: flex;
  justify-content: center;
}

.menu ul li {
  list-style: none;
  margin-left: 3rem;
}

.menu ul li a {
  color: #fafafa;
}

.menu ul li a:hover {
  color: #61b7d9;
}

.menu2 {
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 2;
}

.menu2 ul {
  display: flex;
  justify-content: center;
}

.menu2 ul li {
  list-style: none;
  margin-left: 3rem;
}

.menu2 ul li a {
  color: #000;
}

.menu2 ul li a:hover {
  color: #61b7d9;
}

.exchange {
  position: absolute;
  top: 1rem;
  right: 5rem;
  display: flex;
  justify-content: space-around;
  width: 50px;
}

@media(max-width:1025px) {
  .exchange {
    right: 30px;
  }
}

.exchange p {
  color: #fafafa;
  font-size: 14px;
}

.exchange p a {
  color: #fff;
  font-size: 20px;
}

.jp {
  margin-right: 5px;
}

.jp:hover {
  opacity: 1;
  color: #61b7d9;
}

.en {
  margin-left: 3px;
}

.en:hover {
  opacity: 1;
  color: #61b7d9;
}

/* ----about us---- */

.aboutus {
  width: 100vw;
  text-align: center;
  position: relative;
}

.aboutus h4 {
  font-weight: bold;
  margin: 5rem 0;
}

.about-us {
  position: relative;
  padding-top: 7rem;
}

.about-us h3 {
  color: #b1a79a;
  font-weight: 100;
  font: 14px;
  position: absolute;
  top: 5rem;
  left: 8rem;
  line-height: 2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .about-us h3{
    position: inherit;
    left: 0;
    text-align: center;
    top: 0;
  }
}

.about-us h3::after {
  display: block;
  content: "";
  height: 1px;
  width: 100px;
  background: #b1a79a;
  position: absolute;
  top: 1rem;
  left: 9rem;
}

@media(max-width:900px) {
  .about-us h3::after{
    display: none;
  }
}

.yurai {
  font-size: 2vw;
  width: 90vw;
  margin: 0 auto;
  margin-top: 7rem;
  margin-bottom: 7rem;
  text-align: center;
}

@media(max-width:900px) {
  .yurai {
    font-size: 1.7rem;
  }
}

.yurai h2 {
  font-size: 28px;
}

@media(max-width:1025px) {
  .yurai h2 {
    font-size: 24px;
  }
}

@media(max-width:900px) {
  .yurai h2 {
    font-size: 20px;
  }
}

.yurai p {
  margin: 0 auto;
  font-family: dnp-shuei-gothic-kin-std;
  font-size: 20px
}

.small {
  font-size: 1rem !important;
  padding-top: 3rem;
}

.gaiyou{
  width: 100%;
}

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

.gaiyou h4 {
  font-family: dnp-shuei-gothic-kin-std;
  text-align: center;
  margin-bottom: 4rem;
}

.gaiyou table {
  width: 45vw;
  min-width: 300px;
  font-family: dnp-shuei-gothic-kin-std;
  font-size: 14px;
}

@media(max-width:900px) {
  .gaiyou table {
    width: 90vw;
    min-width: none;
  }
}

.gaiyou th {
  text-align: right;
  padding-top: 1rem;
  vertical-align: top;
}

.gaiyou td {
  text-align: left;
  padding-left: 2rem;
  padding-top: 1rem;
}

.gaiyou iframe {
  height: 500px;
}

@media(max-width:900px) {
  .gaiyou iframe {
    margin-top: 3rem;
    width: 90vw;
  }
}

.enkaku {
  width: 50vw;
  margin: 0 auto;
  margin-top: 5rem;
  text-align: left;
}

@media(max-width:900px) {
  .enkaku {
    width: 90vw;
  }
}

.enkaku h4 {
  margin-bottom: 3rem;
  text-align: center;
  font-family: dnp-shuei-gothic-kin-std;
}

.enkaku tr{
  vertical-align: top;
}

.enkaku th{
min-width: 50px;
}

.service {
  text-align: center;
  position: relative;
  padding-top: 8rem;
  width: 100%;
}

.service h3 {
  color: #b1a79a;
  font-weight: 100;
  font: 14px;
  position: absolute;
  top: 10rem;
  left: 8rem;
  line-height: 2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .service h3 {
    left: 0;
    right: 0;
    margin: auto;
  }
}

.service h3::after {
  display: block;
  content: "";
  height: 1px;
  width: 100px;
  background: #b1a79a;
  position: absolute;
  top: 1rem;
  left: 12rem;
}

@media(max-width:900px) {
  .service h3::after{
    display: none;
  }
}

.service-wrapper {
  display: flex;
  justify-content: center;
  width: 80vw;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding-top: 10rem;
}

@media(max-width:1025px) {
  .service-wrapper {
    width: 100vw;
    flex-wrap: wrap;
  }
}

.service-left {
  text-align: left;
  width: 40%;
  min-width: 300px;
  margin-right: 3rem;
}

@media(max-width:1025px) {
  .service-left {
    width: 90%;
    margin-right: 0;
  }
}

.service-left p {
  line-height: 2rem;
  letter-spacing: .1em;
}

.service-right {
  width: 500px;
  position: relative;
}

@media(max-width:1025px) {
  .service-right {
    margin-top: 3rem;
  }
}

@media(max-width:900px) {
  .service-right {
    width: 90%;
  }
}

.service-text1 {
  position: absolute;
  top: 80px;
  left: 30px;
  color: #999;
}
@media(max-width:420px){
  .service-text1{
    top: 70px;
  }
}

.service-text1::after,
.service-text2::after,
.service-text3::after,
.service-text4::after {
  display: block;
  content: "";
  background: #61b7d9;
  height: 1px;
  width: 10px;
}

.service-text2 {
  position: absolute;
  top: 120px;
  right: 0;
  color: #999;
}

.service-text3 {
  position: absolute;
  top: 240px;
  left: 0;
  color: #999;
}

.service-text4 {
  position: absolute;
  top: 290px;
  right: 40px;
  color: #999;
}

#container {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.circle2 {
  border-radius: 50%;
  background-color: deepskyblue;
  width: 150px;
  height: 150px;
  position: absolute;
  opacity: 0;
  -webkit-animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
  z-index: -1;
}

@-webkit-keyframes scaleIn {
  from {
    transform: scale(.5, .5);
    opacity: .5;
  }

  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(.5, .5);
    opacity: .5;
  }

  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}

.item {
  padding: 5px;
}

.item img {
  width: 150px;
}

.work-text {
  text-align: left;
  height: auto;
  ;
}

.work-text h4 {
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
}

@media only screen and (max-width: 900px) {
  .work-text {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
  }
}

.work-text p {
  font-size: 1.2rem;
  margin: 10px 0;
  font-family: "Josefin Sans", sans-serif;
}

.work-text ol {
  width: 100%;
  height: auto;
  padding-left: 0;
}

.work-text ol li {
  width: 100%;
  height: 26px;
  text-align: center;
  background-color: #61b7d9;
  margin: 20px 0 30px 0;
  padding-top: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  color: #fefefe;
  list-style: none;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .work-text ol li {
    width: 100%;
  }
}

.work-text--arrow:after {
  display: block;
  content: "";
  background: url(../images/arrow.png) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
}


/* CONTACT */
.contact {
  position: relative;
  margin: 0 auto;
  width: 100vw;
  height: auto;
  padding-top: 50vh;
  padding-bottom: 50vh;
}

.contact_container {
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact_container>.banner {
  position: absolute;
}

.contact_container>.banner {
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: auto;
  justify-content: center;
  align-content: center;
  position: absolute;
  left: 0px;
  top: calc((100% - 200px) / 2);
}

.contact_container>.banner>p {
  align-self: center;
  text-transform: uppercase;
  font-size: 13px;
}

.contact_container>.banner>a {
  color: #000;
  height: auto;
  margin-top: 15px;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-self: center;
  font-size: 1.4rem;
}

.contact_container>.banner>a:hover {
  color: #999;
}

.contact_container>.banner>a>p {
  margin: 0 8px;
  font-size: 1.4rem;
}

.contact_container>.banner>a>i {
  display: block;
  background: url(../images/aircraft-gray.png) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 20px;
  margin-top: -1px;
  margin-left: 10px;
}

.contact_container>.banner>a>i:before {
  display: inline-block;
  /* filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.26)); -webkit-filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.26)); */
  content: "";
  position: relative;
  top: 0px;
  left: 0;
  width: 30px;
  height: 20px;
  transition: 400ms left ease-in-out;
  -webkit-transition: 400ms left ease-in-out;
  display: block;
  background: url(../images/aircraft-black.png) no-repeat center;
  background-size: contain;
}

.contact_container>.banner>a.active>i:before,
.contact_container>.banner>a:hover>i:before,
.contact_container>.banner>a:focus>i:before {
  animation: paper-plane 4s ease-in-out;
  -webkit-animation: paper-plane 4s ease-in-out;
}

/* animation beginning */

@-webkit-keyframes paper-plane {
  0% {
    left: 0;
    top: 0px;
    -webkit-transform: rotate(0deg);
  }

  20% {
    left: 125px;
    -webkit-transform: rotate(-90deg);
  }

  40% {
    top: -100px;
    -webkit-transform: rotate(-180deg);
  }

  60% {
    left: -225px;
    -webkit-transform: rotate(-270deg);
  }

  80% {
    top: 0px;
    -webkit-transform: rotate(-360deg);
  }

  100% {
    left: 0;
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes paper-plane {
  0% {
    left: 0px;
    top: 0px;
    transform: rotate(0deg);
  }

  20% {
    left: 125px;
    transform: rotate(-90deg);
  }

  40% {
    top: -100px;
    transform: rotate(-180deg);
  }

  60% {
    left: -225px;
    transform: rotate(-270deg);
  }

  80% {
    top: 0px;
    transform: rotate(-360deg);
  }

  100% {
    left: 0;
    transform: rotate(-360deg);
  }
}

.flex {
  display: inline-flex;
}

.flex.vertical {
  flex-flow: column wrap;
}

.flex.horizontal {
  flex-flow: row wrap;
}

.footer {
  margin: 0 auto;
  text-align: right;
}

.footer p a {
  margin-right: 5rem;
  color: #000;
  text-decoration: underline;
}

@media(max-width:900px) {
  .footer p a {
    margin-right: 30px;
  }
}

/* ---- contact ---- */

.logo-contact {
  width: 100vw;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.logo-contact h1 {
  font-size: 20px;
  color: black;
  padding-top: 1rem;
}

@media(max-width:420px) {
  .logo-contact h1 {
    font-size: 16px;
    text-align: right;
    margin-right: 1.5rem;
  }
}

.footer2 {
  margin: 0 auto;
  text-align: right;
  margin-bottom: 3rem;
}

.footer2 p a {
  margin-right: 5rem;
  margin-top: 5rem;
  color: #000;
  text-decoration: underline;
}

@media(max-width:900px) {
  .footer2 p a {
    margin-right: 30px;
  }
}

.contact-top {
  height: 100px;
}

/* ---- form ---- */
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  font-family: dnp-shuei-gothic-kin-std;
  margin-bottom: 5rem;
}

@media screen and (max-width: 900px) {
  .Form {
    margin-top: 40px;
    width: 90vw;
  }
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 900px) {
  .Form-Item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}

.Form-Item:first-child {
  border-top: none;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 900px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 900px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 80px;
  display: inline-block;
  text-align: center;
  background: #61b7d9;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 70px;
    font-size: 10px;
  }
}

.Form-Item-Label-free {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 80px;
  display: inline-block;
  text-align: center;
  background: #b1a79a;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .Form-Item-Label-free {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 70px;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 900px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 900px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #61b7d9;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.Form-Btn:hover {
  opacity: .5;
}

input[type="text"]:focus {
  outline: 0;
}

::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}

::-moz-placeholder {
  font-size: 14px;
  color: #999;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: #999;
}

::-ms-input-placeholder {
  font-size: 14px;
  color: #999;
}

::placeholder {
  font-size: 14px;
  color: #999;
}

.exchange2 {
  position: absolute;
  top: 1rem;
  right: 5rem;
  display: flex;
  justify-content: space-around;
  width: 50px;
}

@media(max-width:900px) {
  .exchange2 {
    right: 30px;
  }
}

.exchange2 p {
  color: black;
  font-size: 14px;
}

.exchange2 p a {
  color: black;
  font-size: 14px;
}

.jp {
  margin-right: 5px;
}

/* ---- privacy policy ---- */
.policy {
  width: 60vw;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  font-family: dnp-shuei-gothic-kin-std;
}

@media(max-width:900px) {
  .policy {
    width: 90vw;
  }
}

@media(max-width:420px) {
  .policy h2 {
    font-size: 1.2rem;
    text-align: center;
  }
}

@media(max-width:420px) {
  .policy h3 {
    font-size: 1rem;
  }
}

.frame {
  border: solid 1px #999;
  padding: 1rem 2rem;
}

.policy h3 {
  margin-bottom: 3rem;
}

.policy li {
  margin: 1rem 0;
}

.policy ul li {
  list-style-type: decimal;
}

.policy ol li {
  list-style-type: disc;
}

/* ---- thanks ---- */
.thanks {
  font-family: dnp-shuei-gothic-kin-std;
  text-align: center;
}

.thanks h2 {
  margin-top: 10rem;
  font-size: 2rem;
}

@media(max-width: 900px) {
  .thanks h2 {
    font-size: 1rem;
    ;
  }
}

.hidden {
  visibility: hidden;
}

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

.products {
  text-align: center;
  position: relative;
  padding-top: 8rem;
  width: 100vw;
}

.products h3 {
  color: #b1a79a;
  font-weight: 100;
  font: 14px;
  position: absolute;
  top: 5rem;
  left: 8rem;
  line-height: 2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .products h3 {
    left: 0;
    right: 0;
    margin: auto;
  }
}

.products h3::after {
  display: block;
  content: "";
  height: 1px;
  width: 100px;
  background: #b1a79a;
  position: absolute;
  top: 1rem;
  left: 18rem;
}

@media(max-width:900px) {
  .products h3::after{
    display: none;
  }
}

.products-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  width: 80vw;
  margin-top: 5rem !important;
}

@media(max-width:1025px) {
  .products-wrapper {
    width: 90vw;
  }
}

@media(max-width:900px) {
  .products-wrapper {
    display: inherit;
  }
}

.products-inner {
  margin: 0 1rem;
  width: 40vw;
}

@media(max-width:900px) {
  .products-inner {
    width: 100%;
    margin: 0;
  }
}


.products-inner h4 {
  padding: 1rem 3rem;
  transform: skew(-15deg);
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
}

.products-item img {
  width: 100%;
  margin: 2rem 0;
}

@media(max-width:900px) {
  .products-item img{
    margin: 1rem 0;
  }
}

.products-p {
  text-align: left;
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: solid 1px gray;
}

@media(max-width:900px) {
  .products-p {
    padding-bottom: 2rem;
  }
}

.bold {
  font-weight: bold;
  margin-top: 3rem;
}

figure {
  position: relative;
}

figcaption {
  font-size: 12px;
  position: absolute;
  bottom: -20px;
  left: -40px;
  text-align: left;
  line-height: 16px;
}


.clients{
  width: 100vw;
}

.clients h2 {
  margin-bottom: 5rem;
}

.clients ul {
  margin: 0;
  padding: 0;
}

.clients ul li {
  list-style: none;
  margin: 1rem 0;
}

.clients p {
  margin-top: 3rem;
}

.work {
  text-align: center;
  position: relative;
  margin-top: 3rem;
  width: 100vw;
}

.work h3 {
  color: #b1a79a;
  font-weight: 100;
  font: 14px;
  position: absolute;
  top: 3rem;
  left: 8rem;
  line-height: 2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .work h3 {
    left: 0;
    right: 0;
    margin: auto;
  }
}

.work h3::after {
  display: block;
  content: "";
  height: 1px;
  width: 100px;
  background: #b1a79a;
  position: absolute;
  top: 1rem;
  left: 11rem;
}

@media(max-width:900px) {
  .work h3::after{
    display: none;
  }
}

@media(max-width:900px) {
  .works-column ol li {
    margin: 0 auto;
    width: 100%;
  }
}

@media(max-width:900px) {
  .works-column {
    margin: 0 auto;
  }
}
