@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;
  color: #352F2D;
}

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

/* 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: 20px;
  right: 21px;
  z-index: 9999;
}

.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}

#pc-menu-open {
  display: none;
  background-color: #262322;
  background-image: url(../images/common/open_bg.png); /* 画像を指定 */
  background-position: top right -75px; /* 画像の位置を指定 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 10000;
  overflow-y: scroll;
  color: #fff;
}

#pc-menu-open .open-close-01 {
  position: absolute;
  top: 20px;
  right: 21px;
}

#pc-menu-open .open-main-Box {
  padding-block: 8.125rem 0;
  width: min(95%,84.625rem);
  margin-inline: auto;
}

#pc-menu-open .open-main-Box .links-btn {
  display: grid;
  grid-template-columns: repeat(3,minmax(0, 1fr));
  gap: 0 1.875rem;
  margin-bottom: 5.375rem;
}

#pc-menu-open .open-main-Box .links-btn .btn {

}

#pc-menu-open .open-main-Box .links-btn .btn a {
  display: block;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.icon {
  text-align: center;
  margin-bottom: -3.5rem;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.bg {
  border-radius: 10px;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.bg.line {
  background: url(../images/common/openmenu_bg01.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.bg.contact {
  background: url(../images/common/openmenu_bg02.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.bg.entry {
  background: url(../images/common/openmenu_bg03.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.bg p {
  font-size: 1.875rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding-block: 3.5rem 1rem;
}

#pc-menu-open .open-main-Box .links-btn .btn a div.bg p.contact {
  color: #352F2D;
}

#pc-menu-open .contents {
  display: grid;
  grid-template-columns: 46% 39%;
  justify-content: space-between;
}

#pc-menu-open .contents-left {

}

#pc-menu-open .contents-left .logo {
  margin-bottom: 1.5625rem;
}

#pc-menu-open .contents-left p.txt{
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

#pc-menu-open .contents-left .office {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#pc-menu-open .contents-left .office address {
  margin-bottom: 1.5rem;
}

#pc-menu-open .contents-left .office address p.office {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

#pc-menu-open .contents-left .office address p {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.04em;
}

#pc-menu-open .contents-left .map {
  position: relative;
  top: -0.5rem;
}

#pc-menu-open .contents-right {

}

#pc-menu-open .contents-right .home {

}

#pc-menu-open .contents-right .home a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

#pc-menu-open .contents-right .wrap {
  display: flex;
  gap: 0 3rem;
}

#pc-menu-open .contents-right .wrap .list {

}

#pc-menu-open .contents-right .wrap .list a {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 2.7;
  letter-spacing: 0.04em;
  padding-left: 1.8125rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

#pc-menu-open .contents-right .wrap .list a:before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 0.0625rem;
  background: #fff;
  top: 0.75rem;
  left: 0;
}


/* header
-------------------------------------*/
header {
  position: relative;
  z-index: 10;
}

.l-header .l-header__contents {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 6.1rem 0.8rem 2.3rem;
}

.l-header .l-header__contents-left {
	align-items: center;
	display: flex;
	gap: 0 1.8125rem;
}

.l-header .l-header__contents-left p.txt {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.5384615385;
}

#reason .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#business .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#architecture .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#entrepreneur .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#smallbusiness .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#recruit .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#price .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#backofficedx .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#interview .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#column .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#voice .l-header .l-header__contents-left p.txt {
  color: #fff;
}

#information .l-header .l-header__contents-left p.txt {
  color: #fff;
}

.l-header .l-header__contents-right {
	align-items: center;
	display: flex;
	gap: 0 4.8rem;
}

.l-header .l-header__contents-right div.wrap {
	align-items: center;
	display: flex;
	gap: 0 3.125rem;
}

.l-header .l-header__contents-right div p.txt {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.5384615385;
}

#reason .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#business .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#architecture .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#entrepreneur .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#smallbusiness .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#recruit .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#price .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#backofficedx .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#interview .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#column .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#voice .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

#information .l-header .l-header__contents-right div p.txt {
  color: #fff;
}

.l-header .l-header__contents-right .links {
	display: grid;
	gap: 0 0.8125rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-header .l-header__contents-right .link:nth-child(1) a {
	background: #07B53A;
	/* padding-inline: 3.0625rem; */
}

.l-header .l-header__contents-right .link:nth-child(2) a {
	background: #352F2D;
	/* padding-inline: 2.8125rem; */
}

.l-header .l-header__contents-right .link:nth-child(3) a {
	background: #00A1C2;
  /* padding-inline: 2.375rem; */
}

.l-header .l-header__contents-right .link a {
  border-radius: 1.75rem;
  color: #ffffff;
	display: block;
  width: 170px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 2.1538461538;
  padding-block: 0.875rem 0.875rem;
	text-align: center;
  white-space: nowrap;
}

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

/* footer
-------------------------------------*/
footer {
	background: #262322;
	padding-block: 7rem 2.6rem;
  width: min(100%,1920px);
  margin-inline: auto;
}

#index footer {
  padding-block: 2.6875rem;
}

footer .l-inner.l-footer {
	border-bottom: 1px solid #D1D1D1;
	margin-inline: auto;
	padding-bottom: 4.625rem;
	width: min(95%, 1540px);
}

footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	grid-template-columns: 41% 46.5%;
	justify-content: space-between;
}

footer .l-footer__contents-left .logo {
	margin-bottom: 1.5625rem;
}

footer .l-footer__contents-left .txt {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.25;
	margin-bottom: 2.875rem;
}

footer .l-footer__contents-left .office {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2.25rem;
}

footer .l-footer__contents-left .office address p {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.875;
}

footer .l-footer__contents-left .office address p.office {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
	margin-bottom: 0.5rem;
}

footer .l-footer__contents-left .office address p a span {
  color: #fff;
} 

footer .l-footer__contents-right {
	position:relative;
	top: 1rem;
}

footer .l-footer__contents-right .home {
	margin-bottom: 1.5rem;
}

footer .l-footer__contents-right .home a {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2.5625;
}

footer .l-footer__contents-right .wrap {
	display: flex;
	gap: 0 3.1875rem;
}

footer .l-footer__contents-right .wrap .list li a {
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2.7333333333;
	padding-left: 1.8125rem;
	position: relative;
}

footer .l-footer__contents-right .wrap .list li a:before {
	background: #ffffff;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
}

.l-footer__bottom {
	background: #262322;
	padding-block: 0 5.375rem;
  width: min(100%,1920px);
  margin-inline: auto;
}

.l-footer__bottom .l-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	width: min(95%, 1540px);
}

.l-footer__bottom .copyright {
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.4285714286;
}

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

.p-bnr .l-inner.l-bnr {
	padding-block: 8.9375rem 6.1875rem;
}

.p-bnr .p-bnr__en {
	margin-bottom: 5.5rem;
	text-align: center;
}

.p-bnr .links-btn {
	display: grid;
	gap: 0 1.5625rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 4.9375rem;
	margin-inline: auto;
	width: min(90%, 1520px);
}

.p-bnr .links-btn .btn a {
	border-radius: 10px;
	display: block;
}

.p-bnr .links-btn .btn a:hover {
  text-decoration: none;
}

.p-bnr .links-btn .btn a .icon {
	margin-bottom: -50px;
	text-align: center;
}

.p-bnr .links-btn .btn a .bg {
	border-radius: 10px;
	padding-block: 5.6rem 1.8rem;
}

.p-bnr .links-btn .btn a .bg.line {
	background: url(../images/common/bnr_bg01.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

.p-bnr .links-btn .btn a .bg.contact {
	background: url(../images/common/bnr_bg02.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

.p-bnr .links-btn .btn a .bg.contact p {
	color: #352F2D;
}

.p-bnr .links-btn .btn a .bg.entry {
	background: url(../images/common/bnr_bg03.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

.p-bnr .links-btn .btn a .bg p {
	color: #ffffff;
	font-size: 2.375rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.3421052632;
	text-align: center;
}

.p-bnr .links-btn .btn a .bg p.bottom {
	font-size: 1.0625rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.6470588235;
	margin-block: 1.4375rem 0;
}

.p-bnr .p-bnr__tel {
	align-items: flex-end;
	display: flex;
	gap: 0 2.125rem;
	justify-content: center;
}

.p-bnr .p-bnr__tel address p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  display: flex;
  white-space: nowrap;
}

/* bnr02
-------------------------------------*/
.p-bnr02 {
}

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

.p-bnr02 .p-bnr02__contents {
  background: #fff;
  padding-block: 2.6rem 0.3rem;
}

.p-bnr02 .p-bnr02__contents p.ttl {
  text-align: center;
  color: #00388D;
  font-size: 28px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 2.68rem;  
}

.p-bnr02 .p-bnr02__contents p {
  text-align: center;
  margin-bottom: 1.75rem;
}

.p-bnr02 .p-bnr02__contents p.txt {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 3.75rem;
  font-weight: 500;
}

.p-bnr02 .p-bnr02__contents .wrap {
  display: flex;
  gap: 0 1.6rem;
  justify-content: center;
}

.p-bnr02 .p-bnr02__contents .wrap .logo {
}

.p-bnr02 .p-bnr02__contents .wrap p {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  font-weight: 500;
}


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

/* common
-------------------------------------*/
main {
	margin-inline: auto;
	width: min(100%, 1920px);
}
.seo_bread_list {
  width: 1200px;
  margin: 0 auto 20px;
}
.seo_bread_list li {
  margin-right: 20px;
  float: left;
}
.seo_bread_list li::after {
  content: " >";
}
.seo_bread_list li:last-child::after {
  content: "";
}

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

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

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

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

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

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

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

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:1600px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1600px) {
.l-header .l-header__contents-right {
  gap: 0 1.8rem;
}

.l-header .l-header__contents-left {
  gap: 0 0rem;
}

.l-header .l-header__contents-right div.wrap {
  gap: 0 1rem;
  align-items: flex-start;
}

.l-header .l-header__contents-right div p.txt {
  font-size: 10px;
  white-space: nowrap;
}

.l-header .l-header__contents-left p.txt {
  font-size: 10px;
  white-space: nowrap;
}

.l-header .l-header__contents-left div.logo img {
  width: 90%;
  vertical-align: middle;
}

.l-header .l-header__contents-right div.wrap div.img {
  text-align: right;
}

.l-header .l-header__contents-right div.wrap div.img img {
  width: 90%;
  vertical-align: middle;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1400px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1400px) {
#pc-menu-open .contents {
  grid-template-columns: 50% 42%;
}

.l-header .l-header__contents-right .link:nth-child(1) a,
.l-header .l-header__contents-right .link:nth-child(2) a,
.l-header .l-header__contents-right .link:nth-child(3) a {
	width: 12.1vw;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1300px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1300px) {
footer .l-footer__contents {
  grid-template-columns: 41% 52%;
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1250px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1250px) {
.l-header .l-header__contents-right {
  gap: 0 0.5rem;
}
}

/* ========================================
  @media screen and (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
    font-size: calc(16 / 1200 * 100vw);
  }

  /* body {
    overflow: visible;
  } */

  #pc-menu-open .contents {
    grid-template-columns: 50% 47%;
  }
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1100px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1100px) {
.l-header .l-header__contents-right {
  gap: 0 1rem;
}

.l-header .l-header__contents-right .link:nth-child(1) a,
.l-header .l-header__contents-right .link:nth-child(2) a,
.l-header .l-header__contents-right .link:nth-child(3) a {
	width: 10.1vw;
}

.l-header .l-header__contents {
  padding: 1.5rem 8.1rem 0.8rem 1rem;
}

.l-header .l-header__contents-right .links {
  gap: 0 1.8rem;
}

}


/* ========================================
@media screen and (min-width:768px) and ( max-width:950px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:950px) {
.p-bnr .p-bnr__tel {
  width: 85%;
  margin-inline: auto;
}

.p-bnr .p-bnr__tel .tel img {
  width: 90%;
}

.p-bnr .p-bnr__tel {
  gap: 0;
}

footer .l-footer__contents-left .logo img {
  width: 80%;
}

.l-header .l-header__contents-right .link:nth-child(1) a,
.l-header .l-header__contents-right .link:nth-child(2) a,
.l-header .l-header__contents-right .link:nth-child(3) a {
	width: 8.5vw;
  font-size: 8px;
}

.l-header .l-header__contents {
  padding: 1.5rem 10.1rem 0.8rem 1rem;
}

.l-header .l-header__contents-right .links {
  gap: 0 2.5rem;
}


}

/* ========================================
@media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #352F2D;
}
.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;
}

/* sp-header
-------------------------------------*/
.sp-header {
  padding-block: 4.106vw 4.831vw;
  padding-inline: 4.106vw 0;
}

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

.sp-header .h-menu {
  position: fixed;
  top: 2.415vw;
  right: 2.174vw;
  z-index: 997;
}

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

  /* sp-global-nav
-------------------------------------*/
nav#sp-global-nav {

}

nav#sp-global-nav .h-logo {
  margin-bottom: 13.527vw;
  padding-block: 4.106vw 0px;
  padding-inline: 4.106vw 0;
}

nav#sp-global-nav .h-logo a img {
  width: 35.024vw;
  height: auto;
}

nav#sp-global-nav {
  z-index: 999;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
}

nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 2.415vw;
  right: 2.174vw;
  z-index: 998;
}

nav#sp-global-nav .open-close-01 img {
  width: 10.145vw;
  height: auto;
}

nav#sp-global-nav .open-color-Box {
  width: min(95%,89.3vw);
  margin-inline: auto;
}

nav#sp-global-nav .open-color-Box .links-btn {
  display: grid;
  grid-template-columns: repeat(3,minmax(0, 1fr));
  gap: 0 2.415vw;
  margin-bottom: 11.836vw;
}

nav#sp-global-nav .open-color-Box .links-btn .btn {

}

nav#sp-global-nav .open-color-Box .links-btn .btn a {
  display: block;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.icon {
  text-align: center;
  margin-bottom: -9.179vw;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.icon img {
  width: 13.527vw;
  height: auto;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.bg {
  border-radius: 4px;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.bg.line {
  background: url(../images/common/openmenu_bg01_sp.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.bg.contact {
    background: url(../images/common/openmenu_bg02_sp.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.bg.entry {
  background: url(../images/common/openmenu_bg03_sp.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.bg p {
  font-size: 4.348vw;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  padding-block: 11.111vw 3.14vw;
}

nav#sp-global-nav .open-color-Box .links-btn .btn a div.bg p.contact {
  color: #352F2D;
}

nav#sp-global-nav .open-color-Box .lists {
  margin-bottom: 17.15vw;
}

nav#sp-global-nav .open-color-Box .list a {
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  border-bottom: 0.2vw solid #fff;
  font-size: 4.348vw;
  line-height: 5;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-left: 8.937vw;
  position: relative;
}

nav#sp-global-nav .open-color-Box .list a:before {
  position: absolute;
  content: "";
  width: 5.314vw;
  height: 0.242vw;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

nav#sp-global-nav .open-color-Box .tel-link {
  margin-bottom: 4.589vw;
}

nav#sp-global-nav .open-color-Box address {
  padding-block: 0 34.783vw;
}

nav#sp-global-nav .open-color-Box address p {
  color: #fff;
  font-size: 3.382vw;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}

/* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 996;
  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 {
}

/* end-contact
-------------------------------------*/
.p-bnr {
  background: url(../images/common/bnr_bg_sp.jpg) no-repeat top center/cover;
}

.p-bnr .l-inner.l-bnr {
  padding-block: 24.155vw 12.043vw;
}

.p-bnr .p-bnr__en {
  margin-bottom: 13.353vw;
  text-align: center;
  width: 49.275vw;
  margin-inline: auto;
}

.p-bnr .links-btn {
  display: grid;
  gap: 4.831vw 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 12.077vw;
  margin-inline: auto;
  width: min(95%, 82.1vw);
}

.p-bnr .links-btn .btn a {
  border-radius: 2.415vw;
  display: block;
}

.p-bnr .links-btn .btn a:hover {
  text-decoration: none;
}

.p-bnr .links-btn .btn a .icon {
  margin-bottom: -7.971vw;
  text-align: center;
}

.p-bnr .links-btn .btn a .icon img {
  height: auto;
  width: 15.942vw;
}

.p-bnr .links-btn .btn a .bg {
  border-radius: 2.415vw;
  padding-block: 11.493vw 5.005vw;
}

.p-bnr .links-btn .btn a .bg.line {
  background: url(../images/common/bnr_bg01_sp.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

.p-bnr .links-btn .btn a .bg.contact {
  background: url(../images/common/bnr_bg02_sp.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

.p-bnr .links-btn .btn a .bg.contact p {
  color: #352F2D;
}

.p-bnr .links-btn .btn a .bg.entry {
  background: url(../images/common/bnr_bg03_sp.png) no-repeat top center / cover;
  width: 100%;
  margin-inline: auto;
}

.p-bnr .links-btn .btn a .bg p {
  color: #ffffff;
  font-size: 6.763vw;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8214285714;
  text-align: center;
  margin-bottom: -3vw;
}

.p-bnr .links-btn .btn a .bg p.bottom {
  font-size: 3.382vw;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.7142857143;
  margin-block: 5.556vw 0;
}

.p-bnr .p-bnr__tel {
  display: grid;
  gap: 4.797vw 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-inline: auto;
  width: min(95%, 89.1vw);
}

.p-bnr .p-bnr__tel address p {
  color: #ffffff;
  font-size: 3.382vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8571428571;
  text-align: center;
}

/* bnr02
-------------------------------------*/
.p-bnr02 {

}

.p-bnr02 .l-inner.l-bnr02 {
  width: min(95%, 94.2vw);
  margin-inline: auto;
}

.p-bnr02 .p-bnr02__contents {
  background: #fff;
  padding-block: 9.6vw 7.3vw;
}

.p-bnr02 .p-bnr02__contents p.ttl {
  text-align: center;
  color: #00388D;
  font-size: 4.831vw;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 10.68vw;
}

.p-bnr02 .p-bnr02__contents p {
  text-align: center;
  margin-bottom: 4.75vw;
}

.p-bnr02 .p-bnr02__contents p.txt {
  font-size: 3.382vw;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 11.75vw;
}

.p-bnr02 .p-bnr02__contents .wrap {
  display: grid;
  grid-template-columns: repeat(1,minmax(0, 1fr));
  gap: 2vw 0;
	place-items: center;
}

.p-bnr02 .p-bnr02__contents .wrap .logo {
}

.p-bnr02 .p-bnr02__contents .wrap p {
  font-size: 2.899vw;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}


/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: right;
  display: block;
}
.sp-page-top a img {

}

/* footer
-------------------------------------*/
footer {
	background: #262322;
	padding-block: 18.797vw 5.797vw;
}

#index footer {
  padding-bottom: 5.797vw;
}

footer .l-inner.l-footer {
	border-bottom: 0.2vw solid #D1D1D1;
	margin-inline: auto;
	padding-bottom: 3.865vw;
  width: min(95%,89.3vw);
  margin-inline: auto;
}

footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
  width: min(95%,82.1vw);
  margin-inline: auto;
}

footer .l-footer__contents-left .logo {
	margin-bottom: 4.106vw;
}

footer .l-footer__contents-left .logo img {
	height: auto;
	width: 57.005vw;
}

footer .l-footer__contents-left .txt {
	font-size: 3.623vw;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.3333333333;
	margin-bottom: 11.077vw;
}

footer .l-footer__contents-left .office {
	display: grid;
	gap: 2.589vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 10.87vw;
}

footer .l-footer__contents-left .office address p {
	font-size: 3.382vw;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.6428571429;
}

footer .l-footer__contents-left .office address p.office {
	font-size: 4.348vw;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.1111111111;
	margin-bottom: 3.14vw;
}

footer .l-footer__contents-left .office address p a span {
  color: #fff;
}

.l-footer__bottom {
	background: #262322;
	padding-block: 0 24.812vw;
}

.l-footer__bottom .l-inner {
	display: block;
	margin-inline: auto;
	width: min(95%, 89.3vw);
}

.l-footer__bottom .copyright {
	color: #ffffff;
	font-size: 3.382vw;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.7142857143;
}

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

}

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

  /* common
-------------------------------------*/
.seo_bread_list {
  width: 100%;
  padding: 2vw 2vw 3.5vw;
  margin: 0 auto;
  font-size: 3.2vw;
  line-height: 1.6;
}
/*.seo_bread_list{display: none;}*/
.seo_bread_list a {
}
.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;
}

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

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

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

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