@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* =======================================================
*
* 	common Style
*	Edit this section
*
* ======================================================= */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-weight: 400;
  line-height: 1.8;
  color: #3c3c3c;
  height: 100%;
  position: relative;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 17px;
  /* letter-spacing: 0.02em; */
}

::-webkit-selection {
  color: #FFF;
  background: #e74c3c;
}

::-moz-selection {
  color: #FFF;
  background: #e74c3c;
}

::selection {
  color: #FFF;
  background: #e74c3c;
}

.js .to-animate,
.js .to-animate-2,
.js .single-animate {
  opacity: 0;
}

.js .animate-box {
  opacity: 0;
}

.mt20 {
  margin-top: 20px !important;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb100 {
  margin-bottom: 50px;
}

@media only screen and (min-width:1025px) {
  .mb100 {
    margin-bottom: 100px;
  }
}

.mb200 {
  margin-bottom: 200px;
}

.pt0 {
  padding-top: 0 !important;
}

.pt60 {
  padding-top: 60px;
}

.pt80 {
  padding-top: 80px;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb150 {
  padding-bottom: 150px;
}

.pb200 {
  padding-bottom: 200px;
}

.fas,
.la,
.lab,
.lad,
.lal,
.lar,
.las {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

a {
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

.yMarker {
  font-weight: bold;
  background: linear-gradient(transparent 90%, #ffc90d 80%);
  padding-bottom: 2px;
}

.RedMarker {
  font-weight: bold;
  background: linear-gradient(transparent 90%, #e74c3c 80%);
  padding-bottom: 2px;
}

.PlusRed {
  color: #e74c3c;
}

.PlusBgRed {
  background: #e74c3c;
}

.PlusBlue {
  color: #265796;
}

.PlusBgBlue {
  background: #265796;
}

.WhiteColor {
  color: #FFF;
}

.TextLeft {
  text-align: left !important;
}

.TextCenter {
  text-align: center !important;
}

.f_bold {
  font-weight: bold;
}

.f_size14 {
  font-size: 14px;
  color: #e74c3c;
}

.f_size50 {
  font-size: 50px;
}

.line_h_1_2 {
  line-height: 1.2em;
}

.Warning {
  font-size: 14px;
  text-align: center;
  color: #e74c3c;
}

p {
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 16px;
  line-height: 1.7em;
  color: #3c3c3c;
}

p a:hover {
  border-bottom: 1px solid #265796;
  padding-bottom: 1px;
  text-decoration: none;
}

.ml-minus15 {
  margin-left: 0;
}


@media only screen and (min-width:600px) {
  .ml-minus15 {
    margin-left: -15px;
  }
}



/* ボタンのエフェクト */
.updown {
  animation-name: updown1;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/***********************************/
/*              Title              */
/***********************************/
h1 {
  margin: 0;
  color: #3f3d56;
  font-size: 28px;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 20px;
  text-align: left;
}

h1 span {
  color: #e74c3c;
  font-size: 1.5625rem;
}

@media only screen and (min-width:600px) {
  h1 {
    font-size: 2rem;
    /* padding: 0 20px 0 20px; */
    margin: 0;
  }

  p {
    font-size: 16px;
  }
}

@media only screen and (min-width:1025px) {
  h1 {
    font-size: 3.125rem;
    line-height: 1.5em;
    padding: 0;
  }

  h1 span {
    color: #e74c3c;
    font-size: 30px;
  }

  p {
    font-size: 17px;
  }

}

h2 {
  line-height: 1.5em;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 500;
  font-family: 'M PLUS 1p', sans-serif;
  text-align: center;
  margin: 0 0 40px 0;
}

@media only screen and (min-width:600px) {
  h2 {
    font-size: 30px;
  }
}

.ContentBoxL h2 {
  font-size: 1.2rem;
  color: #3f3d56;
}

@media only screen and (min-width:600px) {
  .ContentBoxL h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}


@media only screen and (min-width:1025px) {
  h2 {
    margin: 0 0 60px 0;
    font-size: 2.5rem;
  }

  .ContentBoxL h2 {
    text-align: left;
    font-weight: 500;
    line-height: 1.3em;
    font-size: 32px;
    letter-spacing: 2.5px;
    margin: 20px 0;
  }
}

h3 {
  line-height: 1.5em;
  color: #3c3c3c;
  margin: 0 0 20px 0;
  font-size: 1.2941176470588rem;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: normal;
  text-align: left;
}


@media only screen and (min-width:600px) {
  h3 {
    text-align: center;
    font-size: 1.5625rem;
  }
}

@media only screen and (min-width:1025px) {
  h3 {
    margin: 0 0 20px 0;
    font-size: 1.875rem;
    text-align: center;
  }
}

h4 {
  line-height: 1.5em;
  color: #3c3c3c;
  margin: 0 0 20px 0;
  font-size: 22px;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: normal;
  text-align: center;
}

@media only screen and (min-width:1025px) {
  h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
  }
}


/***********************************/
/*              br               */
/***********************************/
.PcBr {
  display: none;
}

@media only screen and (min-width:600px) {
  .SpBtn {
    display: none;
  }

  .PcBr {
    display: none;
  }

  .SpBr {
    display: none;
  }
}

@media only screen and (min-width:678px) {
  .PcBr {
    display: block;
  }
}

@media only screen and (min-width:1025px) {
  .SpBtn {
    display: none;
  }

  .PcBr {
    display: block;
  }

  .SpBr {
    display: none;
  }
}

/***********************************/
/*              Navi             */
/***********************************/
.PcNaviMenu {
  display: none;
}

.SpNavMenu {
  display: block;
}

.ToggleNone {
  display: block;
}

#NaviWrapper {
  box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
  position: fixed;
  padding: 0 0 0 20px;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  z-index: 1000;
}

.MenuBox {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
  align-items: center;
}

.MenuBox img {
  width: 60%;
  padding: 20px 0 20px 0;
}

@media only screen and (min-width:600px) {
  .MenuBox img {
    width: 40%;
  }
}

@media only screen and (min-width:1025px) {
  #NaviWrapper {
    padding: 0;
  }

  .MenuBox {
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
  }

  .MenuBox img {
    width: 200px;
    padding: 0 0 0 10px;
  }
}

@media only screen and (min-width:1025px) {
  .PcNaviMenu {
    display: table;
    margin: 0;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 30px 0;
    text-decoration: none;
    justify-content: center;
    margin-left: 60px;
  }

  .PcNaviMenu ul {
    padding: 0;
    margin: 0;
    margin: 1rem 0 1rem 0;
  }

  .PcNaviMenu li {
    display: table-cell;
  }

  .PcNaviMenu li a {
    position: relative;
    color: #3c3c3c;
    font-weight: 600;
    text-decoration: none;
  }

  .PcNaviMenu li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #e74c3c;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  .PcNaviMenu li a:hover::after {
    transform: scale(1, 1);
  }
}

/* SpMenu 3Lines */
.Toggle {
  position: fixed;
  right: 18px;
  top: 17px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 1000;
  display: block;
}

.Toggle span {
  display: block;
  position: absolute;
  width: 35px;
  border-bottom: solid 4px #e74c3c;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}

.Toggle span:nth-child(1) {
  top: 9px;
}

.Toggle span:nth-child(2) {
  top: 20px;
}

.Toggle span:nth-child(3) {
  top: 31px;
}

.Toggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 4px #FFF;
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 4px #FFF;
}

.SpNavMenu {
  position: fixed;
  z-index: 12;
  top: 0;
  right: 0;
  background: rgba(38, 87, 150, 1) url(../images/BtnIcon01.svg) no-repeat left 15px bottom 15px;
  background-size: 12%;
  text-align: center;
  border-radius: 30px;
  border: solid 3px #e74c3c;
  width: 80%;
  height: 50%;
  display: none;
}

.SpNavMenu ul {
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.SpNavMenu ul li {
  font-size: 24px;
  list-style-type: none;
  width: 100%;
  padding: 10px 0;
  line-height: 1em;
}

.SpNavMenu ul li:last-child {
  padding-bottom: 0;
}

.SpNavMenu ul li a {
  position: relative;
  color: #FFF;
  font-weight: bold;
  font-size: 17px;
}

.SpNavMenu li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #e74c3c;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

.SpNavMenu li a:hover::after {
  transform: scale(1, 1);
}

@media only screen and (min-width:600px) {
  .SpNavMenu {
    width: 50%;
    height: 50%;
  }
}


@media only screen and (min-width:1025px) {
  .ToggleNone {
    display: none;
  }
}



/***********************************/
/*               BOX               */
/***********************************/
#MainBgWrapper {
  width: 100%;
  position: relative;
  padding: 100px 15px 0px 15px;
  background: none;
  margin: 0 0 80px 0;
}

.NewsBox,
.ContentBox {
  width: 100%;
}

.NewsBox p {
  background: #e74c3c;
  color: #FFF;
  font-size: 30px;
  padding: 20px;
  text-align: center;
}

.CampaignText {
  display: none;
}

.ContentBoxL {
  width: 100%;
}

.ContentBoxL p {
  display: none;
}

.ContentBoxR {
  display: block;
  width: 100%;
}

.ContentBoxR img {
  margin: 50px auto;
  display: block;
  width: 96%;
}

.DetailBtnBox {
  display: none;
}

.DetailBtnBoxSp {
  display: block;
}


@media only screen and (min-width:600px) {
  #MainBgWrapper {
    padding: 80px 20px 0 20px;
    background: url(../images/Campaign04_MainTopImg.png) no-repeat right 25px bottom 20px;
    background-size: 42%;
  }

  .CampaignText {
    display: block;
    margin: 40px auto 0 auto;
  }

  .ContentBox {
    display: flex;
    margin: 60px auto 0 auto;
    width: 100%;
  }

  .ContentBoxL {
    width: 55%;
    padding: 0 20px 0 0;
  }

  .ContentBoxL h1 {
    display: none;
  }

  .ContentBoxR {
    display: none;
  }

  .DetailBtnBox {
    display: none;
  }

  .DetailBtnBoxSp {
    display: block;
  }

  .ContentBoxL p {
    display: block;
  }

  .DetailBtnBox {
    display: block;
  }

  .DetailBtnBoxSp {
    display: none;
  }

}

@media only screen and (min-width:1025px) {
  #MainBgWrapper {
    padding: 20px 100px 0 100px;
    background: url(../images/Campaign04_MainTopImg.png) no-repeat right 140px bottom;
    background-size: 35%;
  }

  .NewsBox {
    width: 1100px;
    margin: 80px auto 0 auto;
  }

  .CampaignText {
    display: none;
  }

  .ContentBoxL h1 {
    display: block;
  }

  .ContentBox {
    width: 1100px;
  }

  .DetailBtnBox {
    display: block;
  }

  .DetailBtnBoxSp {
    display: none;
  }

}


/*** 白背景Box ***/
#WrapperWhite {
  background: #FFF;
  padding: 3em 0;
}

@media only screen and (min-width: 1025px) {
  #WrapperWhite {
    padding: 7em 0;
  }
}

/*** グレー背景Box ***/
#WrapperGray {
  width: 100%;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 50px 15px 50px 15px;
}

#GrayContentsBox,
#free_trial_email_02,
#ExampleBox {
  width: 100%;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 50px 15px 50px 15px;
}

#ExampleBox,
#GrayContentsBox {
  background-color: #ffffff;
}


#WrapperGray .Container {
  padding: 0;
}

@media only screen and (min-width:1025px) {
  #WrapperGray {
    padding: 5em 0 6em 0;
  }

  #GrayContentsBox,
  #free_trial_email_02,
  #ExampleBox {
    padding: 5em 0 5em 0;
  }
}


/*** 内箱 ***/
.Container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

@media only screen and (min-width:1025px) {
  .Container {
    width: 1100px;
    margin: 0 auto;
  }
}




/***********************************/
/*               btn               */
/***********************************/
/* 無料お試しボタン */
.MainBtnBox {
  margin: 60px auto 80px auto;
  padding: 0 15px;
}

.MainBtn a {
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 18px;
  background: #e74c3c url(../images/BtnIcon01.svg) no-repeat left 15px bottom 15px;
  background-size: 6%;
  border: solid 2px #e74c3c;
  position: relative;
  border-radius: 30px 0;
  padding: 25px 5px;
  text-align: center;
  transition: all 0.5s;
  color: #FFF;
  font-weight: 500;
  letter-spacing: .1em;
  box-shadow: 0px 20px 10px 2px #eee;
}

.MainBtn a:hover {
  padding: 25px 5px;
  background: #FFF url(../images/BtnIcon.svg) no-repeat right 15px top 15px;
  background-size: 6%;
  color: #3c3c3c;
  border: solid 2px #e74c3c;
}

@media only screen and (min-width:600px) {
  .MainBtnBox {
    margin: 100px auto 80px auto;
  }

  .MainBtn a {
    width: 80%;
    padding: 30px 5px;
    font-size: 24px;
    background: #e74c3c url(../images/BtnIcon01.svg) no-repeat left 25px bottom 15px;
    background-size: 6%;
  }

  .MainBtn a:hover {
    padding: 30px 5px;
    background: #FFF url(../images/BtnIcon.svg) no-repeat right 25px top 15px;
    background-size: 6%;
  }
}


@media only screen and (min-width:1025px) {
  .MainBtnBox {
    padding: 0;
    margin: 50px auto 80px auto;
  }

  .MainBtn a {
    width: 500px;
  }
}

/* hover時 CLICK文字表示 付箋 */
#cursor-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  background-color: rgba(0 0 0/0);
  border-radius: 50%;
  transition: transform .1s, top, .1s, left.1s, width.1s, height.1s, background-color.1s;
  transition-timing-function: ease-out;
  pointer-events: none;
  z-index: 120;
  -webkit-transition: transform .1s, top, .1s, left.1s, width.1s, height.1s, background-color.1s;
  -moz-transition: transform .1s, top, .1s, left.1s, width.1s, height.1s, background-color.1s;
  -ms-transition: transform .1s, top, .1s, left.1s, width.1s, height.1s, background-color.1s;
  -o-transition: transform .1s, top, .1s, left.1s, width.1s, height.1s, background-color.1s;
}

#cursor-hover.hover {
  top: -32px;
  left: -32px;
  width: 64px;
  height: 64px;
  font-weight: 600;
  background-color: rgba(38 87 150/.8);
  transition: .3s
}

#cursor-hover.hover:before {
  content: 'Click';
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .1em
}

#cursor-hover.submit-hover {
  top: -32px;
  left: -32px;
  width: 64px;
  height: 64px;
  font-weight: 600;
  background-color: rgba(0 0 0/.5);
  transition: .5s
}

#cursor-hover.submit-hover:before {
  content: '送信する';
  color: #fff;
  font-size: var(--font-size-12);
  text-transform: uppercase;
  letter-spacing: .1em
}

/* hover時 CLICK文字表示 end */

/* ヘッダー申し込みボタン */
.CenterBlueBtn a {
  z-index: 0;
  width: 100%;
  margin: 120px auto 0 auto;
  display: block;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  border-radius: 30px 0;
  border: solid 2px #e74c3c;
  background: #e74c3c;
  color: #FFF;
  padding: 20px 18px;
  transition: .3s;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
  box-shadow: 0px 20px 10px 2px #eee;
}

.CenterBlueBtn a:hover {
  padding: 20px 18px;
  color: #e74c3c;
  border: solid 2px #e74c3c;
  box-shadow: #FFF 0 0 0 45px;
  background-color: #ffffff;
}

.CenterBlueBtn::after {
  position: absolute;
  top: 99%;
  left: 50%;
  border: solid transparent;
  content: " ";
  border-top-color: #e74c3c;
  border-width: 30px;
  margin-left: -30px;
}

.freelist {
  font-size: 0.5rem;
  border: 1px dashed #ffffff;
  border-radius: 5px;
  padding: 5px;
  margin-right: 10px;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: #f2f2dd;
  color: #333333;
  font-weight: bold;
}

@media only screen and (min-width:1025px) {
  .freelist {
    font-size: 0.8rem;
    border: 1px dashed #ffffff;
    border-radius: 5px;
    padding: 10px;
    margin-right: 10px;
    display: inline-block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #f2f2dd;
    color: #333333;
    font-weight: bold;
  }
}

@media only screen and (min-width:600px) {
  .CenterBlueBtn a {
    width: 60%;
  }
}


@media only screen and (min-width:1025px) {

  /* ヘッダー申し込みボタン */
  .CenterBlueBtn a {
    width: 500px;
    margin: 120px auto 0 auto;
    padding: 30px 5px;
    font-size: 30px;
  }

  .CenterBlueBtn a:hover {
    padding: 30px 5px;
  }
}



/***********************************/
/*             footer              */
/***********************************/
#footer {
  padding: 50px 0;
  color: #FFF;
  width: 100%;
  /* background: linear-gradient(90deg, rgba(81, 134, 38, .5) 50%, transparent 50%),
		linear-gradient(rgba(81, 134, 38, .5) 50%, transparent 50%);
		*/
  background-color: #333333;
  background-size: 50px 60px;
}

.copyright {
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  margin: 30px 0 0 0;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  font-family: Overpass, sans-serif;
}

.copyright a {
  color: #ffffff;
  /* text-shadow: 1px 1px 1px #FFF; */
  font-weight: bold;
}

.copyright a:hover {
  border: none;
}


/***********************************/
/*             PageTop            */
/***********************************/
#PageTop {
  position: fixed;
  bottom: 5%;
  right: -20%;
}

#PageTop img {
  width: 50%;
}

.img_hover:hover {
  -webkit-filter: drop-shadow(1px 3px 5px rgba(255, 252, 0, 0.6));
  -moz-filter: drop-shadow(1px 3px 15px rgba(255, 252, 0, 0.6));
  -ms-filter: drop-shadow(1px 3px 15px rgba(255, 252, 0, 0.6));
  filter: drop-shadow(1px 3px 15px rgba(255, 252, 0, 0.6));
  border: none;
}

@media only screen and (min-width:600px) {
  #PageTop {
    bottom: 55px;
    right: -50px;
  }

  @media only screen and (min-width:1025px) {
    #PageTop {
      bottom: 55px;
      right: 10px;
    }
  }
