@charset "UTF-8";

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --maincolor: #222;
    --subcolor: #e9e9e9;
    --accentcolor: #1B669D;
    --linecolor: #aaaaaa;
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
body{
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-size: 16px;
    color: var(--maincolor);
    letter-spacing: 0.05em;
    line-height: 1.6;
    background-color: #fff;
}
a{
    color: var(--maincolor);
    text-decoration: none;
}
.wrapper, .container{
    width: 80%;
    max-width: 1150px;
    height: 100%;
    margin: 0 auto;
}

main{
    width: 100%;
}
.pc-br{ display: block; }
.sp-br{ display: none; }
.sp-br{ display: none; }

p{
    margin-bottom: 2em;
}
table{
    border-collapse:  collapse;
}
iframe{
    width: 100%;
    margin-bottom: 16px;
}
.data{
    font-family: "Montserrat", serif;
}
.content-area, .works_content{
    line-height: 2;
}


/* ----------------------
    header
 ---------------------- */
.header{
    position: sticky;
    top: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    z-index: 1000;
}
.header .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 86%;
}
.header .sitelogo{
    width: 120px;
}
.header .sitelogo img{
    width: 100%;
}
.header nav ul{
    display: flex;
    align-items: center;
    column-gap: 0.6em;
}
.header nav ul li a{
    display: block;
    padding: 0.2em 0.5em;
}
.header__hamburger{
    display: none;
}
.header i{
    font-size: 1.4em;
}
.header nav ul li a[target=_blank]{
    padding: 0.1em;
}

/* ----------------------
    footer
---------------------- */
.footer{
    position: relative;
    text-align: center;
    padding-bottom: 0.5em;
}
.footer .wrapper{
    width: 86%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0 64px 0;
}

.footer::before{
    content: "";
    display: block;
    width: 94%;
    max-width: 1500px;
    height: 1px;
    background-color: var(--maincolor);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.footer .left{
    flex: 1;
    font-size: 0.9em;
}
.footer .left img{
    width: 120px;
}
.footer .left p{
    margin: 1.5em 0 0 0;
}
.footer .right{
    flex: 2;
}
.footer nav{
    margin-bottom: 1em;    
}
.footer nav ul{
    display: flex;
    justify-content: flex-end;
    column-gap: 0.6em;
}
.footer ul li a{
    display: block;
    padding: 0.2em 0.5em;
}
.footer ul.other{
    display: flex;
    justify-content: flex-end;
    column-gap: 0.6em;
    font-size: 0.9em;
}
.footer ul.other .fa-brands{
    font-size: 1.2em;
}
.copyright{
    color: #999;
}
#pagetop{
    position: absolute;
    top: -20px;
    right: 5%;
    background: var(--maincolor);
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;    
    text-align: center;
    border-radius: 100px;
}
#pagetop .fa-solid{
    color: #fff;
}

div.breadcrumbs{
    margin-bottom: 1em;
    font-size: 0.9em;
}
div.breadcrumbs .ListItem{
    margin: 0 0.5em;
}
div.breadcrumbs .ListItem:first-child{
    margin-left: 0;
}
div.breadcrumbs .ListItem:last-of-type a{
    color: var(--linecolor);

}

/* ----------------------
    column2 sidebar
---------------------- */
.column2{
    display:flex;
    gap: 5%;
}
.column2 .sidebar{
    width: 200px;
}
.column2 .sidebar .sticky{
    position: sticky;
    top: 120px;
    width: auto;
}
.column2 .sidebar .sticky p{
    margin: 0;
}
.column2 .content-area,
.column2 .works-area{
    flex: 1;
}
.column2 section{
    margin-bottom: 160px;
}
.column2 section:last-child{
    margin-bottom: 0;
}
.sidebar ul.sticky li:not(:last-child){
    margin-bottom: 1em;
}
.sidebar ul.sticky li a{
    display: inline-block;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: .4s; 
}
.sidebar ul.sticky li a:hover{
    color: var(--accentcolor);
    font-weight: bolder !important;
    transition: .4s;
}
.single ul.wp-block-categories-list li{
    border: 1px solid pink;
    display: inline;
}
.single ul.wp-block-categories-list li a{
    border: 1px solid var(--linecolor);
}
.single .sidebar, .archive .sidebar{
    width: 240px;
}
.single .sidebar div:not(:last-child),
.archive .sidebar div:not(:last-child){
	margin-bottom: 48px;
}
.single .sidebar h2,
.archive .sidebar h2{
	border-bottom: 1px dashed var(--linecolor);
	padding: 0 0.5em;
	padding-bottom: 0.5em;
	margin-bottom: 0.8em;
	font-weight: 600;
}
.single .sidebar ul.sticky li,
.archive .sidebar ul.sticky li{
    margin: 0;
}
.single .sidebar ul.sticky li a,
.archive .sidebar ul.sticky li a{
	font-weight: 400;
	padding: 0 ;
}
.single .sidebar ul.tag-area,
.archive .sidebar ul.tag-area{
	margin-left: 1em;
}
.single .column2 .sidebar .sticky{
    position: initial;
}

/* ----------------------
    contact-area
---------------------- */
.top_ctcArea{
    background: var(--subcolor);
    text-align: center;
    padding: 72px;
    margin: 160px 0;
}
.top_ctcArea p{
    margin-bottom: 0;
    text-align: center;
}
.top_ctcArea h2.topHead{
    display: inline-block;
    margin-bottom: 32px;
}
.top_ctcArea h2.topHead span.sub{
    text-align: center;
}
.top_ctcArea .flexbox{
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-top: 48px;
}
.top_ctcArea .flexbox .box{
    width: 50%;
    max-width: 480px;
    transition: .4s;    
}
.top_ctcArea .flexbox .box a{
    display: block;
    padding: 32px 0;
}
.top_ctcArea .flexbox .box1{
    background: #fff;
    font-weight: 500;
    text-align: center;
}
.top_ctcArea .flexbox .box i{
    margin-right: 0.3em;
}
.top_ctcArea .flexbox .box1 .tel{
    font-size: 2em;
    font-weight: 700;
}
.top_ctcArea .flexbox .box1 .small{
    font-size: 0.9em;
}
.top_ctcArea .flexbox .box2 a{
    background: var(--maincolor);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 56px 0;
}
.top_ctcArea .flexbox .box2 p{
    text-align: left;
    display: inline-block;
}
.top_ctcArea .flexbox .box2 i{
    font-size: 2.2em;
}
.top_ctcArea .flexbox .box2:hover{
    opacity: 0.5;
    cursor: pointer;
}
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}


/* ----------------------
    heading
---------------------- */
h2.topHead{
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
}
h2.topHead span.sub{    
    font-size: 1rem; 
    font-family: "Montserrat", serif;
    font-weight: 600;
    display: block;
    color: var(--linecolor);
}

.page h2{
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}
.page h2 span.sub{    
    font-size: 0.6em; 
    font-family: "Montserrat", serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    color: var(--linecolor);    
}


/* ----------------------
    page_head
---------------------- */
.page_head{
    height: 240px;
    margin-bottom: 160px;
    position: relative;
}
.page_head .wrapper{
    position: relative;
}
.page_head .head_txt{
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.page_head .head_txt span.sub{    
    font-size: 0.6em;
    font-family: "Montserrat", serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-left: 0.2em;
    display: block;
    color: var(--linecolor);
}
.page_head::after{
    content: "";
    display: block;
    width: 94%;
    max-width: 1500px;
    height: 1px;
    background-color: var(--maincolor);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* ----------------------
    moreBtn
---------------------- */

.moreBtn{
    display: block;
    transition: .4s;
    background: #fff;
    cursor: pointer;
    width: 160px;
}
.moreBtn a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: var(--maincolor);
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 0.9em;
}
.moreBtn a:before,
.moreBtn a:after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  background: var(--linecolor);
}
.moreBtn a:before {
  top: 0;
  left: 0;
}
.moreBtn a:after {
  right: 0;
  bottom: 0;
}
.moreBtn a:hover:before,
.moreBtn a:hover:after {
  width: 0;
}


/* ----------------------
    hover
 ---------------------- */
.sitelogo:hover{
    opacity: 0.5;
    transition: all .5s;
    cursor: pointer;
}
a:hover{
    color: var(--accentcolor);
    font-weight: bolder;
    transition: all .5s;
    cursor: pointer;
}
#pagetop:hover{
    transform: scale(1.1);
    transition: all .5s;
    cursor: pointer;
}

/* 画像ホバー */
.img-hover{
	display: block;
	overflow: hidden;
}
.img-hover img{
	object-fit: cover;
	width: 100%;    
}
.img-hover:hover img{
    transform:scale(1.1);
	transition: all .5s;
    filter: brightness(80%);
}


@media screen and (max-width: 840px) {
	/* 840px以下に適用されるCSS（タブレット用） */
.wrapper, .container{
    width: 88%;
}
.pc-br{ display: none; }
.tab-br{ display: block; }
.sp-br{ display: none; }

p{
    margin-bottom: 1em;
}

/* ----------------------
    heder
 ---------------------- */
.header{
    height: 60px;
}
.header .sitelogo{
    width: 100px;
}
.header nav.active{
    width: 100%;
    height: calc( 100% - 60px );
    transform: scale(1);
    opacity: 1;
    position: fixed;
    inset: 0;
    top: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .4s;
}
.header nav ul{
    display: block;
    border: 1px solid var(--linecolor);
    background: #fff;
    padding: 10%;
    width: 80%;
    height: 80%;
    margin: 10% auto;
}
.header nav ul li{
    padding: 16px 0;
    text-align: center;    
}
.header nav ul li a{
    font-size: 1em;
    display: inline-block;
}
.header nav ul li.menu-item-type-custom a{
    display: inline-block;

}

/* ハンバーガーメニュー */
.header__hamburger {
    display: block;
    width: 24px;
}
.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    cursor: pointer;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--maincolor);
    position: relative;
    transition: ease .4s;
    display: block;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { margin: 6px 0; }
.hamburger span:nth-child(3) { top: 0; }

.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
}
.header nav {
    transform: scale(0);
    opacity: 0;
}

/* ----------------------
    footer
---------------------- */
.footer::before{
    width: 95%;
}
.footer .wrapper{
    flex-direction: column-reverse;
    gap: 2em;
}
.footer .left, .footer .left p{
    text-align: center;
    margin: 0;
}
.footer nav ul{
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}
.footer ul.other{
    justify-content: center;
    gap: 1em; 
}
.footer .left{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin-top: 40px;
}
.footer .left p{
    text-align: left;
}
#pagetop{
    position: absolute;
    top: -20px;
    right: 7%;
}

/* ----------------------
    contact-area
---------------------- */
.top_ctcArea{
    padding: 72px 5%;
}
.top_ctcArea .flexbox{
    display: block;
}
.top_ctcArea .flexbox .box{
    max-width: initial;    
    width: 90%;
    margin: 0 auto;
}

/* ----------------------
    column2 sidebar
---------------------- */
.column2{
    display: block;
}
.column2 .sidebar{
    margin-top: 160px;
    width: 100%;
}
.column2 .sidebar ul.sticky{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
}
.column2 .sidebar ul .group{
    width: calc( 100% / 3 - 1em);
    margin: 0;
}
.single .sidebar div:not(:last-child){
    margin: 0;
}
.page-template-left-sidebar .sidebar{
    width: 100%;
    margin-bottom: 160px;
}
.page-template-left-sidebar .sidebar ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
}
.page-template-left-sidebar .sidebar ul li{
    width: calc( 100% / 2 - 16px);
    border-bottom: 1px dashed var(--linecolor);
}
.page-template-left-sidebar .sidebar p{
    line-height: 3;
    position: relative;
}
.page-template-left-sidebar .sidebar p::after{
    font: var(--fa-font-solid);
    content: "\f107";
    color: var(--linecolor);
    font-size: 1em;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.sidebar ul.sticky li a{
    width: 100%;
    letter-spacing: 0.1em;
    font-size: 1em;    
}
.page-template-left-sidebar .sidebar ul.sticky li:not(:last-child),
.page-template-left-sidebar .sidebar p{
    margin: 0;
}
.page-id-7 

/* ----------------------
    heading
---------------------- */
h2.topHead{
    line-height: 1.3;
    margin-bottom: 48px;    
}

.page:not(.home) h2{
    font-size: 1.8em;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* ----------------------
    page_head
---------------------- */
.page_head{
    height: 240px;
}
.page_head .head_txt{
    letter-spacing: 0.1em;
}

/* ----------------------
    moreBtn
---------------------- */
.moreBtn{
    margin-bottom: 0.8em;
}





}


@media screen and (max-width: 540px) {
	/* 540px以下に適用されるCSS（スマホ用） */

body{
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-size: 15px;
    color: var(--maincolor);
    letter-spacing: 0.05em;
}
.wrapper, .container{
    width: 90%;
    height: 100%;
    margin: 0 auto;
}
.pc-br{ display: none; }
.tab-br{ display: none; }
.sp-br{ display: block; }


/* ----------------------
    heder
---------------------- */
.header nav ul{
    height: auto;
}
.header nav ul li{
    padding: 8px 0;
    margin-bottom: 8px;
}

/* ----------------------
    footer
---------------------- */
.footer .wrapper{
    padding: 48px 0 32px 0;
}
.footer nav ul,
.footer ul.other{
    gap: 0;
}
.footer .left{
    flex-direction: column;
}
.footer .left .pc-br{
    display: block;
}
.footer .left p{
    text-align: center;
    margin-top: 1em;
}

/* ----------------------
    contact-area
---------------------- */
.top_ctcArea{
    padding: 72px 0%;
    margin: 160px 0 80px 0;
}
.top_ctcArea .flexbox .box a{
    height: 140px;    
    padding: 1.5em 0;    
}
a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
}

/* ----------------------
    heading
---------------------- */
h2.topHead{
    margin-bottom: 40px;    
}


/* ----------------------
    page_head
---------------------- */
.page_head{
    height: 160px;
    margin-bottom: 80px;
}
.page_head .head_txt{
    font-size: 2.2em;
}

/* ----------------------
    column2 sidebar
---------------------- */
.page-template-left-sidebar .sidebar ul{
    gap: 0;
}
.page-template-left-sidebar .sidebar ul li{
    width: 100%;
    padding: 0.4em;
}
.sidebar ul.sticky li a{
    font-size: 0.9em;
}

/* ----------------------
    moreBtn
---------------------- */
.arrow-extend{
    padding-left: 3em;
}
.arrow-extend::before{
    padding-left: 1em;
}



}