@charset "UTF-8";
/* Reset */
html, body, h1, h2, p, ul, li, dl, dt, dd, ol {
  margin: 0;
  padding: 0;
  line-height: 1.0;
  font-family: "游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  font-weight: 500;
}

ul {
  list-style: none;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/*--960--*/
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

/*---------Header------------*/
header {
  position: fixed;
  width: 100%;
  padding: 10px 0;
  color: #000;
  background: #fff;
  z-index: 100;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  header {
    overflow: visible;
    padding: 20px 0;
    text-align: center;
  }
}

header .container {
  overflow: hidden;
}

header .site {
  float: left;
}

@media (max-width: 767px) {
  header .site {
    float: none;
    margin: 0;
  }
}

header h1 {
  font-size: 16px;
  margin-bottom: 10px;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

@media (max-width: 767px) {
  header h1 {
    position: absolute;
    top: 45px;
    left: 20px;
    right: 0;
    font-size: 12px;
  }
}

header .site p {
  font-size: 28px;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  header .site p {
    font-size: 20px;
  }
}

.smaller {
  padding-bottom: 0;
}

.smaller h1 {
  margin-bottom: 5px;
}

.smaller .pcnav {
  margin-top: 26px;
}

/*---navigation----*/
.pcnav {
  float: right;
  overflow: hidden;
  margin-top: 38px;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

@media (max-width: 767px) {
  .pcnav {
    display: none;
  }
}

.pcnav li {
  float: left;
  text-align: center;
  font-size: 14px;
}

.pcnav a {
  display: block;
  padding: 2px 10px;
  color: #000;
  border-left: 1px solid #ccc;
}

.pcnav li:last-child a {
  padding-right: 0;
}

.pcnav li:first-child a {
  border: none;
}

.pcnav a:hover {
  color: #fa0;
}

/*Sp Nav*/
.spnav {
  position: absolute;
  z-index: 99999;
  top: 55px;
  left: 0;
  width: 100%;
  background: rgba(255, 100, 0, 0.8);
  /*opacity:0;*/
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  /*transform:translateX(-100%);*/
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  /*display:none;*/
}

.slide {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /*transform:translateX(0);*/
}

.spnav li {
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.spnav a {
  display: block;
  border-top: 1px solid #fff;
}

.spnav li:first-child a {
  border: none;
}

/*slide*/
.slide {
  /*transform:translateX(0);*/
}

/*Sp Btn*/
.btn {
  width: 50px;
  height: 50px;
  background: #f60;
  border-radius: 10px;
  position: absolute;
  top: 5px;
  left: 5px;
  display: none;
}

@media (max-width: 767px) {
  .btn {
    display: block;
  }
}

.btn span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn span::before, .btn span::after {
  display: block;
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn span::before {
  margin-top: -10px;
}

.btn span::after {
  margin-top: 17px;
}

/*回転CSS*/
.close span::before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  margin-top: 0;
}

.close span::after {
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
  margin-top: -3px;
}

.close span {
  background: transparent;
}

/*page-top*/
.top {
  position: fixed;
  /*z-index: 9998;*/
  bottom: 20px;
  right: 20px;
  background: #f90;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

/*--main--*/
.main {
  overflow: hidden;
}

.main .main-image {
  position: relative;
}

.main #title {
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .main #title {
    display: none;
  }
}

.main #title1 {
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  letter-spacing: 2px;
}

.coconara{
    color: orangered;
}

.coconara:hover{
  color: #fa0;
}

@media (max-width: 767px) {
  .main #title1 {
    display: none;
  }
}

.main #title1_5 {
  color: #fff;
  font-size: 36px;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .main #title1_5 {
    display: none;
  }
}

.main #title2 {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  letter-spacing: 4px;
}

@media (max-width: 767px) {
  .main #title2 {
    font-size: 22px;
    width: 100%;
    text-align: center;
  }
}

.main #title3 {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  letter-spacing: 4px;
}

@media (max-width: 767px) {
  .main #title3 {
    font-size: 22px;
    width: 100%;
    text-align: center;
  }
}

.main #title4 {
  color: #fff;
  font-size: 26px;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .main #title4 {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
}

.main .wrapper {
  overflow: hidden;
  height: 60vh;
  width: 100%;
}

.main #video {
  background: url("/video_bg.jpg") no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  min-width: 100vw;
  position: absolute;
  z-index: 0;
  top: 0;
}

/*--Service--*/
.serviceBox {
  background: #fff;
  padding: 35px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .serviceBox {
    overflow: visible;
    padding: 30px 10px 20px;
    margin-bottom: 0px;
  }
}

.serviceBox h2 {
  text-align: center;
  letter-spacing: 10px;
  font-size: 18px;
  color: #777;
  background: #eee;
  padding: 5px 0;
  width: 18em;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .serviceBox h2 {
    letter-spacing: 5px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.serviceBox .service {
  width: 33.3%;
  float: left;
}

@media (max-width: 767px) {
  .serviceBox .service {
    width: 100%;
    float: none;
    margin-bottom: 10px;
    height: 200px;
  }
}

.serviceBox .service h3 {
  width: 225px;
  height: 225px;
  text-align: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: normal;
}

@media (max-width: 767px) {
  .serviceBox .service h3 {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
  }
}

.serviceBox .service i {
  font-size: 50px;
  display: block;
  padding: 72px 0 10px;
}

@media (max-width: 767px) {
  .serviceBox .service i {
    padding: 10px 0;
  }
}

.serviceBox .service a {
  display: block;
  width: 225px;
  height: 225px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .serviceBox .service a {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 5px;
    border-radius: 0;
  }
}

.serviceBox .service:first-of-type a {
  background: rgba(204, 250, 210, 0.7);
  color: #00b06c;
}

.serviceBox .service:first-of-type a:hover {
  background: #ccfad2;
}

.serviceBox .service:nth-of-type(2) a {
  background: rgba(189, 206, 254, 0.5);
  color: #4d57ff;
}

.serviceBox .service:nth-of-type(2) a:hover {
  background: rgba(189, 206, 254, 0.8);
}

.serviceBox .service:last-of-type a {
  background: rgba(247, 217, 161, 0.7);
  color: #ff9100;
}

.serviceBox .service:last-of-type a:hover {
  background: #f7d9a1;
}

.serviceBox .service p {
  width: 225px;
  margin: 0 auto;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 767px) {
  .serviceBox .service p {
    width: 100%;
  }
}

/*----about----*/
.about {
  background: #eee;
  padding: 100px 0;
  margin-bottom: 50px;
  overflow: hidden;
}

/*
div.wrapKOPIPE {
    border-radius: 15px;
    margin: 20px 0;
    background: #eff5f6;
    border: 5px solid #e5eeef;
    padding: 20px;
}
*/

.privacy-policy {
  max-width: 767px;
  margin: 50px auto;
  height: 500px;
  overflow: scroll;
  padding: 40px;
  border: 1px solid black;
  background-color: #e5e5e5;
  }
 
    .privacy-policy p {
      margin-bottom: 25px;
    }
.privacy-policy__item__title{
       font-size: 16px;
    font-weight:bold;
    }

@media (max-width: 767px) {
  .about {
    padding: 30px 0 20px;
    margin-bottom: 0px;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .about .info_inner {
    width: 100%;
  }
}

.about h2 {
  text-align: center;
  letter-spacing: 10px;
  font-size: 18px;
  padding: 5px 0;
  width: 18em;
  margin: 0 auto 50px;
  background: #fff;
}

@media (max-width: 767px) {
  .about h2 {
    letter-spacing: 5px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.about p {
  letter-spacing: 2px;
  line-height: 2.0;
  height: 2.0;
}

/*--Service--*/
.priceBox {
  padding: 35px 0;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 767px) {
  .priceBox {
    overflow: visible;
    padding: 30px 10px 20px;
    margin-bottom: 0px;
  }
}

.priceBox h2 {
  text-align: center;
  letter-spacing: 10px;
  font-size: 18px;
  color: #777;
  background: #eee;
  padding: 5px 0;
  width: 18em;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .priceBox h2 {
    letter-spacing: 5px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.priceBox .price {
  width: 30%;
  float: left;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .priceBox .price {
    width: 100%;
    float: none;
    margin-bottom: 10px;
    padding: 0;
  }
}

.priceBox .price h3 {
  width: 225px;
  text-align: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: normal;
}

@media (max-width: 767px) {
  .priceBox .price h3 {
    width: 97%;
    height: auto;
    margin-bottom: 5px;
  }
}

.priceBox table {
  border-radius: 2px;
}

.priceBox td {
  color: #000;
}

.priceBox .price {
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .priceBox .price {
    margin-bottom: 20px;
  }
}

.priceBox .price:first-of-type h3 {
  background: rgba(204, 250, 210, 0.7);
  color: #00b06c;
  padding: 5px;
}

.priceBox .price:nth-of-type(2) h3 {
  background: rgba(189, 206, 254, 0.5);
  color: #4d57ff;
  padding: 5px;
}

.priceBox .price:last-of-type h3 {
  background: rgba(247, 217, 161, 0.7);
  color: #ff9100;
  padding: 5px;
}

.priceBox p {
  margin-top: 5px;
}

.priceBox .imp {
  text-align: center;
  padding: 40px;
  clear: both;
}

/*----flow----*/
@media (max-width: 767px) {
  body:not(#contact)::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100vh;
    background: url("../img/head.jpg") center/cover no-repeat;
    -webkit-background-size: cover;
  }
}

.flow {
  background: #eee;
  padding: 100px 0;
  margin-bottom: 50px;
  overflow: hidden;
  height: 850px;
  background-image: url("../img/head.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

@media (max-width: 767px) {
  .flow {
    height: 980px;
    background: none;
    padding: 30px 10px 20px;
    margin-bottom: 20px;
  }
}

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

@media (max-width: 767px) {
  .flow .container {
    display: block;
  }
}

.flow h2 {
  text-align: center;
  letter-spacing: 10px;
  font-size: 18px;
  padding: 5px 0;
  width: 18em;
  margin: 0 auto 50px;
  background: #fff;
}

@media (max-width: 767px) {
  .flow h2 {
    width: 100%;
  }
}

.flow .flow {
  width: 720px;
}

.flow h4 {
  font-size: 22px;
  border-left: 27px solid #fff;
  padding-left: 10px;
  margin: 20px 0 20px;
  color: #fff;
}

@media (max-width: 767px) {
  .flow h4 {
    font-size: 18px;
  }
}

.flow h4 span {
  font-size: 26px;
  color: #fff;
}

.flow p span {
  font-size: 24px;
  color: #fff;
}

@media (max-width: 767px) {
  .flow p span {
    font-size: 18px;
  }
}

.flow p {
  font-size: 16px;
  margin-top: 20px;
  padding-left: 40px;
  color: #fff;
}

.flow p:last-child {
  margin-bottom: 100px;
}

.flow img {
  width: 20px;
  margin-top: 10px;
  margin-left: 30%;
}

@media (max-width: 767px) {
  .flow img {
    margin: 20px 50%;
  }
}

.flow .image img {
  width: 100px;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .flow .image img {
    display: none;
  }
}

/*Map*/
.tenpo {
  background: #fff;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .tenpo {
    margin-bottom: 0px;
    padding: 30px 0 20px;
  }
}

.tenpo h2 {
  text-align: center;
  letter-spacing: 10px;
  font-size: 18px;
  color: #777;
  background: #eee;
  padding: 5px 0;
  width: 18em;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .tenpo h2 {
    letter-spacing: 5px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.tenpo .map {
  background: #eee;
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .tenpo .map {
    padding-bottom: 60%;
  }
}

.tenpo .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*---policy----*/
.policy {
  background: #fff;
}

.policy h2 {
  text-align: center;
  letter-spacing: 10px;
  font-size: 18px;
  color: #777;
  background: #eee;
  padding: 5px 0;
  width: 18em;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .policy h2 {
    letter-spacing: 5px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.policy p {
  text-align: left;
}

/*---Footer----*/
footer {
  padding: 80px 0;
  background: #fff;
  text-align: center;
  letter-spacing: 3px;
}

@media (max-width: 767px) {
  footer {
    padding: 80px 0 20px;
  }
}

/*-----お問い合わせ-------*/
#contact header {
  position: static;
}

#contact .main {
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 50px;
}

#contact .main h1 {
  text-align: center;
  margin: 20px 0 20px;
}

#contact .wrap {
  margin: 0 auto;
}

#contact footer {
  padding: 0px 0;
}

#contact .content {
  max-width: 620px;
  margin: 50px auto;
}

#contact .content h1 {
  text-align: center;
  margin-bottom: 30px;
}

#contact table {
  border-collapse: collapse;
  margin: 0 auto;
  text-align: center;
}

#contact th, #contact td {
  padding: 10px;
  border: 1px solid #AAA;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#contact th {
  max-width: 180px;
}

@media (max-width: 767px) {
  #contact th {
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.69);
    color: #fff;
  }
}

#contact td {
  max-width: 440px;
}

@media (max-width: 767px) {
  #contact td {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  #contact table, #contact tbody, #contact tr, #contact th, #contact td {
    display: block;
  }
}

#contact .btn1 {
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  #contact input[type="submit"] {
    padding: 12px;
    font-size: 18px;
  }
}

#contact .field {
  width: 410px;
}

@media (max-width: 767px) {
  #contact .field {
    width: 90%;
  }
}

#contact textarea {
  height: 15em;
  line-height: 1.5em;
}

#contact input[type=text] {
  height: 25px;
}

#contact input[type=email] {
  height: 25px;
}

#contact .sample {
  margin-top: 20px;
}

#contact .sample li {
  display: inline-block;
}

#contact .sample li:after {
  content: ">";
}

#contact .sample li:last-child:after {
  content: "";
}

#contact .ans {
  margin-bottom: 10px;
  text-align: center;
}
