@charset "utf-8";
/* ------ General Settings ------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.grecaptcha-badge {
 visibility: hidden;
}
/* 固定ヘッダーの高さ分、スクロール停止位置を自動でズラす */
html {
  scroll-padding-top: 126px; /* PC */
	scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 67px; /* SP */
  }
}
img {
 width: 100%;
 height: auto;
 vertical-align: bottom;
}
figure {
 margin: 0;
 padding: 0;
}
a {
 transition: all 0.5s 0s ease;
 color: #242424;
}
a::before,a::after {
 transition: all 0.5s 0s ease;
 color: #242424;
}
a img {
 transition: opacity 0.3s ease-out;
}
a:hover {
 opacity: 0.7;
}
a:hover img {
 opacity: 0.7;
}
body {
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
 text-align: center;
 margin: 0;
 padding: 0;
 font-size: 14px;
 color: #242424;
 line-height: 2;
}
.wrapper {
 overflow: hidden;
}
.br_pc {
 display: inherit;
}
.br_sp {
 display: none;
}
#ple-animates {
 display: inline-block;
 position: absolute;
 /* left: 50%; */
 /* top: 50%; */
 transform: none !important;
}
@media screen and (max-width: 767px) {
 a:hover {
  opacity: 1;
 }
 body {
  font-size: 4vw;
  line-height: 1.8;
 }
 .br_pc {
  display: none !important;
 }
 .br_sp {
  display: inherit !important;
 }
}
/* ------ header ------ */
#header {
 width: 100%;
 top: 0;
 position: fixed;
 background: #fff;
 height: 126px;
 z-index: 900;
 box-sizing: border-box;
 box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.header_inner {
 width: 1000px;
 height: 126px;
 margin: 0 auto;
 position: relative;
 padding-top: 5px;
}
.header_logo {
 position: absolute;
 width: 272px;
 height: 45px;
 top: 23px;
 left: 0;
}
#g-nav-main {
 position: absolute;
 top: 82px;
 left: 0;
}
#g-nav-main ul {
 display: flex;
 justify-content: space-between;
 padding: 0 10px;
}
#g-nav-main li {}
#g-nav-main li + li {
 padding-left: 60px;
}
#g-nav-main li a {
 font-size: 15px;
 font-weight: 500;
}
#g-nav-main li a:hover{
	color: #666666;
	opacity: 1;
}


/*global nav用*/
body.fixed {
 width: 100%;
 height: 100%;
 position: fixed;
 z-index: 1;
}
#g-nav {
 position: fixed;
 z-index: 999;
 top: 86px;
 right: -120%;
 width: 100%;
 height: 100vh;
 transition: all 0.6s;
}
#g-nav.panelactive {
 right: 0;
}
#g-nav.panelactive #g-nav-list {
 position: fixed;
 z-index: 999;
 width: 100%;
 height: 100vh;
 overflow: auto;
 -webkit-overflow-scrolling: touch;
}
/*global nav 表示*/
.g-nav-list-inner {
 position: absolute;
 z-index: 999;
 top: 0;
 right: 0;
 width: 446px;
 background: #FBA518;
 text-align: left;
 padding: 55px 60px 140px 55px;
 box-sizing: border-box;
	display: none;
}
.g-ttl {
 font-size: 22px;
 font-weight: bold;
 color: #fff;
 margin-bottom: 20px;
 padding-bottom: 20px;
 border-bottom: #242424 1px solid;
}
#g-nav ul {
 margin-bottom: 20px;
 padding-bottom: 20px;
}
#g-nav ul:last-child {
 border: none;
}
/*リストのレイアウト設定*/
#g-nav li {
 list-style: none;
 text-align: left;
}
#g-nav li a {
 text-decoration: none;
 padding: 10px;
 display: block;
 text-transform: uppercase;
 letter-spacing: 0.1em;
 font-weight: bold;
}
/*global nav ボタン*/
.openbtn {
 display: none;
 position: fixed;
 z-index: 9999;
 top: 4px;
 right: 0px;
 cursor: pointer;
 width: 100px;
 height: 82px;
 color: #fff;
 background: #FBA518;
 font-size: 16px;
 padding: 14px 0 0 0;
 font-weight: bold;
 line-height: 1.2;
}
/*×に変化*/
.openbtn span {
 display: inline-block;
 transition: all .4s;
 position: absolute;
 left: 30px;
 height: 3px;
 border-radius: 2px;
 background-color: #fff;
 width: 39px;
}
.openbtn span:nth-of-type(1) {
 top: 26px;
}
.openbtn span:nth-of-type(2) {
 top: 39px;
}
.openbtn span:nth-of-type(3) {
 top: 51px;
}
.openbtn.active span:nth-of-type(1) {
 top: 32px;
 left: 32px;
 transform: translateY(6px) rotate(-45deg);
 width: 35px;
}
.openbtn.active span:nth-of-type(2) {
 opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
 top: 44px;
 left: 32px;
 transform: translateY(-6px) rotate(45deg);
 width: 35px;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 767px) {
 #header {
  top: 0;
  position: fixed;
  border-top: none;
  height: 67px;
  z-index: 900;
  box-sizing: border-box;
 }
 .header_inner {
  width: 100%;
  height: 67px;
  margin: 0 auto;
  position: relative;
  padding-top: 0;
 }
 .header_logo {
  position: absolute;
  width: 170px;
  top: 10px;
  left: 20px;
 }
 #g-nav-main {
  display: none;
 }
 /*global nav用*/
 #g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 80%;
  height: 100vh;
  background: none;
  transition: all 0.6s;
 }
 #g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 80%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
 }
 /*global nav 表示*/
 .g-nav-list-inner {
		display: block;
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100%;
  background: #753536;
  text-align: left;
  padding: 0;
  box-sizing: border-box;
 }
 .g-ttl {
  font-size: 4.5vw;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3vw;
  padding: 0 0 3vw 2vw;
  border-bottom: #242424 1px solid;
 }
 #g-nav ul.g-nav-menu {
  margin-bottom: 7.7vw;
		border-top: #825153 1px solid;
		margin-top: 68px;
		padding: 0;
 }
	#g-nav ul:last-child {
  border: none;
		margin-bottom: 0;
		padding-bottom: 7.7vw;
}
 #g-nav ul.g-nav-menu:last-child {
  border: none;
 }
 /*リストのレイアウト設定*/
 #g-nav .g-nav-menu li {
  list-style: none;
  text-align: left;
		border-bottom: #825153 1px solid;
 }
 #g-nav .g-nav-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 4vw;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 3.7vw;
		text-align: center;
		line-height: 1;
 }
	.g-nav-contact li + li{
		margin-top: 20px;
	}
	.g-nav-contact li:first-child a {
  font-size: 3.73vw;
  font-weight: 700;
  position: relative;
  background: #54ac31;
  color: #fff;
  border-radius: 20px;
  width: 66.6vw;
  height: 13vw;
  padding-left: 12vw!important;
  display: flex!important;
  justify-content: center;
  align-items: center;
		margin: 0 auto;
		text-align: center;
		letter-spacing: 1px!important;
}
	
	.g-nav-contact li:first-child a::after {
  content: "";
  position: absolute;
  left: 9.3vw;
  top: 50%;
  transform: translateY(-50%);
  width: 7vw;
  height: 7vw;
  background: url("../images/common/ic_line.png") no-repeat center / contain;
}
	
.g-nav-contact li:last-child a {
  font-size: 3.73vw;
  font-weight: 700;
  position: relative;
  background: #fff;
  color: #8d1e16;
  border-radius: 20px;
  width: 66.6vw;
  height: 13vw;
  padding-left: 12vw !important;
  display: flex!important;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
		letter-spacing: 1px!important;
}

/* アイコン共通位置 */
.g-nav-contact li:last-child a::before,
.g-nav-contact li:last-child a::after {
  content: "";
  position: absolute;
  left: 9vw;
  top: 50%;
  transform: translateY(-50%);
  width: 7.7vw;
  height: 6.7vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

/* 通常アイコン */
.g-nav-contact li:last-child a::before {
  background-image: url("../images/common/ic_contact.png");
  opacity: 1;
}

	.m_contact_link li:first-child a {
  font-size: 3.73vw;
  font-weight: 700;
  position: relative;
  background: #54ac31;
  color: #fff;
  border-radius: 20px;
  width: 66.6vw;
  height: 13vw;
  padding-left: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}
	
 /*global nav ボタン*/
 .openbtn {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0px;
  width: 67px;
  height: 67px;
  color: #fff;
  background: #753536;
  font-size: 16px;
  padding: 14px 0 0 0;
  font-weight: bold;
  line-height: 1.2;
 }
 .openbtn p {
  display: none;
 }
 /*×に変化*/
 .openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 19px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 30px;
 }
 .openbtn span:nth-of-type(1) {
  top: 23px;
 }
 .openbtn span:nth-of-type(2) {
  top: 33px;
 }
 .openbtn span:nth-of-type(3) {
  top: 43px;
 }
 .openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
 }
 .openbtn.active span:nth-of-type(2) {
  opacity: 0;
 }
 .openbtn.active span:nth-of-type(3) {
  top: 40px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
 }
}
/* ------ footer ------ */
footer {
 height: 162px;
}
.footer_inner {
 width: 1000px;
 margin: 0 auto;
 padding: 40px 0 0 0;
 text-align: center;
 overflow: hidden;
 position: relative;
}
.footer_nav {
 display: flex;
 justify-content: center;
}
.footer_nav li {
 padding: 0 20px;
 line-height: 1;
 font-weight: 700;
}
.footer_nav li a:hover {
	color: #666666;
	opacity: 1;
}

.footer_nav li + li {
 border-left: #6b6b6b 1px solid;
}
.copyright {
	padding-top: 45px;
 font-size: 12px;
 color: #707070;
 font-weight: 700;
}
.pagetop {
 width: 51px;
 height: 51px;
 background: url("../images/common/btn_pagetop.png") no-repeat center center;
 text-indent: -9999px;
 cursor: pointer;
 background-size: 51px auto;
 position: absolute;
 right: 0;
 top: 45px;
	transition: all 0.5s 0s ease;
}

.pagetop:hover {
	opacity: 0.6;
}





@media screen and (max-width: 767px) {
 footer {
 height: auto;
		padding-bottom:23vw;
}
.footer_inner {
 width: auto;
 margin: 0 auto;
 padding: 0 0 0 0;
 text-align: center;
 overflow: hidden;
 position: relative;
}


 .footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: initial;
  }

  .footer_nav li {
    position: relative;
    padding: 5.3vw 10px;
    text-align: center;
    border-left: none; /* PC用を無効 */
			font-size: 3vw;
  }

  /* 下線（左右に余白あり） */
  .footer_nav li::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background-color: #c5c5c5;
  }

  /* 左列のみ中央縦線 */
  .footer_nav li:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: #c5c5c5;
  }

.footer_nav li + li {
 border-left: none;
}
	
	
.copyright {
	padding-top: 8.8vw;
 font-size: 2.4vw;
	padding-bottom: 5vw;
}
.pagetop {
 width: 40px;
 height: 40px;
 background: url("../images/common/btn_pagetop.png") no-repeat center center;
 text-indent: -9999px;
 cursor: pointer;
 background-size: 40px auto;
 position: absolute;
 right: 20px;
 top: 34vw;
}
}
/* ------ sp 固定nav ------ */
.fixed {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 56px;
 z-index: 9999;
 background: #fff !important;
}
.sp-contact {
 display: none;
 position: fixed;
 z-index: 9999;
 bottom: 0;
 width: 100%;
 height: auto;
 overflow: hidden;
  background-color:rgba(117, 53, 54, 0.8);
}
.sp-contact .sp-contact__list {
 overflow: hidden;
	width: 92.53vw;
 height: 90px;
 text-align: center;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
	margin: 0 auto;
}
.sp-contact .sp-contact__list .sp-contact__item {
 width: 48%;
 height: 50px;
 box-sizing: border-box;
}
.sp-contact .sp-contact__list li + li {
	margin-left: 2vw;
}
.sp-contact .sp-contact__list .sp-contact__item a {
 display: block;
 color: #fff;
 text-decoration: none;
 height: 50px;
 box-sizing: border-box;
 font-size: 13px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: bold;
 font-size: 14px;
	border-radius: 15px;
	line-height: 1.3;
}
.sp-contact .sp-contact__list .sp-contact__item.h_co a {
 background: #ffffff;
	color: #8d1e16;
 font-feature-settings: "palt";
}
.sp-contact .sp-contact__list .sp-contact__item.h_co a::before {
 content: "";
 display: inline-block;
 width: 25px;
 height: 22px;
 background: url("../images/common/ic_contact.png") no-repeat left center;
 background-size: contain;
 margin: 0 5px 0 0;
}
.sp-contact .sp-contact__list .sp-contact__item.h_li a {
 background: #54ac31;
	color: #fff;
}
.sp-contact .sp-contact__list .sp-contact__item.h_li a::before {
 content: "";
 display: inline-block;
 width: 26px;
 height: 26px;
 background: url("../images/common/ic_line.png") no-repeat left center;
 background-size: contain;
 margin: 0 10px 0 0;
}
.sp-contact .sp-contact__list .sp-contact__item.h_doc a {
 background: #1972AD;
}
.sp-contact .sp-contact__list .sp-contact__item.h_doc a::before {
 content: "";
 display: inline-block;
 width: 28px;
 height: 19px;
 background: url("../images/common/ic_siryou.svg") no-repeat left center;
 background-size: contain;
 margin: 0 5px 0 0;
}
.sp-contact .sp-contact__list .sp-contact__item.h_tel {
 width: 15.8%;
}
.sp-contact .sp-contact__list .sp-contact__item.h_tel a {
 background: #242424;
}
.sp-contact .sp-contact__list .sp-contact__item.h_tel a span {
 display: none;
}
.sp-contact .sp-contact__list .sp-contact__item.h_tel a::before {
 content: "";
 display: inline-block;
 width: 20px;
 height: 34px;
 background: url("../images/common/ic_tel_sp.svg") no-repeat left center;
 background-size: contain;
 margin: 0 0 0 0;
}


@media screen and (min-width: 960px) {
  .sp-contact {
    display: none !important;
  }
}



@media screen and (max-width: 767px) {
	.sp-contact {
  display: block ;
}
	
	/* 初期状態（非表示） */
.sp-contact {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 表示状態 */
.sp-contact.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

	
}
/* ===============================
  共通パーツ
=============================== */
.ttl_outer {
 margin-bottom: 30px;
 text-align: center;
 line-height: 1;
}
.ttl_outer .ttl {
 margin-bottom: 10px;
}
.ttl_outer .ttl img {
 width: auto;
 height: 50px;
}
.ttl_outer .sttl {
 font-size: 18px;
 font-weight: 400;
}
.ttl_outer .read {
 padding: 35px 0 0 0;
 font-size: 17px;
 line-height: 1.8;
}
.m_btn {
 text-align: center;
 margin-bottom: 80px;
}
.m_btn a {
 background: #8d1e16;
 border-radius: 20px;
 padding: 15px 65px;
 font-size: 18px;
 font-weight: 700;
 color: #fff;
 line-height: 1;
}

.m_btn a:hover {
 background: #ba3428;
	opacity: 1;
}




@media screen and (max-width: 767px) {
	
	.ttl_outer {
 margin-bottom: 6.6vw;
 text-align: center;
 line-height: 1;
}
.ttl_outer .ttl {
 margin-bottom: 2vw;
}
.ttl_outer .ttl img {
 width: auto;
 height: 10vw;
}
.ttl_outer .sttl {
 font-size: 3.8vw;
 font-weight: 400;
}
.ttl_outer .read {
 padding: 6.4vw 0 0 0;
 font-size: 3.2vw;
 line-height: 1.8;
}
	.ttl_outer .read strong {
color: 	#8d1e16;
}

.m_btn {
	width: 88vw;
	margin: 0 auto 13vw auto;
}
.m_btn a {
	width: 100%;
 border-radius: 15px;
 padding: 4vw 0;
 font-size: 4.26vw;
	display: block;
}
	
}

/*pc fix nav*/

.pcfix_nav{
	position: fixed;
	right: 0;
	top: 157px;
	width: 60px;
	z-index: 10;
}

.pcfix_nav li{margin-bottom: 20px;}

.pcfix_nav li a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 20px 0 0 20px;
	width: 60px;
	height: 227px;
	writing-mode: vertical-rl; 
  text-orientation: mixed;
	letter-spacing: 0.5px;
	padding-left: 1px;
}

.pcfix_nav li:first-child a{
	background: #8d1e16;
}

.pcfix_nav li:first-child a:hover{
	background: #ba3428;
	opacity: 1;
}

.pcfix_nav li:last-child a{
	background: #54ac31;
	text-orientation: upright; 
}

.pcfix_nav li:last-child a:hover{
background: #6adc3d;
		opacity: 1;
}


@media screen and (max-width: 767px) {
	
	.pcfix_nav{
		display: none;
}
}

/*下層タイトル*/

.l_second_ttl{
	background: url("../images/common/bg_second_pc.jpg") no-repeat center center;
	background-size: cover;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.second_ttl{
	font-size: 26px;
	font-weight: 700;
}



@media screen and (max-width: 767px) {
.l_second_ttl{
	background: url("../images/common/bg_second_sp.jpg") no-repeat center center;
	background-size: cover;
	height: 28.66vw;
}

.second_ttl{
	font-size: 4vw;
}


}

/* ===============================
  モーダル
=============================== */
/* モーダル表示中にbodyに付与するクラス */
body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #f4eaea;
    padding: 30px;
    width: 90%;
    max-width: 640px;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

/* 2行2段のグリッド */
.modal-button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.modal-btn-item a {
	width: 276px;
	height: 105px;
    display: flex;
	justify-content: flex-start;
	align-items: center;
    background: #fff;
    border: 1px solid #dddddd;
    
    text-decoration: none;
    color: #333;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.2s;
}

.modal-btn-item a{
	position: relative;
	padding-left: 60px;
}

.modal-btn-item a::before {
 content: "";
 display: block;
 position: absolute;
 top: 50%;
 left: 15px;
 transform: translateY(-50%);
 width: 35px;
 height: 35px;
 background: url('../images/common/ic_red.png') no-repeat center center;
 background-size: contain;
}

.modal-btn-item a:hover {
    background: #eee;
    border-color: #bbb;
}

.modal-close-wrapper {
    text-align: center;
}

.close-text {
    cursor: pointer;
    font-size: 19px;
    color: #8d1e16;
    text-decoration: none;
	font-weight: 700;
}

.modal_ttl{font-size: 24px;
line-height: 1.3;
font-weight: 500;}

.fcred{
	color: #8d1e16;
}

.modal_txt{
	font-size: 16px;
	font-weight: 500;
}

.m_link{
	text-align: left;
}

.m_eki{font-size:19px;
color: #8d1e16;
line-height: 1;}

.m_eki strong{font-size:29px;
color: #8d1e16;
font-weight: 500;}

.m_name{font-size:18px;}

.m_name strong{font-size:22px;
font-weight: 500;}

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


.modal-content {
    background: #f4eaea;
    padding: 5.3vw 2.6vw;
    width: 100%;
    max-width: 100%;
	box-sizing: border-box;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

/* 2行2段のグリッド */
.modal-button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2vw;
    margin-bottom: 3.2vw;
}

.modal-btn-item a {
	width: 45vw;
	height: 17.6vw;
}

.modal-btn-item a{
	position: relative;
	padding-left:8vw;
}

.modal-btn-item a::before {
 content: "";
 display: block;
 position: absolute;
 top: 50%;
 left: 2.1vw;
 transform: translateY(-50%);
 width: 5vw;
 height: 5vw;
 background: url('../images/common/ic_red.png') no-repeat center center;
 background-size: contain;
}

.close-text {
    font-size: 3.2vw;
}

.modal_ttl{font-size: 4vw;
	line-height: 1.5;
}


.modal_txt{
	font-size: 2.6vw;
}

.m_eki{font-size:3.2vw;letter-spacing: 1px;}

.m_eki strong{font-size:4.8vw;}

.m_name{font-size:3.2vw;}

.m_name strong{font-size:3.7vw;}
	
}


