@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;
  color: #1A1A1A;
  width: min(100%,1920px);
  margin-inline: auto;
}
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;
}


@keyframes scroll-left {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
    
}


/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

/*pc・タブレットcss*/
/*pc_defaultset*/
.pc {
  display: block !important;
}
/*pcのみ表示ブロック*/
.pc2 {
  display: inline-block !important;
}
/*pcのみ表示ブロック*/
.sp,
.sp2 {
  display: none !important;
}
/*スマホのみ表示ブロック*/
.h_menu {
  display: none;
}
/*スマホ用ヘッダ*/
.sp-header {
  display: none;
}
/*スマホ用メニュー*/
#sp-global-nav {
  display: none;
}
/*スマホ用メニュー*/
.sp-fix-list {
  display: none;
}
/* Antialiasing ※任意　*/

/* header
-------------------------------------*/
header {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}

.l-header .l-header__inner {
	display: flex;
	justify-content: space-between;
	padding-inline: 22px 100px;
}

.l-header .l-header__logo a {
	align-items: center;
	display: flex;
	padding-block: 19px 0;
}

.l-header .l-header__logo a img {
	margin-right: 18px;
	position: relative;
	top: -4px;
}

.l-header .l-header__logo a .l-header__logo-caption {
	background: #E94A08;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.5;
	margin-right: 32px;
	padding: 5px 12px;
	width: -moz-fit-content;
	width: fit-content;
}

.l-header .l-header__logo a h1 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.1666666667;
}

.l-header .l-header__logo a:hover {
	text-decoration: none;
}

.l-header .l-header__nav {
	padding-block: 24px 0;
}

.l-header .l-header__nav ul {
	align-items: center;
	display: flex;
	gap: 0 10px;
}

.l-header .l-header__nav ul li a {
	border-radius: 20px;
	color: #ffffff;
	font-size: 13px;
    font-size: clamp(0.625rem, 0.5rem + 0.26vw, 0.813rem);
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 2.9230769231;
}

.l-header .l-header__nav ul li.recruit a {
	background: #0088D0;
	padding: 10px 34px;
}

.l-header .l-header__nav ul li.career a {
	background: #39B54A;
	padding: 10px 20px;
}

/* 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: 24px;
  right: 20px;
  z-index: 99;
}

.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}

#pc-menu-open {
  display: none;
  background: #EBEBE4;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
  overflow-y: scroll;
}

#pc-menu-open .open-close-01 {
  position: absolute;
  top: 24px;
  right: 20px;
}

#pc-menu-open {
	background-color: #EBEBE4; /* 背景色を指定 */
	background-image: url(../images/common/openmenu_bg.png); /* 画像を指定 */
	background-position: bottom right; /* 画像の位置を指定 */
	background-repeat: no-repeat; /* 画像を繰り返さない */
	background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
	padding-block: 60px 0;
}

#pc-menu-open .open-main-Box-nav {
	margin-bottom: 60px;
	margin-inline: auto;
	width: min(95%, 1174px);
}

#pc-menu-open .open-main-Box-nav ul {
	display: grid;
	gap: 0 6px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

#pc-menu-open .open-main-Box-nav ul li a {
	background: url(../images/common/openmenu_bg02.png) no-repeat top center/auto;
	display: block;
	height: 260px;
	margin-inline: auto;
	padding-block: 25px 0;
	text-align: center;
	width: 100%;
}

#pc-menu-open .open-main-Box-nav ul li a img {
	margin-inline: auto;
}

#pc-menu-open .open-main-Box-nav ul li a p {
	font-size: 19px;
    font-size: clamp(0.75rem, 0.458rem + 0.61vw, 1.188rem);
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.3684210526;
	margin-block: 15px 0;
}

#pc-menu-open .open-main-Box-nav ul li a p span {
	color: #E94A08;
}

#pc-menu-open .open-main-Box-con-top {
	border-bottom: 1px solid #1A1A1A;
	display: flex;
	justify-content: space-between;
	margin-bottom: 28px;
	margin-inline: auto;
	padding-block: 0 18px;
	width: min(95%, 1200px);
	padding-inline: 9px 20px;
	align-items: flex-end;
}

#pc-menu-open .open-main-Box-logo a {
	align-items: flex-end;
	display: flex;
}

#pc-menu-open .open-main-Box-logo-img {
	align-items: center;
	display: flex;
	gap: 0 16px;
}

#pc-menu-open .open-main-Box-logo-img img {
}

#pc-menu-open .open-main-Box-logo-img span {
	background: #E94A08;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.5;
	margin-right: 20px;
	padding: 5px 12px;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	top: 13px;
    white-space: nowrap;
}

#pc-menu-open .open-main-Box-sns ul {
	display: flex;
	gap: 0 10px;
}

#pc-menu-open .open-main-Box-sns ul li a {
	display: block;
}

#pc-menu-open .open-main-Box-con-bottom {
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	width: min(95%, 1200px);
	padding-inline: 7px 47px;
    padding-inline: 7px clamp(0rem, -1.917rem + 3.99vw, 2.875rem);
	margin-bottom: -208px;
	position: relative;
}

#pc-menu-open .open-main-Box-link-home .home {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.875;
	margin-bottom: 12px;
}

#pc-menu-open .open-main-Box-link-home .txt {
	font-size: 20px;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.7;
	margin-bottom: 34px;
}

#pc-menu-open .open-main-Box-link-recruit {
	align-items: center;
	display: flex;
	gap: 0 10px;
}

#pc-menu-open .open-main-Box-link-recruit p.txt {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 2.8571428571;
}

#pc-menu-open .open-main-Box-link-lists {
	display: flex;
	gap: 0 89px;
}

#pc-menu-open .open-main-Box-link-list li a {
	font-size: 16px;
    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 2.5;
	padding-inline: 21px 0;
	position: relative;
}

#pc-menu-open .open-main-Box-link-list li a::after {
	content: ">";
	font-size: 16px;
	font-weight: 500;
	left: 0;
	letter-spacing: 0em;
	line-height: 2.5;
	position: absolute;
	top: -8px;
    top: clamp(-10px, calc(-11.33px + 0.17vw), -8px);
}

#pc-menu-open .open-main-Box-ttl {
	margin-bottom: -110px;
	padding-inline: 44px 0;
}


/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 10;
}

.side-fix-list {

}

.side-fix-list li a {
  display: block;
}

.side-fix-list li a img {
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.12));
}


/* g-nav
-------------------------------------*/
#g-nav {
  width: 1100px;
  margin: 0px auto 10px auto;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}
#g-nav li.list {
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
#g-nav li.list span {
  cursor: pointer;
}
#g-nav li.list span,
#g-nav li.list a {
  border-right: 1px solid #999;
  display: block;
  text-align: center;
  padding: 10px 20px;
}
#g-nav li.list:first-child a {
  border-left: 1px solid #999;
}
#g-nav .dropmenu li.list ul.sub {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  position: absolute;
  top: 35px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 50;
  width: 220px;
}
#g-nav .dropmenu li.list:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
#g-nav .dropmenu li.list ul li:last-child a {
  border-bottom: 1px solid #ccc;
}
#g-nav .dropmenu li.list ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background: #fff;
  display: block;
  width: 220px;
  padding: 10px;
  color: #000;
  border: 1px solid #ccc;
  border-bottom: none;
}
#g-nav .dropmenu li.list:hover ul li a {
  visibility: visible;
  opacity: 1;
}

/* footer
-------------------------------------*/
.l-footer {
	background-color: #EBEBE4; /* 背景色を指定 */
	background-image: url(../images/common/footer_bg.png); /* 画像を指定 */
	background-position: bottom right 343px; /* 画像の位置を指定 */
	background-repeat: no-repeat; /* 画像を繰り返さない */
	background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
}

#info .l-footer,
#staff-interview .l-footer,
#media_info .l-footer,
#workstyle .l-footer,
#bland .l-footer,
#business .l-footer,
#jobs .l-footer{
    padding-block: 240px 0;    
}

.l-footer .l-footer__inner {
	padding-block: 63px 0;
}

.l-footer .l-footer__con-top {
	border-bottom: 1px solid #1A1A1A;
	display: flex;
	justify-content: space-between;
	margin-bottom: 28px;
	margin-inline: auto;
	padding-block: 0 22px;
	width: min(95%, 1200px);
	padding-inline: 0 21px;
	align-items: flex-end;
    position: relative;
    z-index: 1;
}

.l-footer .l-footer__logo a {
	align-items: flex-end;
	display: flex;
}

.l-footer .l-footer__logo-img {
	align-items: center;
	display: flex;
	gap: 0 17px;
}

.l-footer .l-footer__logo-img img {
	width: 289px;
}

.l-footer .l-footer__logo-img .l-footer__logo-caption {
	background: #E94A08;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.5;
	margin-right: 20px;
	padding: 5px 12px;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	top: 16px;
    white-space: nowrap;
}

.l-footer .l-footer__sns ul {
	display: flex;
	gap: 0 10px;
}

.l-footer .l-footer__sns ul li a {
	display: block;
}

.l-footer .l-footer__con-bottom {
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	width: min(95%, 1200px);
	padding-inline: 7px 46px;
    padding-inline: 7px clamp(0rem, -1.917rem + 3.99vw, 2.875rem);
	margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.l-footer .l-footer__link-home .home {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.875;
	margin-bottom: 12px;
}

.l-footer .l-footer__link-home .txt {
	font-size: 20px;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.7;
	margin-bottom: 33px;
}

.l-footer .l-footer__link-recruit {
	align-items: center;
	display: flex;
	gap: 0 10px;
}

.l-footer .l-footer__link-recruit p.txt {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 2.8571428571;
}

.l-footer .l-footer__link-lists {
	display: flex;
	gap: 0 66px;
}

.l-footer .l-footer__link-list li a {
	font-size: 16px;
    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 2.5;
	padding-inline: 45px 0;
    white-space: nowrap;
	position: relative;
}

.l-footer .l-footer__link-list li a::before {
	content: ">";
	font-size: 16px;
    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
	font-weight: 500;
	left: 25px;
	letter-spacing: 0em;
	line-height: 2.5;
	position: absolute;
	top: -8px;
}

.l-footer .l-footer__ttl {
	margin-bottom: -105px;
	padding-inline: 44px 0;
}

.l-footer .l-footer__right {
	position: relative;
	text-align: right;
}

.l-footer .l-footer__triangle {
	bottom: 0;
	position: absolute;
	right: 0;
}

.l-footer .copyright {
	bottom: 29px;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.8181818182;
	position: absolute;
	right: 18px;
}

.l-footer .l-footer__loop {
    overflow: hidden;
}

.l-footer .l-footer__loop-wrap {
	align-items: center;
	display: flex;
	gap: 0 70px;
	width: 4358px;
}

.l-footer .l-footer__slider {
	animation: scroll-left 60s linear infinite;
}

.l-footer .l-footer__slider img {
    width: 100%;
    height: auto;        
}

/* end-contact
-------------------------------------*/
.p-end .p-end__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-end .p-end__item a {
	display: block;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
}

.p-end .p-end__item a .img img {
	transition: all 0.5s 0s ease;
    width: 100%;
    height: auto;        
}

.p-end .p-end__item a .wrap {
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
}

.p-end .p-end__item a .en {
	margin-bottom: 23px;
}

.p-end .p-end__item a .en img {
    width: 100%;
    height: auto;        
}

.p-end .p-end__item a .txt {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.4444444444;
    white-space: nowrap;
}

.p-end .p-end__item a .btn {
	bottom: 30px;
	position: absolute;
	right: 31px;
}

/* カスタム投稿　共有タイトル
-------------------------------------*/
.p-main__ttl {
	background: #1A1A1A;
	color: #ffffff;
}

.p-main__ttl-inner {
	align-items: center;
	display: flex;
	gap: 0 20px;
	margin-inline: auto;
	width: min(95%, 1280px);
}

.p-main__ttl-inner .en {
	font-size: 54px;
	font-weight: 600;
	letter-spacing: 1.08px;
	line-height: 1;
}

.p-main__ttl-inner h2 {
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1.1px;
	line-height: 1.6;
}

/* 下層共通　CONTACT
-------------------------------------*/
.p-end__page {
	margin-bottom: -140px;
}

.p-end__page .p-end__page-con {
	background: url(../images/common/end02_bg.jpg) no-repeat top center/cover;
	margin-bottom: -120px;
	margin-inline: auto;
	max-width: 1920px;
	padding-block: 107px 162px;
	text-align: center;
	width: 100%;
}

.p-end__page .p-end__page-con .en {
	color: #ffffff;
	font-size: 80px;
	font-weight: 800;
	letter-spacing: 4px;
	line-height: 1;
	margin-bottom: 10px;
}

.p-end__page .p-end__page-con .top {
	background: #ffffff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 4px;
	line-height: 1;
	margin-bottom: 40px;
	margin-inline: auto;
	padding-inline: 52px;
	width: -moz-fit-content;
	width: fit-content;
    padding-block: 4px;
    
}

.p-end__page .p-end__page-con .txt {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.8px;
	line-height: 1.875;
}

.p-end__page .p-end02__items {
	display: grid;
	gap: 0 23px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-inline: auto;
	max-width: 1280px;
	width: 100%;
}

.p-end__page .p-end02__item a {
	background: url(../images/common/end02_link_bg.png) no-repeat center center/cover;
	display: block;
	padding-block: 26px 45px;
	text-align: center;
}

.p-end__page .p-end02__item a .icon {
	margin-bottom: 21px;
}

.p-end__page .p-end02__item a p {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 1.2px;
	line-height: 1.4;
}

.p-end__page .p-end02__item a p span {
	color: #E94A08;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
.main-title {
  width: 100%;
  min-width: 1100px;
  background: #333;
  color: #fff;
  padding: 50px 0;
  text-align: center;
  margin-bottom: 30px;
}
.main-title .en {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.main-title .jp {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
h2.sub-title {
  padding: 25px 20px 10px;
  margin-bottom: 50px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  border-bottom: solid 2px #000;
}
.seo_bread_list {
    border-top: 1px solid #D4D4D4;
    margin-block: 15px 0;
    padding-block: 12px;    
}
.seo_bread {
    width: min(95%,1100px);
    margin-inline: auto;
}
.seo_bread li {
  margin-right: 20px;
  float: left;
}
.seo_bread li::after {
  content: " >";
}
.seo_bread 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-en {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: #090909;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}

/* clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1700px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1700px) {
.l-footer {
    background-color: #EBEBE4; /* 背景色を指定 */
    background-image: url(../images/common/footer_bg.png); /* 画像を指定 */
    background-position: bottom right 20.1vw; /* 画像の位置を指定 */
    background-repeat: no-repeat; /* 画像を繰り返さない */
    background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
}

.l-footer .l-footer__triangle img {
    width: 26.118vw;
    height: auto;
}

.l-footer .l-footer__ttl img {
    width: 48.4vw;
    height: auto;
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1350px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1350px) {
.pc-menu {
    position: fixed;
    top: 1.778vw;
    right: 1vw;
    z-index: 99;
}

#pc-menu-open .open-close-01 {
    position: absolute;
    top: 1.778vw;
    right: 1vw;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1300px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1300px) {
.p-end .p-end__item a .btn {
    bottom: 1vw;
    position: absolute;
    right: 1vw;
}

.p-end .p-end__item a .btn img {
    width: 4.615vw;
    height: auto;
}

#pc-menu-open .open-main-Box-nav ul li:nth-child(1) img {
    width: 100%;
    height: 88%;
    object-fit: cover;
} 

#pc-menu-open .open-main-Box-nav ul li a {
    background: url(../images/common/openmenu_bg02.png) no-repeat top center/contain;
    display: block;
    margin-inline: auto;
    padding-block: 1.923vw 0;
    text-align: center;
    width: 100%;
    height: 20vw;
}

#pc-menu-open .open-main-Box-nav ul li a img     {
    width: 6.9vw;
    height: auto;
}

.l-footer .copyright {
	bottom: 2.231vw;
	font-size: 0.846vw;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.8181818182;
	position: absolute;
	right: 1.385vw;
}

.l-footer {
    background-color: #EBEBE4; /* 背景色を指定 */
    background-image: url(../images/common/footer_bg.png); /* 画像を指定 */
    background-position: bottom right 18.1vw; /* 画像の位置を指定 */
    background-repeat: no-repeat; /* 画像を繰り返さない */
    background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
}

#pc-menu-open .open-main-Box-ttl p img {
    width: 60.4vw;
    height: auto;
}

#pc-menu-open .open-main-Box-con-bottom {
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	width: min(95%, 1200px);
	padding-inline: 0.538vw 3.615vw;
    padding-inline: 7px clamp(0rem, -1.917rem + 3.99vw, 2.875rem);
	margin-bottom: -16vw;
	position: relative;
}

#pc-menu-open .open-main-Box-ttl,
.l-footer .l-footer__ttl {
	margin-bottom: -8.077vw;
	padding-inline: 3.385vw 0;
}

}

/* ========================================
   @media screen and (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
html {
    overflow: auto;
}

body {
    overflow: visible;
}

#pc-menu-open {
	background-color: #EBEBE4; /* 背景色を指定 */
	background-image: url(../images/common/openmenu_bg.png); /* 画像を指定 */
	background-position: bottom right; /* 画像の位置を指定 */
	background-repeat: no-repeat; /* 画像を繰り返さない */
	background-size: 62vw; /* 画像のサイズ調整（必要に応じて変更） */
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1100px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1100px) {
.l-header .l-header__inner {
    display: flex;
    justify-content: space-between;
    padding-inline: 2vw 9.091vw;
}

.l-header .l-header__logo a {
    align-items: center;
    display: flex;
    padding-block: 1.727vw 0;
}

.l-header .l-header__logo a img {
    margin-right: 1.636vw;
    position: relative;
    top: -0.364vw;
    width: 17vw;
}

.l-header .l-header__logo a .l-header__logo-caption {
    background: #E94A08;
    color: #ffffff;
    font-size: 1.636vw;
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-right: 2.909vw;
    padding: 0.455vw 1.091vw;
    width: -moz-fit-content;
    width: fit-content;
}

.l-header .l-header__logo a h1 {
    font-size: 2.182vw;
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 1.1666666667;
}

.l-header .l-header__nav {
	padding-block: 2.182vw 0;
}

.l-footer .l-footer__ttl img {
    width: 40.4vw;
    height: auto;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:950px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:950px) {
.l-footer {
    background-color: #EBEBE4; /* 背景色を指定 */
    background-image: url(../images/common/footer_bg.png); /* 画像を指定 */
    background-position: bottom right 14.1vw; /* 画像の位置を指定 */
    background-repeat: no-repeat; /* 画像を繰り返さない */
    background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
}
}

/* ========================================
   @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
}
.pc,
.pc2 {
  display: none !important;
}
/*pcのみ表示ブロック*/
.sp {
  display: block !important;
}
/*スマホのみ表示ブロック*/
.sp2 {
  display: inline-block !important;
}
/*スマホのみ表示ブロック*/
.no-br {
  display: none;
}
/*スマホでbrを解除したい場合に使用*/
.sp_display_block {
  display: block !important;
}
/*スマホでflexboxを解除したい場合等に使用*/
.pc-menu {
  display: none;
}
.side-fix {
  display: none;
}
.fix-list {
  display: none;
}
#pc-menu-open {
  display: none;
}
#g-nav {
  display: none;
}

/* sp-header
-------------------------------------*/
.sp-header {
}

.sp-header .h-logo img {
  width: auto;
}

.sp-header .h-menu {
  position: fixed;
  top: 4.831vw;
  right: 2.415vw;
  z-index: 97;
}

.sp-header .h-menu img {
  width: 14.493vw;
  height: auto;
}

.l-header .sp-header .h-logo a {
	align-items: flex-end;
	display: flex;
	gap: 0 4.106vw;
	padding-block: 4.106vw 0;
	padding-inline: 4.106vw 0;
}

.l-header .sp-header .h-logo a img {
	height: auto;
	width: 36.957vw;
}

.l-header .sp-header .h-logo a .sp-header__logo-caption {
	background: #E94A08;
	color: #ffffff;
	font-size: 3.865vw;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.6875;
	padding: 0.483vw 2.174vw;
	width: -moz-fit-content;
	width: fit-content;
}


  /* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {

}

nav#sp-global-nav .h-logo img {

}

nav#sp-global-nav {
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  box-sizing: border-box;
  background: #EBEBE4;
}

nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 4.831vw;
  right: 2.415vw;
  z-index: 98;
}

nav#sp-global-nav .open-close-01 img {
  width: 14.493vw;
  height: auto;
}

#sp-global-nav .open-Color-Box-link-list li:first-child a:before {
	content: none;
}

#sp-global-nav .open-main-Box-logo a {
	align-items: flex-end;
	display: flex;
}

#sp-global-nav .h-logo a {
	align-items: flex-end;
	display: flex;
	gap: 0 4.106vw;
	padding-block: 4.106vw 0;
	padding-inline: 4.106vw 0;
}

#sp-global-nav .h-logo a img {
	height: auto;
	width: 36.957vw;
}

#sp-global-nav .h-logo a label {
	background: #E94A08;
	color: #ffffff;
	font-size: 3.865vw;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.6875;
	padding: 0.483vw 2.174vw;
	width: -moz-fit-content;
	width: fit-content;
}

#sp-global-nav .open-color-Box {
	margin-inline: auto;
	padding-block: 6.874vw 12vw;
	width: min(95%, 91.7vw);
}

#sp-global-nav .open-Color-Box-ttl {
	margin-bottom: 1.449vw;
	text-align: center;
}

#sp-global-nav .open-Color-Box-nav {
	margin-bottom: 7.246vw;
}

#sp-global-nav .open-Color-Box-nav ul {
	display: grid;
	gap: 1.449vw;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

#sp-global-nav .open-Color-Box-nav ul li a {
	background: #FDE000;
	display: block;
	margin-inline: auto;
	padding-block: 3.14vw 4.106vw;
	text-align: center;
	width: 100%;
}

#sp-global-nav .open-Color-Box-nav ul li a img {
	height: auto;
	margin-inline: auto;
	width: 12.077vw;
}

#sp-global-nav .open-Color-Box-nav ul li a p {
	font-size: 3.382vw;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.2857142857;
	margin-block: 0 0;
}

#sp-global-nav .open-Color-Box-nav ul li a p span {
	color: #E94A08;
}

#sp-global-nav .open-Color-Box-link-list {
	margin-bottom: 17.15vw;
}

#sp-global-nav .open-Color-Box-link-list li a {
	border-bottom: 1px solid #DBDBD3;
	display: block;
	font-size: 3.865vw;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 4;
	position: relative;
	padding-inline: 2vw 0;
}

#sp-global-nav .open-Color-Box-link-list li a:before {
	background: #F7F7F7;
	content: "";
	height: 0.242vw;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

#sp-global-nav .open-Color-Box-link-list li a::after {
	content: ">";
	font-size: 3.865vw;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 4;
	position: absolute;
	right: 3vw;
	top: 0;
}

#sp-global-nav .open-main-Box-con-top {
	border: none;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 2vw;
	width: 100%;
}

#sp-global-nav .open-main-Box-logo {
	margin-bottom: 5.314vw;
}

#sp-global-nav .open-main-Box-logo a {
	display: grid;
	gap: 0vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

#sp-global-nav .open-main-Box-logo a p {
	text-align: center;
}

#sp-global-nav .open-main-Box-logo a p img {
	width: 45.2vw;
}

#sp-global-nav .open-main-Box-logo-img {
	align-items: flex-end;
	display: flex;
	gap: 0 2.415vw;
	justify-content: center;
}

#sp-global-nav .open-main-Box-logo-img img {
	width: 39.2vw;
}

#sp-global-nav .open-main-Box-logo-img .open-main-Box-logo-caption {
	background: #E94A08;
	color: #ffffff;
	font-size: 3.865vw;
	font-weight: 600;
	letter-spacing: 0em;
	line-height: 1.6875;
	padding: 0.483vw 2.174vw;
	width: -moz-fit-content;
	width: fit-content;
}

#sp-global-nav .open-main-Box-sns ul {
	display: flex;
	gap: 0 4.831vw;
	justify-content: center;
}

#sp-global-nav .open-main-Box-sns ul li a {
	display: block;
}

#sp-global-nav .open-main-Box-link-recruit {
	display: flex;
	gap: 0 2.415vw;
	justify-content: center;
}

#sp-global-nav .open-main-Box-link-recruit p.txt {
	font-size: 3.382vw;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 2.8571428571;
}


  /* 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;
  padding-block: 8.454vw 3.623vw; 
}

.sp-fix-list .icon {
  width: 100%;
  text-align: center;
}

.sp-fix-list .icon a {
  display: block;
  margin-inline: auto;
  text-align: center;
  width: min(95%,91.7vw);
  margin-inline: auto;
}

.sp-fix-list .icon a img {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8.454vw;
}


/* end-contact
-------------------------------------*/
.p-end .p-end__items {
    display: grid;
    gap: 0.4vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-end .p-end__item a {
    display: block;
    position: relative;
}

.p-end .p-end__item a .wrap {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
}

.p-end .p-end__item a .en {
    margin-bottom: 3.382vw;
}

.p-end .p-end__item:nth-child(1) a .en img {
    width: 39.614vw;
}

.p-end .p-end__item:nth-child(2) a .en img {
    width: 57.005vw;
}

.p-end .p-end__item:nth-child(3) a .en img {
    width: 54.623vw;
}

.p-end .p-end__item a .txt {
    color: #ffffff;
    font-size: 3.865vw;
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 1.625;
}

.p-end .p-end__item a .btn {
    bottom: 4.831vw;
    position: absolute;
    right: 4.106vw;
}

.p-end .p-end__item a .btn img {
    height: auto;
    width: 12.077vw;
}

/* 下層ページ共通　CONTACT
-------------------------------------*/
.p-end__page {
    margin-bottom: -28.594vw;
}

.p-end__page .l-inner.l-end__page {
    margin-inline: auto;
    width: 100%;
}

.p-end__page .p-end__page-con {
    background: url(../images/common/end02_bg_sp.jpg) no-repeat top center/contain;
    margin-bottom: -20.391vw;
    padding-block: 22.594vw 26.459vw;
    text-align: center;
}

.p-end__page .p-end__page-con .en {
    color: #ffffff;
    font-size: 13.04vw;
    font-weight: 800;
    letter-spacing: 0.483vw;
    line-height: 1;
    margin-bottom: 0.899vw;
}

.p-end__page .p-end__page-con .top {
    background: #ffffff;
    font-size: 3.865vw;
    font-weight: 600;
    letter-spacing: 2.4px;
    line-height: 1;
    margin-bottom: 3.797vw;
    padding-inline: 4.831vw;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-block: 1vw;
}

.p-end__page .p-end__page-con .txt {
    color: #ffffff;
    font-size: 3.864vw;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.375;
    margin-inline: auto;
    width: min(95%, 73.879227vw);
    text-align: left;
}

.p-end__page .p-end02__items {
    display: grid;
    gap: 0 2.415vw;
    grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-inline: 2vw;
}

.p-end__page .p-end02__item a {
    background: url(../images/common/end02_link_bg_sp.png) no-repeat top center/contain;
    display: block;
    padding-block: 6.831vw 15.797vw;
    text-align: center;
}

.p-end__page .p-end02__item a .icon {
    margin-bottom: 3.865vw;
}

.p-end__page .p-end02__item a .icon img {
    height: auto;
    width: 12.077vw;
}

.p-end__page .p-end02__item a p {
    font-size: 3.382vw;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 1.4;
}

.p-end__page .p-end02__item a p span {
    color: #E94A08;
}

/* sp-page-top
-------------------------------------*/
.sp-page-top {
	margin-bottom: 14.908vw;
	text-align: center;
}

.sp-page-top a {
	border-bottom: 1px solid #1A1A1A;
	font-size: 3.382vw;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 2.8571428571;
}


/* footer
-------------------------------------*/
.l-footer {
	background-color: #EBEBE4; /* 背景色を指定 */
	background-image: none; /* 画像を指定 */
}

#info .l-footer,
#staff-interview .l-footer,
#media_info .l-footer,
#workstyle .l-footer,
#bland .l-footer,
#business .l-footer,
#jobs .l-footer{
    padding-block: 30vw 0;
}

.l-footer .l-footer__inner {
	padding-block: 11.734vw 28.986vw;
}

.l-footer .l-footer__con-top {
	border: none;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 3.01vw;
	width: 100%;
}

.l-footer .l-footer__logo {
	margin-bottom: 5.314vw;
}

.l-footer .l-footer__logo a {
	display: grid;
	gap: 0vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.l-footer .l-footer__logo a p {
	text-align: center;
}

.l-footer .l-footer__logo-img {
	align-items: flex-end;
	display: flex;
	gap: 0 2.415vw;
	justify-content: center;
}

.l-footer .l-footer__logo-img img {
    width: 38.406vw;
}

.l-footer .l-footer__logo-img .l-footer__logo-caption {
    background: #E94A08;
    color: #ffffff;
    font-size: 3.865vw;
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 1.6875;
    padding: 0.483vw 2.174vw;
    width: -moz-fit-content;
    width: fit-content;
}

.l-footer .l-footer__sns ul {
	display: flex;
	gap: 0 4.831vw;
	justify-content: center;
}

.l-footer .l-footer__con-bottom {
	display: block;
	width: 100%;
}

.l-footer .l-footer__link-recruit {
	display: flex;
	gap: 0 2.415vw;
	justify-content: center;
	margin-bottom: 4.246vw;
}

.l-footer .l-footer__link-recruit p.txt {
	font-size: 3.382vw;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 2.8571428571;
}

.l-footer .l-footer__link-lists {
	display: none;
}

.l-footer .l-footer__ttl {
	margin-bottom: -10.459vw;
	padding-inline: 4.348vw 0;
}

.l-footer .copyright {
	display: block;
	font-size: 2.657vw;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.8181818182;
	margin-bottom: 14.01vw;
	position: static;
	text-align: center;
}

.l-footer .l-footer__loop-wrap {
	align-items: center;
	display: flex;
	gap: 0 8.454vw;
	width: 388.889vw;
}

.l-footer .l-footer__slider {
	animation: scroll-left 60s linear infinite;
}

.l-footer .l-footer__slider img {
	height: auto;
	width: 194.444vw;
}

/* カスタム投稿　共有タイトル
-------------------------------------*/
.p-main__ttl {
    background: #1A1A1A;
    color: #ffffff;
}

.p-main__ttl-inner {
    align-items: center;
    display: flex;
    gap: 0 2.899vw;
    margin-inline: auto;
    padding-block: 1vw;
    width: min(95%, 95.1690821256vw);
}

.p-main__ttl-inner .en {
    font-size: 11.111vw;
    font-weight: 600;
    letter-spacing: 0.222vw;
    line-height: 1;
}

.p-main__ttl-inner h2 {
    font-size: 4.348vw;
    font-weight: 400;
    letter-spacing: 0.217vw;
    line-height: 1.6;
}



/* copyright
-------------------------------------*/


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.main-title {
  width: 100%;
  background: #333;
  color: #fff;
  padding: 7vw 0;
  text-align: center;
  margin-bottom: 4vw;
}
.main-title .en {
  display: block;
  font-size: 3.2vw;
  margin-bottom: 4vw;
  text-transform: uppercase;
}
.main-title .jp {
  display: block;
  font-size: 4.8vw;
  font-weight: bold;
}
h2.sub-title {
  font-weight: bold;
  padding: 3vw 3vw 1vw;
  margin-bottom: 5vw;
  font-size: 5vw;
  letter-spacing: 0.3vw;
  text-align: center;
  border-bottom: solid #000 0.2vw;
}
.seo_bread_list {
  padding-block: 8px 11px;
  margin-block: 8px 0px;
  border-top: 1px solid #D4D4D4;
}
.seo_bread {
  width: min(95%, 90.2vw);
  margin-inline: auto;
  font-size: 12px;
  font-weight: 400;
}
.seo_bread a {
}
.seo_bread li {
  margin-right: 1.5vw;
  float: left;
}
.seo_bread li::after {
  content: ">";
}
.seo_bread 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-en {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

*:focus {
  outline: none !important;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #090909;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* img-block */
/* アンカーリンク調整 */
.hideAnchor {
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  margin-top: -2vw;
  padding-bottom: 2vw;
}
/* スクロール縦 */
.scroll-y {
  box-sizing: border-box;
  overflow-y: scroll;
  transform: translateZ(0);
}
/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.sp-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 5vw;
  height: 0;
  overflow: hidden;
}
.sp-ggmap iframe,
.sp-ggmap object,
.sp-ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
   @media screen and (max-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}
