@charset "UTF-8";
/* ===================================

  @mixin name で設定
  @include name で呼び出し

====================================== */
/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid #ab8c1f;
  outline-offset: 2px;
}

html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  color: #000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  body {
    font-size: 12px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 479px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 479px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ---------------------------------
  全体
----------------------------------- */
body {
  position: relative;
  background-image: url(img/pc-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: #ce1616;
}

/* ---------------------------------
  アニメーション
----------------------------------- */
.trg {
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
.trg.fadeUp {
  -webkit-animation-name: fadeUpAction;
          animation-name: fadeUpAction;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAction {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAction {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ---------------------------------
  ローディング
----------------------------------- */
/* ---------------------------------
  コンテンツ
----------------------------------- */
.contents {
  width: 480px;
  margin: 0 auto;
  background-color: #fff;
}

@media screen and (max-width: 479px) {
  .contents {
    width: 100%;
  }
}
/* ---------------------------------
  ヘッダー
----------------------------------- */
.header__mv {
  width: 100%;
}
.header__img {
  display: block;
  width: 100%;
}

/* ---------------------------------
  story
----------------------------------- */
.story {
  background-color: #ebe6dd;
  padding-top: 53px;
}
.story__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.story__title {
  margin-top: 54px;
  width: 365px;
}
.story__txt {
  width: 337px;
}
.story__contents {
  margin: 10px auto 0;
  width: calc(100% - 60px);
}

@media screen and (max-width: 479px) {
  .story__title {
    width: 365px;
    max-width: calc(100% - 30px);
  }
  .story__txt {
    max-width: calc(100% - 30px);
  }
  .story__contents {
    width: calc(100% - 30px);
  }
}
/* ---------------------------------
  メンバー紹介
----------------------------------- */
.member {
  padding-top: 78px;
  background-color: #ebe6dd;
}
.member__title {
  width: 326px;
  margin: 0 auto;
}
.member__items {
  margin-top: 37px;
}
.member__items .item {
  position: relative;
  width: 100%;
}
.member__items .item__chara {
  position: absolute;
  top: 12.92%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 52.08%;
}
.member__items .item__bg {
  width: 100%;
}
.member__items .item.green .item__chara {
  top: 11.43%;
}
.member__items .item.yellow .item__chara {
  top: 8.46%;
  width: 54.27%;
}
.member__items .item.pink .item__chara {
  top: 9.77%;
  width: 52.7%;
}
.member__items .item.black .item__chara {
  top: 11.06%;
  width: 52.7%;
}

@media screen and (max-width: 479px) {
  .member__title {
    max-width: calc(100% - 30px);
  }
}
/* ---------------------------------
  こだわり
----------------------------------- */
.commit {
  padding-top: 101px;
}
.commit-head__title {
  width: 410px;
  margin: 0 auto;
}
.commit-head__txt {
  width: 312px;
  margin: 75px auto 0;
}
.commit-head__img {
  width: 347px;
  margin: 70px auto 0;
}
.commit-head__items {
  margin: 56px auto 0;
  width: calc(100% - 56px);
}
.commit__body {
  margin-top: 100px;
}
.commit__body .items + .items {
  margin-top: 80px;
}
.commit__body .items__title {
  width: 385px;
  margin: 0 auto;
}
.commit__body .items1__body {
  margin-top: 30px;
}
.commit__body .items1__body .item {
  width: 396px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}
.commit__body .items1__body .item + .item {
  margin-top: 18px;
}
.commit__body .items1__body .item__thumb {
  width: 100%;
}
.commit__body .items1__body .item__body {
  margin-top: 30px;
  padding: 0 12px;
}
.commit__body .items2__body {
  margin-top: 25px;
  padding: 28px 0 310px;
  background-color: #b22a26;
}
.commit__body .items2 .item + .item {
  margin-top: 22px;
}
.commit__body .items2 .item__title {
  width: 306px;
  margin: 0 auto;
}
.commit__body .items2 .item__body {
  margin-top: 21px;
}

@media screen and (max-width: 479px) {
  .commit-head__title {
    max-width: calc(100% - 30px);
  }
  .commit-head__txt {
    width: 65%;
  }
  .commit-head__img {
    width: 72.3%;
  }
  .commit-head__items {
    width: calc(100% - 30px);
  }
  .commit__body .items__title {
    max-width: calc(100% - 30px);
  }
  .commit__body .items2 .item__title {
    width: 63.75%;
  }
}
/* ---------------------------------
  about
----------------------------------- */
.about__bg {
  margin-top: -76.25%;
  z-index: 1;
}
.about__foot {
  padding-top: 23px;
  background-color: #ebe6dd;
}
.about__balloon {
  width: 270px;
  margin: 0 auto;
}
.about__slide {
  width: 100%;
  background-color: #ebe6dd;
}

@media screen and (max-width: 479px) {
  .about__bg {
    margin-top: -350px;
  }
}
/* ---------------------------------
  そんなあなたに！
----------------------------------- */
.cam {
  padding-top: 56px;
  background-color: #ebe6dd;
}
.cam__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.cam__title {
  width: 393px;
  margin: 0 auto;
}
.cam__copy {
  width: 412px;
  margin: 30px auto 0;
}
.cam__menu {
  margin-top: -10px;
  width: 100%;
}
.cam__txt {
  margin-top: 38px;
  width: 100%;
}
.cam__price {
  width: calc(100% - 62px);
  margin: 38px auto 0;
}
.cam__appeal {
  width: 368px;
  margin: 40px auto 0;
}

@media screen and (max-width: 479px) {
  .cam__title {
    max-width: calc(100% - 30px);
  }
  .cam__copy {
    max-width: calc(100% - 30px);
  }
  .cam__price {
    width: calc(100% - 30px);
  }
  .cam__appeal {
    max-width: calc(100% - 30px);
  }
}
/* ---------------------------------
  フッター：ご購入はこちら
----------------------------------- */
.footer {
  padding: 53px 0 50px;
  background-color: #ebe6dd;
}
.footer__title {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.footer__cv {
  width: calc(100% - 60px);
  margin: 37px auto 0;
}
.footer__logo {
  width: 232px;
  margin: 82px auto 0;
}

@media screen and (max-width: 479px) {
  .footer__title {
    width: calc(100% - 30px);
  }
  .footer__cv {
    width: calc(100% - 30px);
  }
}