@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: #141414;
  background: #F2F2F2;
}

main {
	margin-inline: auto;
	width: min(100%, 1920px);
}

/*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 {
	height: 124px;
	margin-bottom: 43px;
	margin-inline: auto;
	width: min(100%, 1920px); /* メニューアイテムのホバースタイル */
}

header .l-header__inner {
	padding-block: 26px 0;
	padding-inline: 37px 60px;
}

header .l-header__contents {
	display: flex;
	justify-content: space-between;
}

header .l-header__items {
	align-items: center;
	display: flex;
	gap: 0 63px;
	padding-block: 6px 0;
}

header .l-header__item a {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 2.4666666667;
}

header .l-header__item a div.img img {
  width: 100%;
  height: auto;        
}

header .l-header__item:first-child {
	position: relative;
}

header .l-header__item:first-child::after {
	background: url(../images/common/h_arrow.svg) no-repeat center center/contain;
	bottom: -11px;
	content: "";
	height: 12px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 10px;
}

header .l-header__item.contact a {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.2666666667;
	padding-left: 54px;
	position: relative;
}

header .l-header__item.contact a:before {
	background: url(../images/common/h_contact_icon.svg) no-repeat center center/contain;
	content: "";
	height: 42px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
}

header .drop-menu:hover .l-header__dropmenu-items-box {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

header .l-header__dropmenu-items-box {
	background: #262626;
	left: 0;
	margin-inline: auto;
	max-width: 1920px;
	opacity: 0;
	padding-block: 36px;
	position: fixed;
	top: 106px;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	visibility: hidden;
	width: 100vw;
	z-index: 100;
}

header .l-header__dropmenu-items {
	display: grid;
	gap: 0 33px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: center;
	margin-inline: auto;
	width: 567px;
}

header .l-header__dropmenu-item a p {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 2;
	text-align: center;
}

/* pc-menu
-------------------------------------*/


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


/* footer
-------------------------------------*/
footer {
	background: #262626;
}

footer .l-inner.l-footer {
	margin-inline: auto;
	padding-block: 110px 41px;
	width: min(95%, 1600px);
}

footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	gap: 0 305px;
	grid-template-columns: 22.1875% 61.25%;
}

footer .l-footer__contents-left .logo {
	margin-bottom: 29px;
}

footer .l-footer__contents-left .company {
	margin-bottom: 47px;
}

footer .l-footer__contents-left .company address .name {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.12em;
	line-height: 2;
	margin-bottom: 12px;
}

footer .l-footer__contents-left .company address .access {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.8571428571;
  white-space: nowrap;
}

footer .l-footer__contents-left .company address .tel {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.8571428571;
}

footer .l-footer__contents-left .company address .tel a {
  color: #fff;
}

footer .l-footer__contents-left .company address .time {
	font-size: clamp(0.75rem, 0.667rem + 0.17vw, 0.875rem);
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.8571428571;
  white-space: nowrap;
}

footer .l-footer__contents-left .mail .wrap a {
	align-items: center;
	display: flex;
	gap: 0 12px;
}

footer .l-footer__contents-left .mail .wrap a:hover {
  color: #fff;
}

footer .l-footer__contents-left .mail .wrap a p {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.2666666667;
  white-space: nowrap;
}

footer .l-footer__contents-left .mail .wrap a .icon img {
	height: auto;
	width: 42px;
}

footer .l-footer__contents-right .home {
	margin-bottom: 57px;
}

footer .l-footer__contents-right .home a {
	color: #ffffff;
	display: block;
	font-size: 18px;
  font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
	font-weight: 400;
	letter-spacing: 0.14em;
	line-height: 2.0555555556;
}

footer .l-footer__contents-right .links {
	margin-bottom: 56px;
}

footer .l-footer__contents-right .links .ttl {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

footer .l-footer__contents-right .links .ttl p {
	font-size: 18px;
  font-size: clamp(0.625rem, 0.292rem + 0.69vw, 1.125rem);
	font-weight: 400;
	letter-spacing: 0.14em;
	line-height: 2.0555555556;
	white-space: nowrap;
}

footer .l-footer__contents-right .links .ttl p.line {
	background: #616161;
	height: 1px;
	margin-left: auto;
	width: 809px;
}

footer .l-footer__contents-right .link.top {
	align-items: center;
	display: flex;
	gap: 0 56px;
}

footer .l-footer__contents-right .link.bottom {
	display: grid;
	gap: 7px 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding-inline: 0 23px;
}

footer .l-footer__contents-right .link.bottom li:nth-child(2),
footer .l-footer__contents-right .link.bottom li:nth-child(6) {
	left: 72px;
	position: relative;
}

footer .l-footer__contents-right .link.bottom li:nth-child(3),
footer .l-footer__contents-right .link.bottom li:nth-child(7) {
	left: 60px;
	position: relative;
}

footer .l-footer__contents-right .link li a {
	color: #ffffff;
	display: block;
	font-size: 18px;
  font-size: clamp(0.625rem, 0.292rem + 0.69vw, 1.125rem);
	font-weight: 400;
	letter-spacing: 0.14em;
	line-height: 2.1111111111;
	padding-left: 20px;
	position: relative;
	white-space: nowrap;
}

footer .l-footer__contents-right .link li a:before {
	background: url(../images/common/f_arrow.svg) no-repeat center center/contain;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 16px;
	width: 5px;
}

/* copyright
-------------------------------------*/
.copyright {
	background: #000000;
	color: #ffffff;
	padding-block: 61px;
	text-align: center;
}

.copyright small {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.2666666667;
}

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

#index .p-bnr .l-inner.l-bnr {
	padding-block: 355px 160px;
}

.p-bnr .l-inner.l-bnr {
  padding-block: 162px 160px;
}

.p-bnr .p-bnr__contents {
	align-items: center;
	color: #ffffff;
	display: grid;
	gap: 0 7px;
	grid-template-columns: 38.5% 50.5%;
	margin-right: auto;
	justify-content: flex-end;
	width: min(95%, 1559px);
}

.p-bnr .p-bnr__contents-left {
	display: grid;
	gap: 10px 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-bnr .p-bnr__contents-left p {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.049em;
	line-height: 1.5;
}

.p-bnr .p-bnr__contents-right .top {
	align-items: center;
	border-bottom: 3px solid #ffffff;
	border-top: 3px solid #ffffff;
	display: flex;
	justify-content: space-between;
	padding-block: 58px 55px;
	padding-inline: 0 57px;
}

.p-bnr .p-bnr__contents-right .top p {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.16em;
	line-height: 1.2083333333;
}

.p-bnr .p-bnr__contents-right .top .wrap {
	display: grid;
	gap: 10px 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	position: relative;
	top: -8px;
}

.p-bnr .p-bnr__contents-right .top .wrap p {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2;
	text-align: center;
	position: relative;
	right: -22px;
}

.p-bnr .p-bnr__contents-right .bottom {
	align-items: center;
	border-bottom: 3px solid #ffffff;
	display: flex;
	justify-content: space-between;
	padding-block: 64px 62px;
	padding-inline: 0 43px;
}

.p-bnr .p-bnr__contents-right .bottom p {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.16em;
	line-height: 1.2083333333;
}

.p-bnr .p-bnr__contents-right .bottom .wrap {
	align-items: center;
	display: flex;
	gap: 0 23px;
}

.p-bnr .p-bnr__contents-right .bottom .wrap .icon img {
	height: auto;
	width: 69px;
}

.p-bnr .p-bnr__contents-right .bottom .wrap p {
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.2608695652;
  color: #fff;
}


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

.p-bnr02 .l-inner.l-bnr {
	padding-block: 301px 160px;
}

.p-bnr02 .p-bnr02__contents {
  width: min(95%,786px);
  margin-inline: auto;
  align-items: center;
  border-bottom: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  display: flex;
  justify-content: space-between;
  padding-block: 58px 55px;
  padding-inline: 44px 51px;
}

.p-bnr02 .p-bnr02__contents p {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.16em;
	line-height: 1.2083333333;
  color: #fff;
}

.p-bnr02 .p-bnr02__contents .wrap {
	display: grid;
	gap: 10px 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	position: relative;
	top: -8px;
}

.p-bnr02 .p-bnr02__contents .wrap p {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2;
	text-align: center;
	position: relative;
	right: -22px;
}

/* mv共通
-------------------------------------*/
.p-header__mv {
  width: min(100%,1920px);
  margin-inline: auto;
  margin-block: 60px 0;
	margin-bottom: -100px;
	position: relative;
}

.p-header__mv .p-header__mv-contents {
	display: grid;
	gap: 0 171px;
	grid-template-columns: minmax(0, 1fr) 65.4761904762%;
	margin-left: auto;
	width: min(95%, 1680px);
}

.p-header__mv .p-header__mv-contents-left {
  position: relative;
  top: 20px;
}

.p-header__mv .p-header__mv-contents-left .en {
	margin-bottom: 4px;
}

.p-header__mv .p-header__mv-contents-left h1 {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 3.7272727273;
	margin-bottom: 5px;
	padding-inline: 70px 0;
	position: relative;
  white-space: nowrap;
}

.p-header__mv .p-header__mv-contents-left h1:before {
	background: #016FC6;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
}

.p-header__mv .seo_bread_list {
	color: #949494;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 2.9285714286;
  white-space: nowrap;
}

.p-header__mv .seo_bread_list span[property="top"]  {
	color: #016FC6;
}

.p-header__mv .seo_bread_list span[property="name"]  {
	color: #949494;
}

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

/* common
-------------------------------------*/
.seo_bread_list {

}
.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:1800px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1800px) {
footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	gap: 0 16.944vw;
	grid-template-columns: 22.1875% 61.25%;
}

footer .l-footer__contents-right .link.bottom li:nth-child(2),
footer .l-footer__contents-right .link.bottom li:nth-child(6) {
	left: 4vw;
	position: relative;
}

footer .l-footer__contents-right .link.bottom li:nth-child(3),
footer .l-footer__contents-right .link.bottom li:nth-child(7) {
	left: 3.333vw;
	position: relative;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1600px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1600px) {
footer .l-footer__contents-right .links .ttl p.line {
	background: #616161;
	height: 0.063vw;
	margin-left: auto;
	width: 47.5vw;
}

footer .l-footer__contents-right .link li a:before {
	background: url(../images/common/f_arrow.svg) no-repeat center center/contain;
	content: "";
	left: 0;
	position: absolute;
	top: 0.8vw;
}

footer .l-footer__contents-right .link li a {
  padding-left: 15px;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1500px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1500px) {
.p-bnr .p-bnr__contents {
	grid-template-columns: 41.5% 55.5%;
}

.p-bnr .p-bnr__contents-right .top {
	align-items: center;
	border-bottom: 3px solid #ffffff;
	border-top: 3px solid #ffffff;
	display: flex;
	justify-content: space-between;
	padding-block: 3.867vw 3.667vw;
	padding-inline: 0 2vw;
}

.p-bnr .p-bnr__contents-left .en img {
  width: 80%;
}

footer .l-footer__contents-right .link.bottom li:nth-child(3),
footer .l-footer__contents-right .link.bottom li:nth-child(7) {
	left: 0vw;
	position: relative;
}

footer .l-footer__contents-right .link.bottom li:nth-child(4),
footer .l-footer__contents-right .link.bottom li:nth-child(8) {
	left: -2vw;
	position: relative;
}

.p-header__mv .p-header__mv-contents-right img {
  width: 100%;
  height: auto;        
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1400px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1400px) {
header .l-header__items {
	align-items: center;
	display: flex;
	gap: 0 2.5vw;
	padding-block: 0.429vw 0;
}

footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	gap: 0 9.944vw;
	grid-template-columns: 22.1875% 66.25%;
}


}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1300px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1300px) {
.p-bnr .p-bnr__contents {
	grid-template-columns: 34.5% 58.5%;
}

.p-bnr .p-bnr__contents-right .top .wrap .tel a img {
  width: 100%;
  height: auto;        
}

footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	gap: 0 11.9vw;
	grid-template-columns: 22.1% 66.2%;
}

footer .l-footer__contents-left .logo img {
  width: 27.3vw;
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1250px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1250px) {
header .l-header__items {
	align-items: center;
	display: flex;
	gap: 0 1.5vw;
	padding-block: 0.429vw 0;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1250px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1250px) {
.p-bnr .p-bnr__contents-left {
	display: grid;
	gap: 0.8vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-bnr .p-bnr__contents-left p {
	font-size: 1.92vw;
	font-weight: 900;
	letter-spacing: 0.049em;
	line-height: 1.5;
}

.p-bnr .p-bnr__contents-right .top {
	align-items: center;
	border-bottom: 3px solid #ffffff;
	border-top: 3px solid #ffffff;
	display: flex;
	justify-content: space-between;
	padding-block: 4.64vw 4.4vw;
	padding-inline: 0 0vw;
}

.p-bnr .p-bnr__contents-right .top p {
	font-size: 1.76vw;
	font-weight: 400;
	letter-spacing: 0.16em;
	line-height: 1.2083333333;
  white-space: nowrap;
}

.p-bnr .p-bnr__contents-right .top .wrap {
	display: grid;
	gap: 0.8vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	position: relative;
	top: -0.64vw;
}

.p-bnr .p-bnr__contents-right .top .wrap p {
	font-size: 1.12vw;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2;
	text-align: center;
	position: relative;
	right: -1.76vw;
}

.p-bnr .p-bnr__contents-right .bottom {
	align-items: center;
	border-bottom: 3px solid #ffffff;
	display: flex;
	justify-content: space-between;
	padding-block: 5.12vw 4.96vw;
	padding-inline: 0 2.5vw;
}

.p-bnr .p-bnr__contents-right .bottom p {
	font-size: 1.76vw;
	font-weight: 400;
	letter-spacing: 0.16em;
	line-height: 1.2083333333;
}

.p-bnr .p-bnr__contents-right .bottom .wrap {
	align-items: center;
	display: flex;
	gap: 0 1.84vw;
}

.p-bnr .p-bnr__contents-right .bottom .wrap .icon img {
	height: auto;
	width: 5.52vw;
}

.p-bnr .p-bnr__contents-right .bottom .wrap p {
	font-size: 1.76vw;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.2608695652;
}
}

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

/* ========================================
@media screen and (min-width:768px) and ( max-width:1165px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1165px) {
header .l-header__items {
	align-items: center;
	display: flex;
	gap: 0 1vw;
	padding-block: 0.429vw 0;
}

header .l-header__item a {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 2.4666666667;
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1150px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1150px) {
.p-header__mv {
  width: min(100%,1920px);
  margin-inline: auto;
  margin-block: 5.217vw 0;
	margin-bottom: -6.696vw;
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1100px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1100px) {
.p-bnr .p-bnr__contents-right .top .wrap .tel  {
  text-align: center;
}

.p-bnr .p-bnr__contents-right .top .wrap .tel span img {
  width: 80%;
  height: auto;
}

header {
	height: 11.273vw;
	margin-bottom: 3.909vw;
	margin-inline: auto;
	width: min(100%, 1920px); /* メニューアイテムのホバースタイル */
}

header .l-header__inner {
	padding-block: 2.364vw 0;
	padding-inline: 1.5vw;
}

header .l-header__contents-left a img {
  width: 20vw;
}

header .l-header__items {
	align-items: center;
	display: flex;
	gap: 0 1.5vw;
	padding-block: 0.545vw 0;
}

header .l-header__item a {
	font-size: 1.364vw;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 2.4666666667;
}

header .l-header__item:first-child {
	position: relative;
}

header .l-header__item:first-child::after {
	background: url(../images/common/h_arrow.svg) no-repeat center center/contain;
	bottom: -1vw;
	content: "";
	height: 1.091vw;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 0.909vw;
}

header .l-header__item.contact a {
	font-size: 1.364vw;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.2666666667;
	padding-left: 4.909vw;
	position: relative;
}

header .l-header__item.contact a:before {
	background: url(../images/common/h_contact_icon.svg) no-repeat center center/contain;
	content: "";
	height: 3.818vw;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.818vw;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1000px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1000px) {
.p-bnr .p-bnr__contents {
	grid-template-columns: 31.5% 65.5%;
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:850px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:850px) {
.p-header__mv {
  width: min(100%,1920px);
  margin-inline: auto;
  margin-block: 5.217vw 0;
  margin-bottom: -2.696vw;
}
}

}

/* ========================================
  @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: #141414;
	background: #F2F2F2;
}

body {
	background: #F2F2F2;
}

.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
-------------------------------------*/
header {
	height: 18.841vw;
	margin-bottom: 9.903vw;
}

.sp-header {
}

.sp-header .h-logo {
  padding-block: 3.865vw 0;
  padding-inline: 2.899vw 0;
}

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

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

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

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

}

nav#sp-global-nav .h-logo {
  margin-bottom: 15.527vw;
  padding-block: 3.865vw 0;
  padding-inline: 2.899vw 0;
}

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

nav#sp-global-nav {
  z-index: 999;
  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: 998;
}

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

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

nav#sp-global-nav .open-color-Box .mail {
  color: #fff;
  padding-block: 5.314vw 7.246vw;
  border: 1px solid #707070;
  margin-bottom: 14.01vw;
}

nav#sp-global-nav .open-color-Box .mail .txt {
  font-size: 4.348vw;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-align: center;
  margin-bottom: 3.865vw;
}

nav#sp-global-nav .open-color-Box .mail .wrap a {
  display: flex;
  justify-content: center;
  place-items: center;
  gap: 0 4.106vw;
  color: #fff;
}

nav#sp-global-nav .open-color-Box .mail .wrap a .icon img {
  width: 12.077vw;
  height: auto;
}

nav#sp-global-nav .open-color-Box .mail .wrap a p {
  font-size: 4.589vw;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

nav#sp-global-nav .open-color-Box .home a {
  border-top: 1px solid #9A9A9A;
  border-bottom: 1px solid #9A9A9A;
  font-size: 3.865vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  padding-block: 5.072vw 5.556vw;
  padding-left: 4.831vw;
  display: block;
}

nav#sp-global-nav .open-color-Box .list {
  margin-bottom: 13.15vw;
  display: grid;
  grid-template-columns: repeat(1,minmax(0, 1fr));
  gap: 4.831vw 0;
}

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

nav#sp-global-nav .open-color-Box .list li:first-child {
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  border-bottom: 0.2vw solid #9A9A9A;
  font-size: 4.348vw;
  letter-spacing: 0.05em;
  padding-bottom: 5.797vw;
}

nav#sp-global-nav .open-color-Box .list a {
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  border-bottom: 0.2vw solid #9A9A9A;
  font-size: 3.865vw;
  letter-spacing: 0.05em;
  padding-inline: 4.831vw 9.662vw;
  padding-bottom: 5.072vw;
  font-weight: 400;
  position: relative;
}

nav#sp-global-nav .open-color-Box .list a::after {
  position: absolute;
  content: "";
  background: url(../images/common/nav_arrow_sp.svg) no-repeat center center / contain;
  width: 2.174vw;
  height: 3.623vw;
  top: 10%;
  right: 5vw;
}

nav#sp-global-nav .open-color-Box .tel  {
  color: #fff;
  text-align: center;
  margin-bottom: 17.874vw;
}

nav#sp-global-nav .open-color-Box .tel p.top {
  font-size: 4.348vw;
  line-height: 1.6;
  letter-spacing: 0.11em;
  margin-bottom: 5.797vw;
  font-weight: 400;
}

nav#sp-global-nav .open-color-Box .tel .center {
  font-size: 3.14vw;
  line-height: 2.4;
  letter-spacing: 0.09em;
  margin-bottom: 1vw;
  font-weight: 400;
}

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

nav#sp-global-nav .open-color-Box .tel .bottom {
  font-size: 3.14vw;
  line-height: 2.4;
  letter-spacing: 0.09em;
  font-weight: 400;
}

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

nav#sp-global-nav .open-color-Box .logo img {
  width: 66.425vw;
  height: auto;
}

nav#sp-global-nav .open-color-Box .company {
  width: min(95%,280px);
  margin-inline: auto;
  font-size: 3.382vw;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 400;
}

nav#sp-global-nav .open-color-Box .company address .name {
  font-size: 4.348vw;
  line-height: 2;
  letter-spacing: 0.12em;
  margin-bottom: 3.623vw;
}

nav#sp-global-nav .open-color-Box .company address .access {
  font-size: 3.382vw;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

nav#sp-global-nav .open-color-Box .company address .tel {
  text-align: left;  
  margin-bottom: 0;
}

nav#sp-global-nav .open-color-Box .company address .tel a {
  color: #fff;
}

nav#sp-global-nav .open-color-Box .company address .time {
  
}

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

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

#index .p-bnr .l-inner.l-bnr {
	padding-block: 50.242vw 27.778vw;
}

.p-bnr .l-inner.l-bnr {
	padding-block: 22.242vw 27.778vw;
}

.p-bnr .p-bnr__contents {
	color: #ffffff;
	display: grid;
	gap: 10.87vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-inline: auto;
	position: static;
	width: min(95%, 89.3vw);
}

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

.p-bnr .p-bnr__contents-left .en img {
	height: auto;
	width: 61.111vw;
}

.p-bnr .p-bnr__contents-left p {
	font-size: 5.072vw;
	font-weight: 700;
	letter-spacing: 0.049em;
	line-height: 1.7142857143;
}

.p-bnr .p-bnr__contents-right .top {
	border-bottom: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	display: grid;
	gap: 5.072vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	padding-block: 7.005vw 6.28vw;
	padding-inline: 0;
	place-items: center;
}

.p-bnr .p-bnr__contents-right .top p {
	font-size: 4.348vw;
	font-weight: 400;
	letter-spacing: 0.11em;
	line-height: 1.6111111111;
}

.p-bnr .p-bnr__contents-right .top .wrap {
	display: grid;
	gap: 0.966vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-bnr .p-bnr__contents-right .top .wrap p {
	font-size: 3.14vw;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2.4615384615;
	text-align: center;
}

.p-bnr .p-bnr__contents-right .top .wrap p.bottom {
	font-size: 3.14vw;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2.4615384615;
	text-align: center;
	padding-block: 2vw 0;
	border: none;
}

.p-bnr .p-bnr__contents-right .bottom {
	border-bottom: 2px solid #ffffff;
	display: grid;
	gap: 6.763vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	padding-block: 7.729vw 7.005vw;
	padding-inline: 0;
	place-items: center;
}

.p-bnr .p-bnr__contents-right .bottom p {
	font-size: 4.348vw;
	font-weight: 400;
	letter-spacing: 0.11em;
	line-height: 1.6111111111;
}

.p-bnr .p-bnr__contents-right .bottom .wrap {
	align-items: center;
	display: flex;
	gap: 0 3.623vw;
}

.p-bnr .p-bnr__contents-right .bottom .wrap .icon img {
	height: auto;
	width: 12.077vw;
}

.p-bnr .p-bnr__contents-right .bottom .wrap p {
	font-size: 4.589vw;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.2105263158;
  color: #fff;
}

/* bnr02
-------------------------------------*/
.p-bnr02 {
	background: url(../images/common/bnr02_bg_sp.jpg) no-repeat top center/cover;
	margin-inline: auto;
	width: 100%;
}

.p-bnr02 .l-inner.l-bnr {
	padding-block: 33.242vw 14.778vw;
}

.p-bnr02 .p-bnr02__contents {
	color: #ffffff;
	margin-inline: auto;
	width: min(95%, 89.3vw);
  border-bottom: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	display: grid;
	gap: 5.072vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	padding-block: 7.005vw 6.28vw;
	padding-inline: 0;
	place-items: center;
}

.p-bnr02 .p-bnr02__contents p {
	font-size: 4.348vw;
	font-weight: 400;
	letter-spacing: 0.11em;
	line-height: 1.6111111111;
}

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

.p-bnr02 .p-bnr02__contents .wrap p {
	font-size: 3.14vw;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2.4615384615;
	text-align: center;
}

.p-bnr02 .p-bnr02__contents .wrap p.bottom {
	font-size: 3.14vw;
	font-weight: 400;
	letter-spacing: 0.09em;
	line-height: 2.4615384615;
	text-align: center;
	padding-block: 2vw 0;
	border: none;
}

/* mv共通
-------------------------------------*/
.p-header__mv {
	margin-bottom: -10.662vw;
	position: relative;
	z-index: 10;
}

.p-header__mv .p-header__mv-contents {
  display: grid;
  gap: 1.5vw 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-left: auto;
  width: min(95%, 94.6859903382vw);
}

.p-header__mv .p-header__mv-contents-left .en {
	margin-bottom: 2.415vw;
}

.p-header__mv .p-header__mv-contents-left .en img {
	height: auto;
	width: 61.836vw;
}

.p-header__mv .p-header__mv-contents-left h1 {
	font-size: 4.348vw;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 2;
	margin-bottom: 0px;
	padding-inline: 12.077vw 0;
	position: relative;
}

.p-header__mv .p-header__mv-contents-left h1:before {
	background: #016FC6;
	content: "";
	height: 0.242vw;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 9.662vw;
}

.p-header__mv .p-header__mv-contents-right {
	text-align: right;
}

.p-header__mv .p-header__mv-contents-right img {
	height: auto;
	width: 77.295vw;
}

.p-header__mv .seo_bread_list {
	color: #949494;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 2;
}

.p-header__mv .seo_bread_list span[property="top"]  {
	color: #016FC6;
}

.p-header__mv .seo_bread_list span[property="name"]  {
	color: #949494;
}


/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 5vw 3vw;
}
.sp-page-top a img {
  width: 20vw;
  height: auto;
}

/* footer
-------------------------------------*/
footer {
	background: #262626;
}

footer .l-inner.l-footer {
	margin-inline: auto;
	padding-block: 20.048vw 28.019vw;
	width: min(95%, 275px);
}

footer .l-footer__contents {
	color: #ffffff;
	display: grid;
	gap: 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

footer .l-footer__contents-left .company {
	margin-bottom: 0;
}

footer .l-footer__contents-left .company address .name {
	font-size: 4.348vw;
	font-weight: 400;
	letter-spacing: 0.12em;
	line-height: 2;
	margin-bottom: 2.899vw;
}

footer .l-footer__contents-left .company address .access {
	font-size: 3.382vw;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.8571428571;
}

footer .l-footer__contents-left .company address .tel {
	font-size: 3.382vw;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.8571428571;
}

footer .l-footer__contents-left .company address .tel a {
  color: #fff;
}

footer .l-footer__contents-left .company address .time {
	font-size: 3.382vw;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.8571428571;
}

/* copyright
-------------------------------------*/
.copyright {
	background: #000000;
	color: #ffffff;
	padding-block: 7.246vw 28.986vw;
	text-align: center;
}

.copyright small {
	font-size: 3.623vw;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.2666666667;
}

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

  /* common
-------------------------------------*/
.seo_bread_list {
  width: 100%;
}
/*.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;
  }
}
