
/***********************
パンくずリスト
***********************/
.breadcrumbs{
    box-shadow: 0 0 10px 2px rgb(0 0 0/0.05);
}

.breadcrumb {
    padding: 1.5em 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 2.8em;
}

.breadcrumb a.home{
    color: var(--green);
    padding-left: 1.4em;
    position: relative;
}

.breadcrumb a.home::before{
    content: "";
    display: inline-block;
    background-image: url(../images/common/icon-home.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumb span{
    position: relative;
}

.breadcrumb span:not(:last-of-type)::after{
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 3px #b5b7c1;
    border-right: solid 3px #b5b7c1;
    position: absolute;
    right: -1.7em;
    top: 8px;
    transform: rotate(45deg);
}

@media screen and (max-width: 1194px){
    .breadcrumb {
        padding: 1em 0;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px){
    .breadcrumb {
        font-size: 14px;
    }
}


/***********************
ページヘッダー
***********************/
.header{
    background-color: #fff;
}

.page-heading{
    background-color: var(--light-green);
    background-image: url(../images/top/section-bottom.png);
    background-position: bottom;
    background-repeat: no-repeat;
    height: 300px;
    position: relative;
}

.webp .page-heading{
    background-image: url(../images/top/section-bottom.png.webp);
}

.page-heading__title{
    color: var(--green);
    font-size: 42px;
    letter-spacing: 0.15em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-heading__title span{
    color: #000;
}

@media screen and (max-width: 1599px){
    .page-heading{
        background-size: auto;
    }
}

@media screen and (max-width: 1194px){
    .page-heading{
        height: max(250px, 25.1vw);
    }

    .page-heading__title {
        font-size: max(24px, 3.5vw);
    }
}

@media screen and (max-width: 767px){
    .page-heading{
        background-size: 240%;
        height: max(150px, 32.5vw);
    }
}

/***********************
cv
***********************/
.cv{
    background-color: var(--brown);
    padding: 60px 0;
    position: relative;;
}

.cv__content{
    background-color: #fff;
    background-image: url(../images/page/cv-bg.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-radius: 20px;
    padding: 42px 60px 50px;
}

.webp .cv__content{
    background-image: url(../images/page/cv-bg.jpg.webp);
}

.cv__text{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

.cv__text-color{
    color: var(--green);
}

.cv__body{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 18px;
}

.cv__tel-num{
    display: inline-block;
    color: var(--brown);
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.025em;
    padding-left: 0.9em;
    line-height: 1;
    position: relative;
}

.cv__tel-num::before{
    content: "";
    display: inline-block;
    background-image: url(../images/common/icon-tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.75em;
    height: 0.75em;
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    left: 0;
}

.cv__tel-text{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.7em;
}

.cv__tel-text dt{
    background-color: var(--red);
    color: #fff;
    padding: 0.2em 1.3em;
}

.cv__tel-text dd{
    margin-left: 1em;
    letter-spacing: 0.07em;
}

.cv__mail{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    background-color: var(--green);
    border: 5px solid #badac0;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    width: 4.72em;
    height: 4.55em;
    position: relative;
}

.cv__mail::after{
    content: "";
    display: inline-block;
    background-image: url(../images/common/icon-cv-mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 2.1em;
    height: 1.8em;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.btn_flex{
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 30px 20px;
}


.line_img{
width: 70%;
}

.click-btn{
    display: block;
    border: 0;
    background-image: url(../images/common/line02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 5em;
    height: 5em;
    padding: 0px;
	background-color: unset;
	cursor: pointer;
}
.click-btn:hover{
	opacity: 0.7;
    transition: 0.3s;
}

.popup-wrapper {
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
z-index:99999;
}

.popup-inside{
  text-align: center;
  width: 100%;
  max-width: 300px;
  background: white;
  margin: 10% auto;
  padding: 20px;
  position: relative;
	pointer-events: none;
}


.close {
  position: absolute;
  top: 0;
  right: 5px;
  cursor: pointer;
}



@media screen and (max-width: 1299px){
    .cv__content {
        padding: 3.23vw 4.615vw 3.85vw;
    }

    .cv__text {
        font-size: 2.153vw;
    }

    .cv__tel-num {
        font-size: 6.153vw;
    }

    .cv__body {
        gap: 2.3vw;
        /* margin-top: 18px; */
    }
}

@media screen and (max-width: 1194px){
    .cv__tel-text {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 1023px){
    .cv__mail {
        border: 4px solid #badac0;
        font-size: 1.75vw;
    }
	
.click-btn {
    width: 4.6em;
    height: 4.6em;
}
}

@media screen and (max-width: 850px){
.click-btn {
    width: 4.2em;
    height: 4.2em;
}
}

@media screen and (max-width: 800px){
.click-btn {
    width: 4em;
    height: 4em;
}
}


@media screen and (max-width: 767px){
    .cv__body {
        display: block;
        margin-top: 16px;
    }

    .cv__tel-num {
        font-size: 8.5vw;
		letter-spacing:-0.02em;
    }

    .cv__text {
        font-size: max(16px, 2.3vw);
        text-align: left;
        text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
    }

    .cv__tel-text {
        font-size: max(12px, 2vw);
    }

    .cv__mail {
        font-size: max(15px, 2vw);
        margin-top: 16px;
        flex-direction: row-reverse;
        width: 5em;
        height: 5em;
    }
	
.btn_flex {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 30px 20px;
}
	
	
.click-btn {
margin-top: 16px;
  display: block;
  border: 0;
  background-image: url(../images/common/line02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.5em;
  height: 4.5em;
  padding: 0px;
}

    .cv__tel-text dt {
        font-size: 0.9em;
        padding: 0.1em 1.3em 0.2em;
    }
	

	
}

@media screen and (max-width: 599px){
    .cv__content {
        background-position: calc(100% + 50px) 100%;
        padding: 20px 5vw;
    }
}


@media screen and (max-width: 549px){
    .cv__content {
        background-position: calc(100% + 90px) 100%;
    }

    .cv__tel-text {
        display: block;
    }

    .cv__tel-text dt {
        width: fit-content;
    }

    .cv__tel-text dd {
        margin-left: 0;
        margin-top: 0.5em;
    }
}

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

}

/***********************
サイドバー
***********************/
.sidebar{
    flex-basis: 300px;
}

.sidebar > *+*{
    margin-top: 70px;
}

.side__cv-body {
    padding: 20px 10px 26px;
}


.side__cv-title{
    font-family: var(--mincho);
    font-size: 26px;
    font-weight: bold;
    line-height: calc(32/26);
    text-align: center;
    letter-spacing: 0.03em;
}

.side__cv-tel {
    margin-top: 5px;
}

.side__cv-tel-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--brown);
    font-size: 36px;
}

.side__cv-tel-num::before {
    content: "";
    display: inline-block;
    background-image: url(../images/common/icon-tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.8em;
    aspect-ratio: 1/1;
    position: relative;
    top: 0.1em;
}

.side__cv-tel-text {
    background-color: #fff;
    font-size: 12px;
    letter-spacing: 0.06em;
    width: fit-content;
    margin-inline: auto;
    padding: 0.1em 0.3em;
}

.side__cv-mail{
    margin-top: 20px;
    text-align: center;
}

.side__cv-mail a{
    display: inline-block;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-align: center;
    width: 100%;
    max-width: 260px;
    height: 50px;
    line-height: 50px;
    border-radius: calc(1px / 0);
    background: rgb(174,106,19);
    background: linear-gradient(90deg, rgba(174,106,19,1) 0%, rgba(106,36,4,1) 100%);
}

.side-column__title {
    font-size: 27px;
    font-weight: bold;
    color: var(--green);
    letter-spacing: 0.03em;
    text-align: center;
}

.side-column__area{
    margin-top: 16px;
    border: 1px solid var(--green);
    border-radius: 10px;
    /* height: 450px; */
    padding: 8px 0;
}

.side-column__wrap {
    height: 430px;
    overflow-y: scroll;
    padding: 5px 20px 22px;
    scrollbar-width: 13px;
    scrollbar-color: #f2f2e9 #fff;
}

.column-scroll::-webkit-scrollbar{
    width: 30px;
    height: 37px;
    background-color: #fff;
}

.column-scroll::-webkit-scrollbar{
    width: 20px;
}

.column-scroll::-webkit-scrollbar-thumb{
    background-color: var(--light-green);
    border-radius: calc(1px / 0);
}

.column-scroll::-webkit-scrollbar-thumb{
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    background-clip: padding-box;
}

.column-scroll::-webkit-scrollbar-track {
    margin-top: rem(10);
    margin-bottom: rem(10);
}

.side-column__item {
    padding: 17px 0;
    background-image: linear-gradient(to right, var(--green) 3px, transparent 2px);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
}
.side-column__itemflex{
	display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.side-column__itemflex p{
	font-size: 14px;
display: inline-block;
    height: 23px;
    line-height: 22px;
    border-radius: calc(1px / 0);
    background-color: var(--light-green);
    text-align: center;
    padding: 0 0.8em;
}
.side-column__time {

    font-size: 14px;
	margin-right:5px;
}

.side-column__item-title{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: calc(28/16);
    margin-top: 0.8em;
}

.side__office-title {
    background-color: var(--green);
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    text-align: center;
    height: 70px;
    line-height: 68px;
}

.side__office-items {
    border: 2px solid var(--light-green);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 30px 18px;
}

.side__office-item {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 1.5em;
    position: relative;
}

.side__office-item::before{
    content: "";
    display: block;
    background-image: url(../images/common/icon-pin.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.0625em;
    aspect-ratio: 17/22;
    position: absolute;
    top: 0.6lh;
    transform: translateY(-50%);
    left: 0;
}

.webp .side__office-item::before{
    background-image: url(../images/common/icon-pin.png.webp);
}

.side__office-item:nth-of-type(2) {
    margin-top: 60px;
    position: relative;
}

.side__office-item:nth-of-type(2)::after {
    content: "";
    display: block;
    background-image: url(../images/common/section-deco.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 123px;
    aspect-ratio: 123/24;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.webp .side__office-item:nth-of-type(2)::after {
    background-image: url(../images/common/section-deco.png.webp);
}

/***********************
その他
***********************/
.page-content{
    padding-top: 200px;
    padding-bottom: 200px;
    font-weight: 500;
    overflow: hidden;
}

@media screen and (max-width: 1299px){
    .page-content{
        padding-top: max(80px, 15.3vw);
        padding-bottom: max(80px, 15.3vw);
    }
}

.column__posts article > * + *{
	margin-top: 4em;
}


@media screen and (max-width: 767px){
.pc_line{
	display:none;
}
}

@media screen and (min-width: 768px){
.sp_line{
	display:none;
}
}

