@charset "UTF-8";

/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* アニメーション
-------------------------------------*/
/* ScrollTrigger マーカーを強制的に非表示にする */
.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start {
  display: none !important;
}

/*fadein*/
.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

/*片側から出現*/
.animated__clipView {
  clip-path: inset(0 100% 0 0); /*before (出現前)*/
  transition: clip-path 0.8s ease;
}

/*after (出現後)*/
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

/*左からスライドするアニメーション*/
.animated__slideIn--left {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: -1000px;
}

.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

/*右からスライドするアニメーション*/
.animated__slideIn--right {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: 1000px;
}

.animated__slideIn--right.js-show {
  opacity: 1; /*before (出現前)*/
  translate: 0;
}

/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  overflow: clip;
  line-height: 1.6;
  letter-spacing: 0;
  color: #1A1A1A;
}

/*pc・タブレットcss*/
/*pc_defaultset*/
.pc {
  display: block !important;
}
/*pcのみ表示ブロック*/
.pc2 {
  display: inline-block !important;
}
/*pcのみ表示ブロック*/
.sp,
.sp2 {
  display: none !important;
}
/*スマホのみ表示ブロック*/
.h_menu {
  display: none;
}
/*スマホ用ヘッダ*/
.sp-header {
  display: none;
}
/*スマホ用メニュー*/
#sp-global-nav {
  display: none;
}
/*スマホ用メニュー*/
.sp-fix-list {
  display: none;
}
/* Antialiasing ※任意　*/

/* header
-------------------------------------*/
header {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  height: 90px;
  margin-bottom: -90px;
  position: relative;
  z-index: 10;
}
header .inner {
  padding: 20px 92px 0 39px;
  display: flex;
  justify-content: space-between;
}
header .h-logo img {
  width: 224px;
}
header .btn-list {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 9px 0 0;
  align-items: flex-start;
}
header .btn-list .btn {
  border-radius: 5px;
  background: #1A1A1A;
}
header .btn-list .btn a {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  letter-spacing: 0;
}
header .btn-list .zoom a {
  padding: 17px 52px 17px 53px;
}
header .btn-list .mail a {padding: 17px 31px 19px 39px;}
header .btn-list .zoom img {
  margin-right: 8px;
  vertical-align: middle;
}
header .btn-list .mail img {
  margin-right: 7px;
  vertical-align: middle;

}

/* pullnavi */
#pullnavi {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-100%);
}
#pullnavi.upMove {
  opacity: 0;
  transform: translateY(-100%);
}
#pullnavi.dwMove {
  opacity: 1;
  transform: translateY(0);
}

#pullnavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#pullnavi {
  background: #fff;
  width: 100%;
  box-shadow: 0px 3px 20px #00000029;
}
#pullnavi .inbox {
  width: 100%;
  min-width: 1280px;
  height: 70px;
  margin: 0px auto 20px auto;
  padding-top: 14px;
  position: relative;
}

/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 30px;
  right: 22px;
  z-index: 99;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #1A1A1A;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
  overflow-y: scroll;
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 30px;
  right: 22px;
}
#pc-menu-open .open-main-Box {
  width: min(95%, 1600px);
  margin-inline: auto;
  padding: 240px 0;
}
#pc-menu-open .link-inner {
  display: grid;
  grid-template-columns: 24.4375% 1fr;
  justify-content: space-between;
  gap: 208px;
}
#pc-menu-open .link-Box-inner {
  display: flex;
  gap: 96px;
  padding: 21px 0 0 16px;
}
#pc-menu-open .home-link a{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 2; /* 200% */
  letter-spacing: 0;
}
#pc-menu-open .link a{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.28571; /* 228.571% */
  position: relative;
  letter-spacing: 0;
}
#pc-menu-open .link a::before {
  position: absolute;
  content: "-";
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 2.28571; /* 228.571% */
}
#pc-menu-open .info-box .logo {
  margin-bottom: 36px;
}
#pc-menu-open .info-box .company {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625; /* 162.5% */
  letter-spacing: 0;
  margin-bottom: 17px;
}
#pc-menu-open .info-box .address {
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.84615; /* 184.615% */
  letter-spacing: 0;
  margin-bottom: 41px;
}
#pc-menu-open .info-box .address a {
  color: #FFF;
}

/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 110px;
  right: 0;
  z-index: 10;
}
.page-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
/* g-nav
-------------------------------------*/
#g-nav {
  width: 1100px;
  margin: 0px auto 10px auto;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}
#g-nav li.list {
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
#g-nav li.list span {
  cursor: pointer;
}
#g-nav li.list span,
#g-nav li.list a {
  border-right: 1px solid #999;
  display: block;
  text-align: center;
  padding: 10px 20px;
}
#g-nav li.list:first-child a {
  border-left: 1px solid #999;
}
#g-nav .dropmenu li.list ul.sub {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  position: absolute;
  top: 35px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 50;
  width: 220px;
}
#g-nav .dropmenu li.list:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
#g-nav .dropmenu li.list ul li:last-child a {
  border-bottom: 1px solid #ccc;
}
#g-nav .dropmenu li.list ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background: #fff;
  display: block;
  width: 220px;
  padding: 10px;
  color: #000;
  border: 1px solid #ccc;
  border-bottom: none;
}
#g-nav .dropmenu li.list:hover ul li a {
  visibility: visible;
  opacity: 1;
}

/* footer
-------------------------------------*/
footer {
  background: #1A1A1A;
  color: #FFFFFF;
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
footer .footer-Box {
  width: min(95%, 1600px);
  margin-inline: auto;
  padding: 120px 0;
}
footer .f-link-inner {
  display: grid;
  grid-template-columns: 24.4375% 1fr;
  justify-content: space-between;
  gap: 208px;
}
footer .f-link-Box-inner {
  display: flex;
  gap: 96px;
  padding: 21px 0 0 16px;
}
footer .home-link a{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 2; /* 200% */
  letter-spacing: 0;
}
footer .f-link a{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.28571; /* 228.571% */
  position: relative;
  letter-spacing: 0;
}
footer .f-link a::before {
  position: absolute;
  content: "-";
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 2.28571; /* 228.571% */
}
footer .info-box .logo {
  margin-bottom: 36px;
}
footer .info-box .company {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625; /* 162.5% */
  letter-spacing: 0;
  margin-bottom: 17px;
}
footer .info-box .address {
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.84615; /* 184.615% */
  letter-spacing: 0;
  margin-bottom: 41px;
}
footer .info-box .address a {
  color: #FFF;
}
.copyright {
  color: #8D8D8D;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.84615; /* 184.615% */
  text-align: right;
  display: block;
  letter-spacing: 0;
  margin: -24px 0 0;
}
/* end-contact
-------------------------------------*/
#end-contact {
  background: url(../images/common/end-contact-bg.png)no-repeat;
  background-size: contain;
  background-position: bottom center;
  padding-bottom: 140px;
  max-width: 1920px;
  margin-inline: auto;
  width: 100%;
}
#end-contact .photo {
  margin-bottom: -270px;
  width: 91.6666%;
}
#end-contact .photo img {
  width: 100%;
  height: auto;
}
#end-contact h2 {
  color: #D9D9D9;
  font-size: 261.124px;
  font-weight: 900;
  text-align: right;
  padding-right: 40px;
  margin-bottom: -4px;
  letter-spacing: 0;
}
#end-contact .list {
  width: min(95%, 1600px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
#end-contact .list li {
  border-radius: 20px;
  border: 1px solid #B9B9B9;
  padding: 46px 40px 170px;
  position: relative;
}
#end-contact .list li:first-child {
  background: #FFF;
  box-shadow: 0 20px 40px 0 rgba(26, 26, 26, 0.40);
}
#end-contact .list li .enttl {
  font-size: 120px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 9px;
  line-height: 1;
}
#end-contact .list li h3 {
  color: #1A1A1A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08em;
  margin-bottom: 59px;
}
#end-contact .list li .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0;
}
#end-contact .list li .btn {
  width: min(95%, 240px);
  position: absolute;
  bottom: 59px;
  left: 40px;
}
#end-contact .list li .btn a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875; /* 187.5% */
  position: relative;
  border-bottom: 1px solid #1A1A1A;
  letter-spacing: 0;
  padding-bottom: 10px;
}
#end-contact .list li .btn a::after {
  position: absolute;
  content: "＞";
  color: #1A1A1A;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 17.333px; /* 133.333% */
  top: 46%;
  transform: translateY(-50%);
  right: 0;
}
#end-contact .list .mail {
  color: #FFFFFF;
}
#end-contact .list .mail h3{
  color: #FFFFFF;
}
#end-contact .list .mail .btn a {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
#end-contact .list .mail .btn a::after {
  color: #FFFFFF;
}

/* seminar
-------------------------------------*/
#parts-seminar {
  background: url(../images/page-common/parts-seminar-bg.png)no-repeat;
  background-size: cover;
  margin-bottom: -294px;
}
#parts-seminar .inner{
  width: min(95%, 1600px);
  margin-inline: auto;
  text-align: center;
  padding: 79px 0 406px;
}
#parts-seminar .fukidashi {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  display: inline-block;
  position: relative;
  margin-bottom: 23px;
}
#parts-seminar .fukidashi::before,
#parts-seminar .fukidashi::after {
  content: "";
  position: absolute;
  top: 0;
  width: 22px;
  height: 34px;
}
#parts-seminar .fukidashi::before {
  background: url(../images/page-common/fukidashi-l.svg)no-repeat;
  background-size: contain;
  left: -37px;
}
#parts-seminar .fukidashi::after {
  background: url(../images/page-common/fukidashi-r.svg)no-repeat;
  background-size: contain;
  right: -37px;
}
#parts-seminar h2 {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46428;
  margin-bottom: 19px;
}
#parts-seminar .subt {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75; /* 175% */
  margin-bottom: 32px;
}
#parts-seminar .list {
  display: grid;
  gap: 10px;
  width: min(95%, 640px);
  margin-inline: auto;
  margin-bottom: 95px;
}
#parts-seminar .list li {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  padding: 18px 0 16px 80px;
  position: relative;
  background: #FFFFFF;
  border-radius: 4px;
  text-align: left;
}
#parts-seminar .list li::before {
  position: absolute;
  content: "";
  background: url(../images/page-common/check-icon.svg)no-repeat;
  background-size: contain;
  width: 27px;
  height: 23px;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}
#parts-seminar .information-box ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 50px;
}
#parts-seminar .information-box ul li {
  border-radius: 10px;
  border: 1px solid #FFF;
  padding: 30px 20px;
  position: relative;
}
#parts-seminar .information-box ul li  {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
}
#parts-seminar .information-box ul li a  {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
}
#parts-seminar .information-box ul li a .list-box {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  text-align: left;
}
#parts-seminar .information-box ul li:first-child {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.80);
}
#parts-seminar .information-box ul li .system-category {
  position: absolute;
  top: -15px;
  left: 19px;
}
#parts-seminar .information-box ul li .system-category span{
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 400;
  line-height: 2.30769; /* 230.769% */
  border-radius: 4px;
  background: #1A1A1A;
  padding: 5px 10px;
}
#parts-seminar .information-box ul li .photo {
  margin-bottom: 28px;
  width: 100%;
  height: 324px;
  text-align: center;
  overflow: hidden;
}
#parts-seminar .information-box ul li .photo img {
  width: 100%;
  height: auto;
}
#parts-seminar .information-box ul li .ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75; /* 175% */
  margin-bottom: 16px;
  color: #FFF;
}
#parts-seminar .information-box ul li:first-child .ttl {
  color: inherit;
}
#parts-seminar .information-box ul li .info-list {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.30769; /* 230.769% */
  position: relative;
  padding-left: 23px;
}
#parts-seminar .information-box ul li:first-child .info-list {
  color: #8D8D8D;
}
#parts-seminar .information-box ul li .info-list::before {
  position: absolute;
  content: "";
  background: #FFF;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 45%;
  left: 8px;
}
#parts-seminar .information-box ul li:first-child  .info-list::before {
  background: #8D8D8D;
}

/* works -------------------------------------*/
#works-sec {
  background: #F5F5F5;
  padding: 138px 0 160px;
}
#works-sec .fukidashi{
  text-align: center;
  margin-bottom: 9px;
}
#works-sec .ttl-wrap{
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 0 4px 0 0;
  gap: 30px;
  margin-bottom: 17px;
}
#works-sec .ttl-wrap .en{
  text-align: center;
  font-size: 120px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}
#works-sec .ttl-wrap h2{
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.08em;
  position: relative;
  top: -6px;
}
#works-sec .lead{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875; /* 187.5% */
  margin-bottom: 80px;
}
#works-sec .works-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  width: min(95%, 1600px);
  margin-inline: auto;
  margin-bottom: 80px;
}
#works-sec .works-list li .works-img {
  margin-bottom: 30px;
  width: 100%;
  height: 720px;
  text-align: center;
}
#works-sec .works-list li .works-img img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
#works-sec .works-list li .upper-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#works-sec .works-list li .address {
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
}
#works-sec .works-list li .cat-wrap {
  color: #B9B9B9;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
}
#works-sec .works-list li .cat-wrap p {
  display: flex;
  gap: 30px;
  padding-left: 10px;
}
#works-sec .works-list li .cat-wrap .category span,
#works-sec .works-list li .cat-wrap .cate span {
  position: relative;
}
#works-sec .works-list li .cat-wrap .category span::before,
#works-sec .works-list li .cat-wrap .cate span::before {
  position: absolute;
  content: "# ";
  color: #B9B9B9;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}
#works-sec .works-list li .company-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5; /* 150% */
}
#works-sec .btn {
  width: min(95%, 640px);
  margin-inline: auto;
  border-radius: 200px;
  background: #1A1A1A;
}
#works-sec .btn a {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875; /* 187.5% */
  display: block;
  position: relative;
  padding: 25px 0;
}
#works-sec .btn a::after {
  position: absolute;
  content: "＞";
  color: #FFF;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3333; /* 133.333% */
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

/* voice-sec
-------------------------------------*/
#voice-sec {
  background: #F5F5F5;
  padding: 171px 0 160px;
}
#voice-sec .inner {
  width: min(95%, 1600px);
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 101px;
}
#voice-sec .inner::before {
  position: absolute;
  content: "";
  background: url(../images/index/voice-en.svg)no-repeat;
  background-size: contain;
  width: 99.5625%;
  height: 440px;
  top: 0;
  left: 0;
}
#voice-sec .fukidashi {
  position: relative;
  padding: 87px 0 0;
}
#voice-sec h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.08em;
  position: relative;
  margin: -12px 0 8px;
}
#voice-sec .lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875; /* 187.5% */
  position: relative;
  letter-spacing: 0;
  padding: 0 0 0 20px;
}
#voice-sec .system-list {
  width: min(95%, 1600px);
  margin-inline: auto;
  display: block grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 32px;
}
#voice-sec .system-list li {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}
#voice-sec .system-list li:nth-child(-n+3) {
  margin-bottom: 80px;
}
#voice-sec .system-list li a {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}
#voice-sec .system-list li .upper-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#voice-sec .system-list li .system-area {
  color: #B9B9B9;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.30769; /* 230.769% */
  letter-spacing: 0;
}
#voice-sec .system-list li .system-category span {
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.30769; /* 230.769% */
  letter-spacing: 0;
  padding: 0 10px;
  border-radius: 4px;
  background: #1A1A1A;
  display: block;
}
#voice-sec .system-list li .system-pic {
  margin-bottom: 16px;
  width: 100%;
  height: 240px;
  text-align: center;
}
#voice-sec .system-list li .system-pic img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
#voice-sec .system-list li .system-company {
  font-size: 13px;
  font-weight: 400;
  line-height: 2.30769; /* 230.769% */
  letter-spacing: 0;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
#voice-sec .system-list li .system-company::before {
  position: absolute;
  content: "";
  background: url(../images/index/ellipse1.svg)no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
#voice-sec .system-list li .system-ttl-01 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75; /* 175% */
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ← 2行でカット */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
#voice-sec .system-list li .comment-box {
  border-radius: 10px;
  background: #FFF;
  padding: 20px;
  position: relative;
}
#voice-sec .system-list li .system-comment {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
  letter-spacing: 0;
  width: min(95%, 360px);
}
#voice-sec .system-list li .system-illust {
  position: absolute;
  top: -20px;
  right: 20px;
}


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
main {
  max-width: 1920px;
  margin-inline: auto;
  width: 100%;
}
.main-ttl-wrap {
  width: min(95%, 1760px);
  margin-inline: auto;
  padding: 31px 0 8px;
}
.main-ttl-wrap .en {
  color: #F5F5F5;
  font-size: clamp(5.625rem, -0.208rem + 12.15vw, 14.375rem);
  font-weight: 900;
  line-height: 1.3043;
  text-transform: uppercase;
}
.main-ttl-wrap .main-ttl {
  text-align: right;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.06em;
  padding-right: 43px;
  margin-top: -74px;
}

.util-btn {
  width: min(95%, 400px);
}
.util-btn a{
  border-radius: 200px;
  border: 1px solid #1A1A1A;
  background: #FFF;
  display: block;
  color: #1A1A1A;
  text-align: center;
  font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
  font-weight: 500;
  line-height: 1.875; /* 187.5% */
  position: relative;
  padding: 24px 0;
  letter-spacing: 0;
}
.util-btn a::after {
  position: absolute;
  content: "＞";
  color: #1A1A1A;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3333; /* 133.333% */
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}


.seo_bread_list {
  width: 1200px;
  margin: 0 auto 20px;
}
.seo_bread_list li {
  margin-right: 20px;
  float: left;
}
.seo_bread_list li::after {
  content: " >";
}
.seo_bread_list li:last-child::after {
  content: "";
}

.fit img {
  object-fit: cover;
  font-family: "object-fit: cover;";
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-shippori {
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
}

.f-hanken {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: #090909;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}

/* clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

@media screen and (min-width:768px) and (max-width:1800px) {
header {
  height: 5vw;
  margin-bottom: -5vw;
}
header .inner {
  padding: 1.111vw 5.111vw 0 2.167vw;
}
header .h-logo img {
  width: 12.444vw;
}
header .btn-list {
  gap: 0.556vw;
  padding: 0.5vw 0 0;
}
header .btn-list .insta img {
  width: 3.33vw;
}
header .btn-list .btn {
  border-radius: 0.278vw;
}
header .btn-list .btn a {
  font-size: clamp(0.625rem, 0.346rem + 0.58vw, 1rem);
}
header .btn-list .zoom a {
  padding: 0.944vw 2.889vw 0.944vw 2.944vw;
}
header .btn-list .mail a {padding: 0.944vw 1.722vw 0.944vw 2.167vw;}
header .btn-list .zoom img {
  margin-right: 0.444vw;
  width: 1.33vw;
}
header .btn-list .mail img {
  margin-right: 0.389vw;
  width: 1.22vw;
}

/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 1.667vw;
  right: 1.222vw;
  z-index: 99;
}
.pc-menu img {
  width: 3.33vw;
}
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1700px)
======================================== */
@media screen and (min-width:768px) and (max-width:1700px) {
/* pc-menu
-------------------------------------*/
#pc-menu-open .open-main-Box {
  padding: 14.118vw 0;
}
#pc-menu-open .link-inner {
  gap: 7.235vw;
}
#pc-menu-open .link-Box-inner {
  gap: 4.647vw;
  padding: 1.235vw 0 0 0.941vw;
}
#pc-menu-open .home-link a{
  font-size: clamp(1rem, 0.794rem + 0.43vw, 1.25rem);
}
#pc-menu-open .link a{
  font-size: clamp(0.625rem, 0.419rem + 0.43vw, 0.875rem);
}
#pc-menu-open .link a::before {
  left: -0.941vw;
  font-size: 0.824vw;
}
#pc-menu-open .info-box .logo {
  margin-bottom: 2.118vw;
}
#pc-menu-open .info-box .logo img {
  width: 20.35vw;
}
#pc-menu-open .info-box .company {
  font-size: clamp(0.75rem, 0.544rem + 0.43vw, 1rem);
  margin-bottom: 1vw;
}
#pc-menu-open .info-box .address {
  font-size: clamp(0.625rem, 0.47rem + 0.32vw, 0.813rem);
  margin-bottom: 2.412vw;
}
#pc-menu-open .info-box .insta img {
  width: 3.53vw;
}


/* footer
-------------------------------------*/
footer .footer-Box {
  padding: 7.059vw 0;
}
footer .f-link-inner {
  grid-template-columns: 27.4375% 1fr;
  gap: 11vw;
}
footer .f-link-Box-inner {
  gap: 4.647vw;
  padding: 1.235vw 0 0 0.941vw;
}
footer .home-link a{
  font-size: clamp(1rem, 0.794rem + 0.43vw, 1.25rem);
}
footer .f-link a{
  font-size: clamp(0.625rem, 0.419rem + 0.43vw, 0.875rem);
}
footer .f-link a::before {
  top: 50%;
  left: -0.941vw;
  font-size: 0.824vw;
}
footer .info-box .logo {
  margin-bottom: 2.118vw;
}
footer .info-box .logo img {
  width: 20.35vw;
}
footer .info-box .company {
  font-size: clamp(0.75rem, 0.544rem + 0.43vw, 1rem);
  margin-bottom: 1vw;
}
footer .info-box .address {
  font-size: clamp(0.625rem, 0.47rem + 0.32vw, 0.813rem);
  margin-bottom: 2.412vw;
}
footer .info-box .insta img {
  width: 3.53vw;
}
.copyright {
  font-size: 0.765vw;
  margin: -1.412vw 0 0;
}

.page-top {
  bottom: 1.176vw;
  right: 1.176vw;
}
.page-top img {
  width: 4.71vw;
}


/* end-contact
-------------------------------------*/
#end-contact {
  padding-bottom: 8.235vw;
}
#end-contact .photo {
  margin-bottom: -15.882vw;
  width: 91.6666%;
}
#end-contact .photo img {
  width: 100%;
  height: auto;
}
#end-contact h2 {
  font-size: 15.36vw;
  padding-right: 2.353vw;
  margin-bottom: -0.235vw;
}
#end-contact .list {
  gap: 2.353vw;
}
#end-contact .list li {
  border-radius: 1.176vw;
  padding: 2.706vw 2.353vw 10vw;
}
#end-contact .list li .enttl {
  font-size: 7.059vw;
  margin-bottom: 0.529vw;
}
#end-contact .list li h3 {
  font-size: 1.882vw;
  margin-bottom: 3.471vw;
}
#end-contact .list li .txt {
  font-size: clamp(0.75rem, 0.544rem + 0.43vw, 1rem);
}
#end-contact .list li .btn {
  /* width: 21.118vw; */
  bottom: 3.471vw;
  left: 2.353vw;
}
#end-contact .list li .btn a {
  font-size: clamp(0.75rem, 0.544rem + 0.43vw, 1rem);
  padding-bottom: 0.588vw;
}
#end-contact .list li .btn a::after {
  font-size: 0.765vw;
  line-height: 1.02vw; /* 133.333% */
  top: 46%;
  transform: translateY(-50%);
  right: 0;
}

}

/* ========================================
@media screen and (min-width:768px) and (max-width:1440px)
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
  footer .f-link-inner {
    gap: 7.222vw;
    grid-template-columns: 31.4375% 1fr;
  }
  footer .f-link-Box-inner {
    gap: 3.819vw;
  }
  #pc-menu-open .link-inner {
    gap: 7.222vw;
    grid-template-columns: 31.4375% 1fr;
  }
  #pc-menu-open .link-Box-inner {
    gap: 3.819vw;
  }
}
/* ========================================
@media screen and (min-width:768px) and (max-width:1100px)
======================================== */
@media screen and (min-width:768px) and (max-width:1100px) {
  footer .f-link-inner {
    gap: 1.888vw;
    grid-template-columns: 34.4375% 1fr;
  }
  footer .f-link-Box-inner {
    gap: 2.444vw;
  }
  #pc-menu-open .link-inner {
    gap: 1.888vw;
    grid-template-columns: 34.4375% 1fr;
  }
  #pc-menu-open .link-Box-inner {
    gap: 2.444vw;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1640px)
======================================== */
@media screen and (min-width:768px) and (max-width:1640px) {
  #parts-seminar .information-box ul {
    gap: 0 3.049vw;
 }
 #parts-seminar .information-box ul li {
    border-radius: 0.61vw;
    padding: 1.829vw 1.22vw;
 }
 #parts-seminar .information-box ul li:first-child {
    border-radius: 0.61vw;
 }
 #parts-seminar .information-box ul li .system-category {
    top: -0.915vw;
    left: 1.159vw;
 }
 #parts-seminar .information-box ul li .system-category span{
    font-size: clamp(0.625rem, 0.46rem + 0.34vw, 0.813rem);
    border-radius: 0.244vw;
    padding: 0.305vw 0.61vw;
 }
 #parts-seminar .information-box ul li .photo {
    margin-bottom: 1.707vw;
    width: 100%;
    height: 19.756vw;
 }
 #parts-seminar .information-box ul li .photo img {
    width: 100%;
    height: auto;
 }
 #parts-seminar .information-box ul li .ttl {
    font-size: clamp(0.75rem, 0.53rem + 0.46vw, 1rem);
    margin-bottom: 0.976vw;
 }
 #parts-seminar .information-box ul li .info-list {
    grid-template-columns: 6.171vw 1fr;
    gap: 1.463vw;
    font-size: clamp(0.625rem, 0.46rem + 0.34vw, 0.813rem);
    padding-left: 1.402vw;
 }
 #parts-seminar .information-box ul li .info-list::before {
    width: 0.366vw;
    height: 0.366vw;
    left: 0.488vw;
 }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1280px)
======================================== */
@media screen and (min-width:768px) and (max-width:1280px) {
  /* works -------------------------------------*/
  #works-sec {
     padding: 10.781vw 0 12.5vw;
  }
  #works-sec .fukidashi{
     margin-bottom: 0.703vw;
  }
  #works-sec .ttl-wrap{
     padding: 0 0.313vw 0 0;
     gap: 2.344vw;
     margin-bottom: 1.328vw;
  }
  #works-sec .ttl-wrap .en{
     font-size: 9.375vw;
  }
  #works-sec .ttl-wrap h2{
     font-size: 3.125vw;
     top: -0.469vw;
  }
  #works-sec .lead{
     font-size: clamp(0.75rem, 0.375rem + 0.78vw, 1rem);
     margin-bottom: 6.25vw;
  }
  #works-sec .works-list {
     gap: 6.25vw;
     margin-bottom: 6.25vw;
  }
  #works-sec .works-list li .works-img {
     margin-bottom: 2.344vw;
     height: 56.25vw;
  }
  #works-sec .works-list li .works-img img {
     width: auto;
     height: 100%;
     max-width: 100%;
  }
  #works-sec .works-list li .upper-wrap {
     margin-bottom: 0.781vw;
  }
  #works-sec .works-list li .address {
     font-size: clamp(0.625rem, 0.344rem + 0.59vw, 0.813rem);
  }
  #works-sec .works-list li .cat-wrap {
     font-size: clamp(0.625rem, 0.344rem + 0.59vw, 0.813rem);
  }
  #works-sec .works-list li .cat-wrap p {
    gap: 2.344vw;
    padding-left: 0.781vw;
  }
  #works-sec .works-list li .cat-wrap .category span::before,
  #works-sec .works-list li .cat-wrap .cate span::before {
     font-size: 1.016vw;
     top: 50%;
     left: -0.781vw;
     transform: translateY(-50%);
  }
  #works-sec .works-list li .company-name {
     font-size: 1.563vw;
  }
  #works-sec .btn {
     width: 50vw;
     border-radius: 15.625vw;
  }
  #works-sec .btn a {
     font-size: clamp(0.75rem, 0.375rem + 0.78vw, 1rem);
     padding: 1.953vw 0;
  }
  #works-sec .btn a::after {
     font-size: 1.016vw;
     top: 50%;
     right: 3.125vw;
     transform: translateY(-50%);
  }
  }

  /* ========================================
@media screen and (min-width:768px) and (max-width:1640px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1640px) {
  /* voice -------------------------------------*/
  #voice-sec {
     padding: 10.427vw 0 9.756vw;
  }
  #voice-sec .inner {
     padding-bottom: 6.159vw;
  }
  #voice-sec .inner::before {
     width: 99.5625%;
     height: 26.829vw;
  }
  #voice-sec .fukidashi {
     padding: 5.305vw 0 0;
  }
  #voice-sec .fukidashi img {
     width: 34.02vw;
  }
  #voice-sec h2 {
     font-size: 7.317vw;
     margin: -0.732vw 0 0.488vw;
  }
  #voice-sec .lead {
     font-size: clamp(0.75rem, 0.53rem + 0.46vw, 1rem);
     padding: 0 0 0 1.22vw;
     width: 58.54vw;
  }
  #voice-sec .system-list {
     gap: 0 1.951vw;
  }
  #voice-sec .system-list li:nth-child(-n+3) {
     margin-bottom: 4.878vw;
  }
  #voice-sec .system-list li .upper-wrap {
     margin-bottom: 0.61vw;
  }
  #voice-sec .system-list li .system-area {
     font-size: clamp(0.625rem, 0.46rem + 0.34vw, 0.813rem);
  }
  #voice-sec .system-list li .system-category span {
     font-size: clamp(0.625rem, 0.46rem + 0.34vw, 0.813rem);
     padding: 0 0.61vw;
  }
  #voice-sec .system-list li .system-pic {
     margin-bottom: 0.976vw;
     height: 14.634vw;
  }
  #voice-sec .system-list li .system-company {
     font-size: clamp(0.625rem, 0.46rem + 0.34vw, 0.813rem);
     padding-left: 1.707vw;
     margin-bottom: 0.61vw;
  }
  #voice-sec .system-list li .system-company::before {
     width: 0.61vw;
     height: 0.61vw;
     left: 0.61vw;
     transform: translateY(-50%);
  }
  #voice-sec .system-list li .system-ttl-01 {
     font-size: clamp(0.75rem, 0.53rem + 0.46vw, 1rem);
     margin-bottom: 0.915vw;
  }
  #voice-sec .system-list li .comment-box {
     border-radius: 0.61vw;
     padding: 1.22vw;
  }
  #voice-sec .system-list li .system-comment {
     font-size: clamp(0.625rem, 0.46rem + 0.34vw, 0.813rem);
     width: 21.95vw;
  }
  #voice-sec .system-list li .system-illust {
     top: -1.22vw;
     right: 1.22vw;
  }
  #voice-sec .system-list li .system-illust img {
     width: 6.10vw;
     height: 6.10vw;
  }
  
  }

/* ========================================
   @media screen and (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
  }
  body {
    /* overflow: visible; */
  }
}

/* ========================================
   @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #1A1A1A;
}
.pc,
.pc2 {
  display: none !important;
}
/*pcのみ表示ブロック*/
.sp {
  display: block !important;
}
/*スマホのみ表示ブロック*/
.sp2 {
  display: inline-block !important;
}
/*スマホのみ表示ブロック*/
.no-br {
  display: none;
}
/*スマホでbrを解除したい場合に使用*/
.sp_display_block {
  display: block !important;
}
/*スマホでflexboxを解除したい場合等に使用*/
.pc-menu {
  display: none;
}
.side-fix {
  display: none;
}
.fix-list {
  display: none;
}
#pc-menu-open {
  display: none;
}
#g-nav {
  display: none;
}
.page-top {
  display: none;
}

/* sp-header
-------------------------------------*/
.sp-header {padding: 3vw;position: relative;z-index: 10;}
.sp-header .h-logo img {
  width: 30.43vw;
}
.sp-header .h-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 97;
}
.sp-header .h-menu img {
  width: 14.49vw;
}

/* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {
  padding: 2.1vw 3vw;
}
nav#sp-global-nav .h-logo img {
  width: 30.43vw;
}
nav#sp-global-nav {
  font-size: 3.8vw;
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background: #1A1A1A;
  box-sizing: border-box;
  color: #fff;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 98;
}
nav#sp-global-nav .open-close-01 img {
  width: 14.49vw;
}
nav#sp-global-nav .open-color-Box {
  padding: 23.5vw 0 20vw;
  width: 89.37vw;
  margin-inline: auto;
}
nav#sp-global-nav .home-link a {
  color: #FFF;
  font-size:4.831vw;
  font-weight: 900;
  line-height: 1; /* 100% */
  letter-spacing: 0;
  border-bottom: 0.2vw solid #B9B9B9;
  display: block;
  padding-bottom: 5.5vw;
  margin-bottom: 11.9vw;
}
nav#sp-global-nav .link {
  display: grid;
  gap: 10.2vw;
  margin-bottom: 41vw;
}
nav#sp-global-nav .link li a {
  font-size:3.382vw;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0 4vw;
  display: block;
  position: relative;
  color: #FFFFFF;
}
nav#sp-global-nav .link li a::before {
  position: absolute;
  content: "-";
  font-size: 3.382vw;
  font-weight: 500;
  line-height: 2.28571;
  letter-spacing: 0;
  top: 55%;
  left: 0vw;
  transform: translateY(-50%);
}
nav#sp-global-nav .info-box .logo {
  margin-bottom: 7.2vw;
}
nav#sp-global-nav .info-box .logo img {
  width: 48.79vw;
}
nav#sp-global-nav .info-box .company {
  color: #FFF;
  font-size:3.382vw;
  font-weight: 700;
  line-height: 1.85714; /* 185.714% */
  margin-bottom: 2.2vw;
}
nav#sp-global-nav .info-box .address {
  color: #FFF;
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
  margin-bottom: 8.7vw;
}
nav#sp-global-nav .info-box .address a {
  color: #FFF;
}

  /* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 10vw;
  width: 94.20vw;
  z-index: 96;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  gap: 2.42vw;
  left: 3vw;
}
.sp-fix-list .tel {
}
.sp-fix-list .icon {
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: url(../images/common/end-contact-bg_sp.png)no-repeat;
  background-size: contain;
  background-position: bottom center;
  padding-bottom: 19.32vw;
}
#end-contact .photo {
  position: relative;
  margin-bottom: -11.8vw;
}
#end-contact .photo img {
  width: 89.37vw;
}
#end-contact h2 {
  color: #D9D9D9;
  font-size: 14.49vw;
  font-weight: 900;
  text-align: right;
  letter-spacing: 0;
  margin-bottom: 4.5vw;
  position: relative;
}
#end-contact .list {
  width: 89.37vw;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 7.25vw;
}
#end-contact .list li {
  border-radius: 4.83vw;
  padding: 9.25vw 4.83vw 11.5vw;
  position: relative;
  border: 0.2vw solid #B9B9B9;
  background: #FFF;
  box-shadow: 0 10px 20px 0 rgba(26, 26, 26, 0.40);
}
#end-contact .list li .enttl {
  font-size: 19.32vw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1.7vw;
}
#end-contact .list li h3 {
  color: #1A1A1A;
  font-size:5.797vw;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08em;
  margin-bottom: 5.80vw;
}
#end-contact .list li .txt {
  font-size:3.14vw;
  font-weight: 500;
  line-height: 1.84615;
  letter-spacing: 0;
  margin-bottom: 9.66vw;
}
#end-contact .list li .btn {
  width: 57.97vw;
}
#end-contact .list li .btn a {
  display: block;
  font-size:3.14vw;
  font-weight: 500;
  line-height: 1;
  position: relative;
  border-bottom: 0.2vw solid #1A1A1A;
  letter-spacing: 0;
  padding-bottom: 3.86vw;
}
#end-contact .list li .btn a::after {
  position: absolute;
  content: "＞";
  color: #1A1A1A;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 2.42vw;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  top: 27%;
  transform: translateY(-50%);
  right: 0;
}


/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: right;
  display: block;
  position: relative;
  top: -9vw;
  right: -3.5vw;
}
.sp-page-top a img {
  width: 14.49vw;
  height: auto;
}

/* footer
-------------------------------------*/
footer {
  background: #1A1A1A;
  color: #FFFFFF;
}
footer .footer-Box {
  width: 82.13vw;
  margin-inline: auto;
  padding: 4.6vw 0 50vw;
}
footer .f-link-inner {
  display: grid;
  width: 58.70vw;
  margin-bottom: 13.8vw;
}
footer .info-box {
}
footer .info-box .logo {
  margin-bottom: 7.5vw;
}
footer .info-box .logo img {
  width: 48.87vw;
}
footer .info-box .company {
  color: #FFF;
  font-size:3.382vw;
  font-weight: 700;
  line-height: 1.85714;
  letter-spacing: 0;
  margin-bottom: 2.42vw;
}
footer .info-box .address {
  color: #FFF;
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.69231;
  letter-spacing: 0;
  margin-bottom: 8.5vw;
}
footer .info-box .address a {
  color: #FFF;
}
footer .info-box .insta {

}
.copyright {
  color: #8D8D8D;
  font-size: 2.42vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.84615; /* 184.615% */
  text-align: left;
  display: block;
  letter-spacing: 0;
}

/* seminar
-------------------------------------*/
#parts-seminar {
  background: url(../images/page-common/parts-seminar-bg_sp.png)no-repeat;
  background-size: cover;
  margin-bottom: -21.9vw;
}
#parts-seminar .inner{
  padding: 13.77vw 0 40.11vw;
  text-align: center;
}
#parts-seminar .fukidashi {
  color: #FFF;
  font-size:4.831vw;
  font-weight: 700;
  line-height: 1.45;
  display: inline-block;
  position: relative;
  text-align: center;
  margin-bottom: 5.56vw;
}
#parts-seminar .fukidashi::before,
#parts-seminar .fukidashi::after {
  content: "";
  position: absolute;
  top: 0.5vw;
  width: 5.07vw;
  height: 7.97vw;
}
#parts-seminar .fukidashi::before {
  background: url(../images/page-common/fukidashi-l.svg)no-repeat;
  background-size: contain;
  left: -8.1vw;
}
#parts-seminar .fukidashi::after {
  background: url(../images/page-common/fukidashi-r.svg)no-repeat;
  background-size: contain;
  right: -9.1vw;
}
#parts-seminar h2 {
  color: #FFF;
  text-align: center;
  font-size:4.831vw;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 5.38vw;
}
#parts-seminar .subt {
  color: #FFF;
  font-size:3.14vw;
  font-weight: 500;
  line-height: 1.84615;
  margin-bottom: 3.38vw;
  width: 82.13vw;
  margin-inline: auto;
  text-align: left;
}
#parts-seminar .list {
  display: grid;
  gap: 1.93vw;
  width: 89.37vw;
  margin-inline: auto;
  /* margin-bottom: 16.67vw; */
}
#parts-seminar .list li {
  font-size: 3.382vw;
  font-weight: 700;
  line-height: 1.42857;
  padding: 2.42vw 0 2.42vw 10.8vw;
  position: relative;
  background: #FFFFFF;
  border-radius: 0.97vw;
  height: 14.49vw;
  display: grid;
  align-items: center;
  text-align: left;
}
#parts-seminar .list li::before {
  position: absolute;
  content: "";
  background: url(../images/page-common/check-icon.svg) no-repeat;
  background-size: contain;
  width: 5.56vw;
  height: 4.83vw;
  left: 4.26vw;
  top: 50%;
  transform: translateY(-50%);
}
#parts-seminar .information-box ul {
  display: grid;
  margin-bottom: 7.4vw;
}
#parts-seminar .information-box ul li {
  border-radius: 2.42vw;
  background: #F4F6F8;
  position: relative;
  padding: 7.25vw 4.83vw;
  margin: 0 2.42vw;
  width: 82.13vw;
}
#parts-seminar .information-box ul li a .list-box {
  position: relative;
}
#parts-seminar .information-box ul li .system-category {
  position: absolute;
  top: -10.4vw;
}
#parts-seminar .information-box ul li .system-category span{
  color: #FFF;
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.07692;
  border-radius: 0.97vw;
  background: #1A1A1A;
  padding: 0.85vw 2.42vw;
}
#parts-seminar .information-box ul li .photo {
  margin-bottom: 3.86vw;
  width: 100%;
  height: 50.97vw;
  text-align: center;
}
#parts-seminar .information-box ul li .photo img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
#parts-seminar .information-box ul li .ttl {
  font-size:3.382vw;
  font-weight: 500;
  line-height: 1.71429;
  margin-bottom: 4.83vw;
}
#parts-seminar .information-box ul li .info-list {
  display: grid;
  grid-template-columns: 12.56vw 1fr;
  gap: 5.80vw;
  font-size:3.14vw;
  font-weight: 400;
  line-height: 2.30769; /* 230.769% */
  position: relative;
  padding-left: 3.4vw;
  color: #8D8D8D;
}
#parts-seminar .information-box ul li .info-list::before {
  position: absolute;
  content: "";
  background: #8D8D8D;
  width: 1.45vw;
  height: 1.45vw;
  border-radius: 50%;
  top: 37%;
  left: 0vw;
}
#parts-seminar .slick-track {
  padding: 16.5vw 0 0;
}
#parts-seminar .next-arrow, #parts-seminar .prev-arrow {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: 15;
}
#parts-seminar .next-arrow {
  right: 7.5vw;
}
#parts-seminar .prev-arrow {
  left: 7.5vw;
}
#parts-seminar .util-btn {
  width: 72.46vw;
  margin-inline: auto;
}
#parts-seminar .util-btn a {
  border-radius: 48.31vw;
  border: 0.2vw solid #1A1A1A;
  background: #FFF;
  display: block;
  color: #1A1A1A;
  text-align: center;
  font-size:3.382vw;
  font-weight: 500;
  line-height: 2.14286;
  position: relative;
  padding: 3.385vw 0;
  letter-spacing: 0;
}
#parts-seminar .util-btn a::after {
  position: absolute;
  content: "＞";
  color: #1A1A1A;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 2.42vw;
  font-weight: 900;
  line-height: 1;
  top: 51%;
  right: 4.5vw;
  transform: translateY(-50%);
}

/* works -------------------------------------*/
#works-sec {
  background: #F5F5F5;
  padding: 14.49vw 0 19.32vw;
}
#works-sec .fukidashi{
  text-align: center;
  margin-bottom: 1vw;
}
#works-sec .fukidashi img {
  width: 83.09vw;
}
#works-sec .ttl-wrap{
  width: 83.09vw;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.94vw;
  margin-bottom: 3.5vw;
}
#works-sec .ttl-wrap .en{
  text-align: center;
  font-size: 16.91vw;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}
#works-sec .ttl-wrap h2{
  text-align: center;
  font-size:4.831vw;
  font-weight: 700;
  letter-spacing: -0.04em;
  position: relative;
  top: 2.5vw;
}
#works-sec .lead{
  text-align: center;
  font-size:3.14vw;
  font-weight: 500;
  line-height: 1.84615;
  margin-bottom: 10.39vw;
}
#works-sec .works-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10.4vw;
  width: 89.37vw;
  margin-inline: auto;
  margin-bottom: 9.96vw;
}
#works-sec .works-list li:nth-child(n+4) {
  display: none;
}
#works-sec .works-list li .works-img {
  margin-bottom: 4.83vw;
  width: 100%;
  height: 75.52vw;
  text-align: center;
}
#works-sec .works-list li .works-img img {
  height: 77.29vw;
}
#works-sec .works-list li .upper-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.42vw;
}
#works-sec .works-list li .address {
  text-align: right;
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
}
#works-sec .works-list li .cat-wrap {
  color: #B9B9B9;
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
}
#works-sec .works-list li .cat-wrap p {
  display: flex;
  gap: 5.8vw;
  padding-left: 3vw;
}
#works-sec .works-list li .cat-wrap .category span,
#works-sec .works-list li .cat-wrap .cate span {
  position: relative;
}
#works-sec .works-list li .cat-wrap .category span::before,
#works-sec .works-list li .cat-wrap .cate span::before {
  position: absolute;
  content: "# ";
  color: #B9B9B9;
  font-family: "Noto Sans JP";
  font-size:3.14vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
  top: 50%;
  left: -3vw;
  transform: translateY(-50%);
}
#works-sec .works-list li .company-name {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 1.75;
}
#works-sec .btn {
  width: 72.46vw;
  margin-inline: auto;
  border-radius: 48.31vw;
  background: #1A1A1A;
}
#works-sec .btn a {
  color: #FFF;
  text-align: center;
  font-size:3.382vw;
  font-weight: 500;
  line-height: 2.14286;
  display: block;
  position: relative;
  padding: 3.62vw 0;
}
#works-sec .btn a::after {
  position: absolute;
  content: "＞";
  color: #FFF;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 2.42vw;
  font-weight: 900;
  line-height: 1;
  top: 52%;
  right: 5vw;
  transform: translateY(-50%);
}

/* voice -------------------------------------*/
#voice-sec {
  background: #F5F5F5;
  padding: 15.49vw 0 19.32vw;
}
#voice-sec .inner {
  width:86.96vw;
  margin-inline: auto;
  position: relative;
}
#voice-sec .inner::before {
  position: absolute;
  content: "";
  background: url(../images/index/voice-en_sp.svg)no-repeat;
  background-size: contain;
  width: 86.47vw;
  height: 25.36vw;
  top: 0;
  left: 0;
}
#voice-sec .ttl-box {
  display: contents;
}
#voice-sec .fukidashi {
  position: relative;
  padding: 8.5vw 0 0;
  text-align: center;
}
#voice-sec .fukidashi img {
  width: 71.5vw;
}
#voice-sec h2 {
  font-size:12.077vw;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.08em;
  position: relative;
  text-align: center;
  margin-bottom: 2.5vw;
}
#voice-sec .lead {
  font-size:3.14vw;
  font-weight: 500;
  line-height: 1.84615;
  position: relative;
  letter-spacing: 0;
  padding: 0 0 0 2.5vw;
  margin-bottom: 10.4vw;
}
#voice-sec .system-list {
  width: 82.13vw;
  margin-inline: auto;
  display: block grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10.35vw;
  margin-bottom: 14.2vw;
}
#voice-sec .system-list li:nth-child(n+4) {
  display: none;
}
#voice-sec .system-list li a {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}
#voice-sec .system-list li .upper-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85vw;
}
#voice-sec .system-list li .system-area {
  color: #B9B9B9;
  font-size:3.14vw;
  font-weight: 400;
  letter-spacing: 0;
}
#voice-sec .system-list li .system-category {
  position: relative;
  top: -1vw;
}
#voice-sec .system-list li .system-category span {
  color: #FFF;
  text-align: center;
  font-size:3.14vw;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.7vw 2.42vw;
  border-radius: 0.97vw;
  background: #1A1A1A;
  display: block;
  line-height: 1.55;
}
#voice-sec .system-list li .system-pic {
  margin-bottom: 4.83vw;
  width: 100%;
  height: 38.65vw;
  text-align: center;
}
#voice-sec .system-list li .system-pic img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
#voice-sec .system-list li .system-company {
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.07692;
  letter-spacing: 0;
  position: relative;
  padding-left: 4.5vw;
  margin-bottom: 2.7vw;
}
#voice-sec .system-list li .system-company::before {
  position: absolute;
  content: "";
  background: url(../images/index/ellipse1.svg)no-repeat;
  background-size: contain;
  width: 2.42vw;
  height: 2.42vw;
  top: 50%;
  left: -0.1vw;
  transform: translateY(-50%);
}
#voice-sec .system-list li .system-ttl-01 {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 1.75; /* 175% */
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 3vw;
  overflow: clip;
}
#voice-sec .system-list li .comment-box {
  border-radius: 2.42vw;
  background: #FFF;
  padding: 4.83vw 2.42vw;
  position: relative;
  display: grid;
  grid-template-columns: 14.49vw 1fr;
  gap: 2.42vw;
  align-items: center;
}
#voice-sec .system-list li .system-comment {
  font-size:3.14vw;
  font-weight: 400;
  line-height: 1.69231; /* 169.231% */
  letter-spacing: 0;
  order: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: clip;
  width: 57.97vw;
}
#voice-sec .system-list li .system-illust {
  order: 1;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.main-ttl-wrap {
  width: 89.37vw;
  margin-inline: auto;
  padding: 2.5vw 0 3vw;
}
.main-ttl-wrap .en {
  color: #F5F5F5;
  font-size:12.077vw;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}
.main-ttl-wrap .main-ttl {
  text-align: right;
  font-size:4.831vw;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.util-btn {
  width: 72.46vw;
  margin-inline: auto;
}
.util-btn a{
  border-radius: 48.31vw;
  border: 0.2vw solid #1A1A1A;
  background: #FFF;
  display: block;
  color: #1A1A1A;
  text-align: center;
  font-size:3.382vw;
  font-weight: 500;
  line-height: 2.14286;
  position: relative;
  padding: 3.385vw 0;
  letter-spacing: 0;
}
.util-btn a::after {
  position: absolute;
  content: "＞";
  color: #1A1A1A;
  text-align: center;
  font-family: "Hanken Grotesk";
  font-size: 2.42vw;
  font-weight: 900;
  line-height: 1;
  top: 51%;
  right: 4.5vw;
  transform: translateY(-50%);
}


.seo_bread_list {
  width: 100%;
  padding: 3vw 5.5vw 3.5vw;
  margin: 0 auto;
  font-size: 2.898vw;
  line-height: 1.8333;
  font-weight: 500;
  margin-bottom: 11vw;
}
/*.seo_bread_list{display: none;}*/
.seo_bread_list a {
  color: #666;
}
.seo_bread_list li {
  margin-right: 1.5vw;
  float: left;
}
.seo_bread_list li::after {
  content: ">";
}
.seo_bread_list li:last-child::after {
  content: none;
}

.fit img {
  object-fit: cover;
}
.wysiwyg img {
  width: auto !important;
  height: auto !important;
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* 2カラムサイト---------------- */
#tow-cl #side {
  display: none;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-shippori {
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
}

.f-hanken {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


*:focus {
  outline: none !important;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #090909;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* img-block */
/* アンカーリンク調整 */
.hideAnchor {
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  margin-top: -2vw;
  padding-bottom: 2vw;
}
/* スクロール縦 */
.scroll-y {
  box-sizing: border-box;
  overflow-y: scroll;
  transform: translateZ(0);
}
/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.sp-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 5vw;
  height: 0;
  overflow: hidden;
}
.sp-ggmap iframe,
.sp-ggmap object,
.sp-ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
   @media screen and (max-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}
