@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
body,html {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	letter-spacing: 1px;

}
::selection {
	background: #293844;
	color: #fff;
}

/*-Firefox*/
::-moz-selection {
	background: #293844;
	color: #fff;
}
img {
    max-width: 100%;
    height: auto;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
a img{
	transition : 0.2s ;
	-webkit-transition : 0.2s ;
	-moz-transition    : 0.2s ;
	-o-transition      : 0.2s ;
	-ms-transition     : 0.2s ;
}
a:hover img {
      opacity: 0.7;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
    outline-offset: -2px;
}

.fs_en {
	font-family: 'Josefin Sans', sans-serif;
}

/* device */
@media screen and (max-width: 768px) {
.sp { display: block !important; }
.pc { display: none !important; }
}
@media screen and (min-width: 768px) {
.sp { display: none !important; }
.pc { display: block !important; }
}
@media screen and (max-width: 768px) {
	.h-64 {
		height: 30rem !important;
	}
}
@media screen and (max-width: 1020px){
	.sp-pc {display: block;}
}

/* flexbox */
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-color-red {
	--tw-text-opacity: 1;
	color: rgba(210,62,58,var(--tw-text-opacity)) !important;
}

.text-color-2b {
	--tw-text-opacity: 1;
	color: rgba(43,43,43,var(--tw-text-opacity)) !important;
}

.about-1st-margin {
padding-top: 0 !important;
}

.ring-red { --tw-ring-opacity: 1;
--tw-ring-color: rgba(210,62,58,var(--tw-ring-opacity)) !important;
}

.bg-red {
    --tw-bg-opacity: 1;
    background-color: rgba(210,62,58,var(--tw-bg-opacity));
}

.bg-2b {
	--tw-bg-opacity: 1;
    background-color: rgba(43,43,43,var(--tw-bg-opacity));
}

.bg-rg {
	--tw-bg-opacity: 1;
    background-color: rgba(228,228,228,var(--tw-bg-opacity));
}

.py-midashi {
	padding-top:20px ;
	padding-bottom: 20px;
}

.title-text {
	line-height: 40px !important;
	letter-spacing: 3px;
}

.header-inner img {
	width: 30px;
}
.sp_slide_box {
	display: none;
}

.about_box p {
	display: flex;
	margin-top: 10px;
	margin-left: 5px;
	background-color: #D23E3A;
	color: #fff;
	position: relative;
	justify-content: flex-start;
	width: fit-content;
	padding: 3px 10px;
	border-radius: 2px; 
}
.ap-p{
	font-weight:bold;
	color: #D23E3A;
}
.bg-oomidashi {
	background-color: #D23E3A;
	padding-bottom: 35px;
    padding-top: 35px;
	margin-top: 30px;
	margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
	.bg-oomidashi {
	padding: 35px 40px;
	margin-top: 15px;
	}
}
@media screen and (max-width: 768px) {
	.py-midashi {
		padding-top:20px;
		padding-bottom: 10px;
	}
	.py-24 {
		padding-top:0 !important;
	}
	.title-text {
		letter-spacing: 0;
	}
	.sp-little-p {
		font-size:20px;
	}
}

@media screen and (max-width: 1020px) {
	#g-nav{
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position:fixed;
		z-index: 999;
		/*ナビのスタート位置と形状*/
		top:0;
		right: -120%;
		width:100%;
		height: 100vh;/*ナビの高さ*/
		background:#D23E3A;
		/*動き*/
		transition: all 0.6s;
	}
	
	/*アクティブクラスがついたら位置を0に*/
	#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;
	}
	
	/*ナビゲーション*/
	#g-nav ul {
		/*ナビゲーション天地中央揃え*/
		position: absolute;
		z-index: 999;
		top:50%;
		left:50%;
		transform: translate(-50%,-50%);
	}
	
	/*リストのレイアウト設定*/
	
	#g-nav li{
		list-style: none;
		text-align: center;
	}
	
	#g-nav li a {
		font-size: 16px;
		color: #FFF;
		text-decoration: none;
		padding: 10px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: bold;
	}
	
	/*========= ボタンのためのCSS ===============*/
	.openbtn{
		position:fixed;
		z-index: 9999;/*ボタンを最前面に*/
		top:10px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height:50px;
	}
		
	/*×に変化*/	
	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background-color: #FFF;
		  width: 45%;
	  }
	
	.openbtn span:nth-of-type(1) {
		top:15px;	
	}
	
	.openbtn span:nth-of-type(2) {
		top:23px;
	}
	
	.openbtn span:nth-of-type(3) {
		top:31px;
	}
	
	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
}

@media screen and (max-width: 1500px) and (min-width: 1025px) {
	.lg\:pr-96 {
		padding-right: 14rem!important;
	}
}