@charset "utf-8";
/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
html *, ::before, ::after {
  box-sizing: border-box;
}
/* フォント */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  background-image: url("../images/back-image.jpg");
}
/* ベースのリンクカラー */
a {
  text-decoration: none;
}
/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像下のスペースを消す */
}
li {
  list-style: none;
}

@media (max-width: 769px) {
    .br-sp{
        display: block;
    }
}
@media (min-width: 768px) {
    .br-sp{
        display: none;
    }
}

@media (max-width: 769px) {
  .pop-icon {
    display: none;
  }
}
@media (min-width: 768px) {
  .pop-icon {
    position: fixed;
    display: flex;
    flex-flow: column;
    right: 0;
    bottom: 130px;
      z-index: 999;
  }
  .pop-img {
    width: 90px;
    margin: 5px 0 5px 0;
  }
  .pop-img:hover {
    opacity: .5;
  }
}

@media (max-width: 769px){
    main {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
    .br-sp{
        display: block;
    }
}
@media (min-width: 768px) {
  main {
    text-align: center;
  }
    .br-sp{
        display: none;
    }
}
/* モバイル向けボタン */
.navbtn {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-image: url("../images/nav-open-60px.jpg");
  background-repeat: no-repeat;
  background-position: center center;
}
.navbtn.close {
  background-image: url("../images/nav-close-60px.jpg");
}
@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}
/* ヘッダーナビゲーション */
@media (max-width: 769px) {
  #pc-navi {
    display: none;
  }
  #global-nav {
    position: fixed;
    z-index: 999;
    top: 60px;
    width: 100%;
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-nav.collapse {
    display: none;
  }
  .menu {
    max-width: 100%;
    text-align: center;
  }
  .menu a {
    display: block;
    padding: 20px 0 20px 0;
    text-decoration: none;
    color: #2e2e2e;
    font-size: 17px;
    background: #fbeff6;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  }
    .single-menu a{
        display: block;
    padding: 30px;
    line-height: 1;
    color: #fff;
    font-size: 18px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #e9a4b7;
    cursor: pointer;
    }
    .single-menu a:hover{
        background: #f3c0ce;
    }
  label {
    display: block;
    padding: 30px;
    line-height: 1;
    color: #fff;
    font-size: 18px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #e9a4b7;
    cursor: pointer;
  }
  label:hover {
    background: #f3c0ce;
  }
  input {
    display: none;
  }
  .menu ul {
    margin: 0;
    padding: 0;
    background: #fbeff6;
    list-style: none;
  }
  .menu li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #menu_bar00:checked ~ #links00 li, #menu_bar01:checked ~ #links01 li, #menu_bar02:checked ~ #links02 li, #menu_bar03:checked ~ #links03 li, #menu_bar04:checked ~ #links04 li {
    height: 54px;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  #global-nav {
    display: none;
  }

  nav {
    z-index: 9999;
    width: 100%;
    height: 100px;
    position: fixed;
    top: -16px;
    left: 0px;
  }
  ul.ddmenu {
    text-align: center; /* メニューバー外側の余白(ゼロ) */
    background-color: #fff; /* バーの背景色(濃い赤色) */
    box-shadow: 0 2px 10px 0 #a8a8a8;
  }
  /* -------------------------- */
  /* ▼メインメニュー項目の装飾 */
  /* -------------------------- */
  ul.ddmenu li {
    width: 180px; /* メニュー項目の横幅(125px) */
    display: inline-block; /* ★1:横並びに配置する */
    list-style-type: none; /* ★2:リストの先頭記号を消す */
    position: relative; /* ★3:サブメニュー表示の基準位置にする */
  }
  ul.ddmenu a {
    background-color: #fff; /* メニュー項目の背景色(濃い赤色) */
    color: #3a3a3a; /* メニュー項目の文字色(白色) */
    line-height: 50px; /* メニュー項目のリンクの高さ(40px) */
    text-align: center; /* メインメニューの文字列の配置(中央寄せ) */
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 15px;
    text-decoration: none; /* メニュー項目の装飾(下線を消す) */
    display: block; /* ★4:項目内全域をリンク可能にする */
  }
  ul.ddmenu a:hover {
    background-color: #d60079; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
    color: #fff; /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
  }
  /* ▼サブメニューは、とりあえず非表示にしておく */
  ul.ddmenu ul {
    display: none; /* ★5:非表示にする */
  }
  /* -------------------- */
  /* ▼サブメニューの装飾 */
  /* -------------------- */
  ul.ddmenu ul {
    display: none; /* ★1:標準では非表示にする */
    margin: 0px; /* ★2:サブメニュー外側の余白(ゼロ) */
    padding: 0px; /* ★3:サブメニュー内側の余白(ゼロ) */
    position: absolute; /* ★4:絶対配置にする */
  }
  ul.ddmenu ul a {
    display: block;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #fbe9f3;
    color: #3a3a3a;
  }
  ul.ddmenu ul a:hover {
    background: #f8cfe6;
    color: #3a3a3a;
  }
  /* ---------------------------------- */
  /* ▼サブメニューがある場合に開く処理 */ /* ※サブメニューが1階層しか存在しない場合の記述 */
  /* ---------------------------------- */
  ul.ddmenu li:hover ul {
    display: block; /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
  }
  .contact {
    display: inline-block;
    background-color: #d60079;
    color: #fff;
  }
}
/* ヘッダーナビゲーションここまで */


@media (max-width: 769px){
    .offer-illust{
        width: 100%;
        text-align: center;
        margin: 100px auto 60px auto;
    }
    .offer-illust-tiitle{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 0.1rem;
        margin-bottom: 25px;
        border-bottom: 1px solid #d60079;
        padding-bottom: 10px;
    }
    .offer-illust-text{
        display: inline-block;
        width: 90%;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-top: 5px;
        margin-bottom: -50px;
    }
    .template{
        width: 100%;
        text-align: center;
    }
    .template-text-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -3px;
        text-align: left;
    }
    .template-list{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin: 10px 0;
    }
    .template-box{
        margin-bottom: 50px;
    }
    .form-link a{
        display: inline-block;
        color: #d60079;
        padding: 15px 35px;
        border: solid 1px #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
        margin: -60px auto 70px auto;
    }
    .form-link a:hover{
        color: #fff;
        background-color: #d60079;
    }
}


@media (min-width: 768px){
    .offer-illust{
        width: 950px;
        text-align: center;
        margin: 110px auto 60px auto;
    }
    .offer-illust-tiitle{
        display: inline-block;
        width: 800px;
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 0.1rem;
        margin-bottom: 25px;
        border-bottom: 1px solid #d60079;
        padding-bottom: 10px;
    }
    .offer-illust-text{
        display: inline-block;
        width: 700px;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-top: -50px;
    }
    .template-container{
        display: flex;
        width: 950px;
        max-width: 100%;
        margin: 0 auto 40px auto;
        justify-content: space-between;
    }
    .template-box{
        width: 450px;
        text-align: left;
    }
    .template-text-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -8px;
    }
    .template-list{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin: 7px 0;
    }
    .form-link a{
        display: inline-block;
        color: #d60079;
        padding: 15px 45px;
        border: solid 1px #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
        margin: -70px auto 60px auto;
    }
    .form-link a:hover{
        color: #fff;
        background-color: #d60079;
    }
}



/* 全ページ共通フッター */
@media (max-width: 769px) {
  .page-footer {
    background: #d60079;
    margin-top: 70px;
  }
  .footer-container {
    padding: 2px 5%;
    text-align: center;
  }
  .copyright {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #ffffff;
    font-size: 13px;
  }
}

@media (max-width: 769px){
    .footer-container {
    max-width: 100%;
    padding: 3px 20px;
    background: #d60079;
    margin-top: 70px;
  }
    .copyright {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #ffffff;
    font-size: 12px;
  }
    .footer-logo {
    width: 50%;
    margin: 40px auto 30px auto;
  }
}

@media (min-width: 768px) {
  .footer-container {
    max-width: 100%;
    padding: 3px 20px;
    background: #d60079;
    margin-top: 70px;
  }
  .footer-container {
    padding: 2px 5%;
    text-align: center;
  }
  .copyright {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #ffffff;
    font-size: 13px;
  }
  .footer-logo {
    width: 200px;
    margin: 40px auto 30px auto;
  }
}