@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #FCFCFC;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/*.header*/
.body {
  background-color: #f7f7f7;
}
.header {
  position: relative;
}
.header h1 {
  font-size: 1.5rem;
  position: absolute;
  left: 24px;
  top: 5px;
  font-family: "Cinzel", serif;
}
.sns_btn {
  display: flex;
  justify-content: flex-end;
}
.line img {
  width: 26px;
  height: 26px;
  padding-top: 5px;
}
.instagram img {
  padding: 5px 24px 0 24px;
  width: 26px;
  height: 26px;
}
.header__navigation {
  display: none;
}
@media (max-width:960px) {
  /* ハンバーガーアイコン */
  #nav-drawer {
    padding: 5px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #FFF;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .nav-drawer__title {
    display: block;
    font-size: 2.0rem;
    font-weight: 600;
    color: #FF1493;
    margin: 30px 0;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content li:first-child {
    margin-bottom: 30px;
  }
  #nav-content li:nth-child(n+2) {
    margin-bottom: 30px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
  ul.menu__second-level {}
  .menu__second-level li {
    margin: 10px 0 10px 30px;
  }
  .menu__second-level li:last-child {
    margin: -20px 0 -20px 30px;
  }
}
@media (min-width:960px) {
  .header {
    height: 80px;
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    padding: 14px;
    box-sizing: border-box;
  }
  .header h1 {
    font-size: 2rem;
    top: 24px;
  }
  .sns_btn {
    top: 18px;
  }
  .line img {
    width: 36px;
    height: 36px;
    padding: 0px
  }
  .instagram img {
    padding: 0 40px;
    width: 36px;
    height: 36px;
  }
  .header__navigation {
    display: block;
    text-align: right;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 40px;
    margin-top: 12px;
    text-align: center;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 1.8rem;
    color: #333;
  }
  ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }
}
.menu > li.menu__single {
  position: relative;
}
li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
li.menu__single:hover ul.menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
/*.footer*/
.footer {
  background-color: #dda0dd;
  height: 100%;
}
.footer ul {
  margin: 0 24px;
}
.footer ul li {
  display: inline-block;
  padding: 30px 10px 0 10px;
  font-size: 0.8rem;
  line-height: 2.0rem;
}
.footer ul li:first-child {
  padding: 30px 10px 0 0;
}
.footer ul li:last-child {
  padding: 30px 0 0 10px;
}
.footer a {
  text-decoration: none;
  color: #333;
}
.footer small {
  display: block;
  margin-top: 30px;
  font-size: 1.0rem;
}
@media(min-width: 960px) {
  .footer ul {
    margin: 0 200px;
  }
  .footer ul li {
    display: inline-block;
    padding: 30px 30px 0 30px;
    font-size: 1.5rem;
    line-height: 3.0rem;
  }
  .footer ul li:first-child {
    padding: 30px 30px 0 0;
  }
  .footer ul li:last-child {
    padding: 30px 0 0 30px;
  }
  .footer small {
    margin-top: 50px;
    font-size: 1.5rem;
  }
}