
/* 共通設定
-------------------------------------*/
html, body {
	color: #fff;
	font-size: 15px;
	background-color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.7;
	overflow-x: hidden;
}

@font-face { /* nomal */
  /*フォントの名前*/
  font-family: "Helvetica";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../fonts/Helvetica.woff2") format("woff2"),
       url("../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face { /* bold */
  /*フォントの名前*/
  font-family: "Helvetica";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../fonts/Helvetica-bold.woff2") format("woff2"),
       url("../fonts/Helvetica-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

*:focus { outline: none !important; box-shadow: none !important; }

a {
  color: #b4b4b4;
  text-decoration: none;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
}

a:hover {
  color: #b4b4b4;
  text-decoration: underline;
}

a span { color: #fff; /* Tel Link */ }
a span:hover { text-decoration: none; }
a[onclick]{	color: #fff; }

h1 {
	font-size: 90%;
	font-weight: 100;
	margin-bottom: 0;
}

h2 {
	font-size: min(3.2vw, 48px);
	font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
	color: #fff;
    width: 100%;
    padding: 0;
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	z-index: 1;
}

h2 span {
	font-family: 'Sawarabi Gothic', sans-serif;
	font-size: min(2vw, 24px);
}

h3 {
	font-family: "Helvetica";
	font-size: 28px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0;
}

h4 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
#lightcase-info h4::after {
	border: none; 
}

h5 {
	font-size: 16px;
	font-weight: bold;
	border-left: solid 5px #fff;
	padding-left: 0.5em;
	margin-bottom: 1em;
}

h6 {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0.6em;
}

b, strong {	font-weight: 900; }

section { padding: 96px 0; }
section[class="blue"]{ background: rgba(30,144,255,0.08); }

.container-fluid { padding: 0; }
.container-fluid.page-wrap { position: relative; min-height: 100%; }

.small { font-size: 70%; }
.medium { font-size: 90%; }
.x-small { font-size: 60%; }

.lead {	font-size: 115%; }
.lead2 { font-size: 130%; }

.txt-blue { color: #fff; }
.txt-red { color: #DD0F12; }
.txt-gold { color: #d4ba28; }
.txt-white { color: #fff; }

.caution { font-size: 70%; vertical-align: text-top; }

.mt-6 {	margin-top: 6rem; }
.pt-6 {	padding-top: 6rem; }

.br-xs { display: none; }

.img-round { border-radius: 5px; }
.img-opacity:hover { opacity: 0.6; transition: 0.4s; }

.full-width {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.overflow-x-none { overflow-x: hidden; }

.colorbox {
    border-radius: 5px;
    padding: 2em;
	height: 100%;
}

.colorbox.gray { background-color: #EEEEEE; }
.colorbox.yellow { background-color: #f6f1e3; }
.colorbox.beige { background-color: #f6eed5; }
.colorbox.red {background-color: #fbe3e3; }
.colorbox.pink { background-color: #fcd9e6; }
.colorbox.green { background-color: rgba(0,87,115,0.08); }
.colorbox.blue { background: rgba(16,111,184,0.08); }
.colorbox.blue2 { background: #d4ba28; color: #fff; }
.colorbox.white { background-color: rgba(255,255,255,0.7); }
.colorbox.white2 { background-color: rgba(255,255,255,1); }
.colorbox.black { background-color: rgba(0,0,0,0.7); width: 50%; }

/*-------------------------------------
  スタート画面
-------------------------------------*/
.start {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100vh;
	z-index: 9000;
	overflow: hidden;
	background: #000;

	opacity: 1;
	visibility: visible;
	transition: opacity 1.4s ease, visibility 1.4s ease;
}

.start__bg,
.start__bg img {
	width: 100%;
	height: 100%;
}

.start__bg img {
	display: block;
	object-fit: cover;
	object-position: center center;

	opacity: 0;
	transform: scale(1.06);
	filter: brightness(0.75);
	transition:
		opacity 2.0s ease,
		transform 3.2s ease,
		filter 2.4s ease;
}

/* 黒幕 */
.start__fade {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 1;
	transition: opacity 2.0s ease;
	pointer-events: none;
}

/* じわっと出す */
.start.show .start__bg img {
	opacity: 1;
	transform: scale(1);
	filter: brightness(1);
}

.start.show .start__fade {
	opacity: 0.15; /* 真っ黒→少しだけ黒を残す */
}

/* 全体をふわっと消す */
.start.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* スマホ */
@media screen and (max-width: 768px) {
	.start__bg img {
		object-position: center center;
	}
}
/* メニュー
-------------------------------------*/
.nav-inner {
	position: fixed;
	width: 100%;
	height: 90px;
	background: #ffffff; /* ←ここを変更 */
	box-shadow: 0px 2px 2px rgb(0 0 0 / 0%);
	top: 0;
	left: 0;
	text-align: center;
	z-index: 2;
}

.logo {
	position: absolute;
	top: 50%; left: 30px;
	transform: translate(0, -50%);
}

.logo img {	width: auto; height: 90px; }

.logo-txt {
	position: absolute;
	font-size: 15px;
	color: #141414;	
	top: 50%; left: 262px;
	transform: translate(0, -50%);
}

.logo.scrolled {
	display: none;
}

.header-tel {
	font-family: 'Sawarabi Gothic', sans-serif;
	font-size: 22px;
	color: #d4ba28 !important;
	line-height: 1.3 !important;
}

.header-tel span.time {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 10px;
	color: #141414 !important;
}

.header-tel.common {
	line-height: 0.37 !important;
}

.header-tel.common span.time {
	line-height: 0.8 !important;
}

.nav-info {
	position: absolute;
	left: 245px;
	z-index: -1 !important;
}

@media (max-width: 1199.9px) {
  .nav-info { left: calc(15vw + 38px); }
  .header-tel { font-size: 20px; }
}
@media (max-width: 575.9px) {
  .nav-info {
	display: none !important;
  }
}


/* スクロールでヘッダー縮小
-------------------------------------*/
/*.is-animation*/

.nav-inner {
	position: fixed;
	width: 100%;
	height: 90px;
	background: #000000; /* ←ここを変更 */
	box-shadow: 0px 2px 2px rgb(0 0 0 / 0%);
	top: 0;
	left: 0;
	text-align: center;
	z-index: 2;
}

/* Slick スライダー
-------------------------------------*/
.slider-wrap { 
	position: relative;
	height: 100vh;
	top: 0px;
	z-index: 1;
}

.slider-wrap::after {
    content: '';
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	z-index: -1;
}

.slider-img1 img, .slider-img2 img, .slider-img3 img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	animation: ImgAnime 60s forwards;
}

@keyframes ImgAnime { 
    0% {
        transform: scale(1.0);
    }
	100% {
        transform: scale(1.2);
    }
}

.top-main {
	width: 100%;
	height: calc(100vh - 90px);
	max-height: calc(100vh - 90px);
	object-fit: cover;
}

.main-logo {
	position: absolute;
	width: 24%;
	height: auto;
	top: 75%; left: 75%;
	transform: translate(-50%, -50%);
}

.copy-wrap {
	position: absolute;
	width: 92%;
	height: auto;
	text-align: center;
	top: 55%; left: 50%;
	transform: translate(-50%, -50%);
}

.copy {
	font-family: 'Shippori Mincho', serif;
	font-size: 3vw;
	color: #fff;
	line-height: 1.1;
}

.copy span {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 4.5vw;
	line-height: 1.3;
	opacity: 0.7;
	margin-bottom: 1em;
}

.scroll-wrap {
	position: absolute; 
	bottom: 0; right: 16px;
}

.scroll { 
	position: relative;
}

.scroll-img { 
	width: 40px;
	height: auto;
}

.scroll-line {
	position: absolute;
	bottom: 0%; left: 50%;
	transform: translate(-50%, 0);
	display: block;
	width: 0.5px;
	height: 80px;
	background: #fff;
	animation: 2s ease-in 1s infinite alternate both running expansion;
}

@keyframes expansion {
  0% {
    height: 0px;
	background: transparent;
  }
  30% {
	background: #fff;
  }
  100% {
    height: 80px;
  }
}

@media (max-width: 991.9px) {
  .scroll-img { width: 4.5vw; }
  
  @keyframes expansion {
    0% {
      height: 0px;
	  background: transparent;
    }
    30% {
	  background: #fff;
    }
    100% {
      height: 9vw;
    }
  }
}

@media (max-width: 575.9px) {
  .scroll-wrap { left: 0.5em; right: auto; }
  .scroll-img { width: 7.5vw; }
  
  @keyframes expansion {
    0% {
      height: 0px;
	  background: transparent;
    }
    30% {
	  background: #fff;
    }
    100% {
      height: 15vw;
    }
  }
}


/* トップページ
-------------------------------------*/
.container.top {
	margin-top: 90px;
}

.p-h3 {
	font-family: 'Shippori Mincho', serif;
	font-size: 22px;
	margin-bottom: 0.5em;
}

.full-width.top-solution {
	background: url("../images/top-business-back.jpg") no-repeat;
	background-size: cover;
	padding: 60px 0;
}

.full-width.green {
	background: rgba(93,185,93,0.1);
	padding: 96px 0;
}

.top-solution-box {
	background: rgba(255,255,255,0.9);
	padding: 1.3em;
}

.top-left img {
	margin-left: 0;
	width: 50vw;
	height: 360px;
	object-fit: cover;
}

.top-right {
	width: 550px;
	height: 360px;
}

.top-right .img1 {
	width: 300px;
	height: 500px;
	object-fit: cover;
	position: absolute;
	top: 50px;
}

.top-right .img2 {
	width: 300px;
	height: 500px;
	object-fit: cover;
	position: absolute;
	right: calc(50% - 50vw + 233px);
}

.top-contents p {
	font-size: 19px;
}

@media (min-width: 1200px) {
  .top-right .img1 {
	width: 27vw;
	height: 500px;
	object-fit: cover;
	position: absolute;
	top: 50px;
  }

  .top-right .img2 {
	width: 27vw;
	height: 500px;
	object-fit: cover;
	position: absolute;
	right: calc(50% - 50vw + 275px);
  }
}

.top-right img {
	width: 50vw;
	height: 360px;
	object-fit: cover;
}

.top-right.col-sm-6 {
	flex: none;
}

.div-link {
	position: relative;
    width: 100%;
    height: auto;
}

.div-link .box {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #fff;
}

.div-link img {
	display: block;
	transition-duration: 0.5s;
}

.div-link:hover img {
	opacity: 0.7;
	transform: scale(1.1);
	transition-duration: 0.5s;
}

.div-link.col-sm-4 {
	padding-right: 1px;
}

.full-width.contact {
	background-size: cover;
	color: #fff;
	text-align: center;
	padding: 48px 15px;
}

.full-width.contact .container {
	border: 1px solid rgba(255,255,255,0.6);
	padding: 60px 40px;
}

.full-width.contact2 {
	  padding: 120px 0;  /* ←ここで高さを調整 */
		text-align: center;
	background-image: url("/images/bg.png");
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {

  .contact2 {
    padding: 120px 20px;  /* ←こっちの方がバランス良い */
    text-align: center;
  }

}

.colorbox.white.contact {
	background-color: rgba(255,255,255,0.85);
}

.contact-tel {
	font-family: 'Sawarabi Gothic', sans-serif;
	font-size: 40px;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 0.2em;
}

p.contact-tel a span {
	color: #FFFFFF;
}

p.contact-tel a, .p-contact a, .tel a, .privacy a, .footer-tel a {
	pointer-events: none;
}

.contact-time {
	font-size: 15px;
	text-align: left;
	margin-bottom: 0;
}

.contact-time dt {
	width: 100%;
	font-weight: normal;
	margin-right: 0.7em;
	vertical-align: top;
}

.contact-time dd {
	width: 100%;
}

.time {
	font-size: 13px;
}

/* フッター
-------------------------------------*/
footer {
	background: #000000;
	color: #ffffff;
	padding: 48px 0;
}



.footer-p { font-size: 16px; }
.footer-tel a span { color: #fff; }
.copyright { 
	font-size: 12px;
	position: absolute;
	bottom: 0; left: 15px;
}

footer .navbar {
	font-size: 15px;
	width: 100%;
	line-height: 1.75;
	margin: 0 auto;
	padding: 0.5em 0;
	justify-content: space-between;
	align-items: center;
}

footer .nav-link {
	padding: 0 1em;
	line-height: 1.3;
}

.footer-logo {
	width: 40%;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media (min-width: 576px) {
	footer .col-sm-6:last-child {
		display: flex;
		justify-content: flex-end;
	}

	.footer-logo {
		margin: 0;
	}
}
@media (max-width: 768px) {
  .copyright { font-size: 1vw; }
}

@media (max-width: 575.9px) {
 .copyright { position: static; font-size: 2.5vw; }
}

@media (min-width: 1200px) {
 footer .nav-link {	margin: 0 1em; }
 footer .nav-link:first-child { margin-left: 0; padding-left: 0; }
 footer .nav-link:last-child { margin-right: 0; padding-right: 0; }
}

footer .navbar a {
    color: #fff;
	transition: 0.3s;
}

footer .navbar a:hover {
    color: #141414;
	text-decoration: none;
}




/* ヘッダー画像
-------------------------------------*/
.header-img {
	height: 550px;
	position: relative;
	top: 0px;
	background-image: url("../images/header.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.header-img::after {
	content: '';
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 80%) 100%);    width: 100%;
	width: 100%;
	height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.header-img.company { background-image: url("../images/header-company.jpg"); }
.header-img.service { background-image: url("../images/header-service.jpg"); }
.header-img.contact { background-image: url("../images/header-contact.jpg"); }

/* 会社概要
-------------------------------------*/
.container.common {
	margin-top: 0px;
}

.full-width.black {
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	height: 6em;
}

.full-width.black.top {
	background: transparent;
}


/* 事業内容
-------------------------------------*/
.rellax-wrap.no5 {
	background: url("../images/business-img1.jpg") no-repeat center center;
}

.rellax-wrap.no6 {
	background: url("../images/business-img2.jpg") no-repeat center center;
}


/* お問い合わせ
-------------------------------------*/
#main_contact, .contact.row {
	width: 70%;
}

.p-contact {
	font-size: 220%;
	color: #fff;
}

.p-contact a span {
	color: #fff !important;
}

.container.contact {
	width: 80%;
}

p[class="error"] {
	color: #d4ba28;
}

.privacy {
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 12rem;
	padding: 1rem;
	border: solid 1px #e6e6e6;
	border-radius: 5px;
	font-size: 90%;
}

.form-group {
	margin-bottom: 2em;
}

form label:not(.form-check-label) { 
	border-left: solid 2px #fff;
	padding-left: 0.5rem;
	margin: 0 0 1em;
}
form .pink label:not(.form-check-label) { 
	border-left: solid 6px #ED2375;
}

input[type="checkbox"]{
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.form-check-inline {
    padding-left: 0.5rem;

}


/* 新着情報
-------------------------------------*/
#newsWrap.index {
	width: 70%;
	height: 5.6em;
	overflow-y: auto;
	margin: 0 auto;
}

#newsWrap.index ul#newsList {
	margin-bottom: 0;
}

#newsWrap.index ul#newsList li {
	margin: 0;
	padding: 0;
	margin-bottom: 3px;
	list-style-type: none;
}
#newsWrap.index ul#newsList li:last-child {
	margin: 0;
}
#newsWrap.index ul#newsList .up_ymd { 
	width: 18%; 
	display: inline-block;
	vertical-align: top;
	color: #141414;
}

#newsWrap.index ul#newsList .title {
	width: 80%;
	display: inline-block;
	color: #141414;
}

#newsWrap.index ul#newsList .title a {
	color: #141414;
}

#newsWrap.index ul#newsList .title a:hover {
	color: #d4ba28;
}

@media (max-width: 1024px) {
  #newsWrap.index {
  	width: 85%;
  }
}
@media (max-width: 991.9px) {
  #newsWrap.index {
  	width: 100%;
  }
}
@media (max-width: 768px) {
  #newsWrap.index { height: 7em; }
  #newsWrap.index ul#newsList { font-size: 1.5vw; }
}
@media (max-width: 575.9px) {
  #newsWrap.index { height: 12.5em; }
  #newsWrap.index ul#newsList { font-size: 3.5vw; padding-left: 0; }
  #newsWrap.index ul#newsList .title { 
  	width: 100%; 
	display: block; 
	margin-left: 0;
  }
  #newsWrap.index ul#newsList li { margin-bottom: 1em; }
  #newsWrap.index ul#newsList li:last-child { margin-bottom: 0; }
  #newsWrap.index ul#newsList li:nth-child(3n) { margin-right: 1em; }
  #newsWrap.index ul#newsList li:nth-child(even) { margin-right: 0; }
  #newsWrap.index ul#newsList .up_ymd { width: 100%; }
}

.catName {
	display: none;
	padding: 3px 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 11px;
	line-height: 100%;
	margin: 0 2px;
}
.newMark {
	display: none;
	border: 1px solid #F00;
	padding: 1px 4px;
	font-size: 11px;
	line-height: 100%;
	background: #F00;
	color: #fff;
	box-shadow: 1px 1px 1px #999;
	border-radius: 8px;
	font-style: italic;
}
.comment {
	display: block;
	padding: 3px 0;
	float: left;
	overflow: hidden;
}
.thumbNailWrap {
	display: block;
	float: left;
	overflow: hidden;
	margin-top: 0.4em;
}
.thumbNailWrap img { 
	width: 100%;
	max-width: 100%;
}
.thumbNailWrap img:hover { 
	opacity: 0.7;
	transition: 0.4s;
}


/* 一覧ページ */
.container.news-list { 
	margin-top: 0px !important;
}

#newsWrap.list h3:empty {
	display: none;
}

#newsWrap.list {
	width: 100%;
}

#newsWrap.list ul#newsList {
	font-size: 15px;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1em;
}
#newsWrap.list ul#newsList li {
	width: calc((100% - 2em) / 3);
	display: inline-block;
	padding: 0;
	margin-bottom: 0;
	list-style-type: none;
	vertical-align: top;
}
#newsWrap.list ul#newsList li:nth-child(3n) {
	margin-right: 0;
}
#newsWrap.list ul#newsList li:nth-child(n+4) {
	margin-top: 2em !important;
}
#newsWrap.list ul#newsList li:nth-child(-n+3) {
	margin-top: 0 !important;
}
#newsWrap.list ul#newsList li:last-child {
	margin: 0;
}
#newsWrap.list ul#newsList .up_ymd {
	display: none;
}

#newsWrap.list ul#newsList .title {
	width: 100%;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
    overflow: hidden;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

#newsWrap.list ul#newsList .title a {
	color: #fff;
}

#newsWrap.list ul#newsList .title a:hover {
	color: #d4ba28;
	text-decoration: none;
}

#newsWrap.list .thumbNailWrap img {
	border-radius: 0px;
}

#newsWrap.list .category-btn {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1em; 
}

.btn.normal.cat {
	min-width: calc((100% - 2em) / 3) !important;
    padding: 0.5em 1em;
}

.btn.normal.cat:nth-child(3) {
	margin-right: 0;
}

@media (max-width: 1199.9px) {
  #newsWrap.list ul#newsList .title { font-size: 16px; }
}
@media (max-width: 991.9px) {
  #newsWrap.list ul#newsList .title { font-size: 14px; }
  #newsWrap.list ul#newsList .up_ymd { font-size: 12px; }
}
@media (max-width: 768px) {
  #newsWrap.list ul#newsList { font-size: 13.5px; }
}
@media (max-width: 575.9px) {
  .container.news-list { margin-top: 0px !important; }
  #newsWrap.list ul#newsList { padding-left: 0; }
  #newsWrap.list ul#newsList .title { 
  	width: 100%;
	font-size: 3vw;
	display: block; 
	margin-left: 0; 
	white-space: nowrap;
  }
  #newsWrap.list ul#newsList .up_ymd { width: 100%; }
  #newsWrap.list .category-btn { justify-content: space-between; grid-gap: 0; }
  #newsWrap.list ul#newsList li { width: calc((100% - 1em) / 2); }
  #newsWrap.list ul#newsList li:nth-child(even) { margin-right: 0; }
  #newsWrap.list ul#newsList li:nth-child(n+4) { margin-top: 1em !important; }
  #newsWrap.list ul#newsList li:nth-child(-n+3) { margin-top: 1em !important; }
  #newsWrap.list ul#newsList li:nth-child(-n+2) { margin-top: 0 !important; }
}

#newsWrap.list .catName {
	display: none;
	padding: 3px 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 11px;
	line-height: 100%;
	margin: 0 2px;
}
#newsWrap.list .newMark {
	display: none;
	border: 1px solid #F00;
	padding: 1px 4px;
	font-size: 11px;
	line-height: 100%;
	background: #F00;
	color: #fff;
	box-shadow: 1px 1px 1px #999;
	border-radius: 8px;
	font-style: italic;
}
#newsWrap.list .comment {
	display: block;
	padding: 3px 0;
	float: left;
	overflow: hidden;
}
#newsWrap.list .thumbNailWrap {
	display: block;
	float: left;
	overflow: hidden;
	margin-top: 0.4em;
}
#newsWrap.list .thumbNailWrap img { 
	width: 100%;
}
#newsWrap.list .thumbNailWrap img:hover { 
	opacity: 0.7;
	transition: 0.4s;
}

#newsWrap.list .result-title:empty {
	margin-top: 48px !important;
}

.pager {
	text-align:right;
	padding:10px;
	margin-top: 1em;
	clear:both;
}
.pager a { /*ページャーボタン*/
    border: 1px solid #d4ba28;
    border-radius: 5px 5px 5px 5px;
    color: #d4ba28;
    font-size: 12px;
    padding: 1px 7px 2px;
    text-decoration: none;
	margin:0 1px;
}
.pager a.current { /*現在のページのボタン*/
    background: #d4ba28;
    border: 1px solid #d4ba28;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    font-size: 12px;
    padding: 1px 7px 2px;
	margin:0 1px;
    text-decoration: none;
}

.pager a:hover {
    background: #e787a7;
    color: #fff;
}

.pager .fa {
	font-size: 14px;
}

.overPagerPattern {
	padding:0 2px ;	
}


/* 詳細ページ */
h2.news {
	line-height: 1.3;
}

.container.inner {
	max-width: 800px;
}

.container.detail h3 {
	width: 100%;
	height: auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 32px;
	font-weight: normal;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
    overflow: hidden;
	line-height: 1.2;
}
#up_ymd {
	text-align: right;
	margin-top: 3rem;
}
#detail {
	margin-top: 3rem;
}
.detail-comment {
	margin-top: 48px;
}
.detail-comment span {
	font-size: 17px !important;
}
.detailUpfile {
	margin: 0;
	text-align: center;
}
.detailUpfile img {
	max-width: 100%;
	height: auto;
}
.detailUpfile img:hover {
	opacity: 0.8;
	transition: 0.4s;
}
.caption {
	margin-top: 0.2em;
    text-align: center;
	white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
.photoBox {
	display: inline-block;
	vertical-align: top;
}
.photoBoxNumber1 {
	width: 100%;
	margin: 48px 0;
}
.photoBoxNumber2, .photoBoxNumber3, .photoBoxNumber4, .photoBoxNumber5 {
	width: 24.5%;
}
.photoBox.img-trim {
	padding-top: 18%;
}
.photoBox.img-trim:first-child {
	padding-top: 66.66666%;
}
.backORcloseBtn {
	text-align:center;
	line-height:100%;
	margin-top:15px;
}
.backORcloseBtn a {
	display:inline-block;
	padding:4px 15px;
	border:1px solid #aaa;
	color:#999;
	border-radius:6px;
	text-decoration:none;
	font-size:12px;
}
.pNav {
	font-size: 11px;
}

.lightcase-contentInner img {
	border-radius: 0px;
}

#lightcase-info #lightcase-title, #lightcase-info #lightcase-caption {
	white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 1199.9px) {
  .container.detail h3 { font-size: 2.5vw; }
}

@media (max-width: 768px) {
  .photoBox.img-trim:first-child { padding-top: 60%; }
}

@media (max-width: 575.9px) {
  .container.detail { margin-top: 60px !important; }
  .container.detail h3 { font-size: 4.5vw; height: auto; }
  h3.news { font-size: 5vw; line-height: 1.5; }
  .photoBoxNumber1 { margin: 1.5em 0; }
  .photoBoxNumber2, .photoBoxNumber3, .photoBoxNumber4, .photoBoxNumber5 { width: 49.3%; }
  .photoBoxNumber4, .photoBoxNumber5 { margin-top: 1em; }
  .photoBox.img-trim { padding-top: 32%; }
  .detail-comment { text-align: left; }
}


/* ハンバーガーメニュー
-------------------------------------*/
.toggle {  
    position: absolute; /* ボタンの配置位置  */
    top: 50%;
    right: 8px;
    transform: translate(-50%, -50%);
    width: 24px; /* ボタンの大きさ */
    height: 24px;
    display: flex; /* バーガーの線をボタン範囲の中心に配置 */
    justify-content: center;
    align-items: center;
    z-index: 10; /* 最前面に */
}

/***** 真ん中のバーガー線 *****/
.toggle-line {
    width: 100%; /* 線の長さと高さ */
    height: 2px;
    background-color: #ffffff; /* バーガー線の色 */
    position: relative; /* バーガー線の位置基準として設定 */
    transition: 0.5s;
}

/***** 上下のバーガー線 *****/
.toggle-line::before,
.toggle-line::after {
    content: "";
    position: absolute; /* 基準線と同じ大きさと色 */
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transition: 0.5s;
    left: 0;
}

.toggle-line::before {  
    transform: translateY(-8px); /* 上の線の位置 */
}

.toggle-line::after {  
    transform: translateY(8px); /* 下の線の位置 */
}


/***** メニューオープン時 *****/
.toggle-line.open {  
    background-color: transparent; /* 真ん中の線を透明に */
}

.toggle-line.open::before,
.toggle-line.open::after {
    content: "";
    background-color: #FFFFFF; /* 上下の線の色を変える */
    transition: 0.5s;
}

.toggle-line.open::before {  
    transform: rotate(135deg); /* 上の線を傾ける */
}

.toggle-line.open::after {  
    transform: rotate(-135deg); /* 上の線を傾ける */
}

/**************** 以下、メニューのスタイリング ****************/
.ham-menu {
    position: fixed;
    right: -70%; /* メニューの位置マイナス指定で画面外に */
    width: 70%;
    padding: 0;
    display: flex; /* メニューを縦に */
    flex-direction: column;
    background-color: rgba(255,255,255,0.95);
    transition: 0.5s;
    z-index: 20;
}

.ham-menu ul { padding-left: 0; }

.ham-menu-list {
    height: 90px;
    text-align: center;
    font-size: 15px;
	font-weight: 500;
    line-height: 1.3;
    padding: 0 1.5em;  
    display: flex; /* メニューテキスト位置をリスト内中心に */
    justify-content: center;
    align-items: center;
}

.ham-menu-list span {
	font-family: 'Sawarabi Gothic', sans-serif;
	font-weight: normal;
	color: #5db95d;
}

.ham-menu-list a {
	color: #ffffff !important;
}

.ham-menu-list:last-child a {
	margin-top: -0.1em;
}

.ham-menu-list a:hover {
	color: #353535 !important;
	transition: 0.3s;
	text-decoration: none;
}

.ham-menu-list p { 
	margin-bottom: 0;
	line-height: 1.5;
}

.ham-menu-list .btn span {
	color: #141414;
}

.ham-menu-list.act {
	color: #141414;
}

.ham-menu-list.act a {
	color: #5db95d !important;
}

.ham-menu-list span[class="tel"] {	
	font-size: 18px;
	font-weight: bold;
	color: #141414;
}

.ham-menu-list.act:before {
	content: "";
	width: 75px;
	border-top: solid 1px #5db95d;
	position: absolute;
	top: 88px;
}


@media (max-width: 1199.9px) {
  .ham-menu-list { font-size: 1.3vw; padding: 0 1.5vw; }
  .ham-menu-list.act:before { width: 6.5vw; }
}

@media (max-width: 991.9px) {
  .ham-menu { top: 80px; width: 40%; height: calc(100vh - 80px); right: -80%; }
  .ham-menu-list span { font-size: 18px; }
  .ham-menu-list.act { position: relative; }
}

@media (max-width: 768px) {
  .ham-menu-list { height: 60px; }
  .ham-menu-list span { font-size: 15px; }
  .ham-menu-list.act::before { width: 52px; top: 58px; }
}

@media (max-width: 575.9px) {
  .ham-menu { top: 50px; width: 70%; height: calc(100vh - 50px); padding-top: 9vw; }
  .ham-menu-list { font-size: 4vw; height: auto; }
  .ham-menu-list a { height: 13vw; }
  .ham-menu-list:first-child { height: 13vw; }
  .ham-menu-list span { font-size: 6vw; }
  .ham-menu-list.act::before { width: 20vw; top: 8vw; left: 50%; transform: translate(-50%, 0); border-top: solid 1px #5db95d; }
	.ham-menu { background-color: #000;}
  .toggle { width: 24px; height: 24px; }
  .toggle-line::before { transform: translateY(-8px); }
  .toggle-line::after { transform: translateY(8px); }
}

@media (max-width: 360px) {
  .ham-menu { padding-bottom: 60px; }
  .ham-menu-list:last-child a { margin-top: 0; }
}

@media (max-width: 360px) {
  .ham-menu { padding-bottom: 60px; }
  .ham-menu-list:last-child a { margin-top: 0; }
}


/***** メニューオープン時位置0にして画面内に *****/
.ham-menu.open {
  position: absolute;
  right: 0;
}

/* 576px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 576px) {
  .toggle {
    display: none;
  }

  .ham-menu {
    position: absolute;
    top: 50%; right: 0;
	transform: translate(0, -50%);
    width: auto;
	height: auto;
	margin-bottom: 0;
	background-color: rgba(255,255,255,0);    
    display: flex; /* メニューを横に */
    flex-direction: row;
	align-items: center;
  }
}

/* サブメニュー */
@media screen and (min-width: 768px) {
  .sub-menu {
  	position: absolute;
  	width: auto;
  	top: 90px; left: 5px;
  	list-style: none;
  }  
  .sub-menu-item {
    font-size: 15px;
  	overflow: hidden;
  	opacity: 0;
  	height: 0;
  	/* サブメニューが出現する速度の調整 */
  	-webkit-transition: 0.3s;
  	transition: 0.3s;
  }  
  .sub-menu-item a {
  	width: 100%;
	display: flex;
  	justify-content: start;
	background: #fff;
	padding: 1.2em;
  }
  
  /* IE11対策 */
  _:-ms-lang(x)::-ms-backdrop, .sub-menu-item.a a, _:-ms-lang(x)::-ms-backdrop, .sub-menu-item.b a {
	display: block;
	text-align: left;
	margin-left: -15px;
  }
  _:-ms-lang(x)::-ms-backdrop, .sub-menu-item a:first-child {
	padding-top: 15px;
  }
  
  .sub-menu-item a:before {
  	content: "\f105";
  	font-family: "FontAwesome";
  	color: #5db95d;
  	margin-right: 0.6em;
  }
  
  .sub-menu-item a:hover {
  	color: #e787a7;
	background: #ddedf5;
    text-decoration: none;
    transition: 0.5s;
  }
  
  
  /* メインメニューマウスカーソルが乗ったらサブメニューを出現させる */
  .ham-menu-list:hover > .sub-menu > .sub-menu-item {
   	overflow: visible;
   	opacity: 1;
   	height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .sub-menu {
  	top: 60px; left: 5px;
	width: 230px;
  }  
  .sub-menu-item {
    font-size: 11px;
  }  
  .sub-menu-item a {
	padding: 1em;
  }  
  
  /* メインメニューマウスカーソルが乗ったらサブメニューを出現させる */
  .sub-menu-item {
   	height: 35px !important;
  }
}

@media screen and (max-width: 768px) {
  .sub-menu { top: 0; display: none; }
  .sub-menu-list {
    font-size: 2vw;
	text-align: left;
	padding: 0.2em 2em;
	width: 100%;
	position: relative;
  }
 .sub-menu-list span {
   display: inline-block;
   color: #0078c0;
 }
 .sub-menu-item {
    font-size: 1.8vw;
    text-align: left;
	list-style: none;
	padding: 0.2em 2em 0.2em 0;
  }
  .sub-menu-item:before {
    content: "\f0a9";
	font-family: "FontAwesome";
	color: #0078c0;
	margin-right: 0.6em;
  }
  .sub-menu-list:first-child, .sub-menu-item:first-child { padding-top: 1em; }
  .sub-menu-item.a a, .sub-menu-item.b a, .sub-menu-item.c a { padding: 0; }
}

@media screen and (max-width: 575.9px) {
  .sub-menu { display: none; top: 12vw; margin-left: 1em; padding-bottom: 1em; }
  .sub-menu-item a { padding: 0; } 
  .sub-menu-list {
    font-size: 4vw;
	text-align: center;
	padding: 0.5em 2em;
	width: 100%;
	position: relative;
	display: contents;
  }
 .sub-menu-list span {
   display: inline-block;
   color: #5db95d;
 }
 .sub-menu-list span[class="tel"] {
   color: #1e1e1e;
 }
 .sub-menu-item {
    font-size: 3.5vw;
    text-align: left;
	list-style: none;
	white-space: nowrap;
	padding: 0.5em 2em 0.5em 0;
  }
  .sub-menu-item:before {
    content: "\f105";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	color: #5db95d;
	margin-right: 0.6em;
  }
  .sub-menu-list:first-child, .sub-menu-item:first-child { padding-top: 0.5em; height: 11vw; }
  .sub-menu-item.a a, .sub-menu-item.b a, .sub-menu-item.c a { padding: 0; }
}



/* タイトル
-------------------------------------*/
.title1 {
    font-size: 22px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 1;
	color: #5fbce7;
	text-align: center;
	margin-bottom: 48px;
}


/* リスト
-------------------------------------*/
ul, ol {
	padding-left: 1.2em;
}

ol li {
	margin-bottom: 0;
}

.note dt {
	position: relative;
}
.note dt span {
	position: absolute;
}
.note dd {
	padding-left: 1em;
}

ul.asterisk li {
	list-style-type: none;
	text-indent: -1.2em;
}

ul.asterisk li:before {
	display: inline;
	content: '※';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.2em;
}

ol.asterisk {
	counter-reset: number;
	list-style: none;
}

ol.asterisk li:before {
	counter-increment: number;
	content: "\f069"counter(number)" ";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.2em;
}

ul.gear li {
	list-style-type: none;
	text-indent: -1.2em;
	font-size: 110%;
}

ul.gear li:before {
	display: inline;
	content: '\f013';
	font-family: 'FontAwesome';
	margin-right: 0.4em;
}

ol.list_parentheses {
	padding: 0;
	margin: 0;
}
ol.list_parentheses li {
	list-style-type: none;
	list-style-position: inside;
	counter-increment: cnt;
}
ol.list_parentheses li:before{
	display: marker;
	content: "(" counter(cnt) ") ";
}


/* ボタン
-------------------------------------*/
.btn {
	border: none;
	border-radius: 0;
	transition: 0.4s;
	position: relative;
	z-index: 1;
}

.btn.normal, .btn.form, .btn.return, .btn.contact-lg { 
	min-width: 240px !important;
	padding: 0.8em 1em;
	color: #fff;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 16px;
	border: solid 1px #fff;
}

.btn.text {
	font-family: "Helvetica";
	font-size: 20px;
	color: #fff;
	padding: 0;
}
.btn.text:hover {
	color: #d4ba28;
}

.btn.contact-lg {
	min-width: 400px !important;
	font-size: 18px;
	padding: 0.6em 1em;
}

.btn.form {
	color: #ffffff;
	border: solid 1px #ffffff;
}

.btn.normal::after, .btn.form::after, .btn.contact-lg::after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: #ffffff;
	transition: all 0.3s ease;
	margin-left: 0;
}

.btn.normal:hover, .btn.contact-lg:hover { background: #ffffff; color: #000000; border: solid 1px #fff; }
.btn.form:hover, .btn.return:hover {background: #fff;color: #000000;border: solid 1px #ffffff;}


.btn::after {
	display: inline;
	content: '\f105';
	font-family: "FontAwesome";
	font-size: 100%;
	margin-left: 0.5em;	
}

.btn.form::after, .btn.return::after {
	background: #fff;
}

.btn.normal:hover::after, .btn.form:hover::after, .btn.return:hover::after, .btn.contact-lg:hover::after {
	left: 0;
	width: 100%;
}


/* バッジ
-------------------------------------*/
.badge {
	font-weight: normal;
	vertical-align: baseline;
	border-radius: 3px;
}

.badge-primary {
	font-size: 80%;
	padding: 0.2em 0.5em;
	background-color: #194475;
}

.badge-danger {
	font-size: 80%;
	color: #fff;
	padding: 0.2em 0.5em;
	background-color: #6b0000;
	border-radius: 3px;
}


.badge-dark {
	font-size: 80%;
	background-color: #194475;
}

a.badge .badge-dark {
	padding: 0.2em 0.5em;
}

a.badge-dark:hover, a.badge-dark:focus {
  background-color: #88b8dc;
}


/* テーブル
-------------------------------------*/
.table-1 { width: 100%; }
.table-1 th {
	width: 25%;
	padding: 1em;
	font-weight: normal;
	vertical-align: top;
	border-bottom: solid 1px #fff;
}
.table-1 td {
	padding: 1em;
	border-bottom: solid 1px rgba(255,255,255,0.5);
}

.table-2 { width: 100%; }
.table-2 tr {
	border-bottom: 1px solid #d4ba28;
	margin-bottom: 5px;
}
.table-2 tr:nth-child(odd) td {
	background: rgba(30,122,208,0.07);
}
.table-2 th {
	padding: 0.4em 0.8em;
	border-top: 1px solid #d4ba28;
	border-left: 1px solid #d4ba28;
	border-right: 1px solid #d4ba28;
	font-weight: bold;
	text-align: center;
	background: rgba(30,122,208,0.15);
}
.table-2 td {
	padding: 0.4em 0.7em;
	border-top: 1px solid #d4ba28;
	border-left: 1px solid #d4ba28;
	border-right: 1px solid #d4ba28;
	background-color: #fff;
	vertical-align: middle;
	text-align: center;
}
.table-2 td:before {
	padding: 10px;
	border-right: 1px solid #d4ba28;
	background-color: #fff;
}
.table-2.price th, .table-2.price td {
	border-left: none;
}

.table-res { width: 100%; }
.table-res tr {
	border-bottom: 1px solid #d4ba28;
	margin-bottom: 5px;
}
.table-res th {
	padding: 0.4em 0.8em;
	border-top: 1px solid #d4ba28;
	border-left: 1px solid #d4ba28;
	border-right: 1px solid #d4ba28;
	font-weight: bold;
	background-color: rgba(30,122,208,0.15);
}
.table-res td {
	padding: 0.4em 0.8em;
	border-top: 1px solid #d4ba28;
	border-left: 1px solid #d4ba28;
	border-right: 1px solid #d4ba28;
	background-color: #fff;
}
.table-res td:before {
	padding: 0.4em 0.8em;
	border-right: 1px solid #d4ba28;
	background-color: #fff;
}
.table-res span { color: #e41a89; }

@media (max-width: 991.9px) {
  .table-2 { width: 100%; }
}
  
@media (max-width: 575.9px) {
  .table-1 { width: 100%; }
  .table-1 th { font-weight: bold; }
  .table-1 th {
    width: 100%;
	display: block;
	padding: 1em 1em 0;
	border-bottom: none;
	color: #fff;
  }
  .table-1 th:first-child {
	border-top: none;
  }
  .table-1 td {
    width: 100%;
	display: block;
	padding: 1em;
  }
  .table-1 td:nth-child(2) {
	border-top: none;
  }
  
  .scroll-table { 
	overflow-x: scroll;
	white-space: nowrap;
  }
  
  .table-2 th, .table-2 td { 
  	padding: 0.3em 1em; width: auto;
  }
  .table-2.price th {
  	border-top: none;
  }
  .table-2.price th, .table-2.price td {
	border-left: 1px solid #d4ba28;
  }

  .table-res {
    display: block;
  }
  .table-res thead {
    display: none;
  }
  .table-res tbody, .table-res tr, .table-res th, .table-res td {
    display: block;
    width: 100%;
  }
  .table-res th {
    border: none;
    background-color: rgba(242,250,255,0);
  }
  .table-res td {
    position: relative;
    padding: 0.3em 1em 0.3em calc(40% + 1em);
    border-top: 1px solid #d4ba28;
    border-left: 1px solid #d4ba28;
    border-right: 1px solid #d4ba28;
    background-color: #fff;
  }
  .table-res td:before {
    content: attr(aria-label);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 40%;
    height: 100%;
    padding: 10px;
    border-right: 1px solid #d4ba28;
    background-color: #f2faff;
  }
}


/* ポジション
-------------------------------------*/
.br-0 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.bc-30 {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, 0);
}
  
@media (min-width: 769px) {
  .br-lg-0 {
	position: absolute;
	bottom: 0;
	right: 0;
  }
}

@media (min-width: 577px) {
  .br-md-0 {
	position: absolute;
	bottom: 0;
	right: 0;
  }
}

.br-30 {
	position: absolute;
	bottom: 30px;
	right: 30px;
}


/* インデント
-------------------------------------*/
.indent-1 {
padding-left: 1.3em;
text-indent: -1.3em;
}

.indent-2 {
padding-left: 1em;
text-indent: -1em;
}


/* フォーム
-------------------------------------*/
.form-control {
	font-size: 100%;
}

.form-control::-webkit-input-placeholder { color: #b4b4b4; }
.form-control::-moz-placeholder { color: #b4b4b4; }
.form-control:-ms-input-placeholder { color: #b4b4b4; }
.form-control::-ms-input-placeholder { color: #b4b4b4; }
.form-control::placeholder { color: #b4b4b4; }


/* トップに戻る
-------------------------------------*/
#page_top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #141414;
	border: solid 1px #fff;
	border-radius: 0px;
	transition: 0.3s;
	z-index: 10;
}

#page_top a {
    width: 50px;
    height: 50px;
	position: relative;
    display: block;
    text-decoration: none;
}

#page_top:hover {
	background-color: #988933;
}

#page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f062';
    font-size: 25px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
}


/* アンカーリンクの位置調整
-------------------------------------*/
a.anchor {
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}

a.anchor2 {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}

a.anchor3 {
    display: block;
    padding-top: 160px;
    margin-top: -160px;
	position: absolute;
	z-index: -1;
}


/* モーダルウィンドウ
-------------------------------------*/
#modal-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 20;
}

#modal-window img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 92%;
  max-height: 92%;
}

.img-pointer {
 cursor: pointer;
}


/* フェードインアニメーション
-------------------------------------*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 1;
  transform: translateX(-50px);/*-50px*/
  transition: all 1s;
}
.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*右から←にフェードイン*/
.right-to-left {
  opacity: 1;
  transform: translateX(50px);/*50px*/
  transition: all 1s;
}
.right-to-left.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*下から上にフェードイン*/
.down-to-top {
  opacity: 1;
  transform: translateY(50px);/*50px*/
  transition: all 1s;
}
.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 575.9px) {
  /*左から右にフェードイン*/
  .down-to-top.spL, .right-to-left.spL {
	opacity: 1;
	transform: translateX(-50px);/*-50px*/
	transition: all 1s;
  }
  .down-to-top.spL.scrollin, .right-to-left.spL.scrollin {
	opacity: 1;
	transform: translate(0);
  }
  /*右から←にフェードイン*/
  .down-to-top.spR, .left-to-right.spR {
    opacity: 1;
    transform: translateX(50px);/*50px*/
    transition: all 1s;
  }
  .down-to-top.spR.scrollin, .left-to-right.spR.scrollin  {
    opacity: 1;
    transform: translate(0);
  }
}


/* パララックス
-------------------------------------*/
.parallax-wrap {
	height: 100%;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.parallax-content {
	padding-top: 2em;
	margin-left: auto;
}

.parallax-inner {
	max-width: 800px;
}

/* iphone */
.iphone .parallax-wrap {
	position: relative;
}
.iphone .parallax-wrap {
	background: none;
}
.iphone .parallax-wrap::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-image: url(../images/company-img1.jpg);
	background-size: cover;
}

.iphone .parallax-wrap.bg-02::before { background-image: url("../images/contact-img1.jpg"); }
.iphone .parallax-wrap.bg-03::before { background-image: url("../images/achievement-img1.jpg"); }

.iphone .parallax-content {
	position: relative;
	z-index: 1;
}


/* 画像サイズ調整
-------------------------------------*/
.img-fit {
	height: 0;
	display: block;
	padding-bottom: 50%; /* 高さを指定（ボックスの横幅を基準） */
	overflow: hidden;
	position: relative;
}

.img-fit img {
	max-width: inherit;
	max-height: inherit;
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	font-family: 'object-fit: scale-down;';
	position: absolute;
	left: 0;
	top: 0;
}

.img-trim {
  position: relative;
  overflow: hidden;
  padding-top: 66.66666%; /* 比率 */
}

.img-trim2 {
	height: 0;
	display: block;
	padding-bottom: 100%; /* 高さを指定（ボックスの横幅を基準） */
	overflow: hidden;
	position: relative;
	border: solid 1px #e6e6e6;
}

.img-trim img, .img-trim2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 動画
-------------------------------------*/
.movie-wrap {
    position: relative;
    padding-bottom: 66.66666%; /*アスペクト比 3:2の場合の縦幅*/
    height: 0;
    overflow: hidden;
	margin: 0 auto;
}

.movie-wrap2 {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
	margin: 0 auto;
}

.movie-wrap video, .movie-wrap2 video {
	width: 100%;
}


/* Google map
-------------------------------------*/
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 50%;
	position: relative;
}

.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.gmap.small {
	padding-bottom: 75%;
}

@media (min-width: 1025px) {
  .gmap { height: 420px; padding-bottom: 0; }
  .gmap.small { height: 400px; padding-bottom: 0; }
}


/* DatetimePicker
-------------------------------------*/
.datepicker-days th.dow:first-child,
.datepicker-days td:first-child {
    color: #f00;
}
.datepicker-days th.dow:last-child,
.datepicker-days td:last-child {
    color: #00f;
}


/* Q&Aがついたアコーディオン
-------------------------------------*/
.accordion {
  width: 100%;
}

/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
  display: block;
  padding: 10px 80px 10px 10px;
  background: rgba(158,108,204,0.08);
  cursor: pointer;
  margin: 5px 0;
  position: relative;
}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #141414;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}
/* ↑ここまで共通 */


/* Q&A追加 */
.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
}

.accordion_qa .A {
	color: #be004c;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -0.4em;
  left: -1.3em;
}

.accordion_qa .Q::before {
  content: 'Q.';
	color: #d4ba28;
}

.accordion_qa .A::before {
  content: 'A.';
}

.accordion_qa .accordion-open {
  padding-left: 4em;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 4em;
}

@media (max-width: 1199.9px) {
  .accordion_qa .Q, .accordion_qa .A { font-size: 4vw; }
  .accordion_qa .accordion-open { padding-left: 3.5em; }
  .accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner { padding: 10px 10px 10px 3.5em; }
}


/* 5 Columns
-------------------------------------*/
.col-15, .col-sm-15, .col-md-15, .col-lg-15 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
}

@media (min-width: 0px) {
.col-15 {
	width: 20%;
	flex: 0 0 20%;
  }
}

@media (min-width: 768px) {
.col-sm-15 {
	width: 20%;
	flex: 0 0 20%;
  }
}

@media (min-width: 992px) {
.col-md-15 {
	width: 20%;
	flex: 0 0 20%;
  }
}

@media (min-width: 1200px) {
.col-lg-15 {
	width: 20%;
	flex: 0 0 20%;
  }
}


/* メディアクエリ
-------------------------------------*/
@media (max-width: 1199.9px) {
  body { font-size: 94%; }
  h2 { font-size: 3.6vw; }
  h2 span { font-size: 2.5vw; }
  h3 { font-size: 30px; height: auto; }
  h4 { font-size: 17px; }
  .logo img { height: 9vw; }

  .top-left img { height: 580px; }
  .top-right { width: 465px; }
  
}

@media (max-width: 991.9px) {
  body { font-size: 90%; }
  h3 { font-size: 22px; }
  h4 { font-size: 17px; }
  h4.common { font-size: 20px; }
  
  .logo { left: 1.5em; }
  .header-tel { font-size: 18px; top: 10px; }
  .btn.contact { font-size: 1.5vw; min-width: auto !important; padding: 0.3em 1em; }
  .top-main { height: auto; max-height: calc(100vh - 90px); }
  .contact-tel { font-size: 26px; margin: 0.2em 0 0.5em; }
  .contact-time { font-size: 12px; }
  
  footer .navbar { font-size: 1.19vw; }
  
  .top-left img { height: 520px; }

  p.english { font-size: 1.7vw; }
  .colorbox.black { width: 50vw; }
  
  .btn.normal, .btn.return { font-size: 1.5vw; } 
  .btn.normal.contact { font-size: 1.3vw; }
  .btn.contact-lg { min-width: 90% !important; font-size: 14px; }
}

@media (max-width: 768px) {
  body { font-size: 1.5vw; }
  h2 { line-height: 60px; }
  h2 span { font-size: 3vw; }
  h3 { font-size: 3vw; }
  .p-h3 { font-size: 9.2vw; }
  h4 { font-size: 2vw; }
  h5 { font-size: 2vw; }
  h6 { font-size: 1.2vw; }
  
  .nav-inner { height: 60px; }
  .navbar {	font-size: 12px; }
  .header-tel { font-size: 15px; top: 3px; }
  .header-tel span.time { font-size: 10px; }
  
  .slider-wrap { top: 0px; height: 66.66666vw; }
  .slider-img1 img, .slider-img2 img, .slider-img3 img { height: 66.66666vw; }
  .header-img { top: 0px; height: 280px; }
  
  .container.top { margin-top: 0px; }
  .container.common { margin-top: 0px; }
  .top-right { width: 345px; height: auto; }
  .top-right img { height: 258px; }

  .br-30 { bottom: 20px; right: 20px; } 
  .lead { font-size: 1.8vw; } 
  .lead2 { font-size: 2.4vw; }
  
  .btn.normal, .btn.form, .btn.return { min-width: 222px !important;  font-size: 1.7vw; } 
  .btn.normal.products { font-size: 14px; }
  .btn.contact { font-size: 12px; }
  
  footer .navbar { font-size: 1.5vw; }
}

@media (max-width: 767.9px) {
  h3 { font-size: 3.1vw; }
  footer { font-size: 1.3vw; }
  footer .navbar { font-size: 0.75vw; }
  
  .contact-tel { font-size: 3.2vw; margin: 0 0 0.5em; }
  .time { font-size: 1.5vw; }
  .btn.contact-lg { font-size: 1.7vw; }
}

@media (max-width: 575.9px) {
  body { font-size: 3.5vw; }

  a {
    -webkit-tap-highlight-color: rgba(10, 10, 10, 1);
    tap-highlight-color: rgba(10, 10, 10, 1);
  }

  a[class] { color: #fff; }
  
  h2 { 
  	font-size: 6vw;
	line-height: 50px;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
  }
  h2 { font-size: 6vw; line-height: 0.8; margin: 0; }
  h2 span { font-size: 3vw; }
  h3 { font-size: 5.4vw; text-align: center; }
  h4 { font-size: 4.7vw; text-align: center; }
  h5 { font-size: 3.7vw; }
  h6 { font-size: 3.2vw; }
  
  .lead { font-size: 4vw; } 
  .lead2 { font-size: 4.5vw; }
 
  .nav-inner { height: 50px; position: fixed; }
  .logo { left: 20px; }
  .logo img {width: auto;height: 10vw;}
  .logo-txt { left: calc(30vw + 25px); font-size: 2.8vw; }
  .header-tel { position: static; font-size: 6vw; }
  .header-tel span.time { font-size: 3.5vw; line-height: 2; }
  
  .start p img { width: 50vw; }
  .slider-wrap { top: 0px; height: 100vh; }
  .slider-img1 img, .slider-img2 img, .slider-img3 img { height: 100vh; }
  .top-main { height: 100%; }
  .main-logo { width: 40%; top: 50%; left: 50%; }
  .copy-wrap { top: 50%; }
  .copy { font-size: 7.1vw; line-height: 1.3; }
  .copy span { font-size: 7.5vw; }
  .copy2 { font-size: 4vw; margin-top: 2em; }
  .scroll-wrap { display: block; }
  
  .container.top { margin-top: 0px; }
  .top-right { width: 100%; height: 100%; margin-left: 15px; }
  .top-right.col-md-6 { padding: 0 15px; }
  .top-right img { margin-left: -15px; }
  .top-right .img1, .top-right .img2 { width: 50vw; height: auto; margin: 0; }
  .top-right .img1 { top: 0; left: 50%; }
  .top-right .img2 { left: -15px; }
  .top-right img, .top-left img { width: calc(100vw - 30px); height: 60vw; }
  
  .rellax-wrap {
	min-height: auto;
	padding: 5em 0;
  }
  .rellax-content { text-align: center; }
  .top.row { width: 100%; }
  .top.row.end { margin-left: 0px; }
  p.english { font-size: 4vw; }
  .btn.text { font-size: 5.5vw; }
  
  .header-img { height: 180px; top: 0px; }
  .gmap { padding-bottom: 75%; }
  .contact-tel { font-size: 7.4vw; }
  .time { font-size: 3vw; }
  p.contact-tel a, .p-contact a, .tel a, .privacy a, .footer-tel a { pointer-events: auto; text-decoration: none; }
  
  .full-width.black.top { background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); }
  .parallax-content { width: 100%; padding-top: 0; }
  
  .top-products .col-6:nth-child(odd) { padding-right: 7.5px; }
  .top-products .col-6:nth-child(even) { padding-left: 7.5px; }

  a.anchor {
    padding-top: 50px;
    margin-top: -50px;
  }
  a.anchor2 {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
  }
  
  .btn.normal, .btn.form, .btn.return {
	min-width: 60% !important;
	width: auto;
	font-size: 4vw;
	padding: 0.6em 2em;
  }
  .btn.normal.cat { padding: 0.3em 0.9em; }
  .btn.normal.contact { font-size: 4vw; width: 90%; height: auto; padding: 0.5em; margin-left: 5%; }
  .btn.normal.contact:hover { color: #d4ba28 !important; }
  .btn.contact p { font-size: 3.6vw; }
  .btn.contact-lg { font-size: 4vw; min-width: 80% !important; padding: 0.8em 1em; margin-top: 0; }
 
  #main_contact, .contact.row { width: 100%; margin: 0 auto; }
  #privacy p, #privacy li {	font-size: 90%; }
  .privacy { padding-left: 0.5rem; }
  .container.contact { width: 100%;} 
  .colorbox.black { width: 100%; }

  footer { font-size: 3.5vw; padding: 1em 0 2.5em; }
  footer[class="no-contact"] { margin-top: 0; }
  footer .navbar { display: none; }
  .footer-logo { width: 35vw; height: auto; margin-top: 2em; }
  .footer-p { font-size: 4vw; }
  
  #page_top a { width: 36px; height: 36px; }
  #page_top a:before { font-size: 20px; }
}

@media (max-width: 375px) {
  .top-contact { margin-top: 498px !important; }
}
@media (max-width: 360px) {
  body { font-size: 3.4vw; }
  .br-xs { display: block; }
  .btn.contact-lg { min-width: 215px !important; }
  h5.service { font-size: 3.2vw; }
  .lead2 { font-size: 3.6vw; }
}

@media (min-width: 992px) {
  .top-products h4 {
	width: 290px;
  }
}

@media (min-width: 1200px) {
  .top-products h4 {
	width: 350px;
  }
}
@media screen and (max-width: 575.9px) {
  .full-width.contact2 {
    padding: 140px 20px !important;
    background-size: 85% auto !important;
    background-position: center center !important;
  }
}

/* serviceページのヘッダー高さ調整 */
.header-img.service {
  height: 550px !important;
}

@media (max-width: 575.9px) {
  .header-img.service {
    height: 300px !important;
  }
}

/* お問い合わせページを中央寄せ */
#main_contact,
.contact.row {
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
}
#service01 {
  scroll-margin-top: 120px;
}

#service02 {
  scroll-margin-top: 120px;
}

#service03 {
  scroll-margin-top: 120px;
}

.border-box{
    border: 1px solid rgba(255,255,255,.6);
    padding: 60px;
    color: #fff;
    background: rgba(255,255,255,.03);
}