@charset "UTF-8";
/*------------------------------------------------------------

 common

------------------------------------------------------------*/
:root{
  --color-main: #e5002d;
  --color-sub: #880a0c;
  --color-text: #333;
  --color-red: #ff0033;
  --color-pink: #ea4282;
  --color-lightpink: #faecf2;
  --color-yellow: #fbf355;
  --color-darkbrown: #492c2d;
  --color-blue: #0044cc;
  --color-green: #25ac34;
  --color-black: #111;
  --color-gray: #5d5d5d;
  --color-lightgray: rgb(240,240,240);
  --color-white: #fff;
  --trans-05: all 0.5s ease;
}

/*------------------------------------------------------------
 ベース
-------------------------------------------------------------*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	height: 100%;
	font-size: 62.5%;/*10px*/
	scroll-behavior: smooth;
}
body{
	height: 100%;
	color: var(--color-text);
	/*font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;*/
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.75;
}
body.no-scroll{
	overflow: hidden; /*メニューOPEN時に背面のスクロールを禁止*/
}
@media screen and (max-width: 559px) {
	body{
		font-size: 1.4rem;
		line-height: 1.6;
	}
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section{
	display: block;
}
table{
  border-collapse: separate;
  border-spacing: 0;
}
img{
	display: inline-block;
	border: 0;
	vertical-align: top;
}
ul li, ol li{
	list-style: none;
}
input, textarea, select{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
  -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  vertical-align: middle;
}
button{
	padding: 0;
	border: 0;
  overflow: visible;
}
button, [type="button"], [type="reset"], [type="submit"]{
  -webkit-appearance: button;
}
a{
	text-decoration: none;
}
a:hover, a:active{
	color: var(--color-main);
	text-decoration: underline;
	outline: 0;
}
a img{
	transition: all 0.25s ease;
}
a img:hover{
	opacity:0.75;
}

/*　*********************************************
 非表示
**********************************************　*/
.globalMenu:first-child .globalMenu-item:nth-child(6),
.footerNav .menu:first-child li:last-child,
.footerNav .menu.pc li:nth-child(2){
	display: none;
} 

/* -----------------------------------------------
 レスポンシブ切り替え
------------------------------------------------*/
@media print, screen and (min-width: 950px) {
	.smp{display:none!important;}
}
@media screen and (max-width: 949px) {
	.pc{display:none!important;}
}

/* -----------------------------------------------
 レイアウト
------------------------------------------------*/
#container{
	display: flex;
	flex-direction: column;
	min-width: 320px;
	min-height: 100%;
}
.inner{
	width: 100%;
	max-width: calc(1200px + 2em);
	margin: 0 auto;
	padding-left: 2em;
	padding-right: 2em;
}
.fbox{
	display: flex;
}
@media screen and (max-width: 559px) {
	.inner{
		padding-left: 3.333%;
		padding-right: 3.333%;
	}
}

/*------------------------------------------------------------
 ヘッダー
-------------------------------------------------------------*/
.header{
	width: 100%;
	min-width: 320px;
	height: 100px;
	padding: 1em 0;
	background: var(--color-white);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.header .inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.header .logo{
	width: 180px;
}
.company{
	display: flex;
	align-items: center;
	gap: 1.75em;
}
.company p{
	color: var(--color-black);
	font-size: 1.063em;
	font-weight: bold;
	line-height: 1.4;
}
.company p br{
	display: none;
}
.company div p:last-child{
	display: inline-block;
	font-size: 0.824em;
}
.headerNav{
	padding-bottom: 0.3em;
}
.headerNav-item{
	display: flex;
	align-items: center;
	gap: 5px;
}
a.btn-contact{
	display: inline-block;
	color: var(--color-white);
	font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 1.5rem 5rem;
  background: var(--color-black);
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  overflow: hidden;
}
a.btn-contact span{
	display: flex;
	align-items: center;
	gap: 8px;
  position: relative;
}
a.btn-contact::before{
	content: "";
	width: 150%;
  height: 500%;
  background: var(--color-red);
  position: absolute;
  top: 0;
  left: 56px;
  transition: all .5s ease-in-out;
  transform: translateX(-98%) translateY(-70%) rotate(135deg);
}
a.btn-contact:hover::before{
  transform: translateX(-22%) translateY(-25%) rotate(135deg);
}
.btn-contact .icon{
	width: 22px;
}
@media screen and (max-width: 759px) {
	.header .inner{
		align-items: center;
		padding-right: 5px;
	}
	.header .company{
		width: calc(100% - 54px);
		gap: 5%;
	}
	.header .company > a{
		width: 35%;
	}
	.header .company > div{
		width: 60%;
	}
	
	.headerNav{
		padding: 0;
	}
	.company p br{
		display: inline;
	}
	.company p:last-child{
		margin-top: 2px;
	}
}
@media screen and (max-width: 559px) {
	.header{
		height: 80px;
	}
	.header .logo{
		width: 100%;
		max-width: 120px;
	}
}
@media screen and (max-width: 320px) {
	.header .company > a{
		width: 38%;
	}
	.company p{
		font-size: 4vw;
	}
	.company div p:last-child{
		font-size: 3.2vw;
	}
}

/*------------------------------------------------------------
 グローバルナビ
-------------------------------------------------------------*/
#global-nav{
	width: 100%;
	background: var(--color-main);
	box-shadow: 0 4px 2px -2px rgba(0,0,0,0.2);
	z-index: 9998;
}
.globalMenu{
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.globalMenu-item{
	/*width: calc(100% / 6);*/
	width: calc(100% / 5);
	text-align: center;
	box-sizing: border-box;
  position: relative;
}
.globalMenu-item a{
	display: block;
	color: var(--color-white);
	font-weight: bold;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
	padding: 10px 0;
	transition: all 0.25s;
}
.globalMenu-item a:hover{
  background: #ff5d63;
  text-decoration: none;
}
#active{
	background: #ff5d63;
}

/* ハンバーガーメニュー */
.toggle{
  display: none;
}

@media screen and (min-width: 950px) {
	#global-nav{
		position: fixed;
	  top: 100px;
	  left: 0;
	}
}
@media screen and (max-width: 949px) {
	#global-nav{
		background-color: var(--color-main);
	}
	.globalMenu-item{
		width: 100%;
		text-align: left;
		border-bottom: 1px solid rgba(255,255,255,0.5);
		position: relative;
	}
	.globalMenu-item a{
		display: block;
		font-size: 1.154em;
		padding: 0.9em 1em;
	}
	.globalMenu-item a::after{
		display: inline-block;
		content: "";
		width: 6px;
		height: 6px;
		border-top: 1px solid var(--color-white);
		border-right: 1px solid var(--color-white);
		position: absolute;
		top: 50%;
		right: 1.154em;
		transform: translateY(-50%) rotate(45deg);
	}
	.globalMenu.smp .globalMenu-item{
		width: 50%;
	}
	.globalMenu.smp .globalMenu-item a{
		font-size: 0.923em;
		font-weight: normal;
		text-shadow: none;
		padding: 0.7em 1.154em;
	}
	.globalMenu.smp .globalMenu-item a::after{
		border: none;
		position: relative;
		top: inherit;
		right: inherit;
		transform: inherit;
	}
	.globalMenu.smp .globalMenu-item a.external::after{
		background: url(../images/icon_external_w.svg) no-repeat center;
	}
	.globalMenu.smp .globalMenu-item:nth-child(2n+1){
		border-right: 1px solid rgba(255,255,255,0.5);
	}

	.toggle-menu{
		display: block;
	  position: fixed;
	  top: -100%;
	  left: 0;
	  z-index: 10;
	  width: 100%;
	  height: calc(100vh - 100px);
	  overflow-x: scroll;
	  transition: top 0.5s ease-in-out;
	}
	.toggle-menu.show{
	  top: 100px;
	}
	.toggle{
		display: flex;
		align-items: center;
	  justify-content: center;
	  padding: 12px;
	  transition: transform 0.3s ease-in-out;
	  cursor: pointer;
	}
	.toggle-icon{
	  position: relative;
	  width: 30px;
	  height: 20px;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	}
	.toggle-icon span{
	  position: absolute;
	  width: 100%;
	  height: 2px;
	  border-radius: 2px;
	  background-color: var(--color-gray);
	  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
	}
	.toggle-icon span:nth-child(1){
	  top: 0;
	}
	.toggle-icon span:nth-child(2){
	  top: 50%;
	  transform: translateY(-50%);
	}
	.toggle-icon span:nth-child(3){
	  bottom: 0;
	}
	.toggle.open .toggle-icon span:nth-child(1){
	  transform: translateY(9px) rotate(45deg);
	}
	.toggle.open .toggle-icon span:nth-child(2){
	  opacity: 0;
	}
	.toggle.open .toggle-icon span:nth-child(3){
	  transform: translateY(-9px) rotate(-45deg);
	}
}
@media screen and (max-width: 759px) {
	.toggle-menu{
		height: calc(100vh - 80px);
	}
	.toggle-menu.show{
	  top: 80px;
	}
}

/*------------------------------------------------------------
 メイン
-------------------------------------------------------------*/
.main{
	flex: 1;
	margin-top: calc(100px + 46px);/* header + globalNav */
	padding-bottom: 1.875em;
}
@media screen and (max-width: 949px) {
	.main{
		margin-top: 100px;
		border-top: 4px solid var(--color-main);
	}
}
@media screen and (max-width: 559px) {
	.main{
		margin-top: 80px;
	}
}

/*------------------------------------------------------------
 コンテンツ
-------------------------------------------------------------*/
.content-title-area{
	margin-bottom: 3em;
}
.content-title-area .content-title{
	padding-bottom: 0;
	margin-bottom: 0;
}
.content-title-area .heading{
	color: var(--color-darkbrown);
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.4;
	padding: 0 20px 15px;
	background-color: var(--color-lightpink);
}
.content-title{
	color: var(--color-darkbrown);
	font-size: 2.188em;
	font-weight: bold;
	letter-spacing: 2px;
	padding: 0.2em 20px;
	margin-bottom: 1em;
	background-color: var(--color-lightpink);
}
.section{
	padding: 0 20px;
	margin-bottom: 5em;
}
.section-title{
	color: var(--color-pink);
	font-size: 1.5em;
	font-weight: bold;
	padding-bottom: 4px;
	margin-bottom: 1em;
	border-bottom: 5px solid var(--color-pink);
}
.section-title::before{
	display: inline-block;
	content: "";
	width: 0.65em;
	height: 0.65em;
	margin-right: 8px;
	background-color: var(--color-pink);
}
.section .text.fbox{
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 2.5em;
}
.section .text.fbox p{
	width: calc(50% - 2.5em);
}
.section .img{
	width: 50%;
	max-width: 580px;
	height: 340px;
	object-fit: cover;
}
.section .img.wide{
	height: 240px;
}
.section .fig{
	max-width: 1000px;
	text-align: center;
	margin: 2em auto;
}
.section .fig .img{
	width: 100%;
	max-width: inherit;
	height: auto;
}
.sign{
	padding: 1em;
	margin-top: 2em;
	border: 1px solid #ccc;
	border-radius: 10px;
}
.sign p{
	font-size: 1.125em;
	font-weight: bold;
	margin-bottom: 0.25em;
}
.title{
	font-weight: bold;
}
.highlight{
	color: var(--color-green);
}
.text-red{
	color: var(--color-red);
}
.td-line{
	text-decoration: underline;
}
.fw-bold{
	font-weight: bold;
}
.bg-gray{
	background-color: var(--color-lightgray);
}
@media screen and (max-width: 949px) {
	.section .text.fbox{
		gap: 1.25em;
	}
	.section .text.fbox p{
		width: 100%;
	}
	.section .img,
	.section .img.wide{
		width: 100%;
	}
}
@media screen and (max-width: 759px) {
	.content-title{
		font-size: 1.538em;
		letter-spacing: 1px;
		padding: 0.5em 0.75em;
	}
	.section{
		padding: 0;
		margin-bottom: 4em;
	}
	.section-title{
		font-size: 1.231em;
		border-width: 3px;
	}
	.section-text{
		margin-bottom: 1.538em;
	}
}
@media screen and (max-width: 559px) {
	.content-title-area{
		margin-bottom: 2em;
	}
	.content-title-area .heading{
		font-size: 1em;
	}
	.content-title{
		font-size: 5vw;
		letter-spacing: 0;
	}
	.section .text.fbox{
		gap: 2em;
	}
	.section .img,
	.section .img.wide{
		height: 55vw;
	}
	.section .fig{
		margin: 1em auto;
	}
}

/*------------------------------------------------------------
 パンくずリスト
-------------------------------------------------------------*/
.breadcrumbNav{
	padding: 0.6em 0;
	margin-bottom: 2.188em;
}
.breadcrumb{
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb-item{
	color: var(--color-sub);
	font-size: 0.875em;
}
.breadcrumb-item:first-child::before{
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	margin-right: 5px;
	background: url(../images/icon_home.svg) no-repeat;
	background-size: cover;
	position: relative;
	bottom: -1px;
}
.breadcrumb-item a{
	color: var(--color-text);
}
.breadcrumb-item + .breadcrumb-item::before{
	display: inline-block;
	content: "";
	width: 5px;
	height: 5px;
	margin: 0 10px 0 7px;
	border-top: 1px solid var(--color-main);
	border-right: 1px solid var(--color-main);
	transform: rotate(45deg);
	position: relative;
	bottom: 2px;
}
@media screen and (max-width: 759px) {
	.breadcrumbNav{
		margin-bottom: 1.5em;
	}
}

/*------------------------------------------------------------
 ページ下部 お問い合わせ
-------------------------------------------------------------*/
.pageContact{
	padding: 3.125em 0;
	background-color: var(--color-lightgray);
}
.pageContact a{
	display: block;
	max-width: 506px;
	margin: auto;
}
.pageContact img{
	max-width: 100%;
}
@media screen and (max-width: 559px) {
	.pageContact{
		padding: 2.125em 0;
	}
}

/*------------------------------------------------------------
 フッター
-------------------------------------------------------------*/
.footer{
	width: 100%;
	margin-top: 2em;
}
.footer .company{
	justify-content: flex-end;
	margin-bottom: 0.75em;
}
.footer .company .logo{
	width: 150px;
}
.footer .company p{
	font-size: 0.938em;
	line-height: 1.2;
}
.footerNav-top{
	margin: 0.5em;
}
.footerNav .menu{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.4rem;
	border-top: 1px solid var(--color-gray);
	padding: 0.5em 0;
}
.footerNav .menu li:first-child::before, 
.footerNav .menu li:last-child::after,
.footerNav .menu li + li::before{
	display: inline-block;
	content: "｜";
	margin: 0 0.75em;
	vertical-align: middle;
}
.footerNav .menu li a{
	color: var(--color-black);
}
.copyright{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0.5em 0;
	font-size: 80%;
	color: #FFFFFF;
	background-color: rgba(229,0,45,1);
}
@media screen and (max-width: 759px) {
	.footer .inner{
		padding: 0;
	}
	.footer .company{
		justify-content: center;
	}
	.footerNav .menu{
		padding: 0;
	}
	.footerNav .menu li{
		width: 50%;
		font-size: 0.923em;
		border-bottom: 1px solid #dedede;
	}
	.footerNav .menu li:last-child,
	.footerNav .menu li:nth-last-child(2){
		border-bottom: none;
	}
	.footerNav .menu li:nth-child(2n+1){
		border-right: 1px solid #dedede;
	}
	.footerNav .menu li a{
		display: block;
		padding: 0.5em 1em;
	}
	.footerNav .menu li:first-child::before, 
	.footerNav .menu li:last-child::after,
	.footerNav .menu li + li::before{
		display: none;
	}
}

/*-----------------------------------------------------------
 ページトップ
-----------------------------------------------------------*/
.pageTop{
	position: fixed;
  right: 20px;
  bottom: 44px;
  z-index: 1000;
  transition: bottom 0.5s ease;
}
.pageTop a{
	display: block;
	width: 110px;
  color: var(--color-white);
	font-size: 1.4rem;
	text-align: center;
	text-decoration: none;
	padding: 4px 4px 4px 20px;
	border-radius: 6px;
	background: rgba(229,0,45,1);
  transition: ease 0.2s;
}
.pageTop a:hover{
	color: var(--color-yellow);
	background: rgba(229,0,45,0.65);
}
.pageTop p::before{
	display: inline-block;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--color-white);
	border-right: 2px solid var(--color-white);
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%) rotate(-45deg);
}
.pageTop a:hover p::before{
	border-color: var(--color-yellow);
}
.pageTop.footer-overlap {
  bottom: 0;
}
@media screen and (max-width: 759px) {
	.pageTop{
		display: none;
	}
}

/*-----------------------------------------------------------
 アイコン
-----------------------------------------------------------*/
a.external::after{
	display: inline-block;
	content: "";
	width: 14px;
	height: 14px;
	margin-left: 5px;
	background: url(../images/icon_external.svg) no-repeat center;
	background-size: cover;
}
