@charset "UTF-8";

/* display */

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width:572px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}

article, aside, footer, header, main, nav, section {
  display: block
}

:root {
  --main-color: #FFC812;
  --main-color-hover: #EE3911;
  --link-color: #152C4C;
  --text-primary: #151515;
  --text-secondary: #4A4A4A;
  --primary-color: #000;
  --secondary-color: #000;
  --text-danger: #CF0000;
  --text-success: #00C74F
}

* {
  box-sizing: border-box
}

:after, :before {
  box-sizing: border-box
}

html {
  font-size: 16px;
  scroll-behavior: smooth
}

body {
  font-size: 1rem;
  min-width: 320px;
  margin: 0;
  text-align: left;
  position: relative;
  line-height: 1.5;
  font-family: "FOT-ロダンNTLG Pro B","Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--text-primary);
  opacity: 1;
  background-color: #FFC812;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.overflow-hidden {
  overflow: hidden
}

main {
  position: relative;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  max-width: 1920px;
  overflow-x: hidden
}

main.main-visible {
  opacity: 1
}
header{

  position: relative;
}
aside ol, aside ul, footer ol, footer ul, header ol, header ul {
  list-style: none;
  margin: 0;
  padding: 0
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: all .25s;
}

a:hover {
  text-decoration: none;
  color: var(--link-color)
}

.main-color {
  color: var(--main-color)
}

.list-style-none {
  list-style: none;
  margin: 0;
  padding: 0
}

h1, h2, h3, h4, h5, h6 {
  font-family: "FOT-ロダンNTLG Pro B","Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 600;
  padding: 0;
  margin: 0;
  line-height: 1.3;
  margin-bottom: 2rem
}

h1 {
  font-size: 2.5rem
}

h2 {
  font-size: 1.5rem
}

h3 {
  font-size: 1.125rem
}

h4 {
  font-size: 1.125rem
}

h5, h6 {
  font-size: 1rem
}

p {
  margin: 0 0 2rem;
  font-size: 24px;
  font-weight: bold;
  line-height: 46px;
  font-family: "FOT-ロダンNTLG Pro B","Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

video {
  width: 100%;
  background: #e6e6e6;
  height: 100%;
  /* z-index: 1; */
  /* background-size: cover;
background-position: center center;
position: relative; */
}

.pattern {
  width: 100%;
  height: 56vw;
  background: url(http://www.webcreatorbox.com/sample/images/yokojima.png);
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  z-index: 2;
}


/*=== 9-1-3 マウスが動いてスクロールを促す ====*/


/*スクロールダウン全体の場所*/

.scrolldown3 {
  /*描画位置※位置は適宜調整してください*/
  position: relative;
  margin-top: -13px;
  right: -50%;
  /*マウスの動き1.6秒かけて動く永遠にループ*/
  animation: mousemove 1.6s ease-in-out infinite;
  z-index: 3;
}


/*下からの距離が変化して上から下に動く*/

@keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}


/*Scrollテキストの描写*/

.scrolldown3 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  bottom: 45px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  z-index: 99;
}


/*マウスの中の線描写 */

.scrolldown3 span::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 10px;
  left: 17px;
  /*線の形状*/
  width: 1px;
  height: 15px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: mousepathmove 1.4s linear infinite;
  opacity: 0;
  z-index: 99;
}


/*上からの距離・不透明度・高さが変化して上から下に流れる*/

@keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  50% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}


/*マウスの描写 */

.scrolldown3:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -10px;
  /*マウスの形状*/
  width: 25px;
  height: 37px;
  border-radius: 10px;
  border: 1px solid #eee;
  z-index: 99;
}


/*マウスの中の丸の描写*/

.scrolldown3:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 26px;
  left: 0;
  /*丸の形状*/
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid #eee;
  z-index: 99;
}

.logo_con {
  position: fixed;
  top: -110px;
  left: 20px;
  z-index: 3;
}

.logo_con img {
  width: 60%;
}


/* .wrap{
  position: relative;
  z-index: 99;
} */

@media only screen and (min-width:1800px) {
  html {
    font-size: 18px
  }
}

@media only screen and (min-width:2100px) {
  html {
    font-size: 20px
  }
}

@media only screen and (max-width:1023px) {
  .main-content {
    padding-bottom: 4.5rem
  }
  .main-content-header {
    padding-top: 2rem
  }
  .pagination {
    margin-top: 4.5rem
  }
  .bread-crumbs {
    padding-top: 2rem
  }
  .section {
    padding: 3.5rem 0
  }
  .section-count {
    font-size: 2.9rem;
    line-height: 1
  }
  .main-menu-list {
    font-size: 2.5rem
  }
}

@media only screen and (max-width:767px) {
  h2 {
    font-size: 1.25rem
  }
  .header {
    left: 0;
    top: 1.25rem;
    padding: 0 1rem 0 .75rem;
    width: 100%;
    display: flex;
    justify-content: space-between
  }
  .main-content-header {
    padding-top: 6rem
  }
  .bread-crumbs {
    padding-top: 0
  }
  .intro-header {
    display: none
  }
  .section {
    padding: 3rem 0;
    overflow: hidden
  }
}

.con_title_r {
  position: relative;
  right: -100px;
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: 1920px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4.375rem 0 11.25rem
}

.con01 {
  margin-bottom: 80px;
}

.con01_box {}

.con01_box img {
  width: 450px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.con01_txt {
  padding: 60px 0;
  display: inline-block;
  vertical-align: middle;
}

.con01_txt p {
  text-align: left;
}

.con01_txt p span {
  background: #000;
  padding: 5px;
  color: #FFC812;
  font-size: 30px;
}

.col {
  display: flex;
  flex-basis: 0%;
  flex-grow: 1;
  max-width: 100%
}

.col-1 {
  flex: 0 0 29%;
  max-width: 17%
}

.col-1-2 {
  flex: 0 0 58%;
  max-width: 58%
}

.col-2 {
  flex: 0 0 42%;
  max-width: 42%
}

.col, .col-1, .col-1-2, .col-2 {
  flex-wrap: wrap
}

@media only screen and (max-width:1200px) {
  .container {
    padding-right: 2rem;
    padding-left: 6rem
  }
  .con01_txt p {
    text-align: left;
    width: 40vw;
  }
  .con01_box img {
    width: 40vw;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
  }
}

.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  border: 1px solid var(--text-primary);
  border-radius: var(--radius);
  width: var(--width);
  height: var(--height);
  opacity: 1;
  visibility: visible;
  transform: translate(calc(var(--x) - var(--width)/2), calc(var(--y) - var(--height)/2));
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.25, .25, .42, 1);
  transition-property: width, height, transform;
  z-index: 1111;
  pointer-events: none;
  will-change: transform
}

.cursor.cursor-white {
  border-color: var(--primary-color)
}

.cursor.active {
  border-color: var(--main-color)
}

.cursor.hide {
  opacity: 0;
  visibility: hidden
}

@media(pointer:fine) {
  .cursor {
    display: block
  }
}

.contact {
  position: fixed;
  left: -25px;
  opacity: 0;
  visibility: hidden;
  z-index: 105;
  transition: all .35s, left 0s
}

.contact.open {
  opacity: 1;
  visibility: visible;
  bottom: 0;
  bottom: 68px;
}

.contact-container {
  background: #FFC812;
  border: solid 2px #000;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 25px 20px 20px 40px;
  width: 100%;
  color: #000;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.contact-container:hover {
  background: #000;
  color: #FFC812;
}

.gg-mail, .gg-mail::after {
  display: block;
  box-sizing: border-box;
  height: 14px;
  border: 2px solid
}

.gg-mail {
  overflow: hidden;
  transform: scale(var(--ggs, 1));
  position: relative;
  width: 18px;
  border-radius: 2px;
  margin-top: 10px;
}

.gg-mail::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 14px;
  transform: rotate(-45deg);
  bottom: 3px;
  left: 0
}

@media only screen and (max-width:1200px) {
  .contact {
    left: 2%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    background-color: #a7a29a
  }
  .contact.open {
    bottom: 1rem
  }
  .contact-container {
    width: auto
  }
  .contact-container {
    transform: none
  }
  .contact {
    background-color: #f1f1f1
  }
}

.sidemenu {
  display: none
}

@media only screen and (min-width:768px) {
  .sidemenu {
    display: block;
    position: fixed;
    bottom: 1rem;
    right: 1.1875rem;
    width: 2rem;
    z-index: 10;
    transition: color .2s
  }
  .sidemenu-container {
    display: flex;
    position: relative;
    right: 10px;
    align-items: center;
    width: 100%;
    transform: rotate(-90deg)
  }
  .what, .cando, .subscription, .proflow, .company {
    background-color: #000;
    color: #FFC812;
    padding: 3px 10px;
    font-weight: bold;
    font-size: .6rem;
    line-height: 2rem;
    white-space: nowrap;
    margin: 1px;
  }
  a .what:hover, a .cando:hover, a .subscription:hover, a .proflow:hover, a .company:hover {
    background-color: #FFC812;
    color: #000;
  }
}

@media only screen and (max-width:1200px) {
  .footer {
    right: 0
  }
}


/* デキルコト -------------------------------------------------*/

.con02 {
  background-color: #fff;
  padding-bottom: 120px;
}

.hp_title {
  font-weight: bold;
  font-size: 16px;
}

.con02_box {
  display: inline-block;
  padding: 13px;
}

.con02_box img {
  width: 230px;
}

.benefits {
  width: 100%;
}

.benefits-item {
  display: flex;
  padding: 1.5rem 0;
  transition: background-color .25s
}

.benefits-item.active .bi-counter::after, .benefits-item:hover .bi-counter::after {
  width: 26px
}

.benefits-item:hover {
  background-color: #ffc81263;
}

.benefits-item.active {
  background-color: #ffc81230;
}

.benefits-item.active .bi-btn span::after {
  transform: rotate(0)
}

.bi-counter-outer {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2.25rem
}

.bi-counter {
  color: transparent;
  text-stroke: 2px #000;
  -webkit-text-stroke: 2px #000;
  position: relative;
  font-size: 3rem;
  font-family: 'Kanit', sans-serif;
}

.bi-counter::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 1rem;
  width: 0;
  height: 1px;
  margin-right: 5px;
  margin-top: -2px;
  background-color: #000;
  transition: all .3s
}

.bi-toggle {
  display: flex;
  justify-content: space-between;
  width: 100%
}

.bi-title {
  font-size: 2.75rem;
  font-family: "FOT-ロダンNTLG Pro B","Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.1
}

.bi-btn-outer {
  height: 3rem;
  display: flex;
  align-items: center
}

.bi-btn {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  margin-right: .625rem;
  margin-left: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: solid 2px;
}

.bi-btn:hover::after {
  width: 2rem;
  height: 2rem
}

.bi-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  transition: all .25s
}

.bi-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1
}

.bi-btn span::after, .bi-btn span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .9375rem;
  height: .1875rem;
  margin-left: -.46875rem;
  margin-top: -.09375rem;
  background-color: var(--primary-color);
  transition: all .25s
}

.bi-btn span::after {
  transform: rotate(90deg)
}

.bi-content {
  display: none;
  max-width: 830px;
  color: rgba(21, 21, 21, .7);
  font-size: 1.125rem;
  padding-top: 1.25rem;
  padding-right: .625rem
}

.bi-content p {
  color: rgba(21, 21, 21, .7);
  font-size: 18px;
  text-align: left;
  font-weight: normal;
  line-height: 30px;
}

#benefits .benefits-container {
  padding-top: 60px;
}

@media only screen and (max-width:1441px) {
  .bi-title {
    font-size: 2.25rem
  }
  .bi-content {
    font-size: 1rem
  }
  .bi-counter-outer {
    height: 2rem
  }
  .bi-btn-outer {
    height: 2.5rem
  }
}

@media only screen and (max-width:1200px) {
  .bi-title {
    font-weight: 600;
    font-size: 2rem;
    padding-top: .25rem
  }
  .bi-counter-outer {
    height: 2.25rem
  }
}

@media only screen and (max-width:1023px) {
  .bi-title {
    font-size: 1.75rem;
    padding-top: .375rem
  }
  .bi-counter-outer {
    height: 2.375rem
  }
}

@media only screen and (max-width:767px) {
  .benefits-item {
    display: block;
    padding: 1.25rem 1rem 1.5rem
  }
  .bi-counter-outer {
    display: block;
    padding-right: 0;
    height: auto;
    margin-bottom: .25rem
  }
  .bi-counter {
    font-size: 1.25rem
  }
  .bi-counter::after {
    content: none
  }
  .bi-content {
    padding-top: 1rem;
    padding-right: 0
  }
  #benefits .benefits-container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 60px;
  }
  .bi-btn {
    margin-right: 0
  }
}

@media only screen and (max-width:480px) {
  .bi-title br {
    display: none
  }
}

@media only screen and (max-width:400px) {
  .bi-title {
    font-size: 1.65rem
  }
}


/* サブスク ----------------------------------------------*/

.con03 {
  background-color: #FFC812;
  margin-bottom: 60px;
}

.con03_txt {
  padding: 40px 0;
}

.con03_txt p {
  text-align: left;
}

.con03_txt p span {
  background: #000;
  padding: 5px;
  color: #FFC812;
  font-size: 30px;
}

.sub_box {
  display: inline-block;
  vertical-align: top;
}

.sub_box.im img {
  width: 400px;
}

.sub_dot {
  position: relative;
}

.sub_arrow {
  position: relative;
  bottom: 267px;
  right: 10px;
}

.subsc_example img {
  width: 80%;
}

@media only screen and (max-width:1200px) {
  .sub_box.im img {
    width: 30vw;
  }
  .sub_dot img {
    width: 0.4vw;
  }
  .sub_arrow {
    position: relative;
    bottom: 150px;
    right: 10px;
  }
  .sub_arrow img {
    width: 15vw;
  }
}

@media only screen and (max-width:572px) {
  .sub_arrow img {
    width: 60vw;
  }
}


/* セイサクノナガレ ----------------------------------------------*/

.con04 {
  background-color: #fff;
  padding: 0px 0px 40px;
}

.con04_in {
  text-align: center;
  padding: 40px 0;
}

.con04_box {
  display: inline-block;
  padding: 20px;
}

.con04_box img {
  width: 23vw;
}

.con04_title {
  font-weight: bold;
}

.step {
  font-weight: bold;
}

@media only screen and (max-width:1200px) {
  .con04_box img {
    width: 30vw;
  }
}


/* 会社概要 ----------------------------------------------*/

.con05 {
  padding: 0px 0px 40px;
}

.company_list {
  text-align: left;
  font-size: 18px;
  padding: 40px;
  font-weight: bold;
}

.company_list td {
  padding: 10px 30px;
  border: solid 1px #000;
}

.company_list table tbody tr {
  margin: 20px;
}

.company_list th {
  background: #000;
  color: #FFC812;
  padding: 0 20px;
  text-align: center;
}

.wakuwaku {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  font-size: 6.25rem;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 2rem 0;
  margin-top: -60px;
}

.wakuwaku.wakuwaku-600 {
  font-weight: 600
}

.marquee {
  display: flex;
  font-family: "FOT-ロダンNTLG Pro B","Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  transition: color .25s, -webkit-text-stroke .25s
}

.marquee:nth-child(odd) {
  -webkit-text-stroke: 1px var(--text-primary);
  color: transparent
}

.marquee:hover {
  color: var(--main-color)
}

.marquee:hover:nth-child(odd) {
  -webkit-text-stroke: 1px transparent
}

.marquee-list {
  display: flex;
  white-space: nowrap
}

@media only screen and (max-width:1650px) {
  .wakuwaku {
    font-size: 5.5rem
  }
}

@media only screen and (max-width:1441px) {
  .wakuwaku {
    font-size: 4.75rem
  }
}

@media only screen and (max-width:1360px) {
  .wakuwaku {
    font-size: 4.25rem
  }
}

@media only screen and (max-width:1200px) {
  .wakuwaku {
    font-size: 3.9rem
  }
}

@media only screen and (max-width:1023px) {
  .wakuwaku {
    font-size: 4.5rem
  }
}

@media only screen and (max-width:767px) {
  .wakuwaku {
    font-size: 3rem
  }
}

@media only screen and (min-width:768px) and (max-width:900px) and (orientation:landscape) {
  .wakuwaku {
    font-size: 2.9rem
  }
}


/*　メールフォーム-------------------------------------------　*/

.form_title {
  transform: rotate(-90deg);
  left: -220px;
  bottom: 280px;
}

.form_title02 {
  transform: rotate(-90deg);
  left: -133px;
  bottom: 357px;
}

#formWrap {
  width: 900px;
  margin: 0 auto;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 60px 0px;
}

#formWrap p span {
  font-size: 16px;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
}

table.formTable td, table.formTable th {
  display: block;
}

table.formTable th {
  width: 150px;
  padding: 5px;
  background: #000;
  text-align: center;
  color: #FFC812;
  margin-bottom: -2px;
  margin-left: 1px;
}

table.formTable02 {
  width: 100%;
  margin: 0 auto;
  font-size: 24px;
  padding: 60px 0;
  font-weight: bold;
}

table.formTable02 th {
  width: 230px;
  padding: 5px;
  background: #000;
  text-align: center;
  color: #FFC812;
  margin-bottom: -2px;
  margin-left: 1px;
}



input[type="text"] {
  width: 50vw;
  height: 50px;
  border: 2px solid #000;
  margin-bottom: 20px;
  display: block;
}
textarea {
  width: 50vw;
  height: 200px;
  border: 2px solid #000;
  padding: 0;
  display: block;
}
@media screen and (max-width:572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    display: block;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    display: block;
    width: 100%;
    height: 70px;
  }

  .btn_02, a.btn_02, button.btn_02 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #FFC812;
    border-radius: 0;
  }

  .btn_03, a.btn_03, button.btn_03 {
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #FFC812;
    border-radius: 0;
  }

  input[type="submit"].btn-border {
    border-radius: 0;
    background: #000;
    margin-bottom: 30px;
  }

  input[type="submit"].btn-border:hover {
    border: 2px solid #000;
    color: #000;
    background: #FFC812;
  }

  input[type="reset"].btn-border_re {
    border: 2px solid #000;
    color: #000;
    background: #FFC812;
    border-radius: 0 !important;
  }

  input[type="reset"].btn-border_re:hover {
    color: #FFC812;
    background: #000;
  }

  input[type="button"].btn-border_re {
    border: 2px solid #000;
    color: #000;
    background: #FFC812;
    border-radius: 0;
    margin-top: 30px;
  }

  input[type="button"].btn-border_re:hover {
    color: #FFC812;
    background: #000;
  }

  table.formTable02 {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    padding: 60px 0;
    font-weight: bold;
  }

  table.formTable02 th {
    width: 113px;
    padding: 8px;
    background: #000;
    text-align: center;
    color: #FFC812;
    margin-bottom: -2px;
    margin-left: 1px;
  }
}
.btn_02, a.btn_02, button.btn_02 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #FFC812;
  border-radius: 0;
}
.btn_03, a.btn_03, button.btn_03 {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #FFC812;
  border-radius: 0;
}
input[type="submit"].btn-border {
  border-radius: 0;
  background: #000;
}
input[type="submit"].btn-border:hover {
  border: 2px solid #000;
  color: #000;
  background: #FFC812;
}
input[type="reset"].btn-border_re {
  border: 2px solid #000;
  color: #000;
  background: #FFC812;
  border-radius: 0;
}
input[type="reset"].btn-border_re:hover {
  color: #FFC812;
  background: #000;
}
input[type="button"].btn-border_re {
  border: 2px solid #000;
  color: #000;
  background: #FFC812;
  border-radius: 0;
}
input[type="button"].btn-border_re:hover {
  color: #FFC812;
  background: #000;
}
.Copyright {
  margin: 10px;
  text-align: center;
  font-size: 10px;
  color: #000;
}
@media only screen and (max-width:572px) {
  .logo_con {
    position: fixed;
    top: -70px;
    left: 0px;
    z-index: 3;
  }

  .logo_con img {
    width: 40%;
  }
  /*　ハンバーガーボタン　*/

  .mainView {
    width: 100vw;
    height: 100vh;
    background-color: #000;
  }
  /*ハンバーガーボタン*/

  .el_humburger {
    position: fixed;
    top: 45px;
    right: 60px;
    width: 46px;
    height: 25px;
    padding-top: 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 0px;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto;
    color: #fff;
    text-align: center;
  }

  @media screen and (max-width: 840px) {
    .el_humburger {
      display: block;
      right: 0;
      top: 0;
      padding-top: 20px;
      width: 70px;
      height: 70px;
    }
    #factory .el_humburger {
      display: none;
    }
  }

  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 42px;
    display: inline-block;
  }

  @media screen and (max-width: 840px) {
    .el_humburger_wrapper {
      margin-bottom: 5px;
      width: 30px;
    }
  }

  .el_humburger_text {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
    display: none;
  }

  .el_humburger_text.el_humburger_text__close {
    display: none;
  }

  .js_humburgerOpen .el_humburger_text.el_humburger_text__close {
    display: block;
  }

  @media screen and (max-width: 840px) {
    .el_humburger_text {
      font-size: 10px;
      padding-top: 2px;
    }
  }

  @media screen and (max-width: 840px) {
    .el_humburger_text svg path {
      -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
      -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
      transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
      fill: #000;
    }
  }

  @media screen and (max-width: 840px) {
    .js_humburgerOpen .el_humburger_text svg path {
      fill: #000;
    }
  }

  .el_humburger span.el_humburger_bar {
    display: block;
    width: 100%;
    margin: 0 auto 9px;
    height: 1px;
    background: #000;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }

  .el_humburger span.el_humburger_bar:last-child {
    margin-bottom: 0;
  }

  .js_humburgerOpen .el_humburger span.el_humburger_bar {
    background: #fff;
  }

  @media screen and (max-width: 840px) {
    .el_humburger span.el_humburger_bar {
      left: 0;
      top: 0;
      background: #000;
    }
  }

  .js_humburgerOpen .el_humburger span.el_humburger_bar.top {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }

  .js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
    opacity: 0;
  }

  .js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
    -webkit-transform: translateY(-11px) rotate(45deg);
    -ms-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }

  .el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
  }

  .el_humburgerButton__close span.el_humburger_bar {
    display: block;
    width: 35px;
    margin: 0 auto;
    height: 4px;
    background: #fff;
  }

  .el_humburgerButton__close span.el_humburger_bar.top {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }

  .el_humburgerButton__close span.el_humburger_bar.bottom {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }

  .navi {
    position: fixed;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    width: 450px;
    z-index: 3;
    padding-top: 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
    transform: translateZ(0) translateX(100%);
    overflow: auto;
  }

  .js_humburgerOpen .navi {
    transform: translateZ(0) translateX(0);
  }

  @media screen and (max-width: 840px) {
    .navi {
      padding: 100px 5% 0;
    }
    .js_humburgerOpen .navi {
      width: 100%;
    }
  }

  .navi_item {
    margin-bottom: 28px;
    font-size: 20px;
    white-space: nowrap;
    text-align: center;
  }

  .navi_item a {
    color: #FFC812;
    font-weight: bold;
  }

  .navi_item.op_innerLink {
    cursor: pointer;
  }
  /* video {
    width: 100%;
  height: auto;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
  } */

  .header {
    left: 0;
    top: 1.25rem;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .section {
    padding: 0rem 0;
    overflow: hidden
  }

  .container {
    width: 94%;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0rem 0 0rem
  }

  .con01 {
    margin-bottom: 0px;
  }

  .con_title img, .con_title_r img {
    width: 100%;
  }

  .con_title_r {
    position: relative;
    right: 0px;
    opacity: 0.6;
  }

  .con01_box {}

  .con01_box img {
    width: 90%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
    margin-bottom: 40px;
  }

  .con01_txt {
    padding: 20px 0;
    display: inline-block;
    vertical-align: middle;
  }

  .con01_txt p, .con03_txt p, #formWrap .container p {
    text-align: left;
    font-size: 4.5vw;
    line-height: 8vw;
    width: 100%;
  }

  .con01_txt p span, .con03_txt p span {
    background: #000;
    padding: 5px;
    color: #FFC812;
    font-size: 5.5vw;
  }

  .con02 {
    background-color: #fff;
    padding-bottom: 20px;
  }

  .con02_box img {
    width: 90%;
  }

  .con02_title img {
    width: 60vw;
  }

  .bi-counter {
    color: transparent;
    text-stroke: 2px #000;
    -webkit-text-stroke: 2px #000;
    position: relative;
    font-size: 3rem;
    font-family: 'Kanit', sans-serif;
  }

  #benefits .benefits-container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
  }

  .bi-title {
    font-size: 6vw;
    font-family: "FOT-ロダンNTLG Pro B","Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
    font-weight: 700;
    margin: 0;
    line-height: 1.1
  }

  .con03_title img {
    width: 50vw;
  }

  .con03_txt {
    padding: 20px 0;
  }

  .sub_box {
    text-align: center;
  }

  .sub_box.im img {
    width: 90%;
  }

  .sub_arrow {
    position: relative;
    bottom: 0px;
    right: 0px;
  }

  .con04_in {
    text-align: center;
    padding: 40px 0;
  }

  .con04_box {
    display: inline-block;
    padding: 20px;
  }

  .con04_box img {
    width: 90%;
  }

  .company_list {
    text-align: left;
    font-size: 14px;
    padding: 20px;
    font-weight: bold;
  }

  .company_list th {
    background: #000;
    color: #FFC812;
    padding: 10px 10px;
    text-align: center;
  }

  .subsc_example {
    text-align: center;
    margin-top: 20px;
  }

  .subsc_example img {
    width: 90%;
  }

  .form_title {
    transform: rotate(-90deg);
    left: 0px;
    top: 20vw;
  }

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

  .form_title02 {
    transform: rotate(0deg);
    left: 0px;
    top: 0px;
  }

  #formWrap .container {
    text-align: center;
    margin-top: 40px;
  }

  #formWrap .container p {
    margin-top: 40px;
    margin-bottom: 10px;
  }

  input[type="submit"].btn-border {
    margin-bottom: -15px;
    border-radius: 0;
    background: #000;
  }
}
a.banner{
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left:20px;


}
a.banner img {
    width: 40%;
    border: 4px solid #000;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 35%);
}
@media screen and (max-width: 840px) {
  a.banner{
    bottom: 10px;

  z-index: 1;
  
  }
}
