@charset "UTF-8";
/* ----------------------------------------------------
ALL
---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

a:link, a:visited {
  color: #333;
  text-decoration: underline;
}
a:hover, a:active {
  color: #333;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

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

* html body {
  overflow-y: auto;
}

* + html body {
  overflow-y: auto;
}

body {
  overflow-y: scroll;
}

html {
  -webkit-overflow-scrolling: touch;
}

input, textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  border: 0;
  height: auto;
  width: auto;
  image-rendering: auto;
}

/* ----------------------------------------------------
CSS information
  ■common
---------------------------------------------------- */
html, body {
  width: 100%;
}

/*
html { box-sizing: border-box; }
*,*:before,*:after { box-sizing: inherit; }
*/
body {
  font-family: "source-han-serif-japanese", serif;
  font-size: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

@media screen and (min-width: 1200px) {
  div.container {
    margin: auto;
  }
}
.ft_normal {
  font-family: "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1200px) {
  .sp, .sp375 {
    display: none;
  }
}
img {
  max-width: 100%;
}

.marker {
  color: #000;
  background: #ff0;
}

.blink {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
          animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ribon {
  width: calc(100% - 6rem);
  position: relative;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  margin: 30px;
  padding: 10px 1rem;
  background-color: #c00;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.ribon::before,
.ribon::after {
  position: absolute;
  top: 0;
  width: 0px;
  height: 0px;
  border-color: #c00 transparent;
  border-style: solid;
  content: "";
}

.ribon::before {
  left: -15px;
  border-width: 35px 0px 35px 15px;
}

.ribon::after {
  right: -15px;
  border-width: 35px 15px 35px 0px;
}

p.button.more,
p.button.purchase,
p.button.link,
p.button.cpBuy,
p.button.cpPre,
p.button.cpClosed,
p.button.cpPurchaser {
  position: relative;
  width: 80%;
  height: 50px;
  color: #343434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #343434;
  margin: auto;
  max-width: 400px;
  width: 100%;
}
p.button.more:before, p.button.more:after,
p.button.purchase:before,
p.button.purchase:after,
p.button.link:before,
p.button.link:after,
p.button.cpBuy:before,
p.button.cpBuy:after,
p.button.cpPre:before,
p.button.cpPre:after,
p.button.cpClosed:before,
p.button.cpClosed:after,
p.button.cpPurchaser:before,
p.button.cpPurchaser:after {
  content: "";
  height: 1px;
  background: #343434;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  right: 22px;
}
p.button.more:before,
p.button.purchase:before,
p.button.link:before,
p.button.cpBuy:before,
p.button.cpPre:before,
p.button.cpClosed:before,
p.button.cpPurchaser:before {
  width: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
p.button.more:after,
p.button.purchase:after,
p.button.link:after,
p.button.cpBuy:after,
p.button.cpPre:after,
p.button.cpClosed:after,
p.button.cpPurchaser:after {
  width: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media screen and (max-width: 1200px) {
  p.button.more,
  p.button.purchase,
  p.button.link,
  p.button.cpBuy,
  p.button.cpPre,
  p.button.cpClosed,
  p.button.cpPurchaser {
    font-size: initial;
  }
}

button.submit {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  max-width: 300px;
  width: 70%;
  font-size: 1rem;
  font-size: clamp(0.5rem, 5vw, 1.4rem);
  color: #000;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  background: #ffc501;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: solid 3px #9a7700;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 6vw, 3rem);
  /*
  &:hover{
    color:#000 setting.$imp;
    background:setting.$yellow;
    transition:.3s;
  }
  */
}

div.button.normal a {
  position: relative;
  width: 80%;
  height: 50px;
  color: #343434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #343434;
  margin: auto;
  max-width: 400px;
  width: 100%;
  text-decoration: none;
}
div.button.normal a:before, div.button.normal a:after {
  content: "";
  height: 1px;
  background: #343434;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  right: 22px;
}
div.button.normal a:before {
  width: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
div.button.normal a:after {
  width: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media screen and (max-width: 1200px) {
  div.button.normal a {
    font-size: initial;
  }
}
@media screen and (min-width: 1200px) {
  div.button.normal a:hover:before, div.button.normal a:hover:after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    right: -20px;
  }
  div.button.normal a:hover:before {
    width: 72px;
  }
}

div.buttonWrap:not(.unused) {
  text-align: center;
  margin: 50px auto;
}
div.buttonWrap:not(.unused) button {
  max-width: 600px;
  width: 100%;
  font-size: 130%;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: #f3e0be;
  cursor: pointer;
  border: solid 1px #e2b869;
  border-bottom: solid 5px #e2b869;
}
@media screen and (max-width: 1200px) {
  div.buttonWrap:not(.unused) button {
    font-size: initial;
    padding: 20px;
  }
}
div.buttonWrap:not(.unused) button:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #8a5d11;
  border-right: 1px solid #8a5d11;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 5px);
}
@media screen and (min-width: 1200px) {
  div.buttonWrap:not(.unused) button:hover {
    border-bottom: solid 2px #e2b869;
    margin-top: 3px;
  }
}
div.buttonWrap.unused {
  text-align: center;
  margin: 50px auto;
}
div.buttonWrap.unused button {
  max-width: 600px;
  width: 100%;
  font-size: 130%;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  border: solid 1px #ccc;
}
@media screen and (max-width: 1200px) {
  div.buttonWrap.unused button {
    font-size: initial;
    padding: 20px;
  }
}

p.button.cpBuy a {
  max-width: 350px;
  width: 60%;
  font-size: 1rem;
  font-size: clamp(0.5rem, 5vw, 1.4rem);
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #85002f;
  -webkit-box-shadow: 2px 2px 2px #999;
          box-shadow: 2px 2px 2px #999;
  border-radius: 99px;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 6vw, 3rem);
  color: #000;
  text-shadow: none;
  background: #ffc501;
}
p.button.cpBuy a img {
  width: 30px;
}

p.button.cpPre {
  max-width: 350px;
  width: 60%;
  font-size: 1rem;
  font-size: clamp(0.5rem, 5vw, 1.4rem);
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #85002f;
  -webkit-box-shadow: 2px 2px 2px #999;
          box-shadow: 2px 2px 2px #999;
  border-radius: 99px;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 6vw, 3rem);
  text-shadow: 1px 1px 2px #333;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #666;
}
p.button.cpPre img {
  width: 30px;
}

p.button.cpClosed {
  max-width: 350px;
  width: 60%;
  font-size: 1rem;
  font-size: clamp(0.5rem, 5vw, 1.4rem);
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #85002f;
  -webkit-box-shadow: 2px 2px 2px #999;
          box-shadow: 2px 2px 2px #999;
  border-radius: 99px;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 6vw, 3rem);
  text-shadow: 1px 1px 2px #333;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #666;
}
p.button.cpClosed img {
  width: 30px;
}

p.button.cpPurchaser {
  max-width: 350px;
  width: 60%;
  font-size: 1rem;
  font-size: clamp(0.5rem, 5vw, 1.4rem);
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #85002f;
  -webkit-box-shadow: 2px 2px 2px #999;
          box-shadow: 2px 2px 2px #999;
  border-radius: 99px;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 6vw, 3rem);
  color: #fff;
  background: #ff6000;
  text-shadow: 1px 1px 2px #333;
  -webkit-box-shadow: none;
          box-shadow: none;
}
p.button.cpPurchaser img {
  width: 30px;
}

p.button.link {
  margin: 0.5rem 0 0 0 !important;
}
p.button.link a {
  font-size: 1rem;
  font-size: clamp(0.5rem, 3vw, 1rem);
  border-radius: 99px;
  padding: 0.2rem 0;
}

p.lp_indexButton {
  text-align: center;
  padding: 60px 0 0 0;
}
p.lp_indexButton a {
  position: relative;
  width: 80%;
  height: 50px;
  color: #343434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #343434;
  margin: auto;
  max-width: 400px;
  width: 100%;
  text-decoration: none;
}
p.lp_indexButton a:before, p.lp_indexButton a:after {
  content: "";
  height: 1px;
  background: #343434;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  right: 22px;
}
p.lp_indexButton a:before {
  width: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
p.lp_indexButton a:after {
  width: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media screen and (max-width: 1200px) {
  p.lp_indexButton a {
    font-size: initial;
  }
}
@media screen and (min-width: 1200px) {
  p.lp_indexButton a:hover:before, p.lp_indexButton a:hover:after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    right: -20px;
  }
  p.lp_indexButton a:hover:before {
    width: 72px;
  }
}

p#subEntry {
  -webkit-animation: ani_bound 2s infinite ease-out;
          animation: ani_bound 2s infinite ease-out;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 150px;
  height: 150px;
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 150px;
  z-index: 5;
}
@-webkit-keyframes ani_bound {
  0% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  5% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
  }
  10% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  15% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
  }
  20% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
}
@keyframes ani_bound {
  0% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  5% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
  }
  10% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  15% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
  }
  20% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
}
p#subEntry:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
p#subEntry:hover {
  opacity: 0.5;
}
p#subEntry img[src*=sp] {
  display: none;
}

#page_top {
  background: #e2b869;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border: solid 3px #fff;
  opacity: 0;
  position: fixed;
  right: 45px;
  bottom: 20px;
  z-index: 5;
  padding: 10px;
}
#page_top:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.5;
}
#page_top img {
  width: 60px;
  height: 60px;
}
#page_top.is-active {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1200px) {
  #page_top {
    right: 20px;
  }
  #page_top img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 800px) {
  #page_top {
    padding: 5px;
  }
  #page_top img {
    width: 30px;
    height: 30px;
  }
}

ul.pager {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem auto;
}
ul.pager li {
  margin: 0 5px;
}
ul.pager li:last-child {
  border: none;
}
ul.pager li a {
  color: #999;
  text-decoration: none;
  line-height: 1;
  background: #eee;
  display: block;
  padding: 18px 20px;
}
ul.pager li a:hover {
  color: #333;
  background: #eed6a9;
}
ul.pager li.current a {
  color: #333;
  font-weight: bold;
  background: #eacc94;
}
ul.pager li.current a:hover {
  background: #f3e0be;
}

.articleContents {
  line-height: 2;
}

.mask-wrap {
  width: 100%;
  display: table;
  overflow: hidden;
}
.mask-wrap .mask {
  display: table;
  position: relative;
  left: -100%;
  overflow: hidden;
}
.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #004831;
}

.toggle {
  cursor: pointer;
  position: relative;
}
.toggle:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../../image/lp_white/icon_white_arrow01.png);
  background-size: contain;
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
}
.toggle.active:after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

div.mainInner {
  width: 100%;
  margin: auto;
}
div.mainInner.subPage {
  max-width: 1000px;
  width: calc(100% - 2rem);
  width: calc(100% - clamp(1rem, 5vw, 1rem) * 2);
  padding: 1rem;
  padding-top: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 1rem);
  padding-bottom: clamp(1rem, 12vw, 4rem);
  padding-left: clamp(1rem, 5vw, 1rem);
}

.inner {
  max-width: 1000px;
  margin: auto;
}

div.headText {
  width: 100%;
  margin-bottom: 1rem;
  margin-bottom: clamp(0.5rem, 5vw, 1rem);
}
div.headText span {
  color: #e00;
  font-weight: bold;
}

.notes {
  background: #efefef;
  padding: 10px;
  padding: clamp(10px, 3vw, 1.5rem);
}

.subTitle_b {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 5px;
  line-height: 1;
  text-align: center;
  background: #000;
  padding: 0.2rem;
}

.subTitle_g {
  color: #fff;
  font-size: 1rem;
  font-size: clamp(1rem, 5vw, 3rem);
  text-align: center;
  background: #004831;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subTitle_g span {
  font-size: 0.6rem;
  font-size: clamp(0.5rem, 5vw, 1rem);
  color: #fff;
  background: #000;
  border-radius: 99px;
  padding: 0.2rem 1rem;
}

p#arrow {
  -webkit-animation: ani_bound03 0.5s infinite alternate ease-in-out;
          animation: ani_bound03 0.5s infinite alternate ease-in-out;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
@-webkit-keyframes ani_bound03 {
  0% {
    bottom: 1rem;
  }
  100% {
    bottom: 0.1rem;
  }
}
@keyframes ani_bound03 {
  0% {
    bottom: 1rem;
  }
  100% {
    bottom: 0.1rem;
  }
}
p#arrow img {
  width: 50px;
  width: clamp(50px, 25%, 180px);
}

header {
  background: #fff;
  padding: 15px 0;
}
header div#miniHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header div#miniHeader h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header div#miniHeader h1 img {
  width: 210px;
}
header div#miniHeader ul#miniNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header div#miniHeader ul#miniNav li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100px;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  display: block;
  padding: 8px 5px;
}
header div#miniHeader ul#miniNav li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header div#miniHeader ul#miniNav li a:hover {
  opacity: 0.5;
}
header div#miniHeader ul#miniNav li button {
  font-family: "source-han-serif-japanese", serif;
  font-size: 110%;
  border-radius: 3px;
  padding: 5px 25px;
}
@media screen and (min-width:800px) {
  header div#miniHeader ul#miniNav li button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  header div#miniHeader ul#miniNav li button:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header div#miniHeader ul#miniNav li button:hover {
    opacity: 0.5;
  }
}
header div#miniHeader ul#miniNav li:first-child a {
  margin-right: 15px;
  background: #f2f2f2;
  border: solid 1px #ccc;
  -webkit-box-shadow: 0 1px 0 #a6a6a6;
          box-shadow: 0 1px 0 #a6a6a6;
}
header div#miniHeader ul#miniNav li:last-child a {
  background: #f3e0be;
  border: solid 1px #e2b869;
  -webkit-box-shadow: 0 1px 0 #d59a29;
          box-shadow: 0 1px 0 #d59a29;
}
header div.openbtn1,
header nav#g-nav {
  display: none;
}

footer div#footerWrap {
  background: #f5f5f5;
  padding-bottom: 50px;
}
footer nav#fNavi {
  background: -webkit-gradient(linear, left top, right top, from(#fffcfc), color-stop(50%, #cfcfcf), to(#fffcfc)) no-repeat bottom;
  background: linear-gradient(to right, #fffcfc 0%, #cfcfcf 50%, #fffcfc 100%) no-repeat bottom;
  background-size: auto 2px;
  margin-bottom: 50px;
  padding: 50px 0;
}
footer nav#fNavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer nav#fNavi ul li {
  padding: 0 40px;
}
footer nav#fNavi ul li:not(:last-child) {
  background: linear-gradient(-90deg, #e2b869 1px, transparent 0);
}
footer nav#fNavi ul li a {
  font-size: 20px;
  text-decoration: none;
}
footer nav#fNavi ul li a:hover {
  text-decoration: underline;
}
footer section#law ul {
  padding-left: 20px;
}
footer section#law ul li {
  line-height: 1.5;
  letter-spacing: 2px;
}
footer section#law ul li:before {
  content: "・";
  color: #000; /* マーカーの色 */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
footer div.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
}
footer div.copyright a {
  text-align: center;
}
footer div.copyright img {
  width: 300px;
  margin-right: 50px;
}

.lightbox {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.lb-outerContainer {
  overflow-x: hidden;
  overflow-y: scroll;
}

img.lb-image {
  max-width: 1000px !important;
  width: 22vw !important;
  height: auto !important;
}

@media screen and (max-width: 1200px) {
  img.lb-image {
    width: 75vw !important;
  }
}
@media (max-width: 1200px) and (max-height: 1000px) {
  img.lb-image {
    width: 70vw !important;
  }
}
@media screen and (max-width: 800px) {
  img.lb-image {
    height: 90vw;
  }
}
@media (max-width: 691px) and (max-height: 685px) {
  img.lb-image {
    width: 50vw !important;
  }
}
@media (max-width: 375px) and (max-height: 548px) {
  img.lb-image {
    width: 70vw !important;
  }
}
section#stage {
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
section#stage div#stageBg {
  background: url(../../image/lp_white/stage_bg01.jpg) no-repeat 80%;
  background-size: cover;
  -webkit-animation: ani_stage 5s forwards cubic-bezier(0.25, 0.1, 0.25, 1);
          animation: ani_stage 5s forwards cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
@-webkit-keyframes ani_stage {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ani_stage {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
section#stage div#stageBg:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: url(../../image/lp_white/ptt_mesh01.png), url(../../image/lp_white/ptt_mesh01.png);
  mix-blend-mode: overlay;
  display: block;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
section#stage div#textWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:2000px) {
  section#stage div#textWrap {
    -webkit-transform: scale(80%);
            transform: scale(80%);
  }
}
section#stage h1 {
  font-size: 44px;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 80px;
}
section#stage h1 small {
  display: block;
  margin-bottom: 20px;
}
section#stage h2 {
  font-size: 120px;
  font-weight: normal;
  color: #b87c0c;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 15px;
  margin-bottom: 80px;
}
section#stage div {
  width: 100%;
  font-size: 80px;
  color: #000;
  text-align: center;
  /*
  text-shadow:0 0 5px #000,0 0 5px #000,0 0 5px #000,0 0 8px #000,
  0 0 8px #000, 0 0 8px #000, 0 0 10px #b4451e,0 0 10px #b4451e;
  */
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  line-height: 1;
  margin-bottom: 50px;
}
section#stage div:first-line {
  font-size: 50px;
}
section#stage div span.large {
  font-size: 120px;
  color: #b87c0c;
}
section#stage div span.small {
  font-size: 60px;
}
section#stage div#publicOffering {
  font-size: 35px;
  line-height: 1.5;
}
section#stage div#publicOffering:first-line {
  font-size: 35px;
}
section#stage dl {
  width: 1000px;
  border: solid 5px #e2b869;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../../image/lp_white/bg_ptt_white01.jpg) #fff;
  -webkit-box-shadow: 0 0 3px #b4451e, 0 0 10px #b4451e;
          box-shadow: 0 0 3px #b4451e, 0 0 10px #b4451e;
  margin-bottom: 60px;
}
section#stage dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 55%;
          flex: 1 0 55%;
  font-size: 45px;
  color: #000;
  font-weight: bold;
  text-shadow: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 20px 20px 28px;
}
section#stage dl dt span {
  color: #d00;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
section#stage dl dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
  padding: 5px;
}
section#stage dl dd img {
  width: 450px;
}

section#entryCampaign {
  background: url(../../image/lp_white/bg_cloth_red01.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0;
}
section#entryCampaign h2 {
  text-align: center;
  margin-bottom: 30px;
}
section#entryCampaign div.entryCamp_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
section#entryCampaign div.entryCamp_wrap dl {
  width: calc(50% - 20px);
}
section#entryCampaign div.entryCamp_wrap dl dt {
  text-align: center;
  margin-bottom: -60px;
}
section#entryCampaign div.entryCamp_wrap dl dd {
  text-align: center;
  background: url(../../image/lp_white/bg_ptt_white01.jpg) #fff;
  border: solid 5px #e2b869;
  -webkit-box-shadow: 0 0 6px #000;
          box-shadow: 0 0 6px #000;
  padding: 70px 0 20px 0;
}
section#entryCampaign div.entryCamp_wrap p {
  position: absolute;
  left: calc(50% - 51px);
  bottom: 80px;
  z-index: 1;
}

section#entryWrap {
  background: url(../../image/lp_white/entrywrap_headbg01.jpg) no-repeat top;
  background-size: cover;
  padding: 80px 0 60px 0;
}
section#entryWrap h2 {
  font-weight: normal;
  text-align: center;
  letter-spacing: 10px;
  line-height: 1.2;
  margin-bottom: 100px;
}
section#entryWrap h2:not(small) {
  background: -webkit-linear-gradient(bottom, #ab7a18 22%, #d0b57e 30%, #ab7a18 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
}
section#entryWrap h2:not(small) span {
  font-size: 80px;
}
section#entryWrap h2 small {
  background: -webkit-linear-gradient(bottom, #757575 0%, #505050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 50px;
  display: block;
}
section#entryWrap section.entry_form {
  border: solid 5px #e2b869;
  background: url(../../image/lp_white/bg_ptt_white01.jpg) #fff;
  -webkit-box-shadow: 0 5px 5px #ccc;
          box-shadow: 0 5px 5px #ccc;
  margin-bottom: 100px;
}
section#entryWrap section.entry_form h3 {
  text-align: center;
  background: url(../../image/lp_white/bg_cloth_red01.jpg) no-repeat;
  background-size: cover;
  position: relative;
  padding: 60px 20px 30px 20px;
}
section#entryWrap section.entry_form h3 p {
  width: 50%;
  text-align: center;
  background: url(../../image/lp_white/bg_ptt_white01.jpg) #fff;
  border: solid 5px #e2b869;
  border-radius: 99px;
  position: absolute;
  left: 25%;
  top: -37px;
  padding: 5px 0;
}
section#entryWrap section.entry_form h3 p img {
  width: 60%;
}
section#entryWrap section.entry_form div.entry_inner {
  padding: 40px;
}
section#entryWrap section.entry_form div.entry_inner input.addressform {
  width: 100%;
  font-size: 22px;
  border: solid 5px #e2b869;
  margin-bottom: 40px;
  padding: 40px 20px;
}
section#entryWrap section.entry_form div.entry_inner button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  display: block;
  margin: auto auto 40px auto;
}
section#entryWrap section.entry_form div.entry_inner button:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section#entryWrap section.entry_form div.entry_inner button:hover {
  opacity: 0.5;
}
section#entryWrap section.entry_form div.entry_inner div.note {
  font-size: 20px;
}
section#entryWrap section.entry_form div.entry_inner div.note span {
  color: #c00;
}
section#entryWrap section.entry_form div.entry_inner div.note div#gmail {
  border: solid 3px #c00;
  margin-bottom: 20px;
  padding: 10px;
}
section#entryWrap section.entry_form.reg_sns h3 p {
  padding: 12px 0;
}
section#entryWrap section.entry_form.reg_sns h3 p img {
  width: 85%;
}
section#entryWrap section.entry_form.reg_sns div.entry_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#entryWrap section.entry_form.reg_sns div.entry_inner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section#entryWrap section.entry_form.reg_sns div.entry_inner a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section#entryWrap section.entry_form.reg_sns div.entry_inner a:hover {
  opacity: 0.5;
}
section#entryWrap section.entry_form.reg_sns div.entry_inner a:not(:nth-child(3), :nth-child(4)) {
  margin-bottom: 12px;
}
section#entryWrap section#step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#entryWrap section#step h2 {
  width: 100%;
  font-size: initial;
  background: #e2b869;
  margin-bottom: 30px;
  padding: 12px;
}
section#entryWrap section#step h2 img {
  width: 50%;
}
section#entryWrap section#step dl {
  width: calc(33.3333333333% - 15px);
  background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#f3f3f3));
  background: linear-gradient(to bottom, #fbfbfb 0%, #f3f3f3 100%);
  position: relative;
}
section#entryWrap section#step dl:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 0;
  height: 0;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  border-top: 30px solid white;
  z-index: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
section#entryWrap section#step dl dt {
  font-size: 30px;
  color: #fff;
  text-align: center;
  line-height: 1;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 10px 10px 0 10px;
}
section#entryWrap section#step dl dt:before {
  content: "";
  position: absolute;
  bottom: -20px; /* 三角形の高さ */
  left: 50%;
  width: 0;
  height: 0;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  border-top: 20px solid black; /* 三角形の高さと色 */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
section#entryWrap section#step dl dt span {
  font-size: 60px;
  padding: 0 0 5px 10px;
}
section#entryWrap section#step dl dd {
  letter-spacing: 2px;
  word-break: break-all;
  padding: 40px 15px 60px 15px;
}
section#entryWrap section#step dl dd p {
  text-align: center;
}
section#entryWrap section#step dl dd h4 {
  font-size: 26px;
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
section#entryWrap section#step dl:last-of-type h4 {
  margin: 15px 0 34px 0;
}

section#industryBest {
  background: url(../../image/lp_white/bg_divine01.jpg) no-repeat top;
  background-size: cover;
  position: relative;
  padding: 70px 0;
}
section#industryBest h2#industryBest_h2 {
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 5px;
  margin-bottom: 50px;
}
section#industryBest h2#industryBest_h2 span {
  -webkit-background-clip: text;
  position: relative;
  display: inline-block;
}
section#industryBest h2#industryBest_h2 span:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: -1;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 15px #b4451e;
}
section#industryBest h2#industryBest_h2:not(small) {
  font-size: 100px;
}
section#industryBest h2#industryBest_h2:not(small) span:nth-of-type(2) {
  font-size: 70px;
}
section#industryBest h2#industryBest_h2 small {
  text-align: center;
  display: block;
}
section#industryBest h2#industryBest_h2 small span:first-child {
  background: -webkit-linear-gradient(bottom, #ab0009 0%, #da0009 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section#industryBest h2#industryBest_h2 small span:last-child {
  background: -webkit-linear-gradient(bottom, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
}
section#industryBest ul {
  position: relative;
  margin-bottom: 120px;
}
section#industryBest ul li {
  width: 100%;
  text-align: center;
}
section#industryBest ul li:first-child, section#industryBest ul li:nth-child(2) {
  position: absolute;
  z-index: 1;
}
section#industryBest ul li:first-child {
  bottom: 0;
}
section#industryBest ul li:nth-child(2) {
  bottom: -150px;
}
section#industryBest div:not(.inner) {
  font-size: 26px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
section#industryBest h3 {
  font-size: 40px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  margin: 50px 0;
}

section#cycle {
  padding: 70px 0;
}
section#cycle h2 {
  font-size: 80px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
section#cycle h2 small {
  font-size: 40px;
  color: #000;
  text-align: center;
  display: block;
}
section#cycle div.grafWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#cycle div.grafWrap dl {
  width: calc(50% - 15px);
}
section#cycle div.grafWrap dl dt {
  width: 100%;
  color: #000;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 0 #e8c67e;
  background: -webkit-gradient(linear, left top, right top, from(#e8c67e), color-stop(50%, #dcaa54));
  background: linear-gradient(to right, #e8c67e 0%, #dcaa54 50%);
  display: inline-block;
  position: relative;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 5px #888;
          box-shadow: 1px 1px 5px #888;
  margin-bottom: 50px;
  padding: 10px 0 15px 0;
}
section#cycle div.grafWrap dl dt:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #dcaa54;
}
section#cycle div.grafWrap dl dd {
  position: relative;
}
section#cycle div.grafWrap dl dd p {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 22%;
  z-index: 1;
}

section#future {
  background: url(../../image/lp_white/future_bg01.jpg) no-repeat 50% 30%;
  background-size: cover;
  padding: 150px 0;
}
section#future div.inner h2 {
  text-align: center;
  margin-bottom: 40px;
}
section#future div.inner div {
  font-size: 45px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
}

section#freeContents {
  background: url(../../image/lp_white/freecontents_bg01.jpg) no-repeat top #fefbf3;
  background-size: 100% auto;
  padding: 70px 0;
}
section#freeContents div.freeCp_box_bg,
section#freeContents div.paidCp_box_bg {
  background: #fff;
}
section#freeContents div.headText p {
  font-size: 40px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-bottom: 60px;
}
section#freeContents div.headText p span {
  font-weight: normal;
  color: #b87c0c;
}
section#freeContents div.headText p span span {
  font-size: 60px;
}
section#freeContents div.headText div.mainText {
  width: 60%;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  position: relative;
  z-index: 2;
  margin: 0 auto 100px 0;
}
section#freeContents div.headText div.mainText small {
  font-size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section#freeContents div.headText div.mainText small img {
  width: 40px;
}
section#freeContents div.headText div.mainText small img:last-of-type {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
section#freeContents div.headText div.mainText h2 {
  font-size: 90px;
  font-weight: normal;
  text-align: center;
  color: #b87c0c;
  line-height: 1.1;
  margin-bottom: 30px;
}
section#freeContents div.headText div.mainText ul {
  position: relative;
  z-index: 2;
}
section#freeContents div.headText div.mainText ul li {
  font-size: 30px;
  text-align: center;
  -webkit-box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
          box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  border: solid 2px #e2b869;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  padding: 5px 0 8px 0;
}
section#freeContents div.headText div.mainText p {
  position: absolute;
  z-index: -1;
}
section#freeContents div.headText div.mainText p {
  top: -20px;
  right: -430px;
}
section#freeContents h3 {
  font-weight: normal;
  text-align: center;
  color: #000;
  background: -webkit-gradient(linear, left top, right top, from(#e6c58e), to(#d9a74d));
  background: linear-gradient(to right, #e6c58e, #d9a74d);
  border-radius: 5px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
}
section#freeContents h3:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 500px;
  height: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#e6c58e), to(#d9a74d));
  background: linear-gradient(to right, #e6c58e, #d9a74d);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
section#freeContents h3 div {
  font-size: 46px;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #e8c677;
  margin: 0;
}
section#freeContents h3 small {
  width: 70%;
  font-size: 28px;
  text-align: center;
  background: #fff;
  border-radius: 25px;
  display: inline-block;
  margin: 10px 0;
  padding: 5px 0 8px;
}
section#freeContents div.freeCp_box {
  padding: 70px 0 80px 0;
}
section#freeContents div.freeCp_box h4 {
  font-size: 50px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-bottom: 60px;
}
section#freeContents div.freeCp_box h4 + p {
  width: 700px;
  font-size: 24px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  line-height: 1.2;
  border: solid 1px #000;
  -webkit-box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
          box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  background: rgba(255, 255, 255, 0.5);
  margin: -40px auto 60px auto;
  padding: 6px 0 10px 0;
}
section#freeContents div.freeCp_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#freeContents div.freeCp_box ul li:first-child {
  width: 400px;
}
section#freeContents div.freeCp_box ul li:first-child img {
  -webkit-box-shadow: 15px 15px 0 #f7ebd3;
          box-shadow: 15px 15px 0 #f7ebd3;
}
section#freeContents div.freeCp_box ul li:last-child {
  width: calc(100% - 450px);
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
section#freeContents div.freeCp_box ul li:last-child span {
  color: #b87c0c;
}
section#freeContents div.freeCp_box:nth-of-type(odd) ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
section#freeContents div.freeCp_box a.button.sample {
  position: relative;
  width: 80%;
  height: 50px;
  color: #343434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #343434;
  margin: auto;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  display: block;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 5px 0 8px 0;
}
section#freeContents div.freeCp_box a.button.sample:before, section#freeContents div.freeCp_box a.button.sample:after {
  content: "";
  height: 1px;
  background: #343434;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  right: 22px;
}
section#freeContents div.freeCp_box a.button.sample:before {
  width: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section#freeContents div.freeCp_box a.button.sample:after {
  width: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
section#freeContents div.freeCp_box a.button.sample img {
  width: 30px;
  margin-right: 15px;
}
@media screen and (min-width: 1200px) {
  section#freeContents div.freeCp_box a.button.sample:hover:before, section#freeContents div.freeCp_box a.button.sample:hover:after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    right: -20px;
  }
  section#freeContents div.freeCp_box a.button.sample:hover:before {
    width: 72px;
  }
}
section#freeContents div.freeCp_box div {
  font-size: 26px;
  border: solid 3px #e2b869;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  -webkit-box-shadow: inset 0 0 15px #fff;
          box-shadow: inset 0 0 15px #fff;
  -webkit-box-shadow: 0 0 15px #fff;
          box-shadow: 0 0 15px #fff;
  padding: 30px;
}
section#freeContents div.freeCp_box div span {
  color: #b87c0c;
}
section#freeContents div.inner.summary {
  padding-top: 70px;
}
section#freeContents div.inner.summary dl {
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
}
section#freeContents div.inner.summary dl dt {
  font-size: 40px;
  color: #b87c0c;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
section#freeContents div.inner.summary dl dd:first-of-type {
  font-size: 24px;
  margin-bottom: 40px;
}
section#freeContents div.inner.summary dl dd:last-child {
  font-size: 38px;
  text-align: center;
}
section#freeContents div.inner.summary dl dd span {
  color: #b87c0c;
}

section#paidContents {
  background: url(../../image/lp_white/paidcontents_bg01.jpg) no-repeat top #fefbf3;
  background-size: 100% auto;
  padding-top: 70px;
}
section#paidContents div.freeCp_box_bg,
section#paidContents div.paidCp_box_bg {
  background: #fff;
}
section#paidContents div.headText p {
  font-size: 40px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-bottom: 60px;
}
section#paidContents div.headText p span {
  font-weight: normal;
  color: #b87c0c;
}
section#paidContents div.headText p span span {
  font-size: 60px;
}
section#paidContents div.headText div.mainText {
  width: 60%;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  position: relative;
  z-index: 2;
  margin: 0 0 100px auto;
}
section#paidContents div.headText div.mainText small {
  font-size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section#paidContents div.headText div.mainText small img {
  width: 40px;
}
section#paidContents div.headText div.mainText small img:last-of-type {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
section#paidContents div.headText div.mainText h2 {
  font-size: 90px;
  font-weight: normal;
  text-align: center;
  color: #b87c0c;
  line-height: 1.1;
  margin-bottom: 30px;
}
section#paidContents div.headText div.mainText ul {
  position: relative;
  z-index: 2;
}
section#paidContents div.headText div.mainText ul li {
  font-size: 30px;
  text-align: center;
  -webkit-box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
          box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  border: solid 2px #e2b869;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  padding: 5px 0 8px 0;
}
section#paidContents div.headText div.mainText p {
  position: absolute;
  z-index: -1;
}
section#paidContents div.headText div.mainText p {
  top: -20px;
  left: -670px;
}
section#paidContents h3 {
  font-weight: normal;
  text-align: center;
  color: #000;
  background: -webkit-gradient(linear, left top, right top, from(#e6c58e), to(#d9a74d));
  background: linear-gradient(to right, #e6c58e, #d9a74d);
  border-radius: 5px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
}
section#paidContents h3:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 500px;
  height: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#e6c58e), to(#d9a74d));
  background: linear-gradient(to right, #e6c58e, #d9a74d);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
section#paidContents h3 div {
  font-size: 46px;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #e8c677;
  margin: 0;
}
section#paidContents h3 small {
  width: 70%;
  font-size: 28px;
  text-align: center;
  background: #fff;
  border-radius: 25px;
  display: inline-block;
  margin: 10px 0;
  padding: 5px 0 8px;
}
section#paidContents div.paidCp_box {
  padding: 70px 0 80px 0;
}
section#paidContents div.paidCp_box h4 {
  font-size: 50px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-bottom: 60px;
}
section#paidContents div.paidCp_box h4 + p {
  width: 700px;
  font-size: 24px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  line-height: 1.2;
  border: solid 1px #000;
  -webkit-box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
          box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  background: rgba(255, 255, 255, 0.5);
  margin: -40px auto 60px auto;
  padding: 6px 0 10px 0;
}
section#paidContents div.paidCp_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#paidContents div.paidCp_box ul li:first-child {
  width: 400px;
}
section#paidContents div.paidCp_box ul li:first-child img {
  -webkit-box-shadow: 15px 15px 0 #f7ebd3;
          box-shadow: 15px 15px 0 #f7ebd3;
}
section#paidContents div.paidCp_box ul li:last-child {
  width: calc(100% - 450px);
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
section#paidContents div.paidCp_box ul li:last-child span {
  color: #b87c0c;
}
section#paidContents div.paidCp_box:nth-of-type(odd) ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
section#paidContents div.paidCp_box a.button.sample {
  position: relative;
  width: 80%;
  height: 50px;
  color: #343434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #343434;
  margin: auto;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  display: block;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 5px 0 8px 0;
}
section#paidContents div.paidCp_box a.button.sample:before, section#paidContents div.paidCp_box a.button.sample:after {
  content: "";
  height: 1px;
  background: #343434;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  right: 22px;
}
section#paidContents div.paidCp_box a.button.sample:before {
  width: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section#paidContents div.paidCp_box a.button.sample:after {
  width: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
section#paidContents div.paidCp_box a.button.sample img {
  width: 30px;
  margin-right: 15px;
}
@media screen and (min-width: 1200px) {
  section#paidContents div.paidCp_box a.button.sample:hover:before, section#paidContents div.paidCp_box a.button.sample:hover:after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    right: -20px;
  }
  section#paidContents div.paidCp_box a.button.sample:hover:before {
    width: 72px;
  }
}
section#paidContents div.paidCp_box div {
  font-size: 26px;
  border: solid 3px #e2b869;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  -webkit-box-shadow: inset 0 0 15px #fff;
          box-shadow: inset 0 0 15px #fff;
  -webkit-box-shadow: 0 0 15px #fff;
          box-shadow: 0 0 15px #fff;
  padding: 30px;
}
section#paidContents div.paidCp_box div span {
  color: #b87c0c;
}
section#paidContents div.paidCp_box ul li:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section#paidContents div.summary {
  background: #fff;
  padding: 70px 0;
}
section#paidContents div.summary dl.inner dt {
  font-size: 40px;
  color: #b87c0c;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
section#paidContents div.summary dl.inner dd {
  font-size: 24px;
  letter-spacing: 2px;
}
section#paidContents div.summary dl.inner dd:first-of-type {
  text-align: center;
  border: solid 1px #000;
  margin-bottom: 50px;
  padding: 15px 0 18px 0;
}
section#paidContents div.summary dl.inner dd:nth-of-type(2) {
  margin-bottom: 50px;
}
section#paidContents div.summary dl.inner dd:last-of-type {
  font-size: 20px;
  background: #efefef;
  padding: 20px;
}
section#paidContents div.summary dl.inner dd span {
  color: #b87c0c;
}

section#update {
  background: url(../../image/lp_white/update_bg01.jpg) no-repeat top #fefbf3;
  background-size: cover;
  padding: 70px 0;
}
section#update h2 {
  font-size: 80px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
section#update h2 span {
  font-size: 70px;
}
section#update h2 + div {
  font-size: 30px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  margin-bottom: 70px;
}
section#update ul#update_baken {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
section#update ul#update_baken li {
  width: calc(33.3333333333% - 20px);
}
section#update ul#update_baken li:first-child, section#update ul#update_baken li:nth-child(2), section#update ul#update_baken li:nth-child(3) {
  margin-bottom: 30px;
}
section#update ul#update_baken li img {
  -webkit-box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
          box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
section#update dl dt {
  font-size: 65px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 50px;
}
section#update dl dd:first-of-type {
  font-size: 30px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  border: solid 1px #000;
  -webkit-box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
          box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 50px;
  padding: 10px 0 14px 0;
}
section#update dl dd:last-child {
  font-size: 50px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  line-height: 1.3;
}

section#voice {
  background: url(../../image/lp_white/bg_ptt_white01.jpg);
  padding: 70px 0;
}
section#voice h2 {
  font-size: 80px;
  font-weight: normal;
  color: #b87c0c;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
section#voice h2 + p {
  font-size: 30px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-bottom: 80px;
}
section#voice h2 + p img {
  width: 30px;
}
section#voice h2 + p img:last-child {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
section#voice h2 + p span {
  font-size: 40px;
  color: #b87c0c;
  padding-left: 2px;
}
section#voice article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  -webkit-box-shadow: 0 0 10px #e2b869;
          box-shadow: 0 0 10px #e2b869;
  margin-bottom: 50px;
  padding: 30px;
}
section#voice article figure {
  width: 200px;
  -webkit-box-shadow: 0 0 5px #e2b869;
          box-shadow: 0 0 5px #e2b869;
  position: relative;
}
section#voice article figure p {
  width: 80px;
  height: 80px;
  font-size: 25px;
  line-height: 1.2;
  background: #e2b869;
  border: solid 5px #fff;
  border-radius: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 10px;
  right: -15px;
}
section#voice article figure p span {
  font-size: 20px;
  white-space: nowrap;
}
section#voice article dl {
  width: calc(100% - 200px - 30px);
  letter-spacing: 2px;
}
section#voice article dl dt {
  font-size: 32px;
  color: #b87c0c;
  border-bottom: solid 1px #ccc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
section#voice article dl dd {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 2.5px;
}
section#voice article dl dd span {
  background: #ff0;
  color: #e00;
}

section#reasonsToChoose {
  background: url(../../image/lp_white/update_bg01.jpg) no-repeat top;
  background-size: cover;
  padding: 70px 0;
}
section#reasonsToChoose h2 {
  font-size: 70px;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  color: #333;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 80px;
}
section#reasonsToChoose h2 span {
  color: #b87c0c;
}
section#reasonsToChoose p#choose_triangle {
  text-align: center;
  margin-bottom: 90px;
}
section#reasonsToChoose div#chooseDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#reasonsToChoose div#chooseDetails dl {
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.8);
}
section#reasonsToChoose div#chooseDetails dl:nth-child(2), section#reasonsToChoose div#chooseDetails dl:nth-child(3) {
  width: calc(50% - 15px);
}
section#reasonsToChoose div#chooseDetails dl dt {
  font-size: 28px;
  text-align: center;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  padding: 15px;
}
section#reasonsToChoose div#chooseDetails dl dd {
  font-size: 24px;
  padding: 20px;
}
section#reasonsToChoose div#chooseDetails dl:first-child {
  width: 100%;
  margin-bottom: 30px;
}
section#reasonsToChoose div#chooseDetails dl:first-child dt {
  background: -webkit-gradient(linear, left top, right top, from(#0081c8), to(#00b3de));
  background: linear-gradient(to right, #0081c8 0%, #00b3de 100%);
  border: solid 2px #0081c8;
}
section#reasonsToChoose div#chooseDetails dl:nth-child(2) dt {
  background: -webkit-gradient(linear, left top, right top, from(#74b417), to(#a9d226));
  background: linear-gradient(to right, #74b417 0%, #a9d226 100%);
  border: solid 2px #74b417;
}
section#reasonsToChoose div#chooseDetails dl:last-child dt {
  background: -webkit-gradient(linear, left top, right top, from(#dd0060), to(#eb009e));
  background: linear-gradient(to right, #dd0060 0%, #eb009e 100%);
  border: solid 2px #dd0060;
}

section#bestPartner {
  background: url(../../image/lp_white/entrywrap_headbg01.jpg) top center;
  background-size: cover;
  padding: 70px 0;
}
section#bestPartner p#headText {
  font-size: 30px;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-bottom: 50px;
}
section#bestPartner p#headText span {
  color: #b87c0c;
}
section#bestPartner h2 {
  font-size: 70px;
  font-weight: normal;
  color: #b87c0c;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
}
section#bestPartner div.read {
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.5;
}
section#bestPartner ul#read_center {
  padding: 50px;
}
section#bestPartner ul#read_center li {
  text-align: center;
}
section#bestPartner ul#read_center li:first-child {
  font-size: 40px;
  margin-bottom: 30px;
}
section#bestPartner ul#read_center li:nth-child(2) {
  font-size: 30px;
  margin-bottom: 30px;
}
section#bestPartner ul#read_center li:last-child {
  font-size: 38px;
  color: #b87c0c;
}
section#bestPartner ul#futureImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 60px 0;
}
section#bestPartner ul#futureImg li:first-child, section#bestPartner ul#futureImg li:nth-child(2), section#bestPartner ul#futureImg li:nth-child(4), section#bestPartner ul#futureImg li:last-child {
  width: 50%;
}
section#bestPartner ul#futureImg li:nth-child(3) {
  width: 100%;
  color: #fff;
  font-size: 40px;
  text-align: center;
  text-shadow: 1px 1px 0 #833c01;
  padding: 25px 0 30px 0;
  background: #b87c0c;
}
section#bestPartner ul.read_foot li:first-child {
  font-size: 30px;
  color: #b87c0c;
  text-align: center;
  margin-bottom: 40px;
}
section#bestPartner ul.read_foot li:nth-child(2) {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
section#bestPartner ul.read_foot li:nth-child(3) {
  font-size: 24px;
  border: solid 1px #000;
  text-align: center;
  margin-bottom: 40px;
  padding: 25px 0;
}
section#bestPartner ul.read_foot li:last-child {
  font-size: 32px;
  text-align: center;
}
section#bestPartner ul.read_foot li:last-child span {
  color: #b87c0c;
}

section#perfectTiming {
  background: url(../../image/lp_white/update_bg01.jpg) no-repeat top;
  background-size: auto;
  background-size: cover;
  position: relative;
  padding-top: 70px;
}
section#perfectTiming div.inner {
  position: initial;
}
section#perfectTiming h2, section#perfectTiming p, section#perfectTiming div {
  text-align: center;
}
section#perfectTiming h2 {
  font-size: 40px;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  color: #333;
  line-height: 1.4;
  letter-spacing: 3px;
  margin-bottom: 50px;
}
section#perfectTiming h2 span {
  font-size: 60px;
  color: #b87c0c;
}
section#perfectTiming figure {
  text-align: center;
  margin-right: 220px;
}
section#perfectTiming p#money {
  position: absolute;
  left: calc(50% - 750px);
  bottom: 100px;
}
section#perfectTiming p#money img {
  mix-blend-mode: overlay;
}
@media screen and (max-width:1500px) {
  section#perfectTiming p#money {
    width: 100%;
    left: 0;
    top: 150px;
    bottom: initial;
  }
}
section#perfectTiming p#text,
section#perfectTiming div.inner div {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
}
section#perfectTiming p#text {
  font-size: 36px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 3px;
  bottom: 200px;
}
section#perfectTiming div.inner div {
  font-size: 90px;
  font-weight: normal;
  color: #b87c0c;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: 5px;
  bottom: 70px;
}

/* subPage */
main.subPage {
  padding-bottom: 50px;
}
main.subPage header.subPageHeader div.inner {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
main.subPage header.subPageHeader h2 {
  width: 60%;
  font-size: 18px;
  font-size: clamp(18px, 4vw, 35px);
  text-align: left;
  background: rgba(255, 255, 255, 0.8);
  display: block;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 0 !important;
  padding: 30px;
}
main.subPage header.subPageHeader h2 p {
  font-size: 12px;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: initial;
}
main.subPage section.contents {
  padding: 40px 0;
}
main.subPage section.contents figure {
  text-align: center;
}
main.subPage section.contents div.inner {
  font-size: 20px;
}

/* /subPage */
main.privacy header.subPageHeader, main.terms header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_privacy01.jpg) no-repeat center;
  background-size: cover;
}
main.privacy section.contents, main.terms section.contents {
  letter-spacing: 2px;
  line-height: 1.5;
}
main.privacy section.contents dl, main.terms section.contents dl {
  margin: 30px 0;
}
main.privacy section.contents dl dt, main.terms section.contents dl dt {
  background: #f3e0be;
  margin-bottom: 20px;
  padding: 15px;
}
main.privacy section.contents dl ul, main.terms section.contents dl ul, main.privacy section.contents dl ol, main.terms section.contents dl ol {
  list-style-type: disc;
  list-style-position: inside;
  padding-top: 20px;
}
main.privacy section.contents dl ul li, main.terms section.contents dl ul li, main.privacy section.contents dl ol li, main.terms section.contents dl ol li {
  text-indent: -1.4em;
  padding-left: 1.5em;
}

main.terms header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_terms01.jpg) no-repeat center;
  background-size: cover;
}
main.terms section.contents {
  letter-spacing: 2px;
  line-height: 1.5;
}
main.terms section.contents dl:first-of-type {
  margin-top: initial;
}
main.terms section.contents ol {
  list-style-type: decimal !important;
}
main.terms section.contents ol.ol_only {
  padding: initial;
}
main.terms section.contents ol li {
  text-indent: -1.1em !important;
  padding-left: 1.1em !important;
}
main.terms section.contents ol li div {
  padding: 10px;
}

main.commerce header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_commerce01.jpg) no-repeat center;
  background-size: cover;
}
main.commerce section.contents dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main.commerce section.contents dl dt, main.commerce section.contents dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #ddd;
  padding: 30px 0;
}
main.commerce section.contents dl dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}
main.commerce section.contents dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
}

main.login header.subPageHeader,
main.forget header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_mypage01.jpg) no-repeat center;
  background-size: cover;
}
main.login div#formWrap,
main.forget div#formWrap {
  max-width: 750px;
  width: 100%;
  -webkit-box-shadow: 0 0 5px #ccc;
          box-shadow: 0 0 5px #ccc;
  margin: 50px auto;
  padding: 30px;
}
main.login div#formWrap dl,
main.forget div#formWrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-bottom: 25px;
}
main.login div#formWrap dl:hover,
main.forget div#formWrap dl:hover {
  border: solid 1px #e2b869;
}
main.login div#formWrap dl:hover dt,
main.forget div#formWrap dl:hover dt {
  background: #e2b869;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
main.login div#formWrap dl dt,
main.forget div#formWrap dl dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 150px;
          flex: 0 1 150px;
  text-align: center;
  background: #efefef;
  border-radius: 4px 0 0 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 30px 20px;
}
main.login div#formWrap dl dd,
main.forget div#formWrap dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 200px);
          flex: 1 0 calc(100% - 200px);
}
main.login div#formWrap dl dd input,
main.forget div#formWrap dl dd input {
  width: 100%;
  height: 89px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  display: block;
  outline: none;
  zoom: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px 15px;
}
main.login div#formWrap div.login_button,
main.forget div#formWrap div.login_button {
  text-align: center;
  margin-bottom: 20px;
}
main.login div#formWrap div.login_button input,
main.forget div#formWrap div.login_button input {
  max-width: 500px;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 0 #3d910b;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#a0e01a), to(#3d910b));
  background: linear-gradient(to bottom, #a0e01a, #3d910b);
  border: solid 3px #8fc31f;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px 40px;
}
main.login div#formWrap div.login_button input:hover,
main.forget div#formWrap div.login_button input:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
main.login div#formWrap p.forget,
main.forget div#formWrap p.forget {
  text-align: center;
}

main.forget header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_freeplan01.jpg) no-repeat center;
  background-size: cover;
}
main.forget p#forgetRead {
  text-align: center;
}
main.forget.fg_comp section.contents {
  padding-top: 80px;
}
main.forget.fg_comp h4 {
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  background: #f3e0be;
  margin-bottom: 30px;
  padding: 15px;
}
main.forget.fg_comp div.headText {
  text-align: center;
  margin-bottom: 80px;
}
main.forget.fg_comp dl#mailNotReceived {
  border: solid 1px #ccc;
  border-radius: 5px;
}
main.forget.fg_comp dl#mailNotReceived dt, main.forget.fg_comp dl#mailNotReceived dd {
  padding: 20px;
}
main.forget.fg_comp dl#mailNotReceived dt {
  text-align: center;
  background: #efefef;
  border-radius: 4px 4px 0 0;
}

main.entry header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_terms01.jpg) no-repeat center;
  background-size: cover;
}
main.entry h4 {
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  background: #f3e0be;
  margin-bottom: 30px;
  padding: 15px;
}
main.entry div#entryWrap {
  padding: 30px;
}
main.entry div#entryWrap p {
  text-align: center;
  line-height: 1.5;
  border: solid 3px #f00;
  margin: 25px 0;
  padding: 10px;
}
main.entry div#entryWrap span {
  color: #c00;
}
main.entry dl {
  border: solid 1px #ccc;
  border-radius: 5px;
}
main.entry dl dt, main.entry dl dd {
  padding: 20px;
}
main.entry dl dt {
  text-align: center;
  background: #efefef;
  border-radius: 4px 4px 0 0;
}

div.line_b {
  text-align: center;
  padding-top: 50px;
}
div.line_b img {
  max-width: 500px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
div.line_b img:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

main.error header.subPageHeader {
  background: url(../../image/lp_white/subpage_head_img_mypage01.jpg) no-repeat center;
  background-size: cover;
}
main.error div#errorWrap {
  max-width: 750px;
  width: 100%;
  -webkit-box-shadow: 0 0 5px #ccc;
          box-shadow: 0 0 5px #ccc;
  margin: 50px auto;
  padding: 30px;
}

@media screen and (max-width: 1200px) and (max-width: 800px) {
  div.openbtn1 {
    width: 45px;
    height: 45px;
    background: none;
    cursor: pointer;
    display: block !important;
    position: fixed;
    z-index: 9999;
    top: 3px;
    right: 10px;
  }
  div.openbtn1 span {
    width: 60%;
    height: 3px;
    background: #000;
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 9px;
  }
  div.openbtn1 span:first-child {
    top: 12px;
  }
  div.openbtn1 span:nth-child(2) {
    top: 21px;
  }
  div.openbtn1 span:last-child {
    top: 30px;
  }
  div.openbtn1.active span:first-child {
    top: 15px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }
  div.openbtn1.active span:nth-child(2) {
    opacity: 0;
  }
  div.openbtn1.active span:last-child {
    top: 27px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
  }
  nav#g-nav {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
  }
  nav#g-nav.panelactive {
    right: 0;
  }
  nav#g-nav div#g-nav-list {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav#g-nav div#g-nav-list h2 {
    margin-bottom: 10px !important;
    padding: 25px 15px 0 25px;
  }
  nav#g-nav div#g-nav-list h2 img {
    width: 50%;
  }
  nav#g-nav div#g-nav-list h2:before {
    display: none;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu {
    background: #e2b869;
    border-radius: 5px;
    margin: 0 25px;
    padding: 5px;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu h5 {
    font-weight: initial;
    margin-bottom: 5px;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu div {
    background: #fff;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu div dl {
    width: calc(50% - 2.5px);
    margin-bottom: 5px;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu div dl dt, nav#g-nav div#g-nav-list div#memberInfo_spMenu div dl dd {
    font-size: 12px;
    font-size: clamp(1rem, 1vw, 1rem);
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu div dl dt {
    text-align: center;
    background: #e2b869;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu div dl dd {
    text-align: center;
    background: #f0f0f0;
    padding: 5px 3px 3px 3px;
  }
  nav#g-nav div#g-nav-list div#memberInfo_spMenu div a {
    width: 100%;
    font-size: 12px;
    font-size: clamp(1rem, 1vw, 1rem);
    text-align: center;
    text-decoration: none;
    border: solid 1px #e2b869;
    display: block;
    padding: 10px;
  }
  nav#g-nav div#g-nav-list ul.main_navi {
    padding: 15px 25px 0 25px;
  }
  nav#g-nav div#g-nav-list ul.main_navi li {
    text-align: center;
    margin-bottom: 15px;
  }
  nav#g-nav div#g-nav-list ul.main_navi li a {
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 15px;
  }
  nav#g-nav div#g-nav-list ul.main_navi li:first-child {
    background: #f3e0be;
    border: solid 1px #e2b869;
    -webkit-box-shadow: 0 1px 0 #d59a29;
            box-shadow: 0 1px 0 #d59a29;
  }
  nav#g-nav div#g-nav-list ul.main_navi li:last-child {
    background: #f2f2f2;
    border: solid 1px #ccc;
    -webkit-box-shadow: 0 1px 0 #a6a6a6;
            box-shadow: 0 1px 0 #a6a6a6;
  }
  nav#g-nav div#g-nav-list ul.sub_navi {
    padding: 0 25px 15px 25px;
  }
  nav#g-nav div#g-nav-list ul.sub_navi li {
    margin-bottom: 5px;
  }
  nav#g-nav div#g-nav-list ul.sub_navi a {
    font-size: 12px;
    font-size: clamp(1rem, 1vw, 1rem);
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 0 #000;
    text-decoration: none;
    background: #222;
    display: block;
    background-size: 50px;
    border-radius: 5px;
    border-bottom: solid 3px #666;
    position: relative;
    padding: 6px 0;
  }
  nav#g-nav div#g-nav-list ul.sub_navi a:before {
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 0.5rem;
    top: calc(50% - 3px);
  }
  nav#g-nav div#g-nav-list ul#bn_service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
    padding: 0 25px;
  }
  nav#g-nav div#g-nav-list ul#bn_service li {
    width: calc(33.3333333333% - 5px);
  }
  nav#g-nav {
    display: block !important;
  }
}
@media screen and (max-width: 1200px) {
  *:hover figure, *:hover img {
    opacity: initial !important;
  }
  .sp {
    display: inline;
  }
}
@media screen and (max-width: 1200px) and (max-width:375px) {
  .sp375 {
    display: inline;
  }
}
@media screen and (max-width: 1200px) {
  .pc {
    display: none;
  }
  div.container {
    overflow: hidden;
  }
  div.inner {
    padding: 0 15px;
  }
  h2 {
    font-size: 20px;
    font-size: 5vw;
  }
  h2 span {
    font-size: 14px;
    font-size: 3vw;
    text-align: center;
  }
  h2 span:before {
    content: "";
    width: 15% !important;
    height: 2px !important;
    display: block;
    position: absolute;
    top: 5px !important;
    left: 42.5% !important;
  }
  h2#spPlan {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 3vw;
  }
  h2#spPlan span {
    width: 100%;
    border: initial;
    margin: initial;
    padding: 15px 0;
  }
  h2#spPlan span:before {
    border-top: solid 2px #fff;
  }
  h3 {
    font-size: initial;
    padding: 15px 10px;
  }
  ul.pager li a {
    font-size: initial;
    padding: 15px 17px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  ul.pager {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.pager li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  p#subEntry {
    width: 70px;
    height: 70px;
    bottom: 90px;
    right: 10px;
  }
  p#subEntry img:first-child {
    display: none;
  }
  p#subEntry img:last-child {
    display: initial;
  }
}
@media screen and (max-width: 1200px) {
  header:not(.subPageHeader) {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: initial;
  }
  header:not(.subPageHeader) div.inner {
    background-size: 100% 1px;
    padding: 15px 10px !important;
  }
  header:not(.subPageHeader) h1 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header:not(.subPageHeader) h1 img {
    width: 165px !important;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  header:not(.subPageHeader) {
    height: 50px;
  }
  header:not(.subPageHeader) h1 {
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    left: 15px;
    display: initial !important;
    top: 6px;
  }
  header:not(.subPageHeader) h1 img {
    width: 150px;
  }
  header:not(.subPageHeader) ul#miniNav {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  button.spMenuBtn {
    width: 60px;
    min-height: 50px;
    font-family: source-han-sans-japanese, sans-serif;
    color: #fff;
    font-size: 0.7rem;
    background: #004831;
    border: none;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  button.spMenuBtn.active {
    color: #000;
    background: #ffc501;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  div.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  div.overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  nav.spMenu {
    max-width: 450px;
    width: 85%;
    height: 100dvh !important;
    background: #004831;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
    z-index: 9;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  nav.spMenu.open {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  nav.spMenu div.sp_cpBn {
    width: calc(100% - 2rem);
    height: auto;
    padding: 0.5rem 1rem;
  }
  nav.spMenu ul#squareButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 1rem 0 1rem;
  }
  nav.spMenu ul#squareButton li {
    width: calc(49% - 10px);
    line-height: 1;
    border: solid 4px #fff;
    border-radius: 0.5rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    /*
    &:first-child,
    &.norButton,
    &#copyright{
      width:100%;
      height:auto;
      font-size:.8rem;
      border:none;
      margin-bottom:1rem;
      padding:1rem 0;
    }       
    &.norButton{
      margin-bottom:.5rem;
      padding:0;
      a{
        @include grad_gray;
        width:100%;
        border:solid 1px #657c00;
        border-radius:5px;
        display:block;
        padding:1rem 0;
      }
    }
    */
  }
  nav.spMenu ul#squareButton li a {
    font-family: source-han-sans-japanese, sans-serif;
    font-size: 10px;
    font-size: clamp(0.8rem, 3vw, 1rem);
    text-align: center;
    color: #000;
    text-decoration: none;
  }
  nav.spMenu ul#squareButton li:not(nav.spMenu ul#squareButton li.cpBn_sp, nav.spMenu ul#squareButton li.norButton, nav.spMenu ul#squareButton li#copyright) {
    -webkit-box-shadow: 1px 1px 1px black;
            box-shadow: 1px 1px 1px black;
  }
  nav.spMenu ul#squareButton li:not(nav.spMenu ul#squareButton li.cpBn_sp, nav.spMenu ul#squareButton li.norButton, nav.spMenu ul#squareButton li#copyright) img {
    max-width: 110px;
    width: 50%;
    display: block;
    margin: -0.5rem auto 0.3rem auto;
  }
  nav.spMenu ul#squareButton li.umaCenter {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: none;
    background: none;
    padding: 0;
  }
  nav.spMenu ul#squareButton li.umaCenter img {
    max-width: 90px !important;
    width: 100% !important;
    margin: 0 !important;
  }
  nav.spMenu ul#rectangleButton {
    margin-bottom: 10rem;
    padding: 0 1rem;
  }
  nav.spMenu ul#rectangleButton li {
    margin-bottom: 0.5rem;
  }
  nav.spMenu ul#rectangleButton li a {
    background: #ffffff; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#efefef));
    background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#efefef",GradientType=0 ); /* IE6-9 */
    font-family: source-han-sans-japanese, sans-serif;
    font-size: 0.8rem;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 1px 1px 1px #003c6b;
            box-shadow: 1px 1px 1px #003c6b;
    display: block;
    border-radius: 5px;
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1200px) {
  nav.spMenu {
    max-width: 450px;
    width: 30%;
  }
}
@media screen and (max-width: 1200px) {
  nav#gNavi ul.inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
  }
  nav#gNavi ul.inner li {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: initial;
  }
  nav#gNavi ul.inner li a {
    font-size: 6px;
    font-size: clamp(6px, 1.45vw, 24px);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav#gNavi ul.inner li img {
    width: 30px;
    display: initial;
  }
  nav#gNavi ul.inner li span {
    text-align: center;
  }
  footer div#footerWrap {
    padding: 0 0 25px 0;
  }
  footer div.inner {
    padding: initial;
  }
}
@media screen and (max-width: 1200px) and (max-width:1000px) {
  footer nav#fNavi {
    margin-bottom: 20px;
    padding: initial;
  }
  footer nav#fNavi ul {
    background: #000;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer nav#fNavi ul li {
    background: none !important;
    padding: initial;
  }
  footer nav#fNavi ul li:not(:last-child) {
    border-bottom: solid 1px #333;
  }
  footer nav#fNavi ul li a {
    font-size: initial;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px;
  }
  footer nav#fNavi ul li a:before {
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 0.5rem;
    top: calc(50% - 3px);
  }
  footer nav#fNavi ul li a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 1200px) {
  footer section#law ul {
    padding: 0 15px 0 30px;
  }
  footer div.copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
  footer div.copyright img {
    min-width: 150px;
    width: 30%;
    margin: 0 0 5px 0;
  }
  footer div.copyright small {
    color: #666;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  footer div.copyright small {
    font-size: 3vw;
  }
}
@media screen and (max-width: 1200px) {
  main.subPage header.subPageHeader div.inner {
    height: 200px;
  }
  main.subPage header.subPageHeader div.inner h2 {
    margin-top: 5vw;
    padding: 10px;
  }
  main.subPage section.contents {
    padding-top: 10px;
    padding-bottom: initial;
  }
  main.subPage section.contents div.inner {
    padding: 15px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  main.subPage header.subPageHeader div.inner {
    height: 120px;
  }
}
@media screen and (max-width: 1200px) {
  section#foot_recommendContents {
    padding-bottom: initial;
  }
  section#foot_recommendContents div.inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px;
  }
  section#foot_recommendContents div.inner a {
    font-size: initial;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#foot_recommendContents div.inner a {
    width: 100%;
    font-size: 14px;
  }
  section#foot_recommendContents div.inner a:not(:last-child) {
    margin-bottom: 10px;
  }
  section#foot_recommendContents div.inner a dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section#foot_recommendContents div.inner a dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  section#foot_recommendContents div.inner a dl dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(60% - 20px);
            flex: 0 0 calc(60% - 20px);
  }
}
@media screen and (max-width: 1200px) {
  section#stage {
    height: 80vh;
    padding: 20px 0 30px 0;
  }
  section#stage h1 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) and (max-height: 1000px) {
  section#stage div#textWrap {
    margin-top: 14vw;
    margin-bottom: initial;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#stage div#textWrap {
    -webkit-transform: scale(90%);
            transform: scale(90%);
    margin: 20vw 0 0 0;
  }
  section#stage div#textWrap h1 {
    margin-bottom: 30px;
  }
  section#stage div#textWrap h1 small {
    margin-bottom: 10px;
  }
  section#stage div#textWrap h2 {
    font-size: 15vw;
    text-indent: 20px;
    margin-bottom: 40px;
  }
  section#stage div#textWrap div {
    font-size: 7vw;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  section#stage div#textWrap div:first-line {
    font-size: 7vw;
  }
  section#stage div#textWrap div span.large {
    font-size: 10vw;
  }
  section#stage div#textWrap div span.small {
    font-size: 7vw;
  }
  section#stage div#textWrap div#publicOffering {
    font-size: 4vw;
    line-height: 1.5;
    padding-top: 25px;
  }
  section#stage div#textWrap div#publicOffering:first-line {
    font-size: 4vw;
  }
  section#stage div#textWrap dl {
    width: calc(100% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: initial;
  }
  section#stage div#textWrap dl dt {
    font-size: 6vw !important;
    white-space: nowrap;
    padding: 15px 0 5px 0;
  }
  section#stage div#textWrap dl dt span {
    white-space: nowrap;
  }
  section#stage div#textWrap dl dd {
    text-align: center;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 1200px) {
  section#entryCampaign {
    padding: 7vw 0;
  }
  section#entryCampaign h2 {
    margin-bottom: 3vw;
  }
  section#entryCampaign div.entryCamp_wrap p {
    width: 11vw;
    text-align: center;
    left: calc(50% - 5.5vw);
    bottom: 7vw;
  }
  section#entryCampaign div.entryCamp_wrap dl dt {
    margin-bottom: -8vw;
  }
  section#entryCampaign div.entryCamp_wrap dl dd {
    border: solid 3px #e2b869;
    padding: 10vw 15px 20px 15px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#entryCampaign div.entryCamp_wrap p {
    bottom: 10vw;
  }
  section#entryCampaign div.entryCamp_wrap dl {
    width: calc(50% - 5px);
  }
  section#entryCampaign div.entryCamp_wrap dl dt {
    text-align: center;
  }
  section#entryCampaign div.entryCamp_wrap dl dt img {
    width: 85%;
  }
  section#entryCampaign div.entryCamp_wrap dl dd {
    height: 13vw;
    text-align: center;
    padding: 9vw 12px 5.5vw 12px;
  }
}
@media screen and (max-width: 1200px) {
  section#entryWrap {
    background-size: initial;
    padding: 40px 0 6vw 0;
  }
  section#entryWrap h2.headTitle {
    font-size: 12vw !important;
  }
  section#entryWrap h2.headTitle small {
    font-size: 5vw;
  }
  section#entryWrap h2.headTitle span {
    font-size: 10vw !important;
  }
  section#entryWrap section.entry_form h3 p {
    width: 70%;
    left: 15%;
  }
  section#entryWrap section.entry_form div.entry_inner {
    padding: 15px 15px 5px 15px;
  }
  section#entryWrap section.entry_form.reg_sns div.entry_inner a {
    width: calc(50% - 5px);
    text-align: center;
  }
  section#entryWrap section#step h2 img {
    width: 80%;
  }
  section#entryWrap section#step dl dt:before {
    border-left: 15vw solid transparent;
    border-right: 15vw solid transparent;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#entryWrap h2 {
    margin-bottom: 16vw;
  }
  section#entryWrap section.entry_form {
    border: solid 3px #e2b869;
    background-size: 50%;
    margin-bottom: 14vw;
  }
  section#entryWrap section.entry_form h3 {
    padding: 8vw 15px 4vw 15px;
  }
  section#entryWrap section.entry_form h3 p {
    border: solid 3px #e2b869;
    top: -6vw;
  }
  section#entryWrap section.entry_form div.entry_inner input.addressform {
    font-size: 100%;
    border: solid 3px #e2b869 !important;
    padding: 30px 20px;
  }
  section#entryWrap section.entry_form div.entry_inner div.note {
    font-size: 100%;
  }
  section#entryWrap section.entry_form.reg_sns h3 p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 0;
  }
  section#entryWrap section.entry_form.reg_sns div.entry_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section#entryWrap section.entry_form.reg_sns div.entry_inner a {
    width: 100%;
  }
  section#entryWrap section.entry_form.reg_sns div.entry_inner a:nth-child(3) {
    margin-bottom: 12px;
  }
  section#entryWrap section#step dl {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
  section#entryWrap section#step dl:before {
    display: none;
  }
  section#entryWrap section#step dl dt {
    font-size: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section#entryWrap section#step dl dt span {
    font-size: 5vw;
    padding: initial;
  }
  section#entryWrap section#step dl dt:before {
    border-left: 8vw solid transparent;
    border-right: 8vw solid transparent;
  }
  section#entryWrap section#step dl dd {
    padding: 10px 15px 40px 15px;
  }
  section#entryWrap section#step dl dd h4 {
    font-size: 5vw;
  }
  section#entryWrap section#step dl:last-of-type dt:before {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  section#industryBest {
    padding: 10vw 0;
  }
  section#industryBest h2#industryBest_h2 {
    font-size: initial !important;
  }
  section#industryBest h2#industryBest_h2 small span:first-child {
    font-size: 7vw;
  }
  section#industryBest h2#industryBest_h2 small span:last-child {
    font-size: 6vw;
  }
  section#industryBest h2#industryBest_h2 span[data-text=リピート率], section#industryBest h2#industryBest_h2 span[data-text=満足度] {
    font-size: 8vw;
  }
  section#industryBest h2#industryBest_h2 span[data-text="&"] {
    font-size: 6vw !important;
  }
  section#industryBest div:not(.inner) {
    font-size: 100%;
  }
  section#industryBest section#cycle {
    padding: 5vw 0;
  }
  section#industryBest section#cycle div.inner {
    padding: initial;
  }
  section#industryBest section#cycle h2 {
    font-size: 7.5vw;
    margin-bottom: 5vw;
  }
  section#industryBest section#cycle h2 small {
    font-size: 5vw;
  }
  section#industryBest section#cycle div.grafWrap dl {
    width: calc(50% - 5px);
  }
  section#industryBest section#cycle div.grafWrap dl dt {
    font-size: 4.5vw;
    margin-bottom: 3vw;
  }
  section#industryBest h3 {
    margin: 2vw 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#industryBest ul li:nth-child(2) {
    bottom: -20vw;
  }
  section#industryBest ul li:last-child {
    margin-top: -5vw;
  }
  section#industryBest section#cycle {
    padding: 0 0 2vw 0;
  }
  section#industryBest section#cycle div.grafWrap dl dt {
    padding: 1vw 0 1.5vw 0;
  }
  section#industryBest h3 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 1200px) and (max-width:430px) {
  section#industryBest ul {
    margin-bottom: 24vw;
  }
}
@media screen and (max-width: 1200px) {
  section#future {
    padding: 12vw 0;
  }
  section#future div {
    font-size: 4vw !important;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff !important;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#future h2 {
    margin-bottom: 4vw;
  }
  section#future h2 img {
    width: 60%;
  }
}
@media screen and (max-width: 1200px) {
  section#freeContents {
    padding: 30px 0;
  }
  section#paidContents {
    padding: 30px 0 0 0;
  }
  section#freeContents p,
  section#paidContents p {
    font-size: 6vw !important;
    line-height: 1.2;
    margin-bottom: 6vw !important;
  }
  section#freeContents p span span,
  section#paidContents p span span {
    font-size: 10vw !important;
  }
  section#freeContents div.mainText,
  section#paidContents div.mainText {
    margin-bottom: 10vw !important;
  }
  section#freeContents div.mainText small,
  section#paidContents div.mainText small {
    font-size: 4.5vw !important;
  }
  section#freeContents div.mainText small img,
  section#paidContents div.mainText small img {
    width: 4vw !important;
  }
  section#freeContents div.mainText h2,
  section#paidContents div.mainText h2 {
    font-size: 8vw !important;
    margin-bottom: 3vw !important;
  }
  section#freeContents div.mainText ul li,
  section#paidContents div.mainText ul li {
    font-size: 3vw !important;
  }
  section#freeContents div.mainText ul li:first-child,
  section#paidContents div.mainText ul li:first-child {
    margin-bottom: 1vw !important;
  }
  section#freeContents div.mainText p#free_horse,
  section#paidContents div.mainText p#free_horse {
    right: -40vw !important;
  }
  section#freeContents div.mainText p#paid_horse,
  section#paidContents div.mainText p#paid_horse {
    left: -70vw !important;
  }
  section#freeContents h3,
  section#paidContents h3 {
    padding: 2vw 4vw;
  }
  section#freeContents h3:after,
  section#paidContents h3:after {
    width: 50%;
  }
  section#freeContents h3 div,
  section#paidContents h3 div {
    font-size: 5vw;
  }
  section#freeContents h3 small,
  section#paidContents h3 small {
    width: 100%;
    font-size: 3.5vw;
  }
  section#freeContents div.freeCp_box,
  section#freeContents div.paidCp_box,
  section#paidContents div.freeCp_box,
  section#paidContents div.paidCp_box {
    padding: 7vw 0 8vw 0;
  }
  section#freeContents div.freeCp_box h4,
  section#freeContents div.paidCp_box h4,
  section#paidContents div.freeCp_box h4,
  section#paidContents div.paidCp_box h4 {
    font-size: 6vw;
    margin-bottom: 6vw;
  }
  section#freeContents div.freeCp_box h4 + p,
  section#freeContents div.paidCp_box h4 + p,
  section#paidContents div.freeCp_box h4 + p,
  section#paidContents div.paidCp_box h4 + p {
    width: calc(100% - 30px);
    font-size: 80% !important;
    margin: 20px 15px 50px 15px !important;
  }
  section#freeContents div.freeCp_box ul,
  section#freeContents div.paidCp_box ul,
  section#paidContents div.freeCp_box ul,
  section#paidContents div.paidCp_box ul {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    margin-bottom: 6vw;
    padding: 0 15px;
  }
  section#freeContents div.freeCp_box ul li,
  section#freeContents div.paidCp_box ul li,
  section#paidContents div.freeCp_box ul li,
  section#paidContents div.paidCp_box ul li {
    width: 100% !important;
    font-size: initial !important;
  }
  section#freeContents div.freeCp_box ul li:first-child,
  section#freeContents div.paidCp_box ul li:first-child,
  section#paidContents div.freeCp_box ul li:first-child,
  section#paidContents div.paidCp_box ul li:first-child {
    text-align: center;
    margin-bottom: 5vw;
  }
  section#freeContents div.freeCp_box ul li:first-child img,
  section#freeContents div.paidCp_box ul li:first-child img,
  section#paidContents div.freeCp_box ul li:first-child img,
  section#paidContents div.paidCp_box ul li:first-child img {
    -webkit-box-shadow: 5px 5px 0 #f7ebd3;
            box-shadow: 5px 5px 0 #f7ebd3;
  }
  section#freeContents div.freeCp_box ul li a,
  section#freeContents div.paidCp_box ul li a,
  section#paidContents div.freeCp_box ul li a,
  section#paidContents div.paidCp_box ul li a {
    margin-top: 5vw !important;
  }
  section#freeContents div.freeCp_box div,
  section#freeContents div.paidCp_box div,
  section#paidContents div.freeCp_box div,
  section#paidContents div.paidCp_box div {
    font-size: initial !important;
    margin: 0 15px;
    padding: 3vw !important;
  }
  section#freeContents div.summary,
  section#paidContents div.summary {
    padding: 7vw 0 !important;
  }
  section#freeContents div.summary.free,
  section#paidContents div.summary.free {
    padding: 7vw 15px !important;
  }
  section#freeContents div.summary dl.inner,
  section#paidContents div.summary dl.inner {
    padding: 0 15px;
  }
  section#freeContents div.summary dl dt,
  section#paidContents div.summary dl dt {
    font-size: 5vw !important;
    margin-bottom: 5vw !important;
  }
  section#freeContents div.summary dl dd,
  section#paidContents div.summary dl dd {
    font-size: initial !important;
  }
  section#freeContents div.summary dl dd:first-of-type,
  section#paidContents div.summary dl dd:first-of-type {
    margin-bottom: 4vw !important;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  section#freeContents div.mainText ul li,
  section#paidContents div.mainText ul li {
    width: 100%;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
@media screen and (max-width: 1200px) {
  section#update {
    padding: 6vw 0;
  }
  section#update h2 {
    font-size: 8vw;
    margin-bottom: 3vw;
  }
  section#update h2 span {
    font-size: 7vw;
  }
  section#update h2 + div {
    font-size: 3.5vw;
    margin-bottom: 5vw;
  }
  section#update ul#update_baken {
    margin-bottom: 8vw;
  }
  section#update ul#update_baken li {
    width: calc(33.3333333333% - 10px);
  }
  section#update dl dt {
    font-size: 5.5vw;
    margin-bottom: 7vw;
  }
  section#update dl dd:first-of-type {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
  section#update dl dd:last-child {
    font-size: 6vw;
  }
}
@media screen and (max-width: 1200px) and (max-width:640px) {
  section#update ul#update_baken {
    margin-bottom: 3vw;
  }
  section#update ul#update_baken li {
    width: calc(50% - 10px);
  }
  section#update ul#update_baken li:not(:nth-child(6), :last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  section#voice {
    background-size: 50%;
    padding: 5vw 0;
  }
  section#voice h2 {
    font-size: 9vw;
  }
  section#voice h2 + p {
    font-size: 6vw;
    margin-bottom: 10vw;
  }
  section#voice h2 + p span {
    font-size: 9vw;
  }
  section#voice h2 + p img {
    width: 6vw;
  }
  section#voice article {
    -webkit-box-shadow: 0 0 5px #e2b869;
            box-shadow: 0 0 5px #e2b869;
    margin-bottom: 8vw;
    padding: 5vw;
  }
}
@media screen and (max-width: 1200px) and (max-width:640px) {
  section#voice article dl {
    width: 100%;
  }
  section#voice article dl dt {
    font-size: 5vw;
    margin-bottom: 5vw;
    padding-bottom: 4vw;
  }
  section#voice article dl figure {
    width: 25vw;
    -webkit-box-shadow: 0 0 3px #e2b869;
            box-shadow: 0 0 3px #e2b869;
    margin: auto auto 5vw auto;
  }
  section#voice article dl figure p {
    width: 9vw;
    height: 9vw;
    font-size: 2vw;
  }
  section#voice article dl figure p span {
    font-size: 2.5vw;
  }
  section#voice article dl dd {
    font-size: initial;
  }
}
@media screen and (max-width: 1200px) {
  section#reasonsToChoose {
    padding: 7vw 0;
  }
  section#reasonsToChoose h2 {
    font-size: 7vw;
    margin-bottom: 5vw;
  }
  section#reasonsToChoose h2 span {
    font-size: 7vw;
  }
  section#reasonsToChoose div.inner p#choose_triangle {
    margin-bottom: 8vw;
  }
  section#reasonsToChoose div.inner div#chooseDetails dl {
    width: 100%;
    margin-bottom: 5vw;
  }
  section#reasonsToChoose div.inner div#chooseDetails dl dt, section#reasonsToChoose div.inner div#chooseDetails dl dd {
    font-size: initial;
    padding: 2vw;
  }
  section#bestPartner {
    padding: 7vw 0;
  }
  section#bestPartner p#headText {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
  section#bestPartner h2 {
    font-size: 7vw;
    margin-bottom: 5vw;
  }
  section#bestPartner div.read {
    font-size: initial;
  }
  section#bestPartner ul#read_center {
    padding: 5vw 0;
  }
  section#bestPartner ul#read_center li:first-child {
    font-size: 6vw;
    line-height: 1.2;
  }
  section#bestPartner ul#read_center li:nth-child(2) {
    font-size: 4vw;
  }
  section#bestPartner ul#read_center li:last-child {
    font-size: 4.5vw;
  }
  section#bestPartner ul#futureImg {
    padding: 7vw 0;
  }
  section#bestPartner ul#futureImg li:nth-child(3) {
    font-size: 5vw;
    line-height: 1.2;
  }
  section#bestPartner ul.read_foot li:first-child {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
  section#bestPartner ul.read_foot li:nth-child(2) {
    font-size: 5vw;
    margin-bottom: 4.5vw;
  }
  section#bestPartner ul.read_foot li:nth-child(3) {
    font-size: 4.5vw;
    margin-bottom: 4vw;
    padding: 2.5vw;
  }
  section#bestPartner ul.read_foot li:last-child {
    font-size: 4.5vw;
  }
  section#perfectTiming {
    overflow: hidden;
    padding-top: 6vw;
  }
  section#perfectTiming h2 {
    font-size: 4vw;
    position: relative;
    z-index: 1;
  }
  section#perfectTiming h2 span {
    font-size: 6vw;
  }
  section#perfectTiming figure {
    -webkit-transform: scale(120%);
            transform: scale(120%);
    margin: 10vw 22vw 0 0;
  }
  section#perfectTiming p#money {
    top: 15vw;
  }
  section#perfectTiming p#text {
    font-size: 4vw;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
    bottom: 20vw;
  }
  section#perfectTiming div.inner div {
    font-size: 9vw;
    bottom: 7vw;
  }
  main.subPage header.subPageHeader {
    padding: 35px 0 15px 0;
  }
  main.subPage header.subPageHeader div.inner {
    height: 200px;
  }
  main.subPage header.subPageHeader div.inner h2 {
    margin-top: 5vw;
    padding: 10px;
  }
  main.subPage section.contents {
    padding-top: 10px;
    padding-bottom: initial;
  }
  main.subPage section.contents div.inner {
    padding: 15px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 800px) {
  main.subPage header.subPageHeader div.inner {
    height: 120px;
  }
}
@media screen and (max-width: 1200px) {
  main.commerce section.contents dl dt, main.commerce section.contents dl dd {
    font-size: initial;
    border-bottom: none;
  }
  main.commerce section.contents dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 20px);
            flex: 0 0 calc(100% - 20px);
    background: #f3e0be;
    padding: 10px;
  }
  main.commerce section.contents dl dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 20px);
            flex: 0 0 calc(100% - 20px);
    display: initial;
    padding: 15px 10px;
  }
  main.privacy section.contents div, main.terms section.contents div, main.privacy section.contents dt, main.terms section.contents dt, main.privacy section.contents dd, main.terms section.contents dd {
    font-size: initial;
  }
  main.login div#formWrap,
  main.forget div#formWrap {
    max-width: calc(100% - 30px);
    margin: 0 auto;
    padding: 15px 15px 25px 15px;
  }
  main.login div#formWrap dl,
  main.forget div#formWrap dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.login div#formWrap dl dt, main.login div#formWrap dl dd,
  main.forget div#formWrap dl dt,
  main.forget div#formWrap dl dd {
    font-size: initial;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding: 10px;
  }
  main.login div#formWrap dl input,
  main.forget div#formWrap dl input {
    height: initial !important;
    font-size: initial;
  }
  main.login p.forget,
  main.forget p.forget {
    font-size: initial;
    text-align: center;
  }
  main.forget p#forgetRead {
    font-size: initial;
    text-align: center;
    margin-bottom: 30px;
  }
  main.forget div#formWrap {
    padding: 15px 15px 25px 15px;
  }
  main.forget div#formWrap div.login_button {
    margin-bottom: initial;
  }
  main.forget.fg_comp section.contents {
    padding-top: 15px;
  }
  main.forget.fg_comp h4 {
    font-size: initial;
  }
  main.forget.fg_comp div.headText {
    font-size: initial;
    margin-bottom: 40px;
  }
  main.forget.fg_comp dl#mailNotReceived dt, main.forget.fg_comp dl#mailNotReceived dd {
    font-size: initial;
    padding: 10px;
  }
  main.entry section.contents {
    padding-top: 15px;
  }
  main.entry h4 {
    font-size: initial;
  }
  main.entry div#entryWrap {
    font-size: initial;
    padding: initial;
  }
  main.entry div#entryWrap p {
    text-align: left;
  }
  main.entry dl dt, main.entry dl dd {
    font-size: initial;
    padding: 10px;
  }
  main.error div#errorWrap {
    max-width: calc(100% - 30px);
    font-size: initial;
    margin: 0 auto;
    padding: 15px 15px 25px 15px;
  }
}
body.iPhone section#article_umabble dd > div,
body.iPad section#article_umabble dd > div {
  line-height: 1.99em !important;
}
body.iPhone section#article_umabble dl.topic01 div.article_img_topic01_hukidashi01,
body.iPad section#article_umabble dl.topic01 div.article_img_topic01_hukidashi01 {
  margin-bottom: -0.3em;
}
body.iPhone section#article_umabble dl.topic01 dl.imgWrap01 img,
body.iPad section#article_umabble dl.topic01 dl.imgWrap01 img {
  margin: 0 auto 30px auto !important;
}
@media screen and (max-width:376px) {
  body.iPhone section#article_umabble dl.topic01 p:nth-of-type(2),
  body.iPad section#article_umabble dl.topic01 p:nth-of-type(2) {
    margin-bottom: 0;
  }
  body.iPhone section#article_umabble dl.topic01 div.article_img_topic01_hukidashi01,
  body.iPad section#article_umabble dl.topic01 div.article_img_topic01_hukidashi01 {
    margin-bottom: 0;
  }
}
body.iPhone section#article_umabble dl.topic03 p:first-of-type img,
body.iPad section#article_umabble dl.topic03 p:first-of-type img {
  margin-bottom: 1.9em;
}
body.iPhone section#article_umabble dl.topic03 div.article_img_topic03_text01,
body.iPad section#article_umabble dl.topic03 div.article_img_topic03_text01 {
  margin-bottom: -0.2em !important;
}
@media screen and (max-width:376px) {
  body.iPhone section#article_umabble dl.topic03 div.article_img_topic03_text01,
  body.iPad section#article_umabble dl.topic03 div.article_img_topic03_text01 {
    margin-bottom: 0.3em !important;
  }
}