@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: #000;
  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(115%) 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(1130px,94.16vw);
  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: #000;
}
.inner-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1165px,100vw);
  margin: auto;
  padding: 16px 0 17px 12px;
}
.logo{
  display: inline-block;
}
.logo_tv{
  width: 100%;
  max-width: 240px;
}

@media (max-width: 768px) {
  .header {
    border-bottom: none;
  }
  .inner-header{
    max-width: 100%;
    padding: 3.55vw 4.5vw 3.4vw;
  }
  .logo_tv{
    width: 40.8vw;
    max-width: auto;
    margin-block: 0;
  }
  .logo_tv img{
    display: block;
  }
}

/*****************
grid
*****************/
.l_wrap{
  display: grid;
  grid-template: 
  "main-top main-top main-top" 700px
  ". . ." 40px
  ". main-content ." auto
  ". . ." 170px
  / 1fr min(93.7vw,1045px) 1fr;
}
.main-top {
  grid-area: main-top;
}
.main-content{
  grid-area: main-content;
  justify-self: center;
}

@media (max-width: 1200px) and (min-width: 769px) {
  .l_wrap{
    display: grid;
    grid-template: 
    "main-top main-top main-top" 66.9vw
    ". . ." 40px
    ". main-content ." auto
    ". . ." 170px
  / 1fr min(93.7vw,1045px) 1fr;
  }

} 

@media (max-width: 768px) {
  .l_wrap{
    display: grid;
    grid-template: 
    "main-top main-top main-top" 60vw
    ". . ." 4vw
    ". main-content ." auto
    ". . ." 24vw
  / 1fr 89.7vw 1fr;
  }
}

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

}
.dp_sp{
  display: none;
}
.dp_pc{
  display: block;
}

.main-top {
  width: 100%;
  height: 702px;
  margin: auto;
  background: url(../img/bg_main.png) top;
  background-size: cover;
}
@container (width => 1680px) {
  .main-top {
    height: 702px;
  }  
}
@media (max-width: 1200px) and (min-width: 769px) {
  .main-top {
    height: 66.9vw;
  }
}
.main-top .img{
  width: min(1106px,100vw);
  margin: 65px auto 0;
  transform: translateX(4px);
}
.main-top .img img{
  width: 100%;
}

@media (max-width: 768px) {
  .loading img{
    width: 100%;
  }
  .dp_sp{
    display: block;
  }
  .dp_pc{
    display: none;
  }
  .main-top {
    padding-top: 0; 
    padding-bottom: 0;  
    background: none;
    height: auto;
  }
  .main-top .img{
    width: 100vw;
    margin: auto;
    transform: translateX(0);
  }
  .main-content{
    width: 89.7vw;
    margin-inline: auto;
  }
}

/*****************
l_priceDown
*****************/
.l_priceDown{
  .l_ttl{
    width: min(72.9vw,762px);
    margin-inline: auto;
    margin-bottom: 89px;
  }
}
.l_priceDownSubject{
  border: 1px solid currentColor;
  border-radius: 16px;
  margin-inline: 35px;
  color: #1a1a1a;
  .l_sttl{
    width: min(20.6vw,212px);
    margin-inline: auto;
    margin-top: -22px;
  }

  .l_priceDownSubject_wrap{
    display: flex;
    flex-wrap: wrap;
    width: min(100vw,750px);
    margin-inline: auto;
    padding: 40px 30px 55px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .1em;
  }
  .l_priceDownSubject_inner{
    &:not(:last-child){
      margin-bottom: 23px;
    }

    ul{
      display: flex;
      flex-wrap: wrap;
    }

    li{
      width: 334px;
      position: relative;
      display: block;
      margin-bottom: 12px;
      padding-left: 30px;
      &::before{
        position: absolute;
        left: 3px;
        top: 4px;
        content: "";
        width: 22px;
        height: 20px;
        background: url(../img/icon_check.png);
        background-size: contain;
      }
    }

  h4{
      position: relative;
      display: block;
      margin-bottom: 12px;
      padding-left: 30px;
      &::before{
        position: absolute;
        left: 0;
        content: "";
        width: 25px;
        height: 24px;
        background: url(../img/icon_sq.png);
        background-size: contain;
      }
      & + ul > li:nth-of-type(odd){
        margin-left: 28px;
        width: 306px;
      }
    }
  }
  .l_priceDownSubject_inner:nth-of-type(3){
    ul{
      justify-content: space-between;
    }
    li{
      width: 213px;
      margin-bottom: 0;
    }
  }
}
.l_priceDownBtn{
  ul{
    display: flex;
    justify-content: center;
    gap: 27px;
    margin-block: 45px 55px;
  }
  li{
    width: min(38.7vw,405px);
  }
}
.l_priceDownDetail{
  margin-bottom: 200px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  dt{
    margin-bottom: 13px;
  }
  dd{
    margin-bottom: 45px;
  }
  li{
    line-height: 2;
  }
  a{
    text-decoration: underline;
    &:hover{
      text-decoration: none;
    }
  }
}

@media (max-width: 768px) {
  .l_priceDown{
    .l_ttl{
      width: 91.7vw;
      margin-bottom: 9.6vw;
    }
  }
  .l_priceDownSubject{
    border-radius: 2.1vw;
    width: 89.3vw;
    margin-inline: auto;
    margin-bottom: 9.6vw;
    .l_sttl{
      width: 28.2vw;
      margin-top: -2.9vw;
    }

    .l_priceDownSubject_wrap{
      width: 89.3vw;
      padding: 5.3vw 2.9vw 6vw;
      font-size: 4.2vw;
      letter-spacing: .16em;
    }
    .l_priceDownSubject_inner{
      &:not(:last-child){
        margin-bottom: 6vw;
      }

      ul{
        flex-direction: column;
      }

      li{
        width: 100%;
        margin-bottom: .5vw;
        padding-left: 4.5vw;
        &::before{
          left: 0;
          top: 4px;
          width: 2.9vw;
          height: 2.6vw;
          background-repeat: no-repeat;
        }
      }

    h4{
        margin-bottom: .5vw;
        padding-left: 4.5vw;
        &::before{
          top: 5px;
          width: 3.3vw;
          height: 3.2vw;
          background-repeat: no-repeat;
        }
        & + ul > li:nth-of-type(odd){
          margin-left: 4.5vw;
          width: 100%;
        }
        & + ul > li:nth-of-type(even){
          margin-left: 4.5vw;
          width: 100%;
        }
      }
    }
    .l_priceDownSubject_inner:nth-of-type(3){
      li{
        width: 100%;
      }
    }
  }
  .l_priceDownBtn{
    margin-bottom: 8vw;
    ul{
      flex-direction: column;
      gap: 3.3vw;
      margin-block: 0;
    }
    li{
      width: 88.8vw;
      margin-inline: auto;
    }
  }
  .l_priceDownDetail{
    margin-bottom: 7.6vw;
    font-size: 3.2vw;
    font-weight: 500;
    dt{
      margin-bottom: 0.5vw;
      font-size: 3.7vw;
      font-weight: 600;
    }
    dd{
      margin-bottom: 6.6vw;
      line-height: 1.6;
      letter-spacing: .05em;
    }
    li{
      line-height: 1.6;
      letter-spacing: .05em;
    }
  }
}

/*****************
workWrap
*****************/
.workWrap{
  padding-bottom: 80px;
  .l_ttl{
    width: min(71.7vw,750px);
    margin-inline: auto;
    margin-bottom: 60px;
  }
}
.l_workList{
  &.el_dvd{
    margin-bottom: 60px;
  }
  &.el_cd{
    margin-bottom: 30px;
  }
}
.l_workTtl{
  position: relative;
  font-size: min(2.2vw,24px);
  font-weight: 600;
  padding-left: 30px;
  padding-bottom: 20px;
  letter-spacing: 0.075em;

  &::before{
    content: "■";
    color: #fef934;
    position: absolute;
    left: 0;
  }
}
.el_cd .l_workTtl{
  &::before{
    color: #6ce7ff;
  }
}
.l_workList ul{
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
/*  -webkit-box-align: end;
	-ms-flex-align: end;
  align-items: flex-end;*/
  gap: 30px 15px;
}
.l_workList li{
  width: calc((100% - 15px * 5) / 6);
  display: flex;
}
.l_workList li a{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
/*align-items: baseline;*/
}
.l_workList .jkt {
  margin-bottom: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto; 
  width: 100%;
}
.l_workList .jkt img{
  /*width: min(14.8w,155px);
 height: min(20.3vw,213px);*/
 height: min(20.3vw,213px);
  object-fit: cover;
  margin-inline: auto;
}
.l_workList.el_cd .jkt img{
  width: min(15.3vw,160px);
  height: min(14.8vw,155px);
  object-fit: cover;
  
}
.l_workListTitle,.l_workListName{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}
.l_workListAtten{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.87;

  a{
    text-decoration: underline;
    &:hover{
      text-decoration: none;
    }
  }
}

@media (max-width: 768px) {
  .workWrap{
    padding-bottom: 10.4vw;
    .l_ttl{
      width: 100%;
      margin-bottom: 10.6vw;
    }
  }
  .l_workList{
    &.el_dvd{
      margin-bottom: 4vw;
    }
    &.el_cd{
      margin-bottom: 10.6vw;
    }
  }
  .l_workTtl{
    font-size: 4.2vw;
    padding-left: 6vw;
    padding-bottom: 6.6vw;
  }
  .l_workList ul{
    gap: 4vw 2.5vw;
  }
  .l_workList li{
    width: calc((100% - 2.5vw * 2) / 3);
  }
  .l_workList .jkt {
    margin-bottom: 1.26vw;
  }
  .l_workList .jkt img{
    /*width: min(14.8w,155px);
  height: min(20.3vw,213px);*/
  height: 38.6vw; 
    object-fit: cover;
    margin-inline: auto;
  }
  .l_workList.el_cd .jkt img{
    width: 28.2vw;
    height: 28.2vw;  
  }
  .l_workListTitle,.l_workListName{
    font-size: 3.2vw;
    font-weight: 600;
    line-height: 1.16;
  }
  .el_cd .l_workListTitle,.l_workListName{
    font-size: 2.9vw;
  }
  .l_workListAtten{
    font-size: 3.7;
    line-height: 1.7;
  }
}

/*****************
.l_searchList
*****************/
.l_searchList{
  margin-bottom: 30px;
  h3{
    width: min(13.4vw,141px);
    margin-bottom: 15px;
  }
  ul{
    display: flex;
    gap: 8px;
  }
  li a{
    position: relative;
    display: block;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #dadada;
    width: min(22.9vw,240px);
    padding: 15px;
    font-size: min(2.1vw,22px);
    font-weight: 600;
    letter-spacing: .1em;

    &::after{
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      content: "";
      width: 0;
      height: 0;
      border-left: 6px solid black;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      
    }
  }
  li.el_dvd a{
    background: #fef934;
  }
  li.el_cd a{
    background: #6ce7ff;
  }
}

@media (max-width: 768px) {
  .l_searchList{
    margin-bottom: 4.6vw;
    h3{
      width: 29vw;
      margin-bottom: 2vw;
    }
    ul{
      gap: 1.3vw;
    }
    li a{
      border-radius: 2.1vw;
      width: 44vw;
      padding: 2.6vw;
      font-size: 4.4vw;
      font-weight: 500;

      &::after{
        position: absolute;
        right: 2vw;
        top: 50%;
        transform: translateY(-50%);
        content: "";
        width: 0;
        height: 0;
        border-left: 5px solid black;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        
      }
    }
  }
}

/*****************
.l_categoryList
*****************/
.l_categoryList{
  &.l_dvd{
    margin-bottom: 13px;
    h3{
      width: min(9.9vw,104px);
      margin-bottom: 10px;
    }
    li a{
      background: #fefde0;
    }
  }
  &.l_cd{
    margin-bottom: 58px;
    h3{
      width: min(7.9vw,83px);
      margin-bottom: 10px;
    }
    li a{
      background: #dff7ff;
    }
  }
}
.l_categoryList{
  ul{
    display: flex;
    gap: 7px;
  }
  li a{
    position: relative;
    display: block;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #dadada;
    width: min(17.7vw,185px);
    padding: 24px 10px 24px 0;
    font-size: min(1.5vw,16px);
    font-weight: 500;
    letter-spacing: -.05em;

    &::after{
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      content: "";
      width: 0;
      height: 0;
      border-left: 8px solid black;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;   
    }
  }
}

@media (max-width: 768px) {
  .l_categoryList{
    &.l_dvd{
      margin-bottom: 3.7vw;
      h3{
        width: 22.8vw;
        margin-bottom: 3.3vw;
      }
    }
    &.l_cd{
      margin-bottom: 9.3vw;
      h3{
        width: 18.2vw;
        margin-bottom: 3.3vw;
      }
    }
  }
  .l_categoryList{
    ul{
      flex-wrap: wrap;
      gap: 1.8vw 1vw;
    }
    li a{
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2.1vw;
      width: 29.2vw;
      height: 11vw;
      padding: 0 1.8vw 0 0;
      font-size: 3.7vw;
      letter-spacing: -.05em;

      &::after{
        position: absolute;
        right: 1.3vw;
        top: 50%;
        transform: translateY(-50%);
        content: "";
        width: 0;
        height: 0;
        border-left: 6px solid black;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;   
      }
    }
  }
}


/*****************
.l_bnrArea
*****************/
.l_bnrArea{
  width: min(49.5vw,518px);
  margin-inline: auto;
}
.l_bnrArea ul{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (max-width: 768px) {
  .l_bnrArea{
    width: 80vw;
  }
  .l_bnrArea ul{
    gap: 5.3vw;
  } 
}

/*****************
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{
    align-items: center;
    max-width: 100%;
    padding: 4vw 3.3vw 4.6vw 7.4vw;
  }
  .el_footerLogo{
    width: 32.3vw;
  }
  .el_footerLogo img {
    width: auto;
}

  .el_license{
    font-size: 1.2rem;
    padding-top: 0;
  }
}

/*****************
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: 106px;

  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: 6.6vw;
  right: 4.6vw;
  z-index: 2;

  opacity: 0;
  width: 14.1vw;
  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;
}
