﻿@charset "shift_jis";
/* CSS Document */


    body {
      font: 1.1em sans-serif;
      margin: 0 ;
      background-color: #F7D8E5;
    }


/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
z-index: 1;
/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
height: 80vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
  background:url(../img/27535175_m.jpg);
}

.slider-item02 {
  background:url(../img/27079806_m.jpg);
}

.slider-item03 {
  background:url(../img/26847482_m.jpg);
}


.slider-item {
  width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height:80vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
z-index: 3;
  top: 42%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;/*矢印の色*/
  border-right: 2px solid #ccc;/*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left:2.5%;
  transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
  right:2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
position: relative;
z-index: 3;
  text-align:center;
margin:-50px 0 0 0;
}

.slick-dots li {
  display:inline-block;
margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border-radius:50%;
  background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#333;/*ドットボタンの現在地表示の色*/
}

/*========= レイアウトのためのCSS ===============*/
ul{
margin:0;
padding: 0;
list-style: none;
}

a{
color: #fff;
}

a:hover,
a:active{
text-decoration: none;
}

h1{
position: absolute;
z-index: 2;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size:3vw;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #fff;
}

.wrapper{
position: relative;
}




    #header {
      width: 100%;
      margin: 0 auto;
      padding-top: 15px;
      padding-bottom: 15px;
      background-color: #fff;
      text-align: center;
    }


    #header01{
      /*headerを全画面で見せる*/
    width:100%;
    height: 200px;
    position: relative;
    font-size: 1.0em;
    color: #fff;
    text-align: center;
    padding-top: 100px;
  } 
  
  #header01:before{
      /*header の疑似要素に背景画像を指定*/
    content:"";
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height: 100vh;
    /*背景画像設定*/
    background:url("../img/bg_001.webp") no-repeat center;
    background-size:cover;
  }
  
  /*下の被さるエリアの指定*/
  #container{
    position: relative;
    z-index:1;
      /*以下はレイアウトのための記述*/
    background:#fff;
    padding:100px 0;
    text-align: center;
  }

  .container_1024{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  #container02{
    position: relative;
    z-index:1;
      /*以下はレイアウトのための記述*/
    background:#333;
    padding:100px 0;
    text-align: center;
    color: #fff;
  }

  #container03{
    margin-top: 300px;
    background:#333;
    padding:20px 0;
    text-align: center;
  }
  #container03 p{
    color: #fff;
    font-size: 2.4em;
    text-align: center;
  }





    form{
        background-color: #fff;
        padding:30px 50px;
        max-width: 100%;
        height: auto;
    }

    #header img{
      max-width: 180px;
    }
    .line {
      margin: 1em 0;
      color: #232323;
      background: #fff8e8;
      border-left: solid 10px #ffc06e;
      padding:20px 20px;
  }

  .menu{
    background-color: #000;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
    padding-top: 15px;
    padding-bottom: 15px;
  }




    p {
      padding:20px 20px;
      font-size: 1.1em;
      line-height: 1.8em;
    }
    h4 {
      padding: 1rem 2rem;
      border: 3px solid #333;
      color: #333;
    }



    h2 {
        padding: 1rem 2rem;
        color: #fff;
        border-radius: 10px;
        text-align: center;
        background-image: -webkit-gradient(linear, left top, right top, from(#0068b7), to(#333));
        background-image: -webkit-linear-gradient(left, #0068b7 0%, #333 100%);
        background-image: linear-gradient(to right, #0068b7 0%, #333 100%);
      }

    #content {
        max-width: 1024px;
        background-color: white;
        margin: 0 auto;

    }

    #attention {
      background-color: #FCEABB;
      padding: 10px 10px 10px 10px;
      font-size: 1.0em;
      line-height: 1.8em;

    }


    .cp_pricetable3 *, .cp_pricetable3 *:before, .cp_pricetable3 *:after {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }
    .cp_pricetable3 {
      width: 100%;
      margin: 0 auto;
      border-spacing: 1px 0;
      border-collapse: separate;
    }
    .cp_pricetable3 th, .cp_pricetable3 td {
      padding: 10px;
    }
    /*Headerブロック*/
    .cp_pricetable3 th {
      position: relative;
      z-index: 1;
      width: 125px;
      height: 50px;
      text-align: center;
      vertical-align: middle;
      color: #ffffff;
      border-radius: 5px 5px 0 0;
      background: #88b7d5;
    }
    .cp_pricetable3 th:after {
      font-family: 'FontAwesome';
      font-size: 5em;
      position: absolute;
      z-index: -1;
      right: 0;
      bottom: -40px;
      left: 0;
      content: '\f0d7';
    }
    .cp_pricetable3 th.group1 {
      background: #2e9b72;
    }
    .cp_pricetable3 th.group1:after {
      color: #2e9b72;
    }
    .cp_pricetable3 th.group2 {
      background: #da3c41;
    }
    .cp_pricetable3 th.group2:after {
      color: #da3c41;
    }
    .cp_pricetable3 th.group3 {
      background: #131874;
    }
    .cp_pricetable3 th.group3:after {
      color: #131874;
    }
    /*メインブロック*/
    .cp_pricetable3 tr td {
      padding-top: 15px;
      text-align: center;
      border: none;
    }
    .cp_pricetable3 tr:last-child td {
      border-radius: 0 0 5px 5px;
    }
    .cp_pricetable3 tr:nth-child(2n+1) td.group1 {
      background: #8cd9bc;
    }
    .cp_pricetable3 tr:nth-child(2n+0) td.group1 {
      background: #c3e4d8;
    }
    .cp_pricetable3 tr:nth-child(2n+1) td.group2 {
      background: #f2c2c2;
    }
    .cp_pricetable3 tr:nth-child(2n+0) td.group2 {
      background: #f7e1e1;
    }
    .cp_pricetable3 tr:nth-child(2n+1) td.group3 {
      background: #a9bce2;
    }
    .cp_pricetable3 tr:nth-child(2n+0) td.group3 {
      background: #d7e1f4;
    }
    /*ボタンデザイン*/
    .cp_pricetable3 a.cp_btn {
      position: relative;
      z-index: 1;
      display: block;
      overflow: hidden;
      width: 150px;
      margin-right: auto;
      margin-left: auto;
      padding: 0.3em 1em;
      text-align: center;
      text-decoration: none;
      color: #ffffff;
      border: 1px solid #da3c41;
      border-radius: 4px;
      background: #da3c41;
    }
    .cp_pricetable3 .cp_btn:after {
      position: absolute;
      z-index: -1;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 0;
      content: '';
      transition: 0.3s;
      -webkit-transform: translate(-50%,-50%) rotate(45deg);
      transform: translate(-50%,-50%) rotate(45deg);
      opacity: 0;
      background: #ffffff;
    }
    .cp_pricetable3 .cp_btn:hover {
      color: #da3c41;
    }
    .cp_pricetable3 .cp_btn:hover:after {
      height: 250%;
      opacity: 1;
    }
    .cp_pricetable3 .cp_btn:active:after {
      height: 350%;
      opacity: 1;
    }

    .cp_pricetable3 img{
      max-width: 300px;
      width: 100%;
    }



    /* フォーム */

          
    form dl dt{
            width: 100%;
            padding:10px 0px 10px 0px;
            max-width: 100%;
            float:left;
            clear:both;
    }
          
    form dl dd{
      padding:10px 0px 10px 0px;
            width: 100%;
    }

    #sendend{
      padding:20px 20px 20px 20px;
      margin: 20px 20px 20px 20px;
    }

    #sendend_title {
      width: 300px;
      background-color: #036eb8;
      padding: .8em 0 .8em .8em;
      color: white;
      text-align: center;
      margin: 0 auto;
    }


    /* テキストエリア */

    input[type="text"],
    textarea {
        padding: 0.8em;
        outline: none;
        border: 1px solid #DDD;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        font-size: 1.1em;
        width: 30%;
    }

    input[type="text"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #ff8800;
        border: 1px solid #ff8800;
    }

    input[type="email"],
    textarea {
        padding: 0.8em;
        outline: none;
        border: 1px solid #DDD;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        font-size: 1.1em;
        width: 50%;
    }

    input[type="email"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #ff8000;
        border: 1px solid #ff8000;
    }

    select[type="text"],
    textarea {
        padding: 0.8em;
        outline: none;
        border: 1px solid #DDD;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        font-size: 1.1em;
        width: 80%;
    }
    

    select[type="text"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #ff8000;
        border: 1px solid #ff8000;
    }


    .styled-select {
        /* 👇デフォルトのスタイルを解除 */
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        /* 👇スタイル */
        display: inline-block;
        width: 100%; /* 幅 */
        max-width: 250px; /* 最大幅 */
        margin: 1em 0; /* 前後の余白 */
        padding: 0.6em 1.5em 0.6em 0.5em; /* 文字周りの余白 */
        cursor: pointer; /* カーソルを指に */
        line-height: 1.4; /* 行高 */
        font-size: 0.95em; /* フォントサイズ */
        font-weight: 700; /* 太字に */
        color: #333; /* 文字色 */
        border-radius: 4px; /* 角丸 */
        background-color: #eee; /* 背景色 */
        border: solid 1px #ddd; /* 枠線 */
        box-shadow: 0 3px 3px -2px rgba(3, 29, 41, 0.15); /* 影 */

        /* 👇三角マークを作る */
        background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
        background-size: 5px 5px, 5px 5px;
        background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
        background-repeat: no-repeat;
      }
      /* フォーカス時 */

      .styled-select:focus {
        outline: 0;
        box-shadow: 0 0 7px #ff8000;
        border: 1px solid #ff8000;
      }
      /* IEでデフォルトの矢印を消す */

      .styled-select::-ms-expand {
        display: none;
      }




    /* 送信ボタン */

    .btn {
        text-align: center;
        box-sizing: border-box;
        display: block;
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
        background: tomato;
        color: #fff;
        font-weight: bold;
        font-size: 1.2em;
        padding: 13px 10px 10px;
        border: 0px;
        border-radius: 8px;
        text-decoration: none;
        margin-bottom: 80px;
      }
      .btn:hover {
        animation: 1s flash;
      }
      .btn:active, .btn:focus {
        border-bottom-width: 0;
        margin-top: 5px;
        background: #ff9300; /* 色変更可能 */
      }
      
      @keyframes flash {
        from { opacity: 0.5; }
        to { opacity: 1; }
      }


    /* 必須マーク */

    .must {
      background: #FF1A00;
    }


    /* 任意マーク */

    .free {
      background: #999;
    }

    .must,
    .free {
      color: #FFF;
      border-radius: 3px;
      font-size: 1.0em;
      margin-right: 10px;
      padding: 5px 10px;
      letter-spacing: 0.2em;
    }

    /* 受信許可 */


    #kakunin {
        padding:30px 30px;
    }

    #kakunin2 {
        width: 300px;
        background-color: #ea5514;
        padding: .8em 0 .8em .8em;
        color: white;
        text-align: center;
        margin: 0 auto;
    }
    #kakunin_text {
        color: #ea5514;
        padding: .8em 0 .8em .8em;
        font-weight: bold;
        text-align: center;
        margin: 0 auto;
        
    }

    /* ラジオボタン */

    .cp_ipradio {
      width: 100%;
      margin: 1em auto;
      text-align: left;
    }
    @keyframes click-wave {
      0% {
        position: relative;
        width: 30px;
        height: 30px;
        opacity: 0.35;
      }
      100% {
        width: 200px;
        height: 200px;
        margin-top: -80px;
        margin-left: -80px;
        opacity: 0;
      }
    }
    .cp_ipradio .option-input {
      position: relative;
      position: relative;
      top: 13.33333px;
      right: 0;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 30px;
      margin-right: 0.5rem;
      cursor: pointer;
      transition: all 0.15s ease-out 0s;
      color: #ffffff;
      border: none;
      outline: none;
      background: #d7cbcb;
      -webkit-appearance: none;
              appearance: none;
    }
    .cp_ipradio .option-input:hover {
      background: #d6a9a9;
    }
    .cp_ipradio .option-input:checked {
      background: #da3c41;
    }
    .cp_ipradio .option-input:checked::before {
      font-size: 1.4em;
      line-height: 30px;
      position: absolute;
      display: inline-block;
      width: 30px;
      height: 30px;
      content: '';
      text-align: center;
    }
    .cp_ipradio .option-input:checked::after {
      position: relative;
      display: block;
      content: '';
      -webkit-animation: click-wave 0.65s;
              animation: click-wave 0.65s;
      background: #da3c41;
    }
    .cp_ipradio .option-input.radio {
      border-radius: 50%;
    }
    .cp_ipradio .option-input.radio::after {
      border-radius: 50%;
    }
    .cp_ipradio label {
      line-height: 40px;
      display: block;
    }
    .cp_ipradio .option-input:disabled {
      cursor: not-allowed;
      background: #b8b7b7;
    }
    .cp_ipradio .option-input:disabled::before {
      font-size: 1.4em;
      line-height: 30px;
      position: absolute;
      display: inline-block;
      width: 30px;
      height: 30px;
      content: '✖︎';
      text-align: center;
    }
    .cp_ipradio .disabled {
      color: #9e9e9e;
    }

    /*エリアをはじめは非表示*/
#privacy{
	display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container{
    max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

.kakunin{
  padding: 10px 15px 10px 15px;
}



    /* スマホ */


    @media screen and (max-width: 767px) {


      p {
        padding:20px 20px;
        font-size: 1.0em;
      }

      #content {
        max-width: 1024px;
        background-color: white;
        margin: 0 auto;
    }

      #jyushin3 {
          padding:0px 0px;
      
      }
      form{
          background-color: #fff;
          padding:10px 10px 80px 10px;
          max-width: 100%;
          height: auto;
          margin: 0 auto;
      }
      h1{
          font-size: 2em;
          text-align: center;
          padding: 0.5em;
          border-radius: 0.5em;
          margin: 0 auto;
      }
      .line {
        color: #232323;
        max-width: 100%;
        padding:14px;
    }

    input[type="text"],
    textarea {
      padding:10px 0px 10px 10px;
      outline: none;
      border: 1px solid #DDD;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      font-size: 1.0em;
      width: 90%;
    }

    form dl dt{
      width: 100%;
      max-width: 100%;
      float:left;
      clear:both;
      padding:0px 0px 0px 0px;
    }

    form dl dd{
      width: 90%;
      padding:0px 0px 0px 0px;
    }

    


    }