@charset "UTF-8";
/*-----------------
 * nico_captured
 -----------------*/
/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * https://cssreset.com/
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  color: #000;
  background: #FFF;
}

/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}

.mr-2 {
  margin-right: 6px;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.relative {
  position: relative;
}

#totop {
  display: none;
}

.totop {
  width: 30px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 100;
}
.totop:hover {
  opacity: 0.6;
}
.totop img {
  width: 100%;
}

img {
  vertical-align: bottom;
}

.container-full {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
  }
}
@media screen and (min-width: 1330px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 740px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 540px;
    margin: 0 2%;
  }
}
@media screen and (max-width: 320px) {
  .container {
    max-width: 320px;
    margin: 0 2%;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.col-6 {
  width: 50%;
}

.img-100 img {
  width: 100%;
}

.col-4 {
  width: 25%;
  padding: 0 1%;
  box-sizing: border-box;
}

.tex-col-6 {
  width: 50%;
  position: relative;
}

.img-col-6 {
  width: 50%;
}

.d-flex {
  display: flex;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.align-items-center {
  align-items: center;
}

@media screen and (max-width: 576px) {
  .col-6 {
    width: 100%;
  }

  .col-4 {
    width: 50%;
    padding: 0 2%;
  }
}
/*-----------------
 * レイアウト
 -----------------*/
header {
  padding-top: 20px;
}

.header_logo {
  width: 320px;
}
.header_logo img {
  width: 100%;
}

.page_heading {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 0.875rem;
}

.gnav {
  display: flex;
}
.gnav a {
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-weight: 400;
  padding: 10px 20px;
  font-size: 21px;
  font-size: 1.3125rem;
}
.gnav a span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
.gnav a:hover {
  background: #e1ebf1;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.billboard {
  position: fixed;
  left: 0;
  top: 200px;
  height: 580px;
  width: 100%;
  padding-bottom: 100px;
}

.billboard_heading {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-weight: 100;
  letter-spacing: 2px;
  padding-top: 60px;
  line-height: 2.2;
}

.select {
  position: relative;
  margin-top: 580px;
  z-index: 10;
  background: #fff;
  padding-top: 40px;
  padding-bottom: 100px;
}

.select_heading_wrap {
  padding-left: 340px;
}

.section_heading {
  font-size: 150px;
  font-size: 9.375rem;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 6px;
  line-height: 1.0;
  margin: 0;
  text-align: center;
}

.select_back {
  height: 280px;
  background: #e1ebf1;
  width: 100%;
  position: absolute;
  top: 102px;
  left: 0;
  z-index: -10;
}

.select_border {
  background: url("../img/lp/border01.png");
  background-size: cover;
  width: 356px;
  height: 342px;
  position: absolute;
  left: 0;
  top: -170px;
}

.text-right {
  text-align: right;
}

.select_para1 {
  font-size: 51px;
  font-size: 3.1875rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 1px;
  padding-left: 270px;
}
.select_para1 span {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-left: 20px;
  font-weight: bold;
}

.select_para2 {
  line-height: 2.6;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 2px;
  width: 314px;
  position: relative;
}
.select_para2:after {
  content: "";
  width: 1px;
  height: 120px;
  position: absolute;
  top: 26px;
  right: 0;
  background: #000;
}

.thumb-item div {
  background: #EEE;
  width: 400px;
  height: 300px;
}

.thumb-item-nav_wrap {
  padding: 20px;
}

.slider-wrap {
  display: flex;
  justify-content: space-between;
}

#slider {
  width: 60%;
}

.slick-list {
  margin-top: -195px !important;
}

.slide-item img {
  width: 100%;
}

#thumbnail-list {
  width: 43%;
  display: block;
  padding-top: 60px;
  margin-right: -3%;
  position: relative;
  z-index: 10;
}

.thumbnail-item {
  flex: 0 1 30%;
  margin-bottom: 10px;
  box-sizing: border-box;
  position: relative;
  color: #595959;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  cursor: pointer;
}
.thumbnail-item:hover {
  color: #ccc;
  transition: all 0.4s;
}
.thumbnail-item:before {
  content: '';
  position: absolute;
  right: 120px;
  top: 14px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background: #fff;
  border: solid #595959 1px;
  transition: all 0.4s;
}
.thumbnail-item:after {
  content: '';
  position: absolute;
  display: block;
  width: 110px;
  height: 1px;
  background: #ccc;
  top: 20px;
  right: 0;
  transition: all 0.4s;
}
.thumbnail-item.thumbnail-current {
  transition: all 0.4s;
  color: #000;
}
.thumbnail-item.thumbnail-current:before {
  content: '';
  position: absolute;
  right: 140px;
  top: 14px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background: #000;
  border: solid #000 1px;
  transition: all 0.4s;
}
.thumbnail-item.thumbnail-current:after {
  content: '';
  position: absolute;
  display: block;
  width: 130px;
  height: 1px;
  background: #000;
  top: 20px;
  right: 0;
  transition: all 0.4s;
}
.thumbnail-item span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}

.slide-item {
  transform-origin: center top !important;
  transform: translate3d(0, 0, -300px) rotateZ(-3deg) rotateY(30deg) rotateX(-15deg) !important;
  transition-property: transform, opacity !important;
  transition-duration: 3s, .3s !important;
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06), ease !important;
  opacity: 0 !important;
}

.slide-item.slick-current {
  transform: translate3d(0, 0, 0) rotateZ(0deg) rotateY(0deg) rotateX(0deg) !important;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, opacity 0.6s ease 0.2s !important;
  opacity: 1 !important;
}

.slide-item_inner {
  width: 85%;
  margin-left: 15%;
  color: #fff;
  height: 350px;
  padding: 40px 40px 0;
}

.inner01 {
  background: #b1ab97;
}

.inner02 {
  background: #6e502b;
}

.inner03 {
  background: #b6b2a9;
}

.inner04 {
  background: #caab89;
}

.inner_heading {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.inner_para01 {
  border-top: solid #fff 1px;
  text-align: right;
  width: 80%;
  margin-left: 10%;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
}

.inner_para02 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.match-prev {
  display: inline-block;
  position: absolute;
  z-index: 100;
  top: -262px;
  right: 30px;
  font-size: 24px;
  font-size: 1.5rem;
}
.match-prev:after {
  content: "/";
  margin-left: 20px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #999999;
  position: relative;
  top: -3px;
}

.match-next {
  display: inline-block;
  position: absolute;
  z-index: 100;
  top: -262px;
  right: 0;
  font-size: 24px;
  font-size: 1.5rem;
}

.match-prev, .match-next {
  cursor: pointer;
}
.match-prev:hover, .match-next:hover {
  color: #999999;
  transition: all 0.4s;
}

.plan {
  height: 940px;
  margin-bottom: 80px;
}

.plan_heading_wrap {
  width: 50%;
  position: relative;
  z-index: 100;
}

.plan_para {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  position: absolute;
  top: 54px;
  left: 52%;
  letter-spacing: 3px;
}

.plan_img01 {
  position: absolute;
  top: 68px;
  left: 0;
  z-index: 200;
}

.plan_img02 {
  position: absolute;
  top: 200px;
  right: 18px;
}

.plan_img03 {
  position: absolute;
  top: 540px;
  right: 18px;
}

.plan_desc {
  position: absolute;
  top: 560px;
  left: 0;
  width: 400px;
}

.plan_desc01 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

.plan_desc02 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  padding: 0 40px;
  width: 360px;
  text-align: center;
  margin: 6px 0;
}
.plan_desc02 span {
  font-size: 24px;
  font-size: 1.5rem;
}
.plan_desc02 span:before {
  content: "";
  height: 1px;
  width: 105px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.plan_desc02 span:after {
  content: "";
  height: 1px;
  width: 105px;
  background: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}

.plan_desc02_1 {
  text-align: right;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

.plan_desc_heading {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.plan_desc03 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.plan_back {
  background: #e1ebf1;
  background: linear-gradient(55deg, transparent 200px, #e1ebf1 0) bottom left;
  background-repeat: no-repeat;
  height: 900px;
  position: absolute;
  top: 40px;
  width: 75%;
  right: 0;
  z-index: -10;
}

.plan1f {
  opacity: 0;
  margin-top: 40px;
  transition: all 1.0s;
}

.plan2f {
  opacity: 0;
  margin-top: 40px;
  transition: all 1.0s;
}

.movie {
  margin-bottom: 140px;
}

.movie_box {
  max-width: 800px;
  height: auto;
  margin: -60px auto 0;
  background: #fff;
  position: relative;
  z-index: 10;
}

.concept {
  background: #e1ebf1;
  width: 100%;
  margin-bottom: 80px;
}

.concept_heading_wrap {
  padding-left: 160px;
  position: relative;
  top: -64px;
  z-index: 10;
}

.concept_row {
  margin-top: -150px;
}

.concept_row_img {
  opacity: 0;
  transition: all 4.0s;
}

.concept_para1 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: right;
  margin-top: 72px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.concept_heading {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding-left: 100px;
  margin-bottom: 40px;
}

.concept_para3 {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 60px;
  padding-left: 180px;
  line-height: 2.2;
}

.concept_border {
  background: url("../img/lp/border02.png");
  width: 294px;
  height: 231px;
  position: absolute;
  left: 60px;
  bottom: 20px;
}

.photo {
  margin-bottom: 100px;
}

.photo_heading {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.photo_heading3 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  pointer-events: none;
  position: absolute;
  top: 1140px;
  right: 0;
  z-index: 100;
}

.photo_heading2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 40px;
  padding-left: 150px;
  padding-top: 20px;
}

.photo_wrap1 {
  display: flex;
  justify-content: space-between;
  padding-left: 32px;
}
.photo_wrap1 img {
  transition: all 1.2s;
  transform: rotateY(0deg);
  opacity: 0;
}

.photo_wrap1_inner01 {
  width: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.photo_wrap1_inner02 {
  width: 488px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mr-5 {
  margin-right: 10px;
}

.mb-5 {
  margin-bottom: 10px;
}

.photo_wrap2 {
  display: flex;
  justify-content: space-between;
  padding-right: 32px;
}
.photo_wrap2 img {
  transition: all 1.2s;
  transform: rotateY(0deg);
  opacity: 0;
}

.photo_wrap1_inner04 {
  width: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.photo_wrap1_inner03 {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.photo_wrap1_inner03_in {
  width: 300px;
  margin-right: 10px;
}

.photo_wrap3 {
  display: flex;
  justify-content: space-between;
  padding-right: 32px;
}
.photo_wrap3 img {
  transition: all 1.2s;
  transform: rotateY(0deg);
  opacity: 0;
}

.photo_wrap1_inner04 {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.photo_wrap1_inner04_in {
  width: 457px;
}

.rotate_in {
  opacity: 1.0 !important;
  transform: rotateY(180deg) !important;
  -webkit-transform: rotateY(180deg) !important;
}

.flow {
  margin-bottom: 100px;
}

.row-flow {
  justify-content: space-between;
}

.col-flow {
  border: solid #000 1px;
  width: 22%;
  height: 250px;
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transition: all 1.2s;
}

.col-flow2 {
  width: 50%;
  height: 250px;
  position: relative;
  margin-bottom: 20px;
}

.col-flow_num_wrap {
  border: solid 1px #000;
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
}

.col-flow_num {
  background: #000;
  border: solid 2px #fff;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  width: 36px;
}

.row-flow_heading {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 400;
}

.row-flow_heading2 {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  margin-top: 30px;
  margin-bottom: 5px;
  font-weight: 400;
}

.row-flow_heading3 {
  font-size: 36px;
  font-size: 2.25rem;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 500;
}

.row-flow_para {
  font-size: 16px;
  font-size: 1rem;
  padding: 0 12px;
  line-height: 2.0;
}

.flow_h {
  background: #e1ebf1;
}

.flow_k {
  background: #f2f2f2;
}

.flow_inner {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 680px;
}

.flow_heading2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

.flow_para {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0;
}

.flow_fade {
  opacity: 1;
}

.s_right:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.s_left:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 15px 7.5px 0;
  border-color: transparent #000000 transparent transparent;
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.s_down:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 7.5px 0 7.5px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0px;
  bottom: -24px;
  margin: auto;
}

.s_up:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 15px 7.5px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  left: 0;
  right: 0px;
  top: -24px;
  margin: auto;
}

.system {
  margin-bottom: 100px;
}

.system_heading {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
}

.system_para {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 60px;
}

.row-system {
  justify-content: space-between;
}

.col-system {
  width: 305px;
  height: 300px;
  background: url("../img/lp/sys_bg.png");
  background-size: cover;
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transition: all 2.2s;
}

.system_heading3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.8;
}

.system_heading2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.8;
}

.system_para2 {
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  top: 130px;
  padding: 0 20px;
}

.system_bl {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 6px 0;
  width: 80%;
}

.mr-86 {
  margin-right: 86px;
}

.system_fade {
  opacity: 1;
}

.members {
  margin-bottom: 100px;
  height: 1000px;
}

.members_heading_wrap {
  margin-left: -120px;
}

.members_para {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}

.members_heading2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  pointer-events: none;
  font-size: 48px;
  font-size: 3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 4px;
  padding: 40px 0 0 56px;
}

.members_map {
  background: url("../img/lp/map.png") no-repeat;
  background-size: contain;
  background-position: center;
  width: 80%;
  height: 660px;
  position: absolute;
  right: 0;
  top: 220px;
}

.area_box {
  width: 180px;
  position: relative;
  opacity: 0;
  transition: all 0.8s;
  margin-top: 20px;
}

.map_fade {
  opacity: 1;
  margin-top: 0;
}

.area_hk {
  position: absolute;
  top: 150px;
  right: 0;
}

.area_kt {
  position: absolute;
  top: 320px;
  right: 20px;
}

.area_cb {
  position: absolute;
  top: 180px;
  right: 367px;
}

.area_kk {
  position: absolute;
  top: 514px;
  right: 172px;
}

.area_cg {
  position: absolute;
  top: 338px;
  left: 142px;
}

.area_sk {
  position: absolute;
  top: 590px;
  right: 392px;
}

.area_ko {
  position: absolute;
  top: 516px;
  left: 40px;
}

.area_box_list {
  margin-bottom: 6px;
}
.area_box_list li {
  float: left;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  width: 33.333%;
  text-align: center;
  margin-bottom: 8px;
}
.area_box_list li a:hover {
  color: #666;
}
.area_box_list:after {
  content: '';
  clear: bottom;
}

.area_box_heading_wrap {
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.area_box_heading_wrap:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 14px;
  left: 0;
  z-index: -10;
}
.area_box_heading_wrap h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  padding: 0 15px;
}

.toarea {
  width: 100%;
  display: block;
  padding: 4px 0 10px;
  color: #FFF;
  background: url(../img/common/arrow.svg), #7f8081;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  text-align: center;
  background-position: 90% 14px;
  background-repeat: no-repeat;
  background-size: 90px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.toarea:hover {
  background: url(../img/common/arrow.svg), #000;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  text-align: center;
  background-position: 90% 14px;
  background-repeat: no-repeat;
  background-size: 90px;
}

.toallarea {
  display: block;
  width: 220px;
  height: 90px;
  padding-top: 12px;
  background: url(../img/common/arrow.svg), #000;
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: 90px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  font-weight: 500;
}
.toallarea:hover {
  background: url(../img/common/arrow.svg), #666;
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: 90px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .toarea {
    width: 100%;
    display: block;
    padding: 4px 0 10px;
    color: #FFF;
    background: url(../img/common/arrow.svg), #7f8081;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    text-align: center;
    background-position: 90% 20px;
    background-repeat: no-repeat;
    background-size: 90px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
  }
  .toarea:hover {
    background: url(../img/common/arrow.svg), #000;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    text-align: center;
    background-position: 90% 20px;
    background-repeat: no-repeat;
    background-size: 90px;
  }

  .toallarea {
    display: block;
    width: 220px;
    height: 90px;
    padding-top: 12px;
    background: url(../img/common/arrow.svg), #000;
    background-position: center 64px;
    background-repeat: no-repeat;
    background-size: 90px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.4s;
    font-weight: 500;
  }
  .toallarea:hover {
    background: url(../img/common/arrow.svg), #666;
    background-position: center 64px;
    background-repeat: no-repeat;
    background-size: 90px;
  }
}
.footer {
  background: #e1ebf1;
  width: 100%;
  padding: 40px 0 20px;
}

.match_footer {
  width: 330px;
  display: block;
  margin: 0 auto 40px;
}

.footer_com {
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.footer_copy {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 100;
}

.youtube {
  width: 800px;
  height: 460px;
}

.wrap__404 {
  padding: 40px;
  border: solid 4px #eee;
  background: #fff;
  max-width: 80%;
  margin: 100px auto;
  text-align: center;
}
.wrap__404 p {
  margin-bottom: 20px;
}

.btn404 {
  background: #607D8B;
  padding: 20px;
  max-width: 320px;
  margin: 40px auto;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: block;
}
.btn404:hover {
  background: #90A4AE;
}

#sb_instagram {
  opacity: 0;
  transition: all 1.2s;
}

.insta {
  margin: 80px 0;
}

.insta_heading {
  text-align: right;
}

.members_arch {
  padding-top: 100px;
}

.toallarea-arc {
  display: inline-block;
  padding: 4px 20px 15px;
  background: url(../img/common/arrow.svg), #000;
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: 90px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: -100px;
  right: 0;
  transition: all 0.4s;
  font-weight: 500;
}
.toallarea-arc:hover {
  background: url(../img/common/arrow.svg), #000;
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: 90px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .toallarea-arc {
    display: inline-block;
    padding: 12px 45px 28px;
    background: url(../img/common/arrow.svg), #000;
    background-position: 91% 35px;
    background-repeat: no-repeat;
    background-size: 90px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: -100px;
    right: 0;
    transition: all 0.4s;
    font-weight: 500;
  }
  .toallarea-arc:hover {
    background: url(../img/common/arrow.svg), #333;
    background-position: 91% 35px;
    background-repeat: no-repeat;
    background-size: 90px;
  }
}
.members_list {
  background: #e1ebf1;
  padding: 60px 0;
  margin-bottom: 60px;
}

.area_list_heading_wrap {
  position: relative;
  margin-bottom: 20px;
}
.area_list_heading_wrap:after {
  content: '';
  width: 50%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 26px;
  left: 0;
}

.area_list_heading {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
  background: #e1ebf1;
  display: inline-block;
  position: relative;
  z-index: 10;
  padding-right: 10px;
}

.area_list {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: dotted 1px #bababa;
  position: relative;
}
.area_list p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.area_list_heading3 {
  font-size: 18px;
  font-size: 1.125rem;
  background: #fff;
  padding: 10px 0;
  width: 30%;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.area_list_tel span {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 6px;
}

.area_toform {
  width: 273px;
  position: absolute;
  top: 0;
  right: 0;
}
.area_toform a:hover {
  opacity: 0.6;
}
.area_toform img {
  margin-bottom: 10px;
  width: 100%;
}

.not_area {
  margin-bottom: 20px;
}

.not_area_link {
  width: 40%;
  display: block;
  padding: 20px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  text-align: center;
}
.not_area_link:hover {
  background: #666;
}

.request_para {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 0 0;
  letter-spacing: 4px;
}

@media screen and (max-width: 576px) {
  .area_toform {
    width: 60%;
    position: inherit;
    top: inherit;
    right: inherit;
    margin: auto;
  }
  .area_toform a:hover {
    opacity: 0.6;
  }
  .area_toform img {
    margin-bottom: 10px;
    width: 100%;
  }

  .members {
    margin-bottom: 40px;
  }

  .toallarea-arc {
    position: inherit;
    margin: auto;
    width: 90%;
    display: block;
    bottom: inherit;
  }

  .area_toform_sp {
    display: flex;
    font-size: 16px;
    font-size: 1rem;
    justify-content: space-between;
  }
  .area_toform_sp a {
    width: 48%;
    font-weight: bold;
    display: block;
    color: #fff;
    border: solid #666 2px;
    padding: 4%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-align: center;
  }
  .area_toform_sp a:first-child {
    background: #9a9a9a;
  }
  .area_toform_sp a:last-child {
    background: #a5cfe5;
  }
  .area_toform_sp a span {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
  }

  .area_list_heading {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .area_list_heading_wrap {
    position: relative;
    margin-bottom: 20px;
  }
  .area_list_heading_wrap:after {
    content: '';
    width: 70%;
    height: 1%;
    background: #000;
    position: absolute;
    top: 20px;
    left: 0;
  }

  .area_list {
    padding: 0 0 40px;
    border-bottom: dotted 1px #bababa;
    position: relative;
    width: 90%;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 320px) {
  .area_toform_sp {
    display: flex;
    font-size: 16px;
    font-size: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .area_toform_sp a {
    width: 100%;
    font-weight: bold;
    display: block;
    color: #fff;
    border: solid #666 2px;
    padding: 4%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
  }
  .area_toform_sp a:first-child {
    background: #9a9a9a;
  }
  .area_toform_sp a:last-child {
    background: #a5cfe5;
  }
  .area_toform_sp a span {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
  }
}
.form {
  font-family: "Noto Sans JP", sans-serif;
  padding: 60px 0;
}
.form input {
  width: 100%;
  padding: 10px;
  border: solid #7f8081 1px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  margin: 5px 0;
}
.form input[type="submit"] {
  background: url("../img/common/form_arrow.svg"), #000;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 78% 22px;
  color: #fff;
  width: 420px;
  display: block;
  margin: 40px auto;
  padding: 20px 0;
  transition: all 0.4s;
  cursor: pointer;
}
.form input[type="submit"]:hover {
  background: url("../img/common/form_arrow.svg"), #666;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 78% 22px;
  color: #fff;
}
.form select {
  width: 100%;
}
.form textarea {
  width: 100%;
  padding: 10px;
  border: solid #7f8081 1px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  margin: 0 0 0;
}

.form_head {
  font-weight: bold;
  width: 20%;
}

.form_req {
  width: 5%;
}
.form_req p {
  background: #000;
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
}

.form_box1 {
  width: 30%;
}

.form_box2 {
  width: 35%;
  padding-left: 4%;
}

.form_box3 {
  width: 65%;
}

.form_box4 {
  width: 5%;
  text-align: center;
}

.form_box5 {
  width: 35%;
}

.form_box6 {
  width: 30%;
  padding-left: 20px;
}

.form_box7 {
  width: 25%;
}

.form_b {
  padding: 20px 0;
  border-top: solid #7f8081 1px;
}

.form_b2 {
  padding: 20px 0 0;
  border-top: solid #7f8081 1px;
}

.form_b3 {
  padding-bottom: 20px;
}

.form_alin {
  align-items: center;
}

.form_alin_top {
  align-items: start;
}

.form_box_date1 {
  width: 15%;
  text-align: center;
}

.form_box_date2 {
  width: 20%;
}

.form_box_date3 {
  width: 10%;
  text-align: center;
}

.form_box_date4 {
  width: 15%;
}

@media screen and (max-width: 576px) {
  .form_head {
    font-weight: bold;
    width: 40%;
  }

  .form select {
    width: auto;
  }

  .form_req {
    width: 60%;
  }

  .form_box1, .form_box2 {
    width: 48%;
  }

  .form_box2 {
    width: 35%;
    padding-left: 0;
  }

  .form_box_date1 {
    width: 40%;
    text-align: center;
  }

  .form_box7 {
    width: 0%;
  }

  .form_box3 {
    width: 100%;
  }

  .form_box_date2 {
    width: 30%;
  }

  .form_box_date3 {
    width: 10%;
  }

  .form_box_date4 {
    width: 20%;
  }

  .form input[type="submit"] {
    width: 90%;
  }
}
.fade-up {
  transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
}

.delay_scroll, .delay_scroll2, .delay_scroll3, .delay_scroll4, .delay_scroll7, .delay_scroll8 {
  transition: all 6.0s;
  text-align: center;
}
.delay_scroll span, .delay_scroll2 span, .delay_scroll3 span, .delay_scroll4 span, .delay_scroll7 span, .delay_scroll8 span {
  margin: 0 -12px;
  transition: all 4.0s;
}

.delay_scroll5, .delay_scroll6 {
  transition: all 6.0s;
  text-align: center;
}
.delay_scroll5 span, .delay_scroll6 span {
  margin: -12px 0;
  transition: all 4.0s;
}

@media screen and (max-width: 576px) {
  .delay_scroll, .delay_scroll2, .delay_scroll3, .delay_scroll4, .delay_scroll7, .delay_scroll8 {
    transition: all 6.0s;
    text-align: center;
  }
  .delay_scroll span, .delay_scroll2 span, .delay_scroll3 span, .delay_scroll4 span, .delay_scroll7 span, .delay_scroll8 span {
    margin: 0;
    transition: all 4.0s;
  }

  .delay_scroll5, .delay_scroll6 {
    transition: all 6.0s;
    text-align: center;
  }
  .delay_scroll5 span, .delay_scroll6 span {
    margin: 0;
    transition: all 4.0s;
  }
}
body {
  font-size: 16px;
  font-size: 1rem;
}

.pc-hide {
  display: none;
}

.sp-hide {
  display: block;
}

.sr_tell_sp {
  display: none;
}

.photo_sp_wrap1, .photo_sp_wrap2 {
  display: none;
}

.nav_active {
  display: none;
}

.nav_close {
  display: none;
}

@media screen and (max-width: 1024px) {
  .members_heading_wrap {
    margin-left: 0;
  }

  .photo_wrap1, .photo_wrap2, .photo_wrap3 {
    display: none;
  }

  .photo_sp_wrap1, .photo_sp_wrap2 {
    display: block;
    transition: all 1.2s;
    transform: rotateY(0deg);
    opacity: 0;
    width: 100%;
  }
  .photo_sp_wrap1 img, .photo_sp_wrap2 img {
    width: 100%;
  }

  .members_heading2 {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    pointer-events: none;
    font-size: 48px;
    font-size: 3rem;
    letter-spacing: 4px;
    padding: 40px 0 0 56px;
  }

  .area_hk, .area_kt, .area_cb, .area_kk, .area_sk, .area_ko {
    position: relative;
    top: inherit;
    right: inherit;
  }

  .area_cg, .area_ko {
    position: relative;
    top: inherit;
    left: inherit;
  }

  .members_map {
    background: none;
    width: 100%;
    height: auto;
    position: inherit;
    right: inherit;
    top: inherit;
    margin-bottom: 40px;
  }
  .members_map:after {
    content: "";
    clear: both;
    display: block;
  }

  .area_box {
    width: 25%;
    padding: 2%;
    position: relative;
    transition: all 0.8s;
    margin-top: 20px;
    float: left;
  }

  .area_box_heading_wrap {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
  }
  .area_box_heading_wrap:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    top: 14px;
    left: 0;
    z-index: -10;
  }
  .area_box_heading_wrap h3 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
    display: inline-block;
    background: #fff;
    padding: 0 15px;
  }

  .area_box_list {
    margin-bottom: 6px;
    height: 100px;
  }

  .toallarea {
    display: block;
    width: 300px;
    height: 90px;
    padding-top: 12px;
    background: url(../img/common/arrow.svg), #000;
    background-position: center 64px;
    background-repeat: no-repeat;
    background-size: 90px;
    color: #fff;
    text-align: center;
    position: inherit;
    bottom: inherit;
    left: inherit;
    margin: auto;
    transition: all 0.4s;
    font-weight: 500;
  }

  .concept_heading_wrap {
    padding-left: 0;
  }

  .select_heading_wrap {
    padding-left: 0;
  }

  .plan_img01 {
    width: 44%;
  }
  .plan_img01 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 250px;
  }

  .gnav {
    background: #eee;
    width: 320px;
    display: block;
    padding: 2%;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -320px;
    bottom: -20px;
    transition: all 0.6s;
  }
  .gnav a {
    width: 100%;
    max-height: 100px;
    text-align: center;
    display: block;
    border-bottom: solid #CFD8DC 1px;
  }

  .nav_active {
    display: block;
    background: #000;
    height: 40px;
    width: 40px;
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 500;
  }
  .nav_active div {
    height: 3px;
    background: #FFF;
    width: 80%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  }
  .nav_active div:first-child {
    top: 9px;
  }
  .nav_active div:nth-child(2) {
    top: 19px;
  }
  .nav_active div:last-child {
    top: 29px;
  }

  .nav_close {
    display: block;
    background: #000;
    color: #fff;
    padding: 4%;
    text-align: center;
    margin-top: 20px;
  }

  .billboard {
    height: 400px;
  }

  .select {
    margin-top: 400px;
  }

  .billboard_heading {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .select_border {
    background: url(../img/lp/border01.png);
    background-size: contain;
    background-position: bottom;
    width: 200px;
    height: 342px;
    position: absolute;
    left: 0;
    top: -202px;
    background-repeat: no-repeat;
  }

  .photo_wrap1, .photo_wrap2, .photo_wrap3 {
    display: none;
  }

  .slide-item_inner {
    margin-left: 0;
    width: 100%;
    height: 310px;
  }

  .inner_heading {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .inner_para02 {
    font-size: 16px;
    font-size: 1rem;
  }

  .thumbnail-item:before {
    top: 46px;
  }

  .thumbnail-current:before {
    top: 46px !important;
  }

  .thumbnail-item:after {
    top: 50px;
  }

  .thumbnail-current:after {
    top: 50px !important;
  }

  .section_heading {
    font-size: 80px;
    font-size: 5rem;
    font-weight: 500;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
    letter-spacing: 6px;
    line-height: 1.0;
    margin: 0;
    text-align: center;
  }

  .select_heading_wrap {
    padding-left: 0;
  }

  .plan {
    height: auto;
    background: #e1ebf1;
    padding: 40px 0;
  }

  .plan_heading_wrap {
    width: 100%;
    position: relative;
    z-index: 100;
  }

  .plan_para {
    font-weight: bold;
    position: initial;
    top: inherit;
    left: inherit;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
  }

  .plan_img01 {
    position: inherit;
    top: inherit;
    left: inherit;
    z-index: 200;
    width: 60%;
    margin: 0 auto 40px;
  }

  .plan_img02 {
    position: inherit;
    top: inherit;
    right: inherit;
    width: 50%;
    float: left;
    margin-bottom: 20px;
  }
  .plan_img02 img {
    width: 100%;
  }

  .plan_img03 {
    position: inherit;
    top: inherit;
    right: inherit;
    width: 50%;
    float: right;
    margin-bottom: 20px;
  }
  .plan_img03 img {
    width: 100%;
  }

  .plan_desc {
    position: inherit;
    top: inherit;
    left: inherit;
    width: auto;
  }

  .plan_back {
    display: none;
    background: linear-gradient(55deg, transparent 200px, #e1ebf1 0) bottom left;
    background-repeat: no-repeat;
    height: 900px;
    position: absolute;
    top: 40px;
    width: 100%;
  }

  .plan_desc01 {
    text-align: center;
  }

  .plan_desc02 {
    margin: 6px auto;
  }

  .plan_desc03 {
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 20px;
  }

  .concept_heading_wrap {
    padding-left: 0;
    position: relative;
    top: -64px;
    z-index: 10;
  }

  .youtube {
    width: 100%;
    min-heigh: 300px;
  }

  .row-system, .row-system2 {
    justify-content: space-around;
  }

  .mr-86 {
    margin-right: 0;
  }

  .concept_heading {
    padding-left: 10px;
  }

  .concept_para3 {
    padding-left: 10px;
  }

  .row-flow_para {
    line-height: 1.6;
  }

  .row-flow_heading3 {
    margin-top: 54px;
  }

  .concept_row {
    margin-top: 0;
  }

  .concept_para1 {
    margin-top: 0;
  }

  .concept_border {
    display: none;
  }

  .row-flow_heading, .row-flow_heading2 {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .row-flow_heading2 {
    margin-top: 37px;
  }

  .row-flow_heading3 {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .row-flow_para {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .toarea {
    padding: 4px 0 20px;
    background-position: 90% 30px;
  }

  .members {
    height: auto;
  }

  .form_req {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .billboard_heading {
    text-align: center;
    padding-top: 30px;
  }

  .pc-hide {
    display: block;
  }

  .sp-hide {
    display: none;
  }

  .header_logo {
    width: 170px;
  }

  .billboard {
    left: 0;
    top: 80px;
  }

  .section_heading {
    font-size: 36px;
    font-size: 2.25rem;
    margin-bottom: 20px;
  }

  .billboard {
    height: 540px;
  }

  .nav_active {
    top: 33px;
  }

  .select {
    margin-top: 540px;
  }

  .select_back {
    display: none;
  }

  .select_back_sp {
    background: #e1ebf1;
    padding: 40px 6%;
    width: 104%;
    margin-left: -2%;
  }

  .select_para1 {
    padding-left: 0;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .select_border {
    display: none;
  }

  .select_para2 {
    line-height: 1.8;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
    letter-spacing: 2px;
    width: 100%;
    position: relative;
  }
  .select_para2:after {
    content: "";
    display: none;
  }
  .select_para2 br {
    display: none;
  }

  .select_para1 span {
    margin-left: 0;
    display: block;
  }

  .slick-list {
    margin-top: 0 !important;
  }

  .thumbnail-item {
    font-size: 16px;
    font-size: 1rem;
  }

  .match-prev {
    display: inline-block;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 30px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .match-prev:after {
    content: "/";
    margin-left: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #999999;
    position: relative;
    top: -3px;
  }

  .match-next {
    display: inline-block;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .match-prev, .match-next {
    cursor: pointer;
  }
  .match-prev:hover, .match-next:hover {
    color: #999999;
    transition: all 0.4s;
  }

  .photo_heading3 {
    top: 500px;
  }

  #thumbnail-list {
    width: 100%;
    display: block;
    padding-top: 30px;
    margin-right: 0;
    padding-bottom: 10px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .thumbnail-item {
    text-align: center;
    flex: 50%;
    padding: 2%;
    margin-bottom: 10px;
    box-sizing: border-box;
    position: relative;
    color: #595959;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
    border: solid 2px #fff;
    cursor: pointer;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  }
  .thumbnail-item:hover {
    color: #ccc;
    transition: all 0.4s;
  }
  .thumbnail-item:before {
    content: '';
    display: none;
  }
  .thumbnail-item:after {
    content: '';
    display: none;
  }
  .thumbnail-item.thumbnail-current {
    border: solid 2px #CFD8DC;
    background: #fafafa;
    color: #000;
  }
  .thumbnail-item.thumbnail-current:before {
    content: '';
    display: none;
  }
  .thumbnail-item.thumbnail-current:after {
    content: '';
    display: none;
  }
  .thumbnail-item span {
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
  }

  .slide-item_inner {
    margin-left: 0;
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }

  .select {
    padding-bottom: 0;
  }

  #slider {
    width: 100%;
  }

  .slider-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .plan_desc02 {
    font-size: 32px;
    font-size: 2rem;
    width: 80%;
  }

  .plan_desc02_1 {
    text-align: center;
  }

  .plan_img01 {
    width: 80%;
  }

  .plan_img02 {
    width: 80%;
    float: inherit;
    margin: 0 auto 40px;
  }

  .plan_img03 {
    width: 80%;
    float: inherit;
    margin: 0 auto 40px;
  }

  .youtube {
    height: 260px;
  }

  .concept_para1 {
    text-align: center;
    margin: 20px 0;
  }

  .concept_heading {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }

  .photo_heading2 {
    padding-left: 0;
    text-align: center;
  }

  .members_heading2 {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 0;
    text-align: center;
    margin: 30px 0;
  }

  .area_box {
    width: 50%;
    padding: 2%;
    position: relative;
    transition: all 0.8s;
    margin-top: 20px;
    float: left;
  }

  .col-system {
    width: 96%;
    height: auto;
    background: #e1ebf1;
    background-size: cover;
    position: relative;
    margin: 0 auto 20px;
    transition: all 2.2s;
    border: solid #000 1px;
  }

  .system_para2 {
    position: inherit;
    top: 0;
    padding: 20px;
  }

  .system_heading3, .system_heading2 {
    font-weight: bold;
    text-align: center;
    position: inherit;
    top: inherit;
    left: inherit;
    right: inherit;
    margin: auto;
    line-height: 1.8;
    padding: 10px;
    background: #fff;
    border-bottom: solid #000 1px;
  }

  .system_bl {
    position: inherit;
    bottom: inherit;
    right: inherit;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 6px 0;
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
  }

  .match_footer {
    width: 170px;
    display: block;
    margin: 0px auto 30px;
  }

  .footer_com, .footer_copy {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .flow_inner {
    position: inherit;
    left: inherit;
    right: inherit;
    margin: auto;
    top: inherit;
  }

  .row-flow_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .col-flow_sp {
    width: 48%;
    border: solid #000 1px;
    position: relative;
    margin-bottom: 16px;
    opacity: 0;
    transition: all 1.2s;
    padding-bottom: 20px;
  }

  .flow_fade {
    opacity: 1;
  }

  .flow_para {
    margin-bottom: 20px;
  }

  .s_right_sp:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 15px;
    border-color: transparent transparent transparent #000000;
    position: absolute;
    right: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .s_left_sp:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 15px 7.5px 0;
    border-color: transparent #000000 transparent transparent;
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .s_down_sp:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 7.5px 0 7.5px;
    border-color: #000000 transparent transparent transparent;
    position: absolute;
    left: 0;
    right: 0px;
    bottom: -16px;
    margin: auto;
  }

  .s_up_sp:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 15px 7.5px;
    border-color: transparent transparent #000000 transparent;
    position: absolute;
    left: 0;
    right: 0px;
    top: -16px;
    margin: auto;
  }

  .system_heading {
    font-size: 24px;
    font-size: 1.5rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HiraMinPro-W6", "ＭＳ ゴシック", sans-serif;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
  }

  .system {
    margin-bottom: 60px;
  }

  .inner_heading {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .wrap__404 {
    padding: 4%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .not_area_link {
    width: 80%;
    margin: auto;
  }

  .insta_heading {
    text-align: center;
  }
  .insta_heading img {
    width: 60%;
  }
}
.sp-s-block {
  display: none;
}

@media screen and (max-width: 320px) {
  .billboard_heading {
    padding-top: 20px;
  }

  .sp-s-block {
    display: block;
  }

  .billboard_heading {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .plan_para, .members_para {
    font-size: 16px;
    font-size: 1rem;
  }

  .section_heading {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .area_box {
    width: 100%;
  }

  .thumbnail-item {
    font-size: 12px;
    font-size: 0.75rem;
  }

  .inner_heading {
    font-size: 16px;
    font-size: 1rem;
  }

  .inner_para02, .plan_desc03, .system_para, .flow_para, .row-flow_para {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*# sourceMappingURL=lp_style.css.map */
