@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(1200px,100vw);
  margin: auto;
  padding: 20px 0 13px 45px;
}
.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: 4.1vw 3.6vw 3.5vw;
  }
  .logo_tv{
    width: 32vw;
    max-width: auto;
    margin-block: 0;
  }
  .logo_tv img{
    display: block;
  }
}

/*****************
grid
*****************/
.l_wrap{
  display: grid;
  grid-template: 
  "main-top main-top main-top" 600px
  ". . ." 70px
  ". main-content ." auto
  ". . ." 100px
  / 1fr minmax(auto,1300px) 1fr;
}
.main-top {
  grid-area: main-top;

  overflow: hidden;
}
.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" 67.6vw
    ". . ." 128px
    ". main-content ." auto
    ". . ." 280px
    / 1fr minmax(auto,1300px) 1fr;
  }

} 

@media (max-width: 768px) {
  .l_wrap{
    display: grid;
    grid-template: 
    "main-top main-top main-top" 133.4vw
    ". . ." 10vw
    ". main-content ." auto
    ". . ." 23.33vw
    / 1fr 99vw 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: 600px;
  margin: auto;
  background: url(../img/bg_main.png) top center;
  background-size: cover;

  overflow: hidden;
}
@container (width => 1680px) {
  .main-top {
    height: 812px;
  
  overflow: hidden;
}
  
}
@media (max-width: 1200px) and (min-width: 769px) {
  .main-top {
    height: 67.6vw;
  
  overflow: hidden;
}
}
.main-top .img{
  width: min(1204px,100vw);
  margin: auto;
  transform: none;
}
.main-top .img img{
  width: 70%;
  margin: 0 auto;
}

@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;
  
  overflow: hidden;
}
  .main-top .img{
    width: 100vw;
    margin: auto;
    transform: translateX(0);
  }

  .main-top .img img{
  width: 100%;
  }
}


/*****************
workWrap
*****************/
.workWrap{
  margin: 0 min(3.3vw,40px) 0;
  padding-bottom: 100px;
}
.work_bg:last-of-type .workWrap{
  padding-bottom: 160px;
}
.workWrap .el_category{
  min-width: 80px;
  margin-bottom: 11px;
  padding: 2px 14px 5px;
  display: inline-block;
  background: #000;
  border-radius: 5px;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}
.l_workList{
  /*background: #f8f8f8;*/
  padding: 0;
}
.l_workListTitle{
  font-size: min(1.49vw,18px);
  padding-bottom: 15px;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 1.33;
}
.l_workList ul{
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
/*  -webkit-box-align: end;
	-ms-flex-align: end;
  align-items: flex-end;*/
  gap: 95px 20px;
}
.cd .l_workList ul{
  justify-content: space-between;
}
.l_workList li{
  width: calc((100% - 20px * 3) / 4);
  display: flex;
}
.cd .l_workList li{
  width: calc((100% - 120px * 2) / 3);
  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: 15px;
  text-align: center;
  margin-left: auto;
  margin-right: auto; 
  width: min(15.4vw,185px);
}
.l_workList .jkt img{
  display: block;
  height: min(22.25vw,268px);
  object-fit: fill;
  margin-left: auto;
}
.l_workList .btn{
  margin-top: auto;

  margin-left: auto;
  margin-right: auto; 
  width: min(22.2vw,267px);
}
.l_workList .btn img{
  width: 100%;
}

@media (max-width: 768px) {
  .workWrap{
    margin: 0;
    padding-bottom: 10.6vw;
  }
  .l_workList{
    /*background: #f8f8f8;*/
    padding: 0;
  }
  .l_workListTitle{
    font-size: 3vw;
    padding-bottom: 2vw;
    letter-spacing: 0.025em;
  }
  .l_workList{
    width: 92.26vw;
    margin-inline: auto;
  }
  .l_workList ul{
    margin-inline: auto;
    justify-content: normal;
    gap: 8.6vw 3.6vw;
  }
  .l_workList li{
    width: calc((100% - 3.6vw) / 2);
  }
  .l_workList .jkt {
    margin-bottom: 2.6vw;
    width: 31vw;
  }
  .l_workList .jkt img{
    height: 44.9vw;
  }
  .l_workList .btn{
    width: 44.13vw;
  }
}

/*****************
.l_bnrArea
*****************/
.l_bnrArea{
  width: min(76vw,750px);
  margin-inline: auto;
  text-align: center;
}
.l_bnrArea ul{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.l_bnrArea img{
  width:80%;
  margin:0 auto;
}


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

  .l_bnrArea img{
    width:100%;
  }
}

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

  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: 1.2vw;
  z-index: 2;

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