@charset "utf-8";

/*
Theme Name: BabyParkチャットボットLP
Description: 
Author: Taniguchi
Version: 1.0
*/

/*===========
reset_css
===========*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
/*    font-size: 100%;*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
    vertical-align: baseline;
    background: transparent;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section,p {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
     list-style-type: none!important;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}
b,
strong {
font-weight: bold!important;
}

/*======================
basic_setting
======================*/
html {
	/*font-size: 62.5%;*/
		/*font-size: .625vw;*/
	font-size: calc(14 / 16 * 1rem);
	overflow: auto;
}

body{
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
	line-height: 1.4;
	letter-spacing:0;
	font-weight: 400;
}
h2,h3{
	line-height: 1.4;
}
p{
	color: #333333;
	line-height: 1.8;
	font-weight: 400;
}
a {
	color: #333333;
	text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}
iframe {
    vertical-align: bottom;
}



/*======================
link_hover色々
======================*/

/*透過する*/
.deco a{
/*	transition: 0.5s ease;*/
}
.deco a:hover{
	opacity: 0.8;
}

/*下線がついている→消える*/
.deco01 a{
	text-decoration: underline;
}
.deco01 a:hover{
	text-decoration: none;
}

/*ゆっくり透過する*/
.deco02 a{
	transition: all .3s;
}
.deco02 a:hover{
	opacity: 0.6;
}

/*下線が無い→下線がつく*/
.deco03 a:hover{
	text-decoration-line: underline;
}

/*ふわっと浮き上がる（ドロップシャドウ）*/
.deco-shadow a{
	transition: all .3s;
}
.deco-shadow a:hover{
	box-shadow: 0px 6px 22px 0px rgba(185,185,185,0.6);
	transform: translateY(-6px);
}

/*ゆっくり色がつく*/
.deco-color a{
	transition: all .3s;
}
.deco-color a:hover{
	color: #B8B8B8;
}

/*青文字下線つき→下線が消える*/
.fo-link a{
    color: #2259C7;
	text-decoration: underline;
}
.fo-link a:hover{
	text-decoration: none;
}

.link a{
	position: relative;
	padding-right: 24px;
}

/*======================
header
======================*/
.header_logo{
	background-color: #fff;
	height: 62px;
	padding-left: 20px;
}

.header_logo a{
	display: inline-block;
	line-height: 62px;
	width: 124px;
}


/*======================
hamberger_menu
======================*/
#header_fixed {
    position: fixed;
    width: 100%;
    left: 50%;
    top: 0;
    transform: translate(-50%);
	z-index: 999;
		
}

/*===========
上に設置
===========*/
.header_sp{
	display: none;
}
@media only screen and (max-width: 767px) {
		.header_sp{
			display: block;
	width: 100%;
		height: 62px;
		  transition: 0.3s;
	}
}


/*======================
ham style
======================*/
.sp-ham{
    cursor: pointer;
    width: 80px;
    height: 62px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

.ham span{
	position: absolute;
	left: 15px;
	width: 30px;
	height: 1px;
	background-color: #EF5353;
	transition: all 0.3s;
	z-index: 999;
}

.ham span:nth-of-type(1){
	top: 42%;
	left: 54%;
	transform: translate(-50%,-9px);
}
.ham span:nth-of-type(2){
	top: 42%;
	left: 54%;
	transform: translate(-50%,-50%);
}
.ham span:nth-of-type(3){
	top: 42%;
	left:54%;
	transform: translate(-50%,7px);
}
#ham .menu{
position: absolute;
    top: 54%;
    left: 53%;
    transform: translate(-50%,0);
	color: #EF5353;
	font-size: 9px;
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	#ham .menu{
	font-size: 12px;
}
}

.clicked .ham span:nth-of-type(1) {
	transform: translate(-50%,0) rotate(45deg);
	background-color: #EF5353;
}
.clicked .ham span:nth-of-type(2) {
	opacity: 0;
}
.clicked .ham span:nth-of-type(3){
transform: translate(-50%,0) rotate(-45deg);
    background-color: #EF5353;
}

/*===========
ham menu style
===========*/
.ham_menu{
	position: fixed;
	width: 100%;
	height: 100vh;
    top: 0;
	right: 0;
	background-color:#fff;
	z-index:999;
	display: none;
	padding: 25px 30px 0;
	margin-top: 62px;
}

.ham_inner{
	overflow-y: scroll;
	height: 100vh;
	padding-bottom: 200px;
}

.clicked .ham_menu {
	display: block;
	
}

.ham_menu .ham_menu_list{
	margin-bottom: 60px;
}
.ham_menu .ham_menu_list ul:first-of-type{
	margin-right: 160px;
}

.ham_menu .ham_menu_list li{
	position: relative;
	border-bottom: 1px solid #FFE8E8;
}
.ham_menu .ham_menu_list li::after {
    content: "";
	display: inline-block;
	background-image: url("images/icon/ham_right_red.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	position: absolute;
	right:0;
	top: 50%;
	transform: translateY(-50%);
}

.ham_menu .ham_menu_list li:last-child{
	margin-bottom: 0;
}

.ham_menu .ham_menu_list li a{
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	padding-top: 24px;
	padding-bottom: 24px;
}

.ham_cta_btn a{
	width: 100%;
	height: 56px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	border-radius: 6px;
	background-color: #3DB1BC;
	border: 1px solid #3DB1BC;
	position: relative;
	padding-right: 15px;
}

.ham_cta_btn a img{
	width: 22px;
	height: auto;
	margin-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.ham_cta_btn a{
	width: 300px;
}
}






/*======================
inview
======================*/

.fadeIn_logo {
  opacity: 0;
  transition: 3s;
}
.fadeIn{
  opacity: 0;
  transition: 1.5s;
}
.fadeIn_35{
  opacity: 0;
  transition: 3.5s;
}
.fadeIn_45{
  opacity: 0;
  transition: 6.5s;
}
.fadeInTop {
  opacity: 0;
  transition: 2.5s;
}
.fadeIn_logo.is-show,.fadeIn.is-show,.fadeInTop.is-show,.fadeIn_35.is-show,.fadeIn_45.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 0.8s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
	transition-delay: .3s;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(5%, 0);
  transition: 0.8s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
transition-delay: .4s;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-5%, 0);
  transition: 0.8s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
transition-delay: .4s;
}


.fadeIn_logo {
  opacity: 0;
	  transform: translate(-50%,-40%);
  transition: 1.5s;
}
.fadeIn_logo.is-show {
	
  transform: translate(-50%,-50%);
  opacity: 1;
}


.fadein {
	opacity: 0;
	transition: all 1000ms;
}
.fadein.scrollin {
	opacity: 1;
}


.fadeInTrigger{
	opacity: 0;
}
.delay-time{
	animation-delay: 0.5s;
}

.delay0-5{
	animation-delay:0.5s;
}
.delay1s{
	animation-delay:1s;
}
.delay1-5s{
	animation-delay:1.5s;
}
.delay1-8s{
	animation-delay:1.8s;
}
.delay2s{
	animation-delay:2s;
}
.delay2-5s{
	animation-delay:2.5s;
}
.delay3s{
	animation-delay:3s;
}
.delay3-5s{
	animation-delay:3.5s;
}
.delay4s{
	animation-delay:4s;
}
.delay5s{
	animation-delay:5s;
}


