@charset "UTF-8";
/* ---------------------------- */
/* header
/* ---------------------------- */
.header1, .header2, .header3 {
  padding: 19px 30px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.header1.fixed, .header2.fixed, .header3.fixed {
  position: fixed;
  background-color: rgb(255 255 255 / 95%);
  padding: 10px 30px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header1 a, .header2 a, .header3 a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}
/*.header1.fixed a, .header2.fixed a, .header3.fixed a{
  color: #fff;
}
.header1.fixed a::after, .header2.fixed a::after, .header3.fixed a::after{
  color: #fff;
}*/

.header1 a:hover, .header2 a:hover, .header3 a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.site-title {
  font-size: 2.6rem;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-item {
  margin-right: 30px;
}

.nav-item:last-of-type {
  margin-right: 0;
}

.header2 .menu1 {
  text-align: center;
}

.header2 .menu1 :after {
  content: 'ABOUT';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}


.header2 .menu2 {
  text-align: center;
}

.header2 .menu2 :after {
  content: 'PRICE';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.header2 .menu3 {
  text-align: center;
}

.header2 .menu3 :after {
  content: 'SCHEDULE';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.header2 .menu4 {
  text-align: center;
}

.header2 .menu4 :after {
  content: 'CONTACT';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.header3 .menu1 {
  text-align: center;
}

.header3 .menu1 :after {
  content: 'ABOUT';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.header3 .menu2 {
  text-align: center;
}

.header3 .menu2 :after {
  content: 'PRICE';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.header3 .menu3 {
  text-align: center;
}

.header3 .menu3 :after {
  content: 'SCHEDULE';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.header3 .menu4 {
  text-align: center;
}

.header3 .menu4 :before {
  content: "";
  display: block;
  background-image: url("./assets/free.svg");
  height: 3rem;
  width: 3rem;
  margin: 0 auto;
  margin-bottom: 5px;
  vertical-align: middle;
}

.header3 .menu4 :after {
  content: 'CONTACT';
  color: #000;
  font-size: 0.5em;
  display: block;
  margin-top: 5px;
}

.burger-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  /* ---------------------------- */
  /* header_sp
/* ---------------------------- */
  .header1, .header2, .header3 {
    padding: 30px 4vw 0;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #282f35;
  }
  .nav-list {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-item {
    margin: 0 0 30px;
  }
  .nav-item:last-of-type {
    margin-bottom: 0;
  }
  .burger-btn {
    display: block;
    position: absolute;
    top: 30px;
    right: 4vw;
  }
  .burger-btn .bar {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #ccc;
  }
  .bar_top {
    margin-bottom: 8px;
  }
  .bar_mid {
    margin-bottom: 8px;
  }
  /* ハンバーガーメニューが開いたとき */
  .burger-btn.cross .bar_top {
    -webkit-transform: rotate(45deg) translate(8px, 8px);
            transform: rotate(45deg) translate(8px, 8px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .burger-btn.cross .bar_mid {
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .burger-btn.cross .bar_bottom {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
            transform: rotate(-45deg) translate(8px, -8px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body.noscroll {
    overflow: hidden;
  }
  button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .header1 a, .header2 a, .header3 a {
    color: #fff;
  }
  .header1 a::after, .header2 a::after, .header3 a::after {
    color: #fff !important;
  }
  .site-title a{
    color: #000;
  }
}
.m-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}

.m-flex .left {
  width: 50%;
}

.m-flex .left img {
  width: 80%;
}

.m-flex .right {
  width: 50%;
}

.m-flex .right .text-box {
  margin-top: 40px;
}

.second {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.second .left {
  text-align: right;
}
.card {
  padding-bottom: 150px;
}

.card .inner {
  text-align: center;
}

.card .inner h2 {
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 7px;
  text-align: center;
  padding-top: 100px;
  margin-bottom: 90px;
  color: #000;
}

.card .inner h2::before {
  /*疑似要素*/
  content: 'BLOG';
  letter-spacing: 2px;
  color: #000;
  /*文字色*/
  font-size: 15px;
  display: block;
  /*改行するように*/
  margin-bottom: 10px;
}

.card .inner .m-flex {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 90px;
}

.card .inner .m-flex a {
  width: 32%;
}

.card .inner .m-flex .c-box {
  width: 95%;
  margin: 0 auto;
  text-align: left;
}

.card .inner .m-flex .c-box p {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-top: 25px;
}

.card .inner .m-flex .card-box {
  width: 100%;
  position: relative;
  background: silver;
  /*背景色*/
}

.card .inner .m-flex .card-box:before {
  /*疑似要素*/
  position: absolute;
  content: '見出し';
  top: 0;
  left: 0;
  color: white;
  /*文字色*/
  padding: 0.6em;
  /*余白*/
  background: #000;
  /*背景色*/
}

.card .inner .white2 {
  color: #000;
  background-color: #fff;
  font-size: 15px;
  font-weight: bold;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
}

.card .inner .white2:hover {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.card .inner .white2::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
}

.card .inner .white2 {
  padding: 18px 76px;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  width: 25%;
  text-align: center;
  margin: 0 auto;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
/*# sourceMappingURL=header.css.map */
