@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) {
    h1{
        width: 80%;
        margin: 70px auto 85px auto;
    }
}
@media (min-width: 768px) {
    h1{
    width: 300px;
        margin: 100px auto 130px auto;
    }
}

@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: 100%;
    text-align: center;
    margin: 0 auto;
  }
    .main-logo {
    width: 60%;
    margin: 45px auto 30px auto;
  }
    .br-sp{
        display: block;
    }
}
@media (min-width: 768px) {
  main {
    text-align: center;
  }
  .main-logo {
    width: 300px;
    margin: 90px auto;
  }
    .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){
    .portrait-container{
        width: 100%;
        position: relative;
        text-align: center;
        margin: 0 auto;
    }
    .portrait-container2{
        width: 100%;
        position: relative;
        text-align: center;
        margin: 0 auto 50px auto;
    }
    .portrait-container3{
        width: 100%;
        position: relative;
        text-align: center;
        margin-bottom: -30px;
        margin-top: 60px;
    }
    .portrait-box{
        width: 100%;
        display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
    row-gap: 8px;
	margin: 35px auto;
    }
    .portrait-box2{
        width: 100%;
        display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
    row-gap: 8px;
	margin: 35px auto;
    }
    .portrait-img{
        width: 100%;
        padding: 0;
    }
    .calendar-cover{
        width: 35%;
    }
    .calendar-cover:hover{
        opacity: .7;
    }
    .content{
    margin: 0 auto;
    padding: 0;
}
.modal{
    z-index: 99;
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
}
    .modal__content2{
    background: #fff;
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
}
    .modal__content3{
    background: #fff;
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
}
    }

@media (min-width: 768px) {
    .portrait-container{
        width: 100%;
        position: relative;
        margin-bottom: 80px;
    }
    .portrait-container2{
        width: 100%;
        position: relative;
        margin-bottom: 80px;
    }
    .portrait-container3{
        width: 100%;
        position: relative;
        text-align: center;
        margin-bottom: -30px;
        margin-top: 100px;
    }
    .portrait-box{
        width: 1000px;
        max-width: 100%;
        display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
	margin: 35px auto;
    }
    .portrait-box2{
        width: 1000px;
        max-width: 100%;
        display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 1px;
    row-gap: 1px;
	margin: 35px auto;
    }
    .portrait-box3{
        width: 1000px;
        max-width: 100%;
	margin: 35px auto;
    }
    .portrait-img{
        width: 240px;
        padding: 5px;
    }
    .portrait-img:hover{
        opacity: .7;
    }
    .calendar-cover{
        width: 240px;
    }
    .calendar-cover:hover{
        opacity: .7;
    }
    .content{
    margin: 0 auto;
    padding: 0;
}
.modal{
    z-index: 99;
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 1000px;
}
.modal__content{
    background: #fff;
    left: 500px;
    padding: 40px;
    position: absolute;
    top: 53%;
    transform: translate(-50%,-50%);
    width: 540px;
}
.modal__content2{
    background: #fff;
    left: 500px;
    padding: 40px;
    position: absolute;
    top: 53%;
    transform: translate(-50%,-50%);
    width: 700px;
}
    .modal__content3{
    background: #fff;
    left: 500px;
    padding: 40px;
    position: absolute;
    top: 53%;
    transform: translate(-50%,-50%);
    width: 700px;
}
}
/* ポップアップここまで */


/* 全ページ共通フッター */
@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;
  }
}