@charset "UTF-8";
/* Theme Name: custom */
/*
*, *::before, *::after {
  box-sizing: border-box;
}

article, aside, footer, header, nav, section, figcaption, figure, main, canvas, time {
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=checkbox], [type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}

[hidden] {
  display: none;
}

body, h1, h2, h3, h4, h5, h6, ul, ol, dl, dd, p, blockquote {
  margin: 0;
}

body {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #000;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

#wrapper {
  overflow-x: hidden;
}

#wrapperFixed {
  width: 100%;
}

.bgFixed {
  position: fixed;
  height: 100%;
}

#bgNav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.4s;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
}

a,
button {
  color: #000;
  transition: 0.4s;
}
a:hover,
button:hover {
  opacity: 0.7;
  text-decoration: none;
}

.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  border: 1px solid #000;
}

.pHorizon {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 1200px) {
  .maxWidth {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
#header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}
#header .inner {
  height: 100%;
}

#header .nav .navBtn {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  cursor: pointer;
}
#header .nav .navBtn i,
#header .nav .navBtn i::after,
#header .nav .navBtn i::before {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #000;
}
#header .nav .navBtn i {
  position: relative;
  left: 18px;
  top: 28px;
}
#header .nav .navBtn i::after, #header .nav .navBtn i::before {
  content: "";
  position: absolute;
  transform: rotate(0deg);
  transition: 0.4s;
}
#header .nav .navBtn i::before {
  transform: translateY(8px);
}
#header .nav .navBtn i::after {
  transform: translateY(-8px);
}
#header .nav .navBtn.open i {
  background-color: transparent;
}
#header .nav .navBtn.open i::before {
  transform: translateY(0) rotate(-45deg);
}
#header .nav .navBtn.open i::after {
  transform: translateY(0) rotate(45deg);
}
#header .nav .menu {
  padding: 0;
  list-style: none;
  width: 85%;
  position: absolute;
  top: 60px;
  right: 0;
  transform: translate3d(100%, 0, 0);
  background-color: #fff;
  overflow-y: scroll;
  transition: 0.4s;
}
#header .nav .menu.openNav {
  transform: translate3d(0, 0, 0);
}
#header .nav .menu li a {
  display: block;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  #header {
    height: 80px;
  }
  #header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header .nav .navBtn {
    display: none;
  }
  #header .nav .menu {
    width: auto;
    height: auto !important;
    position: static;
    transform: none;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }
  #header .nav .menu li a {
    color: #000;
  }
}
#contents {
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  #contents {
    padding-top: 80px;
  }
}
#mv img {
  width: 100%;
}
#mv .swiper-button-prev,
#mv .swiper-button-next,
#mv .swiper-pagination-bullet-active {
  --swiper-theme-color: #000;
}

#content #testLazysizes {
  margin: 1000px 0;
}
#content #testLazysizes p {
  width: 1000px;
  height: 500px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
#content #testLazysizes p.lazyloaded {
  background-image: url(img/lazysizes-bg.jpg);
}
#content .ttlPage {
  text-align: center;
  font-size: 24px;
}
#content .category ul {
  padding: 0;
  list-style: none;
}
#content .category ul li,
#content .category ul li a {
  display: inline-block;
}
#content .category ul li {
  margin-right: 10px;
}
#content .category ul li a {
  text-decoration: none;
}
#content .author {
  text-align: right;
}
#content .publisher {
  display: none;
}

#bc ol {
  padding: 0;
  list-style: none;
  font-size: 10px;
}
#bc ol li,
#bc ol li a {
  display: inline-block;
}

.prevNextPost {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pgn {
  display: flex;
  justify-content: center;
}
.pgn .current,
.pgn a {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #fff;
  background-color: #000;
  text-align: center;
  margin: 0 5px;
  padding-top: 10px;
}
.pgn .current,
.pgn a:hover {
  background-color: #999;
}
.pgn a {
  text-decoration: none;
}
.pgn .next,
.pgn .prev {
  background-image: url(img/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px auto;
}
.pgn .prev,
.pgn .first {
  transform: rotate(180deg);
}
.pgn .last,
.pgn .first {
  background-image: url(img/arrow-right-white.svg), url(img/arrow-right-white.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 13px center, left 20px center;
  background-size: 5px auto, 5px auto;
}

@media screen and (min-width: 768px) {
  .pgn .current,
  .pgn a {
    width: 48px;
    height: 48px;
    padding-top: 15px;
    font-size: 16px;
  }
  .pgn .next,
  .pgn .prev {
    background-size: 6px auto;
  }
  .pgn .prev,
  .pgn .first {
    transform: rotate(180deg);
  }
  .pgn .last,
  .pgn .first {
    background-position: left 18px center, left 27px center;
    background-size: 6px auto, 6px auto;
  }
}
#side .sideWidget {
  border: 1px solid #000;
  text-align: center;
}
#side .sideWidget ul {
  padding: 0;
  list-style: none;
}
#side .sideWidget ul li {
  border-top: 1px solid #000;
}
#side .sideWidget ul li a {
  display: block;
}

#footer ul {
  padding: 0;
  list-style: none;
}
#footer address {
  font-style: normal;
  text-align: center;
}
#footer #pageTop {
  opacity: 0;
  visibility: hidden;
  background-color: #000;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer #pageTop:hover {
  opacity: 0.7;
  transform: translateY(-10px);
}
#footer #pageTop span {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  margin-top: 4px;
}

#content .snow-monkey-form .smf-item-required .smf-item__label {
  display: inline-block;
  margin-right: 10px;
}
#content .snow-monkey-form .smf-item-required .smf-item__description {
  display: inline-block;
  padding: 4px 8px;
  background-color: #ff5454;
  color: #fff;
  font-size: 11px;
  border-radius: 2px;
}
#content .snow-monkey-form .p-country-name {
  display: none;
}


@media screen and (min-width: 768px) {
  .archive #contents,
  .single #contents {
    display: flex;
    justify-content: space-between;
  }
  .archive #contents #main,
  .single #contents #content {
    width: 70%;
  }
  .archive #contents #side,
  .single #contents #side {
    width: 25%;
  }
}
*/

#copyright {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
article.square_box{
	margin-top:30px;
}
#g_navi li {
	box-sizing: content-box!important;
}
.smf-form--simple-table .smf-item:first-child{
	border-top:none;
}
.smf-form .smf-item .smf-select-control__control {
    padding-top: var(--_padding-2);
    padding-bottom: var(--_padding-2);
}
.grecaptcha-badge {
  visibility: hidden !important;
}
.reCAPTCHA {
  text-align: center;
}
.reCAPTCHA {
    margin-top: 40px;
    padding: 1em;
    background: #f5f5f5;
    color: #999;
    font-size: 11px;
    text-align: center
}
.reCAPTCHA a {
    color: #428cff
}

@media screen and (max-width: 768px) {
	#container,
	#header .box,
	div#content_wrapper,
	#fotter,
	#foot_contact,
	#foot_contact img,
	#fotter #right,
	#fotter #left,
	#telfax,
	#g_menu,
	div#main_visual,
	#left_side,
	div#content,
	#g_navi li,
	#g_navi,
	div#content .content_title_middle, div#content .content_title_bottom, div#content .content_title_middle.btn_pb{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		float:none;
	}
	#header .box{
		flex-direction:column;
		align-items: center;
		justify-content: center;
		height: 70px;
	}

	#g_menu,
	#g_navi,
	#left_side,
	#contact_tel{display:none;}
	div#header{height:auto;}
	
div#header h1 img{
	margin-top: 10px;
	max-height: 30px;
	float: none;
}
	#wrapperFixed #wrapper > *{padding-left:20px;padding-right:20px;}
	#wrapperFixed #wrapper #header{padding-left: 10px;
    padding-right: 10px;}
	.smf-form--simple-table .smf-item__col--label {margin-right: 0!important;}
}

#foot_contact {
	background: url(https://www.kasokei.co.jp/common/img/50th/footer_contact_hover.png) no-repeat center;
	height:auto;
	line-height: 0;
	background-size: contain;
}
#foot_contact a {
	text-align:center;
    display: table;
    margin-inline: auto;
}
#foot_contact a:hover {
    background-color: transparent; /* IE6対応 */
}
#foot_contact a:hover img {
    visibility: hidden;
}

#content .btn a {
    background: #1e51a2;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    margin: 40px auto;
	border:solid 2px;
	transition:0.3s;
	text-decoration:none!important;
	min-width: 256px;
}
#content .btn a:hover {
	background:#fff;
	color:#1e51a2;
}
#content .btn2 a {
    background: #fff001;
    color: #1e51a2;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    margin: 40px auto;
	border:solid 2px #fff001;
	transition:0.3s;
	text-decoration:none!important;
	min-width: 256px;
}
#content .btn2 a:hover {
	background:#fff;
	color:#1e51a2;
}
#content .telBtn a{
    background: #1e51a2;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    display: block;
}
#content .telBtn.white a{
    border: solid 2px #1e51a2;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    display: block;
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
#content .telBtn a{pointer-events:none;}
}
@media screen and (max-width: 500px) {
.body .is-layout-flex{flex-wrap:wrap!important;}
}

@media screen and (max-width: 767px) {
	#content .cols {
	  display: block
	}
}
@media screen and (min-width: 768px) {
	.cols.center{
		margin-inline:auto;
		justify-content:center;
	}
	.cols.center a{
		width:100%;
		flex-basis: 100%;
	}
}