@charset "UTF-8";
/*==========================================================================
Font
============================================================================*/
/*==========================================================================
Color
カラーコード変換 https://tech-unlimited.com/color.html
============================================================================*/
/*==========================================================================
Line Height
==========================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    display: block;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    display: block;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }
}
/*loader*/
/*
#loader {
  .bar {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.loaded #loader {
  .bar {
    transform: scaleX(1);
  }
  animation:fadeOut .9s alternate forwards .8s;
}*/
/*--ScrollEvent----------------------------------------------------*/
/*
.scEv {
  opacity: 0;
		transition: all .5s .1s ease-out;
	  transition: opacity .2s ease-out, transform .3s ease-out;
	transform: translateX(-10px);
	  will-change: opacity, transform;
}

.view {
 opacity: 1;
transform: translateX(0px);
}

.msk {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  animation-name: play;
  animation-duration: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  position: relative;
  &:before {
    position: absolute;
    content: '';
    width: 0%;
    left: 0;
    top: 0;
    height: 100%;
    background: $colorBlack;
    transition: width .4s cubic-bezier(.8, 0, .5, 1);
  }
}

.view .msk {
  &:before {
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 1px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: $colorBlack;
  }
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  90% {
    transform: translate(0, 100px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
*/
body {
  color: #050505;
  font-family: "Zen Kaku Gothic New", serif;
  letter-spacing: 0rem;
  font-size: clamp(15px, 1.6vw, 18px);
  background: #F8F8F8;
  overflow-y: auto;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

a {
  color: #050505;
  text-decoration: none;
  outline: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

a:visited {
  color: #050505;
  text-decoration: none;
  outline: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

a:hover {
  color: #050505;
  text-decoration: none;
  outline: none;
  opacity: 0.6;
}

a:active {
  color: #050505;
  text-decoration: none;
  outline: none;
  opacity: 0.6;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ----------common parts---------------------------------------------------------------------
-------------------------------------------------------------------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.sps {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sps {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sps {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.textL {
  text-align: left;
}

.textC {
  text-align: center;
}

.textR {
  text-align: right;
}

.w1000 {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .w1000 {
    width: 96%;
  }
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .w1200 {
    width: 96%;
  }
}

.w100 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .w100 {
    width: 100%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 15px;
  height: 15px;
  border: 4px solid #050505;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .dli-chevron-right {
    width: 12px;
    height: 12px;
    border: 3px solid #050505;
    border-left: 0;
    border-bottom: 0;
  }
}

/*===================================================================
    Transformicons
===================================================================*/
.tcon {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.8em;
  background: transparent;
  outline: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tcon > * {
  display: block;
}

.tcon:hover, .tcon:focus {
  outline: none;
}

.tcon::-moz-focus-inner {
  border: 0;
}

.tcon-menu__lines {
  display: inline-block;
  height: 0.15em;
  width: 1.8em;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #050505;
  position: relative;
}

.tcon-menu__lines::before, .tcon-menu__lines::after {
  display: inline-block;
  height: 0.15em;
  width: 1.8em;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #050505;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform-origin: 0.1607142857em center;
          transform-origin: 0.1607142857em center;
  width: 100%;
}

.tcon-menu__lines::before {
  top: 0.5625em;
}

.tcon-menu__lines::after {
  top: -0.5625em;
}

.tcon-transform .tcon-menu__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
          transform: scale3d(0.8, 0.8, 0.8);
}

.tcon:hover .tcon-menu__lines {
  background: #F8F8F8;
}

.tcon:hover .tcon-menu__lines::before, .tcon:hover .tcon-menu__lines::after {
  background: #F8F8F8;
}

.tcon-menu--xcross {
  width: auto;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: transparent;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before, .tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 0;
  width: 2.25em;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.tcon-visuallyhidden {
  border: 0;
  margin: 10px 0 0 0;
  color: #fff;
  height: 0.5rem;
}

.tcon-visuallyhidden:active, .tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

#header {
  width: 96%;
  margin: 20px auto;
  padding: 0 2%;
  height: auto;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 200;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  #header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0px auto;
    width: 97%;
    padding: 2% 2% 2% 2%;
    background: #F8F8F8;
    min-height: 60px;
  }
}
@media screen and (max-width: 480px) {
  #header {
    width: 97%;
    padding: 2% 2% 2% 2%;
  }
}
#header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#header .logo h1 {
  font-size: clamp(10px, 1vw, 12px);
  padding: 0 0 0.5rem 0;
  margin: 0;
}
#header .logo img {
  height: 45px;
  margin: 0;
  width: auto;
}
@media screen and (max-width: 1024px) {
  #header .logo img {
    width: 100%;
    height: auto;
    max-width: 220px;
  }
}
@media screen and (max-width: 480px) {
  #header .logo img {
    width: 100%;
    max-width: 180px;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  #header .ham-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
  }
  #header .ham-btn .tcon-menu--xcross {
    font-size: 1rem;
  }
}
#header .Menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  #header .Menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#header .contact {
  padding: 0px;
  margin: 0 10px 0 0px;
  font-size: clamp(11px, 1.4vw, 18px);
  line-height: 1;
  white-space: nowrap;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  #header .contact {
    margin: 0 10px 0 0px;
  }
}
@media screen and (max-width: 480px) {
  #header .contact {
    margin: 0 5px 0 0px;
  }
}
#header .contact a {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  display: block;
  font-weight: 600;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  color: #fff;
  border-radius: 8px;
  background: #000;
}
@media screen and (max-width: 1024px) {
  #header .contact a {
    display: block;
    border-radius: 4px;
    text-align: center;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 480px) {
  #header .contact a {
    padding: 10px 8px;
    border: 1px solid #fff;
  }
}
#header .contact a:hover {
  opacity: 0.6;
  text-decoration: none;
}
#header .contact .entry {
  background: #f50000;
  border: none;
  /*box-shadow: 0px 6px 0px 0px rgba(98, 6, 6, 1);*/
  padding: 12px 20px 12px 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #header .contact .entry {
    padding: 12px 15px 12px 8px;
    /*box-shadow: 0px 4px 0px 0px rgba(98, 6, 6, 1);*/
  }
}
@media screen and (max-width: 480px) {
  #header .contact .entry {
    padding: 11px 14px 11px 8px;
  }
}
#header .contact .entry::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 5px solid #fff;
}
#header .h_nav .g_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: clamp(16px, 1.2vw, 18px);
  margin: 0 20px 0 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  #header .h_nav .g_nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin: 0 0px 0 0;
  }
}
#header .h_nav .g_nav li {
  padding: 0px 1rem 0 1rem;
}
@media screen and (max-width: 1024px) {
  #header .h_nav .g_nav li {
    padding: 0.2rem 0;
  }
}
#header .h_nav .g_nav li a {
  padding: 0rem 0rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
#header .h_nav .g_nav li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  #header .h_nav {
    width: 100%;
    height: 100vh;
    padding: 100px 0;
    background-color: #3D3F52;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0);
            transform: scale(0);
    overflow-y: auto;
  }
  #header .h_nav .g_nav {
    text-align: center;
    margin: -1.1363636364em 0;
  }
  #header .h_nav .g_nav li {
    font-size: clamp(0.875rem, 0.836rem + 0.13vw, 1rem);
  }
  #header .h_nav .g_nav li a {
    padding: 1rem 0;
    font-weight: 500;
    display: block;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  #header.nav_active .ham-btn .tcon-menu__lines::after, #header.nav_active .ham-btn .tcon-menu__lines::before {
    background-color: #fff;
  }
  #header.nav_active .h_nav {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.topheader {
  background: none !important;
}

/*CTR-------------------------------------------------------------------------------
------------------------------------------------------------------------------------*/
.ctr a {
  display: block;
  width: 100%;
  padding: 90px 0;
  margin: 0 auto;
  background: #3D3F52;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .ctr a {
    padding: 45px 0;
  }
}
.ctr a p {
  margin: 0;
}
.ctr a strong {
  display: block;
  font-family: "Gantari", serif;
  margin: 0px 0;
  font-weight: 500;
  font-size: clamp(24px, 8vw, 54px);
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .ctr a strong {
    margin: 0 0 0px 0;
  }
}
.ctr a:hover {
  text-decoration: none;
}

/*下層-------------------------------------------------------------------------------
------------------------------------------------------------------------------------*/
#u-cont {
  text-align: center;
  padding: 120px 0 0px 0;
  /* ----------会社案内---------------------------------------------------------------------*/
  /* ----------施工事例---------------------------------------------------------------------*/
}
@media screen and (max-width: 1024px) {
  #u-cont {
    padding: 80px 0 0px 0;
  }
}
#u-cont h2 {
  font-family: "Gantari", serif;
  font-size: clamp(24px, 8vw, 50px);
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  display: block;
}
#u-cont h2 small {
  display: block;
  font-size: clamp(15px, 1vw, 16px);
  font-family: "Zen Kaku Gothic New", serif;
}
#u-cont .mi {
  width: 90%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
}
#u-cont .mi img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  #u-cont .mi {
    width: 100%;
    height: 200px;
  }
  #u-cont .mi img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#u-cont table {
  width: 100%;
  font-size: clamp(15px, 1vw, 16px);
}
@media screen and (max-width: 1024px) {
  #u-cont table {
    width: 96%;
  }
}
#u-cont table th {
  width: 20%;
  padding: 0.5rem 0;
  border-bottom: 1px solid #BFBFBF;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 1024px) {
  #u-cont table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 0.5rem 0 0 0;
  }
}
#u-cont table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #BFBFBF;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #u-cont table td {
    display: block;
    width: 100%;
  }
}
#u-cont table td iframe {
  margin: 10px 0 0 0;
}
@media screen and (max-width: 1024px) {
  #u-cont table td iframe {
    width: 100%;
    height: 250px;
  }
}
#u-cont .companyC table {
  width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 1024px) {
  #u-cont .companyC table {
    margin: 40px auto;
    width: 96%;
  }
}
#u-cont .companyC table th {
  padding: 1rem 0;
}
@media screen and (max-width: 1024px) {
  #u-cont .companyC table th {
    padding: 0.5rem 0;
  }
}
#u-cont .companyC table td {
  padding: 1rem 0;
}
@media screen and (max-width: 1024px) {
  #u-cont .companyC table td {
    padding: 0rem 0 0.5rem 0;
  }
}
#u-cont .workC {
  width: 1000px;
  margin: 80px auto;
}
@media screen and (max-width: 1024px) {
  #u-cont .workC {
    margin: 40px auto;
    width: 90%;
  }
}
#u-cont .workC .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 1024px) {
  #u-cont .workC .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    margin: 0 0 50px 0;
  }
}
#u-cont .workC .inner .text {
  text-align: left;
  width: 500px;
}
@media screen and (max-width: 1024px) {
  #u-cont .workC .inner .text {
    width: 100%;
  }
}
#u-cont .workC .inner .text h3 {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: clamp(18px, 1vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  display: block;
  padding: 0 0 10px 0;
}
#u-cont .workC .inner .text p {
  font-size: clamp(15px, 1vw, 16px);
}
#u-cont .workC .inner .catchArea {
  width: 500px;
  margin: 0 auto;
  height: auto;
}
@media screen and (max-width: 1024px) {
  #u-cont .workC .inner .catchArea {
    width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
  }
}
#u-cont .workC .inner .catchArea img {
  max-width: 100%;
  height: auto;
}
#u-cont .workC .inner .catchArea .slick_thumb .slick-track, #u-cont .workC .inner .catchArea .slick_thumb2 .slick-track, #u-cont .workC .inner .catchArea .slick_thumb3 .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important;
}
#u-cont .workC .inner .catchArea ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#u-cont .workC .inner .catchArea ul.slick_thumb li, #u-cont .workC .inner .catchArea ul.slick_thumb2 li, #u-cont .workC .inner .catchArea ul.slick_thumb3 li {
  margin: 10px 0;
}
#u-cont .workC .inner .catchArea ul.slick_thumb li img, #u-cont .workC .inner .catchArea ul.slick_thumb2 li img, #u-cont .workC .inner .catchArea ul.slick_thumb3 li img {
  width: 94%;
}
#u-cont .workC .inner table {
  margin: 30px 0 0 0;
  font-size: clamp(15px, 1vw, 16px);
}
@media screen and (max-width: 1024px) {
  #u-cont .workC .inner table {
    margin: 15px 0 0 0;
  }
}
#u-cont .workC .inner table tr:first-child {
  border-top: 1px solid #BFBFBF;
}

/* ----------お問い合わせ---------------------------------------------------------------------*/
.contactC {
  width: 900px;
  margin: 80px auto 160px auto;
}
@media screen and (max-width: 1024px) {
  .contactC {
    margin: 40px auto 80px auto;
    width: 96%;
  }
}
.contactC .copy {
  margin: 0px auto 40px auto;
}
@media screen and (max-width: 1024px) {
  .contactC .copy {
    margin: 0px auto 20px auto;
  }
}
.contactC .copy p {
  line-height: 2.4;
}
.contactC .copy strong {
  font-size: clamp(24px, 8vw, 50px);
  font-family: "Gantari", serif;
  font-weight: 500;
  line-height: 1.4;
}
.contactC .copy strong small {
  font-size: 50%;
}
.contactC .copy span {
  display: block;
  font-size: clamp(15px, 1vw, 16px);
}
.contactC .contactForm {
  width: 100%;
  margin: 0px auto;
  text-align: left;
  /*リセット */
  /* チェックボックスデザイン */
  /* チェックボックスデザインここまで */
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm {
    width: 96%;
  }
}
.contactC .contactForm--bg {
  margin: 0 0 40px 0;
  padding: 20px 40px 20px 40px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm--bg {
    margin: 0px;
    padding: 10px 20px;
  }
}
.contactC .contactForm p {
  margin: 2px 0;
}
.contactC .contactForm input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contactC .contactForm input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
}
.contactC .contactForm input[type=checkbox]::before, .contactC .contactForm input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.contactC .contactForm input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #cacaca;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.contactC .contactForm input[type=checkbox]::after {
  border-bottom: 3px solid #666464;
  border-left: 3px solid #666464;
  opacity: 0;
  height: 6px;
  width: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -4px;
  left: 10px;
}
.contactC .contactForm input[type=checkbox]:checked::after {
  opacity: 1;
}
.contactC .contactForm .cb {
  line-height: 1.8;
  margin: 0 0 0px 0;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm .cb {
    width: 100%;
  }
}
.contactC .contactForm .cb label {
  display: inline !important;
}
.contactC .contactForm label span {
  display: inline-block;
  background: #C92F0A;
  color: #fff;
  margin: 0 5px;
  padding: 0 2%;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
}
.contactC .contactForm input[type=text], .contactC .contactForm input[type=email], .contactC .contactForm input[type=tel] {
  background: #fff;
  border-radius: 3px;
  padding: 1rem 1.5rem;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  border: 1px solid #D0D0D0;
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm .wpcf7-not-valid {
  background: #fde7e2 !important;
  border: 2px solid #C92F0A !important;
}
.contactC .contactForm textarea {
  background: #fff;
  border-radius: 3px;
  padding: 1.5rem 1.5rem;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  border: 1px solid #D0D0D0;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm .conBoxW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  margin: 30px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm .conBoxW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contactC .contactForm .f_w100 {
  width: 70%;
  margin: 0px 0 0px 0;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm .f_w100 {
    width: 80%;
  }
}
.contactC .contactForm .f_w100_naiyo {
  width: 70%;
  margin: 0px 0 0px 0;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm .f_w100_naiyo {
    width: 80%;
  }
}
.contactC .contactForm input::-webkit-input-placeholder, .contactC .contactForm textarea::-webkit-input-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm input::-moz-placeholder, .contactC .contactForm textarea::-moz-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm input:-ms-input-placeholder, .contactC .contactForm textarea:-ms-input-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm input::-ms-input-placeholder, .contactC .contactForm textarea::-ms-input-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm input::placeholder, .contactC .contactForm textarea::placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.878rem + 0.2vw, 1.125rem);
  font-family: "Zen Kaku Gothic New", serif;
}
.contactC .contactForm label {
  display: inline-block;
  margin: 5px 0 10px 0;
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm label {
    width: 100%;
  }
}
.contactC .contactForm label .hissu {
  color: #DE1F1F;
}
.contactC .contactForm .checkboxW {
  width: 60%;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm .checkboxW {
    width: 100%;
  }
}
.contactC .contactForm .btn-submit {
  display: block;
  width: 40%;
  font-size: clamp(1.125rem, 1.046rem + 0.26vw, 1.375rem);
  margin: 60px auto;
  background: #3D3F52;
  padding: 1.2rem 0rem;
  font-weight: 900;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  color: #fff;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.contactC .contactForm .btn-submit:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .contactC .contactForm .btn-submit {
    width: 80%;
    padding: 1.2rem 0rem;
  }
}
.contactC .contactForm span.wpcf7-list-item {
  display: block;
}

/*TOP-------------------------------------------------------------------------------
------------------------------------------------------------------------------------*/
#top {
  text-align: center;
  /* ----------MV---------------------------------------------------------------------*/
  /* ---------gaiyo---------------------------------------------------------------------*/
  /* ---------ABOUT---------------------------------------------------------------------*/
}
@media screen and (max-width: 1024px) {
  #top {
    padding: 40px 0 0 0;
  }
}
#top p {
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
}
#top h1 {
  /*font-family: $baseFont;
  font-size: clamp(20px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin: 0px auto;
  line-height: $lineLv2;
  display: block;*/
}
#top h2 {
  font-family: "Gantari", serif;
  font-size: clamp(23px, 8vw, 48px);
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  display: block;
}
#top h2 small {
  display: block;
  font-size: clamp(15px, 1vw, 16px);
  font-family: "Zen Kaku Gothic New", serif;
}
#top #mv {
  width: 100%;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  #top #mv {
    height: auto;
  }
}
#top #mv .bg-movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 750px;
}
@media screen and (max-width: 1024px) {
  #top #mv .bg-movie {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 96%;
    min-height: auto;
  }
}
#top #mv .bg-movie h1 {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  font-size: clamp(13px, 1vw, 15px);
  color: #050505;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  #top #mv .bg-movie h1 {
    margin: 30px 0 0 0;
    width: 100%;
  }
}
#top #mv .bg-movie h1 span {
  display: block;
  width: 60%;
  height: auto;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  #top #mv .bg-movie h1 span {
    width: 60%;
  }
}
#top #mv .bg-movie h1 span img {
  width: 100%;
  height: auto;
}
#top #mv .bg-movie .ttl {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  #top #mv .bg-movie .ttl {
    margin: 20px 0 0 0;
    height: auto;
    width: 100%;
    overflow-x: hidden;
  }
}
#top #mv .bg-movie .ttl img {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #top #mv .bg-movie .ttl img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  #top #mv .bg-movie .ttl img {
    margin: 0 0 0 0%;
  }
}
#top #gaiyo {
  background: url("../images/bg_logo.png") no-repeat right bottom;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  #top #gaiyo {
    background: url("../images/bg_logo.png") no-repeat center center;
    background-size: contain;
  }
}
#top #gaiyo p {
  width: 1000px;
  margin: 0 auto;
  padding: 160px 0 80px 0;
  display: block;
  line-height: 2.2;
}
@media screen and (max-width: 1024px) {
  #top #gaiyo p {
    padding: 40px 0 40px 0;
    width: 90%;
    line-height: 2;
  }
}
#top #about {
  margin: 50px 0 100px 0;
}
@media screen and (max-width: 1024px) {
  #top #about {
    margin: 0 0 50px 0;
  }
}
#top #about .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 0px auto 40px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  #top #about .flexBox {
    margin: 0px auto 0px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top #about .flexBox .txt {
  width: 45%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  #top #about .flexBox .txt {
    width: 100%;
    padding: 0 0 0 0px;
  }
  #top #about .flexBox .txt h2 {
    padding: 0 0 0 20px;
  }
}
#top #about .flexBox .txt2 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  #top #about .flexBox .txt2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#top #about .flexBox .phBpx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  gap: 5%;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1024px) {
  #top #about .flexBox .phBpx {
    width: 100%;
    margin: 0;
    gap: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 1024px) {
  #top #about .flexBox .phBpx img {
    width: 50%;
  }
}
#top #about .flexBox img {
  width: 45%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  #top #about .flexBox img {
    width: 100%;
  }
}
#top #about .return {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 1024px) {
  #top #about .return {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ----------footer---------------------------------------------------------------------*/
footer {
  width: 100%;
  text-align: center;
  padding: 10px 0 30px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  footer {
    width: 96%;
    padding: 10px 0 15px 0;
  }
}
footer .fmenu {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 200;
  font-size: clamp(11px, 1.5vw, 14px);
  padding: 0 0 10px 0;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}
footer .fmenu a {
  white-space: nowrap;
}
footer .logo {
  padding: 0 0 0px 0;
  margin: 0px auto;
  font-size: clamp(11px, 1.5vw, 14px);
  font-family: "Zen Kaku Gothic New", serif;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  footer .logo {
    padding: 0 0 0px 0;
    margin: 0px auto;
  }
}

.copyright {
  display: block;
  position: fixed;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 30%;
  right: 2%;
  font-family: "Gantari", serif;
  z-index: 100;
  font-size: clamp(9px, 1.5vw, 12px);
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .copyright {
    position: relative;
    top: 0;
    left: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin: 0 0 20px 0;
  }
}