@charset "UTF-8";
/*===========================================================================
変数定義
===========================================================================*/
/*===========================================================================
メディアクエリ
===========================================================================*/
/*===========================================================================
コンテナ
===========================================================================*/
/*===========================================================================
マンガ
===========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*===========================================================================
書式設定
===========================================================================*/
*:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: .08rem;
  color: #333;
  text-align: left;
  position: relative;
  background-color: #fff;
}

input, textarea, button, submit, select, option {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: underline;
}

div, p {
  word-break: break-all;
}

/*===========================================================================
汎用
===========================================================================*/
/*======================================================
コンテナ
======================================================*/
.container {
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .container {
    margin: 0 2.4rem;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}

/*======================================================
ボタン
======================================================*/
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50px;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 0;
}

.btn:hover {
  text-decoration: none;
}

.btn--black {
  border: 1px solid #999;
  border-radius: 50px;
}

.btn--black:hover {
  border-color: #296b43;
  background: #296b43;
  color: #fff;
}

.btn--green {
  border: 1px solid #296b43;
  border-radius: 50px;
}

.btn--green:hover {
  border-color: #296b43;
  background: #296b43;
  color: #fff;
}

.btn.--disabled {
  border: 1px solid #999;
  color: #999;
  pointer-events: none;
}

.animate__animated {
  visibility: hidden;
  opacity: 0;
}

.animate__animated.--on {
  visibility: visible;
  opacity: 1;
}
/*# sourceMappingURL=common.css.map */