@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
/*------@import------*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #111;
	--color-primary: #009900;
	--color-primary-shade: #006b00;
	--color-primary-tint: #4db84d;
	--color-secondary: linear-gradient(90deg, #009900 0%, #89FCA2 100%);
	--color-secondary-tint: linear-gradient(90deg, #02A4AE 0%, #80F7FF 100%);
	--color-table-border: #DDD;
	--body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
	/* 1.6-1.4rem (1920-375) */
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #444;
	--header-color-primary: #009900;
	--header-color-primary-shade: #006b00;
	--header-color-primary-tint: #4db84d;
	/*------▼フッター設定▼------*/
	--footer-background: #fff;
	--footer-color-font: #111;
	--footer-color-primary: #111;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Shippori Mincho", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
                color: #0D4091;
				font-family: var(--font-family02);
                font-size: min(calc(6.5rem + (1vw - 1.92rem) * 1.6181), 6.5rem);
                font-weight: 700;
                line-height: 1;
				margin-bottom: var(--rem12);
				position: relative;
            }
            .ttl--primary__ja {
                font-size: var(--rem30);
                font-weight: 700;
                line-height: 1;
            }
        }
    }
    h2 {
        font-size: var(--rem40);
    }
    p {
        line-height:2.8125;
    }
    .tbbr {
        display: none;
        @media screen and (max-width: 820px) {
            display: block;
        }
        @media screen and (max-width: 768px) {
            display: none;
        }


    }
    .heading_mod-01 {
        font-size: min(calc(2.5rem + (1vw - 1.92rem) * 0.6472), 2.5rem);
        font-weight: 700;
        letter-spacing: 0;
        margin-bottom: var(--rem40);
        padding: 0;
        border: none;
        &::before, &::after {
            display: none;
        }
    }
    .text_mod-01 {
        font-size: var(--rem40);
        font-weight: 700;
        line-height: 2;
        letter-spacing: 0;
        padding: var(--rem24) 0;
        /* @media screen and (max-width: 1130px) {
            font-size: var(--rem30);
        }
        */
        @media screen and (max-width: 768px) {
            font-size: var(--rem28);
        } 
    }
    .text_mod-02 {
        font-family: var(--font-family03);
        font-size: var(--rem30);
        font-weight: 700;
        line-height: 2 !important;
        letter-spacing: 0;
    }
    .text_mod-03 {
        font-size: var(--rem30);
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0;
        @media screen and (max-width: 768px) {
            font-size: var(--rem28);
        }
    }
    .text_mod-04 {
        font-size: min(calc(2.5rem + (1vw - 1.92rem) * 0.6472), 2.5rem);
        font-weight: 500;
        line-height: 1.7;
        letter-spacing: 0;
    }
    .text_mod-05 {
        font-size: min(calc(2.5rem + (1vw - 1.92rem) * 0.6472), 2.5rem);
        font-weight: 700;
        line-height: 1.7;
        letter-spacing: 0;
    }
    .row_mod-01 {
        display: flex;
        justify-content: center;
        gap: 4%;
        @media screen and (max-width: 590px) {
            flex-direction: column;
            gap: var(--rem24);
        }
        .col3 {
            width: calc(92% / 3);
            background: #FDFFDA;
            border-radius: var(--px50);
            padding: var(--rem30) var(--px24);
            text-align: center;
            @media screen and (max-width: 590px) {
                width: 100%;
            }
            img {
                aspect-ratio: 1 / 1;
                width: var(--rem72);
                height: auto;
                margin: var(--rem14) auto 0;
            }
        }
    }
    .box {
        border: 4px solid #AC8EFF;
        border-radius: var(--rem24);
        padding: var(--rem40);
        &:is(.box_mod-01) {
            display: flex;
            justify-content: center;
            width: 70%;
            max-width: 690px;
            margin-left: auto !important;
            margin-right: auto !important;
            @media screen and (max-width: 690px) {
                width: 100%;
            }
            & > ul {
                display: inline-block;
                li {
                    font-size: var(--rem18);
                }
            }
        }
    }
    .color-primary {
        color: var(--color-primary);
    }
    .color-white {
        color: #fff;
    }
    .color-yellow {
        color: #EFF316;
    }
	.color-gradation {
		background: linear-gradient(90deg, #009900 0%, #89FCA2 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
    .marker.green {
        background: linear-gradient(transparent 60%, var(--color-primary-tint) 60%);
    }
    .m-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .br_mod-01 {
        display: none;
        @media screen and (max-width: 1120px) {
            display: block;
        }
        @media screen and (max-width: 768px) {
            display: none;
        }
    }
}

/**/
.bg_wide { position: relative; }
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
.box_w2_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_w2_sp.rev { flex-direction: row-reverse; }
.box_w2_sp.vtop { align-items: flex-start; }
.box_w2_sp.vcen { align-items: center; }
.box_w2_sp.vbtm { align-items: flex-end; }
.box_pad { padding: 20px; box-sizing: border-box; }
.box_w2 .column2_50:not(.cen) { text-align: left; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.bg_fix::before { background-attachment: fixed !important; }
	.box_w2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_w2.rev { flex-direction: row-reverse; }
	.box_w2.vtop { align-items: flex-start; }
	.box_w2.vcen { align-items: center; }
	.box_w2.vbtm { align-items: flex-end; }
	.box_pad { padding: 30px; }
	.box_w2 .column3_33 { width: 32%; }
	.box_w2 .column2_50 { width: 48.5%; }
	.box_w2 .column2_60 { width: 57%; }
	.box_w2 .column2_70 { width: 67%; }
	.box_w2 .column2_80 { width: 77%; }
}
@media print, screen and (min-width:769px){ /* PCのみ */
	.box_pad { padding: 50px; }
}
/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
	max-width: 100%;
}
/**/
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}
.w600, .w800, .w900 {
	width: 600px;
	max-width: 100%;
	margin: auto;
}
.w800 { width: 800px; }
.w900 { width: 900px; }
.max-w {
	margin-left: auto !important;
	margin-right: auto !important;
    &.max-w--620 {
		max-width: 620px;
	}
    &.max-w--800 {
		max-width: 800px;
	}
	&.max-w--960 {
		max-width: 960px;
	}
	&.max-w--1000 {
		max-width: 1000px;
	}
}

/**/

.fw_contents {
    margin-top: 0;
    margin-bottom: 0;
}
#content:has(.fw_contents), body:not(.home) #content:has(.fw_contents).wide {
    padding: 0;
}

/* アンカーリンク 遷移後の表示位置調整 */
.anchorLink-view {
    padding-top: 120px;
    margin-top: -120px;
}

/*-----------------------------
column_01
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column01 {
	position: relative;
}
.column01_wrap {
	position: relative;
	max-width: 1600px;
	width: 94%;
    margin: 0 auto;
	z-index: 1;
}
.column01 .txtarea {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
    &:first-child {
        justify-content: flex-start;
        padding:  var(--px80) 0;
        @media screen and (max-width: 768px) {
            padding: var(--px80) var(--px40) 0;
            .txtstyle04 {
                margin-bottom: 0;
            }
        }
    }
}
.column01 .txtarea .txtinner {
    max-width: 763px;
}
.column01 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column01 .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
	
/*---------txtstyle-----------*/
	
.post .txtstyle02, .txtstyle02 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
}
.post .column01 .txtstyle02, .column01 .txtstyle02 {
	font-size: var(--rem20);
	margin: var(--rem20) 0;
}
.post .txtstyle04, .txtstyle04 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
	border: none;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle04:before, .txtstyle04:before {
	content: none;
}
.post .column01 .txtstyle04, .column01 .txtstyle04 {
	font-size: min(calc(4.6rem + (1vw - 1.92rem) * 1.4887), 4.6rem);
    font-weight: 700;
    letter-spacing: 0;
    @media print, screen and (max-width: 1023px) {
        font-size: var(--rem30);
    }
}
.post .column01 .txtstyle04:after, .column01 .txtstyle04:after {
    display: none;
    /* content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px80);
    height: 3px;
    background: #111;
    margin: var(--rem30) 0 0 0.5rem; */
}

/*-----------------------------
card
------------------------------*/
  .toptxtarea {
    max-width: 960px;
    width: 94%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .card01_wrap {
    position: relative;
    margin: var(--px60) 0 0;
  }
  .card01_inner {
    max-width: 1600px;
    width: 94%;
    margin: 0 auto;
  }
  .card01_list > li {
    position: relative;
    background: transparent;
  }
  .card01_list .imgarea {
    width: 100%;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    line-height: 0;
  }
  .card01_list .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card01_list .txtarea {
    padding: 20px 0 0 0;
    line-height: 1.6;
    text-align: left;
    background: transparent;
  }
    
  /*---------txtstyle02 -----------*/
    
  .post .txtstyle02, .txtstyle02 {
    font-family: var(--font-family02);
    font-size: var(--rem36);
    font-weight: 600;
    text-align: left;
    margin: var(--rem36) auto;
    background: transparent;
      color: #111;
      line-height: 1.4;
    padding: 0;
  }
  .post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
    content: none;
  }
  .post .card01_list .txtstyle02, .card01_list .txtstyle02 {
    font-size: var(--rem20);
    margin: 0 0 1rem;
  }

  /*---------coln02-----------*/
  
.post .col2_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col2_list > li {
    width: 45%;
	margin-bottom: 2%;
    @media screen and (max-width: 768px) {
        width: 49%;
    }
}
@media print, screen and (max-width: 414px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 0;
	}
}

  /*---------col03-----------*/
  
.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
    width: 32%;
	margin-bottom: 2%;
}
.post .col3_list::before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
}
.post .col3_list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col3_list > li {
		width: 49%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 414px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col4-----------*/
  
.post .col4_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col4_list > li {
    width: 23%;
	margin-bottom: 1.5%
}
.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}
.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 32%;
		margin-bottom: 2%;
	}
}
@media print, screen and (max-width: 768px) {
	.post .col4_list > li {
		width: 49%;
	}
	.post .col4_list::before, .post .col4_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 500px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

/*-----------------------------
.cardstyle
------------------------------*/

/*---------style05-------------*/

.cardstyle05 > li {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}
.card01_list.cardstyle05 > li .imgarea {
    position: relative;
    aspect-ratio: 369 / 276;
}
.card01_list.cardstyle05 > li .txtarea {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: #fff;
    padding: 20px 20px 30px 20px;
    max-width: 90%;
    width: 100%;
    margin: -30px auto;
    .txtstyle02 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        font-size: var(--rem28);
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: 0;
        @media screen and (max-width: 1600px) {
            font-size: var(--rem24);
        }
        @media screen and (max-width: 1023px) {
            font-size: var(--rem20);
        }
        @media screen and (max-width: 900px) {
            font-size: var(--rem18);
        }
        @media screen and (max-width: 768px) {
            font-size: var(--rem20);
        }
        @media screen and (max-width: 500px) {
            font-size: var(--rem24);
        }
    }
}

/*-----------------------------
以下アウトラインデザイン
------------------------------*/
.card01_wrap {
  position: relative;
  margin: var(--px60) 0 0;
}
.card01_inner {
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
}
.cardstyle01 > li {
  position: relative;
  background: transparent;
}
.card01_list .imgarea {
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
}
.card01_list .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card01_list .txtarea {
  padding: 20px 0 0 0;
  line-height: 1.6;
  text-align: left;
  background: transparent;
}

/*--------------------------------------------------
	linkbtn
--------------------------------------------------*/
.linkBtn, .post .linkBtn {
    max-width: 240px;
}

.linkBtn_mod-01, .post .linkBtn_mod-01, a.linkBtn_mod-01 {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: none;
	font-size: var(--rem30);
    color: #333;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    background: transparent;
	font-weight: 700;
    padding: min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) min(calc(65px + (1vw - 19.2px) * 1.6181), 65px) min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) 0;
    margin: var(--px12) auto 0;
	border: none;
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn_mod-01::after, .linkBtn_mod-01::after, a.linkBtn_mod-01::after {
    content: none;
}
.linkBtn_mod-01:hover, .post .linkBtn_mod-01:hover, a.linkBtn_mod-01:hover {
	color: #333;
	background: transparent;
}
.linkBtn_mod-01 .arw, .post .linkBtn_mod-01 .arw, a.linkBtn_mod-01 .arw {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	width: var(--px50);
	height: var(--px50);
    background: var(--color-secondary);
    border-radius: 50%;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: .4s;
	transition: .4s;
}
.linkBtn_mod-01 .arw::after, .post .linkBtn_mod-01 .arw::after, a.linkBtn_mod-01 .arw::after {
	content: '';
	position: absolute;
	width: min(calc(8px + (1vw - 19.2px) * 0.2589), 8px);
	height: min(calc(8px + (1vw - 19.2px) * 0.2589), 8px);
	border-style: solid;
	border-width: 1px 1px 0 0;
    border-color: #fff;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-70%, -50%) rotate(45deg);
	transform: translate(-70%, -50%) rotate(45deg);
	-webkit-transition: .4s;
	transition: .4s;
}
.linkBtn_mod-01:hover .arw, .post .linkBtn_mod-01:hover .arw, a.linkBtn_mod-01:hover .arw  {
	/* background: var(--color-primary); */
}
.linkBtn_mod-01:hover .arw::after, .post .linkBtn_mod-01:hover .arw::after, a.linkBtn_mod-01:hover .arw::after {
	border-color: #fff;
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
    #header .logo img {
        width: 100%;
        max-width: 260px;
        max-height: 60px;
    }
    #header a.head_btn {
        color: #000;
        background: var(--color-primary);
        padding-left: var(--rem28);
        padding-right: var(--rem28);
        &:hover {
            background-color: var(--color-primary-tint);
        }
    }
    #header a.head_btn.tel_btn {
        color: var(--color-primary);
        background: #fff;
        &:hover {
            color: #fff;
            background: var(--color-primary-tint);
        }
        .tel_btn__copy {
            font-size: var(--rem12);
            font-weight: 700;
            line-height: 1.4;
        }
    }
    #header a.head_btn.tel_btn::before {
        display: none;
    }
    #header a.head_btn .tel_btn__num::before {
        content: '\f095';
        position: relative;
        top: 2px;
        display: block;
        font-family: 'FontAwesome';
        font-size: .75em;
        font-weight: 400;
        line-height: 1;
        margin-bottom: .1em;
    }
    #header a.head_btn .tel_btn__num {
        display: flex;
        align-items: center;
        column-gap: min(calc(0.8rem + (1vw - 1.92rem) * 0.1294), .8rem);
        font-size: var(--rem24);
        font-weight: 700;
        margin-bottom: 3px;
    }
    #header a.head_btn.mail_btn {
        color: #fff;
        font-size: var(--rem16);
        flex-direction: row;
        align-items: center;
        padding-left: var(--rem36);
        padding-right: var(--rem36);
    }
    #header a.head_btn.mail_btn::before {
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
    #header a.head_btn.mail_btn span {
        font-size: var(--rem14);
    }
    nav#mainNav ul li:has(> .sub-menu) {
        &:hover {
            & > a {
                background: var(--color-primary) !important;
            }
            a b {
                color: #fff !important;
            }
        }
    }
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-weight: 700;
    }
    nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
        color: var(--header-color-font);
    }
    nav#mainNav ul li a:hover {
        background: var(--color-primary);
        b {
            color: #fff;
        }
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
        color: #fff;
    }
    nav#mainNav ul li.current-menu-item a {
        background: transparent;
        &:hover {
            background: var(--color-primary);
        }
    }
    body:not(.home) {
        nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
            color: var(--header-color-primary);
        }
        nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
            color: #fff;
        }
    }
	nav#mainNav ul li:hover ul.sub-menu {
	background: #fff;
    }
}

/*------ヘッダー　レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 1710px) {
	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: 1.6rem;
	}

	#header .head_btn.mail_btn {
		font-size: 1.6rem;
	}

	#header a.head_btn {
		padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 15px;
	}

	nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 15px;
	}
}

@media screen and (max-width: 1400px) {
	nav#mainNav ul, #header .header__nav-contact {
		flex-shrink: 0;
	}

	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: 1.4rem;
	}

	#header .head_btn.mail_btn {
		font-size: 1.4rem;
        padding-left: 10px !important;
        padding-right: 10px !important;
	}

	#header a.head_btn {
		padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 10px;
	}

	#header a.head_btn.sns_btn {
		padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 10px;
	}

	nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
	}
}

@media print, screen and (max-width: 1240px) {
	#header a.headBtn span {
		display: none;
	}

	#header a.headBtn::before {
		margin-right: 0;
	}
}

@media print, screen and (max-width: 1023px) {
	#header-upper .header__socialicon, #header .sticky-logo, #header ul.header__contact {
		display: none;
	}

	#header h1, #header .description, #header-upper h1, #header-upper .description {
		display: block;
		float: none;
		text-align: center;
		padding: 20px 0 10px;
	}
}

@media screen and (max-width: 1023px) {
	nav#mainNav ul li ul.sub-menu li a, nav#mainNav ul li ul.sub-menu li a:hover, nav#mainNav ul li ul.sub-menu li.current-menu-item a, nav#mainNav ul li.current-menu-item ul.sub-menu li a {
		color: #4d4d4d;
		font-size: 1.4rem;
	}
    nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: var(--rem16);
	}
	/* nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
	} */
	nav#mainNav ul li a, nav#mainNav ul li.current-menu-item li a {
		padding: 15px 10px;
	}
	nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a {
		padding-left: 43px;
	}
}

@media screen and (max-width: 1023px) {
	#thumbImg, header#h1Header {
		width: 100%;
		aspect-ratio: 1920 / 500;
	}
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
	padding: var(--px80) 0 var(--px40);
    .footer__logo img {
        width: 100%;
        max-width: 260px;
        max-height: 60px;
    }
}
/*--------------------------------------------
FOOTER01
--------------------------------------------*/

/* ----全体LAYOUT調整----*/

.footer__inner {
	width: 94%;
	margin: 0 auto;
	padding-bottom: var(--px40);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 5%;
    border-bottom: solid 1px;
}
@media print, screen and (max-width: 768px) {
	.footer__inner {
		flex-direction: column;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

/* ----------------------------
right
----------------------------*/

#footer .footnav ul {
    justify-content: flex-end;
}
@media print, screen and (max-width: 768px) {
	#footer .footnav ul {
		justify-content: center;
		margin-top: var(--px40);
	}
}

/*footer navi ico*/

#footer .footnav ul > li {
	position: relative;
	line-height: 1.4;
	padding: 0 min(calc(16px + (1vw - 19.2px) * 0.4531), 16px) 0 25px; /* 16-9px、15-8px (1920-375) */
	margin-bottom: 10px;
}
#footer .footnav ul > li::before {
    left: 0;
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 0;
    background: transparent;
}

#footer .footnav ul > li::after {
	content: none;
}

/* ----------------------------
left
----------------------------*/

#footer .footer__logo:not(:last-child) {
    margin: 0;
    text-align: left;
}
.leftarea .logoare {
    display: flex;
    flex-direction: column;
    gap: var(--px14);
    line-height: 1;
}
.footer__catchphrase {
    line-height: 1.2;
	text-align: left;
}
@media print, screen and (max-width: 768px) {
	#footer .footer__logo:not(:last-child) {
		text-align: center;
	}
	.footer__catchphrase {
		text-align: center;
	}
}

/* ----------------------------
SNSアイコン
----------------------------*/

/*LAYOUT調整*/

#footer .socialicon ul, .socialicon ul {
    -webkit-box-pack: start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
#footer .socialicon ul li, .socialicon ul li {
    padding: 0;
}
@media print, screen and (max-width: 768px) {
	#footer .socialicon ul, .socialicon ul {
		justify-content: center;
	}
}

/*アイコンサイズ調整*/

#footer .socialicon .fa-facebook:before, #footer .socialicon .fa-twitter:before, #footer .socialicon .fa-youtube:before, #footer .socialicon .fa-instagram:before, #footer .socialicon .fa-x-twitter:before, #footer .socialicon .fa-line:before, #footer .socialicon .fa-tiktok:before {
    font-size: var(--rem24);
}
#copyright {
    background: transparent;
    margin-top: var(--rem60);
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
	.page-cta {
		display: none !important;
	}
}
/*-----------------------------
cta02_col2
------------------------------*/
.cta02 {
	position: relative;
	padding: var(--px80) 0 var(--rem120);
	z-index: 0;
}
.cta02:before {
    content: "";
    background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.cta02 .cta02_wrap {
	max-width: 1400px;
    width: 90%;
    margin: 0 auto;
	padding: 0;
	background: transparent;
	position: relative;
	z-index: 1;
}
.cta02 .ctabtnlist {
    justify-content: space-between;
    max-width: 1400px;
    margin: var(--px50) auto 0 auto;
}
.cta02 .ctabtnlist li {
    width: 50%;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
}
.cta02 .item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30);
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;
}
.cta02 .item:hover{
	opacity: 0.8;
}
	
@media print, screen and (max-width: 768px) {
	.cta02 .ctabtnlist li, .cta02 .ctabtnlist .item {
		width: 100%;
	}
	.cta02 .ctabtnlist li + li {
		margin-top: 1rem;
	}
}
	
/*ボタン共通パーツ*/

.cta02 .infotxt {
	font-size: var(--rem20);
    font-weight: 700;
    .note b {
        font-size: var(--rem20);
        font-weight: 700;
    }
}
.cta02 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 1.4;
	font-size: var(--rem20);
}

	
/*電話ボタン*/
	
.cta02 .telnum {
	font-size: var(--rem48);
    font-weight: 700;
	margin-bottom: 1rem;
}	
.cta02 a.telbtn {
    background: var(--color-secondary);
	color: #fff;
}
	
/*メールボタン*/
	
.cta02 .mailarea.item {
    background: #fff;
    .btnttl, .infotxt {
        background: linear-gradient(90deg, #009900 0%, #89FCA2 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
    }
}
.cta02 a.mailbtn {
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: row;
	justify-content: center;
    max-width: 400px;
    width: 90%;
    border-radius: 50vh;
    padding: 20px;
    margin: 0 0 1rem 0;
}
.cta02 a.mailbtn {
    font-size: var(--rem20);
    font-weight: 700;
    background: var(--color-secondary);
	color: #fff;
}
	
/*ボタンアイコン*/
	
.cta02 a.mailbtn::before, .cta02 .telnum::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
.cta02 .telnum::before {
	content: '\f3cd';
}
.cta02 a.mailbtn::before {
	content: '\f0e0';
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
}
/* CONTENT01 */
#top_about {
    padding: 13% 0 32%;
    &.bg_wide::before {
        background: url(/wp-content/uploads/top_abou_bg_01.png.webp) no-repeat center / cover;
    }
    @media screen and (max-width: 768px) {
        &.bg_wide::before {
            filter: opacity(60%);
        }
    }
}
.top_bg_01 {
    padding: var(--rem120) 0;
    &.bg_wide::before {
        background: url(/wp-content/uploads/top_bg_01.png.webp) no-repeat center / cover;
    }
}
/* CONTENT02 */
#top_service {
    &.bg_wide {
        &::before {
            background: #E8FEFF;
        }
    }
    padding: var(--rem120) 0 var(--rem80);
    .card01_wrap {
        margin-top: var(--rem48);
        .card01_inner {
            width: 100%;
        }
        .col3_list {
            justify-content: center;
            gap: var(--rem20);
            &::before, &::after {
                display: none;
            }
            & > li {
                display: flex;
                flex-direction: column;
                width: 38%;
                @media print, screen and (max-width: 1240px) {
                    width: 80%;
                }
                @media print, screen and (max-width: 414px) {
                    width: 100%;
                }
                &:nth-child(even) {
                    .txtarea {
                        background: #E8FFF5;
                        border: 2px solid #1196CF;
                        .sub {
                            color: #1196CF;
                        }
                        .linkBtn_mod-01 {
                            .arw {
                                background: var(--color-secondary-tint);
                            }
                        }
                    }
                }
                .txtarea {
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    height: 100%;
                    background: #F2FFE8;
                    border: 2px solid #11CF2F;
                    padding: var(--rem36) var(--rem30) var(--rem28) var(--px30);
                    transition: all .3s;
                    &:hover {
                        opacity: .6;
                    }
                    .sub {
                        display: flex;
                        align-items: center;
                        flex-grow: 1;
                        color: var(--color-primary);
                        font-size: var(--rem18);
                        font-weight: 700;
                        line-height: 1.4;
                        letter-spacing: 0;
                    }
                    .linkBtn_mod-01 {
                        @media screen and (max-width: 1580px) {
                            font-size: var(--rem24);
                        }
                    }
                }
            }
        }
    }
}
/* CONTENT03 */
#top_links {
    padding-bottom: min(calc(20rem + (1vw - 1.92rem) * 6.4725), 20rem);
    .card01_wrap {
        margin-top: var(--rem120);
        .col3_list {
            & > li {
                display: flex;
                flex-direction: column;
                &:nth-child(even) {
                    .txtarea {
                        background: #E8FFF5;
                        border: 2px solid #1196CF;
                        .sub {
                            color: #1196CF;
                        }
                        .linkBtn_mod-01 {
                            .arw {
                                background: var(--color-secondary-tint);
                            }
                        }
                    }
                }
                .txtarea {
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    height: 100%;
                    background: #F2FFE8;
                    border: 2px solid #11CF2F;
                    padding: var(--rem36) var(--rem30) var(--rem28) var(--px30);
                    transition: all .3s;
                    &:hover {
                        opacity: .6;
                    }
                    .sub {
                        display: flex;
                        align-items: center;
                        flex-grow: 1;
                        color: var(--color-primary);
                        font-size: var(--rem18);
                        font-weight: 700;
                        line-height: 1.4;
                        letter-spacing: 0;
                    }
                    .linkBtn_mod-01 {
                        @media screen and (max-width: 1580px) {
                            font-size: var(--rem24);
                        }
                    }
                }
            }
        }
        .col2_list {
            & > li {
                &:first-child {
                    background: url(/wp-content/uploads/top_links_01.png.webp) no-repeat center / cover;
                }
                &:last-child {
                    background: url(/wp-content/uploads/top_links_02.png.webp) no-repeat center / cover;
                }
            }
            .txtarea {
                display: block;
                padding: var(--rem20);
                transition: all .3s;
                &:hover {
                    opacity: .6;
                }
                & > p {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: var(--rem40);
                    font-weight: 700;
                    line-height: 1.4;
                    letter-spacing: .1em;
                    width: 100%;
                    height: 100%;
                    background: rgba(252, 255, 255, .6);
                    margin-bottom: 0;
                    padding: min(calc(18rem + (1vw - 1.92rem) * 3.8835), 18rem) var(--rem80);
                }
            }
        }
    }
}
/* POST */
.top_news {
	max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    &.bg_wide::before {
        background: #F5F5F5;
    }
}
.postlist {
    .post_text {
        color: #CCC;
        padding: 26px 0;
    }
    li {
        border-bottom: 1px solid #ccc;
    }
}
.postlist .ttls, .postlist .date {
    color: var(--color-font);
    font-size: 100%;
}
.post .time, .postlist .time, .post2b .time, .post4b .time {
    background: var(--color-primary);

}
.post .time, .postlist .time, .post2b .time, .post4b .time {
	line-height: 1.2 !important;
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #thumbImg::before, header#h1Header::before {
        display: none;
    }
    h1.title, .post h1, header#h1Header h1.title {
        font-size: var(--rem40);
        font-family: var(--font-family01);
        font-weight: 700;
    }
    &.post, .post {
        p {
            line-height: 1.5625;
        }
        ul {
            li {
                font-size: var(--rem16);
            }
        }
		/* table {
            border-collapse: separate;
            border-spacing: 0 2px;
            border: none;
        } */
        table th, table td {
            font-size: var(--rem16);
            padding: min(calc(3.2rem + (1vw - 1.92rem) * 0.7120), 3.2rem) var(--rem24);
            line-height: 1.7;
        }
        table th {
            color: #fff;
            font-weight: 700;
            background: var(--color-primary);
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
    }
}

/*================================================
				　採用情報
================================================*/

.post .lead {
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem); /* 3.2-2.4rem (1920-375) */
	font-weight: 500;
	font-style: italic;
}

.post .lead_en {
	font-size: var(--rem28);
	color: var(--color-primary-shade);
	letter-spacing: .3em;
}
.message {
    p {
        font-size: var(--rem20);
        line-height: 2.5 !important;
        letter-spacing: .2em;
        @media screen and (max-width: 768px) {
            letter-spacing: .1em;
        }
    }
}

/*--幅フル100%背景色--------------------------------------------*/

.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px); 
	margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
	background: #fafafa;
}
.post .widecolor > h2:first-child {
	margin-top: 0 !important;
}

/*--スタイルリストエリア--------------------------------------------*/

ul.box_style01 > li {
	position: relative;
	gap: 40px;
	width: 100%;
	background: #fff;
	padding: min(calc(40px + (1vw - 19.2px) * 0.6472), 40px) min(calc(35px + (1vw - 19.2px) * 0.6472), 35px);
	border-radius: 20px;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	margin-bottom: 30px;
	text-align: left;
}
.post ul.box_style01 .box_style_ttl {
	width: 100%;
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 400;
	padding: 0.6rem 0 0.6rem 2rem;
	margin: 0 0 min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/*15-10px (1920-375) */
	border-bottom: none;
	border-left: 3px solid var(--color-primary-shade);
	text-align: left;
	font-style: italic;
	line-height: 1.4;
}
@media screen and (min-width: 769px) {
	ul.box_style01 > li {
		display: flex;
	}
}

/*--ボタン別アイコン--------------------------------------------*/

a.external.ico_phone::before {
	content: '\f095';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_mail::before {
	content: '\f0e0';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_phone::after, a.external.ico_mail::after {
	content: none;
}
	
/*---table_style04-------------------------------------*/

.post table.table_style04 th {
	background-color: transparent !important;
}
.post table.table_style04, .post table.table_style04 th, .post table.table_style04 td{
	border: none;
}
table.table_style04 tr:first-child {
	border-top: 1px solid #ababab;
}
table.table_style04 tr:last-child {
	border-bottom: 1px solid #ababab;
}
table.table_style04 tr {
	border-top: 1px dashed #ababab;
	letter-spacing: 1px;
}
table.table_style04 th, table.table_style04 td {
	padding: 50px 30px;
}
table.table_style04 th {
	position: relative;
	z-index: 0;
}
table.table_style04 th:before {
	position: absolute;
	content: "";
	background: var(--color-primary);
	top: 7px;
	left: 0;
	bottom: 7px;
	width: 100%;
	height: auto;
	z-index: -1;
}
table.table_style04 td ul li {
	padding-left: 1em;
	position: relative;
	line-height: 2;
}
table.table_style04 td ul li:before {
	position: absolute;
	content: "・";
	top: 0;
	left: 0;
}
@media print, screen and (max-width: 768px) {
	table.table_style04 th, table.table_style04 td {
		padding: 35px 10px;
		font-size: 1.4rem;
		vertical-align: middle;
	}
	table.table_style04 th {
		width: 32%;
	}
	table.table_style04 td {
		width: 68%;
	}
}

/*--contact_area-------------------------------------*/

.contact_area {
    padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px);/*80px-40px (1920-375)x*/
    text-align: center;
    background: #e6f5e6;
    margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
    p {
        font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
        text-align: center;
    }
    .linkBtn {
        max-width: 570px;
        border-radius: 0;
        a {
            font-size: min(calc(2.5rem + (1vw - 1.92rem) * 0.6472), 2.5rem);
            font-weight: 700;
            letter-spacing: .1em;
        }
    }
}
.post .contact_ttl {
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 600;
	text-align: center;
	letter-spacing: .2rem;
	padding: 0;
	margin: min(calc(120px + (1vw - 19.2px) * 3.5599), 120px) auto min(calc(50px + (1vw - 19.2px) * 0.9709), 50px); /* 120-65px auto 50-35px (1920-375) */
}
.post .contact_ttl::before {
	content: none;
	position: relative;
	width: auto;
	height: auto;
	top: auto;
	left: auto;
}
.post .contact_ttl::after {
	content: '';
	position: relative;
	visibility: visible;
	display: block;
	width: 2.2em;
	height: 3px;
	background: var(--color-primary);
	margin: 0.6em auto 0;
}
.contact_read {
    margin: 0 0 min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);/*30px-15px (1920-375)*/
    text-align: center;
}
.button_wrap,
.post .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.button_wrap > *,
.post .button_wrap > * {
  margin: 10px !important;
}
.contact_area .linkBtn, .contact_area .post .linkBtn {
    padding: 0;
}
.contact_area .linkBtn a {
    color: #fff;
    padding: 0.8em 1.2em;
    display: block;
}

/*================================================
					事業内容
================================================*/
/*-------------------------------------------
 teleco_v1
------------------------------------------- */
.teleco_v1 + .teleco_v1 {
    @media screen and (max-width: 768px) {
        margin-top: var(--rem80);
    }
}
.teleco_v1 h3 {
	width: 100%;
    text-align: left;
}
.teleco_v1 .w50.image_box {
    aspect-ratio: 620 / 387;
	position: relative;
	overflow: hidden;
}
.teleco_v1 .w50.image_box::before {
	content: '';
	display: block;
}
.teleco_v1 .w50.image_box img {
	position: absolute;
	width: 102%;
	height: auto;
	max-width: none;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.teleco_v1 .w50.text_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #ffffff;
	padding: var(--rem80) var(--px24)
}
@media print, screen and (min-width: 769px) {
	.teleco_v1 .w50.image_box::before {
		padding-top: calc(550px + (1vw - 19.2px) * 17.3762);
	}
	.teleco_v1 .w50.image_box img {
		width: auto;
		height: 116%;
	}
}
.flexinnerBtn {
	align-self: normal;
}
@media print, screen and (max-width: 768px) {
	.teleco_v1 .w50.image_box{
		margin-bottom:0;
	}
	.teleco_v1 .w50.image_box::before {
		padding-top: calc(350px + (1vw - 7.68px) * 27.9898);
	}
	.teleco_v1 .w50.text_box {
		padding: 20px;
		margin-bottom:0;
	}
}

/*================================================
					お問い合わせ
================================================*/
body:not(.home) {
	.wpcf7 {
		.wpcf7-form {
			table {
				th {
					width: 30%;
				}
			}
			.subimitarea {
				.linkBtn {
					margin-left: auto;
					margin-right: auto;
					padding: 0;
				}
			}
            .must {
                background: #DC143C;
            }
		}
	}
}