@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

*:focus {
  outline: none;
}

html { 
    font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 14px;
    font-weight: 500;
	color: #333;
    line-height: 1.5;
}

/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}

#all_wrap {
	/*overflow: hidden;*/
}

#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を入れる*/
    font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 14px;
    font-weight: 500;
	color: #333;
    line-height: 1.5;
}
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;
}

/*-----------------------------------------------------------*/
/*フォント*/

.notoreg{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.notomed{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.notobold{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.jostreg{
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/


/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
	width: 100%;
    height: 76px;
    background-color: #ffeaee;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

#header_wrap #header{
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header_wrap #header .logo{
    position: relative;
    width: 60%;
    height: 76px;
    text-align: center;
    background-color: #f75074;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    border-bottom-right-radius: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#header_wrap #header .logo img{
    width: 84.56%;
    height: auto;
}

/*※縦スクロール可*/
#g-nav{
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color: #ffeaee;
    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;
}

.openbtn4{
    position: relative;
    cursor: pointer;
    width: 76px;
    height: 76px;
    z-index: 1000;
    background-color: #f75074;
}

.openbtn4 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 22px;
    width: 31px;
    height: 3px;
    border-radius: 5px;
    background: #fff;
}
.openbtn4 span:nth-of-type(1) {
  top: 24px; 
}

.openbtn4 span:nth-of-type(2) {
  top: 34px;
}

.openbtn4 span:nth-of-type(3) {
  top: 44px;
}

/*activeクラスが付与したら線が回転して×に変更*/
.openbtn4.active span:nth-of-type(1) {
    top: 30px;
    right: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 31px;
}

.openbtn4.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn4.active span:nth-of-type(3){
    top: 42px;
    right: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 31px;
}

/*ハンバーガーメニュー中身*/
#header_wrap #g-nav ul{
    width: calc( 100% - 52px );
    margin: 90px auto 0;
}

#header_wrap #g-nav ul li{
    position: relative;
}
    
#header_wrap #g-nav ul li a{
    height: 75px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #f75074;
    text-indent: 20px;
    position: relative;
    border-bottom: 1px solid #FFBF00;
}

#header_wrap #g-nav ul li a span{
    display: none;
}

#header_wrap #g-nav ul li a::before{
    content: '';
    display: block;
    width: 7.5px;
    height: 35px;
    background-color: #f75074;
    position: absolute;
    left: 0;
}

#header_wrap #g-nav ul li a::after{
    content: '';
    display: block;
    background-image: url("../image/common/icon_hmenu.png");
    background-repeat: no-repeat;
    background-size: 25px;
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 18px;
    right: 0;
}

/*その他バナー*/
#header_wrap #g-nav .banner.tel{
    width: calc( 100% - 52px );
    margin: 30px auto 0;
    border: 1px solid #000;
    box-sizing: border-box;
    position: relative;
}

#header_wrap #g-nav .banner.tel a{
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    font-size: 27px;
    color: #E01616;
    text-indent: 73px;
}

#header_wrap #g-nav .banner.tel::before{
    content: '';
    display: block;
    background-image: url("../image/common/icon_tel.png");
    background-repeat: no-repeat;
    background-size: 13px 40px;
    width: 13px;
    height: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 45px;
}

#header_wrap #g-nav .banner.contact{
    width: calc( 100% - 52px );
    margin: 25px auto 0;
    background-color: #0B0591;
    position: relative;
}

#header_wrap #g-nav .banner.contact a{
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

#header_wrap #g-nav .banner.contact::before{
    content: '';
    display: block;
    background-image: url("../image/common/icon_banner.png");
    background-repeat: no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 8px;
    right: 8px;
}

#header_wrap #g-nav .txtlink{
    width: calc( 100% - 52px );
    margin: 25px auto 80px;
}

#header_wrap #g-nav .txtlink{
    width: calc( 100% - 52px );
    margin: 45px auto 120px;
}

#header_wrap #g-nav .txtlink a{
    position: relative;
    font-size: 14px;
    color: #0093D7;
    text-decoration: underline;
    padding-left: 25px;
}

#header_wrap #g-nav .txtlink a::before{
    content: '';
    display: block;
    background-image: url("../image/common/icon_arrow.png");
    background-repeat: no-repeat;
    background-size: 8px 13px;
    width: 8px;
    height: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

/*-----------------------------------------------------------*/
/*ページ内共通部分*/

main section#firstview{
    width: 100%;
    height: 130px;
    background: url("../image/bg_title_sp@2x.png") 0 0 / cover no-repeat;
    display: flex;
    justify-content: center;
}
main section#firstview > .inner h1 dl{
    width: fit-content;
    padding: 45px 0 0;
    text-align: center;
}
main section#firstview > .inner h1 dl dt{
    font-size: 13px;
    color: #f74f74;
}
main section#firstview > .inner h1 dl dd{
    font-size: 20px;
}

/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
    width: 100%;
    padding: 30px 0 45px;
    background-color: #fff5d6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#footer_wrap .profile{
    width: 100%;
    margin: 0 auto;
}
#footer_wrap .profile dl{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#footer_wrap .profile dl dt{
    width: 100%;
    padding-bottom: 13px;
    border-bottom: 1px solid #f75074;
    text-align: center;
}
#footer_wrap .profile dl dd{
    width: 100%;    
    padding-top: 13px;
    color: #f75074;
    font-weight: 500;
    text-align: center;
}

#footer_wrap .address{
    margin: 13px auto 0;
    font-weight: 500;
    text-align: center;
}
#footer_wrap .address dl{
    display: flex;
	gap: 0 14px;
}
#footer_wrap .address dl dt{
}
#footer_wrap .address dl dd{
}
#footer_wrap .address dl:first-of-type dd a{
    text-decoration: none;
}
#footer_wrap .address dl:nth-of-type(2) dd a{
    color: #33acff;
    text-decoration: underline;
}
/*-----------------------------------------------------------*/

#pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    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);
  }
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/