@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-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.8px;
  background: #F2F2F2;
  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;
}
header .inner {
  display: flex;
  justify-content: space-between;
  padding: 19px 111px 16px 40px;
  align-items: center;
}
header .inner .h-logo {}
header .h-right {
  display: grid;
  grid-template-columns: 30.9% 1fr;
  gap: 18px;
  align-items: flex-start;
}
header .h-right a {
  text-decoration: none;
}
header .tel-box .txt {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 5px;
  border-bottom: 1px solid #1A1A1A;
}
header .tel-box .tel {
  margin-bottom: 7px;
  text-align: center;
  padding: 0 10px 0 0;
}
header .tel-box .open {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
}
header .btn-list {
  display: grid;
  grid-template-columns: 270px 220px;
  gap: 10px;
}
header .btn-list li p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #FFFFFF;
}
header .btn-list li p .small {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
}
header .btn-list .mail a {
  padding: 16px 0px 16px 25px;
  border-radius: 5px;
  background: #e2312b;
  border: 1px solid #fff;
  display: flex;
  gap: 6px;
  align-items: center;
}
header .btn-list .satei a {
  padding: 16px 0 16px 25px;
  background: #1a1a1a;
  border-radius: 5px;
  display: flex;
  gap: 8px;
  align-items: center;
}


/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #FFFFFF;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
  /* overflow-y: scroll; */
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  left: 50%;
  transform: translateX(-50%);
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 20px;
  right: 20px;
}
#pc-menu-open .h-logo {
  padding: 30px 40px;
}
#pc-menu-open .link-Box {
  display: flex;
  gap: 78px;
  margin-bottom: 102px;
  padding: 0 20px 0 25px;
}
#pc-menu-open .link-Box .link ul {
  display: grid;
  gap: 17px;
}
#pc-menu-open .link-Box .link:nth-of-type(1) ul:nth-of-type(1) {
  margin-bottom: 74px;
}
#pc-menu-open .link-Box .link li a {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 20px;
}
#pc-menu-open .link-Box .link li a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
#pc-menu-open .link-Box .en-link {
  font-size: 17px;
  line-height: 1.5294117647;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #D75B43;
  margin-bottom: 26px;
}
.open-main-Box .inner{
  width: min(95%, 1100px);
  margin-inline: auto;
  padding: 40px 0 0;
}
.open-main-Box .btn-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.open-main-Box .btn-list li a {
  padding: 24px 90px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
}
.open-main-Box .btn-list li a img {
  width: 90px;
}
.open-main-Box .btn-list li .ttl {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.14em;
  line-height: 1.785714;
  text-align: center;
  margin: 0 0 0 -49px;
}
.open-main-Box .btn-list li .ttl .small {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.785714;
  text-align: center;
  display: block;
  margin: -3px 0 0;
}
.open-main-Box .btn-list .satei {
  background: #D75B43;
}
.open-main-Box .btn-list .mail {
  background: #333333;
}

/* pagetop
-------------------------------------*/
.fix-pagetop {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 10;
}
.fix-pagetop a {
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #1A1A1A;
  overflow: hidden;
  border-radius: 200px;
  height: 241px;
  width: 60px;
  padding: 41px 0 0;
}
.fix-pagetop a::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transition: transform .3s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 0;
  transform-origin: center bottom;
}
.fix-pagetop a:hover::before {
  transform: scaleY(1);
  transform-origin: center top;
}

.fix-pagetop a:hover .txt {
  animation: mouseOutVerticalTextAction .3s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
  color: #D75B43;
  text-decoration: none;
}
.fix-pagetop a:hover {
  text-decoration: none;
}
.fix-pagetop .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 2;
}
.fix-pagetop .circle .area {
  width: 12px;
  height: 13px;
  position: relative;
  overflow: hidden;
}
.fix-pagetop .circle img:nth-of-type(1),
.fix-pagetop .circle img:nth-of-type(2) {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  animation: none;
}
.fix-pagetop a:hover .circle img:nth-of-type(1) {
  animation: transformBottomCenter .3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both .12s;
}
.fix-pagetop a:hover .circle img:nth-of-type(2) {
  animation: transformCenterTop .3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.fix-pagetop .inner {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
}
.fix-pagetop .txt {
  writing-mode: vertical-lr;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.52941;
  text-align: left;
  color: #fff;
  background: linear-gradient(0deg, #fff 0%, #fff 50%, #D75B43 50%, #D75B43 100%);
  background-position: 50% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 100% 220%;
  color: rgba(0, 0, 0, 0);
  animation: mouseOutVerticalTextAction .3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@keyframes mouseOutVerticalTextAction {
  0% {
    background-position: 50% 0;
  }
  99% {
    background-position: 50% -90%;
  }
  100% {
    background-position: 50% 100%;
  }
  
}
@keyframes transformBottomCenter {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes transformCenterTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}


/* g-nav
-------------------------------------*/
#g-nav {
  position: absolute;
  top: 417px;
  left: 79px;
}
#g-nav .navi-inner {
  display: grid;
  gap: 9px;
}
#g-nav li.list {

}
#g-nav li.list span {
  cursor: pointer;
}
#g-nav li.list span,
#g-nav li.list a {
  font-size: 14px;
  line-height: 2.642857;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  position: relative;
}
#g-nav li.list a::before {
  content: ">" ;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 14px;
}
#g-nav li.list span::before {
  content: "-" ;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 14px;
}
#g-nav .dropmenu li.list ul.sub {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  position: absolute;
  top: 231px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 50;
  width: 260px;
}
#g-nav .dropmenu li.list:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
#g-nav .dropmenu li.list ul li:last-child a {

}
#g-nav .dropmenu li.list ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background: #fff;
  display: block;
  width: 260px;
  padding: 1px 0 2px 35px;
  color: #1A1A1A;
  border-bottom: none;
  position: relative;
  margin-bottom: 1px;
}
#g-nav .dropmenu li.list:hover ul li a {
  visibility: visible;
  opacity: 1;
}
#g-nav li.list .sub a::before {
  position: absolute;
  content: "-";
  color: #1A1A1A;
  font-size: 14px;
  left: 21px;
}

/* footer
-------------------------------------*/
footer {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background: #FFFFFF;
}
footer .footer-Box {
  width: min(95%, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 20.9% 73.5%;
  gap: 88px;
  padding: 57px 0 1px;
}
footer .footer-left .logo {
  margin-bottom: 27px;
}
footer .footer-left .address {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
}
footer .footer-right {
  padding: 27px 0 0;
  display: grid;
  gap: 58px;
}
footer .home-link a {
  font-size: 17px;
  line-height: 1.5294117647;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #D75B43;
}
footer .home-link a span {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #1A1A1A;
  margin-left: 9px;
}
footer .link-Box {
  display: flex;
  gap: 78px;
}
footer .link-Box .link ul {
  display: grid;
  gap: 17px;
}
footer .link-Box .link:nth-of-type(1) ul:nth-of-type(1) {
  margin-bottom: 74px;
}
footer .link-Box .link li a {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 20px;
}
footer .link-Box .link li a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
footer .link-Box .en-link {
  font-size: 17px;
  line-height: 1.5294117647;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #D75B43;
  margin-bottom: 26px;
}
footer .footer-link {
  width: min(95%, 1440px);
  margin-inline: auto;
  background: #dbdcdc;
  border: 1px solid #c8c8c8;
  margin-top: -10px;
}
footer .footer-link .inner {
  padding: 29px 0;
  width: min(95%, 950px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 39px;
}
footer .footer-link .inner .name {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin: 9px 0 0 -10px;
}
footer .footer-link .inner .name span{
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  display: block;
  margin-bottom: 7px;
}
footer .footer-link .inner .link {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
footer .footer-bottom {
  width: min(95%, 1440px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 100px;
}
footer .footer-bottom .link {
  display: flex;
  gap: 49px;
  padding: 0 20px 0 0;
}
footer .footer-bottom .link a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428;
  text-align: left;
  color: #747474;
  position: relative;
}
footer .footer-bottom .link a::after {
  content: "";
  position: absolute;
  background: url(../images/common/open-icon.svg)no-repeat;
  background-size: contain;
  width: 14px;
  height: 15px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.copyright {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px 0px;
  display: block;
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: url(../images/common/end-contact.jpg)no-repeat top center/contain, #fff;
  padding: 120px 0 0;
  color: #FFFFFF;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
#end-contact .inner {
  width: min(95%, 1280px);
  margin-inline: auto;
}
#end-contact .upper {
  display: grid;
  grid-template-columns: 33.04% 1fr;
  gap: 122px;
  align-items: flex-start;
  margin-bottom: 51px;
}
#end-contact .en-ttl {margin: 0 0 9px 4px;}
#end-contact h2 {
  font-size: 24px;
  line-height: 2.2916666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: left;
  margin: 0 0 0 9px;
}
#end-contact .tel-box {
  display: grid;
  grid-template-columns: 44.9% 1fr;
  gap: 58px;
  border-bottom: 4px solid #FFFFFF;
  /* margin: 20px 0 0; */
  align-items: center;
  padding: 0 0 12px;
}
#end-contact .tel-box .txt p {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0px;
}
#end-contact .tel-box .txt span {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 400;
}
#end-contact .link {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#end-contact .link .satei a{
  background: #D75B43;
}
#end-contact .link .mail a{
  background: #333333;
}
#end-contact .link li {
  text-align: center;
  position: relative;
  z-index: 3;
  transition: 0.3s;
}
#end-contact .link li::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: 50%;
  width: 720px;
  height: 220px;
  background-image: url(../images/common/end-link-shadow.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transform: translateX(-50%);
  transition: 0.3s;
}
#end-contact .link li:hover {
  transform: scale(0.99, 0.99) translateY(2px);
}
#end-contact .link li:hover::after {
  background: none;
}
#end-contact .link li a {
  color: #FFFFFF;
  z-index: 2;
  position: relative;
  display: block;
  padding: 60px 0 83px;
}
#end-contact .link li .icon {
  margin-bottom: 1px;
}
#end-contact .link li .ttl {
  font-size: 40px;
  line-height: 1.775;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 20px;
}
#end-contact .link li .small {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin: 9px 0 0;
}

/* link
-------------------------------------*/
#link  {
  margin-bottom: 65px;
}
#link .sec-ttl {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #141414;
  margin-bottom: 50px;
}
#link .inner{
  width: min(95%, 1400px);
  margin-inline: auto;
  background: #FFFFFF;
  padding: 60px 0;
}

#link  .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(95%,1160px);
  margin-inline: auto;
}
#link  .list img {
  margin-bottom: 17px;
}
#link  .list .txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428;
  color: #141414;
}


/* service
-------------------------------------*/
.service {
  margin-bottom: 139px;
}
.service .subt{
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 2.5;
  text-align: center;
  color: #141414;
  margin-bottom: -4px;
}
.service .sec-ttl{
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #141414;
  margin-bottom: 52px;
}
.service .inner {
  width: min(95%, 1400px);
  margin-inline: auto;
  background: #FFFFFF;
  padding: 52px 0 12px;
}
.service .inner .enttl {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #d75b43;
  margin-bottom: -3px;
}
.service .inner h3 {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #141414;
  margin-bottom: 38px;
}
.service .service-list {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  width: min(95%,1100px);
  margin-inline: auto;
  justify-content: center;
}
.service .service-group {
  text-align: center;
  position: relative;
}
.service .service-group::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D75B43;
}
.service .service-group ul {
  display: flex;
  gap: 40px;
}
.service .group-ttl {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background: #d75b43;
  display: inline-block;
  width: 160px;
  padding: 4px 0px;
  margin-bottom: 20px;
  position: relative;
}

/*  flow
-------------------------------------*/
.flow {
  width: min(95%, 1600px);
  margin-inline: auto;
  background: #FFFFFF;
}
.flow .inner{
  width: min(95%, 1000px);
  margin-inline: auto;
  padding: 80px 0 100px;
  text-align: center;
}
.flow .subt {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: url(../images/assessment/flow-subt-bg.png)no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  top: -71px;
  padding: 24px 58px 42px;
  margin-bottom: -71px;
}
.flow .enttl{
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  color: #d75b43;
  margin-bottom: 1px;
}
.flow h2{
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 2.3;
  text-align: center;
  margin-bottom: 32px;
}
.flow .list{
  display: grid;
  gap: 40px;
}
.flow .list li{
  background: #fff;
  border: 1px solid #d75b43;
  padding: 26px 80px 16px;
  display: grid;
  grid-template-columns: 21.48% 1fr;
  gap: 40px;
  position: relative;
  text-align: left;
}
.flow .list li:not(:last-child)::after {
  position: absolute;
  content: "";
  background: url(../images/page-common/flow-line.png)no-repeat;
  background-size: auto;
  width: 4px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
}
.flow .list li .right {
  padding: 10px 0 0;
}
.flow .list li .num {
  border-radius: 5px;
  background: #d75b43;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.4285714;
  text-align: center;
  color: #fff;
  width: 40px;
  margin-bottom: 2px;
  display: inline-block;
}
.flow .list li h3 {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 10px;
}
.flow .list li h3 span {
  font-size: 24px;
}
.flow .list li .txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7142857;  
}



/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
.main-ttl-wrap {
  width: min(95%, 1600px);
  margin-inline: auto;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 26px 0 0;
}
.main-ttl-wrap .en-ttl {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 80px;
  color: #f2f2f2;
  text-shadow: 1px 1px 0 #1A1A1A,
 -1px 1px 0 #1A1A1A,
  1px -1px 0 #1A1A1A,
 -1px -1px 0 #1A1A1A,
  1px 0 0 #1A1A1A,
 -1px 0 0 #1A1A1A,
  0 1px 0 #1A1A1A,
  0 -1px 0 #1A1A1A;
  letter-spacing: 0;
}
.main-ttl-wrap .main-ttl {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.708333;
}

.seo_bread_list {
  width: 1200px;
  margin: 0 auto 20px;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.9285714;
}
.seo_bread_list .home span {color: #E2312B;}
.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-mon {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  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:1200px)
======================================== */
@media screen and (min-width:768px) and (max-width:1200px) {
/* header
-------------------------------------*/
header .inner {
  padding: 1.583vw 9.25vw 1.333vw 3.333vw;
}
header .inner .h-logo img{width: 19.667vw;}
header .h-right {
  grid-template-columns: 30.9% 1fr;
  gap: 1.5vw;
}
header .tel-box .txt {
  font-size: 1.167vw;
  margin-bottom: 0.417vw;
}
header .tel-box .tel {
  margin-bottom: 0.583vw;
  padding: 0 0.833vw 0 0;
}
header .tel-box .tel img {
  width: 14.667vw;
}
header .tel-box .open {
  font-size: 1vw;
}
header .btn-list {
  grid-template-columns: 22.5vw 18.333vw;
  gap: 0.833vw;
}
header .btn-list li img {
  width: 3vw;
}
header .btn-list li p {
  font-size: 1.333vw;
}
header .btn-list li p .small {
  font-size: 1vw;
}
header .btn-list .mail a{
  padding: 1.333vw 0px 1.333vw 2.083vw;
  border-radius: 0.417vw;
  gap: 0.5vw;
}
header .btn-list .satei a{
  padding: 1.333vw 0px 1.333vw 2.083vw;
  border-radius: 0.417vw;
  gap: 0.667vw;
}


}

/* ========================================
@media screen and (min-width:768px) and (max-width:1200px)
======================================== */
@media screen and (min-width:768px) and (max-width:1200px) {
/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 1.667vw;
  right: 1.667vw;
  z-index: 99;
}
.pc-menu img {
  width: 6.667vw;
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 1.667vw;
  right: 1.667vw;
}
#pc-menu-open .h-logo {
  padding: 2.5vw 3.333vw;
}
#pc-menu-open .link-Box {
  gap: 6.5vw;
  margin-bottom: 8.5vw;
  padding: 0 1.667vw 0 2.083vw;
}
#pc-menu-open .link-Box .link ul {
  gap: 1.417vw;
}
#pc-menu-open .link-Box .link:nth-of-type(1) ul:nth-of-type(1) {
  margin-bottom: 6.167vw;
}
#pc-menu-open .link-Box .link li a {
  font-size: 1.333vw;
  padding: 0 0 0 1.667vw;
}
#pc-menu-open .link-Box .link li a::before {
  font-size: 1.333vw;
}
#pc-menu-open .link-Box .en-link {
  font-size: 1.417vw;
  margin-bottom: 2.167vw;
}
.open-main-Box {
  width: 91.667vw;
  margin-inline: auto;
}
.open-main-Box .inner{
  padding: 3.333vw 0 0;
}
.open-main-Box .btn-list {
  gap: 1.667vw;
}
.open-main-Box .btn-list li a {
  padding: 2vw 7.5vw;
  grid-template-columns: 7.5vw 1fr;
}
.open-main-Box .btn-list li a img {
  width: 7.5vw;
}
.open-main-Box .btn-list li .ttl {
  font-size: 2.333vw;
  margin: 0 0 0 -4.083vw;
}
.open-main-Box .btn-list li .ttl .small {
  font-size: 1.167vw;
  margin: -0.25vw 0 0;
}

}

/* ========================================
@media screen and (min-width:768px) and (max-width:1440px)
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
.fix-pagetop {
  bottom: 1.167vw;
  right: 4.167vw;
}
.fix-pagetop a {
  border-radius: 13.889vw;
  height: 16.736vw;
  width: 4.167vw;
  padding: 2.847vw 0 0;
}
.fix-pagetop .circle {
  width: 4.167vw;
  height: 4.167vw;
}
.fix-pagetop .circle .area {
  width: 0.833vw;
  height: 0.903vw;
}
.fix-pagetop .txt {
  font-size: 1.181vw;
}
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1510px)
======================================== */
@media screen and (min-width:768px) and (max-width:1510px) {
  footer .footer-bottom {
    padding-bottom: 17.623vw;
  }
  footer .footer-Box {
    gap: 5.828vw;
    padding: 6.887vw 0 0.066vw;
    grid-template-columns: 20.9% 1fr;
  }
  footer .link-Box {
    gap: 2.166vw;
  }
  footer .link-Box .link ul {
    gap: 1.126vw;
  }
  footer .footer-left .logo {
    margin-bottom: 1.788vw;
  }
  footer .footer-left .logo img {
    width: 19.868vw;
  }
  footer .footer-left .address {
    font-size: clamp(0.75rem, 0.621rem + 0.27vw, 0.875rem);
  }
  footer .footer-right {
    padding: 1.788vw 0 0;
    gap: 3.841vw;
  }
  footer .home-link a {
    font-size: clamp(0.938rem, 0.808rem + 0.27vw, 1.063rem);
  }
  footer .link-Box .en-link {
    font-size: clamp(0.938rem, 0.808rem + 0.27vw, 1.063rem);
  }
  footer .link-Box .link li a {
    font-size: clamp(0.75rem, 0.621rem + 0.27vw, 0.875rem);
  }
  footer .link-Box .link li a::before {
    font-size: clamp(0.75rem, 0.621rem + 0.27vw, 0.875rem);
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1100px)
======================================== */
@media screen and (min-width:768px) and (max-width:1100px) {
  footer .footer-Box {gap: 2.828vw;grid-template-columns: 20.9% 1fr;}
  footer .footer-left .logo img {
  }
  footer .link-Box .link li a {
    font-size: clamp(0.625rem, 0.25rem + 0.78vw, 0.875rem);
  }
  footer .link-Box .link li a::before {
    font-size: clamp(0.625rem, 0.25rem + 0.78vw, 0.875rem);
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1000px)
======================================== */
@media screen and (min-width:768px) and (max-width:1000px) {
  footer .footer-link .inner .link img {
    width: 100%;
    height: auto;
  }
  footer .footer-bottom .link {
    gap: 4.9vw;
    padding: 0 2vw 0 0;
  }
  footer .footer-bottom .link a {
    font-size: 1.4vw;
  }
  footer .footer-bottom .link a::after {
    width: 1.4vw;
    height: 1.5vw;
    right: -2vw;
  }
  .copyright {
    font-size: 1.4vw;
    padding: 2vw 0px;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1350px)
======================================== */
@media screen and (min-width:768px) and (max-width:1350px) {
  #end-contact {
    padding: 8.889vw 0 5.778vw;
  }
  #end-contact .inner {
    width: 94.815vw;
    margin-inline: auto;
  }
  #end-contact .upper {
    grid-template-columns: 33.04% 1fr;
    gap: 9.037vw;
    margin-bottom: 3.778vw;
  }
  #end-contact .en-ttl {margin: 0 0 0.667vw 0.296vw;}
  #end-contact .en-ttl img {
    width: 31.037vw ;
  }
  #end-contact h2 {
    font-size: 1.778vw;
    margin: 0 0 0 0.667vw;
  }
  #end-contact .tel-box {
    display: grid;
    grid-template-columns: 47.9% 1fr;
    gap: 2.296vw;
    padding: 0 0 0.889vw;
  }
  #end-contact .tel-box .tel img {
    width: 25.333vw ;
  }
  #end-contact .tel-box .txt p {
    font-size: clamp(0.75rem, 0.09rem + 1.37vw, 1.25rem);
  }
  #end-contact .tel-box .txt span {
    font-size: clamp(0.625rem, 0.295rem + 0.69vw, 0.875rem);
  }
  #end-contact .link li::after {
    bottom: -6.667vw;
    width: 53.333vw;
    height: 16.296vw;
  }
  #end-contact .link li a {
    padding: 4.444vw 0 6.148vw;
  }
  #end-contact .link li .icon {
    margin-bottom: 0.074vw;
  }
  #end-contact .link li .ttl {
    margin-bottom: 1.481vw;
  }
  #end-contact .link li .small {
    margin: 0.667vw 0 0;
  }
}

@media screen and (min-width:768px) and (max-width:1919px) {
  #g-nav {
    top: 21.73vw;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1440px)
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
/* g-nav
-------------------------------------*/
#g-nav {
  /* top: 28.958vw; */
  left: 5.486vw;
}
#g-nav .navi-inner {
  gap: 0.625vw;
}
#g-nav li.list span,
#g-nav li.list a {
  font-size: 0.972vw;
}
#g-nav li.list a::before {
  left: -1.042vw;
  font-size: 0.972vw;
}
#g-nav li.list span::before {
  left: -1.042vw;
  font-size: 0.972vw;
}
#g-nav .dropmenu li.list ul.sub {
  top: 16.042vw;
  width: 18.056vw;
}
#g-nav .dropmenu li.list ul li a {
  width: 18.056vw;
  padding: 0.069vw 0 0.139vw 2.431vw;
  margin-bottom: 0.069vw;
}
#g-nav li.list .sub a::before {
  font-size: 0.972vw;
  left: 1.458vw;
}


}

/* ========================================
@media screen and (min-width:768px) and (max-width:1280px)
======================================== */
@media screen and (min-width:768px) and (max-width:1280px) {
  /* link
  -------------------------------------*/
  #link  .list img {
      width: 100%;
      height: auto;
  }
  .service .service-group img {
      width: 26.563vw;
      height: auto;
  }
  }
  
/* ========================================
@media screen and (min-width:768px) and (max-width:1000px)
======================================== */
@media screen and (min-width:768px) and (max-width:1000px) {
  .flow .list li {
    padding: 2.6vw 8vw 1.6vw;
  }
  .flow .list li h3 {
    font-size: clamp(1.25rem, -0.819rem + 4.31vw, 1.875rem);
  }
  .flow .list li img {
      width: 100%;
      height: auto;
  }
}


/* ========================================
   @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;
  background: #F2F2F2;
  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;
}
.fix-pagetop {
  display: none;
}

/* sp-header
-------------------------------------*/
.sp-header {
    padding: 4.5vw 3vw;
}
.sp-header .h-logo img {
  height: auto;
  width: 37.2vw;
}
.sp-header .h-menu {
  position: fixed;
  top: 2.5vw;
  right: 2.5vw;
  z-index: 97;
}
.sp-header .h-menu img {
  height: auto;
  width: 14.494vw;
}

/* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {
  background: #262626;
  padding: 4.5vw 3vw;
}
nav#sp-global-nav .h-logo img {
  height: auto;
  width: 37.2vw;
}
nav#sp-global-nav {
  font-size: 3.8vw;
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #262626;
  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 {
  height: auto;
  width: 11.6vw;
}

nav#sp-global-nav .open-color-Box {
  padding: 10.5vw 0 20vw;
  width: 89.4vw;
  margin-inline: auto;
}

nav#sp-global-nav .open-color-Box .contact-box {
  border: 0.2vw solid #707070;
  margin-bottom: 14.5vw;
}
nav#sp-global-nav .open-color-Box .contact-box a {
  text-decoration: none;
  padding: 5.5vw 0 6.8vw;
  display: block;
}
nav#sp-global-nav .open-color-Box .contact-box .txt {
  font-size:4.348vw;
  font-weight: 500;
  line-height: 1.6111;
  letter-spacing: 0.11em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 3.5vw;
}
nav#sp-global-nav .open-color-Box .contact-box .txt02 {
  font-size:4.589vw;
  font-weight: 500;
  line-height: 1.2105;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
}
nav#sp-global-nav .home-link {
  margin-bottom: 12.8vw;
}
nav#sp-global-nav .home-link a {
  font-weight: 400;
  font-size:3.865vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  padding: 4.7vw 4.7vw 5.6vw;
  display: block;
  border-bottom: 0.2vw solid #9A9A9A;
  border-top: 0.2vw solid #9A9A9A;
}
nav#sp-global-nav .link-list {
  margin-bottom: 12.8vw;
}
nav#sp-global-nav .link-list .ttl{
  font-weight: 400;
  font-size:4.348vw;
  letter-spacing: 0.05em;
  line-height: 2.11111;
  color: #fff;
  border-bottom: 0.2vw solid #9A9A9A;
  padding: 0 0 4.5vw;
}
nav#sp-global-nav .link-list .link a{
  font-weight: 400;
  font-size:3.865vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  padding: 4.7vw 4.7vw 5.2vw;
  display: block;
  border-bottom: 0.2vw solid #9A9A9A;
  position: relative;
}
nav#sp-global-nav .link-list .link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.7vw;
  transform: translateY(-50%);
  background: url(../images/common/sp-open-link-arrow.svg)no-repeat;
  background-size: contain;
  width: 2.175vw;
  height: 3.143vw;
}
nav#sp-global-nav .tel-box {padding: 6vw 0 0;margin-bottom: 17.5vw;}
nav#sp-global-nav .tel-box a {
  text-decoration: none;
}
nav#sp-global-nav .tel-box .ttl {
  font-weight: 500;
  font-size:4.348vw;
  letter-spacing: 0.11em;
  line-height: 1.611111;
  text-align: center;
  color: #fff;
  margin-bottom: 5.5vw;
}
nav#sp-global-nav .tel-box .open {
  font-weight: 400;
  font-size:3.14vw;
  letter-spacing: 0.09em;
  line-height: 2.461538;
  text-align: center;
  color: #fff;
  margin-bottom: 1vw;
}
nav#sp-global-nav .tel-box .tel {text-align: center;padding: 0 2.2vw 0 0vw;margin-bottom: 3.5vw;}
nav#sp-global-nav .tel-box .txt {
  font-weight: 400;
  font-size:3.14vw;
  letter-spacing: 0.09em;
  line-height: 2.461538;
  text-align: center;
  color: #fff;
}
nav#sp-global-nav .bottom-logo {
  text-align: center;
  margin-bottom: 8.5vw;
}
nav#sp-global-nav .bottom-logo img {
  height: auto;
  width: 66.426vw;
}
nav#sp-global-nav .company-info {width: 66.4vw;margin-inline: auto;}
nav#sp-global-nav .company-info .name{
  font-weight: 400;
  font-size:4.348vw;
  letter-spacing: 0.12em;
  line-height: 2;
  color: #fff;
  margin-bottom: 2.9vw;
}
nav#sp-global-nav .company-info .info{
  font-weight: 400;
  font-size:3.382vw;
  letter-spacing: 0.06em;
  line-height: 1.8571428;
  color: #fff; 
}

  /* 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 .btn01 img{
  width: 14.495vw;
}
.sp-fix-list .btn02 img,
.sp-fix-list .btn03 img{
  width: 42.76vw;
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: url(../images/common/end-contact_sp.jpg)no-repeat top center/contain, #fff;
  color: #FFFFFF;
}
#end-contact .inner {
  width: 91.79vw;
  margin-inline: auto;
  padding: 17.5vw 0 0;
}
#end-contact .upper {
  display: grid;
  margin-bottom: 10vw;
}
#end-contact .ttl-box {margin-bottom: 11.8vw;}
#end-contact .en-ttl {
    text-align: center;
    margin-bottom: 2vw;
}
#end-contact .en-ttl img {
    width: 63.77vw;
}
#end-contact h2 {
  font-size:4.831vw;
  line-height: 2.2916666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
#end-contact .tel-box {
  display: contents;
}
#end-contact .tel-box .txt {
  display: contents;
}
#end-contact .tel-box .txt p {
  font-size:3.865vw;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  order: 1;
  text-align: center;
  margin-bottom: 4.2vw;
}
#end-contact .tel-box .txt span {
  font-size:3.382vw;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 400;
  order: 3;
  text-align: center;
}
#end-contact .tel-box a {
  order: 2;
  margin-bottom: 2.2vw;
}
#end-contact .tel-box .tel {
    text-align: center;
}
#end-contact .link {
  display: grid;
}
#end-contact .link .satei a{
  background: #D75B43;
}
#end-contact .link .mail a{
  background: #333333;
}
#end-contact .link li {
  text-align: center;
  position: relative;
  z-index: 3;
}
#end-contact .link li a {
  color: #FFFFFF;
  z-index: 2;
  position: relative;
  display: block;
  padding: 6vw 0 9vw;
}
#end-contact .link li .icon {
  margin-bottom: -0.5vw;
}
#end-contact .link li .icon img {width: 16.91vw;}
#end-contact .link li .ttl {
  font-size:5.797vw;
  line-height: 1.775;
  letter-spacing: 0.14em;
  font-weight: 700;
}
#end-contact .link li .small {
  font-size:3.865vw;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
}

/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 14.2vw 0 9.2vw;
  background: #fff;
}
.sp-page-top a img {
  width: 77.295vw;
  height: auto;
}

/* footer
-------------------------------------*/
footer {
  width: 100%;
  max-width: 100vw;
  margin-inline: auto;
  background: #FFFFFF;
}
footer .footer-Box {
  display: grid;
  padding: 4.2vw 0 1vw;
  text-align: center;
  margin-bottom: 8vw;
}
footer .footer-left .logo {
  margin-bottom: 6.8vw;
}
footer .footer-left .logo img {
    width: 62.805vw;
}
footer .footer-left .address {
  font-size:3.382vw;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
}
footer .footer-right {
  display: none;
}
footer .footer-link {
  background: #dbdcdc;
  border: 0.2vw solid #c8c8c8;
  width: 94.205vw;
  margin-inline: auto;
}
footer .footer-link .inner {
  padding: 9.5vw 4.5vw;
  margin-inline: auto;
  display: grid;
  gap: 1vw;
}
footer .footer-link .inner .name {
  font-weight: bold;
  font-size:5.314vw;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin-bottom: 4vw;
}
footer .footer-link .inner .name span{
  font-weight: 600;
  font-size:2.898vw;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  display: block;
  margin-bottom: 2vw;
}
footer .footer-link .inner .link {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.6vw;
}
footer .footer-link .inner .link img {
  width: 43vw;
}
footer .footer-bottom {
  display: grid;
  padding: 4vw 0 25vw;
  width: 94.205vw;
  margin-inline: auto;
  gap: 22.2vw;
}
footer .footer-bottom .link {
  display: grid;
  gap: 1vw;
  order: 1;
}
footer .footer-bottom .link a {
  font-weight: 500;
  font-size:3.382vw;
  letter-spacing: 0.05em;
  line-height: 1.8571428;
  text-align: left;
  color: #747474;
  position: relative;
}
footer .footer-bottom .link a::after {
  content: "";
  position: absolute;
  background: url(../images/common/open-icon.svg)no-repeat;
  background-size: contain;
  width: 3.385vw;
  height: 3.625vw;
  top: 50%;
  right: -4.5vw;
  transform: translateY(-50%);
}
.copyright {
  font-size:2.898vw;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1vw 0;
  display: block;
}


/* copyright
-------------------------------------*/
.copyright {
  font-size: 2.898vw;
  line-height: 1.6;
  display: block;
  text-align: center;
  order: 2;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.main-ttl-wrap {
  display: grid;
  gap: 0;
  align-items: center;
  width: 90.205vw;
  margin-inline: auto;
  padding: 3.5vw 0 9vw;
}
.main-ttl-wrap .en-ttl {
  font-weight: 600;
  font-size:12.077vw;
  color: #f2f2f2;
  text-shadow: 0.2vw 0.2vw 0 #1A1A1A,
 -0.2vw 0.2vw 0 #1A1A1A,
 0.2vw -0.2vw 0 #1A1A1A,
 -0.2vw -0.2vw 0 #1A1A1A,
 0.2vw 0 0 #1A1A1A,
 -0.2vw 0 0 #1A1A1A,
  0 0.2vw 0 #1A1A1A,
  0 -0.2vw 0 #1A1A1A;
  letter-spacing: 0;
}
.main-ttl-wrap .main-ttl {
  font-weight: bold;
  font-size:4.348vw;
  letter-spacing: 0.02em;
  line-height: 1.708333;
  margin: -2.9vw 0 0;
}

/* .seo_bread_list {
  width: 100%;
  padding: 2vw 2vw 3.5vw;
  margin: 0 auto;
  font-size: 3.2vw;
  color: #666;
  line-height: 1.6;
} */
.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-mon {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  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;
}


/* link
-------------------------------------*/
#link  {
  margin-bottom: 3.7vw;
}
#link  .sec-ttl {
  font-weight: 800;
  font-size:7.246vw;
  letter-spacing: 0.1em;
  line-height: 1.6666;
  text-align: center;
  color: #141414;
  margin-bottom: 6.5vw;
}
#link .inner{
  background: #FFFFFF;
  padding: 5vw 0 6vw;
}

#link .list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 6vw;
  width: 89.375vw;
  margin-inline: auto;
}
#link .list img {
  margin-bottom: 4.2vw;
}
#link .list .txt {
  font-weight: 500;
  font-size:3.382vw;
  letter-spacing: 0.05em;
  line-height: 1.8571428;
  color: #141414;
}


/* service
-------------------------------------*/
.service {
  margin-bottom: 19.5vw;
}
.service .subt{
  font-weight: 800;
  font-size:4.831vw;
  letter-spacing: 0.1em;
  line-height: 3;
  text-align: center;
  color: #141414;
  margin-bottom: -2vw;
}
.service .sec-ttl{
  font-weight: 800;
  font-size:7.246vw;
  letter-spacing: 0.1em;
  line-height: 1.6666;
  text-align: center;
  color: #141414;
  margin-bottom: 6.5vw;
}
.service .inner {
  background: #FFFFFF;
  padding: 6vw 0 2vw;
}
.service .inner .enttl {
  font-weight: 500;
  font-size:7.246vw;
  letter-spacing: 0.05em;
  text-align: center;
  color: #d75b43;
  margin-bottom: -1vw;
}
.service .inner h3 {
  font-weight: 800;
  font-size:3.865vw;
  letter-spacing: 0.1em;
  text-align: center;
  color: #141414;
  margin-bottom: 7vw;
}
.service .service-list {
  display: grid;
  gap: 4.7vw;
  margin-bottom: 5.5vw;
  width: 89.375vw;
  margin-inline: auto;
}
.service .service-group {
  text-align: center;
  position: relative;
  margin-bottom: 4.8vw;
}
.service .service-group::before {
  content: "";
  position: absolute;
  top: 4vw;
  left: 0;
  width: 100%;
  height: 0.2vw;
  background: #D75B43;
}
.service .service-group ul {
  display: grid;
  gap: 4.9vw;
}
.service .group-ttl {
  font-weight: 800;
  font-size:3.865vw;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background: #d75b43;
  display: inline-block;
  width: 38.7vw;
  padding: 1vw 0px;
  margin-bottom: 4.7vw;
  position: relative;
}

/*  flow
-------------------------------------*/
.flow {
  background: #FFFFFF;
}
.flow .inner{
  width: 89.375vw;
  margin-inline: auto;
  padding: 12vw 0;
}
.flow .subt {
  font-weight: 600;
  font-size:4.348vw;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: url(../images/assessment/flow-subt-bg_sp.png)no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  top: -13vw;
  padding: 4.7vw 17vw 10vw;
  margin-bottom: -13vw;
  left: 50%;
  transform: translateX(-50%);
}
.flow .enttl{
  font-weight: 600;
  font-size:3.865vw;
  letter-spacing: 0.05em;
  line-height: 1.125;
  text-align: center;
  color: #d75b43;
  margin-bottom: -2vw;
}
.flow h2{
  font-weight: 900;
  font-size:7.246vw;
  letter-spacing: 0.1em;
  line-height: 2.6;
  text-align: center;
  margin-bottom: 3vw;
}
.flow .list{
  display: grid;
  gap: 4.65vw;
}
.flow .list li{
  background: #fff;
  border: 0.5vw solid #d75b43;
  padding: 4vw 4.5vw;
  display: grid;
  gap: 1vw;
  position: relative;
  border-radius: 3vw;
}
.flow .list li:not(:last-child)::after {
  position: absolute;
  content: "";
  background: url(../images/page-common/flow-line_sp.png)no-repeat;
  background-size: auto;
  width: 1vw;
  bottom: -10.5vw;
  left: 50%;
  transform: translateX(-50%);
  height: 10vw;
}
.flow .list li .left {
  position: absolute;
  top: 4.5vw;
  left: 4vw;
}
.flow .list li:nth-of-type(2) .left {
  left: 7vw;
}
.flow .list li:nth-of-type(3) .left {
  left: 4vw;
  top: 9vw;
}
.flow .list li:nth-of-type(4) .left {left: 9.5vw;top: 5vw;}
.flow .list li:nth-of-type(5) .left {top: 6.5vw;left: 7vw;}
.flow .list li:nth-of-type(6) .left {left: 7.5vw;top: 5.5vw;}
.flow .list li img {width: 24.15vw;}
.flow .list li:nth-of-type(2) img {
  width: 19.44vw;
}
.flow .list li:nth-of-type(3) img {
  width: 24.15vw;
}
.flow .list li:nth-of-type(4) img {
  width: 16.3vw;
}
.flow .list li:nth-of-type(5) img {
  width: 18.20vw;
}
.flow .list li:nth-of-type(6) img {
  width: 16.75vw;
}
.flow .list li .right {
  padding: 0 0 0;
}
.flow .list li .ttl-wrap {
  display: inline-block;
  margin: 0 0 0 25vw;
}
.flow .list li .num {
  border-radius: 1.25vw;
  background: #d75b43;
  font-weight: 500;
  font-size:3.382vw;
  letter-spacing: 0.02em;
  line-height: 1.4285714;
  text-align: center;
  color: #fff;
  width: 9.7vw;
  margin-bottom: 1vw;
  display: inline-block;
}
.flow .list li h3 {
  font-weight: bold;
  font-size:4.348vw;
  letter-spacing: 0.1em;
  line-height: 1.55555;
  margin-bottom: 3.5vw;
}
.flow .list li h3 span {
  font-size:3.382vw;
}
.flow .list li .txt {
  font-weight: 500;
  font-size:3.382vw;
  letter-spacing: 0.05em;
  line-height: 1.7142857;  
}


/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* 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;
  }
}