@charset "UTF-8";
@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium");
}

/***********************************
基本
***********************************/
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  background: #ececec;
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}

a {
  -webkit-transition: .3s;
  color: #303438;
  opacity: 1;
  text-decoration: none;
  transition: .3s;
}

a:active {
  text-decoration: none;
}

a:hover {
  opacity: 0.4;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

#content {
  width: 1100px;
}

#content div {
  font-size: 1rem;
}

#content p {
  color: red;
  font-size: 1.2rem;
}

/**
 * is-bolck
**/
.is-sp--block {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-sp--block {
    display: block !important;
  }
}

.is-md--block {
  display: none !important;
}

@media screen and (max-width: 1100px) {
  .is-md--block {
    display: block !important;
  }
}

.is-pc--block {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .is-pc--block {
    display: none !important;
  }
}

/**
 * アニメーション
**/
.text-effect {
  -webkit-animation-name: marquee;
  /*アニメーションのクラス名*/
  -webkit-animation-timing-function: linear;
  /*アニメーションのタイミング・進行割合の指定*/
  -webkit-animation-duration: 30s;
  /*アニメーションの速度*/
  -webkit-animation-iteration-count: infinite;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  /*アニメーションの範囲*/
  display: inline-block;
  margin: 0;
  padding-left: 724px;
  white-space: nowrap;
  /*アニメーションの動作回数*/
}

@-webkit-keyframes marquee {
  /*動作範囲(上級者向けの設定)*/
  from {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }
  99%, to {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
}

@keyframes marquee {
  /*動作範囲(上級者向けの設定)*/
  from {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }
  99%, to {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
}

.text-effect {
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  display: inline-block;
  margin: 0;
  padding-left: 724px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }
  99%, to {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
}

/**
 * top Style
**/
.wrap {
  letter-spacing: 2px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .wrap {
    overflow: hidden;
    position: relative;
  }
}

.flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

/****
メニュー
*****/
.sp-menu {
  display: none;
}

@media screen and (max-width: 900px) {
  .sp-menu {
    display: block;
  }
}

header {
  width: 100%;
}

#nav-toggle {
  background: #ffffff;
  cursor: pointer;
  height: 32px;
  height: 85px;
  position: fixed;
  right: 50px;
  top: 30px;
  width: 85px;
}

@media screen and (max-width: 1100px) {
  #nav-toggle {
    height: 60px;
    right: 20px;
    top: 20px;
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  #nav-toggle {
    height: 55px;
    right: 20px;
    top: 10px;
    width: 55px;
  }
}

#nav-toggle > div {
  -webkit-transform: translateY(-50%) translateX(-50%);
  left: 50%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%) translateX(-50%);
  width: 30px;
}

#nav-toggle > div > span.toggle {
  -webkit-transition: top .5s ease, -webkit-transform .3s ease-in-out;
  background: #232222;
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: top .5s ease, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, top .5s ease;
  transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
  width: 100%;
}

header.deteal_header #nav-toggle > div > span.toggle {
  -webkit-transition: top .5s ease, -webkit-transform .3s ease-in-out;
  background: #232222;
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: top .5s ease, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, top .5s ease;
  transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
  width: 100%;
}

#nav-toggle span.toggle:nth-child(1) {
  top: -6px;
}

#nav-toggle span.toggle:nth-child(2) {
  top: 2px;
}

#nav-toggle span.toggle:nth-child(3) {
  top: 10px;
}

#nav-toggle span.text {
  font-size: 1rem;
  left: -2px;
  letter-spacing: 1px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 18px;
}

@media screen and (max-width: 767px) {
  #nav-toggle span.text {
    font-size: 1rem;
    top: 15px;
  }
}

.open #nav-toggle span.toggle {
  background: #232222;
}

.open #nav-toggle span.toggle:nth-child(1) {
  -webkit-transform: rotate(45deg);
  top: 2px;
  transform: rotate(45deg);
}

.open #nav-toggle span.toggle:nth-child(2) {
  left: 50%;
  top: 10px;
  width: 0;
}

.open #nav-toggle span.toggle:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  top: 2px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  align-items: center;
  background-color: rgba(32, 32, 32, 0.8);
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-size: 29px;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: opacity .3s ease, visibility .3s ease;
  visibility: hidden;
  z-index: 990;
}

#gloval-nav a {
  -webkit-transition: color .3s ease;
  color: #fff;
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .5em;
  padding: 20px 0;
  text-decoration: none;
  transition: color .3s ease;
}

#gloval-nav a:hover {
  color: #000000;
}

#gloval-nav ul {
  list-style: none;
  padding: 0;
}

#gloval-nav ul li {
  -webkit-transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  opacity: 0;
  transform: translateX(200px);
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .2s ease;
  transition: transform .3s ease, opacity .2s ease, -webkit-transform .3s ease;
}

#gloval-nav ul li:nth-child(2) {
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
}

#gloval-nav ul li:nth-child(3) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

#gloval-nav ul li:nth-child(4) {
  -webkit-transition-delay: .25s;
  transition-delay: .25s;
}

/* open */
.open {
  overflow: hidden;
}

.open #gloval-nav {
  opacity: 1;
  visibility: visible;
}

.open #gloval-nav li {
  -webkit-transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

@media screen and (max-width: 767px) {
  #gloval-nav a {
    font-size: .5em;
    padding: 20px 0;
  }
}

.open #gloval-nav .contact {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .open #gloval-nav .contact {
    padding: 0 30px;
  }
}

.open #gloval-nav .contact .title {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.open #gloval-nav .contact .menutel {
  margin: 0;
  margin-bottom: 10px;
}

.open #gloval-nav .contact .menutel a {
  font-size: 2.4rem;
  letter-spacing: 6px;
  line-height: 1.2;
  margin: 0;
  padding: 10px;
}

.open #gloval-nav .contact .menudata {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0;
  padding: 0;
  text-align: center;
}

/******
コンテンツ
*******/
.fv {
  background: #ffffff;
  position: relative;
  width: 100%;
}

.fv header {
  -webkit-box-sizing: border-box;
  background: #ffffff;
  box-sizing: border-box;
  padding: 8px;
}

@media screen and (max-width: 1100px) {
  .fv header {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 767px) {
  .fv header {
    padding: 10px 10px 10px 10px;
  }
}

.fv header .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-sizing: border-box;
  align-items: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1600px;
  padding: 20px 0;
}

@media screen and (max-width: 1100px) {
  .fv header .inner {
    display: block;
    padding: 0px 0;
  }
}

.fv header .logo {
  margin-right: 68px;
  max-width: 217px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .fv header .logo {
    margin: 0 auto;
    max-width: 156px;
  }
}

@media screen and (max-width: 767px) {
  .fv header .logo {
    margin: 0;
    margin-left: 10px;
    max-width: 96px;
  }
}

.fv header .menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .fv header .menu {
    display: none;
  }
}

.fv header .menu li {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 1.8rem;
  margin-right: 30px;
}

.fv header .menu li:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 1100px) {
  .fv header .menu li {
    font-size: 1.4rem;
    margin-right: 20px;
  }
}

.fv .main {
  position: relative;
  width: 100vw;
}

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

.fv .main .catch {
  -webkit-transform: translate(-50%, -70%);
  left: 50%;
  margin-right: -50%;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -70%);
  z-index: 1;
}

@media screen and (max-width: 1100px) {
  .fv .main .catch {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .fv .main .catch {
    width: 90%;
  }
}

.fv .main .catch img {
  width: 100%;
}

.fv .main .catch-compnany {
  -webkit-transform: translate(-50%, -50%);
  bottom: 0%;
  left: 50%;
  margin-right: -50%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 1100px) {
  .fv .main .catch-compnany {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .fv .main .catch-compnany {
    width: 90%;
  }
}

.fv .main .images {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .fv .main .images {
    max-width: 100%;
  }
}

.fv .main .images img {
  margin: 0 auto;
  width: 100%;
}

.message {
  background: #FFF169;
  overflow: hidden;
  position: relative;
}

.message .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1600px;
  padding: 120px 20px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .message .inner {
    padding: 80px 20px;
  }
}

.message .inner .title {
  font-family: 'Hind', sans-serif;
  font-size: 5rem;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .message .inner .title {
    font-size: 4rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .message .inner .title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}

.message .inner .lead {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .message .inner .lead {
    line-height: 2;
    padding: 0 30px;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .message .inner .lead {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0;
  }
}

.message .copy-text {
  bottom: 160px;
  color: #695f02;
  font-family: 'Hind', sans-serif;
  font-family: futura-pt, sans-serif;
  font-size: 21.5rem;
  font-weight: bold;
  left: 0;
  opacity: 0.07;
  position: absolute;
  right: 0;
  text-align: left;
}

.service {
  background: #F2F2F2;
  overflow: hidden;
  position: relative;
}

.service .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1600px;
  padding: 120px 20px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .service .inner {
    padding: 80px 20px;
  }
}

.service .inner .title {
  font-family: 'Hind', sans-serif;
  font-size: 5rem;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .service .inner .title {
    font-size: 4rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .service .inner .title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}

.service .inner .list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .service .inner .list {
    display: block;
  }
}

.service .inner .list li {
  max-width: 552px;
  width: 48%;
}

@media screen and (max-width: 767px) {
  .service .inner .list li {
    margin-bottom: 50px;
    max-width: 100%;
    width: 100%;
  }
  .service .inner .list li:last-child {
    margin-bottom: 0px;
  }
}

.service .inner .list li img {
  max-width: 552px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .service .inner .list li img {
    max-width: 100%;
    width: 100%;
  }
}

.service .inner .list li .content-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  margin-top: 30px;
  text-decoration: underline;
}

@media screen and (max-width: 1100px) {
  .service .inner .list li .content-title {
    font-size: 2rem;
  }
}

.service .inner .list li .lead {
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .service .inner .list li .lead {
    font-size: 1.6rem;
  }
}

.service .copy-text {
  bottom: 0px;
  color: #cbcbcb;
  font-family: 'Hind', sans-serif;
  font-family: futura-pt, sans-serif;
  font-size: 21.5rem;
  font-weight: bold;
  left: 0;
  line-height: 1;
  opacity: 0.25;
  position: absolute;
  right: 0;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .service .copy-text {
    font-size: 18.5rem;
  }
}

.features {
  background-image: url(../img/features.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.features .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1600px;
  padding: 120px 20px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .features .inner {
    padding: 80px 20px;
  }
}

.features .inner .sub-title {
  font-size: 2.6rem;
}

@media screen and (max-width: 1100px) {
  .features .inner .sub-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .features .inner .sub-title {
    font-size: 2rem;
  }
}

.features .inner .title {
  font-family: 'Hind', sans-serif;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 20px;
}

@media screen and (max-width: 1100px) {
  .features .inner .title {
    font-size: 4rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .features .inner .title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}

.features .inner .list {
  -webkit-box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  max-width: 708px;
  padding: 50px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .features .inner .list {
    padding: 40px;
  }
}

.features .inner .list li {
  border-bottom: 1px solid #333333;
  list-style: none;
  margin-bottom: 35px;
  padding-bottom: 35px;
}

@media screen and (max-width: 1100px) {
  .features .inner .list li {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}

.features .inner .list li:last-child {
  margin-bottom: 0;
}

.features .inner .list li .content-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 1100px) {
  .features .inner .list li .content-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .features .inner .list li .content-title {
    font-size: 2rem;
    font-weight: bold;
  }
}

.features .inner .list li .lead {
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .features .inner .list li .lead {
    font-size: 1.6rem;
  }
}

.company {
  background: #FFF169;
  position: relative;
}

.company .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1600px;
  padding: 120px 20px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .company .inner {
    padding: 80px 20px;
  }
}

.company .inner .sub-title {
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .company .inner {
    font-size: 2rem;
  }
}

.company .inner .title {
  font-family: 'Hind', sans-serif;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .company .inner .title {
    font-size: 4rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .company .inner .title {
    font-size: 3rem;
  }
}

.company .inner .box {
  margin: 0 auto;
  max-width: 613px;
  width: 100%;
}

.company .inner .box dl {
  border-bottom: 1px solid #333333;
  list-style: none;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 1100px) {
  .company .inner .box dl {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}

.company .inner .box dl:last-child {
  margin-bottom: 0;
}

.company .inner .box dl dt {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .company .inner .box dl dt {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .company .inner .box dl dt {
    font-size: 2rem;
  }
}

.company .inner .box dl dd {
  font-size: 1.7rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .company .inner .box dl dd {
    font-size: 1.6rem;
  }
}

.contact {
  background: #F2F2F2;
  position: relative;
}

.contact .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1600px;
  padding: 120px 20px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .contact .inner {
    padding: 80px 20px;
  }
}

.contact .inner .title {
  font-family: 'Hind', sans-serif;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .contact .inner .title {
    font-size: 4rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .title {
    font-size: 3rem;
  }
}

.contact .inner .box {
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}

.contact .inner .box dl {
  list-style: none;
  margin-bottom: 40px;
}

.contact .inner .box dl:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box dl {
    margin-bottom: 25px;
  }
}

.contact .inner .box dl dt {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box dl dt {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .box dl dt {
    font-size: 2rem;
  }
}

.contact .inner .box dl dd {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.7rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .contact .inner .box dl dd {
    font-size: 1.6rem;
  }
}

.contact .inner .box dl dd input {
  -webkit-box-sizing: border-box;
  border: none;
  box-sizing: border-box;
  font-size: 1.7rem;
  padding: 25px 30px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box dl dd input {
    padding: 20px 25px;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .box dl dd input {
    padding: 20px 15px;
  }
}

.contact .inner .box dl dd textarea {
  -webkit-box-sizing: border-box;
  border: none;
  box-sizing: border-box;
  font-size: 1.7rem;
  height: 350px;
  padding: 25px 30px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box dl dd textarea {
    padding: 20px 25px;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .box dl dd textarea {
    padding: 20px 15px;
  }
}

.contact .inner .box dl dd.input {
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border: none;
  box-sizing: border-box;
  font-size: 1.7rem;
  padding: 25px 30px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box dl dd.input {
    padding: 20px 25px;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .box dl dd.input {
    padding: 20px 15px;
  }
}

.contact .inner .box .btn {
  background: #b4ea00;
  border: none;
  border-radius: 20px;
  display: block;
  font-size: 2.6rem;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 464px;
  padding: 20px 10px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box .btn {
    font-size: 2.2rem;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .box .btn {
    font-size: 2rem;
  }
}

.contact .inner .box .btn-list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .contact .inner .box .btn-list {
    display: block;
    margin-top: 40px;
  }
}

.contact .inner .box .btn-list li {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .contact .inner .box .btn-list li {
    width: 100%;
  }
}

.contact .inner .box .btn-list li input {
  margin: 20px auto 0;
}

.contact .inner .box .back {
  background: #dddddd;
  border: none;
  border-radius: 20px;
  display: block;
  font-size: 2.6rem;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 464px;
  padding: 20px 10px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .contact .inner .box .back {
    font-size: 2.2rem;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .contact .inner .box .back {
    font-size: 2rem;
  }
}

.contact .inner .box .comp {
  border: 1px solid #333;
  font-size: 2.8rem;
  padding: 8px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .inner .box .comp {
    font-size: 1.8rem;
  }
}

.contact .inner .box .lead {
  margin: 40px 0;
  padding: 0 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .inner .box .lead {
    font-size: 1.4rem;
    margin: 30px 0;
    padding: 0 0px;
  }
}

.form .fv header {
  padding: 0;
}

.sp-tel {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-tel {
    -webkit-box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    box-sizing: border-box;
    display: block;
    left: 0;
    margin: 0 auto;
    padding: 12px 8px;
    position: fixed;
    right: 0;
    text-align: center;
    width: 100%;
  }
  .sp-tel .flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .sp-tel li {
    width: 49%;
  }
  .sp-tel .line .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #545454;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 54px;
    justify-content: center;
    padding: 0;
  }
  .sp-tel .tel .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #545454;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    height: 54px;
    justify-content: center;
    letter-spacing: 0px;
    line-height: 1.3;
    padding: 0 10px;
  }
  .sp-tel .tel .link .icon {
    margin-right: 4px;
  }
}

/****
状態対応
*****/
.is-pc {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

/****
スクロールアニメーション
*****/
/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.slide-left {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}

/**
 * Footer Style
**/
.footer {
  background: #ffffff;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 30px 30px 50px 30px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .footer {
    font-size: 1.3rem;
    padding: 50px 20px 60px 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 20px 50px 20px;
  }
}

.footer .logo {
  margin-bottom: 30px;
  max-width: 224px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .footer .logo {
    max-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .footer .logo {
    margin-bottom: 0px;
    max-width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .footer .menu {
    display: none;
  }
}

.footer .menu li {
  margin-right: 30px;
}

.footer .menu li:last-child {
  margin-right: 0px;
}

.footer .copyright {
  display: block;
  font-size: 1.2rem;
  margin-top: 45px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 30px;
  }
}
