@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=swap');
/*リセットcss↓*/
html {
  overflow-y: scroll;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
  margin: 0;
  padding: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,th {
  text-align: left;
}
q:before,q:after {
  content: '';
}
object,embed {
  vertical-align: top;
}
hr,legend {
  display: none;
}
h1,h2,h3,h4,h5,h6 {
  font-size: 100%;
}
img,abbr,acronym,fieldset {
  border: 0;
}
li {
  list-style-type: none;
}
sup {
  vertical-align: super;
  font-size: 0.5em;
}
img {
  vertical-align: top;
}
i {
  font-style: normal;
}
/*----リセットcss*----/


/* 共通 ------------------------------*/
body{
  font-family:'メイリオ', 'Meiryo','M PLUS Rounded 1c','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

*[class*="cp-"],
*[class*="cp-"] * {
    box-sizing: border-box;
}

/* 画像 */
img {
  vertical-align: bottom;
  max-width: 100%;
}

.pc {display: block;}
.sp {display: none!important;}

@media screen and (max-width: 599px) {
  .pc{display: none!important;}
  .sp{display: block!important;;}
  br.sp{display: block!important;}
}
section {
  z-index: 0;
  padding-top: 40px;
  margin-top: -40px;
}
.bg-gray {
	background-color: #fbfbfb;
}
.bg-pink {
	background-color: #E4007F;
}
.bg-orange {
	background-color: #EA5517;
}
.bg-fv {
	background-image: none;
}
.bg-black {
	background-color: #231815;
}

/* 見出し ------------------------------*/
h3 {
  padding: 0 10px;
  font-size: 28px;
  line-height: 1.2;
  border-left: 8px solid #fff;
  color: #fff;
  font-weight: normal;
}
h4{
  color: #fff;
  font-weight: bold;
}
h2.title {
  width: 22%;
  margin-left: -4%;
  margin-bottom: 4%;
}
p {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: normal;
  margin-bottom: 1em;
  text-align:justify;
  overflow-wrap:break-word;
  word-wrap:break-word;
  }
p.big {
  font-size: 40px;
}
@media screen and (max-width: 599px) {
  h2.title {
    width: 30%;
    margin-left: -4%;
    margin-bottom: 4%;
  }
    .cp-title03 {
      padding: 2px 12px;
      font-size: 26px;
  }
  p {
    font-size: 16px;
    }
  p.big {
  font-size: 20px;
}
}

.mt30 {margin-top: 30px!important;;}
.pt03 {padding-top: 0.3em!important;}

/* ヘッダー ------------------------------*/
.cp-header01 {
    position: fixed;
    height: 60px;
    width: 100%;
    background: none;
}
.cp-header01.change-color {
  background-color: #707070; /* スクロールしたあとのヘッダー背景色 */
  transition: 0.3s;
  z-index: 10;
}
.cp-header01.color-on {
  background-color: #707070; /* スクロールしたあとのヘッダー背景色 */
}
.cp-header01__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1065px;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* ロゴ */
.cp-header01__logo {
    line-height: 60px;
}
.cp-header01__logo img {
    height: 32px;
    vertical-align: middle;
}
.cp-header01__logo img:hover {
    opacity: 0.7;
    transition: .2s ease-in-out;
}

/* ナビゲーション */
.cp-header01__navi {
    line-height: 60px;
}

.cp-header01__items {
    display: flex;
    list-style: none;
}
.cp-header01__item:not(:last-child) {
    margin-right: 32px;
}
.cp-header01__item a {
    display: inline-block;
    transition: .2s ease-in-out;
    color: #fff;
    text-decoration: none;
    font-family: 'aileron-semibold-regular', 'メイリオ', 'Meiryo','M PLUS Rounded 1c', sans-serif;
}
.cp-header01__item a:hover {
    opacity: .7;
}

/* ハンバーガーメニュー */
.cp-header01__hamburger__button,
.cp-header01__hamburger__content {
    display: none;
}
.cp-header01__hamburger__item a {
    text-decoration: none;
}
@media screen and (min-width: 1065px) {
  .cp-header01__container {
    display: flex;
    justify-content: space-between;
    width: 92%;
    max-width: 100%;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
    .cp-header01 {
        position: fixed;
        z-index: 10;
    }
    
    /* ナビゲーション */
    .cp-header01__navi {
        display: none;
    }

    /* ハンバーガーメニュー */
    .cp-header01__hamburger__button {
        display: block;
        position: absolute;
        top: 9px;
        right: 15px;
        width: 42px;
        height: 42px;
        z-index: 3;
        cursor: pointer;
        text-align: center;
    }
    .cp-header01__hamburger__button span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #fff;
        transition: 0.2s ease-in-out;
    }
    .cp-header01__hamburger__button span:nth-child(1) {
        top: 10px;
    }
    .cp-header01__hamburger__button span:nth-child(2) {
        top: 20px;
    }
    .cp-header01__hamburger__button span:nth-child(3) {
        top: 30px;
    }
    .cp-header01__hamburger__button.active span {
        background: #fff;
    }
    .cp-header01__hamburger__button.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        transform: rotate(-45deg);
    }
    .cp-header01__hamburger__button.active span:nth-child(2),
    .cp-header01__hamburger__button.active span:nth-child(3) {
        top: 16px;
        transform: rotate(45deg);
    }
    .cp-header01__hamburger__content {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100%;
        padding: 15px;
        transition: all 0.2s;
        background: #707070;
    }
    .cp-header01__hamburger__content.active {
        transform: translateX(0%);
    }
    .cp-header01__hamburger__item {
        text-align: center;
    }
    .cp-header01__hamburger__item a {
        display: inline-block;
        padding: 16px;
        color: #fff;
    }
}

@media screen and (max-width: 599px) {
    .cp-header01__container {
        padding-right: 15px;
        padding-left: 15px;
    }
    
    /* ハンバーガーメニュー */
    .cp-header01__hamburger__button {
        right: 10px;
    }
}

/* フッター ------------------------------*/
.cp-footer03 {
    background: #231815;
}

.cp-footer03__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1065px;
    margin: auto;
    padding: 40px 30px;
}

.cp-footer03__content {
    display: flex;
}

/* ロゴ */
.cp-footer03__logo {
    margin-right: 36px;
}
.cp-footer03__logo img {
    height: 82px;
}
.cp-footer03__txt {
  margin: 0;
  padding: 12px;
  line-height: 1;
  font-size: 1em;
  color: #E4007F;
}

/* ナビゲーション */
.cp-footer03__navi__items {
    display: flex;
    flex-wrap: wrap;
    margin-right: 28px;
}
.cp-footer03__navi__item a {
    display: inline-block;
    padding: 12px;
    transition: .2s ease-in-out;
    color: #E4007F;
    text-decoration: none;
}
.cp-footer03__navi__item a:hover {
    opacity: 0.7;
}

/* SNSアイコン */
.cp-footer03__icons {
    display: flex;
}
.cp-footer03__icon:not(:last-child) {
    margin-right: 24px;
}
.cp-footer03__icon a {
    font-size: 38px;
    color: #E4007F;
    transition: .2s ease-in-out;
}
.cp-footer03__icon a:hover {
    opacity: 0.7;
}

/* コピーライト */
.cp-footer03__copywriter {
    font-size: 12px;
    line-height: 1.5;
    color: #E4007F;
    text-align: right;
    padding: 12px;
    margin-bottom: 0;
    margin-top: auto;
}

@media screen and (max-width: 1024px) {
    .cp-footer03__container {
        display: block;
        padding: 40px 20px;
    }

    .cp-footer03__content {
        display: block;
    }

    /* ロゴ */
    .cp-footer03__logo {
        margin-right: 0;
        text-align: center;
    }

    /* ナビゲーション */
    .cp-footer03__txt {
      text-align: center;
    }

    .cp-footer03__navi__items {
        justify-content: center;
        margin: 20px 0 0;
    }

    /* SNSアイコン */
    .cp-footer03__icons {
        justify-content: center;
        margin-top: 12px;
    }

    /* コピーライト */
    .cp-footer03__copywriter {
        margin-top: 32px;
        text-align: center;
    }
}

@media screen and (max-width: 599px) {
    .cp-footer03__container {
        display: block;
        padding-right: 15px;
        padding-left: 15px;
    }

    /* ロゴ */
    .cp-footer03__logo {
        text-align: center;
    }

    /* ナビゲーション */
    .cp-footer03__navi {
        display: block;
        margin-top: 32px;
    }
}

/* ページトップ ------------------------------*/
.p-scroll01 {
  text-align: center;
  position: fixed;
  right: 24px;
  bottom: 40px;
}
.p-scroll01 a {
  display: inline-block;
  padding: 8px;
  font-size: 12px;
  border-radius: 8px;
  color: #fff;
  background: #707070;
  text-decoration: none;
}
.p-scroll01 i {
  font-size: 28px;
}

@media screen and (max-width: 599px) {
  .p-scroll01 {
      right: 15px;
      bottom: 15px;
  }
  .p-scroll01 a {
      padding: 6px;
      font-size: 10px;
  }
  .p-scroll01 i {
      font-size: 20px;
  }
}


/* セクション */
.cp-section {
  padding: 80px 0;
}
.cp-section-large {
  padding: 120px 0;
}

/* コンテナー */
.cp-container {
  width: 100%;
  max-width: 1065px;
  margin: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* テキスト */
.cp-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
* + .cp-text {
  margin: 16px 0 0 0;
}

/* 見出し */
.cp-title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  line-height: 1.2;
  color: #707070;
  font-weight: bold;
}
.cp-title02:before,
.cp-title02:after {
  content: '';
  width: 80px;
  height: 2px;
  background-color: #707070;
}
.cp-title02:before {
  margin-right: 24px;
}
.cp-title02:after {
  margin-left: 24px;
}

@media screen and (max-width: 599px) {
  /* セクション */
  .cp-section {
      padding: 40px 0;
  }

  /* コンテナー */
  .cp-container {
      padding-right: 15px;
      padding-left: 15px;
  }

  /* 見出し */
  .cp-title02 {
      font-size: 26px;
  }
  .cp-title02:before,
  .cp-title02:after {
      content: '';
      width: 48px;
      height: 2px;
      background: #707070;
  }
  .cp-title02:before {
      margin-right: 16px;
  }
  .cp-title02:after {
      margin-left: 16px;
  }
}

#Service p {
  margin: .5em 0 2em 1.3em;
}
#Company ul {
  margin-left: 1%;
  font-size: 18px;
  width: 100%;
}
#Company p {
  margin: .5em 0 1.3em;
}
#Policy {
  margin: 0 auto;
}
#Policy h3 {
  margin: 0 0 1em;
}
#Policy h4 {
  margin: 1em 0;
}
#Policy p {
  line-height: 1.3;
}
#Policy ul li {
  color: #fff;
  line-height: 1.4;
  list-style: inside;
  text-indent: -1.3em;
  padding-left: 2em;
}

@media screen and (max-width: 599px) {
  #Service h3 {
    font-size: 5vw;  
  }
    #Company ul.cp-container {
    width: 100%;
  }
}


/* スクロールフェードイン ------------------------------*/
.cp-cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 100%;
  padding: 0 20px;
}
.cp-card {
  width: calc(100% / 2 - 40px);
  /* padding: 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}
.cp-card:not(:last-child) {
  margin-right: 40px;
}
.cp-card:not(:first-child) {
  margin-top: 0;
}
.cp-card:nth-child(n+4) {
  margin-top: 40px;
}

/* フェードイン */
.cp-scroll-fadeIn {
  opacity: 0;
  transition-duration: .64s;
  transition-property: opacity, transform;
  transform: translate(0, 48px);
}
.cp-scroll-fadeIn.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 1024px) {
  .cp-cards {
      flex-wrap: wrap;
      width: 80%;
  }
  .cp-card {
      width: calc((100% / 2) - 20px);
  }
  .cp-card:not(:last-child) {
      margin-right: 0;
  }
  .cp-card:nth-child(2n-1) {
      margin-right: 40px;
  }
  .cp-card:nth-child(n+3) {
      margin-top: 40px;
  }
}

@media screen and (max-width: 599px) {
  .cp-cards {
    width: 100%;
}
.cp-card {
      width: calc(100% / 1);
  }
  .cp-card:not(:last-child) {
      margin-right: 0;
  }
  .cp-card:nth-child(2n-1) {
      margin-right: 0;
  }
  .cp-card:nth-child(n+2) {
      margin-top: 24px;
  }
}
/* パララックス ------------------------------*/
.cp-parallax {
/*   background-color: #f00; */
  height: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.cp-parallax__title {
  color: #fff;
  margin-bottom: 48px;
}
.cp-parallax__title.cp-title02:before,
.cp-parallax__title.cp-title02:after {
  background: #fff;
}
.cp-parallax__text {
  color: #fff;
}

/* カンパニー ------------------------------*/
.cp-container>.cp-container {
  width: 90%;
}

/* アイテム */
.cp-infoText01__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
/* .cp-infoText01__item:not(:last-child) a {
  padding-bottom: 12px;
}
.cp-infoText01__item:not(:first-child) a {
  padding-top: 12px;
}
.cp-infoText01__item a {
  display: block;
  position: relative;
  transition: .2s ease-in-out;
  text-decoration: none;
}
.cp-infoText01__item a:hover {
  opacity: 0.7;
}
.cp-infoText01__item a:after {
  position: absolute;
  content: "\f054";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #fff;
} */

.cp-infoText01__info {
  display: flex;
  align-items: baseline;
}

/* 日付 */
.cp-infoText01__date {
  width: 40%;
  color: #fff;
  text-align: left;
  padding-left: 5%;
}

/* ラベル */
.cp-infoText01__label {
  margin-left: 16px;
}

/* テキスト */
.cp-infoText01__text {
  width: 80%;
  margin-top: -2px;
  padding-right: 32px;
  line-height: 2;
  color: #fff;
}

@media screen and (max-width: 1024px) {

  /* 日付 */
  .cp-infoText01__date {
      width: 40%;
      text-align: left;
  }
  
  /* テキスト */
  .cp-infoText01__text {
      width: auto;
      margin-top: 12px;
  }
}

@media screen and (max-width: 599px) {
  .cp-infoText01__info {
    display: block;
}
/* 日付 */
  .cp-infoText01__date {
    padding-left: 0;
}
/* テキスト */
  .cp-infoText01__text {
      padding-right: 24px;
      padding-left: 1em;
  }
}



/*fv設定*/
#fv{
  position: relative;
  height: 100vh;
  z-index: -2;
  padding-top: 0;
  margin-top: 0;
    
} 
#fv::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.2);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}
#video-area{
  position: fixed;
  z-index: -1;/*最背面に設定*/
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
}

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

#fv h1{
  /*要素の配置*/
  position:absolute;
  /*要素を天地中央寄せ*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  color:#fff;
  text-shadow: 0 0 15px #666;
  width: 90%;
}
@media screen and (max-width: 599px) {
  #fv {
    height: 50vh;
  }
}


/*form設定*/
.box_con07 {
  max-width: 900px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .box_con07 {
    width: 95%;
  }
}
.box_con07 form {
  width: 100%;
}
.box_con07 form ul {
  width: 100%;
}
.box_con07 form ul li {
  position: relative;
  overflow: hidden;
  margin: .5em 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  .box_con07 form ul li {
    display: -webkit-flex;
    display: flex;
  }
}
@media print {
  .box_con07 form ul li {
    display: -webkit-flex;
    display: flex;
  }
}
.ie8 .box_con07 form ul li {
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .box_con07 form ul li {
    margin: 1em 0;
  }
}
.box_con07 form ul li .title {
  position: relative;
  width: 30%;
  font-weight: normal;
  padding: 1em 0 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .box_con07 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: baseline;
  }
}
@media print {
  .box_con07 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
.ie8 .box_con07 form ul li .title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: baseline;
}
@media only screen and (max-width: 768px) {
  .box_con07 form ul li .title {
    text-align: left;
    width: 100%;
    display: block;
    padding: .8em .2em 0;
    color: #fff;
    margin: 0;
    /* background: #1c2e53; */
  }
}
.box_con07 form ul li .title em {
  position: relative;
  z-index: 1;
}
.box_con07 form ul li .title span {
  background: #a52400;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.7em;
}
.box_con07 form ul li .box_det {
  width: 70%;
  position: relative;
  padding: .3em 0 0 1em;
  border-bottom: 1px solid #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con07 form ul li .box_det {
    padding: .5em .5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con07 form ul li .box_br {
  display: block;
}
.box_con07 form ul li select, .box_con07 form ul li textarea, .box_con07 form ul li .wide {
  width: 100%;
  height: 3em;
  padding: 0 0.5em;
  border: none;
  outline: none;
  background: transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}
.box_con07 form ul li select{ 
  padding-left: 0.3em;
}
.box_con07 form ul li textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}

.box_check {
  text-align: center;
  margin: 2em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
  color: #fff;
}

.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}


input, select, textarea {
  font-size: 18px;
  }
  
input::placeholder, textarea::placeholder {
  color: #c7c7c7;
}

.end-message {
  display: none;
  text-align: center;
  font-size: 120%;  
}

.false-message {
  display: none;
  text-align: center;
  font-size: 120%;  
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-text-fill-color: #fff!important;
}
.box_con07 form select option {
  color: #231815;
}
select:focus {
  outline-color: transparent;
  outline: 1px solid transparent;
  box-shadow: none;
}

