@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Righteous
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Righteous&display=swap");
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
  color: #000;
  font-size: 16px;
  font-family: "游ゴシック Medium", YuGothicM, "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 750px) {
  html,
  body {
    font-size: 4.2666666667vw;
  }
}

html {
  overflow: auto;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  body {
    line-height: 1.5;
  }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 50px;
  left: 50%;
  width: 100%;
  height: 90px;
  padding: 0 10px 0 20px;
  z-index: 999;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 13px 0px rgba(110, 105, 105, 0.09);
          box-shadow: 0 0 13px 0px rgba(110, 105, 105, 0.09);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .header {
    width: auto;
    margin-right: 4%;
    margin-left: 4%;
  }
}
@media screen and (max-width: 750px) {
  .header {
    top: 25px;
    width: 92%;
    height: 60px;
    padding-right: 20px;
    border-radius: 1.3333333333vw;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .header {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/*  header-container
--------------------------------------------- */
.header-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  position: relative;
}

/*  header-company
--------------------------------------------- */
.header-company__logo {
  display: block;
  overflow: hidden;
  width: 185px;
  height: 0;
  padding-top: 16px;
  background: url(../img/logo_header_asahi.svg) 0 0 no-repeat;
  background-size: cover;
  margin-bottom: 13px;
}
@media screen and (max-width: 750px) {
  .header-company__logo {
    width: 150px;
    padding-top: 13px;
    margin-right: auto;
    margin-bottom: 5px;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .header-company__logo {
    width: 93px;
    padding-top: 8px;
    margin-left: 0;
  }
}
.header-company__content-text {
  font-size: 10px;
}
@media screen and (max-width: 750px) {
  .header-company__content-text {
    font-size: 9px;
  }
}
@media screen and (max-width: 480px) {
  .header-company__content-text {
    font-size: 7px;
  }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .header-logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.header-logo__link {
  display: block;
  overflow: hidden;
  width: 121px;
  height: 0;
  padding-top: 50px;
  background: url(../img/logo_header_kachimeshi.png) 0 0 no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .header-logo__link {
    width: 80px;
    padding-top: 33px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .header-logo__link {
    width: 60px;
    padding-top: 25px;
  }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
  position: relative;
  padding-top: 15px;
}
@media screen and (min-width: 751px) {
  .header-nav {
    display: block !important;
  }
}
@media screen and (max-width: 750px) {
  .header-nav {
    display: none;
    position: absolute;
    width: 100%;
    top: 53px;
    right: 0px;
    left: 0px;
    padding-top: 23.3333333333vw;
    padding-bottom: 22.4vw;
    background-color: #fff;
    overflow: scroll;
    height: calc(100vh - 13.33333vw - 23.33333vw);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0 0 1.3333333333vw 1.3333333333vw;
  }
}

/*  header-sns
--------------------------------------------- */
.header-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .header-sns {
    position: static;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header-sns__title {
  color: #e50012;
  font-style: italic;
  font-size: 0.9375rem;
  font-family: "Righteous", cursive;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .header-sns__title {
    font-size: 5.2vw;
    margin-right: 8vw;
  }
}
.header-sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-sns__list-item:nth-child(n+2) {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .header-sns__list-item:nth-child(n+2) {
    margin-left: 4vw;
  }
}
.header-sns__list-item a {
  display: block;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 750px) {
  .header-sns__list-item a {
    width: 8vw;
    height: 8vw;
  }
}
.header-sns__list-item a img {
  display: block;
}
@media screen and (max-width: 750px) {
  .header-sns__list-item-link img {
    width: 100%;
  }
}

/*  header-menu
--------------------------------------------- */
.header-menu {
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .header-menu {
    margin-bottom: 25.3333333333vw;
  }
}
.header-menu__title {
  line-height: 1.3;
  color: #e50012;
  font-style: italic;
  font-size: 0.9375rem;
  font-family: "Righteous", cursive;
}
@media screen and (max-width: 750px) {
  .header-menu__title {
    text-align: center;
    font-size: 8vw;
    margin-bottom: 16.6666666667vw;
  }
}
.header-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .header-menu__list {
    display: block;
  }
}
.header-menu__list-item {
  margin-right: 40px;
}
@media screen and (max-width: 750px) {
  .header-menu__list-item {
    text-align: center;
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .header-menu__list-item:nth-child(n+2) {
    margin-top: 11.7333333333vw;
  }
}
.header-menu__list-item:last-child {
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .header-menu__list-item:last-child {
    margin-right: 0;
  }
}
.header-menu__list-item:last-child .header-menu__list-link:after {
  display: none;
}
.header-menu__list-link {
  position: relative;
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .header-menu__list-link {
    font-weight: bold;
    font-size: 6.6666666667vw;
  }
}
.header-menu__list-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #9c9c9c;
}
@media screen and (max-width: 750px) {
  .header-menu__list-link:after {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .header-menu__list-link:hover {
    text-decoration: underline;
  }
}

/*  menu-trigger
--------------------------------------------- */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: absolute;
  width: 38px;
  height: 30px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .menu-trigger {
    width: 30px;
    height: 15px;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e50012;
}
@media screen and (max-width: 480px) {
  .menu-trigger span {
    width: 90%;
    height: 3px;
  }
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
@media screen and (max-width: 480px) {
  .menu-trigger span:nth-of-type(2) {
    top: 6px;
  }
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
  top: -7px;
  left: auto;
  right: 0;
}
@media screen and (max-width: 480px) {
  .menu-trigger.active span:nth-of-type(1) {
    top: -13px;
    right: 1px;
  }
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
  bottom: -8px;
}
@media screen and (max-width: 480px) {
  .menu-trigger.active span:nth-of-type(3) {
    bottom: -15px;
    left: 1px;
  }
}

/* ---------------------------------------------
*   pagetop
--------------------------------------------- */
.pagetop {
  margin-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .pagetop {
    margin-bottom: 30.6666666667vw;
  }
}

.pagetop__link {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pagetop__link {
    width: 20%;
  }
}

.pagetop__link-image {
  margin-bottom: 6px;
  width: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .pagetop__link-image {
    width: 54.6666666667%;
  }
}

.pagetop__link-text {
  color: #e50012;
  font-style: italic;
  font-size: 0.875rem;
  font-family: "Righteous", cursive;
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 62.37px;
  background: url(../img/bg_red.png) 0 0 repeat;
}
@media screen and (max-width: 750px) {
  .footer {
    padding-top: 9.3333333333vw;
    padding-bottom: 10vw;
  }
}
.footer:after {
  content: "";
  position: absolute;
  top: -119px;
  right: 22.1%;
  z-index: 0;
  display: block;
  width: 67px;
  height: 120px;
  background: url(../img/icon_skater_left.png) 50% 50% repeat-x;
}
@media screen and (max-width: 750px) {
  .footer:after {
    top: -60px;
    right: 15px;
    width: 34px;
    height: 60px;
    background-size: 100% auto;
  }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
  text-align: center;
  width: 152px;
  margin-bottom: 35px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .footer-logo {
    width: 26.9333333333%;
    margin-bottom: 9.3333333333vw;
  }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
  text-align: center;
}
.footer-copyright__text {
  display: block;
  color: #fff;
  font-size: 0.75rem;
}
@media screen and (max-width: 750px) {
  .footer-copyright__text {
    font-size: 2.6666666667vw;
    line-height: 1.7;
  }
}