@charset "UTF-8";
body{
 font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;}
img{max-width: 100%; height: auto;}
p{line-height: 1.8;}
a{transition:0.5s; color: #000;word-break: break-word;}
a:hover{opacity: 0.7;color: #000;}
iframe {width: 100%;}
body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

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

#g-nav{
    position:fixed;
    z-index: 999;
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;
	transition: all 0.6s;
    background: #fff;
    padding-top: 3rem;
}
#g-nav ul li{
    list-style-type: none;
}

#g-nav.panelactive{
    right: 0;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 90vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

nav ul ul{
	display: block;
}
nav ul li{
	position: relative;
}
nav ul li a {
    display: block;
    text-decoration: none;
    padding: 15px 35px;
    transition: all .3s;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}
nav ul li a::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-left: 3px solid #999;
    border-bottom: 3px solid #999;
    position: absolute;
    top: 22px;
    right: 21px;
    transform: rotate(-135deg);
}
nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#000;	
}
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 5px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
nav{
    padding: 0;
}

nav ul{
    display: block;
    padding: 0;
    margin: 0;
}

nav ul li a{
    border-bottom:1px solid #ccc;
}
nav ul li:last-child a::after{
    display: none;
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 50%;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
}
.openbtn.active span{
    background: #000;
}
    
}

#header {
    transition: 0.5s;
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 999;
    padding: 5px;
}
a.btn-online {
    background: #ce2427;
    color: #fff!important;
    text-align: center;
    width: 320px;
    margin: 1.5rem auto 0;
    border-radius: 5px;
    border: 2px solid #ce2427!important;
}
a.btn-online:hover {
    color: #ce2427!important;
    opacity: 1;
    background: #fff;
}
#header.UpMove{
	position: fixed;
	width:100%;
	animation: UpAnime 0.5s forwards;
    transition: 0.5s;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
#header.DownMove{
    position: fixed;
    width: 100%;
    animation: DownAnime 0.5s forwards;
    z-index: 999;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: #fff;
    transition: 0.5s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
body:not(.home) #header {
    width: 100%;
    position: fixed;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);

}
#header.DownMove .logo, body:not(.home) #header .logo {
    display: block !important;
    width: 110px;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
#header.DownMove .openbtn span,body:not(.home) #header .openbtn span {
    background: #000;
}

#mainvisual{
    position: relative;
}
.m-logo {
    position: absolute;
    top: 28%;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.m-logo img {
    width: 140px;
    margin-bottom: 1rem;
}

.m-logo p {
    color: #fff;
    margin: 0;
}
p.copy1 {
    font-size: 18px;
    font-weight: bold;
}
p.copy2 {
    font-family: 游明朝;
    font-weight: 400;
    font-size: 14px;
}
.slider {
    position:relative;
    z-index: 1;
}
.slider, .slider-item img {
    height: 50vh;
}
.slider-item img {
    object-fit: cover;
    width: 100%;
}
 
.slick-prev, .slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 5px solid #000;
    border-right: 5px solid #000;
    height: 20px;
    width: 20px;
}
.slick-prev {
    left: -7.5%;
    transform: rotate(-135deg);
}
.slick-next {
    right: -7.5%;
    transform: rotate(45deg);
}

.slick-dots {
    position: relative;
    z-index: 3;
    text-align:center;
    padding: -0;
    margin: -40px 0 0 0;
}

.slick-dots li {
    display:inline-block;
    margin:0 5px;
}
  
.slick-dots button {
    color: transparent;
    outline: none;
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 50%;
    background: transparent;
    border: none;
    margin: 0 10px;
    border: 1.5px solid #000;
}
  
.slick-dots .slick-active button{
    background:#000;
}
section {
    padding: 3rem 0;
}
h2 {
    line-height: 1.4;
    margin-bottom: 1rem;
}
p.lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3rem;
}
h2.title,h1.title {
    color: #d35f5f;
    font-size: 16px;
}

h2.title span.title-en ,h1.title span.title-en {
    color: #000;
    display: block;
    font-size: 34px;
    font-family: 游明朝;
}
.news-tabs {
    margin-bottom: 1rem;
}

.tab-buttons {
  display: flex;
  padding: 10px;
}
.tab-btn {
    width: 140px;
    border: none;
    background: #fff;
    color: #b7b7b7;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    border-left: 1px solid #000;
    padding: 5px 10px;
    position: relative;
}
.tab-btn:nth-of-type(2) {
    border-right: 1px solid #000;
}
.tab-btn.active::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 8px solid #d35f5f;
    border-bottom: 0;
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.tab-btn.active {
  background: #fff;
  color: #000;
}
.tab-content {
    display: none;
    border-top: 1px solid #b7b7b7;
}

.tab-content.active {
  display: block;
}
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-list li {
    border-bottom: 1px solid #b7b7b7;
    padding: 1rem;
}

.news-list a {
  text-decoration: none;
  color: #000;
}

.news-list time {
    font-weight: bold;
    width: 180px;
}
.news-list h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
a.btn-news {
    display: block;
    margin: 1rem auto;
    padding: 10px;
    width: 165px;
    text-decoration: none;
    position: relative;
}
a.btn-news::after {
    content: "";
    background-image: url(../img/ico-link.png);
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 6px;
    right: 5px;
    transition: 0.5s;
}
a.btn-news::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #b2b2b2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
a.btn-news:hover::after {
    right: 0;
    transition: 0.5s;
}
a.btn-news:hover {
    opacity: 1;
}
#about{
    background-image: url(../img/bg-about.png);
    background-size: cover;
}
#about p.copy1 {
    font-size: 24px;
}
#about p {
    line-height: 2.2;
}
#about img {
    border-radius: 6px;
}
h3 {
    font-size: 20px;
    margin-bottom: 1rem;
}
#craftmanship h3 {
    display: flex;
    align-items: center;
    gap: 0 10px;
    justify-content: center;
}
#craftmanship h3 span {
    font-size: 35px;
    font-weight: 400;
}
#craftmanship .col-xl-6 {
    background: #fff3f3;
    padding: 2rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}
@media screen and (max-width:1200px) {
#craftmanship .col-xl-6:nth-of-type(even) {
    background: #f3fcf0;
}
}
#craftmanship .col-xl-6 figure {
    text-align: center;
}
#craftmanship .col-xl-6 figure img {
    margin: 0 auto;
}
#products {
    background-image: url(../img/bg-prodacts.png);
    background-size: cover;
}
#products h2{
    text-align: center;
}
#products .col-md-6 {
    display: block;
    background: #fff;
    padding: 1.5rem 1rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-decoration: none;
}
#products .col-md-6 h3 {
    text-align: center;
    margin-bottom: 10px;
}
#products .col-md-6 figure {
    margin: 0;
    overflow: hidden;
}
#products .col-md-6 figure img {
    /* transition: 0.5s; */
    width: 100%;
}
/* #products a.col-md-6:hover figure img {
    transform: scale(1.2);
}
#products a.col-md-6:hover {
    opacity: 1;
} */
a.link-btn {
    display: block;
    background: #3a3a3a;
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    text-align: center;
    width: 320px;
    border-radius: 5px;
    margin: 1rem auto 0;
    position: relative;
    border: 2px solid #3a3a3a;
}
a.link-btn::after {
    content: "";
    background-image: url(../img/ico-link2.png);
    display: inline-block;
    width: 15px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    transition: 0.5s;
}
a.link-btn:hover::after{
    background-image: url(../img/ico-link2-2.png);
    transition: 0.5s;
}
a.link-btn:hover {
    opacity: 1;
    color: #3a3a3a;
    background: #fff;
}
#recruit{
    position: relative;
    color: #fff;
}
#recruit h2,#recruit h2 span{
    color: #fff;
}
#recruit::after {
    content: "";
    background-image: url(../img/bg-recruit.jpg);
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    z-index: -1;
}
p.rec-text1 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
a.link-btn.rec {
    background: #fff;
    color: #84a4b2;
    border: 2px solid #fff;
}
a.link-btn.rec::after {
    content: "";
    background-image: url(../img/ico-link3.png);
}
a.link-btn.rec:hover {
    background: #84a4b2;
    color: #fff;
}
a.link-btn.rec:hover::after{
    background-image: url(../img/ico-link2.png);
}
.rec-img {
    background: #fff;
    padding: .5rem;
    margin-top: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
#company {
    background: #fcf9f2;
    position: relative;
}
#company h2{
    text-align: center;
}
.logo-top{
    position: relative;
    margin-top: 3rem;
}
.logo-top::before {
    content: "";
    background-image: url(../img/ico-logo.png);
    display: block;
    width: 50px;
    height: 85px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#company h3 {
    text-align: center;
}
#company .col-xl-4 {
    margin-bottom: 1rem;
}
.map iframe {
    height: 250px;
    margin-top: 5px;
}
ul.sub-slider {
    padding: 2rem 0;
    margin: 0;
}
ul.sub-slider img {
    width: 100%;
}
#contact {
    background-image: url(../img/bg-contact.png);
    background-size: cover;
    background-position:center;
}
#contact h2,#contact h3{
    text-align: center;
}
#contact  a.tell img {
    width: 320px;
    margin: 0 auto;
    display: block;
}
#contact a.col-xl-6.link-btn {
    margin: 0 auto;
}
#contact a.col-xl-6.link-btn::after {
    display: none;
}
.f-logo img {
    width: 200px;
    margin: 0 auto;
    display: block;
}
.footer-nav ul {
    padding: 0;
    margin: 0;
    line-height: 2.2;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.footer-nav ul li a {
    text-decoration: none;
}
.footer-nav ul li {
    width: 50%;
}
#footer section {
    padding: 2rem 0 0;
}
a.btn-online {
    display: block;
    text-decoration: none;
    padding: 10px;
    width: 200px;
    margin: 1rem auto;
}
p.copyright {
    text-align: center;
}
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    transition: all 0.3s;
}
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime2 0.5s forwards;
}
@keyframes UpAnime2{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime2 0.5s forwards;
}
@keyframes DownAnime2{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


@media screen and (min-width:760px) {
.slider, .slider-item img {
    height: auto;
}
p.copy1 {
    font-size: 24px;
}
p.copy2 {
    font-size: 20px;
}
.m-logo img {
    width: 180px;
}
.slick-dots {
    margin: -30px 0 0 0;
}
h2.title span.title-en,h1.title span.title-en {
    font-size: 45px;
}
#about img {
    border-radius: 10px;
    width: 100%;
}
#about p.copy1 {
    font-size: 26px;
}
#products .row {
    gap: 25px;
    justify-content: space-between;
    margin-bottom: 2rem !important;
}
#products .col-md-6 {
    width: 48%;
    margin: 0;
}
p.rec-text1 {
    font-size: 26px;
}
p.rec-text2 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 5rem;
}
.rec-img {
    padding: 1rem;
    margin-top: 3rem;
}
#company .col-xl-4 img {
    width: 100%;
}
.map iframe {
    height: 300px;
}
#footer a.btn-online {
    margin: 1rem 0 0;
}
}

@media screen and (min-width:1200px) {
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    height: 90px;
    width: 100%;
}
#g-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
#g-nav ul li a {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    color: #fff;
}
#header.DownMove #g-nav ul li a {
    color: #000;
}
#g-nav ul li a.btn-online {
    margin: 0;
    width: 220px;
    padding: 15px 0px;
}
#header.DownMove .logo, body:not(.home) #header .logo {
    width: 150px;
}
.m-logo img {
    width: 260px;
    margin-bottom: 2rem;
}
p.copy1 {
    font-size: 30px;
}
p.copy2 {
    font-size: 26px;
}
p.lead {
    text-align: center;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 4rem;
}
.container{
    max-width: 1100px;
}
section {
    padding: 6rem 0;
}
#intro {
    padding-top: 5rem;
}
h2.title span.title-en,h1.title span.title-en {
    font-size: 60px;
    line-height: 1.2;
}
h2.title,h1.title  {
    margin-bottom: 2rem;
}
a.btn-news {
    margin: 2rem 0 0;
}
.news-list li {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}
.news-list a{
    width: 90%;
}
.tab-buttons {
    padding-left: 2rem;
}
.news-list time {
    width: 130px;
}
.tab-content {
    min-height: 172px;
}
#about p.copy1 {
    font-size: 35px;
}
#craftmanship .row {
    gap: 60px;
    justify-content: space-between;
}
#craftmanship .col-xl-6 {
    width: 46.5%;
    margin: 0;
    padding: 2rem;
}
#craftmanship h3 span {
    font-size: 55px;
}
h3 {
    font-size: 24px;
}
#craftmanship .col-xl-6 figure {
    margin-bottom: 1.5rem;
}
#craftmanship .col-xl-6:nth-of-type(2),#craftmanship .col-xl-6:nth-of-type(3) {
    background: #f3fcf0;
}
#products .col-md-6 h3 {
    font-size: 22px;
}
#products .row {
    gap: 20px;
}
#products .col-md-6 {
    width: 32%;
    padding: 2rem 1rem 1rem;
}
#products a.link-btn {
    margin: 1rem 2rem 0;
}
p.rec-text1 {
    font-size: 30px;
}
p.rec-text2 {
    font-size: 20px;
}
.rec-img {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: 4rem;
}
#recruit::after {
    height: 75%;
}
.logo-top::before {
    width: 90px;
    height: 130px;
    top: -75px;
}
.logo-top {
    margin-top: 4rem;
}
#company .col-xl-4 {
    margin: 2rem 0 1rem;
}
#contact .row {
    align-items: center;
    margin: 3rem 0 0;
}
#contact a.col-xl-6.link-btn {
    width: 420px;
    padding: 25px 0;
}
#contact h3 {
    font-size: 26px;
    margin-bottom: 2rem;
}
#contact a.tell img {
    width: 380px;
}
.f-logo img {
    width: 240px;
    margin: 0;
}
.footer-nav {
    margin-top: 4rem;
}
.footer-nav ul li {
    width: auto;
}
.footer-nav ul li a {
    padding-right: 20px;
}
p.copyright {
    text-align: left;
}
#page-top a {
    width: 50px;
    height: 50px;
}
#footer section {
    padding: 3rem 0 0;
}
}
@media screen and (min-width: 1300px) {
.container {
    max-width: 1200px;
}
#g-nav ul li a {
    font-size: 18px;
    padding: 10px 30px;
}
.m-logo img {
    width: 290px;
}
p.copy1 {
    font-size: 32px;
}
.m-logo {
    position: absolute;
    top: 32%;
}
h2.title span.title-en, h1.title span.title-en{
    font-size: 65px;
}
#about p.copy1 {
    font-size: 40px;
}
#craftmanship h3 span {
    font-size: 60px;
}
h3 {
    font-size: 26px;
}
#craftmanship .col-xl-6 p {
    font-size: 18px;
}
#craftmanship .col-xl-6 {
    padding: 2rem 2rem 3rem;
}
a.link-btn {
    width: 360px;
    font-size: 18px;
}
a.link-btn::after {
    width: 20px;
    height: 14px;
}
p.rec-text1 {
    font-size: 35px;
}
.rec-img {
    margin-left: -3rem;
    margin-right: -3rem;
}
#recruit::after {
    background-size: cover;
}
.logo-top::before {
    width: 105px;
    height: 160px;
    top: -85px;
}
.logo-top {
    margin-top: 5rem;
}
#company h3 {
    font-size: 25px;
}
.map iframe {
    height: 260px;
}
#contact h3 {
    font-size: 28px;
}
#contact h3 + p {
    font-size: 18px;
}
.footer-nav ul li a {
    font-size: 18px;
    padding-right: 28px;
}
#footer a.btn-online {
    font-size: 18px;
    width: 220px;
}
#footer .col-sm-4 {
    width: 30%;
}
#footer .col-sm-8 {
    width: 70%;
}
}


/* page */
#page_header {
    margin-top: 70px;
    height: 100px;
    background-size: cover;
    position: relative;
}
h1.title, h1.title span.title-en {
    color: #fff;
    margin: 0;
}
h1.title {
    padding-top: 15px;
}
body:not(.home) #header #g-nav ul li a {
    color: #000;
}
.bread {
    padding: 10px 0;
}
.bread a, .bread span {
    text-decoration: none;
    padding: 0 5px;
}
.wp-block-group__inner-container {
    padding: 0 1rem;
}
#page-content {
    padding: 2rem 0 0;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 1rem;
    border-left: none;
    border-right: none;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
    background: transparent;
    font-weight: 500;
    vertical-align: text-top;
}
h3.wp-block-heading {
    margin: 2rem 0 1rem;
}
.mt-6{
    margin-top: 5rem;
}

@media screen and (min-width:760px) {
#page_header {
    height: 210px;
    background-position: center;
}
h1.title {
    padding-top: 40px;
}
.wp-block-group__inner-container {
    max-width: 720px;
    margin: 0 auto;
}
.wp-block-columns.flex-basis-md-none:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 0 !important;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 1.5rem;
    
}
}
@media screen and (min-width: 992px) {
.wp-block-group__inner-container {
    max-width: 960px;
}
}


@media screen and (min-width:1200px) {
#page_header {
    margin-top: 90px;
    height: 330px
}
h1.title {
    padding-top: 60px;
}
.wp-block-group__inner-container {
    max-width: 1100px;
}
h3.wp-block-heading {
    font-size: 30px;
    margin: 3rem 0 1rem;
}
#message p {
    line-height: 2;
    margin-bottom: 2rem;
}
#factory h3 {
    margin-top: 5rem;
}
.mt-6 {
    margin-top: 10rem;
}
}
@media screen and (min-width:1400px) {
#page_header {
    height: 420px;
}
.wp-block-group__inner-container {
    max-width: 1200px;
}
#page-content {
    font-size: 18px;
}
}

/* form */
.smf-item__label strong {
    color: #eb4335;
    font-size: 12px;
    margin-left: 5px;
}
.smf-form--simple-table .smf-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem;
}
.smf-action .smf-button-control__control {
    border: none;
    background: #000;
    color: #fff;
    padding: 15px 50px;
}
.smf-select-control {
    width: 100%;
}
.snow-monkey-form {
    margin: 2rem auto 4rem;
}
.smf-form .smf-text-control__control {
    font-size: 16px;
}
@media screen and (min-width:1200px) {
.smf-form--simple-table .smf-item {
    padding: 2rem 4rem;
}
}
body:not(.home) #footer {
    border-top: 1px solid #ddd;
}
/* archive */
a.tab-btn {
    text-align: center;
    text-decoration: none;
}
.post-type-archive .news-list,.tax-news_category .news-list {
    border-top: 1px solid #b7b7b7;
}
nav.pagination {
    margin: 2rem auto 0;
    text-align: center;
}
.nav-links a,.nav-links span {
    display: inline-block;
    border: 1px solid #000;
    text-decoration: none;
    padding: 3px 10px;
}
.page-numbers.current {
    background: #000;
    color: #fff;
}
a.tab-btn:nth-of-type(2) {
    border-right: 0;
}
a.tab-btn:nth-of-type(3) {
    border-right: 1px solid #000;
}

.reccopy1 {
    font-size: 24px;
    margin-bottom: 2rem;
}
.reccopy2 {
    font-size: 18px;
}
a.link-btn.entry {
    border-radius: 60px;
    background: #fff;
    font-weight: bold;
    margin-top: 3rem;
    color: #000!important;
}
a.link-btn.entry::after {
    display: none;
}
a.link-btn.entry:hover {
    background: #000;
    color: #fff!important;
}
.page-id-141 h2 {
    font-weight: bold;
    font-size: 24px;
}
#description .wp-block-column ,#environment .wp-block-column {
    border: 1px solid #000;
    padding: 1rem;
}
#description .wp-block-column h3 ,#environment .wp-block-column h3{
    font-weight: bold;
}
#description .wp-block-column h3 {
    font-size: 24px;
    margin-bottom: 5px;
}
p.job-ms {
    font-size: 18px;
}
#description .wp-block-column figure {
    margin-bottom: 1.5rem;
}
#environment .wp-block-column figure {
    margin-bottom: 1rem;
}

#page-content a,.post-contents a {
    color: #0071bc;
}

@media screen and (min-width:1200px){
	a.entry-btn {
    display: block;
    background: #fff;
    width: 400px;
    font-weight: bold;
    text-decoration: none;
    padding: 1.5rem;
    text-align: center;
    border-radius: 60px;
    font-size: 18px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

a.entry-btn:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
	.reccopy1 {
    font-size: 40px;
    margin-bottom: 3rem;
}
	.reccopy2 {
    font-size: 26px;
    margin-bottom: 2rem;
}
	.page-id-141 h2 {
    font-size: 30px;
    margin-bottom: 2rem;
}
	#description .wp-block-column h3 {
    font-size: 30px;
}
	#description .wp-block-column h3 + p {
    font-size: 18px;
}
	p.job-ms {
    font-size: 21px;
}
	#description .wp-block-column, #environment .wp-block-column {
    padding: 2rem;
}
	#environment .wp-block-column h3 {
    font-size: 24px;
}
	#environment .wp-block-column figure {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
	#entry h2 + p {
    text-align: center;
    font-size: 18px;
}

}

/* single */
h2.post-ttl {
    font-size: 20px;
    border-bottom: 2px solid #000;
    padding: 10px;
}
img.thumbnail-img {
    margin: 0 0 2rem;
    width:100%;
}
.entry-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0;
}
.entry-pager a {
    display: block;
    text-decoration: none;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 3px;
}
.entry-pager .next a::after,.entry-pager .back a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(-135deg);
    margin-left: 5px;
}
.entry-pager .back a::before {
    margin-right: 5px;
    margin-left: 0;
    transform: rotate(45deg);
}
.post-contents h2.wp-block-heading {
    font-size: 20px;
    background: #f2f2f2;
    padding: 10px;
}

.post-contents h3.wp-block-heading {
    margin: 2rem 0 1rem;
    border-left: 7px solid #000;
    padding: 5px 10px;
    font-size: 18px;
}
@media screen and (min-width:1200px) {
h2.post-ttl {
    font-size: 26px;
    padding: 15px;
}
.post-contents h2.wp-block-heading {
    font-size: 24px;
    padding: 10px 20px;
}
.post-contents h3.wp-block-heading {
    padding: 10px 15px;
    font-size: 18px;
}
}