@charset "utf-8";
/* CSS Document */

@media print{
   /*印刷用CSSで適用させる定義を記述*/
    .to_top{
        display: none;
    }
}

html {    
    overflow-x: hidden;
    overflow-y: scroll;
    /*font-size: 62.5%;*/
    font-size:92.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: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.08rem;/*100%;*/
    -webkit-text-size-adjust: none;
	color: #333;
    overflow: hidden;
    font-style: normal;
    line-height: 1.5;
}

#all_wrap {
}

::-webkit-scrollbar-track {
  background: none;
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
::-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;
}

/*電話番号のリンク（.tellink）はPCではOFF*/
a.tellink{
    pointer-events: none;
    color: #333333;
}

ul{
    list-style-type: none;
}

input, textarea, select{
    /*bodyと同じフォントcssを入れる*/
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.08rem;/*100%;*/
	color: #333;
    font-style: normal;
}
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;
}

/*-----------------------------------------------------------*/
/*フォント*/

.zenmaru_m{
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}

.opti_r{
    font-family: 'Kaisei Opti', serif;
    font-weight: 400;
}

.oooh_r{
    font-family: 'Oooh Baby', cursive;
    font-weight: 400;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/

/*お問い合わせ リンク*/
a.contact-g{
    display: flex;
    background-color: #EC5A24;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;    
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: 0px 0px 9px 0px rgba(53,66,71,0.35);
}
a.contact-g::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(247,233,33);
    background: -moz-linear-gradient(90deg, rgba(247,233,33,0.79) 0%, rgba(252,170,109,0.79) 34%, rgba(255,123,167,0.79) 100%);
    background: -webkit-linear-gradient(90deg, rgba(247,233,33,0.79) 0%, rgba(252,170,109,0.79) 34%, rgba(255,123,167,0.79) 100%);
    background: linear-gradient(90deg, rgba(247,233,33,0.79) 0%, rgba(252,170,109,0.79) 34%, rgba(255,123,167,0.79) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7e921",endColorstr="#ff7ba7",GradientType=1);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;    
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.5s;
	opacity: 1;
}
a.contact-g:hover{
    background-color: #FF1577;
    opacity: 1.0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
a.contact-g:hover::before{
	opacity: 0;
}
a.contact-g p{
    position: relative;
    z-index: 2;
}
a.contact-g::after{
    content: '';
    display: block;
    background-image: url("../image/common/icon_mail.png");
    background-repeat: no-repeat;
    background-size: 1.82rem 1.49rem;/*27,22*/
    width: 1.82rem;
    height: 1.49rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 1.49rem;/*22*/
}

/*アクセス*/
a.access{
    display: flex;
    background-color: #44B3C6;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;    
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: 0px 0px 9px 0px rgba(53,66,71,0.35);
}
a.access p{
    position: relative;
    z-index: 2;
}
a.access::before{
    content: '';
    display: block;
    background-image: url("../image/common/icon_access.png");
    background-repeat: no-repeat;
    background-size: 1.15rem 1.62rem;/*17,24*/
    width: 1.15rem;
    height: 1.62rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 2.03rem;/*30*/
}

/*別タブ*/
a.tab{
    display: flex;
    background-color: #fff;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;    
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: 0px 0px 9px 0px rgba(53,66,71,0.35);
}
a.tab p{
    position: relative;
    z-index: 2;
}
a.tab::before{
    content: '';
    display: block;
    background-image: url("../image/common/icon_tab.png");
    background-repeat: no-repeat;
    background-size: 1.42rem 1.22rem;/*21,18*/
    width: 1.42rem;
    height: 1.22rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1.69rem;/*25*/
}

/*背景色ピンク→グラデ*/
a.grade-pink{
    background-color: #ED4384;
}
/*背景色茶色→グラデ*/
a.grade-brown{
    background-color: #876239;
}
/*背景色茶色→グラデ*/
a.grade-white{
    background-color: #fff;
}
/*hover時 グラデ*/
a.grade-pink, a.grade-brown, a.grade-white{
    display: flex;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;    
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: 0px 0px 9px 0px rgba(53,66,71,0.35);
}
a.grade-pink::before, a.grade-brown::before, a.grade-white::before{
	opacity: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255,21,119);
    background: -moz-linear-gradient(90deg, rgba(255,21,119,1) 0%, rgba(251,185,92,1) 94%);
    background: -webkit-linear-gradient(90deg, rgba(255,21,119,1) 0%, rgba(251,185,92,1) 94%);
    background: linear-gradient(90deg, rgba(255,21,119,1) 0%, rgba(251,185,92,1) 94%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff1577",endColorstr="#fbb95c",GradientType=1);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;    
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s;
}
a.grade-pink:hover, a.grade-brown:hover, a.grade-white:hover{
    background-color: #FF1577;
    opacity: 1.0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
a.grade-white:hover{
    color: #fff !important;
}
a.grade-pink:hover::before, a.grade-brown:hover::before, a.grade-white:hover::before{
	opacity: 1;
}
a.grade-pink p, a.grade-brown p, a.grade-white p{
    width: 100%;
    position: relative;
    z-index: 2;
}

/*動く矢印*/
a.move-arrow::after{
    content: '';
    display: block;
    background-image: url("../image/common/icon_arrow_white.png");
    background-size: 1.62rem 0.74rem;/*24,11*/
    background-repeat: no-repeat;
    width: 1.62rem;
    height: 0.74rem;
    right: 2.30rem;/*34*/
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
}
a.move-arrow.grade-white::after{
    background-image: url("../image/common/icon_arrow_pink.png");
}
a.move-arrow.grade-white:hover::after{
    background-image: url("../image/common/icon_arrow_white.png");
}
a.move-arrow:hover::after{
    right: 1.62rem;/*24*/
}

/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
    width: 100%;
    position: relative;
    z-index: 10;
    margin: 2.36rem auto 3.04rem;/*35,45*/
}
#header_wrap #header{
    max-width: 91.01rem;/*1347*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*ロゴ*/
#header_wrap .logo{
    width: 24.80rem;/*367*/
}

/*メニュー*/
#header_wrap nav{
    width: calc( 100% 38.72rem );
}

#header_wrap nav #g-nav-list ul{
    display: flex;
    justify-content: center;
}
#header_wrap nav #g-nav-list ul li{
}

#header_wrap nav #g-nav-list ul li a{
    width: 10.81rem;/*160*/
    height: 4.46rem;/*66*/
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    font-size: 1.15rem;/*17*/
}
#header_wrap nav #g-nav-list ul li a:hover{
    opacity: 1.0;
    color: #E2407E;
}

#header_wrap nav #g-nav-list ul li a::before{
    content: '';
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
    transform: translateY(0);    
}
#header_wrap nav #g-nav-list ul li a:hover::before{
    transform: translateY(-5px);
}

#header_wrap nav #g-nav-list ul li:nth-child(3) a::before{
    background-image: url("../image/common/gicon01.png");
    background-size: 30px;
    width: 30px;
    height: 30px;
}
#header_wrap nav #g-nav-list ul li:nth-child(4) a::before{
    background-image: url("../image/common/gicon02.png");
    background-size: 30px;
    width: 30px;
    height: 30px;
}
#header_wrap nav #g-nav-list ul li:nth-child(5) a::before{
    background-image: url("../image/common/gicon03.png");
    background-size: 26px 33px;
    width: 26px;
    height: 33px;
}
#header_wrap nav #g-nav-list ul li:nth-child(6) a::before{
    background-image: url("../image/common/gicon04.png");
    background-size: 16px 28px;
    width: 16px;
    height: 28px;
}

/*お問い合わせボタン*/
#header_wrap .contactbtn{
    width: 13.92rem;/*206*/
}
.contactbtn a.contact-g{
    width: 100%;
    height: 4.73rem;/*70*/
    align-items: center;
    justify-content: flex-end;
    font-size: 1.22rem;/*18*/
    color: #fff;
}
.contactbtn a.contact-g p{
    padding-right: 2.03rem;/*30*/
}

/*-----------------------------------------------------------*/
/*コアページ ファーストビュー*/

main#coapage #firstview{
    width: 100%;
    position: relative;
    background-color: #EF6097;
}
main#coapage #firstview::before{
    content: '';
    display: block;
    background-image: url("../image/common/parts01.png");
    background-repeat: no-repeat;
    background-size: 31.08rem 26.82rem;/*460,397*/
    width: 31.08rem;
    height: 26.82rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
main#coapage #firstview::after{
    content: '';
    display: block;
    background-image: url("../image/common/parts02.png");
    background-repeat: no-repeat;
    background-size: 18.72rem 23.78rem;/*277,352*/
    width: 18.72rem;
    height: 23.78rem;
    position: absolute;
    top: 1.28rem;/*19*/
    left: 0;
    right: 0;
    margin: auto;
    transform: translate(1.25rem);
    z-index: 1;
}

main#coapage #firstview .inner{
    display: flex;
    align-items: stretch;
}

main#coapage #firstview .txt{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

main#coapage #firstview h1{
    color: #fff;
    font-size: 2.70rem;/*40*/
    text-align: center;
    font-weight: normal;
    line-height: 100%;
    position: relative;
}
main#coapage #firstview h1::before{
    content: '';
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

main#coapage #firstview .txt ul{
    position: absolute;
    bottom: 1.08rem;/*16*/
    left: 4.46rem;/*66*/
    display: flex;
    color: #fff;
}
main#coapage #firstview .txt ul a{
    color: #fff;
}
main#coapage #firstview .txt ul li{
    position: relative;
}
main#coapage #firstview .txt ul li:not(:last-child){
    margin-right: 2.84rem;/*43*/
}
main#coapage #firstview .txt ul li:not(:last-child)::after{
    content: '';
    display: block;
    background-image: url("../image/common/icon_breadcrumbs.png");
    background-repeat: no-repeat;
    background-size: 11px 10px;
    width: 11px;
    height: 10px;
    position: absolute;
    top: 0.54rem;/*8*/
    right: -2.03rem;/*30*/
}

main#coapage #firstview .image{
    width: 50%;
}
main#coapage #firstview .image img{
    width: 100%;
    height: auto;
}

/*アンカーリンク*/
main#coapage #anchor{
    width: 100%;
    padding: 1.62rem 0;/*24*/
    background-color: #F4F1ED;
} 
main#coapage #anchor ul{
    max-width: 74.32rem;/*1100*/
    height: 4.73rem;/*70*/
    margin: 0 auto;
    display: flex;
    background-color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
} 
main#coapage #anchor ul li{
    display: flex;
    align-self: auto;
    flex: 1;
    min-width: 0;
    position: relative;
} 
main#coapage #anchor ul li::before{
    content: '';
    display: block;
    background-image: url("../image/common/icon_anchor.png");
    background-repeat: no-repeat;
    background-size: 1.01rem 0.81rem;/*15,12*/
    width: 1.01rem;
    height: 0.81rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1.82rem;/*27*/
} 
main#coapage #anchor ul li:not(:last-child)::after{
    content: '';
    display: block;
    width: 1px;
    height: 4.19rem;/*62*/
    background-color: #AEAEAE;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
} 

main#coapage #anchor ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    text-align: center;
    word-break: break-all;
    box-sizing: border-box;
    color: #E81E79;
} 

/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
    width: 100%;
    background-color: #F9F9F9;
}

#footer_wrap .info{
    max-width: 44.26rem;/*655*/
    width: 100%;
    margin: 0 auto;
    padding: 3.51rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#footer_wrap .logo{
}
#footer_wrap .txt{
    font-size: 1.01rem/*15*/
}

#footer_wrap .sitemaps{
    max-width: 60.81rem;/*900*/
    width: 100%;
    margin: 2.84rem auto 0;/*42*/
    border-top: 1px solid #E81E79;
}
#footer_wrap .sitemaps .inner{
    max-width: 51.35rem;/*760*/
    width: 100%;
    margin: 2.84rem auto 0;/*42*/
    display: flex;
}

#footer_wrap .sitemaps .onecolumn:not(:last-child){
    margin-right: 2.70rem;/*40*/
}
#footer_wrap .sitemaps .onecolumn:first-of-type{
    width: 8.51rem;/*126*/
}
#footer_wrap .sitemaps .onecolumn:nth-of-type(2){
    width: 13.31rem;/*197*/
}
#footer_wrap .sitemaps .onecolumn:nth-of-type(3){
    width: 11.69rem;/*175*/
}

#footer_wrap .sitemaps .onecolumn dl:not(:last-of-type){
    margin-bottom: 0.34rem;/*5*/
}

#footer_wrap .sitemaps .onecolumn dl dt{
    margin-bottom: 0.34rem;/*5*/
}
#footer_wrap .sitemaps .onecolumn dl dt a{
    font-size: 1.01rem;/*15*/
    position: relative;
}
#footer_wrap .sitemaps .onecolumn dl dt a::before{
    content: '-';
    display: inline-block;
    padding-right: 0.68rem;/*10*/
}

#footer_wrap .sitemaps .onecolumn dl dd a{
    font-size: 0.88rem;/*13*/
    position: relative;
    text-indent: 0.68rem;/*10*/
}
#footer_wrap .sitemaps .onecolumn dl dd a::before{
    content: '>';
    display: inline-block;
    padding-right: 0.68rem;/*10*/
}

#footer_wrap .sitemaps .onecolumn a:hover{
    opacity: 1.0;
    color: #E2407E;
}

#footer_wrap .copy{
    width: 100%;
    height: 4.05rem;/*60*/
    margin: 5.07rem auto 0;/*75*/
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255,123,167);
    background: -moz-linear-gradient(90deg, rgba(255,123,167,1) 0%, rgba(247,233,33,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,123,167,1) 0%, rgba(247,233,33,1) 100%);
    background: linear-gradient(90deg, rgba(255,123,167,1) 0%, rgba(247,233,33,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff7ba7",endColorstr="#f7e921",GradientType=1);
    font-size: 0.88rem;/*13*/
    color: #fff;
    letter-spacing: 0.25em;
}

/*-----------------------------------------------------------*/
/*to top*/

#pagetop {
    position: fixed;
    right: 0;
    bottom: 5%;
    z-index: 10;
}

/*-----------------------------------------------------------*/
/*アニメーション*/

/*フェードイン*/
.anim{
  opacity: 0;
}

.anim.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------------------------------------*/


/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*ipad*/
@media screen and (max-width: 1200px) {
}

/*ipad横向き時*/
@media screen and (max-width: 1200px) and (orientation: landscape) {
    
}

/*ipad縦向き時*/
@media screen and (max-width: 1200px) and (orientation: portrait) {
}


/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/

