@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto+Condensed:wght@400;500;600;700&display=swap');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Tables
 *   1.5  Breadcrumb
 *   1.6  Buttons
 *   1.7  Lists
 *   1.8  Forms
 *   1.9 Div Wraps
 *   1.10 Animations
 *   1.11 Other Elements
 *        1.11.1 plugins
 *        1.11.2 page top
 *        1.11.3 google map
 * 2. HEADER
 * 	  2.1 Main Nav
 *        2.1.1 main-nav (pc-only)
 *        2.1.2 main-nav-xs (sp-only)
 *        2.1.3 sns Icon
 * 3. MAIN VISUAL
 * 4. CONTENT
 *    4.1 Works
 *    4.2 Studio
 *    4.3 Contact
 * 5. FOOTER
 * 6. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html,
body {
	overflow-x: hidden;
}
body {
    font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
	letter-spacing: 0.03em;
	background: #f9f9f9;
	color: #f2142b;
	line-height: 2;
	font-size: 500;
	overflow: hidden;
}
body#contact-page {
    height: 100%;
    height: 100vh;
    overflow: hidden;
}
@media (max-width: 1199px) {
    body {
        font-size: calc(14px + 2 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    body#top-page {
        height: 100%;
        height: 100vh;
        overflow: hidden;
    }
}
@media (max-width: 380px) {
    body {
        font-size: 13px;
    }
}

a {
    color: #f2142b;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    color: #f2142b;
    text-decoration: underline;
}
a:focus {
  outline: none !important;
  overflow: hidden;
  text-decoration: none;
}
*:focus {
    outline: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

hr {
     border-top: 1px solid #f2142b;
     margin-top: 20px;
     margin-bottom: 20px;
}
@media (max-width: 767px) {
    hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

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

strong.bold50 {
    font-weight: 500;
}
strong {
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp,
.md,
.sp-md,
.sp-md-lg,
.md-lg,
.lg {
	display: none !important;
}
.md-lg-pc,
.lg-pc,
.pc {
    display: block !important;
}
@media (max-width: 1024px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 960px) {
    .lg-pc,
    .lg,
    .sp-md-none {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg-pc,
    .md-lg,
    .lg,
    .md,
    .pc,
    .sp-none {
        display: none !important;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-wrap {
    margin: 0 0 80px;
}
@media (max-width: 991px) {
    .section-wrap {
        margin-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .section-wrap {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
  .container {
    width: 1130px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1330px;
  }
}

.wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 767px) {
    .wrap {
        max-width: 100%;
    }
}

main {
    width: 100%;
    margin: 0;
    padding: 60px 0 0;
    position: relative;
    z-index: 20;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
body#top-page main {
    padding-top: 30px;
    z-index: -1;
}
@media (max-width: 991px) {
    main {
        padding-top: 30px;
    }
    body#top-page main {
        padding-top: 0;
    }
}
@media (max-width: 767px) {
    main {
        padding-top: 0;
    }
    body#top-page main {
        padding-top: 30px;
    }
}

.flex-start {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.flex-center {
    display: flex;
    flex-flow: row wrap;
    /*justify-content: center;*/
    align-items: center;
    align-content: center;
}

/* 1.1  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }
.mt90 { margin-top: 90px !important; }
.mt100 { margin-top: 100px !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }

@media (max-width: 767px) {
    .mt-30-xs {
        margin-top: -30px !important;
    }
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 10px !important;
    }
    .mt15-xs {
        margin-top: 15px !important;
    }
    .mt20-xs {
        margin-top: 20px !important;
    }
    .mt30-xs {
        margin-top: 30px !important;
    }
    .mt40-xs {
        margin-top: 40px !important;
    }
    .mt50-xs {
        margin-top: 50px !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 10px !important;
    }
    .mb15-xs {
        margin-bottom: 15px !important;
    }
    .mb20-xs {
        margin-bottom: 20px !important;
    }
    .mb30-xs {
        margin-bottom: 30px !important;
    }
    .mb40-xs {
        margin-bottom: 40px !important;
    }
    .mb50-xs {
        margin-bottom: 50px !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media (max-width: 767px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

.letter-spacing00 {
    letter-spacing: 0 !important;
}

.en {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.03em;
    font-weight: 400;
}
.en.bold50 {
    font-weight: 500 !important;
}
.en.bold60 {
    font-weight: 600 !important;
}
.en.bold70 {
    font-weight: 700 !important;
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #f2142b !important;
}
.txt-black,
.txt-black a,
.txt-black a:hover {
    color: #000 !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.txt-indent {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0;
}

.f10 { font-size: 10px !important; }
.f11 { font-size: 11px !important; }
.f12 { font-size: 12px !important; }
.f13 { font-size: 13px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f17 { font-size: 17px !important; }
.f18 { font-size: 18px !important; }
.f19 { font-size: 19px !important; }
.f20 { font-size: 20px !important; }
.f21 { font-size: 21px !important; }
.f22 { font-size: 22px !important; }
.f23 { font-size: 23px !important; }
.f24 { font-size: 24px !important; }
.f25 { font-size: 25px !important; }
@media (max-width: 991px) {
    .f18, .f19 {
        font-size: 16px !important;
    }
    .f20, .f21 {
        font-size: 17px !important;
    }
    .f22, .f23 {
        font-size: 18px !important;
    }
    .f24, .f25 {
        font-size: 20px !important;
    }
}
@media (max-width: 767px) {
    .f13, .f14 {
        font-size: 12px !important;
    }
    .f15, .f16 {
        font-size: 13px !important;
    }
    .f17, .f18 {
        font-size: 14px !important;
    }
    .f19, .f20, .f21 {
        font-size: 15px !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 16px !important;
    }
    .f16-xs {
        font-size: 16px !important;
    }
    .f15-xs {
        font-size: 15px !important;
    }
    .f14-xs {
        font-size: 14px !important;
    }
    .f13-xs {
        font-size: 13px !important;
    }
    .f12-xs {
        font-size: 12px !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.ttl {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.ttl::before {
    content: "";
    height: 1px;
    width: 40px;
    margin-right: 15px;
    background-color: #f2142b;
}
.sub {
    margin: 0 0 10px;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 1.2;
}
.subsub {
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.subsub-txt {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 1199px) {
    .ttl {
        font-size: calc(22px + 8 * (100vw - 320px) / 879);
    }
    .sub {
        font-size: calc(24px + 26 * (100vw - 320px) / 879);
    }
    .subsub-txt {
        font-size: calc(14px + 2 * (100vw - 320px) / 879);
    }
}
@media (max-width: 991px) {
    .sub {
        line-height: 1.3;
    }
}
@media (max-width: 767px) {
    .ttl {
        margin-bottom: 20px;
    }
    .ttl::before {
        width: 30px;
        margin-right: 10px;
    }
    .subsub {
        margin-bottom: 25px;
    }
}

/* 1.4 Tables
 * ------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
}
table th {
    background: #ffd8b8;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #999;
    padding: 7px 10px;
    font-weight: 400;
    text-align: center;
}
table td {
    vertical-align: middle;
    border: 1px solid #999;
    padding: 7px 10px;
    text-align: center;
}
table td p,
table td ul,
table td ol {
    margin: 0;
}
@media (max-width: 767px) {
    table th {
        white-space: nowrap;
    }
    table th,
    table td {
        padding: 8px 5px 9px;
    }
    table td {
        padding: 8px 8px 9px;
    }
}

/* 1.5 Breadcrumb
 * ------------------------------*/
/* 1.6 Buttons
 * ------------------------------*/
.btn {
    display: block;
    max-width: 400px;
    margin: 30px 0 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 20px 10px 22px;
    box-sizing: border-box;
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    border: none;
    color: #fff;
    background: #f2142b;
}
.btn i {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px !important;
}
.btn:before {
  content: '';
  position: absolute;
  border: #f2142b solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
}
.btn:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before {
  -webkit-animation-name: btn-anime;
  animation-name: btn-anime;
}
@media (max-width: 767px) {
    .btn {
        max-width: 100%;
        padding: 15px 10px 17px;
        margin: 20px auto 0;
        font-size: 15px;
    }
}

.btn i {
    font-size: 14px;
    display: inline-block;
    vertical-align: 6%;
}
.btn i.icon-right {
    margin-right: 10px;
}
.btn i.icon-left {
    margin-left: 10px;
}
@media (max-width: 767px) {
    .btn i {
        font-size: 12px;
    }
}

/* motion(btn) */
@-webkit-keyframes btn-anime {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes btn-anime {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

/* 1.7 Lists
 * ------------------------------*/
ul.disc-list {
    list-style: disc;
    margin: 0 0 10px 25px;
}
ul.disc-list li {
    list-style: disc;
}

dl.dl-table {
    width: 100%;
    margin: 0 auto 20px;
    display: table;
}
dl.dl-table dt,
dl.dl-table dd {
    display: table-cell;
    box-sizing: border-box;
    vertical-align: middle;
}
dl.dl-table dd {
    width: 80%;
    padding: 8px 5px 8px 30px;
    border-bottom: 1px dashed #f2142b;
}
dl.dl-table dt {
    width: 20%;
    background: #f2142b;
    text-align: center;
    position: relative;
    padding: 8px 5px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}
dl.dl-table dt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 10px solid #f2142b;
    z-index: 2;
}
dl.dl-table dt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 2px);
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left: 12px solid #fff;
    z-index: 1;
}
@media (max-width: 991px) {
     dl.dl-table dd {
        padding-left: 25px;
    }
}
@media (max-width: 767px) {
    dl.dl-table {
        margin-bottom: 15px;
    }
    dl.dl-table dd {
        width: 75%;
        padding: 7px 5px 7px 20px;
    }
    dl.dl-table dt {
        width: 25%;
        padding: 7px 5px;
    }
    dl.dl-table dt::before {
        border-width: 8px;
    }
    dl.dl-table dt::after {
        border-width: 10px;
    }
}
@media (max-width: 320px) {
     dl.dl-table dd {
        width: 72%;
    }
    dl.dl-table dt {
        width: 28%;
    }
}

/* 1.8 Forms
 * ------------------------------*/
/* 1.9 DIV Wraps
 * ------------------------------*/
/* 1.10 Animations
 * ------------------------------*/
/* 1.11 Other Elements
 * ------------------------------*/
/* 1.11.1 plugins ------------*/
.movie iframe {
	margin: 0;
	padding: 0;
}
@media (max-width: 767px) {
	.movie {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
	}
	.movie iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}
.fb_iframe_widget {
  margin: 20px 0;
}

/* 1.11.2 page top ------------*/
#pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 1000;
    transition: background-color 400ms;
    background: url(../image/pagetop.svg) center center no-repeat;
    background-size: contain;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
#pagetop:hover {
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 767px) {
    #pagetop {
        width: 38px;
        height: 38px;
        right: 15px;
    }
}

/* 1.11.3 google map ------------*/
.google-map {
    margin: 0;
}
.google-map iframe {
	margin: 0;
	padding: 0;
}
@media (max-width: 767px) {
	.google-map {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
	}
	.google-map iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100%;
    margin: 0;
    padding: 20px 0 0;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    /*position: relative;
    z-index: 1000;*/
}
header .container {
    position: relative;
}
@media (max-width: 767px) {
    header {
        padding-top: 30px;
    }
}

/* 2.1 Main Nav
 * ------------------------------*/
.navbar {
    width: 100%;
    margin: 0;
}
.navbar-header,
.navbar-nav,
.navbar-brand {
    margin: 0;
    padding: 0;
}

/* 2.1.1 main-nav (pc-only) ------------*/
#main-nav {
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2142b;
}
#main-nav a {
    display: block;
    text-decoration: none;
    /*padding: 1px 10px;*/
}
#main-nav a:hover {
    text-decoration: none;
    background-color: transparent;
    /*background: #f2142b;
    color: #fff;*/
}
#main-nav a:focus {
    background-color: transparent;
    overflow: inherit;
}
@media (max-width: 991px) {
    #main-nav {
        display: none;
    }
}

#main-nav a:hover span {
    -webkit-animation: letter-glow 0.7s 0s ease both;
          animation: letter-glow 0.7s 0s ease both;
}
#main-nav a:hover span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
#main-nav a:hover span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
#main-nav a:hover span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
#main-nav a:hover span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#main-nav a:hover span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
#main-nav a:hover span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#main-nav a:hover span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
#main-nav a:hover span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#main-nav a:hover span:nth-child(9) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
#main-nav a:hover span:nth-child(10) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#main-nav ul.nav {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0;
    padding: 0;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.03em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
}
#main-nav ul.nav li {
    padding-left: 30px;
    padding-right: 30px;
}
#main-nav ul.nav li a {
    display: block;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
}
#main-nav ul.nav li a {
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}
#main-nav ul.nav li a::before,
#main-nav ul.nav li.active a::before {
	position: absolute;
	top: 50%;
	left: 50%;
	color: transparent;
	content: '•';
	text-shadow: 0 0 transparent;
	font-size: 30px;
	-webkit-transition: text-shadow 0.3s, color 0.3s;
	-moz-transition: text-shadow 0.3s, color 0.3s;
	transition: text-shadow 0.3s, color 0.3s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}
#main-nav ul.nav li a:hover::before,
#main-nav ul.nav li a:focus::before,
#main-nav ul.nav li.active a::before {
	color: #F2142B;
	text-shadow: 10px 0 #F2142B, -10px 0 #F2142B;
}
#main-nav ul.nav li a:hover,
#main-nav ul.nav li a:focus,
#main-nav ul.nav li.active a {
	color: #F2142B;
}
@media (max-width: 1199px) {
    #main-nav ul.nav li {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.logo-block::before,
.logo-block a:hover::before,
.logo-block a:focus::before {
    display: none;
}
.logo-block .logo {
    width: 263px !important;
    height: 106px !important;
}
.logo-block .logo {
    fill: #F2142B;
}
.logo-block .logo-line path {
    fill-opacity: 0;
    stroke: #F2142B; /*線の色を指定する*/
    stroke-width: 2;
    stroke-dasharray: 2000;/*線の間隔を指定する*/
    stroke-dashoffset: 2000;/*線の位置を指定する(IEは効かない属性)*/
    -webkit-animation: line-anime 3s ease-in-out forwards infinite;
    animation: line-anime 3s ease-in-out forwards infinite;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit--direction: alternate;
    animation-direction: alternate;
}
@media (max-width: 991px) {
    .logo-block {
        display: block;
        width: 200px;
        margin: 0 auto;
        position: relative;
        z-index: 30;
    }
    .logo-block .logo {
        display: block;
        width: 200px !important;
        height: 81px !important;
    }
}
@media (max-width: 767px) {
    .logo-block {
        width: 150px;
    }
    .logo-block .logo {
        display: block;
        width: 150px !important;
        height: 60px !important;
    }
}

/* motion (logo-line) */
@-webkit-keyframes line-anime {
    0% {
        stroke-dashoffset: 2000;
        fill-opacity: 0;
    }
    30% {
        fill-opacity: 0;
    }
    35% {
        fill-opacity: 1;
    }
    70% {
        fill-opacity: 1;
        stroke-width: 0;
    }
    100% {
        fill-opacity: 1;
        stroke-dashoffset: 0;
        stroke-width: 0;
    }
}
@keyframes line-anime {
    0% {
        stroke-dashoffset: 2000;
        fill-opacity: 0;
    }
    30% {
        fill-opacity: 0;
    }
    35% {
        fill-opacity: 1;
    }
    70% {
        fill-opacity: 1;
        stroke-width: 0;
    }
    100% {
        fill-opacity: 1;
        stroke-dashoffset: 0;
        stroke-width: 0;
    }
}

/* 2.1.2 main-nav-xs (sp-only) ------------*/
#main-nav-xs {
    display: none;
}
@media (max-width: 991px) {
    #main-nav-xs {
        display: block;
    }
}

.header-menu {
    display: flex;
    width: auto;
    margin: 0 auto;
    padding: 10px 0 0 30px;
    cursor: pointer;
}
@media (max-width: 991px) {
    .header-menu {
        width: 40px;
        padding: 10px;
        margin-left: calc(50% - 148px);
    }
}

.header-menu:hover + .header-menu-border-mask > .header-menu-border {
    -webkit-transform: translate3d(110px, 0, 0);
    transform: translate3d(110px, 0, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 991px) {
    .header-menu:hover + .header-menu-border-mask > .header-menu-border {
        -webkit-transform: translate3d(-110px, 0, 0);
        transform: translate3d(-110px, 0, 0);
    }
}

.header-menu-icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
@media (max-width: 991px) {
    .header-menu-icon {
        margin: 0;
    }
}

.menu-icon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 1px 0 0 1px;
    position: absolute;
    top: 30px;
    right: 30px;
}
@media (max-width: 767px) {
    .menu-icon {
        top: 35px;
        right: 10px;
    }
}

.icon-bar-mask {
    position: relative;
    overflow: hidden;
}
.icon-bar-mask.top {
    width: 20px;
    margin-left: 5px;
}
.icon-bar-mask.middle {
    width: 40px;
}
.icon-bar-mask.bottom {
    width: 20px;
    margin-left: 5px;
}

.icon-bar {
    width: 20px;
    border-bottom: 0.15em solid #f2142b;
    margin-bottom: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bar.top {
    -webkit-animation: slide-bar 5s infinite;
    animation: slide-bar 5s infinite;
}
.icon-bar.top::before {
    content: "";
    position: absolute;
    width: 40px;
    border-bottom: 0.15em solid #f2142b;
    left: 25px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@media (max-width: 991px) {
    .icon-bar.top {
        -webkit-animation: none;
        animation: none;
    }
}

.icon-bar.middle {
    width: 30px;
    -webkit-animation: slide-bar-long 5s 0.2s infinite;
    animation: slide-bar-long 5s 0.2s infinite;
}
.icon-bar.middle::before {
    content: "";
    position: absolute;
    width: 40px;
    border-bottom: 0.15em solid #f2142b;
    left: 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@media (max-width: 991px) {
    .icon-bar.middle {
        -webkit-animation: none;
        animation: none;
    }
}

.icon-bar.bottom {
    -webkit-animation: slide-bar 5s 0.58s infinite;
    animation: slide-bar 5s 0.58s infinite;
}
.icon-bar.bottom::before {
    content: "";
    position: absolute;
    width: 40px;
    border-bottom: 0.15em solid #f2142b;
    left: 25px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@media (max-width: 991px) {
    .icon-bar.bottom {
        -webkit-animation: none;
        animation: none;
    }
}

@-webkit-keyframes slide-bar {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }
}
@keyframes slide-bar {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0)
    }
}
@-webkit-keyframes slide-bar-long {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }
}
@keyframes slide-bar-long {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }
}

.menu-txt {
    letter-spacing: 0.15em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    color: #f2142b;
    margin: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
    top: 35px;
    right: 90px;
}
@media (max-width: 767px) {
    .menu-txt {
        display: none;
    }
}

.header-menu-border-mask {
    position: absolute;
    display: block;
    width: 110px;
    height: 3px;
    top: 60px;
    right: calc(50% - 52px);
    overflow: hidden;
}
.header-menu-border {
    width: 110px;
    border-bottom: 1px solid #f2142b;
    -webkit-transform: translate3d(-110px, 0, 0);
    transform: translate3d(-110px, 0, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

#main-menu {
    display: none;
}

.l-menu {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    top: 0;
    left: 0;
}
.l-menu.inactive:before {
    content: "";
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}
.l-menu-active {
    width: 410px;
    height: 100%;
    margin: auto;
    margin-top: calc(50vh - 300px);
    position: relative;
    z-index: 3;
}
@media (max-width: 991px) {
    .l-menu-active {
        width: 237px;
        margin-top: 16.5vh;
    }
}

.l-menu-mask {
    position: absolute;
    display: block;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    z-index: 1;
}
.l-menu-mask:nth-child(1) {
    margin-top: 50px;
}
.l-menu-mask:nth-child(2) {
    margin-top: 165px;
}
.l-menu-mask:nth-child(3) {
    margin-top: 275px;
}
.l-menu-mask:nth-child(4) {
    margin-top: 385px;
}
@media (max-width: 991px) {
    .l-menu-mask {
        display: none;
    }
}

.l-menu-link-box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    align-content: center;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.l-menu-link-box:hover > .l-menu-link {
    -webkit-transition: all 1s;
    transition: all 1s;
    opacity: 0.15;
}
@media (max-width: 991px) {
    .l-menu-link-box:hover > .l-menu-link {
        -webkit-transition: none;
        transition: none;
        opacity: 1;
    }
}

.l-menu-link-box:hover > .l-menu-link:hover {
    -webkit-transition: all 1s;
    transition: all 1s;
    opacity: 1;
}
.l-menu-link {
    position: relative;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    color: #fff;
    margin-top: 50px;
    white-space: nowrap;
    -webkit-transition: all 1s;
    transition: all 1s;
    z-index: 0;
    text-align: center !important;
}
.l-menu-link:hover {
    color: #fff;
}
.l-menu-link span {
    display: block;
    padding: 0 40px;
}
@media (max-width: 991px) {
    .l-menu-link {
        font-size: 25px;
        margin-top: 5vh;
    }
}
@media (max-width: 767px) {
    .l-menu-link {
        font-size: 20px;
        margin-top: 3.5vh;
    }
}

.l-menu-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: url("../image/icon-close.svg"), pointer;
    z-index: 2;
}
@media (max-width: 991px) {
    .l-menu-close {
        left: auto;
        right: 0;
        width: 60px;
        height: 60px;
        cursor: pointer;
        z-index: 4;
    }
    .l-menu-close:before, .l-menu-close:after {
        content: "";
        position: absolute;
        display: block;
        width: 30px;
        height: 1px;
        background-color: #fff;
        top: 50%;
        opacity: 0;
        -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-backface-visibility: hidden;
    }
    .l-menu-close:before {
        -webkit-transform: rotate(-45deg) translateX(100%);
        transform: rotate(-45deg) translateX(100%);
        left: 15px;
    }
    .l-menu-close:after {
        -webkit-transform: rotate(45deg) translateX(-100%);
        transform: rotate(45deg) translateX(-100%);
        right: 15px;
    }
    .l-menu-close.display:before, .l-menu-close.display:after {
        opacity: 1;
    }
    .l-menu-close.display:before {
        -webkit-transform: rotate(-45deg) translateX(0%);
        transform: rotate(-45deg) translateX(0%);
    }
    .l-menu-close.display:after {
        -webkit-transform: rotate(45deg) translateX(0%);
        transform: rotate(45deg) translateX(0%);
    }
}

.l-menu-bg-container {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}
.l-menu-bgs {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
}
.l-menu-bgs2 {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
}
.l-menu-bg {
    position: absolute;
    top: 0;
    height: 100%;
}
.l-menu-bgs .l-menu-bg {
    background: #f2142b;
    z-index: 1;
    left: 50%;
    width: 10%;
}
.l-menu-bgs2 .l-menu-bg {
    background: #f2142b;
    z-index: 2;
    left: 0;
    width: 100%;
}

/* 2.1.3 sns Icon ------------*/
.icon-fb,
.icon-instagram,
.icon-twitter {
    display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
    background: none;
    text-align: center;
    position: absolute;
    margin: 0;
	top: 90px;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}
.icon-fb {
    right: 82px;
}
.icon-instagram {
    /*right: 50px;*/
    right: 15px;
}
.icon-twitter {
     right: 15px;
  }

.icon-fb .fa-facebook,
.icon-instagram .fa-instagram,
.icon-twitter .fa-twitter {
	font-size: 24px !important;
    color: #f2142b !important;
}
.icon-fb:hover,
.icon-instagram:hover,
.icon-twitter:hover {
    text-decoration: none !important;
    transition: 0.7s;
}
@media (max-width: 991px) {
    .icon-fb,
    .icon-instagram,
    .icon-twitter {
        width: 28px;
	    height: 28px;
	    border-radius: 14px;
	    top: 67px;
    }
    .icon-fb .fa-facebook,
    .icon-instagram .fa-instagram,
    .icon-twitter .fa-twitter {
        font-size: 22px !important;
    }
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
#main-visual {
    width: 100%;
    padding: 0;
    margin: 0;
}
#main-visual #video {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: -1;
}
#main-visual #video video {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 100%;
    height: auto;
    z-index: 0;
}

/*-------------------------------
 * 4. CONTENT
 * ----------------------------*/
.box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 90px;
    margin: 0 0 120px;
}
.box .col-half {
    width: calc(100% / 2 - 45px );
}
@media (max-width: 991px) {
    .box {
        margin-bottom: 80px;
        gap: 0 80px
    }
    .box .col-half {
        width: calc(100% / 2 - 40px );
    }
}
@media (max-width: 767px) {
    .box {
        gap: 40px 0;
        margin-bottom: 40px;
    }
    .box .col-half {
        width: 100%;
    }
}

/* 4.1 Works
 * ------------------------------*/
ul.works-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px 80px;
}
ul.works-list li {
    width: calc(100% / 4 - 60px );
    box-sizing: border-box;
}
ul.works-list li a {
    display: block;
}
@media (max-width: 991px) {
    ul.works-list {
        gap: 20px 40px;
    }
    ul.works-list li {
        width: calc(100% / 4 - 30px );
    }
}
@media (max-width: 767px) {
    ul.works-list {
        gap: 10px 20px;
    }
    ul.works-list li {
        width: calc(100% / 3 - 14px );
    }
}

/* 4.2  Studio
 * ------------------------------*/
.icon-tel {
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(../image/icon-tel.svg) 0 0 no-repeat;
    background-size: contain;
    margin-right: 7px;
    vertical-align: -15%;
}
.icon-mail {
    display: inline-block;
    width: 20px;
    height: 16px;
    background: url(../image/icon-mail.svg) 0 0 no-repeat;
    background-size: contain;
    margin-right: 7px;
    margin-left: 20px;
    vertical-align: -10%;
}
@media (max-width: 767px) {
    .icon-tel {
        width: 20px;
        height: 20px;
    }
    .icon-mail {
        width: 19px;
        height: 15px;
        margin-left: 0;
    }
}

ul.studio-menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 20px;
     font-size: 18px;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.02em;
    font-weight: 500;
}
ul.studio-menu li::after {
    content: "/";
    padding-left: 20px;
    font-size: 16px;
}
ul.studio-menu li:last-of-type::after {
    display: none;
}
ul.studio-menu li a:hover {
    text-decoration: none;
    opacity: 0.6;
    transition: 0.5s;
}
@media (max-width: 1199px) {
    ul.studio-menu {
        font-size: calc(14px + 4 * (100vw - 320px) / 879);
    }
    ul.studio-menu li::after {
        font-size: calc(12px + 4 * (100vw - 320px) / 879);
    }
}

/* 4.3  Contact
 * ------------------------------*/
.contact-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: center;
    height: 330px;
}
.contact-wrap .mail {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 38px;
    margin: 3px 0 0;
    text-align: center;
}
.contact-wrap .mail a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.5s;
}
.contact-wrap .mail i {
    display: inline-block;
    margin-right: 10px;
    font-size: 33px;
}
.contact-wrap .tel {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 32px;
    margin: -8px 0 0;
    text-align: center;
}
.contact-wrap .tel i {
    display: inline-block;
    margin-right: 10px;
    font-size: 28px;
}
@media (max-width: 1199px) {
    .contact-wrap .mail {
        font-size: calc(20px + 18 * (100vw - 320px) / 879);
    }
    .contact-wrap .mail i {
        font-size: calc(18px + 15 * (100vw - 320px) / 879);
    }
    .contact-wrap .tel {
        font-size: calc(18px + 14 * (100vw - 320px) / 879);
    }
    .contact-wrap .tel i {
        font-size: calc(16px + 12 * (100vw - 320px) / 879);
    }
}
@media (max-width: 991px) {
    .contact-wrap {
        height: 280px;
    }
    .contact-wrap .tel {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .contact-wrap {
        height: 250px;
    }
    .contact-wrap .mail {
        margin-top: 8px;
    }
    .contact-wrap .mail i {
        margin-right: 7px;
    }
    .contact-wrap .tel {
        margin-top: 8px;
    }
    .contact-wrap .tel i {
        margin-right: 7px;
    }
}
@media (max-width: 320px) {
    .contact-wrap {
        height: 200px;
    }
}

/*-------------------------------
 * 5. FOOTER
 * ----------------------------*/
footer {
    margin: 100px 0 0;
    padding: 0;
    text-align: center;
}
body#top-page footer {
    margin-top: 25px;
}
body#contact-page footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    margin: auto;
}
@media (max-width: 767px) {
    footer {
        margin-top: 80px;
    }
    body#top-page footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        margin: auto;
    }
}

footer ul.sns-list {
    display: none;
}
@media (max-width: 767px) {
    footer ul.sns-list {
        display: block;
    }
    body#top-page footer ul.sns-list {
        position: fixed;
        bottom: 45px;
        left: 0;
        right: 0;
        margin: auto;
    }
    footer ul.sns-list li {
        display: inline-block;
        margin: 0 5px;
    }
    footer ul.sns-list .icon-fb,
    footer ul.sns-list .icon-instagram,
    footer ul.sns-list .icon-twitter {
	    position: relative;
	    margin: 0;
	    top: 0;
	    left: 0;
    }
    footer ul.sns-list .icon-fb .fa-facebook,
    footer ul.sns-list .icon-instagram .fa-instagram,
    footer ul.sns-list .icon-twitter .fa-twitter {
        font-size: 22px !important;
    }
}

footer .copy {
    font-size: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.03em;
    font-weight: 400;
}
@media (max-width: 991px) {
    footer .copy {
        margin-top: 10px;
        font-size: 10px;
    }
}

/*-------------------------------
 * 8. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.5s;
}

/*--------- keyframes --------- */
@-webkit-keyframes slideTextFade {
    0%, 25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slideTextFade {
    0%, 25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@-webkit-keyframes fadeOut-0 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut-0 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
