@charset "utf-8";

/*  =============================================================

　　基本設定

============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

/*  全体　基本設定
---------------------------------------------*/

html,
body {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height:1;
  letter-spacing: normal;
  text-align: left;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #fff;
}

sup {
  vertical-align:super;
  font-size: 12px;
  font-size: 1.2rem;
}

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

  * {
    -webkit-appearance: none;
  }

}


/*  ボックス 基本設定
-------------------------- */
.displayPC {
  display: block;
}

.displayTB {
  display: none;
}

.displaySP {
  display: none;
}

.display_pc_tb {
  display: block;
}

.disnon {
  display: none;
}

.visnon {
  visibility:hidden;
}

.disnonPC {
  display: none;
}

.disnonTB {
  display: block;
}

.disnonSP {
  display: block;
}

@media screen and (max-width:768px){
  .displayPC {
    display: none;
  }

  .displayTB {
    display: block;
  }

  .displaySP {
    display: none;
  }

  .display_pc_tb {
    display: block;
  }

  .disnonPC {
    display: block;
  }

  .disnonTB {
    display: none;
  }

  .disnonSP {
    display: block;
  }
}

@media screen and (max-width:640px){
  .displayPC {
    display: none;
  }

  .displayTB {
    display: none;
  }

  .displaySP {
    display: block;
  }

  .display_pc_tb {
    display: none;
  }

  .disnonPC {
    display: block;
  }

  .disnonTB {
    display: block;
  }

  .disnonSP {
    display: none;
  }

}

/*  画像 基本設定
-------------------------- */

img {
  width: 100%;
  vertical-align: top;
  border: none;
  -webkit-backface-visibility: hidden;
}

a:hover img {
  filter: alpha(opacity=90);
  -moz-opacity:0.9;
  opacity:0.90;
  cursor: pointer;
}

@media screen and (max-width:768px){
  a:hover img {
  filter: alpha(opacity=100);
  -moz-opacity:1;
  opacity:1;
  cursor: default;
  }
}

/*  テキスト 共通設定
-------------------------- */

em {
  font-weight: bold;
}


/*  リンク 基本設定
-------------------------- */

a {
  display: inline-block;
  outline: none;
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {

}

@media screen and (max-width:768px){
  a:hover {
  }
}

/* container
---------------------------------------------*/
#container {
  min-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px){
  #container {
    min-width: inherit;
    margin-left: auto;
    margin-right: auto;
  }
}

/*  header
---------------------------------------------*/
.header__inner {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px 0;
}


.header__logo {
  width: 175px;
}

.header__buy {
  padding-right: 60px;
}

.header__buy img {
  width: 60px;
}

@media screen and (max-width:768px){
  .header__inner {
    padding: 30px 5% 0;
  }
}


@media screen and (max-width:640px){
  .header__inner {
    position: relative;
    padding: 0;
  }

  .header__logo {
    position: fixed;
    left: 5%;
    top: 23px;
    width: 115px;
    transition: all 0.2s ease;
  }

  .header.scroll .header__logo {
    display: none;
  }

  .header__buy {
    position: fixed;
    top: 18px;
    right: 0px;
    padding-right: 60px;
  }

  .header__buy img {
    width: 20px;
  }
}

/*  ドロワーメニュー
---------------------------------------------*/
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  z-index: 999;
  top: 50px;
  right: 50px;
  width: 40px;
  height: 23px;
}
#drawer-icon span {
  background:  #c29463;
  display: block;
  height: 2px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 45%;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #c29463;
  border-radius: 4px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -28%;
}
#drawer-icon span::after {
  margin-top: 26%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  width: 696px;
  max-width: 100%;
  height: 100%;
  background: #ffe5eb;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(100%);
  overflow-y: scroll;
  -webkit-overflow-scrolling : touch;
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateX(0);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0;
}

.blue #drawer-content {
  background: #e3faf3;
}

.blue #drawer-icon span,
.blue #drawer-icon span::before,
.blue #drawer-icon span::after {
  background: #baac68;
}

.white #drawer-content {
  background: #f7f4e6;
}

.white #drawer-icon span,
.white #drawer-icon span::before,
.white #drawer-icon span::after {
  background: #bda062;
}

.mask #drawer-content {
  background: #ffe3e6;
}

.mask #drawer-icon span,
.mask #drawer-icon span::before,
.mask #drawer-icon span::after {
  background: #8f9fa6;
}


.skin #drawer-content {
  background: #ebf4fc;
}

@media screen and (max-width:768px){
  #drawer-content {
    width: 100%;
  }

  #drawer-icon {
    top: 30px;
    right: 5%;
  }
}

@media screen and (max-width:640px){
  #drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    z-index: 999;
    top: 50px;
    right: 50px;
    width: 25px;
    height: 25px;
  }

  #drawer-icon {
    top: 20px;
    right: 5%;
  }

  #drawer-icon span {
    background:  #c29463;
    display: block;
    height: 2px;
    left: 0;
    margin:0;
    position: absolute;
    top: 42%;
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  #drawer-icon span::before,
  #drawer-icon span::after {
    -webkit-transform: rotate(0);
    background: #c29463;
    border-radius: 4px;
    content: "";
    display: block;
    height: 100%;
    left: 0%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  #drawer-icon span::before {
    margin-top: -30%;
  }
  #drawer-icon span::after {
    margin-top: 30%;
  }
}


/* 　メニュー
---------------------------------------------*/
.box-nav {
  width: 100%;
  padding: 100px 0;
}

.box-nav__inner {
  width: 445px;
  margin: 0 auto;
}

.box-nav__logo {
  display: none;
}

.box-nav .section-menu {
  margin: 40px 0 0;
}

.box-nav .menu-title {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  color: #c29463;
  font-size: 4.8rem;
}

.blue .box-nav .menu-title {
  color: #baac68;
}

.white .box-nav .menu-title {
  color: #bda062;
}

.mask .box-nav .menu-title {
  color: #8f9fa6;
}

.box-nav .menu-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}

.box-nav .menu-list li {
  width: 45%;
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: normal;
}

.box-nav .menu-list li a {
  font-weight: 500;
  color: #e0657e;
}

.blue .box-nav .menu-list li a {
  color: #4ba68d;
}

.white .box-nav .menu-list li a {
  color: #a18a65;
}

.mask .box-nav .menu-list li a {
  color: #3e9cab;
}

.skin .box-nav .menu-list li a {
  color: #5babd4;
}

.box-nav .menu-list li .icon {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  margin-right: 5px;
  line-height: 1;
}

.box-nav .menu_form {
  width: 100%;
  padding: 0 0 40px;
}

.box-nav .menu_form form{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 6px;
  border-radius: 8px;
  background: #fff;
}

.box-nav .menu_form input[type="text"]{
  width: 380px;
  border: none;
  padding: 15px 10px;
  background-color: transparent;
  color: #e0657e;
}

.blue .box-nav .menu_form input[type="text"] {
  color: #a1d2c4;
}

.white .box-nav .menu_form input[type="text"] {
  color: #a18a65;
}

.mask .box-nav .menu_form input[type="text"] {
  color: #83c2cc;
}

.skin .box-nav .menu_form input[type="text"] {
  color: #5babd4;
}

.box-nav .menu_form input[type="text"]:focus {
  outline: none;
}

.box-nav .menu_form input[type="text"]::placeholder {
  color: #efaebb;
}

.blue .box-nav .menu_form input[type="text"]::placeholder {
  color: #a1d2c4;
}

.white .box-nav .menu_form input[type="text"]::placeholder {
  color: #cfc3ae;
}

.mask .box-nav .menu_form input[type="text"]::placeholder {
  color: #83c2cc;
}

.skin .box-nav .menu_form input[type="text"]::placeholder {
  color: #aad3e9;
}

.box-nav .menu_form input[type="submit"]{
  width: 55px;
  border-radius:0;
  border: none;
  background-image: url('/images/lululun2/common/nav-icon-search.png');
  background-position: right 20px center;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
}

.blue .box-nav .menu_form input[type="submit"] {
  background-image: url('/images/lululun2/blue/nav-icon-search.png');
}

.white .box-nav .menu_form input[type="submit"] {
  background-image: url('/images/lululun2/white/nav-icon-search.png');
}

.mask .box-nav .menu_form input[type="submit"] {
  background-image: url('/images/lululun2/mask/nav-icon-search.png');
}

.skin .box-nav .menu_form input[type="submit"] {
  background-image: url('/images/lululun2/skin/nav-icon-search.png');
}


@media screen and (max-width: 640px) {
  .box-nav {
    width: 100%;
    padding: 75px 0 50px;
  }

  .box-nav__inner {
    width: 80%;
    margin: 0 auto;
  }

  .box-nav .section-menu {
    margin: 40px 0 0;
  }

  .box-nav .menu-title {
    font-size: 3.4rem;
    line-height: 1.2;
  }


  .box-nav .menu-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap:wrap;
    flex-direction: column;
    justify-content:flex-start;
    margin-top: 35px;
  }

  .box-nav .menu-list li {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }

  .box-nav .menu-list li .icon {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    margin-right: 5px;
  }

  .box-nav .menu_form {
    width: 90%;
    padding: 0 0 10px;
  }

  .box-nav .menu_form form{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 0 6px;
    border-radius: 8px;
  }

  .box-nav .menu_form input[type="text"]{
    width: 80%;
    border: none;
    padding: 15px 0;
    background-color: transparent;
    color: #000;
  }

  .box-nav .menu_form input[type="text"]:focus {
    outline: none;
  }

  .box-nav .menu_form input[type="submit"]{
    width: 20%;
    border: none;
    background-position: right 10px center;
    background-size: 19px 19px;
    cursor: pointer;
  }

}

/*  footer
---------------------------------------------*/
.footer {
  position: relative;
  padding: 90px 0 120px;
  background: #f7d0db;
  text-align: center;
}

.blue .footer {
  background: #c8e6dd;
}

.white .footer {
  background: #e8e2c5;
}

.mask .footer {
  background: #f7d0d2;
}

.skin .footer {
  background: #cde9f7;
}

@media screen and (max-width:768px){
  .footer {
    padding: 90px 0 80px;
  }
}

@media screen and (max-width:640px){
  .footer {
    padding: 60px 0;
  }
}


/*  SNS
-------------------------- */
.footer__sns {
  margin: 0 auto 70px;
}


.footer__snsTiTle {
  margin: 0 0 30px;
  color: #fff;
  font-size: 3.2rem;
}

.footer__sns ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content:space-between;
  align-items: center;
  width: 512px;
  margin: 0 auto;
}

.footer__sns ul li {
  width: 80px;
}

.footer__sns a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  color: #e2d2a0;
  font-size: 1.6rem;
}


@media screen and (max-width:640px){
  .footer__sns {
    margin: 0 auto 50px;
  }

  .footer__snsTiTle {
    margin: 0 0 25px;
    color: #fff;
    font-size: 3.2rem;
  }

  .footer__sns ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    align-items: center;
    width: 80%;
    margin: 0 auto;
  }

  .footer__sns ul li {
    width: 80px;
    margin: 0 10px 10px;
  }

  .footer__sns a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    color: #e2d2a0;
    font-size: 1.6rem;
  }

}

/*  フッターメニュー
-------------------------- */
.footer__nav {
  margin: 0 0 40px;
  color: #d95b7d;
}

.blue .footer__nav {
  color: #4ba68d;
}

.white .footer__nav {
  color: #a18a65;
}

.mask .footer__nav {
  color: #3e9cab;
}

.skin .footer__nav {
  color: #5babd4;
}

.footer__nav li {
  position: relative;
  display: inline-block;
  padding: 0 12px 0 5px;
  font-size: 1.3rem;
}

.footer__nav li::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "|";
}

.footer__nav li:last-child::after {
  display: none;
}

.footer__nav li a {
  color: #d95b7d;
}

.blue .footer__nav li a {
  color: #4ba68d;
}

.white .footer__nav li a {
  color: #a18a65;
}

.mask .footer__nav li a {
  color: #3e9cab;
}

.skin .footer__nav li a {
  color: #5babd4;
}


@media screen and (max-width:768px){
  .footer__nav {
    margin: 0 0 80px;
  }
}

@media screen and (max-width:640px){
  .footer__nav {
    padding: 0px 0 25px;
    color: #d95b7d;
  }

  .blue .footer__nav {
    color: #4ba68d;
  }

  .white .footer__nav {
    color: #a18a65;
  }

  .mask .footer__nav {
    color: #3e9cab;
  }

  .skin .footer__nav {
    color: #5babd4;
  }

  .footer__nav ul {
    text-align: center;
  }

  .footer__nav li {
    position: relative;
    margin-bottom: 10px;
    padding: 0 12px 0 5px;
    font-size: 1.2rem;
  }

  .footer__nav li:nth-child(1) {
    margin-left: 30px;
  }

  .footer__nav li:nth-child(2) {
    margin-right: 30px;
  }

  .footer__nav li::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "|";
  }

  .footer__nav li:nth-child(2)::after,
  .footer__nav li:last-child::after {
    display: none;
  }

  .footer__nav li a {
    color: #d95b7d;
  }

  .blue .footer__nav li a {
    color: #4ba68d;
  }

  .white .footer__nav li a {
    color: #a18a65;
  }

  .mask .footer__nav li a {
    color: #3e9cab;
  }

  .skin .footer__nav li a {
    color: #5babd4;
  }

}

/*  page top
-------------------------- */
.footer__pagetop {
  position: absolute;
  bottom: 120px;
  right: 125px;
  width: 96px;
}


@media screen and (max-width:768px){
  .footer__pagetop {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: 96px;
    margin: 0 auto 80px;
  }
}

@media screen and (max-width:640px){
  .footer__pagetop {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: 123px;
    margin: 0 auto 60px;
  }
}

/*  copy right
-------------------------- */
.footer__logo {
  max-width: 162px;
  margin: 0 auto 15px;
}

.footer__copyright {
  color: #fff;
  font-size: 1.0rem;
}
