/*
Theme Name: オリジナルテーマ(kaneko-pharmacy)
*/

/*この下からCSSを書いてください*/

/****************************************
* リセットCSS
*****************************************/
*, *::before, *::after {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-size: 100%;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	letter-spacing: 1.5px;
	line-height: 1.5;
}
img {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
a {
	text-decoration: none;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
body,html{
    scroll-behavior: smooth;
    width: 100%;
	
}
html {
	padding-top: 0px !important
}
/****************************************
* フォント設定
*****************************************/
html, body {
	font-size: 16px;
}

/****************************************
* ヘッダー
*****************************************/
header {
	width: 100%;
}
.header {
	display: flex;
	position: fixed;
	top: 0px;
	z-index: 999;
	background-color: #fff;
}
.header_in {
	display: flex;
}
.header_inner {
    max-width: 1152px;
	margin: 0 auto;
    width: 100%;
	align-items: flex-end;
	justify-content: space-between;	
}
.header_title {
	font-size: 45px;
	font-weight: bold;
	color: #09A250;
	margin: 20px 0 20px 45px;
}
.header_title_a {
	margin: 30px 0 0 300px;
	font-weight: bold;
}
.header_navgroup {
	display: flex;
	font-weight: bold;
	margin: 10px auto;
	/* font-family: "a-otf-midashi-go-mb31-pr6n","sans-serif"; */
}
.header_navgroup img {
	width: 40px;
	height: 45px;
}
.header_navgroup a {
	color: black;
	text-decoration: none;
	font-size: 18px;
	margin-left: 10px;
}
.header_navitem {
	margin-left: 60px;
}
.header_navitem :hover {
	color: #09A250;
}

/****************************************
* ハンバーガーメニュー
*****************************************/
.nav {
	display: none;
}

/****************************************
* main
*****************************************/
.main {
	padding-top: 88.29px;
	margin: 0 60px;
}

/****************************************
* フッター
*****************************************/
footer {
	text-align: center;
}
.footer_top {
	margin: 20px auto;
	font-size: 20px;
}
.footer_center {
	margin: 20px auto;
}
.footer_insta {
	width: 30px;
	height: auto;
	margin-right: 10px;
}
.footer_twitter {
	width: 30px;
	height: auto;
	margin-left: 10px;
}
.footer_bottom {
	font-size: 15px;
	margin-bottom: 15px;
}

/****************************************
* トップページ ファーストビューのイメージ
*****************************************/
.topimg {
	position: relative;
	width: 70%;
	margin: 65px auto;
	height: 560px;
	padding-top: 50px;
} 
	
.toptext {
	position: absolute;
	max-width: 1152px;
	top: 75%;
	left: 7%;
	color: #09A250;
	background-color: #fff;
	/* -webkit-text-stroke: 1px #fff;  */
	font-size: 38px;
	font-weight: bolder;
	/* font-family: "a-otf-midashi-go-mb31-pr6n","sans-serif"; */
}

/* アニメーション */
.toptext {
	animation-name: fadeInAnime;/*1で解説*/
	animation-fill-mode:backwards;/*2で解説*/
	animation-duration:4s;/*3で解説*/
	animation-iteration-count:1;/*4で解説*/
	animation-timing-function:ease;/*5で解説*/
	animation-delay: 0.5s;/*6で解説*/
	animation-direction:normal;/*7で解説*/
	}
	
	/*1で解説*/
	@keyframes fadeInAnime{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
	}

/****************************************
* 共通部分
*****************************************/
.content_title {
	text-align: center;
	font-size: 40px;
	margin: 140px 0;
	color: #09A250;
	font-weight: bold;
}

/* 左右のアニメーション 
.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
	from {
	transform: translateX(-100%); 
	opacity: 0;
	}
	to {
	transform: translateX(0);
	opacity: 1;
	}
}


.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
from {
	transform: translateX(100%);
    opacity: 0;
}
to {
	transform: translateX(0);
    opacity: 1;
}
}

/* アニメーション 
.content_title {
	animation-name:rotateYAnime;
	animation-duration:4s;
	animation-iteration-count:infinite;
	animation-fill-mode:forwards;
	animation-timing-function:ease;
}

@keyframes rotateYAnime{
	from{
	transform: rotateY(0);
	}
	to{
	transform: rotateY(-360deg);
	}
} */


/****************************************
* 会社概要
*****************************************/
.co_content {
	padding-top: 50px;
	margin-top: -50px;
}
.co_main {
	display: flex;
	margin: 50px 150px;
	font-size: 20px;
	font-weight: bold;
	/* font-family: "a-otf-midashi-go-mb31-pr6n","sans-serif"; */
}
.co_subtitle {
	margin: 0 80px 0 30px;
}
.co_subtitle_border {
	margin: 10px auto;
	width: 300px;
	border-bottom: solid 2px #09A250;
}
.co_name {
	margin-left: 60px;
}
.co_name_border {
	margin: 10px auto;
	width: 550px;
	border-bottom: solid 2px #000;
}
.co_map {
	margin: 0 280px;
}

/****************************************
* 店舗情報
*****************************************/
.shop_content {
	padding-top: 50px;
	margin-top: -50px;
	margin-left: 65px;
	margin-right: 60px;
}
.shop_group {
	display: flex;
	margin: 0 auto;
	width: 100%;
}
.shop_main {
	width: 33.333%;
	border: solid 1px #fff;
	margin: 0 30px;
	text-align: center;
	/* font-family: "a-otf-midashi-go-mb31-pr6n","sans-serif"; */
}
.shop_img {
	width: 70%;
	height: 40%;
	margin: auto;
}
.shop_name {
	font-size: 30px;
	color: #09A250;
	font-weight: bold;
	margin: 10px auto;
}
.shop_part {
	font-size: 20px;
	font-weight: bold;
	margin: 10px auto;
}
.shop_section {
	display: inline-block;
	text-align: left;
	margin: 20px auto;
}
.shop_adress {
	margin-bottom: 5px;
}
.shop_tel {
	margin-bottom: 5px;
}
.shop_time {
	margin-bottom: 5px;
}
.shop_time p {
	margin-left: 75px;
}

/****************************************
* 採用情報
*****************************************/
.job_content {
	padding-top: 50px;
	margin-top: -50px;
}
.job_main {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin: 120px 0 150px 0; 
	/* font-family: "a-otf-midashi-go-mb31-pr6n","sans-serif"; */
}
.job_border {
	margin: 30px auto;
	width: 600px;
	border-bottom: solid 2px #000;
	margin-bottom: 100px;
}
.job_y {
	display: flex;
}
.job_x {
	margin: 0 0  100px 380px;
}
.job_y img {
	width: 13%;
	height: 13%;
	margin: 60px 100px;
}

/****************************************
* ContactForm7
*****************************************/
.page_header {
	width: 55%;
	margin: 0 auto;
	padding: 150px 0 80px 0;
}
.ContactForm7__contact {
    margin: 60px auto;
    max-width: 850px;
    padding: 0 20px;
}
.ContactForm7__contact__title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin: 130px;
	color: #09A250;
}
.ContactForm7__contact__label {
    font-weight: bold;
}
.ContactForm7__contact__border {
	border: solid 1px #09A250;
	width: 150px;
}
.ContactForm7__contact input, .ContactForm7__contact textarea {
    width: 65%;
    border: solid 1px #000;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 225px 40px;
}
.ContactForm7__contact textarea {
    height: 45vh;
}
.ContactForm7__contact__submit {
    max-width: 380px;
    margin: 0 95px;
}
.ContactForm7__contact input[type="submit"] {
    color: #000;
    font-size: 1.2rem;
	background-color: #fff;
	cursor:pointer;
}
/* アニメーション */
.img {
	width: 100%;
	height: auto;
}
.page_header img {
	animation-name:fadeInAnime;
	animation-duration:4s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}




/****************************************
* レスポンシブ対応
*****************************************/
/*画面幅480px以下の時*/
@media screen and (max-width: 480px){

/****************************************
* ヘッダー
*****************************************/
.header_title {
	font-size: 35px;
	margin: 20px;
}
.header_navgroup {
	display: none;
}
.header_title_a {
	display: none;
}

/****************************************
* main
*****************************************/
.main {
	padding-top: 66.29px;
	margin: 0 15px;
}

/****************************************
* ハンバーガーメニュー
*****************************************/
  /* ここから下がハンバーガーメニューに関するCSS */
.nav {
	display: block;
}
	
  /* チェックボックスを非表示にする */
.drawer_hidden {
	display: none;
}
  /* ハンバーガーアイコンの設置スペース */
.drawer_open {
	display: flex;
	height: 115px;
	width: 90px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;/* 重なり順を一番上にする */
	cursor: pointer;
}
  /* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #333;
	transition: 0.5s;
	position: absolute;
}
  /* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
	bottom: 8px;
}
  /* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
	top: 8px;
}
  /* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
	background: rgba(255, 255, 255, 0);
}
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-45deg);
}	

/* メニューのデザイン*/
.nav_content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 100%; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: #fff;
	transition: .5s;
}
  /* メニュー黒ポチを消す */
.nav_list {
	list-style: none;
	margin: 70px 0 0 50px;
	font-weight: bold;
}
.nav_item {
	margin-bottom: 30px;
}
.nav_item :hover {
	color: #09A250;
}
.nav_item a {
	color: #000;
	font-size: 30px;
}
  /* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
	left: 0;/* メニューを画面に入れる */
}
	/* img画像 */
.nav_item img {
	width: 70px;
	height: 70px;
	margin-right: 20px;
}

/****************************************
* フッター
*****************************************/
.footer_bottom {
	font-size: 10px;
	margin: 20px 0;
}

/****************************************
* トップページ ファーストビューのイメージ
*****************************************/
.topimg {
	height: 320px;
	margin: 55px auto;
	width: 90%;
}
.toptext {
	top: 75%;
	left: 6%;
	font-size: 19px;
	color: #09A250;
}

/****************************************
* 共通部分
*****************************************/
.content_title {
	font-size: 30px;
	margin: 110px auto;
	color: #09A250;
	font-weight: bold;
}

/****************************************
* 会社概要
*****************************************/
.co_content {
	padding-top: 70px;
	margin-top: -70px;
}
.co_main {
	display: flex;
	margin: 30px 10px;
	font-size: 12px;
	font-weight: normal;
}
.co_subtitle {
	margin: 0;
}
.co_subtitle_border {
	margin: 10px auto;
	width: 110px;
	border-bottom: solid 1px #000;
}
.co_name {
	margin-left: 0px;
}
.co_name_border {
	margin: 10px auto;
	width: 230px;
	border-bottom: solid 1px #000;
}
.co_map {
	display: none;
}

/****************************************
* 店舗情報
*****************************************/
.shop_content {
	padding-top: 70px;
	margin-top: -70px;
}
.shop_group {
	display: block;
}
.shop_main {
	width: 100%;
	margin: 80px 0px;
}
.shop_img {
	width: 100%
}
.shop_name {
	font-weight: normal;
}
.shop_part {
	font-weight: normal;
}
.shop_map {
	
}

/****************************************
* 採用情報
*****************************************/
.job_content {
	padding-top: 70px;
	margin-top: -70px;
}
.job_main {
	font-weight: normal;
	margin: 100px 0 120px 0; 
}
.job_border {
	margin: 30px auto;
	width: 330px;
	border-bottom: solid 1px #000;
	margin-bottom: 100px;
}
.job_x {
	margin: 0 auto;
}
.job_y img {
	display: none;
}


/****************************************
* ContactForm7
*****************************************/
.page_header {
	width: 100%;
	margin: 0 auto;
	padding: 150px 30px 50px 30px;
}
.page_header img {
	height: 250px;
}
.ContactForm7__contact {
    margin: 80px auto;
    padding: 0 20px;
}
.ContactForm7__contact__title {
    font-size: 20px;
    margin: 0 0 80px 0;
}
.ContactForm7__contact__label {
    font-weight: normal;
}
.ContactForm7__contact__border {
	width: 100%;
}
.ContactForm7__contact input, .ContactForm7__contact textarea {
    width: 100%;
    margin: 20px 0px 40px;
}
.ContactForm7__contact__submit {
    margin: 0 80px;
}
.ContactForm7__contact input[type="submit"] {
	padding: 5px;
}

}