@charset "UTF-8";

/**
 * layer.css
 *
 * # contact
 *
*/

/* ==========================================================================
   # layer
   ========================================================================== */
.l-layer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0;
  background-color: #FFFAE8;
}

.layer-ttl {
  margin-bottom: 10px;
  font-size: 40px;
  text-align: center;
}

.layer-ttl-sub {
  margin-bottom: 60px;
  color: #FC7878;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.layer-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px;
  background-color: #fff;
  border-radius: 20px;
}

@media screen and (max-width:500px) {
  
  .l-layer {
    padding: 60px 0 0;
  }
  
  .layer-ttl {
    margin-bottom: 10px;
    font-size: 24px;
  }
  
  .layer-ttl-sub {
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  .layer-content {
    padding: 40px 20px 80px;
    border-radius: 0;
  }
}

/* # テキスト
   -------------------------------------------------------------------------- */
.layer-content p {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.875;
}

/* # 見出し
   -------------------------------------------------------------------------- */
.layer-content h3 {
  margin: 45px 0 30px;
  color: #FC7878;
  font-size: 20px;
}

/* # ul
   -------------------------------------------------------------------------- */
.layer-content ul {
  margin: 30px 0;
}
.layer-content ul li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.layer-content ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #FC7878;
}
.layer-content ul li + li {
  margin-top: 20px;
}

/* # table
   -------------------------------------------------------------------------- */
.layer-content table {
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
  border-top: 1px solid #ddd;
}

.layer-content table th {
  padding: 40px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.layer-content table td {
  padding: 40px;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width:500px) {
  
  .layer-content table {
    font-size: 14px;
  }
  
  .layer-content table th,
  .layer-content table td {
    padding: 20px;
  }
}

/* ==========================================================================
   # contact
   ========================================================================== */
.form-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #fff;
  border-radius: 20px;
}

.form-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px;
}
.form-content td {
  position: relative;
  width: 50%;
  margin-bottom: 17px;
  padding: 0 0 20px;
  vertical-align: top;
}

/* # 見出し
   -------------------------------------------------------------------------- */
.form-head {
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  font-weight: bold;
  font-weight: 600;
  line-height: 1.2857142857;
}
.form-head .hissu,
.form-head .nini {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 36px;
  padding: 4px 0;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  background-color: #FC7878;
  border-radius: 2px;
}
.form-head .nini { background-color: #999; }

.form-note {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.2;
}

/* # text
   -------------------------------------------------------------------------- */
.form-input {
  display: block;
  width: 100%;
  padding: 0 20px;
  height: 60px;
  font-size: 16px;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background-color: #EFEFEF;
}
.form-input:-webkit-autofill { box-shadow: 0 0 0 1000px #EFEFEF inset; }

/* # textarea
   -------------------------------------------------------------------------- */
.form-textarea {
  display: block;
  width: 100%;
  padding: 18px 20px;
  height: 120px;
  font-size: 16px;
  line-height: normal;
  line-height: 1.25;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background-color: #EFEFEF;
}

::placeholder { color: #b7bec5; }

/* # radio
   -------------------------------------------------------------------------- */

.form-radio-wrap {
  overflow: hidden;
  margin-bottom: -10px;
}

.form-radio {
  float: left;
  display: block;
  margin: 0 20px 10px 0;
}

.form-radio input { display: none; }
.form-radio label {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.25;
}
.form-radio label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #DDDDDD;
  background-color: #EFEFEF;
  border-radius: 50%;
  transform: translateY(-50%);
}
.form-radio label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #FC7878;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateY(-50%);
}
.form-radio input:checked + label { color: #FC7878; }
.form-radio input:checked + label:after { opacity: 1; }

/* # checkbox
   -------------------------------------------------------------------------- */
.form-checkbox-wrap {
  overflow: hidden;
  margin-bottom: -10px;
}

.form-checkbox {
  float: left;
  display: block;
  margin: 0 20px 10px 0;
}

.form-checkbox input { display: none; }
.form-checkbox label {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.25;
}
.form-checkbox label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #DDDDDD;
  background-color: #EFEFEF;
  border-radius: 2px;
  transform: translateY(-50%);
}
.form-checkbox label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.3s;
  transform-origin: left bottom;
  transform: translateY(-50%) rotate(-45deg);
}
.form-checkbox input:checked + label { color: #FC7878; }
.form-checkbox input:checked + label:before {
  background-color: #FC7878;
  border-color: #FC7878;
}
.form-checkbox input:checked + label:after { opacity: 1; }

.privacy .form-checkbox-wrap {
  position: relative;
  text-align: center;
}
.privacy .form-checkbox-wrap .form-checkbox {
  float: none;
  display: inline-block;
  margin-right: 0;
}
.privacy .formError,
.privacy .error {
  left: 50%;
  transform: translateX(-50%);
}

/* # select
   -------------------------------------------------------------------------- */
.form-select-wrap {
  position: relative;
  margin-bottom: -20px;
  padding-bottom: 20px;
}
.form-select-wrap:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform-origin: top right;
  transform: rotate(135deg);
}
.form-select {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0 20px;
  color: #333;
  font-size: 16px;
  line-height: normal;
  background: linear-gradient(#fff, #eee);
  border: 1px solid #999;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* # date
   -------------------------------------------------------------------------- */
.form-date-list-wrap {
  margin: 0 -20px;
}

.form-date-list {
  display: table;
  width: 100%;
  border-spacing: 20px 0;
}

.form-date-list-item {
  display: table-cell;
  width: 33.3333%;
}

.form-date-wrap {
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 14px;
}

.form-date {
  display: block;
  width: 100%;
  padding: 0 20px;
  height: 60px;
  font-size: 16px;
  line-height: 3.625;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background-color: #EFEFEF;
}

.form-date-head {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

/* # validation
   -------------------------------------------------------------------------- */
.formError,
.error {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FC7878;
  font-size: 12px;
  line-height: 1;
}

/* # btn
   -------------------------------------------------------------------------- */
.form-confirm {
  display: block;
  width: 280px;
  margin: 0 auto;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  background-color: #999;
  border-radius: 42px;
}
.form-confirm.active {
  background-color: #FC7878;
  cursor: pointer;
}

.form-back-wrap {
  margin-top: 20px;
  text-align: center;
}
.form-back {
  display: inline-block;
  color: #999;
  font-size: 12px;
  line-height: 1;
  text-decoration: underline;
}

/* # txt
   -------------------------------------------------------------------------- */
.form-txt {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width:500px) {
  
  .form-content {
    padding: 40px 20px;
    border-radius: 0;
  }
  
  .form-table {
    overflow: hidden;
    display: block;
    border-collapse: collapse;
    border-spacing: 0;
  }
  .form-table tbody,
  .form-table tr {
    display: block;
    width: 100%;
  }
  .form-table td {
    clear: left;
    float: left;
    display: block;
    width: 100%;
  }
  
  .form-radio {
    float: none;
    margin-right: 0;
  }
  .form-checkbox {
    float: none;
    margin-right: 0;
  }
  
  .form-date-list-wrap {
    margin: 0;
  }
  .form-date-list {
    display: block;
  }
  .form-date-list-item {
    display: block;
    width: 100%;
  }
  .form-date-list-item + .form-date-list-item {margin-top: 20px;}
  
  .form-txt {
    padding: 0;
    font-size: 14px;
  }
}


.tx_center {
    text-align: center;
}
.f_bold {
    font-weight: bold !important;
}
.area_line{
  margin: 40px 0;
}
.btn_form > a:hover{background-color:#cc180e;}
.btn_line a{display:flex;align-items: center;justify-content: center;width:80%;max-width:400px;color:#fff !important;font-size:30px;font-weight: bold; text-align:center;line-height:1;margin:15px auto;padding:0.2em 1.5em;border-radius:5px;
 background:#00b900;}
.btn_line a::before{content:"";width:2.2em;height:2.2em;display:block;margin-right:0.5em;
 background:url(/img/icon_line.png) center center / 100% no-repeat;}

.btn_youtube a{display:flex;align-items: center;justify-content: center;width:80%;max-width:400px;color:#fff !important;font-size:30px;font-weight: bold; text-align:center;line-height:1;margin:15px auto;padding:0.2em 1.5em;border-radius:5px;
 background:#FF0033;}
.btn_youtube a::before{content:"";width:2.2em;height:2.2em;display:block;margin-right:0.5em;
 background:url(/img/icon_youtube.png) center center / 100% no-repeat;}

.view_pc {
    display: block;
}
.area_line .area_qr {
    display: flex;
    justify-content: center;
    align-items: center;
}
.area_line .area_qr .lineqr {
    max-width: 100px;
}
@media screen and (max-width: 767px) {
    .f_L {
        font-size: 15px !important;
    }
    .btn_line a{
      font-size: 20px !important;
    }
    .btn_youtube a{
      font-size: 20px !important;
    }
    .view_pc{
      display: none;
    }
}




