﻿/* ROBOTO*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-weight: normal;
  font-display: swap;
  src: local('NotoSansCJKjp'),
       url(../font/NotoSansCJKjp-Regular.woff) format('woff');
}
@font-face {
  font-family: 'NotoSansCJKjp';
  font-weight: bold;
  font-display: swap;
  src: local('NotoSansCJKjp'),
       url(../font/NotoSansCJKjp-Bold.woff) format('woff');
}


body {
  color: #333;
  font: 1.6rem/1.875 'NotoSansCJKjp', sans-serif;
  font-weight: normal;
}
.body {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width:769px) {
  .body {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .column ~ .column {
    margin-top: 40px;
  }
}
@media (max-width:1024px) {
  html { font-size:9px }
}
@media (max-width:768px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .column ~ .column {
    margin-top: 30px;
  }
}
@media (max-width:320px) {
  html { font-size:8.5px }
}
@media print {
  body { width:1200px }
}

/* ****************************************************************************************************
   * header
**************************************************************************************************** */

.display-pc,
.display-sp {
  display: block !important;
}
@media (max-width:1024px) {
  .display-pc {
    display: none !important;
  }
}
@media (min-width:769px) and (max-width:1024px) {
  #global-nav-btn {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
}
@media (min-width:1025px) {
  .display-sp {
    display: none !important;
  }
}

#header {
  top: 0;
  left: 0;
  z-index: 9998;
  display: flex;
  width: 100%;
  color: #fff;
}

@media (min-width:1025px) {
  #header {
    height: 130px;
    position: fixed;
    transition: .2s color, .2s background-color;
  }
  .js-scroll #header {
    color: #333;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
  }
  #header .left {
    width: 400px;
    padding-left: 50px;
    padding-top: 10px;
  }
  #header .left .text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
  }
  .js-scroll #header .left .text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
  }
  #header .left .logo {
    display: block;
    padding: .75em 0;
  }
  #header .nav {
    max-width: 900px;
    width: calc( 100% - 400px - 180px );
    padding-top: 10px;
    padding-right: 50px;
    margin-left: auto;
  }
  #header .nav .text {
    font-size: 1.2rem;
    text-align: right;
  }
  #header .nav .top {
    text-align: right;
    margin-bottom: 10px;
    margin-top: 0;
  }
  #header .nav .top li {
    display: inline-block;
    vertical-align: bottom;
    font-size: 1.4rem;
  }
  #header .nav .top li ~ li {
    margin-left: 1.5em;
  }
  #header .nav .top li a {
    position: relative;
    display: block;
    padding-left: .75em;
    transition: .2s color;
  }
  #header .nav .top li a:hover {
    color: var(--c-ye);
  }
  #header .nav .top li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    border: 5px solid transparent;
    border-left-color: inherit;
    transform: scale(1.2,1);
    margin-top: -5px;
  }
  #header .nav .top .tel {
    font-size: 1.3rem;
    text-align: center;
  }
  #header .nav .top .tel img {
    display: block;
    margin-top: .25em;
  }
  #header .nav .top .tel img.hover {
    display: none;
  }
  .js-scroll #header .nav .top .tel img {
    display: none;
  }
  .js-scroll #header .nav .top .tel img.hover {
    display: block;
  }
  #header .btn {
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
    background: var(--c-ye);
    transition: 0.2s;
  }
  #header .btn:hover {
    opacity: 0.7;
  }
  #header .btn img {
    display: block;
    margin: 1.5em auto .5em;
  }
  #global-nav ul.sf-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #global-nav ul.sf-menu li {
    position: relative;
    white-space: nowrap;
  }
  #global-nav ul.sf-menu > li ul {
    position: absolute;
    left: 0;
    min-width: 100%;
  }
  #global-nav ul.sf-menu > li ul li ~ li {
    border-top: 1px solid #f2f2f2;
  }
  #global-nav ul.sf-menu > li ul li a {
    color: #333;
    padding: .5em 1em;
    background: #fff;
  }
  #global-nav ul.sf-menu > li > ul > li > ul {
    top: 0;
    left: 100%;
    border-left: 1px solid #f2f2f2;
  }
}
@media (min-width:1025px) and (max-width:1280px) {
  #header .left {
    width: 300px;
    padding-left: 15px;
  }
  #header .nav {
    width: calc( 100% - 300px - 160px );
    padding-right: 15px;
  }
  #header .nav .top .tel {
    width: 150px;
  }
  #header .btn {
    width: 160px;
  }
}
#global-nav ul.sf-menu li a {
  position: relative;
  display: block;
  padding: 1em;
}
@media (min-width:1025px) and (max-width:1320px) {
  #global-nav ul.sf-menu li a {
    padding: 1em 0;
  }
}
#global-nav ul.sf-menu > li > a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: .5em;
  background: #fff;
  transition: .2s;
}
.js-scroll #global-nav ul.sf-menu > li > a:after {
  background: #333;
}
#global-nav ul.sf-menu > li[current] > a,
#global-nav ul.sf-menu li a:hover {
  color: var(--c-ye);
}
/*
#global-nav ul.sf-menu > li[current] > a:after,
#global-nav ul.sf-menu li a:hover:after {
  width: 80%;
  left: 10%;
}*/

#global-nav ul.sf-menu ul li a:hover {
  color: var(--c-ye);
}

@media (max-width:1024px) {
  #header {
    position: sticky;
    top: 0;
    color: #333;
    height: 80px;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
  }
  #header .text {
    font-size: 1rem;
    line-height: 1.2;
    padding: .5em;
  }
  #header .left .logo {
    padding: 0 10px;
  }
  #header .left .logo img {
    /*height: 25px;*/
    margin-top: 10px;
  }
  #global-nav {
    position: fixed;
    top: 0;
    right: -290px;
    width: 290px;
    height: 100%;
    overflow-y: auto;
    background: rgba(255,255,255,1);
    transition: .2s right;
  }
  .nav-active #global-nav {
    right: 0;
  }
  #global-nav ul.sf-menu > li {
    border-bottom: 1px solid #ddd;
  }
  #global-nav ul.sf-menu > li > a {
    font-weight: bold;
  }
  #global-nav ul.sf-menu > li[current] > a {
    color: var(--c-ye);
  }
  #global-nav ul.sf-menu > li > a:after {
    content: none;
  }
  #global-nav ul.sf-menu > li > a.parent {
    position: relative;
  }
  #global-nav ul.sf-menu > li > a.parent:after {
    content: '＋';
    display: inline-block;
    position: absolute;
    top: 1em;
    left: auto;
    right: 2em;
  }
  #global-nav ul.sf-menu > li.active > a.parent:after {
    content: '－';
  }
#global-nav ul.sf-menu > li[current] > a:after,
#global-nav ul.sf-menu li a:hover:after {
  width: 0;
  right: 10%;
}
  #global-nav ul.sf-menu > li > ul li a {
    padding-left: 2em;
    border-top: 1px dashed #eee;
  }
  #global-nav ul.sf-menu > li.product > ul > li > a {
    background: #f2f2f2;
  }
/*
  #global-nav ul.sf-menu > li.product {
    border-bottom: 0;
  }*/
  #global-nav ul.sf-menu > li > ul > li > ul a {
    padding-left: 3em;
  }
}

/* ****************************************************************************************************
   * visual
**************************************************************************************************** */

/* トップページ*/
.page-index #visual {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  background: #fff;
}
.page-index #visual .video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  background: #f2f2f2;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
.page-index #visual .video:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  width: 100px;
  height: 100px;
  border: 5px solid #b8bcc8;
  border-top-color: var(--c-yellow);
  border-radius: 50%;
  margin-top: -50px;
  margin-left: -50px;
  animation: .8s rotation infinite;
}
.page-index #visual .video > * {
  position: relative;
  z-index: 1;
}
.page-index #visual .video video {
/*  width: 100%;*/
  height: 100%;
}

.page-index #visual iframe {
  min-width: 100% !important;
  min-height: 100% !important;
  margin-top: 0 !important;
  transform: scale(1.8);
  pointer-events: none;
  opacity: 0;
  transition: .2s;
  transition-delay: 1s;
}
.loaded .page-index #visual iframe {
  opacity: 1;
}

@media (max-width:640px) {
  .page-index #visual {
    height: auto;
    padding-top: 0;
  }
  .page-index #visual .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
  }
  .page-index #visual .video:before {
    width: 60px;
    height: 60px;
    border-width: 3px;
    margin-top: -30px;
    margin-left: -30px;
  }
}

/* 下層ページ*/
.page-lower #visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background: url(../images/_common/visual.jpg) center center /cover no-repeat #ccc;
}
.page-lower #visual .title-1 {
  position: relative;
  z-index: 999;
  color: #fff;
  margin-top: 70px;
  margin-bottom: 0;
}
.page-lower #visual .title-1:before {
  color: var(--c-ye);
  text-transform: capitalize;
}
@media (max-width:768px) {
  .page-lower #visual {
    height: 150px;
  }
  .page-lower #visual .title-1 {
    margin-top: 0;
  }
}

/* ****************************************************************************************************
   * main
**************************************************************************************************** */

#main .link {
  color: var(--c-ye);
}
@media (min-width:769px) {
  #main .section:first-child {
    padding-top: 50px;
  }
}
#main .visual img {
  width: 100%;
}

/* ****************************************************************************************************
   * footer
**************************************************************************************************** */

#footer .contact {
  position: relative;
  z-index: 0;
  color: #fff;
  background: url(../images/_common/contact-bg.jpg?20260703) center center /cover no-repeat #333;
}
@media (max-width:768px) {
  #footer .contact {
    background-image: url(../images/_common/contact-bg.webp?20260703);
  }
}
#footer .contact > * {
  position: relative;
  z-index: 3;
}
#footer .contact .layout-col {
  margin-top: 30px;
  align-items: baseline;
}
#footer .contact .title-1 {
  color: #fff;
}
#footer .contact .title-1::before {
  color: #fff;
}
@media (min-width:769px) {
  #footer .contact .body {
    max-width: 1160px;
  }
  #footer .contact {
    padding: 70px 0;
  }
  #footer .contact .layout-col .tel {
    width: 30%;
  }
  #footer .contact .layout-col .fax {
    width: 30%;
  }
  #footer .contact .layout-col .btn {
    width: 38%;
  }
}
#footer .contact .layout-col .btn .btn-1 {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 1.8rem;
  color: #000;
  background: var(--c-ye);
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  border-color: var(--c-ye);
}
#footer .contact .layout-col .btn .btn-1:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -110%;
  width: 105%;
  height: 100%;
  background: rgba(255,255,255,.2);
  transform: skewX(-15deg);
  transition: .2s;
}
#footer .contact .layout-col .btn .btn-1:hover {
  box-shadow: 0 0 3px rgba(255,255,255,.2);
}
#footer .contact .layout-col .btn .btn-1:hover:before {
  left: -3%;
}
@media (max-width:768px) {
  #footer .contact .layout-col {
    justify-content: center;
  }
  #footer .contact .layout-col .btn {
    margin-top: 20px;
  }
}

#footer .footer {
  background: #fff;
}
@media (min-width:769px) {
  #footer .footer {
    padding: 60px 0;
  }
  #footer .footer .body {
    max-width: 1230px;
  }
  #footer .footer .inner {
    width: 33%;
  }
  #footer .footer .bnr {
    margin-top: 1em;
  }
  #footer .footer .nav {
    width: 66%;
  }
  #footer .footer .nav > ul:nth-child(1) {
    width: 30%;
  }
  #footer .footer .nav > ul:nth-child(2) {
    width: 20%;
  }
  #footer .footer .nav > ul:nth-child(3) {
    width: 20%;
  }
  #footer .footer .nav > ul:nth-child(4) {
    width: 27%;
  }
}
#footer .footer .logo dt {
  margin-bottom: .5em;
}
#footer .footer .logo dt img {
  display: block;
  margin-bottom: .5em;
}

#footer .footer .nav ul li a {
  display: block;
  padding: .5em 0;
  transition: .2s color;
}
#footer .footer .nav ul li a[href]:hover {
  color: var(--c-ye);
}
#footer .footer .nav > ul > li > a {
  position: relative;
  padding-left: 1em;
}
#footer .footer .nav > ul > li > a:before {
  content: '';
  position: absolute;
  top: 1.2em;
  left: 0;
  display: block;
  background: url("../images/_common/footer-arrow-nav.png") no-repeat;
  width: 8px;
  height: 12px;
  transform: scale(1.2,1);
}
#footer .footer .nav ul ul li a {
  position: relative;
  padding-left: 2em;
}
#footer .footer .nav ul ul li a:before {
  content: '';
  position: absolute;
  top: 1.25em;
  left: 1em;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
}
@media (max-width:768px) {
  #footer .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #footer .footer .body {
    display: block;
  }
  #footer .footer .inner {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  #footer .footer .nav {
    display: none;
  }
  #footer .footer .nav > ul > li {
    border-bottom: 1px solid #ccc;
  }
}
#footer .copyright {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  padding: .75em;
  background: #000;
}
