@charset "utf-8";

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
  vertical-align: bottom;
}



/* CSS Document */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html { font-size: 62.5%; }

body {
  font-size: 1.6rem;
  font-family:'Noto Sans JP', 'Noto Sans JP', Meiryo, sans-serif;
  color: #212121;
  background-color: #fff;
}

html, body {
  height: 100%;
}

li {
  list-style: none;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  -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;
}
a:hover {
  -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;
  filter: brightness(110%) contrast(90%);
}
a:hover img {
  /*opacity: 0.8;*/
  -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;
  filter: brightness(110%) contrast(90%);
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
}

.clearfix:after {
  clear: both;
}

@media (max-width: 768px) {
   body {
    font-size: 1.4rem;
  } 
}

/*****************/
.l_container {
  width: min(1070px,89.1vw);
  margin: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .l_container {
  width: 93.3vw;
  }
}

[class^=col-] {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 0px;
  padding-left: 0px;
}


/* anime */
.inview,
.inv,
.fadein,
.fadeinD,
.fadeinL,
.fiL,
.fiR,
.bgRLextendAnime{
  opacity: 0;
}
.inv{
  animation-delay: 0;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
}

/*****************
header
*****************/
.header {
  background: #212121;
}
.inner-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1040px,100vw);
  margin: auto;
  padding: 7px 15px 7px 26px;
}
.logo{
  display: inline-block;
}
.logo_tv{
  width: 100%;
  max-width: 240px;
  margin-block: 11px 8px;
}
.header_link{
  display: flex;
  gap: 10px;
}
.header_link a:hover{
  filter: brightness(120%) contrast(80%);
}

@media (max-width: 768px) {
  .header {
    border-bottom: none;
  }
  .inner-header{
    max-width: 100%;
    padding: 2.6vw 2.9vw calc(2.6vw - 1px) 2.8vw;
  }
  .logo_tv{
    width: 46.1vw;
    max-width: auto;
    margin-block: 0;
  }
  .logo_tv img{
    display: block;
  }
  .header_link{
    display: flex;
    gap: 1vw;
  }
  .header_link_cd{
    width: 14.8vw;
  }
  .header_link_dvd{
    width: 20.1vw;
  }
  .header_link_guide{
    width: 6.2vw;
  }
}

/*****************
grid
*****************/
.l_wrap{
  display: grid;
  grid-template: 
  "main-top main-top main-top" 510px
  ". . ." 50px
  ". main-content ." auto
  ". . ." 155px
  / 1fr minmax(96vw,760px) 1fr;
//  background: #ffd100;
}
.main-top {
  grid-area: main-top;
}
.main-content{
  grid-area: main-content;
  justify-self: center;
}

@media (max-width: 768px) {
  .l_wrap{
    display: grid;
    grid-template: 
    "main-top main-top main-top" 1fr
    ". . ." 6.7vw
    ". main-content ." auto
    ". . ." 20vw
    / 1fr 94.7vw 1fr;
  }
}

/*****************
main
*****************/
.loading{
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans",'Noto Sans JP', Meiryo, sans-serif;
  background: #fff;
}
.main-content{
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans",'Noto Sans JP', Meiryo, sans-serif;
}
.dp_sp{
  display: none;
}
.dp_pc{
  display: block;
}

.main-top {
  width: 100vw;
  background: url(../img/bg_main.png) center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main-top h1{
  width: min(135vw, 1280px);
  margin: auto;
}
.main-top .img img{
  width: 80%;
  margin: 0 10%;
}
.main-top .term{
  width: min(100vw,760px);
  margin: auto;
  z-index: 10;
}
.l_used_contents{
  margin-inline: auto;
}
.l_used_ttl{
  width: min(98vw,746px);
  margin-inline: auto;
  margin-bottom: 24px;
}
.l_used_btn{
  display: flex;
  gap: 80px;
  margin-bottom: 35px;
  margin-right: 8px;
}
.l_used_btn li{
  width: calc((100% - 80px) / 2);
}
.l_used_atten{
  color: #000;
  margin-left: 8px;
  margin-bottom: 35px;
  font-size: 15px;
  line-height: 1.73;
}
.el_bold{
  font-weight: 600;
}
.l_used_atten a{
  color: #004098;
  text-decoration: underline;
  &:hover{
    text-decoration: none;  
  }
}
.l_used_atten > ul,.l_used_atten > p{
  margin-bottom: 25px;
}
 .l_used_confirm_txt{
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center; 
}
.l_used_regist{
  display: block;
  width: min(60vw,487px);
  margin-inline: auto;
}
.l_bnrArea ul{
  display: flex;
  gap: 45px;
  margin-bottom: 55px;
}

@media (max-width: 768px) {
  .loading img{
  }
  .dp_sp{
    display: block;
  }
  .dp_pc{
    display: none;
  }

  .main-top {
    margin-inline: auto;
  }
  .main-top h1{
    width: 100%;
  }
  .main-top .img img{
    width: 100%;
    margin: 0;
  }
  .l_used_ttl{
    width: 92.5vw;
    margin-bottom: 8.6vw;
  }
  .loading{
    flex-direction: column;
    align-items: center;
    gap: 6.5vw;
    margin-bottom: 4vw;
    margin-right: 0;
  }
  .l_used_btn{
    flex-direction: column;
    align-items: center;
    gap: 6.6vw;
    margin-bottom: 10.6vw;
    margin-right: 0;
  }
  .l_used_btn li{
    width: 79.7vw;
  }
  .l_used_atten{
    width: 82vw;
    margin-inline: auto;
    margin-bottom: 13vw;
    font-size: 2.9vw;
    line-height: 1.63;
  }
  .l_used_atten > ul,.l_used_atten > p{
    margin-bottom: 4.9vw;
  }
  .l_used_confirm_txt{
    margin-bottom: 9.3vw;
    font-size: 3.2vw;
    line-height: 1.66;
  }
  .l_used_regist{
    width: 79.7vw;
  }
  .l_bnrArea{
    width: 47.4vw;
    margin-inline: auto;
  }
  .l_bnrArea ul{
    flex-direction: column;
    gap: 5.3vw;
    margin-right: 0;
    margin-bottom: 6.6vw;
  }
}

/*****************
main-content
*****************/
.main-content{
  width: min(100vw,760px);
  margin-inline: auto;
}
.l_campaign{
  margin-bottom: 50px;
}
.l_campaign_lead{
  margin-bottom: 28px;
  font-size: min(4vw,24px);
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.25;
  text-align: center;
  letter-spacing: .03em;
}
.l_campaign_entryArea{
  margin-bottom: 28px;
  padding: 55px 20px 55px 27px;
  border: 4px solid currentColor;
  border-radius: 32px;
}
.l_campaign_entryArea_inner{
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.l_campaign_entryArea_inner div{
  flex: 1;
  margin-top: -10px;
}
.l_campaign_entryArea_inner div h2{
  margin-bottom: 15px;
  font-size: min(5.9vw,44px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .01em;
  color: #e60012;
}
.l_campaign_entryArea_inner div p{
  font-size: min(2.3vw,18px);
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.77;
}
.l_campaign_entryArea_img{
  width: min(31vw,236px);
}
.l_campaign_entryArea_btn{
  display: block;
  width: min(82.8vw,621px);
  margin-inline: auto;
  transform: translateX(-7px);
}
.l_campaign_atten{
  font-size: min(3.1vw,24px);
  font-weight: 600; 
  font-feature-settings: "palt";
  letter-spacing: -.03em;
}

@media (max-width: 768px) {
  .main-content{
    width: 100%;
  }
  .l_campaign{
    margin-bottom: 8.6vw;
  }
  .l_campaign_lead{
    margin-bottom: 4.3vw;
    font-size: 4.8vw;
    line-height: 1.51;
  }
  .l_campaign_entryArea{
    margin-bottom: 4vw;
    padding: 7.3vw 3.3vw;
    border: 2px solid currentColor;
    border-radius: 4.26vw;
  }
  .l_campaign_entryArea_inner{
    gap: 2vw;
    margin-bottom: 2vw;
  }
  .l_campaign_entryArea_inner div{
    flex: 1;
    margin-top: -1.3vw;
  }
  .l_campaign_entryArea_inner div h2{
    margin-bottom: 2vw;
    font-size: 5.4vw;
  }
  .l_campaign_entryArea_inner div p{
    font-size: 3.4vw;
    line-height: 1.34;
  }
  .l_campaign_entryArea_img{
    width: 29.6vw;
  }
  .l_campaign_entryArea_txt{
    margin-bottom: 2.6vw;
    font-size: 3.2vw;
    font-weight: 600;
    text-align: center;
  }
  .l_campaign_entryArea_btn{
    width: 78vw;
    transform: translateX(0);
  }
  .l_campaign_atten{
    font-size: 3.2vw;
    line-height: 1.6;
    text-align: center;
  }
}

/*****************
.atten
*****************/
/*.l_atten{
  padding: 120px 0 350px;
  background: url("../img/main_btm.png") top -10px center repeat-x #fff;
}*/
.l_atten {
  margin-bottom: 160px;
}
.l_atten .el_sttl{
  font-size: min(4.2vw,32px);
  font-weight: 600;
  margin-bottom: 30px; 
  text-align: center;
}
.atten_txt{
  border-radius: 15px;
  background: #fff;
  height: 387px;
  margin: auto;
  padding: 30px 50px 10px;
  overflow-y: scroll;
  font-size: min(2.6vw,20px);
  line-height: 1.8;
  border: 1px solid #c1c1c1;
}
.atten_txt h4{
  font-size: min(2.6vw,20px);
}
.atten_txt p{
  margin-bottom: 30px;
}
.atten_txt a{
  color: #2188e9;
  text-decoration: underline;
}
.atten_txt a:hover{
  text-decoration: none;
}

@media (max-width: 768px) {
  .l_atten {
    margin-bottom: 8vw;
  }
  .l_atten .el_sttl{
    font-size: 4.2vw;
    margin-bottom: 4vw;
  }
  .atten_txt{
    border-radius: 2vw;
    height: 51.3vw;
    padding: 4vw 6.6vw 1.3vw;
    font-size: 2.6vw;
  }
  .atten_txt h4{
    font-size: 2.6vw;
  }
  .atten_txt p{
    margin-bottom: 4vw;
  }
}

/*****************
footer 追加
*****************/
.footer{
  background: #000;
  position: relative;
  z-index: 3;
}
.inner-footer{
  width: min(97.5vw,1170px);
  margin: auto;
  padding: 17px 29px 19px 52px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
}
.el_license{
  font-size: 1.1rem;
  color: #fff;
  padding-top: 5px;
  text-align: right;
}
.el_footerLogo img {
    width: 160px;
}


@media (max-width: 768px) {
  .inner-footer{
    max-width: 100%;
    padding: 3.6vw 4.6vw 4.5vw;
  }
  .el_footerLogo{
    width: 35.6vw;
  }

  .el_license{
    font-size: 0.9rem;
    padding-top: 5px;
  }
}

/*****************
footer 既存
*****************/
.copyright {
  line-height: 18px;
}

.copyright a, .copyright span {
  color: #999999;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: normal;
}

.copyright a:hover, .copyright span:hover {
  text-decoration: none;
}

.footer {
  /*margin-top: 180px;*/
}

.footer .license {
  background-color: #000000;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  z-index: 999;
  cursor: pointer;
  display: none;
}

#back-to-top img {
  width: 100%;
}

#page-top_img {
  position: fixed;
  bottom: 50px;
  right: 5vw;
  font-weight: 700;
  z-index: 2;

  opacity: 0;
  width: 178px;

  padding-bottom: 40px;
}


/*　上に上がる動き　*/
#page-top_img.UpMove{
animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
from {
  opacity: 0;
transform: translateY(100px);
}
to {
  opacity: 1;
transform: translateY(0);
}
}

/*　下に下がる動き　*/
#page-top_img.DownMove{
animation: DownAnime 0.15s forwards;
}
@keyframes DownAnime{
from {
  opacity: 1;
transform: translateY(0);
}
to {
  opacity: 1;
transform: translateY(100px);
}
}

@media (max-width: 768px) {
#page-top_img {
  position: fixed;
  bottom: 18.6vw;
  right: 2.6vw;
  z-index: 2;

  opacity: 0;
  width: 36vw;
  padding-bottom: 25px;
}
}

body.loading .wrap-loading {
  display: block;
}

.wrap-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #073983;
  z-index: 9999;
  display: none;
}

.wrap-loading .loading-icon {
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.wrap-loading .loading-icon:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}
