@charset "utf-8";
/* CSS Document */

@media print{
   /*印刷用CSSで適用させる定義を記述*/
    .to_top{
        display: none;
    }
}

html {    
    overflow-x: hidden;
    overflow-y: scroll;
    /*font-size: 62.5%;*/
}

/*-----------------------------------------------------------*/

@media screen and (max-width: 1700px) {
  html {  
      font-size:90%;
	}
}

@media screen and (max-width: 1400px) {
    html {
      font-size:87.5%;
	}
}

@media screen and (max-width: 1300px) {
    html {
	   font-size:85%;
	}
}

@media screen and (max-width: 1200px) {
  html {
      font-size:72.5%;
	}    
}

/*-----------------------------------------------------------*/

body {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 1.08rem;/*100%;*/
    -webkit-text-size-adjust: none;
	color: #222;
    overflow: hidden;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
}

/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}
#all_wrap {
	/*
	※ない方がいいかも
	overflow: hidden;*/
	background-color: #FFCC2B;
}

::-webkit-scrollbar-track {
	background: #333;
}
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-thumb {
	background: #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

*{
	margin: 0;
	padding: 0;
}

*:focus {
  outline: none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}

.pc_hide {
	display: none !important;
}
.sp_hide {
}

a {
	font-size: 1.08rem;
	outline: none;
	color: #333333;
	text-decoration:none;
	transition: 0.3s;
	opacity: 1;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}
a:hover {
	opacity: 0.6;
}

ul{
    list-style-type: none;
}

input, textarea{
    /*bodyと同じフォントcssを入れる*/
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

select::-ms-expand {
    display: none;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/*-----------------------------------------------------------*/
/*フォント*/

.noto-sans-jp-medium {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.noto-sans-jp-bold {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.fugaz-one-regular {
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 400;
	font-style: normal;
	transform: rotate(0.05deg);
}
.m-plus-rounded-1c-medium {
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 500;
	font-style: normal;
	transform: rotate(0.05deg);
}
.m-plus-rounded-1c-bold {
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 700;
	font-style: normal;
	transform: rotate(0.05deg);
}
.m-plus-rounded-1c-extrabold {
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 800;
	font-style: normal;
	transform: rotate(0.05deg);
}

.m-plus-1p-bold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
	width: 100%;
    height: 9.46rem;/*140*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

#header{
    position: relative;
}

#header .logo{
    width: 29.12rem;/*431*/
    height: 6.76rem;/*100*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#header .openbtn4{
    cursor: pointer;
    width: 8.45rem;/*125*/
    height: 8.11rem;/*120*/
    z-index: 9;
    background-color: #C7014C;
	position: absolute;
	top: 0;
	right: 0;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	box-sizing: border-box;
	-webkit-border-bottom-left-radius: 43px;
	-moz-border-radius-bottomleft: 43px;
	border-bottom-left-radius: 43px;	
}
#header .openbtn4::before{
    content: 'Menu';
	font-family: "Fugaz One", serif;
	font-weight: 400;
	font-size: 1.62rem;/*24*/
	color: #fff;
	position: absolute;
	bottom: 1.35rem;/*20*/
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
#header .openbtn4.active::before{
    content: 'Close';
}
#header .openbtn4 span{
    display: inline-block;
    width: 3.38rem;/*50*/
    height: 2px;
    background: #fff;
	transition: all .4s;
    position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
#header .openbtn4 span:nth-of-type(1) {
	top: 2.03rem;/*30*/
}
#header .openbtn4 span:nth-of-type(2) {
	top: 2.91rem;/*43*/
}
#header .openbtn4 span:nth-of-type(3) {
	top: 3.78rem;/*56*/
}
/*activeクラスが付与したら線が回転して×に変更*/
#header .openbtn4.active span:nth-of-type(1) {
	top: 2.03rem;/*30*/
    transform: translateY(0.41rem) rotate(-45deg);/*6*/
}
#header .openbtn4.active span:nth-of-type(2) {
    opacity: 0;
}
#header .openbtn4.active span:nth-of-type(3){
	top: 2.84rem;/*42*/
    transform: translateY(-0.41rem) rotate(45deg);
}

/*※縦スクロール可*/
#g-nav{
    position: fixed;
    /*z-index: 999;*/
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color:#F7F7F7;
    top:0;
    right: -120%;
    transition: all 0.6s;
	display: flex;
	justify-content: center;
	align-items: center;
}
#g-nav.panelactive{
    right: 0;
}

#g-nav.panelactive #g-nav-list{
}
#g-nav.panelactive #g-nav-list::-webkit-scrollbar{
	display: none;
}

/*ハンバーガーメニュー中身*/
#header_wrap #g-nav ul{
    width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4.39rem 0;/*65*/
}
#header_wrap #g-nav ul li{
    position: relative;
}
#header_wrap #g-nav ul li a{
    font-size: 1.69rem;/*25*/
    color: #C7014C;
	letter-spacing: 0.25em;
	text-align: center;
	display: inline-block;
}
#header_wrap #g-nav ul li a:hover{
    transform: scale(1.1);
	opacity: 1.0;
}

/*一時クローズ*/
/*
#header_wrap #g-nav ul li:nth-child(3) a, #header_wrap #g-nav ul li:nth-child(4) a{
    color: #333;
	opacity: 0.3;
	pointer-events: none;
}
*/

/*-----------------------------------------------------------*/
/*共通ファーストビュー*/

section#firstview{
	background: url("../image/common/main_bg@2x.jpg") center bottom / cover no-repeat;
}
#firstview .inner{
	width: 100%;
	height: 53.38rem;/*790*/
	position: relative;
}

#firstview .catch{
	width: 51.55rem;/*763*/
	height: 42.97rem;/*636*/
	position: absolute;
	bottom: 2.5rem;
	left: 0;
	right: 0;
	margin: auto;
}
#firstview .catch > img{
	width: 100%;
	height: auto;
}
#firstview .copy{
	width: 6.22rem;/*92*/
	position: absolute;
	bottom: 2.5rem;
	left: 0;
	right: 0;
	margin: auto;
	transform: translate(33.11rem);/*490*/
}

#firstview #pagemenu{
	max-width: 97.30rem;/*1400*/
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
#firstview #pagemenu > ul{
	display: flex;
	gap: 0 0.68rem;
	position: relative;
	width: 100%;
	height: 6.76rem;/*100*/
}
#firstview #pagemenu > ul li{
	width: calc( 100% / 5 - 0.68rem );
	height: 6.76rem;/*100*/
	background-color: #000;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	box-sizing: border-box;
	-webkit-border-top-left-radius: 25px;
	-webkit-border-top-right-radius: 25px;
	-moz-border-radius-topleft: 25px;
	-moz-border-radius-topright: 25px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;	
	transition: 0.3s;
	position: absolute;
	bottom: -0.68rem;
}
#firstview #pagemenu > ul li.blue{
	background-color: #0DA3F7;
	left: 0;
}
#firstview #pagemenu > ul li.green{
	background-color: #0EA164;
	left: calc( 20% + 0.34rem );
}
#firstview #pagemenu > ul li.red{
	background-color: #DC0000;
	left: calc( 40% + 0.34rem );
}
#firstview #pagemenu > ul li.orange{
	background-color: #EB7F00;
	left: calc( 60% + 0.34rem );
}
#firstview #pagemenu > ul li.pink{
	background-color: #ED007C;
	right: 0;
}
#firstview #pagemenu > ul li:hover{
	bottom: 0;
}
#firstview #pagemenu > ul li a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.35rem;/*20*/
	color: #fff;
}
#firstview #pagemenu > ul li a:hover{
	opacity: 1.0;
}

/*一時クローズ*/
/*
#firstview #pagemenu > ul li.red::before, #firstview #pagemenu > ul li.orange::before, #firstview #pagemenu > ul li.pink::before{
	content: '';
	display: block;
	width: 100%;
	height: 6.76rem;
	background-color: rgba(51,51,51,0.50);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-border-top-left-radius: 21px;
	-webkit-border-top-right-radius: 21px;
	-moz-border-radius-topleft: 21px;
	-moz-border-radius-topright: 21px;
	border-top-left-radius: 21px;
	border-top-right-radius: 21px;	
}
#firstview #pagemenu > ul li.red:hover, #firstview #pagemenu > ul li.orange:hover, #firstview #pagemenu > ul li.pink:hover{
	bottom: -0.68rem;
}
#firstview #pagemenu > ul li.red a, #firstview #pagemenu > ul li.orange a, #firstview #pagemenu > ul li.pink a{
	pointer-events: none;
}
*/

/*-----------------------------------------------------------*/
/*コアページ共通*/

section .inner h2.hd{
}
section .inner h2.hd > dl{
	text-align: center;
	position: relative;
}
section .inner h2.hd > dl::before{
	content: '';
	display: block;
	background: url("../image/common/hd_icon01.png") 0 0 / contain no-repeat;
	width: 3.65rem;/*54*/
	height: 0.74rem;/*11*/
	position: absolute;
	top: 5.34rem;/*79*/
	left: 0;
	right: 0;
	margin: auto;
}
section .inner h2.hd > dl dt{
	font-size: 5.00rem;/*74*/
	color: #fff;
	line-height: 100%;
	text-shadow: 4px 2px rgba(0,0,0,0.50);
}
section .inner h2.hd > dl dd{
	font-size: 1.35rem;/*20*/
	line-height: 100%;
	margin-top: 2.97rem;/*44*/
}

/*リンク（横幅・高さ指定無し）*/
a.linkbtn{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	-webkit-border-radius: 37px;
	-moz-border-radius: 37px;
	border-radius: 37px;
	border: 3px solid #fff;
	box-sizing: border-box;
	box-shadow: 4px 2px rgba(0,0,0,0.50);
	padding-left: 5.61rem;/*83*/
	position: relative;
}
a.linkbtn.arrow::before{
	content: '';
	display: block;
	background: url(../image/common/link_icon01.svg) 0 0 / contain no-repeat;
	width: 1.69rem;/*25*/
	height: 1.22rem;/*18*/
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 2.23rem;/*33*/
}
a.linkbtn.tabs::before{
	content: '';
	display: block;
	background: url("../image/common/icon_tab_white.svg") 0 0 / contain no-repeat;
	width: 2.30rem;/*34*/
	height: 2.30rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 2.23rem;/*33*/
}
a.linkbtn.mail::after{
	content: '';
	display: block;
	background: url("../image/common/icon_mail.svg") 0 0 / contain no-repeat;
	width: 4.05rem;/*60*/
	height: 2.64rem;/*39*/
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 2.23rem;/*33*/
}
a.linkbtn.bordeaux{
	background-color: #C7014C;
	font-size: 1.35rem;/*20*/
	color: #fff;
}

a.linkbtn:hover{
	opacity: 1.0;
	border: 3px solid #C7014C;
}
a.linkbtn.arrow:hover::before{
	background: url(../image/common/link_icon02.svg) 0 0 / contain no-repeat;
}
a.linkbtn.tabs:hover::before{
	background: url(../image/common/icon_tab_red.svg) 0 0 / contain no-repeat;
}
a.linkbtn.mail:hover::after{
	background: url(../image/common/icon_mail_red.svg) 0 0 / contain no-repeat;
}
a.linkbtn.bordeaux:hover{
	background-color: #fff;
	color: #C7014C;
}

/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
	padding: 8.45rem 0 0;/*125*/
}
#footer_wrap .inner{
	background-color: #C7014C;
	color: #fff;
	position: relative;
}
#footer_wrap .inner::before{
	content: '';
	display: block;
	background: url(../image/common/footer_bg@2x.png) 0 0 / cover no-repeat;
	width: 100%;
	height: 21.28rem;/*315*/
	position: absolute;
	top: -1px;
}
#footer_wrap .inner > .bnr{
	position: relative;
	z-index: 1;
	width: 54.12rem;/*801*/
	margin: -8.45rem auto 5.07rem;/*125,75*/
}
#footer_wrap .inner > .bnr a:hover{
	opacity: 1.0;
}

#footer_wrap .inner > .txts{
	max-width: 67.57rem;/*1000*/
	width: 100%;
	margin: 0 auto;
	padding: 5.07rem 0;/*75*/
	border-top: 1px solid #fff;
}
#footer_wrap .inner > .txts > dl{
	width: calc( 100% - 6.76rem );/*100*/
	margin: 0 auto;
}
#footer_wrap .inner > .txts > dl dt{
	font-size: 1.55rem;/*23*/
	text-align: center;
}
#footer_wrap .inner > .txts > dl dd{
	font-size: 1.01rem;/*15*/
	margin-top: 1.69rem;/*25*/
}
#footer_wrap .inner > .txts > .copy{
	margin: 3.11rem auto 0;/*46*/
	font-size: 1.01rem;/*15*/
	text-align: center;
}

/*-----------------------------------------------------------*/
/*to top*/

#pagetop {
    position: fixed;
    right: 5%;
    bottom: 5%;
    z-index: 10;
}

/*-----------------------------------------------------------*/
/*アニメーション*/

/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp{
    opacity: 0;
}
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*ipad横向き時*/
@media screen and (max-width: 1500px) and (orientation: landscape) {
    
}/*ここまで*/

/*ipad縦向き時*/
@media screen and (min-width: 820px) and (orientation: portrait) {
#firstview .catch {
}		
#firstview .copy {
}	
	
section#about .inner, section#news .inner{
	max-width: 74.32rem !important;
} 
	
#news .overview::before {
    right: 0rem !important;
}
	
#footer_wrap .inner > .bnr{
	display: flex;
	justify-content: center;
}
	
}/*ここまで*/



/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/

