@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Oswald&display=swap');
html,body{
  font-family: "Inter" , "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #383838;
  background-color: #fff;
	line-height: 2;
	letter-spacing:0.1rem;
}
header,footer,div,section,article,nav,a,p,span,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,img,dl,dt,dd,form,input,textarea{ box-sizing: border-box; }
::selection { background: #ddd; }
::-moz-selection { background: #ddd; }
a,a img{
  color: #777;
  transition: 0.3s;
  text-decoration: none;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
.text_ind{
  text-indent: 40px;
}

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

a:hover,a:hover img{ opacity: 0.7;cursor: pointer; }
img{
	max-width: 100%;
	display: block;
}
.clear{ clear: both; }
.overflow{ overflow: hidden; }

.big1{ font-size: 2.4rem; }
.big2{ font-size: 2rem;}
.orange{ color: #F07600; }
.maker1,.maker2,.maker3{
  color: #fff;
  padding: 0 0.15em 0.15em;
  margin: 0 0.1em;
}
.maker1{ background: #9a884b; }
.blue{color:#041f9c;}
.gold{color:#9a884b;}
em{color:#c32d22; font-weight:bold;text-decoration:none;}

.note{
    font-size:60%;
  padding:0 0rem;
}
hr{
    margin:0.8rem 0;
}
header{
  /*background: url(../images/header-bg.jpg) center center no-repeat;*/
  background-size: cover;
 /* padding:3rem 0 0rem;*/
  position: relative;
}
header h1 img{
  width: 115rem;
  margin: 0 auto;
}
input[type="image"] {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: block;
}
input[type="image"]:hover,
input[type="image"]:active {
	opacity: 0.8;
  cursor: pointer;
}

input[type="text"] {
  /*display: block;*/
  font-size:2.4rem;
  width: 41.5rem;
  line-height: 8rem;
  border: 1px solid #CCCCCC;
  border-radius: 1rem;
 background: #f3f3f3;
  font-weight: 700;
  text-align: center;
  margin: 2.5rem 0rem 0rem 0rem;
}
input[type="email"] {
  display: block;
  font-size:2.4rem;
  width: 87rem;
  line-height: 8rem;
  border: 1px solid #CCCCCC;
  border-radius: 1rem;
 background: #f3f3f3;
  font-weight: 700;
  text-align: center;
  margin: 0.7rem auto 1rem;
}

footer{
  background-color: #7AC1BD;
  color: #fff;
 margin-top:-50px;
  padding: 2.5rem 0;
  font-family: 'Hind', sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

footer a{
    color: #fff;
}



/* ヘッダー動き */
.fade-1,.fade-2,.fade-3,.fade-4{
  opacity: 0;
  transition: 1s;
}
.fade-1{
  transform: translateY(2em);
  transition-delay: 0.5s;
}
.fade-2{
  transform: translateY(2em);
  transition-delay: 1s;
}
.fade-3{
  transform: scale3d(1.1);
  transition-delay: 1.5s;
}
.fade-4{
  transform: scale3d(1.1);
  transition-delay: 2s;
}

.fade-1.load,.fade-2.load,.fade-3.load,.fade-4.load{
  opacity: 1;
  transform: translate(0);
}


/* スクロールしてふわっと表示 */
.fadein,.fadeinleft,.fadeinright,.fadeinbottom,.fadeinbig {
  opacity: 0;
  transition: 1s;
}
.fadeinleft {
  transform: translateX(2em);
}
.fadeinright {
  transform: translateX(-2em);
}
.fadeinbottom {
  transform: translateY(2em);
}
.fadeinbig{
	transform: scale3d(1.05);
}

.fadein.scrollin,.fadeinleft.scrollin,.fadeinright.scrollin,.fadeinbottom.scrollin,.fadeinbig.scrollin {
  opacity: 1;
  transform: translate(0);
}

@media (min-width: 769px){
.count2.scrollin {
  transition-delay: 0.2s;
}
.count3.scrollin {
  transition-delay: 0.4s;
}
}


/* ボタン用アニメーション */
button img{ animation: pulse 1s infinite; }

@keyframes pulse {
  from { transform: scale3d(1, 1, 1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
  to { transform: scale3d(1, 1, 1); }
}


/* ページトップ */
#pagetop {
  display: none;
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 997;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom,#219CDC,#1B73F6);
}
#pagetop a img {
  width: 16px;
}

.blue{
    color:#1441a4;
}
.red{
    color:#ec0000;
}
.mark{
    background: #fff000;
}

.profile{
    font-size:90%;
    background:#f4f5f2;
    padding:4rem;
    margin:5rem 0;
}


.sec-2{
  background: #EEEEEC;
  background-size: contain;
  padding: 4rem 0;
}

.sec-2 ul{
  display: flex;
  justify-content: space-between;
  margin-bottom:2rem;
}
.sec-2 ul li{
  display: block;
  width: 47%;
  padding-bottom: 0rem;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
.sec-2 ul li img{
    border-radius:8px;
}
.sec-2 ul li .name, .name2{
    font-size: 2.4rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
}
.sec-2 ul li .sub{
    margin: 2rem 0;
}

.scroll {
  overflow:auto;
  width:100%; height:300px;
  padding:12px;
  border:1px dotted #ddd;
  border-radius:8px;
  background: #fafafa;
  margin-bottom:3rem;
}
.scroll1 {
  overflow:auto;
  width:100%; height:500px;
  padding:12px;
  border:1px dotted #ddd;
  border-radius:8px;
  background: #fafafa;
  margin-bottom:3rem;
}


/*　PC
------------------------------------------------------------------------------------------------*/
@media (min-width: 769px){
.sp{ display: none !important; }

html{ font-size: 10px; }
body{ font-size: 1.8em; }

.content{
  width: 100%;
	max-width: 940px;
  padding: 0 50px;
	margin: 0 auto;
}



/*　タブレット
------------------------------------------------------------------------------------------------*/
@media (max-width: 1100px){

html{ font-size: 0.9vw; }

.content{
  padding: 0 4.54%;
}




}/*　タブレットここまで */
}/*　PCここまで */




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px){
.pc{ display: none !important; }

html{ font-size: 2.6vw; }
body{ font-size: 1.3em; }

.content{
	width: 100%;
	padding: 0 2%;
}

.big1{ font-size: 1.6rem;line-height:2.4rem; }
.sp-big1{ font-size: 2.4rem;line-height: 1.5; }
.sp-big2{ font-size: 2rem; }
.sp-big3{ font-size: 1.6rem; }
.maker1,.maker2,.maker3{
  color: #fff;
  padding: 0 0 0.15em;
  margin: 0 0.1em 0 0;
}

.profile{
    font-size:90%;
    background:#f4f5f2;
    padding:2rem;
    margin:5rem 0;
}

header{
  background: note;
  background-size: cover;
  padding: 0rem 0 0rem;
}
header img.logo{
  width: 14.6rem;
  left: 2rem;
  top: 2rem;
}
header h1 img{
  width: 95%;
  margin-bottom:24px;
}


.cta{
  background: url(../images/sp/cta-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 3rem 0 2rem;
}
.cta h2{
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cta p{
  font-size: 1.4rem;
  text-align: left;
}
.cta h2::before,
.cta h2::after{
  width: 2.8rem;
  height: 2.4rem;
  top: 1.1em;
}
.cta h2::before{
  left: -4.2rem;
}
.cta h2::after{
  right: -4.2rem;
}
.cta input[type=text]{
  width: 100%;
  line-height: 6rem;
  font-size: 1.5rem;
  margin: 1.5rem auto 1rem;
}
.cta button{
  display: block;
  background: none;
  border: none;
  width: 68.4rem;
  margin: 0 auto;
}

footer{
  padding: 2rem 0 2rem;
  font-size: 1rem;
  margin-top:0px;
}
footer a{
    color: #fff;
}

#loading img {
  width: 24.6rem;
}

input[type="text"] {
  height: 50px;
  line-height: 60px;
  margin-bottom: 0px;
  font-size: 1.6rem;
  background: #f6f6f6;
  width:94%;
  border-radius: 0.5rem;
  margin: 1rem 1rem 0rem;
}


input[type="email"] {
    height: 50px;
    line-height: 60px;
    font-size: 1.6rem;
    background: #f6f6f6;
    width:94%;
    border-radius: 0.5rem;
    margin: 1rem 1rem 2rem;
  }

}/*　スマホここまで */

.sec-2{
  background: #fff;
  padding:0;
  margin:4rem 0 6rem;
}


.sec-2{
  background: #fff;
  padding: 0rem 0 0rem;
}
.sec-2 .sec-2-img {
  margin: 3rem 0;
}

.sec-2 ul{
  display: flex;
  justify-content: space-between;
  margin-bottom:0rem;
}
.sec-2 ul li{
  display: block;
  width: 48%;
  padding-bottom: 0rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
}
.sec-2 ul li img{
    border-radius:10px;
}
.sec-2 ul li .name{
    font-size: 1.8rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
}
.sec-2 ul li .name2{
    font-size: 1.5rem;
    font-weight: bold;
    /*line-height:1.2rem;*/
    margin: 2rem 0 1rem;
}
.scroll {
		overflow:auto;
		width:100%; height:200px;
		padding:8px;
        border:1px dotted #ddd;
        border-radius:8px;
        background: #fafafa;
        margin-bottom:1rem;
        font-size: 1.5rem;
}
.scroll1 {
  overflow:auto;
  width:100%; height:290px;
  padding:8px;
      border:1px dotted #ddd;
      border-radius:8px;
      background: #fafafa;
      margin-bottom:1rem;
      font-size: 1.5rem;
}


 /* レター */
.message{
  content: "";
  display: block;
  width: 100%;
  background: url(../images/bonus.jpg) center center no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 0;
  padding: 1rem 0 6rem;
}
.message .bgw{
  background: #fff;
  padding: 4rem 0rem;
  text-align: center;
  font-size:2rem;
}
.btn{
    animation: pulse 1s infinite; 
    width: 90rem;
    margin:2rem auto 2rem;
}

.tac{
    text-align: center;
    margin: 0rem auto 3rem;
}

.sec-letter {
    margin-bottom:2rem;
}
.sec-letter .box-1{
  padding: 0rem 0 0rem;
  position: relative;
}

.sec-letter h2 img{
  margin-bottom: 6rem;
}
.sec-letter .box-1 .inner{
  padding: 0 8rem;
}
.sec-letter .box-1 img.image{
  margin: 5rem 0;
}
.before .wrap{
  padding-top: 6rem;
  position: relative;
}
.before .wrap::before{
  content: "";
  display: block;
  width: 100%;
  height:120rem;
  background: url(../images/cta.jpg) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 768px){
.message{
  background: url(../images/bonus_sp.jpg) center center no-repeat;
  background-size: cover;
  padding: 0rem 0 0rem;
}
.btn{
    animation: pulse 1s infinite; 
    width: 95%;
    margin:0rem auto 1rem;
}
.tac{
    text-align: center;
    margin: 0rem auto 3rem;
    font-size:1.1rem;
}
.sec-letter .box-1{
  padding: 0rem 1.4rem 1rem;
  position: relative;
}
.sec-letter h2 img{
  margin-bottom: 1rem;
}
.sec-letter .box-1 .inner{
  padding: 0 1.4rem;
}
.sec-letter .box-1 img.image{
  margin: 5rem 0;
}
.before .wrap{
  padding-top: 2rem;
  position: relative;
}
.before .wrap::before{
  content: "";
  display: block;
  width: 100%;
  height: 86.5rem;
  background: url(../images/cta_sp.jpg) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
}

.sec-5 ul li img {
  transition: all 300ms ease-in-out;
}
.sec-5 ul li:hover img {
  opacity: 0.7;
}
