@charset "UTF-8";
/*------------------------------------------------------------
	basic
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  color: #000000;
  text-align: center;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
}

@media screen and (max-width: 769px) {
  body {
    font-size: 1.6rem;
    line-height: 2.2;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
  }
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
}

@media screen and (max-width: 769px) {
  img {
    width: 100%;
  }
}

a {
  color: #000000;
  text-decoration: none;
}

ul, ol, li {
  text-align: left;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
  width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.sp_show,
.sp_ibshow {
  display: none;
}

@media screen and (max-width: 769px) {
  .pc_show {
    display: none;
  }
  .sp_show {
    display: block;
  }
  .sp_ibshow {
    display: inline-block;
  }
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  margin: 0 auto;
}

/* heading ttl */
h2 {
  margin-bottom: 3.4rem;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 4.5rem;
  color: #ffffff;
  border-bottom: 1px solid #a0a0a0;
  line-height: 1.3;
}

h2::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

h2 .ttl_inr {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 769px) {
  h2 {
    width: 90%;
    margin: 0 auto 3rem;
    font-size: 3.6rem;
  }
}

h3 {
  font-size: 3.2rem;
}

@media screen and (max-width: 769px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 2.8rem;
}

@media screen and (max-width: 769px) {
  h4 {
    font-size: 2rem;
  }
}

.coution {
  padding-left: 1em;
  text-indent: -1em;
}

.coution::before {
  content: "※";
}

/* link */
.link_txt {
  color: #2380d3;
  text-decoration: underline;
  word-wrap: break-word;
}

#cp20210910 main {
  display: block;
  /* IE対策 */
  width: 100%;
  overflow: hidden;
  /*------------------------------------------------------------
      nav
    ------------------------------------------------------------*/
}

#cp20210910 main section .inner {
  padding: 100px 0;
}

@media screen and (max-width: 769px) {
  #cp20210910 main section .inner {
    padding: 20.83333vw 6.51042vw !important;
  }
}

#cp20210910 main .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

#cp20210910 main nav {
  margin: 100px 0;
}

@media screen and (max-width: 769px) {
  #cp20210910 main nav {
    padding: 5.20833vw 0;
  }
}

#cp20210910 main nav ul {
  padding: 0;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
}

#cp20210910 main nav ul li {
  width: calc(25% - 20px);
  border-radius: 10px;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #1c6fd3;
}

#cp20210910 main nav ul li a {
  padding: 3rem 0;
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

@media all and (-ms-high-contrast: none) {
  #cp20210910 main nav ul li a {
    padding: 3.6rem 0 2.7rem;
  }
}

#cp20210910 main nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 769px) {
  #cp20210910 main nav ul li a::after {
    bottom: 5.20833vw;
  }
}

#cp20210910 main nav ul li.border_none {
  border: 1px solid #fff;
  background-color: #fff;
}

#cp20210910 main nav ul li:hover a::after {
  bottom: 14px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

@media screen and (max-width: 769px) {
  #cp20210910 main nav ul li:hover a::after {
    bottom: 4.16667vw;
  }
}

@media screen and (max-width: 769px) {
  #cp20210910 main nav {
    margin: 3.5rem auto;
    width: 90%;
  }
  #cp20210910 main nav ul {
    -ms-flex-wrap: wrap;
    /*IE10*/
    -webkit-flex-wrap: wrap;
    /*PC-Safari,iOS8.4*/
    flex-wrap: wrap;
  }
  #cp20210910 main nav ul li {
    width: calc(50% - 0.8rem);
  }
  #cp20210910 main nav ul li:nth-of-type(n+3) {
    margin-top: 2rem;
  }
  #cp20210910 main nav ul li a {
    font-size: 4.42708vw;
    padding: 7.29167vw 0;
  }
}

#content {
  padding: 0 !important;
}

#cp20210910 {
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

#cp20210910 main #mv {
  max-width: 100%;
  position: relative;
  background-color: #1c6fd3;
}

#cp20210910 main #mv .kv img {
  width: 100%;
}

#cp20210910 main #mv .ttl {
  text-align: center;
  padding: 56px 24px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #mv .ttl {
    padding: 10.41667vw 4.16667vw;
  }
}

#cp20210910 main #mv .period {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

#cp20210910 main #mv .period p {
  margin: 0;
  padding: 2.2rem 0;
  font-size: 3.4rem;
  letter-spacing: 0.2rem;
}

@media all and (-ms-high-contrast: none) {
  #cp20210910 main #mv .period p {
    padding: 2.8rem 0 1.6rem;
  }
}

@media screen and (max-width: 769px) {
  #cp20210910 main #mv .period {
    padding: 6.51042vw 0;
    display: -webkit-box;
    /*Android4.3*/
    display: -ms-flexbox;
    /*IE10*/
    display: -webkit-flex;
    /*PC-Safari,iOS8.4*/
    display: flex;
    -ms-flex-pack: center;
    /*IE10*/
    -webkit-box-pack: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-justify-content: center;
    /* Safari6.1以降 */
    justify-content: center;
  }
  #cp20210910 main #mv .period p {
    padding: 0;
    font-size: 5.85938vw;
    line-height: 1.3;
  }
}

#cp20210910 main #about {
  background-color: #2380d3;
}

#cp20210910 main #about h2 {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: inherit;
  border: none;
  margin: 0 auto 40px;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  width: auto;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #about h2 {
    font-size: 9.375vw;
    margin: 0 auto 9.375vw;
    padding-bottom: 5.20833vw;
  }
}

#cp20210910 main #present {
  background-color: #ffffff;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #present .inner {
    padding-right: 4.16667vw !important;
    padding-left: 4.16667vw !important;
  }
}

#cp20210910 main #present h2 {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: inherit;
  border: none;
  margin: 0 auto 40px;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  width: auto;
  color: #000000;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #present h2 {
    font-size: 9.375vw;
    margin: 0 auto 6.51042vw;
  }
}

#cp20210910 main #present .item {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
}

#cp20210910 main #present .item li {
  margin-bottom: 0;
}

#cp20210910 main #present .item li dl {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  background-color: #727171;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: calc(100% - 16px);
}

#cp20210910 main #present .item li dl dt {
  margin-right: 30px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #present .item li dl {
    display: none;
  }
}

@media screen and (max-width: 769px) {
  #cp20210910 main #present .item {
    display: block;
  }
  #cp20210910 main #present .item li + li {
    margin-top: 6.51042vw;
  }
}

#cp20210910 main #present .text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #present .text {
    font-size: 3.90625vw;
    margin-top: 7.29167vw;
    line-height: 1.5;
  }
}

#cp20210910 main #step {
  background-color: #ffff00;
}

#cp20210910 main #step h2 {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: inherit;
  border: none;
  margin: 0 auto 40px;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  width: auto;
  color: #000000;
  border-bottom: 1px solid #000000;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step h2 {
    font-size: 9.375vw;
    margin: 0 auto 9.375vw;
    padding-bottom: 5.20833vw;
  }
}

#cp20210910 main #step .step_area {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

#cp20210910 main #step .step_area .step_inr {
  width: 100%;
}

#cp20210910 main #step .step_area .step_inr + .step_inr {
  margin-left: 44px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area {
    display: block;
  }
  #cp20210910 main #step .step_area .step_inr + .step_inr {
    margin-left: 0;
    margin-top: 20px;
  }
}

#cp20210910 main #step .step_area .step_inr {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#cp20210910 main #step .step_area .step_inr + .step_inr {
  position: relative;
}

#cp20210910 main #step .step_area .step_inr + .step_inr .step::before {
  content: "";
  width: 43px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -34px;
  bottom: 0;
  margin: auto;
  z-index: 10;
  background: url(/cp/20210910/assets/img/step_arrow.svg) center/100% auto no-repeat;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr + .step_inr .step::before {
    right: 0;
    left: 0;
    bottom: auto;
    width: 12%;
    -webkit-transform: translateY(-78%) rotate(90deg);
    -ms-transform: translateY(-78%) rotate(90deg);
    transform: translateY(-78%) rotate(90deg);
  }
}

#cp20210910 main #step .step_area .step_inr .ttl {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 24px;
  color: #000000;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .ttl {
    font-size: 6.51042vw;
    margin-bottom: 5.20833vw;
  }
}

#cp20210910 main #step .step_area .step_inr .ttl span {
  padding-left: 0.5rem;
  font-size: 4rem;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .ttl span {
    font-size: 10.41667vw;
  }
}

#cp20210910 main #step .step_area .step_inr .step {
  height: 340px;
  position: relative;
  background-color: #fff;
}

#cp20210910 main #step .step_area .step_inr .step.step_inr_f {
  height: 380px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step.step_inr_f {
    height: auto;
  }
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step.step_inr_sp {
    height: auto;
  }
}

#cp20210910 main #step .step_area .step_inr .step .txt_area {
  height: 100%;
  padding: 3rem 1rem;
  font-weight: bold;
}

#cp20210910 main #step .step_area .step_inr .step .txt_area .txt {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 2.2rem;
  line-height: 1.4;
}

#cp20210910 main #step .step_area .step_inr .step .txt_area .txt.step03 {
  font-size: 26px;
  color: #1da1f2;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .txt_area .txt.step03 {
    font-size: 6.77083vw;
  }
}

#cp20210910 main #step .step_area .step_inr .step .txt_area .coution {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .txt_area .coution {
    position: inherit;
    font-size: 4.16667vw;
  }
}

#cp20210910 main #step .step_area .step_inr .step .txt_area img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding-top: 6rem;
}

#cp20210910 main #step .step_area .step_inr .step .txt_area .btn_box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .txt_area .btn_box {
    position: inherit;
    width: 100%;
  }
}

#cp20210910 main #step .step_area .step_inr .step .txt_area .btn_box .btn {
  background-color: #1da1f2;
}

#cp20210910 main #step .step_area .step_inr .step .txt_area .btn_box .btn:hover {
  opacity: 0.7;
}

#cp20210910 main #step .step_area .step_inr .step .step_inr_area img.step01 {
  width: 90px;
  padding-top: 30px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .step_inr_area img.step01 {
    width: 21.61458vw;
    padding: 0;
  }
}

#cp20210910 main #step .step_area .step_inr .step .step_inr_area img.step02 {
  width: 276px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .step_inr_area img.step02 {
    width: 73.82813vw;
    padding: 0;
  }
}

#cp20210910 main #step .step_area .step_inr .step .step_inr_area img.step03 {
  width: 140px;
  padding-top: 10px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .step_inr_area img.step03 {
    width: 31.90104vw;
    padding: 0;
  }
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr .step .step_inr_area img {
    margin: 4.16667vw 0 5.20833vw;
    padding: 0;
    position: inherit;
  }
}

#cp20210910 main #step .step_area .step_inr .step .step_inr_area .btn_box {
  bottom: 1.5rem;
}

#cp20210910 main #step .step_area .step_inr .step .step_inr_area .btn_twi a {
  display: block;
  border: solid 2px #1da1f2;
  line-height: 60px;
  border-radius: 32px;
  font-size: 19px;
  color: #1da1f2;
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#cp20210910 main #step .step_area .step_inr .step .step_inr_area .btn_twi a:hover {
  background-color: #1da1f2;
  color: #fff;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #step .step_area .step_inr + .step_inr {
    margin-top: 26.04167vw;
  }
  #cp20210910 main #step .step_area .step_inr .step {
    width: 100%;
    margin: 0 auto;
  }
  #cp20210910 main #step .step_area .step_inr .step .txt_area {
    padding: 7.29167vw 5.20833vw;
  }
  #cp20210910 main #step .step_area .step_inr .step .txt_area .txt {
    font-size: 5.72917vw;
    position: inherit;
  }
  #cp20210910 main #step .step_area .step_inr .step .txt_area img {
    max-width: 100%;
    width: 100%;
  }
}

#cp20210910 main #agree {
  background-color: #ffffff;
}

#cp20210910 main #agree .inner {
  padding-bottom: 72px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .inner {
    padding-bottom: 12.5vw !important;
  }
}

#cp20210910 main #agree h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  margin-bottom: 30px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree h4 {
    font-size: 7.8125vw;
    margin-bottom: 7.8125vw;
  }
}

#cp20210910 main #agree .cont_wrap {
  padding: 30px 20px;
  border: 1px solid #000000;
  background-color: #fff;
  text-align: left;
  font-size: 1.4rem;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .cont_wrap {
    font-size: 3.125vw;
  }
}

#cp20210910 main #agree .cont_wrap .ttl {
  font-size: 2.0rem;
  font-weight: bold;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .cont_wrap .ttl {
    font-size: 4.16667vw;
  }
}

#cp20210910 main #agree .cont_wrap h5 {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .cont_wrap h5 {
    font-size: 3.64583vw;
  }
}

#cp20210910 main #agree .cont_wrap ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}

#cp20210910 main #agree .cont_wrap p + h5, #cp20210910 main #agree .cont_wrap ul + h5, #cp20210910 main #agree .cont_wrap p + ul {
  margin-top: 24px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .cont_wrap p + h5, #cp20210910 main #agree .cont_wrap ul + h5, #cp20210910 main #agree .cont_wrap p + ul {
    margin-top: 5.20833vw;
  }
}

#cp20210910 main #agree .cont_wrap .contact_area {
  border: 1px solid #cccccc;
  padding: 10px;
}

#cp20210910 main #agree .cont_wrap .cont_inr {
  padding: 15px 20px 0 20px;
  overflow: auto;
  height: 320px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .cont_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 6.51042vw 5.20833vw;
  }
  #cp20210910 main #agree .cont_wrap .cont_inr {
    padding: 0 3.125vw 0 0;
    height: 93.75vw;
  }
}

#cp20210910 main #agree .btn_area {
  width: 100%;
  margin: 50px 0 0;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #agree .btn_area {
    margin: 10.41667vw 0 0;
  }
}

#cp20210910 main #agree .btn_area .type_arrow::after {
  border-right: none;
  border-left: 3px solid #ffffff;
}

#cp20210910 main #agree .btn_area .type_arrow:hover::after {
  border-right: none;
  border-left: 3px solid #ff3a00;
}

#cp20210910 main #contact {
  background-color: #525252;
  color: #ffffff;
}

#cp20210910 main #contact h3 {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: inherit;
  border: none;
  margin: 0 auto 40px;
  padding-bottom: 2rem;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  width: auto;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #contact h3 {
    font-size: 7.8125vw;
    margin: 0 auto 6.51042vw;
  }
}

#cp20210910 main #contact p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #contact p {
    font-size: 3.64583vw;
  }
}

#cp20210910 main #contact p + p {
  margin-top: 32px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main #contact p + p {
    margin-top: 9.11458vw;
  }
}

#cp20210910 main #contact a {
  color: #ffffff;
}

#cp20210910 main .btn_area {
  line-height: 100px;
}

@media screen and (max-width: 769px) {
  #cp20210910 main .btn_area {
    margin: 0 4.16667vw 6.25vw;
    line-height: 20.83333vw;
  }
}

#cp20210910 main .btn_area .type_arrow {
  max-width: 1000px;
  width: 100%;
  position: relative;
  display: inline-block;
  border: 2px solid #ff3a00;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #ff3a00;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 2;
}

#cp20210910 main .btn_area .type_arrow_end {
  max-width: 1000px;
  width: 100%;
  position: relative;
  display: inline-block;
  border: 2px solid #8B8B8B;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #8B8B8B;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 2;
}
#cp20210910 main .btn_area .type_arrow_end .btn_txt {
  font-size: 3.2rem;
  font-weight: bold;
  z-index: 10;
}


@media all and (-ms-high-contrast: none) {
  #cp20210910 main .btn_area .type_arrow {
    padding: 2.6rem 0 1.6rem;
  }
}

#cp20210910 main .btn_area .type_arrow .btn_txt {
  font-size: 3.6rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

#cp20210910 main .btn_area .type_arrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#cp20210910 main .btn_area .type_arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 20px;
  height: 20px;
  margin: auto;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}

#cp20210910 main .btn_area .type_arrow:hover .btn_txt {
  color: #ff3a00;
}

#cp20210910 main .btn_area .type_arrow:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

#cp20210910 main .btn_area .type_arrow:hover::after {
  border-top: 3px solid #ff3a00;
  border-right: 3px solid #ff3a00;
}

#cp20210910 main .btn_area .type_arrow.close {
  pointer-events: none;
  border: none;
}

#cp20210910 main .btn_area .type_arrow.close::before {
  content: "応募受付は終了しました";
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  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;
  font-size: 3.6rem;
}

@media screen and (max-width: 769px) {
  #cp20210910 main .btn_area .type_arrow {
    width: 100%;
  }
  #cp20210910 main .btn_area .type_arrow .btn_txt {
    font-size: 7.8125vw;
  }
  #cp20210910 main .btn_area .type_arrow::after {
    width: 15px;
    height: 15px;
  }
  #cp20210910 main .btn_area .type_arrow.close {
    pointer-events: none;
    border: none;
  }
  #cp20210910 main .btn_area .type_arrow.close::before {
    font-size: 8vw;
  }
}
