@charset "UTF-8";
@import url("global.css");
h2 {
  margin: 10px auto;
  font-size: 40px;
  line-height: 1.5;
}

/* ------------------------------
 Mainarea
------------------------------ */
#mainarea .mvl {
  position: relative;
  overflow: hidden;
}
#mainarea .mvl .movie {
  width: 100%;
}
#mainarea .mvl .movie .movie_box {
  position: relative;
  z-index: 1;
}
#mainarea .mvl .movie .movie_box::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 8px;
  background-color: #000;
  opacity: 0;
}
#mainarea .mvl .movie .movie_box video {
  margin-top: -100px;
  width: 100%;
}

/*--------- サンクス用 ---------*/
#mainarea .mvl ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100vh;
}
#mainarea .mvl ul li {
  width: 33.3%;
  text-align: center;
  position: relative;
}
#mainarea .mvl ul li.mvl1 {
  background-image: url(../img/mv01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#mainarea .mvl ul li.mvl2 {
  background-image: url(../img/mv02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#mainarea .mvl ul li.mvl3 {
  background-image: url(../img/mv03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#mainarea .mvl ul::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  transform-origin: left bottom;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotate(0deg) scale(4);
  transform-origin: left top;
  mix-blend-mode: multiply;
  opacity: .2;
}

/* ------------------------------
 Lineup
------------------------------ */
#lineup {
  margin: 0;
  padding: 90px 0 120px;
  background: #fff;
  text-align: center;
  position: relative;
}
#lineup::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
}
#lineup h2 {
  display: inline-block;
  position: relative;
  z-index: 7;
  font-weight: 600;
}
#lineup p {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 600;
}
#lineup ul {
  margin-top: 80px;
}
#lineup ul li {
  margin: 0 15px;
}
#lineup ul li figure figcaption {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 200;
  color: #000;
  margin: 15px 20px 0;
  font-size: 18px;
  line-height: 1.3;
}
#lineup .prev-arrow,
#lineup .next-arrow {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 50;
  top: 40%;
  border-top: 2px solid #FFF;
}
#lineup .prev-arrow {
  left: 30px;
  border-left: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#lineup .next-arrow {
  right: 30px;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ------------------------------
 Lead
------------------------------ */
#lead {
  background: url(../img/bg_lead.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 600px;
}
#lead .wrapper {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
}
#lead .wrapper h2 {
  font-weight: 600;
  color: #fff;
}
#lead .wrapper p {
  color: #fff;
  font-size: 20px;
}
#lead::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #000;
  transform-origin: left bottom;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotate(0deg) scale(4);
  transform-origin: left top;
  mix-blend-mode: multiply;
  opacity: .4;
}
#lead::after {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 200px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  z-index: 1;
}

/* ------------------------------
 Ch
------------------------------ */
#ch {
  text-align: center;
}
#ch .wrapper {
  position: relative;
  z-index: 100;
}
#ch .wrapper .lead_box {
  padding: 10px;
  margin: -240px 10px 100px;
  border: 4px solid #3B9C43;
  background: #fff;
}
#ch .wrapper .lead_box p {
  font-size: 16px;
  line-height: 3;
  margin: 60px auto;
}
#ch h2 {
  padding: 10px;
  margin: 60px auto;
  font-weight: 600;
}
#ch .logo_icon {
  width: 200px;
}
#ch dl {
  margin-top: 90px;
  margin-bottom: 120px;
}
#ch dl dt {
  position: relative;
  border: 2px solid #333344;
  border-radius: 30px;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 5px;
  font-size: 20px;
  font-weight: bold;
}
#ch dl dt br {
  display: none;
}
#ch dl dt::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -2px;
  right: 90px;
}
#ch dl dt::after {
  /*content: "";*/
  display: inline-block;
  position: absolute;
  bottom: -22px;
  left: 34%;
  transform: translateX(-50%) rotate(-45deg);
  border-bottom: 2px solid #333344;
  width: 40px;
  height: 40px;
  background-color: #fff;
  z-index: 1;
}
#ch dl dt .serif {
  position: absolute;
  top: -40px;
  left: 30px;
  background: #FDCE00;
  color: #fff;
  line-height: 1;
  font-size: 32px;
  border-radius: 50px 50px 0px 50px;
  padding: 13px 20px;
  z-index: 3;
}
#ch dl dt .serif span {
  display: block;
  font-size: 16px;
}
#ch dl dt p {
  z-index: 2;
  position: inherit;
  padding: 5px;
  background: #fff;
  border-radius: 30px;
}
#ch dl dt p .font_color {
  color: #389C40;
}
#ch dl dd {
  line-height: 2.5;
}
#ch dl dd .cnt_txt {
  margin: 0px auto;
}
#ch dl dd .cnt_txt h2 a {
  margin: 0 auto 30px;
  display: inline-block;
  background: #D60001;
  border-radius: 30px;
  position: relative;
  font-size: 20px;
  padding: 15px 60px;
  color: #fff;
}
#ch dl dd .cnt_txt h2 a span.bakudan_txt {
  letter-spacing: -1px;
  font-size: 16px;
  top: -42px;
  right: -95px;
  width: 156px;
  height: 150px;
  color: #000;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2 !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transform: rotate(15deg);
  line-height: 1.2;
}
#ch dl dd .cnt_txt h2 a span.bakudan_txt::before {
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1 !important;
  background-image: url(../img/bakudan.png);
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  z-index: 0;
  -webkit-animation: spin 30s linear infinite;
  animation: spin 30s linear infinite;
}
#ch dl dd .cnt_txt h2 a:hover {
  background: #FD7800;
}
#ch dl dd .cnt_txt .txtbox p {
  font-size: 18px;
  line-height: 2.5;
}
#ch dl dd.ch_bg {
  margin-top: -90px;
  margin-bottom: 60px;
}
#ch .ch_att {
  position: relative;
  border: 4px solid #333344;
  margin: 90px auto 0;
  padding: 10px;
  background: #fff;
}
#ch .ch_att::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  border-top: 4px solid #333344;
  border-right: 4px solid #333344;
  width: 40px;
  height: 40px;
  background-color: #fff;
  z-index: 1;
}
#ch .ch_att p {
  margin: 30px auto;
  line-height: 2.5;
}

/* ------------------------------
 Works_Perth
------------------------------ */
#works {
  margin: 0;
  padding: 200px 0 60px;
  margin-top: -130px;
  background: #fff;
  text-align: center;
  position: relative;
  background: #389C40;
  color: #fff;
}
#works::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
}
#works h2 {
  font-weight: 600;
  display: inline-block;
  position: relative;
  z-index: 7;
}
#works p {
  letter-spacing: 3px;
}
#works ul {
  margin-top: 60px;
}
#works ul li {
  margin: 0 15px;
}
#works ul li figure figcaption {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 200;
  color: #fff;
  margin: 15px 20px 0;
  font-size: 18px;
  line-height: 1.3;
}
#works .prev-arrow,
#works .next-arrow {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 50;
  top: 40%;
  border-top: 2px solid #FFF;
}
#works .prev-arrow {
  left: 30px;
  border-left: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#works .next-arrow {
  right: 30px;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ------------------------------
 App_area
------------------------------ */
#app_area {
  padding: 80px 0 85px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  position: relative;
  border-top: 2px solid #fff;
}
#app_area::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: .4;
}
#app_area .app_area_main {
  text-align: center;
}
#app_area .app_area_main .app_title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
#app_area .app_area_main .app_att {
  font-size: 14px;
  letter-spacing: .8px;
  margin-bottom: -10px;
}
#app_area .app_area_main .app_btn p a {
  color: #fff;
  font-size: 18px;
  border: solid #fff 1px;
  border-radius: 30px;
  padding: 8px 30px;
}
#app_area .app_area_main .app_btn p a:hover {
  background: #fff;
  color: #000;
}
#app_area .wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
}
#app_area .bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#app_area .bg img.objectfit {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

/* ------------------------------
 About
------------------------------ */
#about {
  padding-top: 90px;
  text-align: center;
  position: inherit;
}
#about h2 {
  font-weight: 600;
}
#about dl {
  margin-top: 90px;
}
#about dl dt {
  position: relative;
  border: 2px solid #333344;
  border-radius: 30px;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 5px;
  font-size: 20px;
}
#about dl dt::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -2px;
  right: 90px;
}
#about dl dt::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -22px;
  left: 34%;
  transform: translateX(-50%) rotate(-45deg);
  border-bottom: 2px solid #333344;
  width: 40px;
  height: 40px;
  background-color: #fff;
  z-index: 1;
}
#about dl dt .serif {
  position: absolute;
  top: -45px;
  left: 30px;
  background: #FDCE00;
  color: #fff;
  line-height: 1;
  font-size: 35px;
  border-radius: 50px 50px 0px 50px;
  padding: 20px 18px;
  z-index: 3;
}
#about dl dt p {
  z-index: 2;
  position: inherit;
  background: #389C40;
  border-radius: 30px;
  color: #fff;
  padding: 5px;
}
#about .benefits {
  text-align: center;
  margin-top: 90px;
  border: 4px solid #389C40;
  overflow: hidden;
}
#about .benefits .bene_tit {
  margin: 0 auto 120px;
  display: inline-block;
}
#about .benefits .bene_tit p {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  width: 1196px;
  padding-top: 30px;
  height: 20px;
  background: #389C40;
  position: relative;
  margin: 0;
}
#about .benefits .bene_tit p::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 598px solid transparent;
  border-right: 598px solid transparent;
  border-top: 120px solid #389C40;
  z-index: -1;
}
#about .benefits h2 {
  font-size: 26px;
  margin: 60px auto 60px;
}
#about .benefits p {
  font-size: 16px;
  line-height: 2.5;
}
#about .benefits .img {
  width: auto;
  margin: 0 auto;
}
#about .benefits .img ul {
  padding: 30px;
  background: #fff;
  overflow: hidden;
  margin: 30px auto 0;
}
#about .benefits .img ul li {
  width: 50%;
  margin: 0 auto;
  float: left;
}
#about .benefits .img ul li figure {
  margin: 20px;
}
#about .benefits .img ul li figure img {
  border-radius: 80px 0 80px 0;
  border: solid 2px #389C40;
}

/* ------------------------------
 Faq
------------------------------ */
#faq {
  padding: 300px 0 90px;
  margin-top: -225px;
  text-align: center;
  background: #F2F2F2;
  overflow: hidden;
}
#faq h2 {
  margin: 30px auto 60px;
  font-weight: 600;
}
#faq dl {
  width: 1100px;
  margin: 50px 5px;
  text-align: left;
  float: right;
}
#faq dl dt {
  background: #389C40;
  color: #fff;
  padding: 20px 30px;
  padding-left: 200px;
  line-height: 1;
  font-size: 20px;
  position: relative;
}
#faq dl dt span {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(-50%, -28%);
  -webkit-transform: translate(-50%, -28%);
  -ms-transform: translate(-50%, -28%);
}
#faq dl dt span img {
  width: 250px;
}
#faq dl dd {
  background: #fff;
  padding: 30px;
  padding-left: 200px;
  line-height: 1;
  display: flex;
}
#faq dl dd p {
  display: inline-block;
  line-height: 1.8;
}
#faq dl:nth-child(odd) {
  float: left;
}
#faq dl:nth-child(odd) dt {
  padding: 20px 30px;
  padding-right: 200px;
}
#faq dl:nth-child(odd) dt span {
  top: 50%;
  left: auto;
  right: -20%;
  transform: translate(-50%, -20%);
  -webkit-transform: translate(-50%, -20%);
  -ms-transform: translate(-50%, -20%);
}
#faq dl:nth-child(odd) dd {
  padding: 30px;
  padding-right: 200px;
}

/* ------------------------------
 Store
------------------------------ */
#store {
  padding: 90px 0 120px;
  text-align: center;
  position: inherit;
}
#store h2 {
  font-weight: 600;
}
#store dl {
  margin-top: 100px;
}
#store dl dt {
  position: relative;
  border: 2px solid #333344;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}
#store dl dt::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -2px;
  right: 90px;
}
#store dl dt::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -22px;
  left: 34%;
  transform: translateX(-50%) rotate(-45deg);
  border-bottom: 2px solid #333344;
  width: 40px;
  height: 40px;
  background-color: #fff;
  z-index: 1;
}
#store dl dt p {
  z-index: 2;
  position: inherit;
}
#store dl dd .fc_box {
  display: flex;
}
#store dl dd .fc_box .fc_map {
  width: 50%;
  margin: 10px 15px;
  border: solid 2px #E0E0E0;
}
#store dl dd .fc_box .fc_map iframe {
  height: 100%;
}
#store dl dd .fc_box .fc_date {
  width: 50%;
  margin: 10px 15px;
}
#store dl dd .fc_box .fc_date ul {
  /*margin-bottom: 60px;*/
}
#store dl dd .fc_box .fc_date ul li {
  text-align: left;
  border-bottom: 2px solid #E0E0E0;
  padding: 15px;
}
#store dl dd .fc_box .fc_date ul li:first-child {
  border-top: 2px solid #E0E0E0;
}
#store dl dd .fc_box .fc_date ul li span {
  font-size: 14px;
  margin-top: -5px;
  display: block;
}
#store dl dd .fc_box .fc_date ul.sns {
  margin-top: 5px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
#store dl dd .fc_box .fc_date ul.sns li {
  padding: 6px;
  border: none;
}
#store dl dd .fc_box .fc_date ul.sns li a {
  height: 50px;
  width: 50px;
  background-color: #000;
  border-radius: 100%;
  line-height: 50px;
  display: block;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
#store dl dd .fc_box .fc_date ul.sns li a:hover {
  background-color: #389C40;
  color: #fff;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
#store dl dd p a {
  text-align: center;
  background: #389C40;
  display: block;
  padding: 10px;
  margin-top: 10px;
  color: #fff;
  border-radius: 5px;
}
#store dl dd p a:hover {
  opacity: .6;
}

/* ------------------------------
 Area
------------------------------ */
.area {
  text-align: center;
  background: url(../central-tokyo/img/bg_area.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 450px;
  z-index: -1;
}
.area .wrapper {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
  padding-top: 130px;
}
.area .wrapper h2, .area .wrapper p {
  color: #fff;
}
.area::before {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 150px;
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
  z-index: 10;
}
.area::after {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 150px;
  clip-path: polygon(50% 100%, 100% 100%, 100% 0%);
  z-index: 10;
}

/* ------------------------------
 Form
------------------------------ */
#form {
  padding: 0px;
}
#form h2 {
  font-size: 40px;
}
#form h2 + p {
  margin: 20px 0 70px;
}
#form #mfp_buttons {
  text-align: right;
}
#form #mfp_buttons .policy {
  margin-bottom: 30px;
  display: inline-block;
}
#form table .app {
  margin-top: 5px;
  font-size: 14px;
}

form#mailformpro .policy label.mfp_not_checked,
form#mailformpro .policy label.mfp_checked {
  background-color: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-0 ( 1600px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1600px) {
  #mainarea .mvl .movie .movie_box video {
    margin-top: 0px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1200px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1200px) {
  /* ------------------------------
   About
  ------------------------------ */
  #about .benefits .bene_tit p {
    width: 95vw;
  }
  #about .benefits .bene_tit p::after {
    border-left: 47vw solid transparent;
    border-right: 47vw solid transparent;
  }

  /* ------------------------------
   Faq
  ------------------------------ */
  #faq dl {
    width: 90%;
  }
  #faq dl dd {
    padding-left: 200px;
  }
  #faq dl dd p br {
    display: none;
  }
  #faq dl:nth-child(odd) {
    width: 92%;
  }
  #faq dl:nth-child(odd) dd {
    padding-right: 200px;
  }

  /* ------------------------------
   Store
  ------------------------------ */
  #store dl dd .fc_box .fc_map iframe {
    height: 100%;
    width: 100%;
  }
  #store dl dd .fc_box .fc_date {
    width: 40vw;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 960px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ------------------------------
   Mainarea
  ------------------------------ */
  /* ------------------------------
   Lineup
  ------------------------------ */
  #lineup ul li figure figcaption {
    font-size: 16px;
  }
  #lineup p {
    font-size: 18px;
    letter-spacing: 2.5px;
  }

  /* ------------------------------
   Lead
  ------------------------------ */
  #lead {
    height: 500px;
  }
  #lead .wrapper {
    top: 30%;
    width: 100%;
  }
  #lead .wrapper p {
    font-size: 18px;
  }

  /* ------------------------------
   Ch
  ------------------------------ */
  #ch {
    padding: 80px 0;
  }
  #ch .wrapper .lead_box {
    margin: -270px 10px 100px;
  }
  #ch .wrapper .lead_box p {
    line-height: 2.5;
  }
  #ch h2 {
    margin: 60px auto 30px;
  }
  #ch dl dt {
    width: auto;
    margin: 0 5px;
  }
  #ch dl dd .cnt_txt h2 a {
    font-size: 18px;
  }
  #ch dl dd .cnt_txt h2 a span.bakudan_txt {
    top: -45px;
  }
  #ch dl dd.ch_bg {
    margin-top: -30px;
  }

  /* ------------------------------
   Works_Perth
  ------------------------------ */
  #works {
    margin-top: -205px;
  }
  #works ul li figure figcaption {
    font-size: 16px;
  }

  /* ------------------------------
   About
  ------------------------------ */
  #about {
    padding-top: 80px;
  }
  #about dl dt {
    width: auto;
  }
  #about .benefits {
    width: 100%;
  }
  #about .benefits .bene_tit p {
    padding-top: 15px;
  }
  #about .benefits .img ul {
    padding: 15px;
  }
  #about .benefits .img ul li figure {
    margin: 10px;
  }

  /* ------------------------------
   Faq
  ------------------------------ */
  #faq {
    margin-top: -17vw;
    padding-top: 25vw;
  }
  #faq h2 {
    margin: 30px auto;
  }
  #faq dl {
    width: auto;
    margin: 30px 0px;
  }
  #faq dl dt {
    line-height: 1.2;
    font-size: 18px;
  }
  #faq dl dt span {
    top: 10px;
    left: 15px;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  #faq dl dt span img {
    width: 32%;
  }
  #faq dl dd {
    line-height: 1;
  }
  #faq dl dd p {
    display: inline-block;
    line-height: 1.8;
  }
  #faq dl:nth-child(odd) {
    width: auto;
  }
  #faq dl:nth-child(odd) dt span {
    text-align: right;
    top: 10px;
    left: auto;
    right: 15px;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  #faq dl:nth-child(odd) dd {
    padding: 30px;
    padding-right: 200px;
  }

  /* ------------------------------
   Store
  ------------------------------ */
  #store dl dd .fc_box .fc_map iframe {
    height: 100%;
    width: 100%;
  }
  #store dl dd .fc_box .fc_date {
    width: 40vw;
    margin: 10px 0;
  }
  #store dl dd .fc_box .fc_date ul {
    margin-bottom: auto;
  }
  #store dl dd .fc_box .fc_date ul li {
    font-size: 16px;
  }
  #store dl dd p {
    line-height: 1.5;
  }
  #store dl dd p a span {
    display: block;
  }

  /* ------------------------------
   Area
  ------------------------------ */
  .area {
    height: 400px;
  }
  .area .wrapper {
    position: static;
    left: auto;
    top: auto;
    transform: translate(0%, 0%);
    padding-top: 10vw;
  }

  /* ------------------------------
   Form
  ------------------------------ */
  #form h2 {
    font-size: 36px;
  }
  #form h2 + p {
    margin: 20px 0 50px;
    font-size: 20px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 645px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  h2 {
    font-size: 24px;
    letter-spacing: 0;
  }

  /* ------------------------------
   Mainarea
  ------------------------------ */
  /* ------------------------------
   Lineup
  ------------------------------ */
  #lineup {
    margin: 0px;
    padding: 30px 0 60px;
  }
  #lineup h2 {
    margin-bottom: 25px;
  }
  #lineup ul {
    margin-top: 60px;
  }
  #lineup ul li {
    margin: 0 10px;
  }
  #lineup ul li figure figcaption {
    margin: 10px 5px 0;
    font-size: 15px;
    letter-spacing: 0;
  }
  #lineup .prev-arrow,
  #lineup .next-arrow {
    width: 20px;
    height: 20px;
    top: 38%;
  }
  #lineup .prev-arrow {
    left: 10px;
  }
  #lineup .next-arrow {
    right: 10px;
  }

  .link_btn span {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .link_btn a {
    font-size: 16px;
    padding: 4px 40px;
  }

  /* ------------------------------
   Lead
  ------------------------------ */
  #lead {
    height: 360px;
  }
  #lead .wrapper p {
    font-size: 16px;
  }
  #lead::after {
    height: 100px;
  }

  /* ------------------------------
   Ch
  ------------------------------ */
  #ch {
    padding: 50px 0;
  }
  #ch .wrapper .lead_box {
    margin: -200px 0px 60px;
    padding: 0;
  }
  #ch .wrapper .lead_box p {
    line-height: 2;
    margin: 30px 20px;
    font-size: 14px;
  }
  #ch .logo_icon {
    width: 130px;
  }
  #ch h2 {
    margin: 60px auto 0;
  }
  #ch dl {
    margin: 60px auto;
  }
  #ch dl dt {
    font-size: 14px;
    border-radius: 50px;
    margin: 0;
  }
  #ch dl dt br {
    display: block;
  }
  #ch dl dt::before {
    width: 35px;
    right: 40px;
  }
  #ch dl dt::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -17px;
    left: 32%;
    transform: translateX(-50%) rotate(-45deg);
    border-bottom: 2px solid #333344;
    width: 30px;
    height: 30px;
    background-color: #fff;
    z-index: 1;
  }
  #ch dl dt .serif {
    top: 10px;
    left: 11px;
    font-size: 24px;
    padding: 5px 10px;
    border-radius: 50px;
  }
  #ch dl dt .serif span {
    font-size: 14px;
  }
  #ch dl dt p {
    font-size: 16px;
    line-height: 1.5;
  }
  #ch dl dd {
    line-height: 2;
    font-size: 14px;
  }
  #ch dl dd .cnt_txt h2 a {
    display: block;
    font-size: 16px;
    padding: 10px;
    border-radius: 50px;
  }
  #ch dl dd .cnt_txt h2 a span.bakudan_txt {
    font-size: 14px;
    top: -30px;
    right: -35px;
    width: 125px;
    height: 125px;
  }
  #ch dl dd .cnt_txt .txtbox p {
    font-size: 14px;
    line-height: 2;
  }
  #ch dl dd .cnt_txt .txtbox p br {
    display: none;
  }
  #ch dl dd.ch_bg {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  #ch .ch_att {
    margin: 60px auto 0;
    padding: 5px;
  }
  #ch .ch_att::before {
    top: -20px;
    width: 30px;
    height: 30px;
  }
  #ch .ch_att p {
    margin: 30px 10px;
    line-height: 2;
    font-size: 14px;
  }

  /* ------------------------------
   Works
  ------------------------------ */
  #works {
    margin: 0px;
    padding: 30px 0 30px;
  }
  #works h2 {
    margin-bottom: 25px;
  }
  #works ul li {
    margin: 0 10px;
  }
  #works ul li figure figcaption {
    margin: 10px 5px 0;
    font-size: 15px;
    letter-spacing: 0;
  }
  #works .prev-arrow,
  #works .next-arrow {
    width: 20px;
    height: 20px;
    top: 38%;
  }
  #works .prev-arrow {
    left: 10px;
  }
  #works .next-arrow {
    right: 10px;
  }

  /* ------------------------------
   App_area
  ------------------------------ */
  #app_area {
    padding: 30px 0 40px;
  }
  #app_area .app_area_main .app_att {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 0px;
    line-height: 1.5;
  }
  #app_area .app_area_main .app_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #app_area .app_area_main .app_btn p a {
    font-size: 16px;
    padding: 4px 40px;
  }

  /* ------------------------------
   About
  ------------------------------ */
  #about {
    padding: 60px 0 10px;
  }
  #about dl {
    margin: 60px auto;
  }
  #about dl dt {
    border-radius: 50px;
    margin-bottom: 35px;
  }
  #about dl dt::before {
    width: 35px;
    right: 40px;
  }
  #about dl dt::after {
    bottom: -17px;
    left: 32%;
    width: 30px;
    height: 30px;
  }
  #about dl dt .serif {
    top: 13px;
    left: 11px;
    font-size: 24px;
    padding: 9px 7px;
    border-radius: 50px;
  }
  #about dl dt .serif span {
    font-size: 14px;
  }
  #about dl dt p {
    font-size: 16px;
    line-height: 1.5;
  }
  #about dl dd {
    line-height: 2;
    font-size: 14px;
  }
  #about .benefits {
    margin-top: 60px;
  }
  #about .benefits p {
    line-height: 1.8;
    margin: 5px;
    font-size: 14px;
  }
  #about .benefits .bene_tit {
    margin: 0 auto 65px;
  }
  #about .benefits .bene_tit p {
    font-size: 30px;
    padding-top: 10px;
    height: 30px;
    width: 95vw;
  }
  #about .benefits .bene_tit p::after {
    bottom: -65px;
    border-top: 65px solid #389C40;
    border-left: 47vw solid transparent;
    border-right: 47vw solid transparent;
  }
  #about .benefits h2 {
    font-size: 20px;
    margin: 30px auto;
  }
  #about .benefits .img ul {
    padding: 5px;
  }
  #about .benefits .img ul li figure img {
    border-radius: 30px 0 30px 0;
  }

  /* ------------------------------
   Faq
  ------------------------------ */
  #faq {
    margin-top: 0;
    padding: 60px 0;
  }
  #faq h2 {
    margin: 0 auto 30px;
  }
  #faq dl {
    margin: 15px auto;
  }
  #faq dl dt {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    overflow: hidden;
    line-height: 1.5;
  }
  #faq dl dt span {
    position: static;
    top: 0;
    left: 0;
    float: left;
    padding-right: 10px;
  }
  #faq dl dt span img {
    width: 75px;
  }
  #faq dl dd {
    padding: 15px;
  }
  #faq dl dd p {
    display: inline-block;
    line-height: 1.8;
    font-size: 14px;
  }
  #faq dl:nth-child(odd) dt {
    padding: 10px;
    line-height: 1.5;
  }
  #faq dl:nth-child(odd) dt span {
    text-align: left;
    position: static;
    top: 0;
    right: auto;
  }
  #faq dl:nth-child(odd) dd {
    padding: 15px;
  }

  /* ------------------------------
   Store
  ------------------------------ */
  #store {
    padding: 60px 0;
  }
  #store dl {
    margin-top: 60px;
  }
  #store dl dt {
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 5px;
    font-size: 16px;
  }
  #store dl dt::before {
    width: 40px;
    right: 50px;
  }
  #store dl dt::after {
    bottom: -2px;
    left: 50px;
    width: 40px;
    height: 2px;
    background-color: #fff;
    transform: translateX(0) rotate(0deg);
    border-bottom: none;
  }
  #store dl dt p {
    font-size: 16px;
    line-height: 1.5;
  }
  #store dl dd .fc_box {
    display: block;
  }
  #store dl dd .fc_box .fc_map {
    width: auto;
    height: 28vh;
    margin: 10px 0;
  }
  #store dl dd .fc_box .fc_date {
    width: auto;
    margin: 10px 5px;
  }
  #store dl dd .fc_box .fc_date ul li {
    padding: 5px 10px;
    font-size: 14px;
  }
  #store dl dd .fc_box .fc_date ul li span {
    font-size: 12px;
    margin-top: -2px;
  }
  #store dl dd .fc_box .fc_date ul.sns {
    justify-content: center;
  }
  #store dl dd .fc_box .fc_date ul.sns li {
    padding: 5px;
  }
  #store dl dd .fc_box .fc_date ul.sns li a {
    width: 45px;
    height: 45px;
    line-height: 44px;
    font-size: 24px;
  }
  #store dl dd p a {
    padding: 10px 5px;
    font-size: 16px;
  }
  #store dl dd p a span {
    display: inline-block;
  }

  /* ------------------------------
   Area
  ------------------------------ */
  .area {
    height: 300px;
    margin-top: 0px;
  }
  .area .wrapper p {
    font-size: 13px;
    line-height: 1.5;
  }
  .area::before {
    height: 100px;
  }
  .area::after {
    height: 100px;
  }

  /* ------------------------------
   Form
  ------------------------------ */
  #form h2 {
    line-height: 1.3;
    font-size: 24px;
  }
  #form h2 span {
    display: none;
  }
  #form h2 + p {
    margin: 20px 0 40px;
    line-height: 1.6;
    font-size: 14px;
  }
  #form table .app {
    margin-top: 3px;
    font-size: 12px;
  }
  #form #mfp_buttons {
    text-align: center;
  }
  #form #mfp_buttons .policy {
    margin-bottom: 15px;
  }
  #form #mfp_buttons p {
    text-align: center;
  }
  #form #mfp_buttons button#btn_confirm {
    width: 80%;
    height: 50px;
    line-height: 50px;
  }
}
