@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

*:focus {
  outline: none;
}

html { 
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 14px;
    font-weight: 500;
	color: #222;
    line-height: 1.5;
}

/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}
#all_wrap {
	/*overflow: hidden;*/
	background-color: #FFCC2B;
}

#contents {
    width: 100vw;
    overflow-x: visible;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}

a {
    font-size: 14px;
	outline: none;
	color: #333333;
	text-decoration:none;
	opacity: 1;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}

.pc_hide {
}

.sp_hide {
	display: none !important;
}

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;
}

/*-----------------------------------------------------------*/
/*フォント*/

.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;
}
.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
}
.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 700;
  font-style: normal;
}
.m-plus-rounded-1c-extrabold {
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
}

.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;
}

.m-plus-1p-bold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
	width: 100%;
    height: 66px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

#header_wrap #header{
    height: 100%;
    display: flex;
    justify-content: space-between;
}

#header_wrap #header .logo{
    position: relative;
    width: 59.72%;
    height: 50px;
	z-index: 10;
}
#header_wrap #header .logo img{
    width: 100%;
    height: auto;
}

.openbtn4{
    position: relative;
    cursor: pointer;
    width: 67px;
    height: 67px;
    z-index: 9;
    background-color: #C7014C;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	box-sizing: border-box;
	-webkit-border-bottom-left-radius: 22px;
	-moz-border-radius-bottomleft: 22px;
	border-bottom-left-radius: 22px;	
}
#header .openbtn4::before{
    content: 'Menu';
	font-family: "Fugaz One", serif;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
	position: absolute;
	bottom: 9px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
#header .openbtn4.active::before{
    content: 'Close';
}
.openbtn4 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 22px;
    width: 25px;
    height: 1px;
    background: #fff;
    position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
.openbtn4 span:nth-of-type(1) {
	top: 16px; 
}
.openbtn4 span:nth-of-type(2) {
	top: 24px;
}
.openbtn4 span:nth-of-type(3) {
	top: 32px;
}
/*activeクラスが付与したら線が回転して×に変更*/
.openbtn4.active span:nth-of-type(1) {
	top: 16px; 
    transform: translateY(6px) rotate(-45deg);
    width: 31px;
}
.openbtn4.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn4.active span:nth-of-type(3){
	top: 28px; 
    transform: translateY(-6px) rotate(45deg);
    width: 31px;
}

/*※縦スクロール可*/
#g-nav{
    position: fixed;
    /*z-index: 999;*/
    width: 100%;
    height: 100vh;
    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;
}

#g-nav .menutxt{
    font-size: 28px;
    color: #E01616;
    position: absolute;
    top: 20px;
    left: 26px;
}

#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{
	margin: 125px auto 0;
    width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 45px 0;
}

#header_wrap #g-nav ul li{
    position: relative;
}
    
#header_wrap #g-nav ul li a{
    font-size: 15px;
    color: #C7014C;
	letter-spacing: 0.25em;
	text-align: center;
}

/*一時クローズ*/
/*
#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_bgsp@2x.jpg") 0 0 / cover no-repeat;
}
#firstview .inner{
	width: 100%;
	height: 435px;
	position: relative;
}

#firstview .catch{
	width: 95%;
	height: 100%;
	position: absolute;
	bottom: 35px;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
#firstview .catch > img{
	width: auto;
	max-height: 350px;
	height: auto;
}
#firstview .copy{
	width: 12.78%;/*92*/
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	margin: auto;
}

#firstview #pagemenu{
	display: 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: 34px;
	height: 6px;
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	margin: auto;
}
section .inner h2.hd > dl dt{
	font-size: 49px;
	color: #fff;
	line-height: 100%;
	text-shadow: 2px 1px rgba(0,0,0,0.50);
}
section .inner h2.hd > dl dd{
	font-size: 18px;
	line-height: 100%;
	margin-top: 17px;
}

/*リンク（横幅・高さ指定無し）*/
a.linkbtn{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	border: 2px solid #fff;
	box-sizing: border-box;
	box-shadow: 2px 1px rgba(0,0,0,0.50);
	padding-left: 58px;
	position: relative;
}
a.linkbtn.arrow::before{
	content: '';
	display: block;
	background: url(../image/common/link_icon01.svg) 0 0 / contain no-repeat;
	width: 15px;
	height: 11px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 20px;
}
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: 15px;
	color: #fff;
}

/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
	padding: 0;
}
#footer_wrap .inner{
	background-color: #C7014C;
	color: #fff;
	position: relative;
	padding: 40px 0 0;
}
#footer_wrap .inner::before{
	content: '';
	display: block;
	background: url(../image/common/footer_bgsp.png) 0 0 / cover no-repeat;
	width: 100%;
	height: 67px;
	position: absolute;
	top: -1px;
}
#footer_wrap .inner > .bnr{
	position: relative;
	z-index: 1;
	width: 86.11%;/*620*/
	margin: 60px auto 40px;
}

#footer_wrap .inner > .txts{
	width: 86.11%;/*620*/
	margin: 0 auto;
	padding: 40px 0;
	border-top: 1px solid #fff;
}
#footer_wrap .inner > .txts > dl{
	margin: 0 auto;
}
#footer_wrap .inner > .txts > dl dt{
	font-size: 15px;
	text-align: center;
}
#footer_wrap .inner > .txts > dl dd{
	margin-top: 20px;
	font-size: 11px;
	text-align: justify;
}
#footer_wrap .inner > .txts > .copy{
	margin: 33px auto 0;
	font-size: 10px;
	text-align: center;
}

/*-----------------------------------------------------------*/

#pagetop {
    position: fixed;
	width: 50px;
	height: 50px;
    right: 10px;
    bottom: 20px;
    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);
  }
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/