@charset "utf-8";

/*共通部分
---------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  position: relative;
}

body {
  font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", sans-serif;
  background-color: #222;
}

/*========= レイアウトのためのCSS ===============*/
h1, h2 {
  font-size: 1.2rem;
}

/*=========アニメーションの為のCSS=========*/
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*========= 左固定レイアウトのためのCSS ===============*/
/*左と右を囲う全体のエリア*/
#wrapper {}

header {
  text-align: center;
  position: relative;
  height: 100vh;
}

header h1 {
  font-size: 80px;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 32vh;
  background: linear-gradient(45deg, #848484 0%, #fff 50%, #848484 100%);
  background: -webkit-linear-gradient(-180deg, #848484 0%, #fff 50%, #848484 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header h2 {
  font-size: 60px;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}

header hr {
  width: 200px;
  margin: 0 auto;
}

#open-day {
  padding-top: 40px;
}

#day {
  background: linear-gradient(0deg, #E60795 0%, #FB0AD3 50%, #C00BD3 100%);
  background: -webkit-linear-gradient(90deg, #E60795 0%, #FB0AD3 50%, #C00BD3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#open {
  color: #fff;
}

#video-area {
  position: fixed;
  z-index: -50;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

#container {
  width: 100%;
  margin: 0 auto;
  background-color: #222;
  z-index: -15;
}

h1 {
  text-align: center;
  font-size: 1.5rem;
  padding: 30px 0;
}

h2 {
  font-size: 1.3rem;
  margin: 0 0 20px 0;
}

/*TOP META SHOP 装飾CSS*/
section {
  min-height: auto;
  color: #fff;
  background: linear-gradient(0deg, #000 0%, #1c1c1c 20%, #2c2c2c 50%, #1c1c1c 80%, #000 100%);
  background: -webkit-linear-gradient(180deg, #000 0%, #1c1c1c 20%, #2c2c2c 50%, #1c1c1c 80%, #000 100%);
  overflow: hidden;
  position: relative;
}

#fv-logo-pc {
  width: 95%;
  height: auto;
  padding-top: 120px;
  padding-bottom: 80px;
  margin: 0 auto;
  display: block;
}

#fv-logo-sp {
  display: none;
}

#welcome-bg {
  opacity: 0.3;
  position: absolute;
  top: 35%;
  left: 2%;
  width: 95%;
  height: auto;
}

.area1 {
  width: 50%;
  margin: 0 auto;
  padding-top: 60px;
}

.area1 h2 {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 72px;
  font-size: 48px;
  background: linear-gradient(-45deg, #707070 0%, #8e8e8e 30%, #e2e2e2 50%, #8e8e8e 70%, #707070 100%);
  background: -webkit-linear-gradient(225deg, #707070 0%, #8e8e8e 30%, #e2e2e2 50%, #8e8e8e 70%, #707070 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*  background: linear-gradient(-45deg, #ff00a2 0%, #ff00e7 30%,##ffa2f5 50%,#C00BD3 70%,#a400ff 100%);
    background: -webkit-linear-gradient(225deg, #ff00a2 00%, #ff00e7 30%,#ffa2f5 50%,#C00BD3 70%,#a400ff 100%);
  */
}

#btn1 {
  margin: 0 auto;
  text-align: center;
  display: block;
  background-color: #E60795;
  width: 300px;
  height: 60px;
  font-size: 24px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 20px 40px;
  text-decoration: none;
  border: none;
  color: #fff;
}

#btn1:hover {
  background-color: #fff;
  color: #E60795;
  transition: 0.5s;
  border: 1px solid #E60795;
}

.area1-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.area1-flex img {
  width: 50%;
  height: 100%;
  padding: 0 40px;
}

.area1-flex-text {
  width: 50%;
  height: auto;
}

.area1-flex p {
  padding: 10px 10px;
  line-height: 3rem;
  letter-spacing: 0.1rem;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(-45deg, #8b8b8b 0%, #acacac 30%, #e2e2e2 50%, #acacac 70%, #8b8b8b 100%);
  background: -webkit-linear-gradient(225deg, #8b8b8b 0%, #acacac 30%, #e2e2e2 50%, #acacac 70%, #8b8b8b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

span {
  display: inline-block;
}

/*What we can do 装飾関係*/
section:nth-of-type(2n) {
  height: auto;
  color: #fff;
  background-color: #222;
  position: relative;
  padding-bottom: 5%;
  padding-top: 5%;
  overflow: hidden;
  width: 100%;
}

section:nth-of-type(2n) h2 {
  color: #E60795;
  font-size: 40px;
  font-weight: 700;
}

.area2 {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

#section-title-pc {
  padding-bottom: 20px;
  width: 70%;
}

#section-title-sp {
  display: none;
}

#whatyoucando-bg {
  opacity: 0.3;
  position: absolute;
  top: 3%;
  left: 2%;
  width: 95%;
  height: auto;
}

.can01 {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}

.can02 {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}

.can-text {
  width: 50%;
}

.can-list {
  position: relative;
  margin: 24px 0;
}

/*
.can-list::before {
  position: relative;
  content: "";
  display: inline-block;
  width: 5px;
  height: 100%;
  background: linear-gradient(#E60796, #C00BD3);
  position: absolute;
  top: 5px;
  left: -20px;
}
*/
.can-list h4 {
  color: #E60795;
  font-size: 24px;
}

.can-list img {
  height: 3.25rem;
  width: auto;
  padding: 16px 0;
}

.can-list p {
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.02rem;
  line-height: 24px;
  font-weight: 300;
  font-size: 16px;
}

.can01-list img {
  width: 50%;
  height: auto;
}

.can01-img {
  max-width: 100%;
  width: 50%;
  height: 100%;
  padding-left: 20px;
}

.can02-list img {
  width: 50%;
  height: auto;
}

.can02-img {
  max-width: 100%;
  width: 50%;
  height: 100%;
  padding-right: 40px;
}

.yellow {
  background: linear-gradient(transparent 8%, #ff00a2 0%);
  display: inline;
}

/*加盟店募集中 装飾関係*/
section:nth-of-type(3n) {
  height: auto;
  background: linear-gradient(45deg, #222 0%, #848484 50%, #222 100%);
  background: -webkit-linear-gradient(90deg, #222 0%, #848484 50%, #222 100%));
  /*
  background: linear-gradient(-45deg, #ff00a2 0%, #ff00e7 30%,#ff74f0 50%,#C00BD3 70%,#a400ff 100%);
  background: -webkit-linear-gradient(225deg, #ff00a2 00%, #ff00e7 30%,#ff74f0 50%,#C00BD3 70%,#a400ff 100%);
  */
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

#recruitment-bg {
  opacity: 0.4;
  position: absolute;
  top: 3%;
  left: 2%;
  width: 95%;
  height: auto;
}

.bk-text2 {
  font-size: 15rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  opacity: 0.2;
  top: 2%;
  left: -3%;
  position: absolute;
  overflow: hidden;
}

section h3 {
  font-size: 3rem;
}

section:nth-of-type(3n) img {
  margin: 0 auto;
  display: block;
  padding: 20px;
}

section:nth-of-type(3n) p {
  text-align: center;
  font-weight: 700;
}

#kameiten {
  max-width: 300px;
  margin: 0 auto;
}

#kameinten-text {
  max-width: 800px;
  margin: 0 auto;
}

#kameinten-text-sp {
  display: none;
}

#btn2 {
  margin: 0 auto;
  text-align: center;
  display: block;
  background-color: #fff;
  color: #E60795;
  width: 300px;
  height: 60px;
  font-size: 24px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 20px 40px;
  border: none;
  text-decoration: none;
}

#btn2:hover {
  background-color: #222;
  color: #fff;
  transition: 0.5s;
  border: 1px solid #fff;
}

/*フッター*/
footer {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  background-color: #000;
}

.footer-area {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

#foot-name {
  font-size: 16px;
  padding: 20px;
}

#foot-flex {
  display: flex;
  flex-direction: row;
  padding-bottom: 40px;
}

#foot-left {
  width: 50%;
}

#foot-left img {
  width: 80px;
  height: 100%;
  ;
}

.foot-layout {
  display: flex;
  flex-direction: row;
}

.foot-text {
  padding-left: 15px;
}

#foot-right {
  width: 50%;
}

#foot-right img {
  width: 120px;
  height: 100%;
  ;
}

footer p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 5px 0;
  text-align: left;
}

small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding-bottom: 20px;
}

small a {
  color: #fff;
}

.footer-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-link:checked {
  color: #E60795;
}

#small-pc {
  display: block;
}

#small-sp {
  display: none;
}

#small-sp p {
  padding-top: 10px;
  text-align: center;
  font-weight: normal;
}

/*＝＝＝＝＝＝＝＝＝＝＝1000px以下の見え方＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width:1000px) {
  header h1 {
    font-size: 60px;
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-top: 40vh;
  }

  header h2 {
    font-size: 60px;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  header hr {
    width: 200px;
    margin: 0 auto;
  }

  #open-day {
    padding-top: 5vh;
  }

  /*TOP META SHOP 装飾CSS*/
  .area1 {
    width: 90%;
    margin: 0 auto;
  }

  .area1 h2 {
    text-align: center;
    letter-spacing: 0.1rem;
    line-height: 4rem;
    background: linear-gradient(90deg, #848484 0%, #fff 0%, #848484 100%);
    background: -webkit-linear-gradient(90deg, #848484 0%, #fff 0%, #848484 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .area1-flex img {
    width: 50%;
    height: 100%;
    padding: 0 20px;
  }

  .area1-flex p {
    padding: 10px 10px;
    line-height: 3rem;
    letter-spacing: 0.1rem;
    font-weight: 900;
    overflow: hidden;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /*What we can do 装飾関係*/
  .area2 {
    width: 90%;
    margin: 0 auto;
  }

  /*加盟店募集中 装飾関係*/
  /*フッター*/
  #small-pc {
    display: none;
  }

  #small-sp {
    display: block;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝600px以下の見え方＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width:600px) {

  /*TOP META SHOP 装飾CSS*/
  #fv-logo-pc {
    display: none;
  }

  #fv-logo-sp {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .area1-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .area1-flex img {
    width: 90%;
    height: 100%;
    padding: 0 20px;
    order: 2;
  }

  .area1-flex-text {
    width: 95%;
    height: auto;
    order: 1;
  }

  .area1 h2 {
    font-size: 40px;
    text-align: center;
    letter-spacing: 0.05rem;
    line-height: 3.5rem;
    text-overflow: clip;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  element.style {}

  .area1-flex p {
    font-size: 20px;
    text-align: center;
    padding: 20px 0px;
    line-height: 40px;
    letter-spacing: 0.05rem;
    font-weight: 900;
    overflow: hidden;
    background: linear-gradient(90deg, #848484 0%, #fff 0%, #848484 100%);
    background: -webkit-linear-gradient(90deg, #848484 0%, #fff 0%, #848484 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #btn1 {
    font-size: 20px;
  }

  span {
    display: inline-block;
  }

  #welcome-bg {
    opacity: 0.3;
    position: absolute;
    top: 21%;
    left: 2%;
    width: 95%;
    height: auto;
  }

  /*What we can do 装飾関係*/
  #section-title-pc {
    display: none;
  }

  #section-title-sp {
    display: block;
    padding-bottom: 20px;
    width: 80%;
    height: auto;
    padding-top: 30px;
  }

  .can01 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }

  .can02 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .can-list img {
    height: 3.3rem;
    width: auto;
    padding: 16px 0;
  }

  .can-text {
    width: 100%;
    order: 1;
  }

  .can01-list {
    width: 90%;
    height: auto;
  }

  .can01-img {
    max-width: 100%;
    width: 90%;
    height: 100%;
    order: 2;
    padding-left: 0;
  }

  .can02-img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    order: 2;
    padding-bottom: 60px;
  }

  #whatyoucando-bg {
    opacity: 0.3;
    position: absolute;
    top: 10%;
    left: 2%;
    width: 95%;
    height: auto;
  }

  /*加盟店募集中 装飾関係*/
  section:nth-of-type(3n) p {
    text-align: center;
    font-weight: 700;
  }

  #kameiten {
    width: 70%;
    margin: 0 auto;
  }

  #kameinten-text {
    width: 90%;
    margin: 0 auto;
    display: none;
  }

  #kameinten-text-sp {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  #btn2 {
    font-size: 20px;
  }

  #recruitment-bg {
    opacity: 0.4;
    position: absolute;
    top: 3%;
    left: 2%;
    width: 95%;
    height: auto;
  }

  /*フッター*/
  footer {
    padding: 40px 20px;
    background-color: #000;
  }

  #foot-flex {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
  }

  #foot-left {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  #foot-left img {
    width: 20%;
    height: 100%;
    ;
  }

  #foot-name {
    font-size: 16px;
    padding: 0px;
  }

  .foot-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .foot-text {
    padding-left: 15px;
  }

  #foot-right {
    width: 100%;
  }

  #foot-right img {
    width: 20%;
    height: 100%;
    ;
  }

  footer p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 5px 0;
    text-align: left;
  }

  small {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
  }

  small a {
    color: #fff;
  }
}
}
