@charset "utf-8";

.navi-link {
    font-family: var(--fontA);
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 10px 0;
}

.navi-link:hover {
	text-decoration: underline;
}

.nav-single {
    margin: 0 0 0 1%;
    position: relative;
}

.nav-single-link {
    padding-right: 15px;
    position: relative;
}

.nav-single-link:before, .nav-single-link:after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: .3s;
}

.nav-single-link:after {
    transform: translateY(-50%) rotate(90deg);
}

.nav-single:hover .nav-single-link:after {
    transform: translateY(-50%) rotate(0deg);
}

/*ドロップダウン*/

.nav-second {
  width: 190px;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}

.nav-second-link {
    display: block;
    font-size: 14px;
    font-family: var(--fontA);
    letter-spacing: 0.05em;
    line-height: 1.5em;
    color: #181919;
    padding: 0 0 0 20px;
    position: relative;
}

.nav-second-link:not(:first-child) {
    margin: 15px 0 0;
}

.nav-second-link:before {
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    background: url(/system_panel/uploads/images/arrow_black.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: .3s;
}

.nav-second-link:hover {
    color: #181919;
}

.nav-second-link:hover:before {
    left: 3px;
}

.nav-single:hover .nav-second {
  opacity: 1;
  visibility: visible;
}

/*--ヘッダー--*/

.fixedBtn {
	background: #4CB7AE;
}

.fixedBtn:hover {
    opacity: 0.65;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1920px;
    width: 100%;
    transition: all .3s;
}

.hIn {
    max-width: 1830px;
    width: 100%;
    margin: 0 auto 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  	padding: 15px;
}

.hLogo {
    width: 17%;
  	position: static;
  	margin: 0 auto;
  	top: 40px;
  	left: 10px;
}

.hLogoImg {
	display: block;
}

.hFixedLogoImg {
	display: none;
}

.hR {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 88%;
    max-width: 1445px;
}

.hNav {
    width: 100%;
    max-width: 1365px;
    position: relative;
    padding: 0 2.46% 0 0;
}

.hNav:after {
	content: "";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: auto;
  	margin: auto;
  	width: 1px;
  	height: 100%;
  	background: #fff;
}

.hNavLink {
    color: #fff;
    font-size: 10px;
}

.hNavLink:hover {
    color: #fff;
}

.hNavList01 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hNavList02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hNavLink-line {
    padding: 0 10px;
    margin-right: 0 !important;
    position: relative;
}

.hNavLink-line:last-child {
    padding-right: 5.5px;
}

.hNavLink-line:before {
    content: "";
    width: 1px;
    height: 60%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.hNavLink-line:first-child:before {
    display: none;
}

.hSnsBlock {
	margin-left: 10px;
}

.hSnsBlock:hover > .hSnsIconBox {
    opacity: .6;
    transition: all .3s;
}

.hInstaBox {
	opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    top: 20px;
    right: 0;
    width: 120px;
    margin: -1px auto auto;
    padding: 20px 0 0;
    transform: scaleY(0);
    z-index: 9;
}

.hInstaBox:before {
    content: " ";
    height: 30px;
    width: 100%;
    display: block;
    position: absolute;
    top: -10px;
}

.hSnsBlock:hover > .hInstaBox {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all .3s;
}

.hInstaLink01 {
    font-family: var(--fontA);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.23em;
  	display: block;
    width: 120px;
    margin: 5px auto 0;
    padding: 8px 15px;
    text-align: center;
    border-radius: 5px;
    color: #191918;
    background: #fff;
    transition: all .3s;
}

.hInstaLink01:hover {
    color: #191918;
    background: #F2F2F2;
    transition: all .3s;
}

/*--スクロールヘッダー--*/


.header.is-active {
    position: fixed;
    background: #fff;
    transition: all .3s;
}

.is-active .hIn {
  padding: 15px;
}

.is-active .hLogoImg {
	display: none;
}

.is-active .hLogo {
    top: 12px;
    left: 10px;
}

.is-active .hFixedLogoImg {
	display: block;
}

.is-active .hNavLink {
    color: #191918;
}

.is-active .hNav:after {
    background: #191918;
}

.is-active .nav-single-link:before, .is-active .nav-single-link:after {
    background: #191918;
}

.hamSnsListBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 260px;
    width: 100%;
    margin: 20px auto 0;
}

/*--フッター--*/

.fContact:after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 50%;
    background: #191918;
    z-index: -1;
}

.fCItem:after {
    content: "";
    position: absolute;
    top: auto;
    bottom: -20px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    z-index: 1;
}

.fCItem:last-child::after {
    content: none;
}
  
.fTelNum {
    font-size: 30px;
}

.fCBtn {
    max-width: 346px;
    width: 100%;
    margin: 15px auto 0;
    padding: 23px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  	font-size: 15px;
}

.fCBtn:hover {
	opacity: 0.65;
}

.fCBtn.bgBlack p {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fCBtn.bgWhite {
	color: #191918;
	background-color: #FFF;
}

.fCBtn.bgWhite:hover {
	color: #191918;
	background-color: #F2F2F2;
}

.fCBtn.fHpbBtn {
    padding: 12px 15px 10px!important;
}
   
.fSnsBlock:hover > .fSnsIconBox {
    opacity: .6;
    transition: all .3s;
}

.fSnsIconBox {
    transition: all .3s;
}

.fInstaBox {
	width: 100%;
    max-width: 580px;
    position: static;
    margin: 20px auto 0;
    display: grid;
	grid-template-columns: repeat(1, 1fr);
    gap: 5px;
}

.fInstaLink01 {
    font-family: var(--fontA);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.23em;
	width: 190px;
  	margin: 0 auto;
    padding: 8px 15px;
	text-align: center;
	border-radius: 5px;
    color: #191918;
    background: #fff;
	transition: all .3s;
}

.fInstaLink01:hover {
    color: #191918;
    background: rgb(255 255 255 / .8);
	transition: all .3s;
}

.fNavIconLink {
    padding-right: 30px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 
  
.hIn {
  	padding: 40px 15px 20px;
}
  
.is-active .hIn {
  padding: 35px 15px;
}
  
.hLogo {
  	position: absolute;
    width: 10%;
}
  
/*-- フッター --*/
  
.fCGrid.grid4 {
	gap: 40px 0;  
}
  
.fCItem:after {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    margin: auto;
    max-width: 1px;
    width: 100%;
    height: 100%;
}
 
.fCItem:nth-child(2n)::after {
    content: none;
}
  
.fTelNum {
    font-size: 35px;
}
  
.fCBtn {
  	font-size: 18px;
}
  
.fInstaBox {
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
}
  
.fInstaBox {
    position: absolute;
    margin: 0;
    top: 43px;
    left: 80px;
    transform: translateY(-50%);
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}
  
.fSnsBlock:hover > .fInstaBox {
    opacity: 1;
    visibility: visible;
    transition: all .3s;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1024px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.hLogo {
    width: 10%;
}
  
.hNavLink {
    font-size: 12px;
}

.hNavLink-line {
    padding: 0 20px;
}
	
.hNavLink-line:last-child {
    padding-right: 12px;
}
  
.hInstaBox {
    top: 50px;
}
	
/*-- フッター --*/
  
.fCItem:nth-child(2n)::after {
    content: "";
}
  
.fCItem:last-child::after {
    content: none;
}
  
.fTelNum {
    font-size: 23px;
}
  
.fCBtn {
  	font-size: 12px;
}
  
.fMain { 
	margin: -300px auto 0;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1100px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
/*-- フッター --*/
  
.fTelNum {
    font-size: 26px;
}
  
.fCBtn {
  	font-size: 14px;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1100px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1200px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.hLogo {
    width: 10%;
}
  
.hNavLink {
    font-size: 15px;
}
  
.hInstaLink01 {
    font-size: 16px;
}
	
.hNavLink-line:last-child {
    padding-right: 13px;
}
  
.fTelNum {
    font-size: 30px;
}
  
.fCBtn {
  	font-size: 16px;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1200px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1440px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.hIn {
  	padding: 70px 15px 20px;
}
  
.hNavLink {
    font-size: 17px;
}
	
.hNavLink-line:last-child {
    padding-right: 24px;
}

.hInstaBox {
    width: 190px;
}
  
.hInstaLink01 {
    font-size: 20px;
    width: 190px;
}

.nav-single-link {
    padding: 0 25px 0 0;
}

.nav-single-link:before, .nav-single-link:after {
    width: 15px;
    height: 2px;
}

/*ドロップダウン*/

.nav-second {
  width: 190px;
  padding: 25px;
}

.nav-second-link {
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 0 0 0 30px;
}

.nav-second-link:not(:first-child) {
    margin: 10px 0 0;
}

.nav-second-link:before {
    width: 14px;
}

.nav-second-link:hover:before {
    left: 5px;
}

/*-- フッター --*/
  
.fTelNum {
    font-size: 35px;
}
  
.fCBtn {
  	font-size: 18px;
}

.fInstaBox {
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
}

  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1440px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1680px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.hLogo {
    width: 15%;
}

.hNavLink {
    font-size: 20px;
    letter-spacing: 0.1em !important;
}

.hNavLink-line:last-child {
    padding-right: 25px;
}

.fInstaLink01 {
	font-size: 20px;  
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1680px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1860px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.hLogo {
    width: 14%;
  	left: 0;
}
  
.hNavLink {
    font-size: 20px;
}

.hNavLink-line:last-child {
    padding-right: 37px;
}
  
.hNavLink .fontB {
    font-size: 18px;
}
  
.fTel {
    font-size: 20px;
}
  
.fNavLink {
    font-size: 20px !important;
}

.fNavLink .fontA {
    font-size: 18px !important;
}

  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1860px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */