*, *:before, *:after {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 16px;
}
a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
/*a:hover{
  transition-duration: 0.5s;
  opacity: 0.5;
}*/
ul, ol, dl {
  list-style: none;
}
html {
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
}
input[type=date],
input[type=submit]{
  -webkit-appearance: none;
  appearance: none;
}
input,
textarea,
select{
  padding: 15px 20px;
  width: 100%;
  border: #898989 1px solid;
  border-radius: 5px;
}
input[type=radio],
input[type=checkbox]{
  width: auto;
  padding: 0;
}
span.wpcf7-list-item{
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  border:0;
}
body {
  color: #0f0f0f;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
	font-family: "KozGoR";
  font-weight: 400;
  font-style: normal;
}
h1{
  font-size: 40px;
  font-size:4rem;
  font-weight: bold;
}
h3{
  font-size: 25px;
  font-size: 2.5rem;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}
.pc-only{
  display: block!important;
}
.sp-only{
  display: none!important;
}

.blog-list__list-item {
display: inline-block;
text-align: left;
}

.blog-list__list-item a{
    width: 300px;
    display: block;
	
}

.blog_wrap {
  width:1200px;
  text-align: center;
}

.blog-item__title{
	color: black;
    line-height: 24px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 20px;
	
}

.blog-item__read p{
	color: black;
    font-size: 14px;
    margin-top: 10px;
}

@media screen and (max-width: 768px){
  input,
  textarea{
    padding: 10px;
  }
  .pc-only{
    display: none!important;
  }
  .sp-only{
    display: block!important;
  }
  p{
    margin: 2% 0;
  }
  p:first-child{
    margin: 0 0 2%;
  }
  p:last-child{
    margin: 2% 0 0;
  }
}

.common {
  max-width: 1000px;
  margin: 50px auto;
  width: 100%;
  word-break: break-all;
  z-index: 1;
  position: relative;
}
main{
  transition: all 1s;
  overflow: hidden;
  margin-top: 150px;
}

@media screen and (max-width: 1045px){
  main{
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 769px){
  .common{
    width:90%;
    margin: 50px auto;
  }
}
@media screen and (max-width: 768px){
  .common{
    width: 90%;
    margin: 50px auto;
  }
}

/* フォント */
@font-face {
	font-family: "KozGoR";
	src: url("/wp-content/themes/4komaland/font/KozGoR.otf");
	font-weight: 500;
}
@font-face {
	font-family: "KozGoM";
	src: url("/wp-content/themes/4komaland/font/KozGoM.otf");
	font-weight: 500;
}
@font-face {
	font-family: "KozGoB";
	src: url("/wp-content/themes/4komaland/font/KozGoB.otf");
	font-weight: 500;
}
@font-face {
	font-family: "KozGoH";
	src: url("/wp-content/themes/4komaland/font/KozGoH.otf");
	font-weight: 500;
}
@font-face {
	font-family: "arial";
	src: url("/wp-content/themes/4komaland/font/ARIAL.TTF");
	font-weight: 500;
}

/* タイトル */
.ttl-L{
  background: url(/wp-content/themes/4komaland/img/ttl-l.png) no-repeat;
  color: #fff;
  font-family: "KozGoB";
  font-size: 30px;
  width: 450px;
  text-align: center;
  margin: 0 auto;
}
.ttl-L-sub1{
  text-align: center;
  font-family: "KozGoM";
  font-size: 25px;
  margin: 10px 0 5px;
}
.ttl-L-sub2{
  width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 900px){
  .ttl-L-sub2{
    width: 100%;
  }
}

@media screen and (max-width: 768px){
  .ttl-L{
    width: 85%;
    font-size: 20px;
    padding: 5px 0;
  }
  .ttl-L-sub1{
    font-size: 19px;
    line-height: 1.5;
  }
  .ttl-L-sub2{
    line-height: 1.5;
  }
}

/* カラー */

@media screen and (max-width: 768px){
}

/*共通アニメーション
=======================================================*/

/* スクロールありで下から上 */
.fadein1 {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1.5s;
}
/* スクロールありで右から左 */
.fadein2 {
  opacity : 0;
  transform: translateX(-50px);
  transition: all 2s;
}
/* スクロールありで左から右 */
.fadein3 {
  opacity : 0;
  transform: translateX(50px);
  transition: all 2s;
}
/* スクロールありで上から下 */
.fadein4 {
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.5s;
}


/* スクロールなし下から上でフェードイン */
.no-fadein1 {
  animation-duration: 2s;
  animation-name: fadein1;
}
/* スクロールなしで上から下フェードイン */
.no-fadein2 {
  animation-duration: 2s;
  animation-name: no-fadein2;
}

@keyframes fadein1 {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@keyframes no-fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px){
}

@media screen and (max-width: 768px){
  *, *:before, *:after {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
  /* 共通 */
  .table dt{
    padding: 5%; 
    width: 45%;   
  }
  .table dd{
    padding: 5%;
  }
}

/* ヘッダー */
header{
  width:100%;
  position: fixed;
  top:0;
  left:0;
  z-index:99999;
  background: rgba(255,255,255,1);
  color:#373737;
  transition: all 0.3s ease;
  background: url(/wp-content/themes/4komaland/img/header-bg.png) no-repeat;
  background-size: cover;
}
header.is-anime{
  transition: all 0.3s ease;
}
header a{
  font-family: "KozGoM";
  color:#373737;
  font-size: 18px;
}
.header-inner{
  width: 1200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.h-logo img{
  width: 350px;
  object-fit: contain;
  display: block;
}
.header-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
  padding-left: 30px;
}
.header-nav ul{
  display: flex;
  width: 100%;
  align-items:center;
}
.header-nav ul li{
  border-right: 1px solid;
  text-align: center;
}
.header-nav ul li:first-child{
  border-right: 1px solid;
  border-left: 1px solid;
}
.header-nav ul li a{
  width: 120px;
  display: block;
  padding: 10px 0;
}
.header-nav .h-sns{
  border-right: 1px solid;
  border-left: 1px solid;
  text-align: center;
}
.header-nav .h-sns a{
  width: 100px;
  display: block;
  padding: 10px 0;
}

@media screen and (max-width: 1045px){
  .header-inner{
    height: 80px;
    width: 90%;
  }
  .h-logo img{
    width: 35%;
  }
}
@media screen and (max-width: 768px){
  .header-inner{
    height: 50px;
  }
}

/* ハンバーガーメニュー */

@media screen and (max-width: 1045px){
  .header-nav{
    position: fixed;
    left:0;
    width:100%;
    background: url(/wp-content/themes/4komaland/img/header-bg.png) repeat;
    background-size: contain;
    display: none;
    padding-left: 0;
  }
  .header-nav.is-open{
    top:0;
    display: block;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100vh;
    z-index: 10;
  }
  .header-nav ul{
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-top: 70px;
  }
  .header-nav ul li{
    width: 100%;
    border-bottom: 1px solid;
    border-right:unset;
  }
  .header-nav ul li:first-child{
    border-right: unset;
    border-left: unset;
  }
  .header-nav ul li a{
    width: 100%;
  }
  .header-nav .h-sns{
    border-right: unset;
    border-left: unset;
    border-bottom: 1px solid;
    width: 90%;
    margin: 0 auto;
  }
  .header-nav .h-sns a{
    width: 100%;
  }
  .header-sp{
    position:fixed;
    display: block !important;;
    right: 0;
    z-index: 11;
    margin-right: 10px;
  }
  .header-sp button,
  .header-sp button span{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
  }
  .header-sp button{
    width:45px;
    height:60px;
    border:none;
    position:relative;
  }
  .header-sp button span{
    position: absolute;
    right: 0px;
    width: 45px;
    height: 4px;
    background-color: #002f75;
    border-radius: 1px;
  }
  .header-sp button span:nth-of-type(1){
    top: 10%;
  }
  .header-sp button span:nth-of-type(2){
    top: 34%;
  }
  .header-sp button span:nth-of-type(3){
    top:55%;
  }
  .header-sp button.is-open span:nth-of-type(1){
    top: 23%;
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .header-sp button.is-open span:nth-of-type(2){
    opacity: 0;
  }
  .header-sp button.is-open span:nth-of-type(3){
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .header-sp-ttl{
    position: absolute;
    bottom: 0;
    font-family: "KozGoB";
    line-height: 1;
    font-size: 1.7vh;
  }
}
@media screen and (max-width: 768px){
  .header-sp button{
    width: 35px;
    height: 43px;
  }
  .header-sp button span{
    width: 35px;
  }
  .header-sp button.is-open span:nth-of-type(1){
    top: 13%;
  }
  .header-sp-ttl{
    font-size: 12px;
  }
}

/* 上に戻るボタン */
.pagetop {
  position: fixed;
  bottom: 7vh;
  text-align: center;
  right: 2vw;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 2;
}
.pagetop span{
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-weight: bold;
}
.pagetop:before {
  content: "";
  position: absolute;
  top: 11px;
  right: 19px;
  width: 2px;
  height: 20px;
  background: #56534c;
  transform: skewX(30deg);
}
.pagetop:after{
  content: "";
  position: absolute;
  bottom: 30px;
  right: 25px;
  width: 2px;
  height: 60px;
  background: #56534c;
}

@media screen and (max-width: 768px){
  .pagetop{
    width: 80px;
  }
  .pagetop:after{
    height: 50px;
    bottom: 40px;
  }
}

/* ボタン */
a.link-btn{
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 15px 40px 15px;
  outline: 0;
  border: 1px solid #707070;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  color: #646464;
  display: block;
}
a.link-btn:after {
  content: "";
  background-color: #B9FFBC;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}
a.link-btn:hover:after {
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 768px){
  a.link-btn{
    width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 5px 10px;
  }
}

/* フッター */
footer {
  background: url(/wp-content/themes/4komaland/img/f-bg.png) repeat;
  background-size: contain;
  background-position: center;
  padding-top: 50px;
}
footer a{
  color: #231815;
  font-family: "arial";
  font-size: 17px;
}
.f-inner{
  max-width: 1000px;
  margin: 0px auto;
}
.f-menu-wrap{
  display: flex;
  justify-content: space-evenly;
}
.f-menu-box{
  border-left: 1px solid;
  padding-left: 10px;
}
.f-menu-box-ttl{
  font-family: "KozGoM";
  font-size: 18px;
}
.f-menu-box li{
  line-height: 1.3;
}
.f-menu-box li::before{
  content: ">"; 
}
.f-logo img{
  width: 250px;
  object-fit: contain;
  padding: 50px 0;
  display: block;
  margin: 0 auto;
}
#copyright {
  background: #fff;
}
p#copyright{
  margin:0;
  padding: 5px 0;
}
#copyright small{
  font-size: 13px;
  display: block;
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media screen and (max-width: 768px){
  .f-menu-wrap{
    display: none;
  }
  footer{
    padding-top: 0;
  }
  .f-inner{
    width: 90%;
  }
  .f-logo img{
    width: 50%;
    padding: 30px 0;
  }

  #copyright small{
    font-size: 11px;
  }
}