@charset "utf-8";

/*
theme Name: 経理のオシゴト
Author: 早田税理士事務所
Description: original theme
version： 1.0.0
*/
/*cssのリセット*/

* {
	-moz-user-select: none;
	-webkit-user-select: none;
}

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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}

body {
  /*フォントの指定*/
  font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",sans-serif;
  font-weight:500;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
  color: #333;
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}







.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 84px;
    background-color: rgb(255 255 255 / 85%);
    box-shadow: 0 2px 6px rgb(0 0 0 / 16%);
    padding: 10px 0 0px 15px;
    box-sizing: border-box;
}
@media screen and (max-width: 480px) {
	.header {
	    height: 60px;
	    padding: 10px 0 0px 15px;
	}
	.header img {
	    width: 40px;
	}
}
.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 84px;
    height: 84px;
    cursor: pointer;
    z-index: 300;
}
@media screen and (max-width: 480px) {
	.hamburger {
	    width: 60px;
	    height: 60px;
	}
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #111;
}
.global-nav__item a:hover {
  background-color: #eee;
}
.hamburger__line {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1px;
  background-color: #111;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 32px;
}
.hamburger__line--2 {
  top: 41px;
}
.hamburger__line--3 {
  top: 50px;
}
@media screen and (max-width: 480px) {
	.hamburger__line--1 {
	  top: 22px;
	}
	.hamburger__line--2 {
	  top: 31px;
	}
	.hamburger__line--3 {
	  top: 40px;
	}
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}


#wrapper {
 padding-top: 100px;
}
img {
 display: block;
}
h1 img {
 min-width: 1080px;
 width: 100%;
}
@media screen and (max-width: 480px) {
	h1 img {
	 min-width: 100%;
	}
}
#copy,
.footer-inner,
.contents1080 {
 width: 1080px;
 margin: 0 auto;
}
@media screen and (max-width: 480px) {
	#copy,
	.footer-inner {
	 width: 100%;
	 margin: 0 auto;
	}
}
.Bg01 {
 background: url(/wp-content/themes/keiri/images/bg_01.jpg)no-repeat;
 background-size: cover;
}
.Bg02 {
 background: url(/wp-content/themes/keiri/images/bg_02.jpg)no-repeat;
 background-size: contain;
}
.Bg03 {
 background: url(/wp-content/themes/keiri/images/bg_03.jpg)no-repeat;
 background-size: cover;
 padding: 50px 0;
 position: relative;
 margin-bottom: 50px;
 z-index: -9;
}
.Bg04 {
    background: url(/wp-content/themes/keiri/images/bg_04.jpg)no-repeat center;
    background-size: cover;
    padding: 110px 0 85px;
    margin-bottom: 30px;
}
.Bg05 {
    background: url(/wp-content/themes/keiri/images/bg_05.jpg)no-repeat 0 11px;
    background-size: cover;
    padding: 0px 0 0px;
}
.Bg06 {
    background: url(/wp-content/themes/keiri/images/bg_06.jpg)no-repeat center;
    background-size: cover;
    padding: 150px 0 85px;
}
@media screen and (max-width: 480px) {
	.Bg06,
	.Bg05,
	.Bg04,
	.Bg03,
	.Bg02,
	.Bg01 {
	 background: none;
	 padding: 0;
	 margin-bottom: 0px;
	}
}
.BgBlue {
 background: #219ddd;
 padding: 40px 0;
}
.BgGray {
 background: #f4f5ef;
 padding: 40px 0;
}
@media screen and (max-width: 480px) {
	.BgBlue,
	.BgGray {
		 background: none;
		 padding: 0 !important;
	}
}
.man {
    position: absolute;
    top: -35px;
    right: 50px;
}
@media screen and (max-width: 1450px) {
	.man {
	    width: 215px;
	}
}
@media screen and (max-width: 1025px) {
	.man {
	    display: none;
	}
}
.conv {
 overflow: hidden;
 margin-bottom: 70px;
}
.convL,
.convR {
 width: 540px;
 float: left;
}

.reason {
 overflow: hidden;
}

.reason1,
.reason2,
.reason3 {
 width: 360px;
 float: left;
}

.conv2 {
 overflow: hidden;
}
.conv2L {
 width: 168px;
 float: left;
}
.conv2C {
 width: 456px;
 float: left;
}
.conv2R {
 width: 456px;
 float: left;
}

#footer {
 text-align: center;
 border-top: 15px solid #000;
 padding: 35px 0 0;
}
#footer h2 {
 font-size: 20px;
 margin-bottom: 5px;
 font-family: 'Georgia';
}
@media screen and (max-width: 480px) {
	#footer h2 {
	 margin-bottom: 20px;
	}
}
.map {
 padding-bottom: 35px;
}
.map ul {
 padding-top: 15px;
}
@media screen and (max-width: 480px) {
	.map ul {
	 padding-top: 0;
	}
}
.map ul li {
 display: inline-block;
 margin: 0 10px;
}
@media screen and (max-width: 480px) {
	.map ul li {
	 display: block;
	 margin: 0;
	}
}
.map ul li a {
 font-weight: bold;
 text-decoration: none;
 color: #333;
}
.map ul li a:hover {
 color: #219ddd;
}

.map ul li a:before {
    content: "\027A0";
    margin-right: 5px;
}

#copyArea {
 text-align: center;
 border-top: 1px solid #000;
 padding: 15px 0;
}
#copy {
 text-align: center;
}
@media screen and (max-width: 480px) {
	#copy > img:nth-child(1) {
	 display: none;
	}
}
#copy img {
 display: inline-block
}
#copy > img:nth-child(1) {
 position: relative;
 bottom: 7px;
}

#sb-player {
 background: #fff;
}
