@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

#container {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6em;
  line-height: 1.7;
  color: #131313;
  min-width: 1000px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #container {
    font-size: 1.3rem;
    min-width: 320px;
  }
}

a {
  text-decoration: none;
  word-break: break-word;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/*
::selection {
	background-color: #;
	color: #;
}
*/
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
}

input, select, textarea {
  font-size: 16px !important;
  vertical-align: middle;
}

button {
  line-height: 1.7;
  cursor: pointer;
}

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

img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th {
  text-align: left;
  vertical-align: top;
}

.ophv {
  -webkit-transition: .3s;
  transition: .3s;
}

.ophv:hover {
  opacity: .6;
  text-decoration: none;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

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

/*----------------------------------------------------
 ヘッダー
----------------------------------------------------*/
#header {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
}

#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 15px 5%;
}

@media screen and (max-width: 768px) {
  #header .inner {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  #header .logo {
    width: 60px;
    padding: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 768px) {
  #header .gnav {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #header .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header .gnav ul li {
    font-size: 20px;
    text-align: center;
    margin-right: 40px;
  }
  #header .gnav ul li:last-child {
    margin-right: 0;
  }
  #header .gnav ul li a {
    display: block;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
  }
  #header .gnav ul li a:hover {
    color: #131313;
  }
  #header .gnav ul li .jp {
    display: block;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  #header .gnav {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
  }
  #header .gnav ul li .en {
    display: none;
  }
  #header .gnav ul li a {
    display: block;
    background-color: #19bc5e;
    border-top: 1px solid #fff;
    color: #fff;
    padding: 15px;
  }
  #header .gnav ul li a::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 3px 0 3px 5.2px;
    border-color: transparent transparent transparent #fff;
    margin-right: 10px;
  }
}

#header .gnav-btn {
  display: none;
  width: 60px;
  height: 60px;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #header .gnav-btn {
    display: block;
  }
}

#header .gnav-btn span {
  display: block;
  background-color: #fff;
  width: 28px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

#header .gnav-btn span:nth-of-type(2) {
  top: 26px;
}

#header .gnav-btn span:nth-of-type(3) {
  top: 36px;
}

#header .gnav-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

#header .gnav-btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: .8s forwards;
          animation: .8s forwards;
}

#header .gnav-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

#header-fix {
  background-color: #fff;
  color: #19bc5e;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
}

#header-fix .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 15px 5%;
}

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

@media screen and (max-width: 768px) {
  #header-fix .logo {
    width: 60px;
    padding: 10px;
  }
}

#header-fix .gnav-btn {
  display: none;
  width: 60px;
  height: 60px;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #header-fix .gnav-btn {
    display: block;
  }
}

#header-fix .gnav-btn span {
  display: block;
  background-color: #19bc5e;
  width: 28px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

#header-fix .gnav-btn span:nth-of-type(2) {
  top: 26px;
}

#header-fix .gnav-btn span:nth-of-type(3) {
  top: 36px;
}

#header-fix .gnav-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

#header-fix .gnav-btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: .8s forwards;
          animation: .8s forwards;
}

#header-fix .gnav-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

@media screen and (min-width: 768px) {
  #header-fix .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header-fix .gnav ul li {
    font-size: 20px;
    text-align: center;
    margin-right: 40px;
  }
  #header-fix .gnav ul li:last-child {
    margin-right: 0;
  }
  #header-fix .gnav ul li a {
    display: block;
    color: #19bc5e;
    -webkit-transition: .3s;
    transition: .3s;
  }
  #header-fix .gnav ul li a:hover {
    color: #131313;
  }
  #header-fix .gnav ul li .jp {
    display: block;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  #header-fix .gnav {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
  }
  #header-fix .gnav ul li .en {
    display: none;
  }
  #header-fix .gnav ul li a {
    display: block;
    background-color: #19bc5e;
    border-top: 1px solid #fff;
    color: #fff;
    padding: 15px;
  }
  #header-fix .gnav ul li a::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 3px 0 3px 5.2px;
    border-color: transparent transparent transparent #fff;
    margin-right: 10px;
  }
}

/*----------------------------------------------------
 フッター
----------------------------------------------------*/
footer {
  background-color: #446175;
  background-image: url(../img/common/foot_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  height: 310px;
  position: relative;
}

@media screen and (max-width: 768px) {
  footer {
    height: auto;
  }
}

footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 5%;
}

@media screen and (max-width: 768px) {
  footer .inner {
    display: block;
    padding: 10% 10px;
  }
}

footer .logo {
  width: 4.26%;
}

@media screen and (max-width: 768px) {
  footer .logo {
    text-align: center;
    width: auto;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  footer .nav {
    margin: 40px 0 60px;
  }
}

footer .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  footer .nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .nav ul li {
  font-size: 20px;
  text-align: center;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  footer .nav ul li {
    margin-right: 10px;
  }
}

footer .nav ul li:last-child {
  margin-right: 0;
}

footer .nav ul li a {
  display: block;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

footer .nav ul li a:hover {
  color: #19bc5e;
}

@media screen and (max-width: 768px) {
  footer .nav ul li .en {
    display: none;
  }
}

footer .nav ul li .jp {
  display: block;
  font-size: 12px;
}

footer .copyright {
  font-size: 12px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

/*----------------------------------------------------
 アバウト
----------------------------------------------------*/
.sec-about {
  color: #fff;
  margin-top: -300px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .sec-about {
    margin-top: -20%;
  }
}

.sec-about::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #19bc5e;
  position: absolute;
  z-index: -1;
  top: 22%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .sec-about::before {
    top: 4%;
  }
}

.sec-about .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20% 5% 100px;
}

@media screen and (max-width: 768px) {
  .sec-about .inner {
    padding: 10% 10px;
  }
}

.sec-about .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .sec-about .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.sec-about .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .sec-about .secttl span {
    font-size: 1.8rem;
  }
}

.sec-about .about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .sec-about .about-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sec-about .about-list li {
  width: 30%;
  margin-right: 5%;
}

@media screen and (max-width: 768px) {
  .sec-about .about-list li {
    width: 47%;
    margin: 0 auto 20px;
  }
}

.sec-about .about-list li:last-child {
  margin-right: 0;
}

.sec-about .about-list li .cap {
  font-size: 1.6rem;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .sec-about .about-list li .cap {
    font-size: 1.3rem;
  }
}

/*----------------------------------------------------
 トップ
----------------------------------------------------*/
.p-top .pagehead .inner {
  background-color: #446175;
  background-image: url(../img/top/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  width: 100%;
  height: 1500px;
}

@media screen and (max-width: 768px) {
  .p-top .pagehead .inner {
    height: 100vh;
    min-height: 667px;
    padding: 20px;
    height: 50vh;
    min-height: 592px;
    padding: 20px;
  }
}

.p-top .pagehead .inner .txtarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 700px;
}

@media screen and (max-width: 768px) {
  .p-top .pagehead .inner .txtarea {
    padding-top: 60%;
  }
}

.p-top .pagehead .inner .txt {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-top .pagehead .inner .txt {
    margin-bottom: 20px;
  }
}

.p-top .pagehead .inner .txt02 {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-top .pagehead .inner .txt02 {
    margin-bottom: 20px;
  }
}

.p-top .pagehead .inner .txt03 {
  font-size: 2.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-top .pagehead .inner .txt03 {
    font-size: 1.3rem;
  }
}

.p-top .sec-greeting {
  color: #fff;
  margin-top: -200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting {
    margin-top: -20%;
  }
}

.p-top .sec-greeting::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #5b93dd;
  background-image: url(../img/top/greeting_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting::before {
    top: 4%;
  }
}

.p-top .sec-greeting .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 20% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting .inner {
    padding: 30% 10px;
  }
}

.p-top .sec-greeting .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting .flex {
    display: block;
  }
}

.p-top .sec-greeting .txtarea {
  font-size: 2rem;
  width: 45.3%;
  padding: 10px;
    background: rgb(47 55 61 / 18%);
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting .txtarea {
    font-size: 1.3rem;
    width: auto;
  }
}

.p-top .sec-greeting .secttl {
  font-size: 7.5rem;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting .secttl {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-top .sec-greeting .secttl span {
  display: block;
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting .secttl span {
    font-size: 1.8rem;
  }
}

.p-top .sec-greeting figure {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-top .sec-greeting figure {
    width: auto;
    text-align: center;
    margin-top: 20px;
  }
}

.p-top .sec-business {
  margin-top: -20%;
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business {
    margin-top: -20%;
  }
}

.p-top .sec-business::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #effef5;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
}

@media screen and (max-width: 768px) {
  .p-top .sec-business::before {
    top: 4%;
  }
}

.p-top .sec-business .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .inner {
    padding: 30% 10px;
  }
}

.p-top .sec-business .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-top .sec-business .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .secttl span {
    font-size: 1.8rem;
  }
}

.p-top .sec-business .business-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list {
    display: block;
  }
}

.p-top .sec-business .business-list li {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.1);
  width: 30%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li {
    width: auto;
  }
}

.p-top .sec-business .business-list li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li .flex {
    display: block;
  }
}

.p-top .sec-business .business-list li:nth-child(2) {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li:nth-child(2) {
    margin-top: 20px;
  }
}

.p-top .sec-business .business-list li:nth-child(3) {
  margin-top: 200px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li:nth-child(3) {
    margin-top: 20px;
  }
}


.p-top .sec-business .business-list li a {
  display: block;
  color: #131313;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li a {
    padding: 20px;
  }
}

.p-top .sec-business .business-list li figure {
  width: 52.9%;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li figure {
    width: auto;
    margin-bottom: 20px;
  }
}

.p-top .sec-business .business-list li .txtarea {
  font-size: 1.6rem;
  width: 42.6%;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li .txtarea {
    font-size: 1.3rem;
    width: auto;
  }
}

.p-top .sec-business .business-list li .ttl {
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li .ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.p-top .sec-business .business-list li .ttl span {
  display: block;
  font-size: 12px;
  color: #19bc5e;
}

.p-top .sec-business .business-list li .more {
  font-size: 12px;
  color: #19bc5e;
  position: absolute;
  bottom: 30px;
  right: -20px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-business .business-list li .more {
    bottom: 20px;
  }
}

.p-top .sec-business .business-list li .more::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #19bc5e;
  width: 60px;
  height: 1px;
  margin-left: 10px;
}

.p-top .sec-news {
  margin-top: -20%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news {
    margin-top: -20%;
  }
}

.p-top .sec-news::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
}

@media screen and (max-width: 768px) {
  .p-top .sec-news::before {
    top: 4%;
  }
}

.p-top .sec-news .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .inner {
    padding: 30% 10px;
  }
}

.p-top .sec-news .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-top .sec-news .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .secttl span {
    font-size: 1.8rem;
  }
}

.p-top .sec-news .news-list article {
  border-top: 1px solid #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2rem;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .news-list article {
    display: block;
    font-size: 1.3rem;
  }
}

.p-top .sec-news .news-list article:last-child {
  border-bottom: 1px solid #eaeaea;
}

.p-top .sec-news .news-list article .body {
  width: 85.3%;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .news-list article .body {
    width: auto;
  }
}

.p-top .sec-news .news-list article .ttl {
  font-weight: normal;
}

.p-top .sec-news .news-list article .ttl a {
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-top .sec-news .news-list article .ttl a:hover {
  color: #19bc5e;
}

.p-top .sec-news .btn {
  text-align: right;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .btn {
    margin-top: 20px;
  }
}

.p-top .sec-news .btn a {
  display: inline-block;
  border: 1px solid #19bc5e;
  color: #19bc5e;
  font-size: 20px;
  text-align: center;
  width: 230px;
  padding: 20px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

@media screen and (max-width: 768px) {
  .p-top .sec-news .btn a {
    font-size: 13px;
  }
}

.p-top .sec-news .btn a:hover {
  background-color: #19bc5e;
  color: #fff;
}

/*----------------------------------------------------
 下層共通
----------------------------------------------------*/
.p-low .pagehead {
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-low .pagehead {
    padding-top: 60px;
  }
}

.p-low .pagehead::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #19bc5e;
  position: absolute;
  z-index: -1;
  bottom: 34%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-low .pagehead::before {
    bottom: 5%;
  }
}

.p-low .pagehead .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 200px 5% 300px;
}

@media screen and (max-width: 768px) {
  .p-low .pagehead .inner {
    padding: 20% 10px;
  }
}

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

.p-low .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-low .breadcrumb ul li {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .p-low .breadcrumb ul li {
    font-size: 13px;
  }
}

.p-low .breadcrumb ul li::after {
  content: '>';
  margin: 0 10px;
}

.p-low .breadcrumb ul li:last-child::after {
  display: none;
}

.p-low .breadcrumb ul li a {
  color: #fff;
}

.p-low .pagettl {
  font-size: 83px;
}

@media screen and (max-width: 768px) {
  .p-low .pagettl {
    font-size: 20px;
  }
}

.p-low .pagettl span {
  display: block;
  font-size: 25px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .p-low .pagettl span {
    font-size: 12px;
  }
}

.p-low .sec-contact {
  margin-top: -300px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact {
    margin-top: -10%;
  }
}

.p-low .sec-contact::before {
  content: '';
  width: 120%;
  height: 60%;
  background-color: #19bc5e;
  background-image: url(../img/common/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

.p-low .sec-contact::after {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #effef5;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  -webkit-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
}

.p-low .sec-contact .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 20% 5%;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .inner {
    padding: 30% 10px;
  }
}

.p-low .sec-contact .box {
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .box {
    padding: 20px;
  }
}

.p-low .sec-contact .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-low .sec-contact .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .secttl span {
    font-size: 1.8rem;
  }
}

.p-low .sec-contact .cap {
  font-size: 2rem;
  color: #19bc5e;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .cap {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}

.p-low .sec-contact .mail-btn {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .mail-btn {
    margin-bottom: 30px;
  }
}

.p-low .sec-contact .mail-btn a {
  display: block;
  background-color: #19bc5e;
  color: #fff;
  font-size: 20px;
  padding: 20px 20px 20px 80px;
  background-image: url(../img/common/ico_mail.png);
  background-repeat: no-repeat;
  background-position: center left 30px;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .mail-btn a {
    font-size: 13px;
  }
}

.p-low .sec-contact .tel-btn a {
  display: block;
  background-color: #fff;
  border: 1px solid #19bc5e;
  color: #19bc5e;
  font-size: 20px;
  padding: 20px 20px 20px 80px;
  background-image: url(../img/common/ico_tel.png);
  background-repeat: no-repeat;
  background-position: center left 30px;
}

@media screen and (max-width: 768px) {
  .p-low .sec-contact .tel-btn a {
    font-size: 13px;
  }
}

.p-low .sec-contact .time {
  font-size: 1.2rem;
  margin-top: 20px;
}

/*----------------------------------------------------
 会社案内
----------------------------------------------------*/
.p-company .sec-greeting {
  color: #fff;
  margin-top: -340px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting {
    margin-top: -20%;
  }
}

.p-company .sec-greeting::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #5b93dd;
  background-image: url(../img/company/greeting_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting::before {
    top: 4%;
    background-position:right 5%;
    background-image: url(../img/company/greeting_bg_sp.jpg);
  }
}

.p-company .sec-greeting .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 20% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting .inner {
    padding: 30% 10px;
  }
}

.p-company .sec-greeting .txtarea {
  font-size: 2rem;
  line-height: 2.8;
  width: 51.7%;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting .txtarea {
    font-size: 1.2rem;
    width: auto;
  }
}

.p-company .sec-greeting .name {
  text-align: right;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting .name {
    margin-top: 30px;
  }
}

.p-company .sec-greeting .name span {
  font-size: 3.3rem;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting .name span {
    font-size: 1.8rem;
  }
}

.p-company .sec-greeting .secttl {
  font-size: 7.5rem;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting .secttl {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-company .sec-greeting .secttl span {
  display: block;
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting .secttl span {
    font-size: 1.8rem;
  }
}

.p-company .sec-greeting figure {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-company .sec-greeting figure {
    width: auto;
    text-align: center;
    margin-top: 20px;
  }
}

.p-company .sec-profile {
  margin-top: -300px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile {
    margin-top: -20%;
  }
}

.p-company .sec-profile::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #effef5;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile::before {
    top: 4%;
  }
}

.p-company .sec-profile .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile .inner {
    padding: 30% 10px;
  }
}

.p-company .sec-profile .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-company .sec-profile .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile .secttl span {
    font-size: 1.8rem;
  }
}

.p-company .sec-profile table tr {
  border-bottom: 1px solid #e3e3e3;
}

.p-company .sec-profile table th, .p-company .sec-profile table td {
  font-size: 1.6rem;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile table th, .p-company .sec-profile table td {
    font-size: 1.3rem;
  }
}

.p-company .sec-profile table th {
  font-weight: normal;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-profile table th {
    width: 100px;
  }
}

.p-company .sec-access {
  margin-top: -300px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-company .sec-access {
    margin-top: -20%;
  }
}

.p-company .sec-access::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
}

@media screen and (max-width: 768px) {
  .p-company .sec-access::before {
    top: 4%;
  }
}

.p-company .sec-access .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-company .sec-access .inner {
    padding: 30% 10px;
  }
}

.p-company .sec-access .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-access .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-company .sec-access .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-company .sec-access .secttl span {
    font-size: 1.8rem;
  }
}

.p-company .sec-access .map {
  margin-bottom: 20px;
}

.p-company .sec-access .map iframe {
  width: 100%;
  height: 540px;
}

@media screen and (max-width: 768px) {
  .p-company .sec-access .map iframe {
    height: 300px;
  }
}

.p-company .sec-access .txt {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .p-company .sec-access .txt {
    font-size: 1.3rem;
  }
}

/*----------------------------------------------------
 運送業務
----------------------------------------------------*/
.p-service .sec-service {
  margin-top: -200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service {
    display: block;
    margin-top: -20%;
  }
}

.p-service .sec-service::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-service .sec-service::before {
    top: 4%;
  }
}

.p-service .sec-service .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .inner {
    padding: 30% 10px;
  }
}

.p-service .sec-service .lead {
  font-size: 2rem;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}

.p-service .sec-service .service-list li {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 70px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li {
    width: auto;
    margin-bottom: 30px;
  }
}

.p-service .sec-service .service-list li a {
  display: block;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li a {
    padding: 20px;
  }
}

.p-service .sec-service .service-list li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li .flex {
    display: block;
  }
}

.p-service .sec-service .service-list li figure {
  width: 39.2%;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li figure {
    width: auto;
    margin-bottom: 20px;
  }
}

.p-service .sec-service .service-list li .txtarea {
  width: 57.8%;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li .txtarea {
    width: auto;
  }
}

.p-service .sec-service .service-list li .secttl {
  font-size: 2.9rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li .secttl {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.p-service .sec-service .service-list li .secttl span {
  display: block;
  font-size: 2rem;
  color: #d9d9d9;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li .secttl span {
    font-size: 1.8rem;
  }
}

.p-service .sec-service .service-list li .txt {
  font-size: 2rem;
  color: #131313;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li .txt {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}

.p-service .sec-service .service-list li .more {
  font-size: 12px;
  color: #19bc5e;
  position: absolute;
  bottom: 30px;
  right: -20px;
}

@media screen and (max-width: 768px) {
  .p-service .sec-service .service-list li .more {
    bottom: 20px;
  }
}

.p-service .sec-service .service-list li .more::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #19bc5e;
  width: 60px;
  height: 1px;
  margin-left: 10px;
}

/*----------------------------------------------------
 運送業務（詳細）
----------------------------------------------------*/
.p-service-s .sec-service {
  margin-top: -200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service {
    margin-top: -20%;
  }
}

.p-service-s .sec-service::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service::before {
    top: 4%;
  }
}

.p-service-s .sec-service .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .inner {
    padding: 30% 10px;
  }
}

.p-service-s .sec-service .txtarea {
  font-size: 2rem;
  line-height: 2.8;
  width: 50.6%;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .txtarea {
    font-size: 1.3rem;
    width: auto;
  }
}

.p-service-s .sec-service .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-service-s .sec-service .secttl span {
  display: block;
  font-size: 2rem;
  color: #d9d9d9;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .secttl span {
    font-size: 1.8rem;
  }
}

.p-service-s .sec-service .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .flex {
    display: block;
  }
}

.p-service-s .sec-service figure {
  width: 44.6%;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service figure {
    width: auto;
    text-align: center;
    margin-top: 20px;
  }
}

.p-service-s .sec-service .thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .thumb-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
  }
}

.p-service-s .sec-service .thumb-list li {
  width: 22.6%;
  margin-right: 3.6%;
}

@media screen and (max-width: 768px) {
  .p-service-s .sec-service .thumb-list li {
    width: 47%;
    margin: 0 0 20px;
  }
}

.p-service-s .sec-service .thumb-list li:last-child {
  margin-right: 0;
}

/*----------------------------------------------------
 寝具製造
----------------------------------------------------*/
.p-bedding .sec-overview {
  margin-top: -200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview {
    margin-top: -20%;
  }
}

.p-bedding .sec-overview::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview::before {
    top: 4%;
  }
}

.p-bedding .sec-overview .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview .inner {
    padding: 30% 10px;
  }
}

.p-bedding .sec-overview .txtarea {
  font-size: 2rem;
  line-height: 2.8;
  width: 50.6%;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview .txtarea {
    font-size: 1.3rem;
    width: auto;
  }
}

.p-bedding .sec-overview .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-bedding .sec-overview .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview .secttl span {
    font-size: 1.8rem;
  }
}

.p-bedding .sec-overview .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview .flex {
    display: block;
  }
}

.p-bedding .sec-overview figure {
  width: 44.6%;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-overview figure {
    width: auto;
    text-align: center;
    margin-top: 20px;
  }
}

.p-bedding .sec-gallery {
  margin-top: -300px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-gallery {
    margin-top: -20%;
  }
}

.p-bedding .sec-gallery::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #effef5;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-gallery::before {
    top: 4%;
  }
}

.p-bedding .sec-gallery .inner {
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-gallery .inner {
    padding: 30% 10px;
  }
}

.p-bedding .sec-gallery .secttl {
  font-size: 4.1rem;
  font-weight: normal;
  color: #19bc5e;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto 70px;
  padding: 0 5%;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-gallery .secttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.p-bedding .sec-gallery .secttl span {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-gallery .secttl span {
    font-size: 1.8rem;
  }
}

.p-bedding .sec-gallery .gallery-list li {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .p-bedding .sec-gallery .gallery-list li {
    text-align: center;
    margin: 0 auto;
  }
}

.p-bedding .sec-gallery .gallery-list li img {
  display: inline-block;
}

/*----------------------------------------------------
 お問い合わせ
----------------------------------------------------*/
.p-contact .sec-form {
  margin-top: -200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form {
    margin-top: -20%;
  }
}

.p-contact .sec-form::before {
  content: '';
  width: 120%;
  height: 120%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 0;
  -webkit-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form::before {
    top: 4%;
  }
}

.p-contact .sec-form .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 10% 5% 25%;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form .inner {
    padding: 30% 10px;
  }
}

.p-contact .sec-form .lead {
  font-size: 2rem;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form .lead {
    font-size: 1.3rem;
  }
}

.p-contact .sec-form table th, .p-contact .sec-form table td {
  font-size: 1.6rem;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form table th, .p-contact .sec-form table td {
    display: block;
    font-size: 1.3rem;
  }
}

.p-contact .sec-form table th {
  font-weight: normal;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form table th {
    width: auto;
    padding: 0;
  }
}

.p-contact .sec-form .required {
  display: block;
  float: right;
  background-color: #19bc5e;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin-right: 50px;
  padding: 3px 6px;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form .required {
    margin-right: 0;
  }
}

.p-contact .sec-form input[type="text"], .p-contact .sec-form input[type="email"] {
  background-color: #f7f7f7;
  border: none;
  border-radius: 6px;
  width: 100%;
  height: 40px;
  padding: 3px;
}

.p-contact .sec-form textarea {
  background-color: #f7f7f7;
  border: none;
  border-radius: 6px;
  width: 100% !important;
  height: 230px !important;
  padding: 3px;
}

.p-contact .sec-form .btn {
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form .btn {
    margin-top: 30px;
  }
}

.p-contact .sec-form .btn button {
  display: inline-block;
  background-color: #19bc5e;
  color: #fff;
  border: none;
  text-align: left;
  font-size: 20px;
  text-shadow: none;
  max-width: 500px;
  width: 100%;
  padding: 20px 20px 20px 80px;
  background-image: url(../img/common/ico_mail.png);
  background-repeat: no-repeat;
  background-position: center left 30px;
}

@media screen and (max-width: 768px) {
  .p-contact .sec-form .btn button {
    font-size: 13px;
  }
}
