@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;
}

body {
  color: #0f0f0f;
  margin-inline: auto;
  width: min(100%, 1920px);
}

/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
  /* base
-------------------------------------*/
  body {
    font-size: 16px;
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.8px;
  }

  /*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;
  }
  /*スマホ用メニュー*/
  nav#sp-global-nav {
    display: none;
  }
  /*スマホ用メニュー*/
  .sp-fix-list {
    display: none;
  }
  /* Antialiasing ※任意　*/

  /* header
-------------------------------------*/
  header {
    max-width: 1920px;
    width: 100%;
    margin-inline: auto;
  }

  /* 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: 40px;
    right: 80px;
    z-index: 99;
  }
  .pc-menu:hover {
    opacity: 0.8;
    cursor: pointer;
    cursor: hand;
  }
  #pc-menu-open {
    display: none;
    background: #f2f2f2;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 100;
    overflow-y: scroll;
  }
  #pc-menu-open .open-close-01 {
    position: absolute;
    top: 40px;
    right: 80px;
  }

  #pc-menu-open .c-btn__contact {
    margin-bottom: 77px;
    padding-block: 67px 0;
    padding-inline: 0 190px;
    text-align: right;
  }

  #pc-menu-open .open-main-Box {
    margin-inline: auto;
    width: min(95%, 1700px);
  }

  #pc-menu-open .open-main-Box__con {
    display: flex;
    justify-content: space-between;
    margin-bottom: 72px;
  }

  #pc-menu-open .open-main-Box__con-left .logo {
    margin-bottom: 22px;
  }

  #pc-menu-open .open-main-Box__con-left .company {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-bottom: 0px;
  }

  #pc-menu-open .open-main-Box__con-left address {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-bottom: 0px;
  }

  #pc-menu-open .open-main-Box__con-left .tel {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 0px;
  }

  #pc-menu-open .open-main-Box__con-left .fax {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 57px;
  }

  #pc-menu-open .open-main-Box__con-left .link a {
    display: block;
  }

  #pc-menu-open .open-main-Box__con-right .home {
    display: flex;
    gap: 0 20px;
    margin-bottom: 20px;
  }

  #pc-menu-open .open-main-Box__con-right .home .en {
    color: #2ca6e0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 2.0666666667;
  }

  #pc-menu-open .open-main-Box__con-right .home .txt {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3076923077;
  }

  #pc-menu-open .open-main-Box__con-right .open-main-Box__con-right-list {
    display: flex;
    justify-content: space-between;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list.left,
  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list.center {
    margin-right: 40px;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list.center-brand {
    margin-bottom: 37px;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list.right-info {
    margin-bottom: 40px;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list.right-company {
    margin-bottom: 32px;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    .en {
    color: #2ca6e0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    a {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3076923077;
    padding-inline: 21px 0;
    position: relative;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    a::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3076923077;
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul.sub
    li
    a::before {
    content: none;
  }

  #pc-menu-open .copyright {
    color: #808080;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3333333333;
    margin-inline: auto;
    width: min(95%, 1700px);
  }

  /* side-fix
-------------------------------------*/
  .side-fix {
    position: fixed;
    top: 110px;
    right: 0;
    z-index: 10;
  }

  /* 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;
  }

  /* header
-------------------------------------*/
  .l-header {
    height: 160px;
    margin-bottom: -160px;
    position: relative;
    z-index: 10;
  }

  .l-header .l-header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-block: 44px;
    padding-inline: 71px 190px;
  }

  .l-header .l-header__nav-list {
    align-items: center;
    display: flex;
    gap: 0 30px;
  }

  .l-header .l-header__nav-item a {
    display: block;
  }

  /* footer
-------------------------------------*/
  #index .l-footer {
    background: url(../images/common/footer_bg.jpg) no-repeat top center/cover;
    color: #ffffff;
    margin-inline: auto;
    max-width: 1920px;
    width: 100%;
  }

  .l-footer {
    background: #1d1f25;
    color: #ffffff;
    margin-inline: auto;
    max-width: 1920px;
    width: 100%;
  }

  #index .l-footer .l-footer__inner {
    margin-inline: auto;
    padding-block: 856px 0px;
    width: min(95%, 1700px);
  }

  .l-footer .l-footer__inner {
    padding-block: 78px 0px;
    width: min(95%, 1700px);
    margin-inline: auto;
  }

  .l-footer .l-footer__con {
    display: flex;
    justify-content: space-between;
    margin-bottom: 67px;
  }

  .l-footer .l-footer__con-left .logo {
    margin-bottom: 21px;
  }

  .l-footer .l-footer__con-left .logo img {
    width: 154px;
    height: auto;
  }

  .l-footer .l-footer__con-left .company {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-bottom: 0px;
  }

  .l-footer .l-footer__con-left address {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 2px;
  }

  .l-footer .l-footer__con-left .tel {
    /* margin-bottom: 8px; */
  }

  .l-footer .l-footer__con-left .tel span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    color: #fff;
  }

  .l-footer .l-footer__con-left .fax {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 58px;
  }

  .l-footer .l-footer__con-left .link a {
    display: block;
  }

  .l-footer .l-footer__con-right .home {
    margin-bottom: 21px;
  }

  .l-footer .l-footer__con-right .home a {
    display: flex;
    gap: 0 20px;
  }

  .l-footer .l-footer__con-right .home a .en {
    color: #2ca6e0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 2.0666666667;
  }

  .l-footer .l-footer__con-right .home a .txt {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3076923077;
    color: #fff;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list {
    display: flex;
    justify-content: space-between;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list.left,
  .l-footer .l-footer__con-right .l-footer__con-right-list .list.center {
    margin-right: 40px;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list.center-brand {
    margin-bottom: 37px;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list.right-info {
    margin-bottom: 36px;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list.right-company {
    margin-bottom: 40px;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list ul li .en {
    color: #2ca6e0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.4;
    margin-bottom: 2px;
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list ul li a {
    color: #ffffff;
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3076923077;
    padding-inline: 19px 0;
    position: relative;
  }

  .l-footer
    .l-footer__con-right
    .l-footer__con-right-list
    .list
    ul
    li
    a::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3076923077;
    color: #fff;
  }

  .l-footer
    .l-footer__con-right
    .l-footer__con-right-list
    .list
    ul.sub
    li
    a::before {
    content: none;
  }

  .l-footer .copyright {
    color: #808080;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3333333333;
    margin-inline: auto;
    width: min(100%, 1700px);
  }

  /* page-top
  -------------------------------------*/
  .page-top {
    text-align: right;
  }

  .page-top a {
    display: block;
  }

  /* end-contact
-------------------------------------*/

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

  /* floating
  -------------------------------------*/
  .floating {
    position: fixed;
    right: 45px;
    bottom: 45px;
    display: none;
    z-index: 20;
  }

  .floating .floating-close {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: absolute;
    top: 3px;
    right: 2px;
    z-index: 1;
  }

  .floating .c-btn__contact a {
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
  }

  /* common
-------------------------------------*/
  .c-btn__contact a {
    background: #2ca6e0;
    border-radius: 30px;
    padding-block: 19px 21px;
    padding-inline: 47px;
    transition: all 0.3s ease-in-out;
  }

  .c-btn__contact a img {
    vertical-align: middle;
  }

  .c-btn__floating a {
    background: #2ca6e0;
    border-radius: 45px;
    padding-block: 21px 21px;
    padding-inline: 47px;
    transition: all 0.3s ease-in-out;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: fit-content;
    display: block;
  }

  .c-btn__floating a .top {
    display: flex;
    gap: 0 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .c-btn__floating a p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    color: #fff;
    position: relative;
    left: 3px;
  }

  .c-btn__floating a img {
    vertical-align: middle;
  }

  .c-btn__floating a img.icon {
    width: 20px;
  }

  .c-btn__floating a img.en {
    width: 113px;
  }

  .l-inner {
    margin-inline: auto;
    width: min(95%, 1920px);
  }

  .p-main__wrap {
    background: #21242b;
    padding-block: 177px 32px;
  }

  .p-main__ttl {
    color: #ffffff;
    display: grid;
    gap: 16px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 13px;
    margin-inline: auto;
    width: min(95%, 1100px);
  }

  .p-main__ttl .en {
    color: #fff;
    font-size: 60px;
    line-height: 1.2;
  }

  .p-main__ttl h2 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    padding-inline: 26px 0;
    position: relative;
  }

  .p-main__ttl h2:before {
    background: #2ca6e0;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
  }

  /* レンタルについて　販売について　共通セクション
  -------------------------------------*/
  .p-access {
    margin-bottom: 198px;
  }

  .p-access .c-sec__en.access {
    margin-inline: auto;
    text-align: left;
    width: min(95%, 1100px);
    margin-bottom: 27px;
  }

  .p-access .c-sec__ttl02 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    margin-bottom: 59px;
    margin-inline: auto;
    padding-inline: 26px 0;
    position: relative;
    width: min(95%, 1100px);
  }

  .p-access .c-sec__ttl02:before {
    background: #2ca6e0;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
  }

  .p-access .p-access__items {
    display: grid;
    gap: 30px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-inline: auto;
    width: min(95%, 1280px);
  }

  .p-access .p-access__item {
    background: #ffffff;
    display: grid;
    gap: 0 4.5%;
    grid-template-columns: 50.1% 45.2%;
    justify-content: center;
    padding-block: 77px 89px;
    padding-inline: 90px 94px;
    align-items: center;
  }

  .p-access .p-access__item-map iframe {
    height: 350px;
    margin: 0;
    max-width: 100%;
  }

  .p-access .p-access__item-txt {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .p-access .p-access__item-ttl {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0em;
    line-height: 1.1428571429;
    margin-bottom: 65px;
  }

  .p-access .p-access__item-info-row-left {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-block: 0 25px;
    text-align: left;
    width: 106px;
  }

  .p-access .p-access__item-info-row-right {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: calc(100% - 106px);
  }

  .p-access .p-access__item-info-row:last-child .p-access__item-info-row-left {
    padding-block: 0;
  }

  .p-page-flow {
    margin-bottom: -91px;
    position: relative;
  }

  .p-page-flow .c-sec__en.page-flow {
    margin-bottom: 23px;
    text-align: center;
  }

  .p-page-flow .c-sec__ttl.page-flow {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
  }

  .p-page-flow .p-page-flow__box {
    background: #ffffff;
    margin-inline: auto;
    padding-block: 58px 60px;
    width: min(95%, 1100px);
  }

  .p-page-flow .p-page-flow__items {
    display: grid;
    gap: 0 30px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-inline: auto;
    width: min(95%, 870px);
  }

  .p-page-flow .p-page-flow__item:last-child .icon::after {
    content: none;
  }

  .p-page-flow .p-page-flow__item h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.2;
    margin-bottom: 33px;
    text-align: center;
  }

  .p-page-flow .p-page-flow__item .icon {
    position: relative;
    text-align: center;
  }

  .p-page-flow .p-page-flow__item .icon::after {
    background: url(../images/page-common/flow_arrow.svg) no-repeat center
      center/contain;
    content: "";
    height: 7px;
    position: absolute;
    right: -24px;
    top: 44%;
    width: 14px;
  }

  .p-page-flow .p-page-flow__item .icon img {
    height: auto;
    width: 88%;
  }

  .p-page-contact {
    background: url(../images/page-common/page_contact_bg.jpg) no-repeat top
      center/cover;
    margin-inline: auto;
    max-width: 1920px;
    width: 100%;
  }

  .p-page-contact .l-inner.l-page-contact {
    padding-block: 198px 130px;
  }

  .p-page-contact .c-sec__en.page-contact {
    margin-bottom: -51px;
    text-align: center;
  }

  .p-page-contact .p-page-contact__img {
    margin-inline: auto;
    position: relative;
    right: 40px;
    text-align: right;
    width: min(95%, 800px);
  }

  .p-page-contact .p-page-contact__img img {
    height: auto;
    width: 109px;
  }

  .p-page-contact .p-page-contact__btn {
    margin-inline: auto;
    width: min(95%, 800px);
  }

  .p-page-contact .p-page-contact__btn a {
    background: #21242b;
    border-radius: 50px;
    color: #ffffff;
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1;
    padding-block: 42px;
    position: relative;
    text-align: center;
  }

  .p-page-contact .p-page-contact__btn a::after {
    background: url(../images/page-common/page_contact_arrow.svg) no-repeat
      center center/contain;
    content: "";
    height: 7px;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
  }

  .seo_bread_list {
    color: #c6c1c1;
    margin-inline: auto;
    text-align: right;
    width: min(95%, 1100px);
  }

  .seo_bread_list span {
    color: #c6c1c1;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.4285714286;
  }

  .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;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    vertical-align: bottom;
  }
  a {
    text-decoration: none;
    color: #0f0f0f;
  }
  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 (any-hover: hover) {
    .c-btn__contact a:hover {
      background: linear-gradient(to right, #83ffd9 0%, #0b84be 100%);
      text-decoration: none;
    }

    .c-btn__floating a:hover {
      background: linear-gradient(to right, #83ffd9 0%, #0b84be 100%);
      text-decoration: none;
    }
  }
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1500px) {
======================================== */
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .l-header .l-header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-block: 2.933vw;
    padding-inline: 4.733vw 12.667vw;
  }

  .c-btn__contact a {
    background: #2ca6e0;
    border-radius: 2vw;
    padding-block: 1.267vw 1.4vw;
    padding-inline: 3.133vw;
    transition: all 0.3s ease-in-out;
  }

  .pc-menu {
    position: fixed;
    top: 2.667vw;
    right: 5.333vw;
    z-index: 99;
  }

  .pc-menu img {
    width: 5.4vw;
    height: auto;
  }

  #pc-menu-open .open-close-01 {
    top: 2.667vw;
    right: 5.333vw;
  }

  #pc-menu-open .open-close-01 img {
    width: 5.4vw;
    height: auto;
  }
}

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

/* ========================================
@media screen and (min-width:768px) and ( max-width:1000px) {
======================================== */
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .l-footer .l-footer__con-left .company {
    font-size: clamp(0.875rem, 0.461rem + 0.86vw, 1rem);
  }

  .l-footer .l-footer__con-left address {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  .l-footer .l-footer__con-left .tel span {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  .l-footer .l-footer__con-left .fax {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list ul li a {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  .l-footer
    .l-footer__con-right
    .l-footer__con-right-list
    .list
    ul
    li
    a::before {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list ul li a {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  .l-footer .l-footer__con-right .l-footer__con-right-list .list ul li .en {
    font-size: clamp(0.75rem, 0.129rem + 1.29vw, 0.938rem);
  }

  #pc-menu-open .open-main-Box__con-left .company {
    font-size: clamp(0.875rem, 0.461rem + 0.86vw, 1rem);
  }

  #pc-menu-open .open-main-Box__con-left address {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  #pc-menu-open .open-main-Box__con-left .tel span {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  #pc-menu-open .open-main-Box__con-left .fax {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    a {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    a::before {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    a {
    font-size: clamp(0.625rem, 0.004rem + 1.29vw, 0.813rem);
  }

  #pc-menu-open
    .open-main-Box__con-right
    .open-main-Box__con-right-list
    .list
    ul
    li
    .en {
    font-size: clamp(0.75rem, 0.129rem + 1.29vw, 0.938rem);
  }
}

/* ========================================
   @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;
  }
  .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;
  }
  .floating {
    display: none !important;
  }

  /* sp-header
-------------------------------------*/
  .sp-header {
    padding-block: 26px 0;
    padding-inline: 17px;
    margin-bottom: -90px;
    position: relative;
    z-index: 10;
  }

  #index .sp-header {
    border-top: 3px solid #2ca6e0;
  }

  .sp-header .h-logo img {
    height: auto;
    width: 19.082vw;
  }

  .sp-header .h-menu {
    position: fixed;
    top: 3.865vw;
    right: 3.865vw;
    width: 14.493vw;
    z-index: 97;
  }

  .sp-header .h-menu img {
    height: auto;
    width: 14.493vw;
  }

  /* sp-global-nav
-------------------------------------*/
  nav#sp-global-nav .h-logo {
    padding-block: 32px;
    padding-inline: 17px;
  }
  nav#sp-global-nav .h-logo img {
    height: auto;
    width: 19.082vw;
  }
  nav#sp-global-nav {
    font-size: 3.8vw;
    z-index: 99;
    overflow: scroll;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    background: #f2f2f2;
    box-sizing: border-box;
    color: #fff;
  }
  nav#sp-global-nav .open-close-01 {
    position: fixed;
    top: 3.865vw;
    right: 3.865vw;
    z-index: 98;
  }
  nav#sp-global-nav .open-close-01 img {
    height: auto;
    width: 14.493vw;
  }
  nav#sp-global-nav .open-color-Box {
    padding-block: 0 28.986vw;
    padding-inline: 4.589vw 0;
  }

  nav#sp-global-nav .open-color-Box__btn {
    margin-bottom: 8.696vw;
    text-align: center;
  }

  nav#sp-global-nav .open-color-Box__btn a {
    display: block;
  }

  nav#sp-global-nav .open-color-Box__btn a img {
    border-radius: 10.87vw;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
    width: 65.217vw;
  }

  nav#sp-global-nav .open-color-Box__home a {
    color: #2ca6e0;
    display: block;
    font-size: 3.623vw;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.8666666667;
    margin-bottom: 9.662vw;
  }

  nav#sp-global-nav .open-color-Box__list .list {
    margin-bottom: 14.493vw;
  }

  nav#sp-global-nav .open-color-Box__list .list li .en {
    color: #2ca6e0;
    font-size: 3.623vw;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.4;
    margin-bottom: 4.831vw;
  }

  nav#sp-global-nav .open-color-Box__list .list li a {
    border-bottom: 1px solid #e6e6e6;
    display: block;
    font-size: 3.623vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 4;
    position: relative;
  }

  nav#sp-global-nav .open-color-Box__list .list li a:before {
    content: ">";
    font-size: 3.623vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 4;
    position: absolute;
    right: 7.729vw;
    top: 50%;
    transform: translateY(-50%);
  }

  nav#sp-global-nav .open-color-Box__list .list li a::after {
    background: #ffffff;
    bottom: 0;
    content: "";
    height: 0.242vw;
    left: 0;
    position: absolute;
    width: 100%;
  }

  nav#sp-global-nav .open-color-Box__list .list .sub li a {
    padding-inline: 3.623vw 0;
  }

  nav#sp-global-nav .open-color-Box__follow {
    margin-block-start: 3.623vw;
    text-align: center;
  }

  nav#sp-global-nav .open-color-Box__follow .en {
    margin-bottom: 9.662vw;
  }

  nav#sp-global-nav .open-color-Box__follow a {
    display: block;
  }

  /* side-fix
-------------------------------------*/
  .side-fix {
    display: none !important;
  }
  .sp-fix-list {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 96;
    /* display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: flex-end; */
  }
  .sp-fix-list .tel {
  }
  .sp-fix-list .icon {
  }
  .sp-fix-list .sp-fix-close {
    text-align: center;
    position: relative;
    width: 67.6vw;
    margin-inline: auto;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 45px;
  }
  .sp-fix-list .sp-fix-close a {
    text-align: center;

    display: inline-block;
  }
  .sp-fix-list .icon a img {

  }
  .sp-fix-list .sp-fix-close-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: absolute;
    top: 3px;
    right: 2px;
    z-index: 1;
}

  /* end-contact
-------------------------------------*/

  /* sp-page-top
-------------------------------------*/
  .sp-page-top {
    margin-bottom: 8.077vw;
  }

  .sp-page-top a {
    text-align: center;
    display: block;
  }
  .sp-page-top a img {
  }

  /* footer
-------------------------------------*/
  #index .l-footer {
    background: url(../images/common/footer_bg_sp.jpg) no-repeat top
      center/cover;
    color: #ffffff;
    margin-inline: auto;
    width: 100%;
  }

  .l-footer {
    background: #1d1f25;
    color: #ffffff;
    margin-inline: auto;
    width: 100%;
  }

  #index .l-footer .l-footer__inner {
    padding-block: 245.729vw 26.57vw;
    width: 100%;
  }

  .l-footer__inner {
    padding-block: 19vw 26.57vw;
  }

  .l-footer .l-footer__con {
    display: block;
    margin-bottom: 19.565vw;
  }

  .l-footer .l-footer__con-left {
    text-align: center;
  }

  .l-footer .l-footer__con-left .logo {
    margin-bottom: 1.556vw;
  }

  .l-footer .l-footer__con-left .logo a {
    display: inline-block;
    padding-block: 3.865vw;
    width: 57.971vw;
  }

  .l-footer .l-footer__con-left .logo img {
    height: auto;
    width: 36.473vw;
  }

  .l-footer .l-footer__con-left .company {
    font-size: 3.865vw;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-bottom: 1.415vw;
  }

  .l-footer .l-footer__con-left address {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 1.932vw;
  }

  .l-footer .l-footer__con-left .tel {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 0.932vw;
  }

  .l-footer .l-footer__con-left .tel span {
    color: #ffffff;
  }

  .l-footer .l-footer__con-left .fax {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5384615385;
    margin-bottom: 0px;
  }

  .l-footer .copyright {
    color: #808080;
    display: block;
    font-size: 3.382vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.7142857143;
    text-align: center;
  }

  /* copyright
-------------------------------------*/
  .copyright {
  }

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

  /* common
-------------------------------------*/
  .p-main__wrap {
    background: #21242b;
    padding-block: 44.783vw 7.729vw;
  }

  .p-main__ttl {
    color: #ffffff;
    display: grid;
    gap: 2.932vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 6.937vw;
    margin-inline: auto;
    width: min(95%, 91.7vw);
  }

  .p-main__ttl .en {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
  }

  .p-main__ttl .en.parker img {
    height: auto;
    width: 29.71vw;
  }

  .p-main__ttl h2 {
    font-size: 3.623vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    padding-inline: 6.039vw 0;
    position: relative;
  }

  .p-main__ttl h2:before {
    background: #2ca6e0;
    content: "";
    height: 2.415vw;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.415vw;
  }

  /* レンタルについて　販売について　共通セクション
  -------------------------------------*/
  .p-access {
    margin-bottom: 21.981vw;
  }

  .p-access .c-sec__en.access {
    margin-bottom: 3.039vw;
    margin-inline: auto;
    text-align: left;
    width: min(95%, 83.5748792271vw);
  }

  .p-access .c-sec__en.access img {
    height: auto;
    width: 36.372vw;
  }

  .p-access .c-sec__ttl02 {
    font-size: 3.623vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    margin-bottom: 5.039vw;
    margin-inline: auto;
    padding-inline: 6.28vw 0;
    position: relative;
    width: min(95%, 83.5748792271vw);
  }

  .p-access .c-sec__ttl02:before {
    background: #2ca6e0;
    content: "";
    height: 2.415vw;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.415vw;
  }

  .p-access .p-access__items {
    display: grid;
    gap: 7.246vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-inline: auto;
    width: min(95%, 96.7vw);
  }

  .p-access .p-access__item {
    background: #ffffff;
    display: grid;
    gap: 7vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-inline: auto;
    padding-block: 9.628vw 5.111vw;
    padding-inline: 6vw;
    width: min(95%, 91.7vw);
  }

  .p-access .p-access__item-map {
    order: 3;
  }

  .p-access .p-access__item-map iframe {
    height: 38.647vw;
    margin: 0;
    max-width: 100%;
  }

  .p-access .p-access__item-con {
    display: contents;
  }

  .p-access .p-access__item-txt {
    font-size: 3.623vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    margin-bottom: -7.135vw;
    order: 1;
  }

  .p-access .p-access__item-ttl {
    font-size: 4.831vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: -1.754vw;
    order: 2;
  }

  .p-access .p-access__item-info {
    order: 4;
  }

  .p-access .p-access__item-info-row {
    display: grid;
    gap: 0.415vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 5.797vw;
  }

  .p-access .p-access__item-info-row-left {
    font-size: 3.623vw;
    font-weight: 700;
    letter-spacing: 0em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-block: 0px;
    text-align: left;
    width: 100%;
  }

  .p-access .p-access__item-info-row-right {
    font-size: 3.623vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .p-page-flow {
    margin-bottom: -14.662vw;
    position: relative;
  }

  .p-page-flow .c-sec__en.page-flow {
    margin-bottom: 6.039vw;
    text-align: center;
  }

  .p-page-flow .c-sec__en.page-flow img {
    height: auto;
    width: 34.647vw;
  }

  .p-page-flow .c-sec__ttl.page-flow {
    font-size: 4.831vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.2;
    margin-bottom: 10.039vw;
    text-align: center;
  }

  .p-page-flow .p-page-flow__box {
    background: #ffffff;
    margin-inline: auto;
    padding-block: 14.043vw 14.386vw;
    width: min(95%, 77.2vw);
  }

  .p-page-flow .p-page-flow__items {
    display: grid;
    gap: 14.043vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-inline: auto;
    width: 100%;
  }

  .p-page-flow .p-page-flow__item:last-child::after {
    content: none;
  }

  .p-page-flow .p-page-flow__item {
    position: relative;
  }

  .p-page-flow .p-page-flow__item::after {
    background: url(../images/page-common/flow_arrow_sp.svg) no-repeat center
      center/contain;
    bottom: -8vw;
    content: "";
    height: 3.382vw;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 1.691vw;
  }

  .p-page-flow .p-page-flow__item h3 {
    font-size: 4.831vw;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.2;
    margin-bottom: 3.971vw;
    text-align: center;
  }

  .p-page-flow .p-page-flow__item .icon {
    text-align: center;
  }

  .p-page-flow .p-page-flow__item .icon img {
    height: auto;
    width: 31.401vw;
  }

  .p-page-contact {
    background: url(../images/page-common/page_contact_bg_sp.jpg) no-repeat top
      center/cover;
  }

  .p-page-contact .l-inner.l-page-contact {
    padding-block: 29.155vw 19.908vw;
  }

  .p-page-contact .c-sec__en.page-contact {
    margin-bottom: 5vw;
    text-align: center;
  }

  .p-page-contact .c-sec__en.page-contact img {
    height: auto;
    width: 57.662vw;
  }

  .p-page-contact .p-page-contact__img {
    margin-inline: auto;
    position: relative;
    right: 8vw;
    text-align: right;
    width: min(95%, 91.7vw);
  }

  .p-page-contact .p-page-contact__img img {
    height: auto;
    width: 18.357vw;
  }

  .p-page-contact .p-page-contact__btn {
    margin-inline: auto;
    width: min(95%, 91.7vw);
  }

  .p-page-contact .p-page-contact__btn a {
    background: #21242b;
    border-radius: 12.077vw;
    color: #ffffff;
    display: block;
    font-size: 4.348vw;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.3333333333;
    padding-block: 8.937vw;
    position: relative;
    text-align: center;
  }

  .p-page-contact .p-page-contact__btn a::after {
    background: url(../images/page-common/page_contact_arrow.svg) no-repeat
      center center/contain;
    content: "";
    height: 1.691vw;
    position: absolute;
    right: 9.908vw;
    top: 50%;
    transform: translateY(-50%);
    width: 4.106vw;
  }

  .seo_bread_list {
    color: #c6c1c1;
    font-size: 2.899vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.4166666667;
    margin-inline: auto;
    text-align: right;
    width: min(95%, 91.7vw);
  }

  .seo_bread_list span {
    color: #c6c1c1;
  }

  .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;
  }

  *: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: #0f0f0f;
  }
  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;
  }
}
