@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=Noto+Serif+JP:wght@200..900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #252524;
	--color-primary: #DDBB63;
	--color-primary-shade: #9b8345;
	--color-primary-tint: #e7cf92;
	--color-secondary: #DDBB63;
	--color-secondary-tint: #e7cf92;
	--color-table-border: #CCC;
	--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: linear-gradient(180deg, #DDBB63 0%, #FFE8AD 100%);
	--header-color-font: #444;
	--header-color-primary: #DDBB63;
	--header-color-primary-shade: #9b8345;
	--header-color-primary-tint: #e7cf92;
	/*------▼フッター設定▼------*/
	--footer-background: linear-gradient(180deg, #DDBB63 0%, #FFE8AD 100%);
	--footer-color-font: #252524;
	--footer-color-primary: #252524;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Noto Serif JP", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &.ttl--primary {
            font-family: var(--font-family03);
            font-size: min(calc(5.4rem + (1vw - 1.92rem) * 1.6828), 5.4rem);
            font-weight: 500;
            line-height: 1.4;
            letter-spacing: .06em;
            position: relative;
            &::after {
				display: block;
                content: "";
                width: calc(80 / 54 * 1em);
                height: 1px;
                background: var(--color-font);
                margin-top: var(--rem20);
            }
            &:is(.txt_l) {
                text-align: left;
                &::after {
                    margin: var(--rem20) auto 0 0;
                }
            }
        }
    }
    p {
        font-size: var(--rem14);
        line-height:2;
    }
    .color-white {
        color: #fff;
    }
    .color-yellow {
        color: #EFF316;
    }
	.color-gradation {
		background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
    .m-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/**/
.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;
	margin-right: auto;
	&.max-w--960 {
		max-width: 960px;
		
	}
	&.max-w--1000 {
		max-width: 1000px;
	}
}

/**/
.post .linkBtn {
	border-radius: 0;
	/* background: var(--color-primary); */
}

.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_05
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column05 {
	position: relative;
	margin: 0;
}
.column05_wrap {
	position: relative;
    width: 100%;
    margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	z-index: 20;
}
.column05_wrap + .column05_wrap {
	margin-top: calc(100px + 70px);
}
.column05 .imgarea {
	position: relative;
	aspect-ratio: 1100 / 600;
	overflow: hidden;
	width: 60%;
    @media screen and (max-width: 1023px) {
        z-index: 11;
    }
}
.column05 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column05 .txtarea {
	position: relative;
	width: 50%;
	display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--px80) var(--px40);
	margin: 0 auto -70px -10%;
	z-index: 10;
    @media screen and (max-width: 1023px) {
        padding: min(calc(14rem + (1vw - 1.92rem) * 4.5307), 14rem) var(--px40) var(--px80);
    }
}
.column05 .txtarea .txtinner {
    width: 100%;
    max-width: 720px;
}
@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column05_wrap + .column05_wrap {
		margin-top: calc(100px + 70px);
	}
	.column05_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.column05_wrap.rev .txtarea {
		margin: 0 -5% -70px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.column05_wrap + .column05_wrap {
		margin-top: calc(100px + (1vw - 10.23px) * 7.7160);
	}
	.column05_wrap.rev {
		flex-direction: row;
	}
	.column05 .imgarea, .column05 .txtarea {
		width: 94%;
	}
	.column05 .txtarea {
		margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
	}
}

/*-----------------------------
column_01
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column01 {
	position: relative;
	margin: 0;
    & + & {
        margin-top: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
    }
}
.column01_wrap {
	position: relative;
	z-index: 1;
}
.column01 .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}
.column01 .txtarea .txtinner {
    width: 100%;
    max-width: 540px;
}
.column01 .imgarea {
    aspect-ratio: 960 / 600;
    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: var(--rem36);
}
.post .column01 .txtstyle04:after, .column01 .txtstyle04:after {
    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(--px80) 0 0;
    @media screen and (max-width: 768px) {
        margin: var(--px80) 0;
    }
  }
  .card01_inner {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
  }
  .card01_list > li {
    position: relative;
    background: transparent;
  }
  .card01_list .imgarea {
    width: 100%;
    position: relative;
    aspect-ratio: 500 / 430;
    overflow: hidden;
    line-height: 0;
  }
  .card01_list .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card01_list .txtarea {
    padding: 24px 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-family: var(--font-family03);
    font-size: var(--rem24);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .1em;
    text-align: center;
    margin: 0 0 1rem;
    @media screen and (max-width: 1240px) {
        font-size: var(--rem20);
    }
    @media screen and (max-width: 768px) {
        font-size: var(--rem28);
    }
  }
	
/*---------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 .column05 .txtstyle02, .column05 .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 .column05 .txtstyle04, .column05 .txtstyle04 {
	font-size: var(--rem36);
}
.post .column05 .txtstyle04:after, .column05 .txtstyle04:after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px80);
    height: 3px;
    background: #111;
    margin: var(--rem30) 0 0 0.5rem;
}

/*--カラムリスト--------------------------------------------*/

/*---------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;
    @media print, screen and (max-width: 1080px) {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    @media print, screen and (max-width: 768px) {
        width: 100%;
    }
}
.post .col3_list > li {
    width: 31%;
	margin-bottom: 2%;
    @media screen and (max-width: 768px) {
        margin-bottom: 10%;
    }
}
.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: 1080px) {
	.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;
	}
}

/*-----------------------------
button
------------------------------*/
.linkBtn, .post .linkBtn {
    max-width: 240px;
    border: 1px solid var(--color-primary);
    &:hover {
        color: var(--color-primary-shade);
        background: #fff;
        border: 1px solid var(--color-primary-shade);
        &::after {
            border-color: var(--color-primary-shade);
        }
    }
    &:is(.inkBtn--large) {
        max-width: 329px;
    }
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
        position: fixed;
    }
    #header .inner {
        position: absolute !important;
        top: 0;
        transform: unset;
    }
    #header .logo img {
        width: 100%;
        max-width: 279px;
        max-height: 80px;
        @media screen and (max-width: 1400px) {
            width: 90%;
        }
        @media screen and (max-width: 1023px) {
            width: 100%;
        }
    }
    /* #header .header__nav-contact {
        width: 80%;
    } */
    /* nav#mainNav {
        width: 100%;
    } */
    nav#mainNav ul {
        width: 100%;
        justify-content: flex-end;
    }
    nav#mainNav ul li {
        flex-shrink: 0;
    }
    nav#mainNav ul li a {
        font-size: var(--rem18);
        font-weight: 700;
        letter-spacing: .1em;
    }
    nav#mainNav ul li a:hover b {
        color: var(--color-primary-shade);
    }
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-weight: 700;
    }
    nav#mainNav ul li a:active, nav#mainNav ul li.current-menu-ancestor a, nav#mainNav ul li.current-menu-item a, nav#mainNav ul li.current-menu-parent a {
        background: transparent;
        &:hover {
            background: #fff;
            b {
                color: var(--color-primary-shade);
            }
        }
    }
    nav#mainNav ul li.current-menu-item a b {
        color: var(--header-color-font);
    }
    #header a.head_btn.tel_btn {
        color: var(--header-color-font);
        font-size: var(--rem24);
        font-weight: 700;
        background: transparent;
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) var(--rem30);
        position: relative;
        &::before {
            display: block;
            content: "";
            width: 1px;
            height: calc(100% - 30px);
            background: var(--header-color-font);
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        &::after {
            display: block;
            content: "";
            width: 1px;
            height: calc(100% - 30px);
            background: var(--header-color-font);
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }
        &:hover {
            color: var(--color-primary-shade);
            background: #fff;
        }
    }
    #header a.head_btn.tel_btn > span {
        display: flex;
        align-items: center;
        gap: 8px;
        &:is(.note) {
            flex-direction: column;
            gap: 0;
        }
    }
    #header a.head_btn.tel_btn > span:not(.note)::before {
        display: block;
        content: '\f095';
        font-family: 'FontAwesome';
        font-size: var(--rem18);
        font-weight: 400;
        line-height: 1;
        margin-bottom: .1em;
    }
    #header a.head_btn.sns_btn {
        background: transparent;
        color: var(--header-color-font);
        font-size: var(--rem16);
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: .1em;
        position: relative;
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) var(--px40);
        &::before {
            content: '\f3c0';
        }
        &::after {
            display: block;
            content: "";
            width: 1px;
            height: calc(100% - 30px);
            background: var(--header-color-font);
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }
        &:hover {
            color: var(--color-primary-shade);
            background: #fff;
        }
    }
    #header a.head_btn.mail_btn {
        background: transparent;
        color: var(--header-color-font);
        font-size: var(--rem16);
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: .1em;
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) var(--px40);
        &:hover {
            color: var(--color-primary-shade);
            background: #fff;
        }
    }
    .sticky-header #header-layout {
        height: 100px;
        background: linear-gradient(180deg, #DDBB63 0%, #FFE8AD 100%);
    }
}
/*------ヘッダー　レスポンシブ
--------------------------------------------*/
@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, #header a.head_btn.sns_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 a.head_btn.mail_btn, #header a.head_btn.sns_btn {
		font-size: 1.4rem;
	}

	#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;
	}
}

.spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
    background: var(--header-color-font);
}
.spmenu #menu p {
    color: var(--header-color-font);
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
	padding: var(--rem48) 0 var(--rem60);
    .footer__logo img {
        width: 100%;
        max-width: 318px;
        max-height: 100px;
    }
    .footer__logo:not(:last-child) {
        margin-bottom: 24px;
    }
    ul li a {
        font-weight: 500;
    }
}
#copyright {
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
	.page-cta {
		display: none !important;
	}
}
.page-id-21 {
    .page-cta {
        display: none !important;
    }
}

/*-----------------------------
cta01_col2
------------------------------*/
.cta01 {
    padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) 0;
	position: relative;
	z-index: 0;
    &.bg_wide::before {
        background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
    }
    .ttl {
        &.ttl--primary {
            font-family: var(--font-family03);
            font-size: min(calc(5.4rem + (1vw - 1.92rem) * 1.6828), 5.4rem);
            font-weight: 500;
            line-height: 1.4;
            letter-spacing: .06em;
            text-align: center;
            position: relative;
            &::after {
				display: block;
                content: "";
                width: calc(80 / 54 * 1em);
                height: 1px;
                background: var(--color-font);
                margin-top: var(--rem20);
                margin-left: auto;
                margin-right: auto;
            }
            &:is(.txt_l) {
                text-align: left;
                &::after {
                    margin: var(--rem20) auto 0 0;
                }
            }
        }
    }
}
.cta01 .cta01_wrap {
	max-width: 1600px;
    width: 100%;
    margin: 0 auto;
	background: #fff;
    padding: var(--px80);
}
.cta01 .ctabtnlist {
    justify-content: center;
    gap: var(--px20);
    max-width: 1240px;
    margin: var(--px50) auto 0 auto;
    @media screen and (max-width: 1023px) {
        display: block;
    }
}
.cta01 .ctabtnlist li {
    width: 50%;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
}
.cta01 a.item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30) var(--px16);
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;
}
.cta01 a.item:hover{
	opacity: 0.8;
}
@media print, screen and (max-width: 1023px) {
	.cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
		width: 100%;
	}
	.cta01 .ctabtnlist li + li {
		margin-top: 1rem;
	}
}
	
/*ボタン共通パーツ*/
	
.cta01 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
}
.cta01 .infotxt {
	font-size: var(--rem18);	
	font-weight: 700;
    .note {
        font-size: var(--rem16);
        font-weight: 700;
    }
}
	
/*電話ボタン*/
.cta01 .telnum {
	font-size: var(--rem36);
    font-weight: 500;
	margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
	font-size: var(--rem20);
}
.cta01 a.telbtn {
    background: #333;
	color: #FCFCFC;
}
	
/*メールボタン*/
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	color: #333;
}

/*LINEボタン*/
.cta01 a.linebtn {
    background: #06C755;
    color: #fff;
}
.cta01 .linebtn .btnttl {
    font-size: var(--rem24);
}
	
/*ボタンアイコン*/
	
.cta01 .mailbtn .btnttl::before, .cta01 .telnum::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
.cta01 .mailbtn .btnttl::before {
	content: '\f0e0';
    font-size: var(--rem28);
}
.cta01 .telnum::before {
	content: '\f3cd';
    font-size: min(calc(3.2rem + (1vw - 1.92rem) * 0.3883), 3.2rem);
}
.cta01 .linebtn .btnttl::before {
    content: '\f3c0';
	font-weight: 400;
	display: inline-block;
	font-family: 'Font Awesome 5 Free', 'FontAwesome';
	margin-right: 1rem;
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
}
html:not(.mobile) #mainImg, html:not(.mobile) #breadcrumnb {
  margin-top: 100px;
}
/* CONTENT01 */
#top_about {
    &.bg_wide::before {
        background: url(/wp-content/uploads/top_about_bg_01.png.webp) no-repeat center / cover;
    }
    .front_contents {
        padding-bottom: 70px;
    }
    .ttl.ttl--primary {
        margin-bottom: var(--rem28);
    }
    .linkBtn {
        margin: 0;
    }
}
/* CONTENT02 */
#top_commitment {
    &.bg_wide::before {
        background: url(/wp-content/uploads/top_commitment_bg_01.png.webp) no-repeat top center / cover;
    }
    .front_contents {
        padding: min(calc(15rem + (1vw - 1.92rem) * 3.2362), 15rem) 0;
        @media screen and (max-width: 768px) {
            padding: 0 0 min(calc(15rem + (1vw - 1.92rem) * 3.2362), 15rem);
        }
    }
    .linkBtn {
        max-width: 340px;
    }
}
/* CONTENT03 */
#top_page-nav {
    &.bg_wide::before {
        background: url(/wp-content/uploads/top_page-nav_bg_01.png.webp) no-repeat center / cover;
    }
    .front_contents {
        padding: 0;
    }
}
/* POST */
.top_news {
	max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}
.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;
    }
	#thumbImg, header#h1Header {
		@media screen and (min-width: 1024px) {
    		margin-top: 100px;
		}
	}
    h1.title, .post h1, header#h1Header h1.title {
        color: var(--color-font);
        font-family: var(--font-family03);
        font-size: var(--rem48);
        font-weight: 500;
    }
    &.post, .post {
        .headeing_mod01 {
            font-size: var(--rem24w);
            font-family: var(--font-family03);
            font-weight: 600;
            letter-spacing: .1rem;
            text-align: left;
            padding: 0 .4em .4em;
            margin: var(--px60) auto var(--px30);
            border-bottom: 1px solid var(--color-font);
            &::after {
                display: none;
            }
        }
        h2 {
            font-family: var(--font-family03);
        }
        h3 {
            font-family: var(--font-family03);
        }
        h4 {
            font-family: var(--font-family03);
        }
        h5 {
            font-family: var(--font-family03);
        }
        h6 {
            font-family: var(--font-family03);
        }
        ul {
            li {
                font-size: var(--rem14);
            }
        }
        table th, table td {
            font-size: var(--rem14);
            padding: var(--rem20) var(--rem24);
            line-height: 1.7;
        }
        table th {
            color: var(--color-font);
            font-weight: 700;
            background: #E6E6E6;
        }
        .signature {
            font-size: var(--rem18);
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        .anchorLink-view {
            padding-top: 120px;
            margin-top: -120px;
        }
    }
}

/*================================================
					商品情報
================================================*/
body:not(.home) {
    &.post, & .post {
        .products {
            & + & {
                margin-top: var(--rem120);
            }
            table {
                th, td {
                    text-align: center;
                    vertical-align: middle;
                    padding: var(--rem12) var(--rem24);
                }
                th {
                    color: #fff;
                    font-size: var(--rem18);
                    font-weight: 700;
                    background: #333;
                }
                td {
                    font-size: var(--rem18);
                }
            }
        }
    }
}

/*================================================
					工場案内
================================================*/
body:not(.home) {
    &.page-id-137 {
        &.post, & .post {
            display: flex;
            flex-wrap: wrap;
            gap: 10%;
            & > div:has(.information__ttl) {
                width: 45%;
                @media screen and (max-width: 768px) {
                    width: 100%;
                }
            }
        }
    }
    &.post, & .post {
        .information__ttl {
            font-size: var(--rem18);
            font-weight: 700;
            text-align: left;
            padding-bottom: var(--rem16);
            margin-bottom: var(--rem16);
            border-bottom: 1px solid #333;
            &::after {
                display: none;
            }
        }
        .information__address, .information__symbol {
            padding-bottom: var(--rem16);
            border-bottom: 1px solid #333;
            line-height: 1.4;
        }
        .information__address {
            margin-bottom: var(--rem16);
        }
        .information__symbol {
            margin-bottom: var(--rem60);
            @media screen and (max-width: 768px) {
                margin-bottom: var(--rem120);
            }
        }
    }
}

/*================================================
					お問い合わせ
================================================*/
.wpcf7 {
    table {
        th {
            width: 30%;
        }
    }
	.subimitarea {
		.linkBtn {
			margin-left: auto;
			margin-right: auto;
			padding: 0;
            &:hover input[type="submit"], input[type="reset"], input[type="button"] {
                color: var(--color-primary-shade);
            }
		}
        .input[type="submit"], input[type="reset"], input[type="button"] {
            transition: all .3s;
        }
	}
}

/*================================================
				代表挨拶/調整
================================================*/
.message-space{
	align-content: center;
}