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

/*
共通
WordPress対策・全ページ余白なし
*/

* {
	margin: 0;
	padding: 0;
}
 
body {
	margin: 0;
	padding: 0;
	color: #1C1C1C;
	background: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
 
img {
	vertical-align: bottom;
	max-width: 100%;
}
 
h1,h2,h3,h4,h5 {
	
}

p {
	color: #1C1C1C;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
}

font,span {
	
}
 
a {
	text-decoration: none;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

/*Googleフォント*/
/*Zen Kaku Gothic New（日本語見出し、本文）*/
.zen-kaku-gothic-new {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
}

/*Zen Maru Gothic（キービジュアル、広報キャラとしても活躍中！）*/
.zen-maru-gothic {
	font-family: "Zen Maru Gothic", sans-serif;
	font-style: normal;
}

/*Shippori Mincho（キービジュアル）*/
.shippori-mincho {
	font-family: "Shippori Mincho", serif;
	font-style: normal;
}

/*Playwrite CA（英語見出し）*/
.playwrite-ca {
	font-family: "Playwrite CA", cursive;
	font-style: normal;
}

/*共通*/
/*PC*/
@media only screen and (min-width: 1025px) {
	.pc { 
		display: block !important; 
	}
	
	.smp { 
		display: none !important; 
	}
	
	p {
		font-size: 17px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 27px;
		text-align: left;
	}
	
	/*電話番号をクリックしても自動発信しない*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
	main {
		position: relative;
		width: 900px;
		height: auto;
		margin: 0 auto 0 auto;
		overflow: hidden;
	}
 
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	.pc { 
		display: none !important; 
	}
	
	.smp { 
		display: block !important; 
	}
	
	p {
		font-size: 12px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 18px;
		text-align: left;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 0 auto;
		overflow: hidden;
	} 
	
}

/*アニメーション設定*/
/*フェードイン*/
.anim_title.fadein.is-animated {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}