@charset "UTF-8";
/*
Theme Name: thekind.jp
Theme URI: https://the4kind.jp/
Description: the4kind.jp
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto+Condensed:wght@100..900&display=swap');

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 7
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -------------------------------- 

Primary style

-------------------------------- */

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 100%;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
}

body, html {
    height: 100%;
	margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #999;
    transition: color 0.1s ease-out;
}

/* -------------------------------- 

Modules

-------------------------------- */

.container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    clear: both;
    overflow: hidden;
}

section {
    position: relative;
}

/* -------------------------------- 

post

-------------------------------- */

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.7;
	margin: 0;
    padding: 0 0 1em;
    color: #000;
    text-align: justify;
}

.f14R {
    font-size: 14px;
    font-weight: normal;
}

.f16R {
    font-size: 16px;
    font-weight: normal;
}

.f18R {
    font-size: 18px;
    font-weight: normal;
}

.f20R {
    font-size: 20px;
    font-weight: normal;
}

.alignleft {
    float:left;
    padding:0 15px 15px 10px;
}

.alignright {
    float:right;
    padding: 0 10px 15px 15px;
}

.aligncenter {
    text-align: center;
    display: block;
    margin: 20px auto;
    padding: 0;
}

.pc {
    display: inherit;
}

.sp {
    display: none;
}

@media only screen and (max-width:768px) {

.pc {
    display: none;
}

.sp {
    display: inherit;
}

}

/* -------------------------------- 
Background - Smart Slider
-------------------------------- */

#background {
    position: fixed;
    z-index: -1;
    filter: brightness(0.9);
}

div#n2-ss-2 .n2-ss-slider-4 {
    object-fit: cover;
    width: 100vw !important;
    height: 100vh !important;
}

/* -------------------------------- 

nav

-------------------------------- */

nav {
    z-index: 10;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

nav ul {}
nav ul li {}

nav ul li a {
    color: #fff;
    font-size: 25px;
    letter-spacing: 2px;
	position: relative;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 70px;
    transition: all .2s linear;
    transform: translateX(-50%) scaleX(0);
	transform-origin: center center;
    width: 210px;
    height: 1px;
    background: #fff;
    opacity: 0;
}

nav ul li a:hover:after, nav ul li a.active:after {
    transition: all .2s linear;
	transform: translateX(-50%) scaleX(1);
    opacity: 1;
    top: 70px;
}

nav ul li a:hover {
    color: #fff;
    transition: all .2s linear;
}

/* -------------------------------- 
sp nav
-------------------------------- */

#toggle {
    position: fixed;
    top: 30px;
    right: 30px;
}

#toggle-box {
    position: relative;
    width: 50px;
    height: 14px;
    cursor: pointer;
}

#toggle-box > span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box.view > span {
    background: #000;
}

#toggle-box > span:nth-child(1) {
    top: 0;
}

#toggle-box > span:nth-child(2) {
    bottom: 0;
}

.is-open #toggle-box > span {
    background: #fff;
}

.is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(30deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
    top: 50%;
    transform: rotate(330deg) translatey(-50%);
}

#toggle {
    z-index: 1000;
}

#main {
    position: relative;  
    z-index: 990;
}

#nav-content {
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #000000d6;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

#nav-content ul {
    list-style: none;
}

#nav-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 30px 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

#nav-content a:hover {
    opacity: 1;
}

.is-open {
    overflow: hidden;
}

.is-open #nav-content {
    z-index: 999;
    visibility: visible;
    opacity: 1;
}

.is-open #nav-content a {
    pointer-events: auto;
    margin: 0 auto;
}

@media only screen and (max-width:1000px) {

nav ul {
    display: inline-block;
}

#nav-content a {
    padding: 20px 0;
}

nav ul li a::before {
    background: none;
}

}

/* -------------------------------- 
text-animation
-------------------------------- */

.pop-text {
    display: inline-block;
}

.pop-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
}

.pop-text.active span {
    animation: popIn 0.35s forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#top_logo .pop-text span:nth-child(4) {margin: 0 5px;}
#top_logo .pop-text span:nth-child(12) {margin: 0 5px;}
#top_logo .pop-text span:nth-child(25) {margin: 0 5px;}
#top_logo .pop-text span:nth-child(34) {margin: 0 5px;}

/* -------------------------------- 

top

-------------------------------- */

#contents {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

#top_logo {
    height: 100vh;
    position: relative;
}

#top_logo h1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#top_logo h1 img {
    width: clamp(280px, 39.64vw, 607px);
    height: auto;
    display: block;
}

#top_logo h1 span.f20R {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    letter-spacing: 3px;
    display: block;
    position: relative;
    top: 3px;
}

.logo {
    padding: 0 0 10px;
}

.logo-slide {
    display: block;
    margin: 0 auto;
    opacity: 0;
    animation: slideIn 2.5s ease-out forwards;
}

@keyframes slideIn {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    opacity: 1;
  }
}

#contents .inner {
    position: relative;
}

.box_top {
    width: 100%;
    min-height: 500px;
}

h2.under {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #000;
    letter-spacing: 10px;
    text-align: left;
    padding: 45px 0 70px;
	margin: 0;
}

h2.under::after {
    content: '';
    position: relative;
    bottom: -11px;
    left: 0;
    display: block;
    height: 1px;
    width: 90px;
    background: #000;
}

.box_cont {
    border-bottom: 1px solid #000;
    padding: 0 0 30px;
    overflow: hidden;
	position: relative;
}

@media only screen and (max-width:1000px) {

#contents {
    padding: 30px 0 0;
}

#contents.top {
    padding: 0;
}

#top_logo {
    margin-top: 0;
}

#top_logo h1 span.f16R {
    font-size: 10px;
}

h2.under {
    font-size: 33px;
}

h2.under::after {
    margin-left: -88px;
    width: 170px;
}

}

/* -------------------------------- 
top_about
-------------------------------- */

#top_about {
    padding: 100px 30px;
}

.top_about_img {
    max-width: 100%;
    height: 300px;
    background: #333;
    margin: 26px 0 0;
}

.btn_more {
    width: 100px;
    text-align: center;
    margin: 30px auto 0;
}

.btn_more a {
    position: relative;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    transition: color 0.2s;
    z-index: 1;
}

.btn_more a::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    transition: all .2s linear;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    width: 100px;
    height: 1px;
    background: #000;
    opacity: 0;
}

.btn_more:hover a::after {
    transition: all .2s linear;
	transform: translateX(-50%) scaleX(1);
    opacity: 1;
    top: 30px;
}

.btn_more.view_all {
    width: 134px;
}

.btn_more.view_all a::after {
    width: 134px;
}

.btn_more .arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 5px;
    height: 5px;
    border: 0.1em solid #000;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    top: 11px;
    right: 10px;
    transition: all .2s linear;
}

.btn_more:hover .arrow-right {
    right: 5px;
    transition: all .2s linear;
}

.about_img {
    float: right;
    margin: 0 0 26px 30px;
}

.about_img img {
    max-width: 550px;
    width: 100%;
    height: auto;
}

@media only screen and (max-width:768px) {

.about_img {
    float: none;
    margin: 0 0 14px 0;
}

}

/* -------------------------------- 
top_service
-------------------------------- */

#top_service {
    padding: 60px 30px;
}

ul.list_service {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

ul.list_service li {
    width: 25%;
    margin: 0 0 50px;
    text-align: center;
}

ul.list_service li img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

ul.list_service li a:hover {color: #000;}
ul.list_service li img:hover {opacity: 1;}

ul.list_service li figure {
    width: 240px;
    padding: 0 0 20px;
}

ul.list_service li figcaption {
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0 0;
}

ul.list_service li figcaption span.font_ss {
    display: block;
    font-size: 9px;
}

.border-line {
  position: relative;
  display: inline-block;
}

.border-line::before,
.border-line::after {
  content: "";
  position: absolute;
  background: #000;
  transition: all 0.4s ease;
}

.border-line::before {
  height: 1px;
  width: 0;
  left: 50%;
  bottom: 0;
}

.border-line::after {
  width: 1px;
  height: 0;
  right: 0;
  top: 50%;
}

.border-line:hover::before {
  width: 100%;
  left: 0;
}

.border-line:hover::after {
  height: 100%;
  top: 0;
}

@media only screen and (max-width:768px) {

ul.list_service li {
    width: 50%;
}

}

@media only screen and (max-width:480px) {

ul.list_service li {
    width: 100%;
}

}

/* -------------------------------- 
top_works
-------------------------------- */

#top_works {
    padding: 100px 30px;
}

/* -------------------------------- 
top_post
-------------------------------- */

#top_contents {
    padding: 100px 30px;
}

#top_info {
    padding: 100px 30px;
}

ul.post {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    border-bottom: 1px solid #000;
}

ul.post li {
    width: 18.68%;
    min-width: 310px;
    padding: 30px 0;
    margin: 0 0.66% 30px;
}

ul.post li a {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

ul.post li .post_img {
    width: 100%;
    margin: 0 0 12px 0;
    aspect-ratio: 1 / 0.7;
    overflow: hidden;
}

ul.post li .post_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.post li a:hover {color: #000;}
ul.post li a:hover .post_img img {opacity: 1;}

ul.post li .post_txt {
    width: 100%;
    position: relative;
}

ul.post li time {
    font-family: 'Roboto Condensed', sans-serif;
}

ul.post li .cat_name {
    margin: 0 0 0 30px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 80%;
    padding: 2px 20px;
    position: absolute;
    top: 0;
    right: 0;
}

/* 
ul.post li .cat_name.cat_website {background-color: #1273b5;}
ul.post li .cat_name.cat_consulting {background-color: #607D8B;}
ul.post li .cat_name.cat_promotion {background-color: #03A9F4;}
ul.post li .cat_name.cat_wordpress {background-color: #634e89;}
ul.post li .cat_name.cat_systems {background-color: #3F51B5;}
ul.post li .cat_name.cat_server {background-color: #009688;}
ul.post li .cat_name.cat_graphic {background-color: #795548;}
ul.post li .cat_name.cat_movie {background-color: #00bcd4;}
 */

ul.post li .post_title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin: 7px 0 0;
}

#top_info ul.post {}

#top_info ul.post li {
    width: 48.66%;
    padding: 30px;
    margin: 0 0.66% 30px;
    border-left: 1px solid #000;
}

#top_info ul.post li a {
    display: block;
    padding: 0;
}

@media only screen and (max-width:1370px) {

ul.post li {
    width: 32%;
}

}

@media only screen and (max-width:1030px) {

ul.post li {
    width: 48.66%;
}

}

@media only screen and (max-width:768px) {

#top_info ul.post li {
    width: 98.66%;
}

}

@media only screen and (max-width:700px) {

ul.post li {
    width: 100%;
    max-width: 411px;
    margin: 0 auto;
}

}

/* -------------------------------- 
top_contact
-------------------------------- */

#top_contact {
    padding: 100px 30px;
}

ul.top_contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding: 0 0 30px;
}

ul.top_contact li {
    width: 49%;
    margin: 0;
    padding: 0;
}

ul.top_contact li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 0;
}

ul.top_contact li a img {
    width: 68px;
    height: auto;
}

ul.top_contact li a span {
    font-size: 30px;
    font-weight: 500;
    padding: 0 0 0 30px;
    letter-spacing: 2px;
}

ul.top_contact li a:hover {color: #000;}

@media only screen and (max-width:768px) {

ul.top_contact li {
    width: 100%;
}

ul.top_contact li a {
    padding: 20px 0;
}

}

@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* -------------------------------- 

footer

-------------------------------- */

footer {
    position: relative;
    margin: 0;
    background-color: #fff;
}

ul.footer_nav {
    padding: 0 30px;
    margin: 0 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.footer_nav li {
    margin: 0 20px;
}

ul.footer_nav li a {
    color: #000;
    font-size: 14px;
    letter-spacing: 2px;
}

.link-underline-center {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    padding-bottom: 2px;
}

.link-underline-center::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.link-underline-center:hover::after {
    transform: translateX(-50%) scaleX(1);
}

footer p.copy {
    font-size: 13px;
    text-align: center;
    color: #999;
    line-height: 1.5;
    padding: 0 0 36px;
    letter-spacing: 1px;
}

@media only screen and (max-width:1000px) {}

/* -------------------------------- 

side_nav

-------------------------------- */

#side_nav {
    position: fixed;
    z-index: 10;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
	visibility: visible !important;
}

#side_nav ul {}

#side_nav ul li {
    margin: 45px 0;
    font-size: 14px;
    text-align: right;
}

#side_nav ul li a {
    color: #fff;
    opacity: 0.6;
}

#side_nav.view ul li a {
    color: #000;
	transition: color 1s ease;
}

#side_nav ul li a:before {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    background-color: #fff;
    top: 21px;
    position: relative;
    transition: all .2s linear;
    right: -96px;
    opacity: 0.6;
}

#side_nav.view ul li a:before {
    background-color: #000;
	transition: background-color 1s ease;
}

#side_nav ul li a.current:before {
    transition: all .2s linear;
    right: -12px;
}

#side_nav ul li a:hover:before {
    transition: all .2s linear;
    right: -12px;
}

#side_nav.side_sub {
    top: inherit;
    transform: inherit;
    bottom: 0;
    right: 38px;
    z-index: 11;
    visibility: hidden !important;
    opacity: 0;
}

#side_nav.side_sub ul li a {
    background: url(images/page_top.png) no-repeat;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: all .2s linear;
}

#side_nav.side_sub ul li a:hover {
    opacity: 1;
    transition: all .2s linear;
}

#side_nav.side_sub ul li a:before {
    content: none;
}

#side_nav.view {
    visibility: visible !important;
    transition: all .2s linear;
    opacity: 0.8;
}

@media only screen and (max-width:1000px) {

#side_nav {
    top: inherit;
    bottom: -125px;
}

#side_nav.side_sub {
    right: 20px;
}

}

/* -------------------------------- 

sub page

-------------------------------- */

header.sub {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 0;
    height: 72px;
}

#toggle.sub_toggle #toggle-box > span {
    background: #000;
}

.is-open #toggle.sub_toggle #toggle-box > span {
    background: #fff;
}

.is-open header.sub {
    z-index: 2;
}

header.sub h1 {
    text-align: left;
    position: relative;
    top: 12px;
    padding: 0 0 3px 22px;
    margin: 0;
    z-index: 10;
}

header.sub h1 a {}
header.sub h1 a img {
    width: 200px;
    height: auto;
	opacity: 1;
}

.bg_sub_title {
    position: relative;
    height: 200px;
	text-align: center;
}

h1.sub_title {
    position: relative;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(
      35px,
      calc(35px + (50 - 35) * ((100vw - 375px) / (1200 - 375))),
      50px
    );
    font-weight: 400;
    letter-spacing: 10px;
    padding: 0 0 0 8px;
	margin: 0;
	top: 50%;
    transform: translate(0%, -50%);
}

h1.sub_title.is-child {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(
      28px,
      calc(28px + (45 - 28) * ((100vw - 375px) / (1200 - 375))),
      45px
    );
    letter-spacing: 0;
}

.box_breadcrumb {
    position: relative;
    padding: 15px 30px 30px;
    background-color: #fff;
    z-index: 1;
}

nav.breadcrumb {
    font-size: 12px;
    color: #999;
    position: relative;
    top: inherit;
    left: initial;
    transform: initial;
}

nav.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}

nav.breadcrumb ul li {}

nav.breadcrumb ul li a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
    transition: all .2s linear;
    font-size: 12px;
    letter-spacing: 1px;
}

nav.breadcrumb ul li a:hover {
    text-decoration: underline;
}

nav.breadcrumb ul li::after {
    content: ">";
    margin: 0 7px;
}

nav.breadcrumb ul li:last-child::after {
    content: "";
}

h2.sub_section {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    padding: 4px 0 9px 18px;
    margin: 40px 0;
    color: #000;
    clear: both;
}

/* -------------------------------- 

post_single

-------------------------------- */

#contents.single {
    padding: 30px 20px 0;
}

#post_single {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

#post_single time {
    font-family: 'Roboto Condensed', sans-serif;
}

#post_single .cat_name {
    margin: 0 0 0 30px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 80%;
    padding: 2px 20px;
}

h1.post_title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4;
    padding: 20px 0;
    margin: 15px 0 30px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
	clear: both;
}

.eyecatch {
    margin: 0 0 30px;
}

.eyecatch img {
    max-width: 1024px;
    width: 100%;
    height: auto;
}

.core_single {
    padding: 0 0 30px;
}

.single_content {
    margin: 0 0 70px;
    padding: 0 0 50px;
    border-bottom: 1px solid #000;
}

.single_content h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    border-bottom: 3px solid #000;
    padding: 0 0 8px;
    margin: 25px 0 22px;
	clear: both;
}

.single_content h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.7;
    border-bottom: 3px solid #000;
    padding: 0 0 8px;
    margin: 50px 0 25px;
    clear: both;
}

.single_content h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    padding: 4px 0 9px 18px;
    margin: 40px 0 17px;
    clear: both;
}

.single_content h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    border-bottom: 1px dotted #999;
    padding: 4px 0 5px 18px;
    margin: 20px 0 16px;
    clear: both;
}

.single_content p {
    line-height: 2em;
    padding: 0 1em 1em;
}

.single_content ul, .single_content ol {
    margin: 0 0 2em 40px;
}

.single_content ul li, .single_content ol li {
    list-style: disc;
	line-height: 1.7;
}

.single_content ul li p, .single_content ol li p {
    padding: 0 0 5px;
}

.single_content hr {
    border-top: 1px solid #000;
    border-bottom: none;
}

.single_content table {
    width: 100%;
    border: 1px solid #000;
    margin: 0 0 40px;
}

.single_content table tr {
    border: 1px solid #000;
}

.single_content table th {
    border: 1px solid #000;
    padding: 12px 20px;
    background-color: #ddd;
}

.single_content table td {
    border: 1px solid #000;
    padding: 12px 20px;
}

.btn_more .arrow-left {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 5px;
    height: 5px;
    border: 0.1em solid #000;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(225deg);
    position: absolute;
    top: 11px;
    left: 10px;
    transition: all .2s linear;
}

.btn_more:hover .arrow-left {
    left: 5px;
    transition: all .2s linear;
}

.single_content p img {
    max-width: 640px;
    width: 100%;
    height: auto;
}

@media only screen and (max-width:768px) {

.single_content p {
    padding: 0 0 1em 0;
}

.single_content ul {
    margin: 0 0 2em 28px;
}

}

/* -------------------------------- 

page

-------------------------------- */

#post_page {
    padding: 20px 30px 60px;
}

#post_page h2.under {
    padding: 45px 0 56px;
	margin: 0;
}

#post_page .box_cont {
    margin: 0 0 100px;
}

#post_page .box_cont.last {
    margin: 0;
}

#post_page h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    padding: 4px 0 9px 18px;
    margin: 10px 0 17px;
    clear: both;
}

.side_contact {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1;
}

.side_contact a {
    display: block;
    width: 66px;
    height: 84px;
    background: #fff url(images/icon_mail.png) no-repeat 50% 8px;
    background-size: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    padding: 62px 8px 0;
    text-align: center;
    border-radius: 5px 0 0 5px;
    filter: drop-shadow(0px 0px 3px #999);
    opacity: 0.5;
	transition: all 0.3s ease-out;
}

.side_contact a:hover {
    opacity: 1;
    transition: all 0.3s ease-out;
}

@media only screen and (max-width:768px) {

    .bottom_contact {
        position: fixed;
        bottom: 0;
        z-index: 1;
        width: 50%;
    }

    .bottom_contact.tel {
        left: 0;
    }

    .bottom_contact.mail {
        right: 0;
    }

    .bottom_contact a {
        display: block;
        width: 100%;
        height: 58px;
        padding: 0;
        border-top: 1px solid #000;
		border-bottom: 1px solid #000;
    }

.bottom_contact.tel a {
    background: #fff url(images/icon_tel.png) no-repeat 50% 8px;
	background-size: 40px;
	border-right: 1px solid #000;
}

.bottom_contact.mail a {
    background: #fff url(images/icon_mail.png) no-repeat 50% 8px;
	background-size: 40px;
}

}

/* -------------------------------- 
about
-------------------------------- */

#sub_about {
	padding: 0;
}

.img_about {
    float: right;
    margin: 0 0 0 30px;
}

.img_about img {
    max-width: 550px;
    width: 100%;
    height: auto;
}

ul.business_details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

ul.business_details li {
    width: 25%;
    font-size: 16px;
    font-weight: 500;
    padding: 26px 0;
    text-align: center;
}

ul.business_details li span.font_ss {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

ul.business_details li::after {
    content: '';
    position: relative;
    bottom: -10px;
    left: 50%;
    display: block;
    height: 1px;
    width: 30%;
    background: linear-gradient(90deg, #1273b5 0%, #1273b5 50%, #8fd1da 50%, #8fd1da 100%);
    transform: translate(-50%, 0);
}

table.office {
    width: 100%;
    margin: 0 0 40px;
}

table.office tr {}

table.office th {
    padding: 26px 16px 10px;
    font-weight: normal;
    text-align: left;
    vertical-align: bottom;
    border-bottom: 1px solid #1273b5;
}

table.office td {
    padding: 26px 16px 10px;
    font-weight: normal;
    text-align: left;
    vertical-align: bottom;
    border-bottom: 1px solid #8fd1da;
}

.gmap {
    filter: saturate(0.5);
}

@media only screen and (max-width:768px) {

.img_about {
    float: none;
    margin: 0 0 15px;
}

ul.business_details li {
    width: 50%;
}

}

@media only screen and (max-width:620px) {

ul.business_details li {
    width: 100%;
}

table.office th {
    width: 30%;
}

}

/* -------------------------------- 
service
-------------------------------- */

#sub_service {
	padding: 0;
}

#post_page #sub_service .box_cont {
    margin: 0 0 60px;
}

#sub_service h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    color: #000;
    border-bottom: none;
    border-left: none;
    padding: 0;
    margin: 0 0 1em;
}

#top_service h3.chatch, #sub_service h3.chatch {
    text-align: center;
    font-size: clamp(22px, calc(22px + (36 - 22) * ((100vw - 375px) / (1200 - 375))), 36px);
    padding: 20px 0 60px;
	margin: 0;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
}

.box_service {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.service_icon {
    width: 160px;
    padding: 7px 0 20px;
    margin: 0 30px 0 10px;
    text-align: center;
}

.service_icon img {
    width: 120px;
    height: auto;
}

.service_txt {
    width: 100%;
    margin: 0;
    padding: 0;
}

#post_page #sub_service .box_cont.in_links {
    margin: 120px 0 60px;
}

#sub_service ul.post {
    border-bottom: none;
}

.box_faq {
    margin: 0;
    padding: 0 1em;
}

#sub_service .box_faq h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    color: #000;
    border-bottom: none;
    border-left: none;
    padding: 0;
    margin: 0 0 10px;
}

.service_5050 {
    display: flex;
    flex-wrap: wrap;
}

#post_page #sub_service .service_5050 .box_cont {
    width: 48%;
    margin: 0 1% 34px;
    padding: 0 0 1em;
    border: 1px solid #000;
}

.service_5050 h2.sub_section {
    border-bottom: 1px solid #000;
    border-left: none;
    padding: 7px 18px 9px;
    margin: 0 0 20px;
    background-color: #e3e3e3;
}

#sub_service .service_5050 h3 {
    padding: 0 18px;
}

#sub_service .service_5050 p {
    padding: 0 18px 1em;
}

@media only screen and (max-width:768px) {

.box_service {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
}

.service_icon {
    margin: 0 auto;
}

#sub_service .box_faq {
    padding: 0;
}

#post_page #sub_service .service_5050 .box_cont {
    width: 98%;
}

}

/* -------------------------------- 
faq
-------------------------------- */

#sub_faq {
	padding: 0;
}

#sub_faq .box_faq h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    color: #000;
    border-bottom: none;
    border-left: none;
    padding: 0;
    margin: 0 0 10px;
}

@media only screen and (max-width:768px) {

#sub_faq .box_faq {
    padding: 0;
}

}


/* -------------------------------- 
privacy-policy
-------------------------------- */

#sub_privacy-policy {
	padding: 0;
}

#post_page #sub_privacy-policy .box_cont {
    margin: 0 0 50px;
    border-bottom: none;
}

#post_page #sub_privacy-policy .box_cont.last {
    margin: 0;
}

#sub_privacy-policy ul {
    margin: 0 0 0 40px;
}

#sub_privacy-policy ul.li_disc li {
    list-style: disc;
	line-height: 1.7;
}

#sub_privacy-policy ul.li_decimal li {
    list-style: decimal;
	line-height: 1.7;
}

/* -------------------------------- 
404
-------------------------------- */

.sub_404 {}

.img_404 {
    text-align: center;
    margin: 0 0 90px;
}

.img_404 img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.img_404 p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 30px 0 0;
}

/* -------------------------------- 
archive
-------------------------------- */

ul.post li.info_list {
    width: 48.66%;
    padding: 30px;
    margin: 0 0.66% 30px;
    border-left: 1px solid #000;
}

.wp-pagenavi {
    text-align: center;
    margin: 85px 0 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.wp-pagenavi a, .wp-pagenavi span {
    border: none !important;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    font-weight: normal;
    padding: 6px 12px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    background: rgb(0 0 0) !important;
}

@media only screen and (max-width:1000px) {}

/* -------------------------------- 
contact
-------------------------------- */

#sub_contact {}

ul.col_contact {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 70px;
}

ul.col_contact li {}

ul.col_contact li p {
    padding: 0 0 30px;
}

ul.col_contact li.left {
    width: 360px;
}

ul.col_contact li.left img {
    width: 68px;
    height: auto;
}

ul.col_contact li.left span {
    font-size: 30px;
    font-weight: 500;
    padding: 0 0 0 30px;
    letter-spacing: 2px;
    position: relative;
    bottom: 21px;
}

ul.col_contact li.contact_tel {}
ul.col_contact li.contact_time {
    position: relative;
    top: 6px;
    font-size: 14px;
}

ul.col_contact li.contact_time a {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    top: 4px;
    padding: 0 30px 0 0;
}

ul.col_contact li.contact_time span {}
ul.col_contact li.contact_mail {}

ul.col_contact li.contact_form {
    width: calc(100% - 360px);
    margin: 22px 0 0;
}

ul.col_contact li.contact_form.form {
    margin: 37px 0 0;
}

ul.col_contact li.contact_form .form p {
    font-size: 16px;
}

ul.col_contact li.contact_form .form_box {
    margin: 0 0 33px;
}

.required {
    color: #b50202;
    padding: 0 0 0 11px;
}

ul.col_contact li.contact_form .pp_check {
    text-align: center;
}

ul.col_contact li.contact_form .pp_link a {
    display: block;
    width: 230px;
	text-align: center;
    margin: 15px auto 0;
    position: relative;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    transition: color 0.2s;
    z-index: 1;
}

ul.col_contact li.contact_form .pp_link a::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    transition: all .2s linear;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    width: 220px;
    height: 1px;
    background: #000;
    opacity: 0;
}

ul.col_contact li.contact_form .pp_link:hover a::after {
    transition: all .2s linear;
	transform: translateX(-50%) scaleX(1);
    opacity: 1;
    top: 30px;
}

ul.col_contact li.contact_form .pp_link a .arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 5px;
    height: 5px;
    border: 0.1em solid #000;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    top: 11px;
    right: 10px;
    transition: all .2s linear;
}

ul.col_contact li.contact_form .pp_link:hover a .arrow-right {
    right: 5px;
    transition: all .2s linear;
}

.wpcf7-list-item {
    font-size: 110%;
    margin: 0 !important;
}

.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form textarea {
    width: 100%;
    height: 48px;
    border: 1px solid #000;
    color: #000;
    padding: 0 10px;
    margin: 7px 0 0;
	font-size: 100%;
}

.form textarea {
    height: 150px;
    padding: 15px 10px;
    font-size: 16px;
}

.form .form_btn {
    margin: 30px 0 0;
}

.form .form_btn input[type="submit"] {
    display: block;
    width: 125px;
    height: 35px;
    color: #fff;
    text-align: center;
    line-height: 33px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 0 auto;
    background: #000;
    transition: background 0.2s ease-out;
    border: none;
    cursor: pointer;
}

.form .form_btn input[type="submit"]:hover {
    background: #bfbfbf;
    transition: background 0.2s ease-out;
}

@media only screen and (max-width:768px) {

ul.col_contact {
    flex-direction: column;
}

ul.col_contact li.contact_form {
    width: 100%;
}

ul.col_contact li.contact_time span {
    display: block;
    margin: 10px 0 0;
}

}
