@charset "UTF-8";
/* =====================================================
   Header CSS
   元ファイル flower(5).css から整理・分割
===================================================== */



@font-face {
  font-family: "NotoSerifCJKjp-L";
  src: url("../fonts/NotoSerifCJKjp-L.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}



.header {
  position: relative;
  width: 100%;
}

.header__bar {
  position: fixed;
  z-index: 97;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background: white;
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header_index .header__bar {
  background: rgba(255, 255, 255, 0);
}

.header__bar_move {
  -webkit-transform: translate(0px, -56px);
  transform: translate(0px, -56px);
}

.header__bar_fix {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.header__logo {
  height: 100%;
  padding: 10px 0 0;
  text-align: center;
}

.header__logo img {
  width: 80px;
}

.header_index .header__logo {
  padding-left: 10px;
  text-align: left;
}

.header__menubtn {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
}

.header__menubtn button {
  background: transparent;
}

.header__menubtn img {
  width: 100%;
  margin-top: -54px;
}

.header_index .header__menubtn img {
  margin-top: 0;
}

@media (min-width: 600px) {
.header__bar {
    height: 64px;
  }

.header__bar_move {
    -webkit-transform: translate(0px, -66px);
    transform: translate(0px, -66px);
  }

.header__logo img {
    width: 100px;
  }

.header_index .header__logo {
    padding-left: 0;
    text-align: center;
  }

.header__menubtn {
    width: 64px;
    height: 64px;
  }

.header__menubtn img {
    margin-top: -64px;
  }
}

@media (min-width: 1280px) {
.header__bar {
    position: static;
    height: auto;
    background: transparent;
    -webkit-transition: none;
    transition: none;
  }

.header__bar_move {
    -webkit-transform: none;
    transform: none;
  }

.header__bar_fix {
    -webkit-transform: none;
    transform: none;
  }

.header__logo {
    position: fixed;
    z-index: 100;
    top: 16px;
    left: 3%;
    width: 100px;
    height: auto;
    padding: 0;
  }

.header__logo img {
    width: 100%;
  }

.header_index .header__logo {
    position: absolute;
    top: 120px;
    top: 45vh;
    left: calc(50% - 80px);
    width: 160px;
  }

.header__menubtn {
    display: none;
  }
}

.header__menu {
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: white;
  z-index: 99;
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__menu_off {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.header__fair {
  padding: 0 0 20px;
  background: #efe0ec;
}

.header__fair a {
  position: relative;
  display: block;
  width: 85%;
  margin: 0 auto;
  padding: 20px 0;
  border-radius: 2px;
  background: #b062a0;
  color: #FFF;
  font-family: "NotoSerifCJKjp-L", sans-serif;
  text-decoration: none;
  text-align: center;
}

.header__fair a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  margin-bottom: 3px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  position: static;
  margin-bottom: 0;
}

.header__tel {
  padding: 20px 0 10px;
  background: #efe0ec;
}

.header__teltxt {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  text-align: center;
}

.header__telbtn a {
  display: block;
  width: 85%;
  margin: 0 auto;
  padding: 12px 0;
  border: 1px solid #b062a0;
  border-radius: 2px;
  background: #FFF;
  font-size: 1.375rem;
  font-family: "NotoSerifCJKjp-L", sans-serif;
  text-align: center;
  text-decoration: none;
}

.header__telbtn a span {
  display: inline-block;
  vertical-align: top;
}

.header__telicon {
  fill: #b062a0;
}

.header__menulist {
  border-top: 1px solid #DDD;
}

.header__menulist li {
  border-bottom: 1px solid #DDD;
}

.header__menulist a {
  position: relative;
  display: block;
  padding: 15px;
  color: #333;
  text-decoration: none;
}

.header__menulist a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  margin-bottom: 3px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
}

.header__closebtn {
  position: absolute;
  z-index: 99;
  top: 10px;
  left: -40px;
  width: 30px;
  height: 30px;
}

.header__closebtn::before, .header__closebtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__closebtn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__closebtn_off {
  display: none;
}

@media (min-width: 1280px) {
.header__menu {
    overflow-x: visible;
    overflow-y: visible;
    position: fixed;
    width: 100%;
    max-width: 100%;
    height: 74px;
    -webkit-transition: none;
    transition: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }

.header_index .header__menu {
    background: rgba(255, 255, 255, 0);
  }

.header__menu_off {
    -webkit-transform: none;
    transform: none;
  }

.header__linklist {
    position: absolute;
    top: 16px;
    right: 3%;
  }

.header__fair {
    padding: 0;
    background: transparent;
  }

.header__fair a {
    position: absolute;
    top: 0;
    left: -14em;
    width: 13em;
    padding: 15px 0;
  }

.header__fair a:hover {
    background: #c891bc;
  }

.header__tel {
    padding: 0;
    background: transparent;
  }

.header__teltxt {
    margin-bottom: 5px;
    padding: 0 0 0 18px;
    font-size: 0.625rem;
  }

.header__telbtn a {
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #222;
    font-size: 1.375rem;
  }

.header__telbtn a:hover {
    color: #222;
  }

.header__telicon {
    fill: #222;
  }

.header__menulist {
    position: absolute;
    top: 30px;
    left: calc(125px + 3%);
    border-top: none;
  }

.header__menulist li {
    float: left;
    border-bottom: none;
  }

.header__menulist li:not(:first-child) {
    margin-left: 20px;
  }

.header__menulist a {
    display: inline-block;
    padding: 0;
    color: #222;
  }

.header__menulist a::after {
    display: none;
  }

.header__menulist a::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #222;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

.header__menulist a:hover {
    color: #999;
  }

.header__menulist a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

.header_index .header__menulist {
    left: 3%;
  }

.header_index .header__menulist a::before {
    background: #FFF;
  }

.header_index .header__menulist a:hover {
    color: #FFF;
  }

.header__closebtn, .header__closebtn::before, .header__closebtn::after {
    display: none;
  }
}

.overlay_off {
  display: none;
}

@media (max-width: 1279px) {
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
}

.noscroll {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

@media (min-width: 1280px) {
.noscroll {
    position: static;
    width: inherit;
    overflow-y: inherit;
  }
}
