@charset "utf-8";
/* CSS Document */

/* layout base css
-----------------------------------------------------*/
:root {
  --main-color: #0068b7;
  --main-color-rgb: 0,112,178;
  
  --header-h: 100px;
}

@media screen and (max-width: 700px) {
    :root {
        --header-h: 60px;
    }
}

/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}

img {
	border: none;
	height: auto;
	vertical-align: top;
	max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	font-size: 100%;
}

h1 img,h2 img,h3 img,h4 img,h5 img,h6 img {
}

ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

/* ==============================================
    body
============================================== */
body {
	text-align: center;
	line-height: 1.4;
	color: #3c3c3c;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 700px) {
	body {
		min-width: 300px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
}
body,
input,
select,
textarea {
	/*font-family: "Noto Sans JP", sans-serif;*/
    font-family: "Arial", "BIZ UDPGothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
    color: var(--main-color);
	transition: all .4s;
	text-decoration: none;
    outline: none;
}
a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 701px) {
	a:hover,
	#pagetop img:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	a img.rollover:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
	}
}

/* ==============================================
    
============================================== */
#container,
.inner {
	zoom: 1;
	margin: 0 auto;
	text-align: left;
}
#container::after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.inner {
	width: 920px;
}
#header .inner {
	width: 1100px;
}

.sp {
	display: none;
}
.switch {}
.call {}

.flexbox {
	display: flex;
}

nav ul {
    list-style: none;
}


@media screen and (max-width: 1150px) {
	#header .inner {
		width: 96%;
	}
}

@media screen and (max-width: 1000px) {
	.inner {
		width: 96%;
	}
}

@media screen and (max-width: 700px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.flexbox {
		display: block;
	}
}

/* ==============================================
    header
============================================== */
#container {
    overflow-x: hidden;
    padding-top: var(--header-h);
}
#header {
	margin: 0;
	padding: 0;
    width: 100%;
    height: var(--header-h);
    background: #fff;
    border-bottom: 1px solid #808080;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.globalHeader {
	display: grid;
	grid-template-columns: 287px 1fr;
    grid-gap: 0 40px;
    place-items: center;
    height: var(--header-h);
}

#siteid {
	display: block;
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .globalHeader {
	   grid-template-columns: 24% 1fr;
    }
    
}

@media screen and (max-width: 700px) {
    /*header .globalHeader {
	   grid-template-columns: 250px 1fr;
       
    }*/
    .globalHeader {
        display: block;
        position: relative;
    }
    #siteid {
        width: 250px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
}

.header-nav {
    display: grid;
    grid-template-columns: 1fr 180px;
    grid-gap: 0 20px;
    place-items: center;
    width: 100%;
}

.globalnav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    height: var(--header-h);
}
.globalnav ul.spnav {
    display: none;
}

.globalnav li {
    font-weight: 500;
}
.globalnav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 100%;
    color: inherit;
    position: relative;
}
.globalnav li a:hover {
    opacity: 1;
    text-decoration: none;
}
.globalnav li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #0068b7;
    transition: .1s;
    opacity: 0;
}
@media (hover: hover) {
    .globalnav li a:hover::after {
        opacity: 1;
    }
}
@media screen and (max-width: 1000px) {
    .globalnav ul {
        gap: 10px;
    }
    .globalnav li {
        font-size: 0.875em;
    }
}


@media screen and (max-width: 700px) {
    .header-nav {
        display: block;
        grid-gap: 0 0px;
        width: auto;
    }
    
    .globalnav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 20px 10px;
        transform: translateX(100%);
        transition: transform .6s cubic-bezier(.19, 1, .22, 1);
    }
    .globalnav.active {
        transform: translateX(0);
    }
    .globalnav ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        height: auto;
    }
    .globalnav ul.spnav {
        margin-top: 30px;
        display: flex;
    }
    .globalnav li {
        font-size: 1.125em;
    }
}


.hnav {
    
}
.hnav ul {
    display: flex;
    justify-content: flex-end;
    gap: 0px;
}
.hnav li {
    font-size: 13px;
    letter-spacing: -0.1em;
    border-left: 1px solid #000;
}
.hnav li:last-child {
    border-right: 1px solid #000;
}
.hnav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 40px;
    color: inherit;
    position: relative;
    padding: 30px 0 0 0;
}

.hnav li a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("image/icon_cart.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 0 5px;
}
.hnav li:nth-child(2) a::before {
    background-image: url("image/icon_contact.svg");
}

@media screen and (max-width: 1000px) {
    .hnav li {
        font-size: 10px;
    }
    .hnav li a {
        width: 80px;
        height: 40px;
    }
}

@media screen and (max-width: 700px) {
    .hnav {
        display: block;
        width: 24px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 50px;
    }
    .hnav ul {
        justify-content: flex-start;
    }
    .hnav li {
        border: none !important;
        text-indent: -9999px;
    }
    
    .hnav li:nth-child(2) {
        display: none;
    }
    .hnav li a {
        width: 24px;
        height: 24px;
    }
}


/*header nav {
	background: rgba(var(--main-color-rgb), 0.1);
}
header nav ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-left: 1px solid #fff;
}
header nav ul li {
	display: block;
	width: 100%;
	text-align: center;
	border-right: 1px solid #fff;
}

header nav ul li a {
	display: block;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	color: #333;
}

header nav ul li a:hover {
	text-decoration: none;
	background: #ccc;
}*/

@media screen and (max-width: 700px) {
	/*header {
		position: fixed;
		width: 100%;
		height: 50px;
		background: rgba(255,255,255,0.9);
		border-bottom: 1px solid #ddd;
		z-index: 20;
	}
	header .global_header {
		display: block;
	}
	header .h_menu {
		display: none;
	}
	
	header nav ul {
		display: block;
		border: none;
	}
	header nav ul li {
		border-right: none;
		border-bottom:  1px solid #fff;
	}*/
}
	
/* ==============================================
	menuBtn
============================================== */
#menuBtn {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
	z-index: 100000;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 20px;
	height: 3px;
	margin-left: -9px;
	background: #00348b;
	top: 35px;
	left: 35px;
	transition: all .4s;
	opacity: 1;
}
#menuBtn span {
	margin-top: -1px;
	transition: opacity 150ms 50ms;
}

#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before {
	transform: translate(0, -8px);
}
#menuBtn:after {
	transform: translate(0, 6px);
}

#menuBtn.active span {
	opacity: 0;
}
#menuBtn.active:before  {
	transform: rotate(45deg);
}
#menuBtn.active:after  {
	transform: rotate(-45deg);
}
/*@media screen and (max-width: 700px) {
	#menuBtn {
		display: block;
		width: 60px;
		height: 60px;
	}
	#menuBtn span,
	#menuBtn:before,
	#menuBtn:after {
		top: 30px;
		left: 30px;
	}
}*/
@media screen and (max-width: 700px) {
	#menuBtn {
        display: block;
		width: 50px;
		height: 50px;
	}
	#menuBtn span,
	#menuBtn:before,
	#menuBtn:after {
		top: 25px;
		left: 25px;
	}
}

#menuBtn strong {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    text-indent: 0;
    color: #000;
}
#menuBtn strong::before {
    content: "MENU";
    display: block;
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    text-indent: 0;
    color: #000;
}
#menuBtn.active strong::before {
    content: "CLOSE";
}

/* ==============================================
    container
============================================== */
#container {
	position:relative;
	margin:0 auto;
}

.page-wrapper {
    background: #fcfbf7;
    padding: 0 0 50px;
}

body.contact .page-wrapper,
body.product.single .page-wrapper {
    background: #fff;
}

body.info.single article {
    background: #fff;
    padding: 0 50px 50px;
}

@media screen and (max-width: 700px) {
    body.info.single article {
        padding: 0 10px 30px;
    }
}

/* ==============================================
    pagetitle
============================================== */
.pagetitle {
    background: #fff;
    padding: 20px 0;
    margin: 0 0 50px;
    min-height: 140px;
    display: flex;
    align-items: center;
}

.pagetitle h1 {
    
}
.pagetitle h1 strong {
    font-size: 1.75em;
    font-weight: 700;
    display: block;
}
.pagetitle h1 span {
    font-size: 0.875em;
    font-weight: 400;
    color: var(--main-color);
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--main-color);
    margin: 0 0 6px;
}

body.contact .pagetitle {
    background: var(--main-color);
    color: #fff;
}



/* ==============================================
    contents
============================================== */
#contents {}

.btn {
}
.btn a {
	display: inline-block;
	line-height: 30px;
	padding: 0 50px;
	border-radius: 18px;
	background: no-repeat rgba(var(--main-color-rgb), 1.0);
	box-shadow: 2px 3px rgba(4,0,0,0.13);
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	transition: all .4s;
	font-size: 16px;
}
.btn a:active {
	transform: translateY(2px);
}

/* Youtube レスポンシブ用 */
.movie_wrap {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 700px) {
	table.scroll {
		overflow: auto;
		white-space: nowrap;
		display: block;
		width: auto;
	}
	table.scroll tbody {
		width: 100%;
	}
	table.scroll::-webkit-scrollbar {
		height: 5px;
	}
	table.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	table.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}

/* ==============================================
    company_nav
============================================== */
.company_nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0 30px;
}

.company_nav li {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    grid-row-gap: 10px;
}
.company_nav li h3 {
    font-size: 1.125em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.company_nav li p {
    font-size: 0.875em;
    line-height: 1.75;
}
.company_nav li .detail {
    font-size: 0.875em;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .company_nav ul {
        grid-template-columns: 1fr;
        grid-gap: 50px 0;
    }
}

/* ==============================================
    pagetop
============================================== */
#pagetop {
    position: fixed; /*固定表示*/
    bottom: 0px;
    right: 0px;
    display: none; /*通常は非表示に*/
}
#pagetop img {
	cursor: pointer;
	width: 40px;
	height: 40px;
}


/* ==============================================
    footer
============================================== */
#footer {
	margin: 0 auto 0;
	padding: 0;
	background: #f3fafc;
}

.footer-nav {}
.footer-foot {
    display: flex;
    gap: 20px 50px;
    justify-content: center;
    align-items: center;
    padding: 70px 10px;
   /* border-top: 1px solid #808080;*/
}

.f-utility {
    margin: 30px 0 0 0;
}
.f-utility ul {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
}
.f-utility li a::before {
    content: "◯";
    display: inline-block;
    margin-right: 5px;
}
.f-utility li a {
    color: inherit;
}

.f-logo img {
    width: 122px;
}
#footer address {
	font-style: normal;
}
#footer address .slash {

}

.copyright {
	text-align:center;
	font-size: 0.813em;
    background: #4d4d4d;
	color: #fff;
	padding: 20px 0;
}

@media screen and (max-width: 700px) {
    .footer-foot {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }
    #footer address {
    
    }
    #footer address .slash {
        display: none;
    }
    .f-utility {
        display: none;
    }
}

/* ==============================================
    breadcrumb
============================================== */

#breadcrumb {
	padding: 14px 0;
}

#breadcrumb ol {
	list-style: none;
}
#breadcrumb li {
	display: inline-block;
	color: #888;
	font-size: 10px;
}

#breadcrumb li a {
	color: #333;
	text-decoration: none;
}
#breadcrumb li a:hover {
	text-decoration: none;
}

#breadcrumb li a::after {
	content: ">";
	display: inline-block;
	padding: 0 5px;
}

@media screen and (max-width: 700px) {
	#breadcrumb {
		
	}
}


/* ==============================================
    archive-list
============================================== */

.archive-list div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}
.archive-list dt {
    width: 8em;
    font-size: 0.875em;
}
.archive-list dd {
    flex: 1;
}
.archive-list dd a {
    color: inherit;
}

@media screen and (max-width: 700px) {
    .archive-list div {
        flex-direction: column;
    }
}

/*.archive-list ul {
	list-style: none;
	margin-bottom: 20px;
}

.archive-list li {
	padding: 10px 0;
	border-bottom: 1px dotted #ccc;
}
.archive-list li:first-child {
	border-top: 1px dotted #ccc;
}
.archive-list li time,
.archive-list li .entry-title {
	display: inline-block;
	vertical-align: middle;
}
.archive-list li time {
	width: 6.5em;
	font-size: 0.813em;
	color: #777;
}
.archive-list li h3 {
	font-weight: normal;
}
.archive-list li h3 a {
	color: #555;
	text-decoration: none;
}

span.entry-cat {
	display: inline-block;
	font-size: 0.813em;
	color: #fff;
	margin-left: 15px;
}
span.entry-cat a {
	color: #fff;
	display: inline-block;
	padding: 3px;
	background: #47884a;
}
span.entry-cat a:hover {
	text-decoration: none;
}

span.entry-cat.news a {
	background: #0097CC;
}
span.entry-cat.press_release a {
	background: #d65381;
}*/

/* ==============================================
    post_next_prev
============================================== */
nav.post_next_prev {
	margin-top: 50px;
}
nav.post_next_prev ul {
    width: 100%;
	list-style: none;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
nav.post_next_prev li {
    text-align: center;
}
nav.post_next_prev li.prev {
	margin-right: auto;
    text-align: left;
}
nav.post_next_prev li.next {
	margin-left: auto;
    text-align: right;
}
nav.post_next_prev li a {
	color: #000;
}
nav.post_next_prev li.prev a::before,
nav.post_next_prev li.next a::after {
	content: ">";
	display: inline-block;
    text-align: center;
	/*background: url("image/arrow1.svg") no-repeat 0 0 / contain;*/
    font-size: 14px;
	width: 14px;
	line-height: 14px;
	vertical-align: middle;
	margin: 0 5px;
}
nav.post_next_prev li.prev a::before {
	transform: rotate(180deg);
}

/* ==============================================
    pagination
============================================== */
.pagination {
	text-align: center;
    margin: 30px auto;
}
.pagination span,
.pagination a {
	display: inline-block;
	width: 30px;
	line-height: 30px;
	font-size: 0.875em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background: #b0b0b0;
	margin: 4px;
}
.pagination a:hover {
	background: rgba(0, 0, 0, 0.6);
	text-decoration: none;
}
.pagination span {
	background: rgba(0, 0, 0, 0.6);
}


/* ==============================================
    form
============================================== */
.formSection {
}
.cart-content-block {
    margin-bottom: 50px;
}
.cart-content-block h2,
.formSection h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    margin-bottom: 30px;
}

.formSection dl {
    margin: 0 0 50px;
}
.formSection dt {
    font-size: 1.15em;
    font-weight: 700;
    margin: 0 0 10px;
}
.formSection dd {
 margin-bottom: 20px;
}

.formSection dl.input-address {
    margin: 0 0 0 20px;
}


.formSection .input-address dt {
    font-size: 1.15em;
    font-weight: 400;
    margin: 0 0 5px;
}
.formSection .input-address dd {
 margin-bottom: 10px;
}

.delivery-check-block {
    margin: 0 0 50px;
}
.delivery-check-block p {
    margin: 0 0 16px;
}

.formSection .dd-name {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.formSection .dd-radio label {
    display: inline-block;
    margin-right: 20px;
}


.formSection dl.dl-contact div {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #ccc;
}
.formSection dl.dl-contact dt,
.formSection dl.dl-contact dd {
    margin: 0;
    padding: 20px 20px;
}

.formSection dl.dl-contact dt {
    font-size: 1em;
    font-weight: 400;
    width: 14em;
    background: rgba(var(--main-color-rgb), 0.1);
}
.formSection dl.dl-contact dd {
    flex: 1;
}

@media screen and (max-width: 700px) {
    .formSection dl.dl-contact div {
        flex-direction: column;
    }
    .formSection dl.dl-contact dt,
    .formSection dl.dl-contact dd {
        width: 100%;
    }
}

.require {
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    display: inline-block;
    color: #fff;
    background: #BE0909;

    width: 3em;
    text-align: center;
    margin-left: 10px;
}
.formSection select,
.formSection input[type="text"],
.formSection input[type="email"],
.formSection input[type="tel"],
.formSection textarea {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #a4a4a4;
    margin: 3px;
}
.formSection select {
    width: auto;
}

.formSection input[type="checkbox"],
.formSection input[type="radio"] {
    transform: scale(2);
    margin-right: 10px;
}





.formSection input.input-zip {
    width: 16em;
}
.formSection input[name="your-tel"] {
    width: 30em;
}
@media screen and (max-width: 700px) {
    .formSection input[name="your-tel"] {
        width: 100%;
    }
}
.formSection span[data-name="payment"] .wpcf7-radio {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.formSection span[data-name="payment"] .wpcf7-radio .wpcf7-list-item {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    margin: 0;
}
.formSection span[data-name="payment"] .wpcf7-radio .wpcf7-list-item label {
    font-weight: 700;
}

.formSection dl.input-paymant .notes p {
    margin: 0 0 10px;
}


.formSection .privacy_check {
    text-align: center;
    margin: 0 auto 50px;
}
.formSection .privacy_check .wpcf7-list-item-label {
    font-size: 1.125em;
}



.formSection .btn_submit {
    text-align: center;
}
.formSection .btn_submit input[type="submit"] {
    font-size: 1.25em;
    font-weight: 500;
    border: none;
    background: var(--main-color);
    width: 50%;
    line-height: 80px;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    padding: 0 80px;
    cursor: pointer;
    transition: .2s;
}

.formSection .btn_submit input[type="submit"]:disabled {
    cursor: auto;
    opacity: 0.4;
}

.formSection .btn_submit input[type="submit"]:not(:disabled):hover {
    opacity: 0.8;
}

@media screen and (max-width: 700px) {
    .formSection .btn_submit input[type="submit"] {
        width: 70%;
        padding: 0 50px;
    }
}



/* ==============================================
    editor font size
============================================== */
.has-x-small-font-size,
.font-ss {
  font-size: 0.750em !important;/*12px  10px*/
}
 
.has-small-font-size,
.font-s {
  font-size: 0.875em !important;/*14px  13px*/
}
 
.has-regular-font-size {
  font-size: 1.000em !important;/*16px*/
}
 
.has-large-font-size,
.font-l {
  /*font-size: 1.500em !important;*//*24px  24px*/
  font-size: clamp(1.625rem, 1.458rem + 0.67vw, 1.875rem)!important; /* 26-30 400-1000 */
}
 
.has-x-large-font-size,
.font-ll {
  /*font-size: 1.875em !important;*//*30px  36px*/
  font-size: clamp(1.875rem, 1.458rem + 1.67vw, 2.5rem) !important; /* 30-40 400-1000 */
}
 
.has-huge-font-size,
.font-xl {
  font-size: 2.250em !important;/*36px  50px*/
}


/* ==============================================
    custom color
============================================== */
/*:root {
	--custom-color-1: #3d51b3;
	--custom-color-2: #6b96e4;
	--custom-color-3: #f2f7ff;
	--custom-color-4: #e65b65;
	--custom-color-5: #ffe9ea;
	--custom-color-6: #ff0000;
	--custom-color-7: #ffbe00;
	--custom-color-8: #4db56a;
	--custom-mediumgray: #999;
	--custom-lightgray: #d3d3d3;
	--custom-white: #fff;
	--custom-black: #000;
}
.has-custom-color-1-color {
	color: var(--custom-color-1);
}
.has-custom-color-2-color {
	color: var(--custom-color-2);
}
.has-custom-color-3-color {
	color: var(--custom-color-3);
}
.has-custom-color-4-color {
	color: var(--custom-color-4);
}
.has-custom-color-5-color {
	color: var(--custom-color-5);
}
.has-custom-color-6-color {
	color: var(--custom-color-6);
}
.has-custom-color-7-color {
	color: var(--custom-color-7);
}
.has-custom-color-8-color {
	color: var(--custom-color-8);
}

.has-custom-mediumgray-color {
	color: var(--custom-mediumgray);
}
.has-custom-lightgray-color {
	color: var(--custom-lightgray);
}
.has-custom-white-color {
	color: var(--custom-white);
}
.has-custom-black-color {
	color: var(--custom-black);
}


.has-custom-color-1-background-color {
	background-color: var(--custom-color-1);
}
.has-custom-color-2-background-color {
	background-color: var(--custom-color-2);
}
.has-custom-color-3-background-color {
	background-color: var(--custom-color-3);
}
.has-custom-color-4-background-color {
	background-color: var(--custom-color-4);
}
.has-custom-color-5-background-color {
	background-color: var(--custom-color-5);
}
.has-custom-color-6-background-color {
	background-color: var(--custom-color-6);
}
.has-custom-color-7-background-color {
	background-color: var(--custom-color-7);
}
.has-custom-color-8-background-color {
	background-color: var(--custom-color-8);
}

.has-custom-mediumgray-background-color {
	background-color: var(--custom-mediumgray);
}
.has-custom-lightgray-background-color {
	background-color: var(--custom-lightgray);
}
.has-custom-white-background-color {
	background-color: var(--custom-white);
}
.has-custom-black-background-color {
	background-color: var(--custom-black);
}*/

/* ==============================================
    entry-content
============================================== */
.entry-content {
	line-height: 1.8;
}

.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6 {
	line-height: 1.4;
}

.entry-content h1 {
	font-size: 2em;
    line-height: 1.3;
    background: rgba(var(--main-color-rgb), 0.8);
    color: #fff;
    border-radius: 6px;
    padding: 20px;
    margin: 0 0 10px;
}


.entry-content h2 {
	font-size: 1.5em;
    font-weight: 500;
	color: var(--main-color);
	padding: 0;
	margin: 50px 0 40px;
}
.entry-content h2::before {
    content: "◎";
}

.entry-content h3 {
	font-size: 1.375em;
    font-weight: 400;
	background: rgba(var(--main-color-rgb), 0.1);
	padding: 8px;
	margin: 30px 0 20px;
    border-radius: 6px;
}

.entry-content h4 {
	font-size: 1.25em;
	color: #464646;
	margin: 30px 0 20px;
    padding: 3px 10px;
    border-left: 6px solid rgba(var(--main-color-rgb), 0.8);
}

.entry-content h5 {
	font-size: 1.250em;
	margin: 30px 0 20px;
}

.entry-content h6 {
	font-size: 1.125em;
	margin: 30px 0 20px;
}

@media screen and (max-width: 700px) {

}





.entry-content ul,
.entry-content ol {
	margin: 20px 0 30px 30px;
}
.entry-content li {
	line-height: 1.4;
	margin: 8px 0;
}

.entry-content p {
	font-size: 1em;
	line-height: 2;
	margin-bottom: 1.5em;
}
/*.entry-content a {
	color: #786a49;
}*/
.entry-content table {
	margin: 10px auto 20px;
	width: 100%;
}
.entry-content th,
.entry-content td {
	border: 1px solid #ddd;
	padding: 10px 15px;
	background: #fff;
}
.entry-content th {
	background: #fafaf5;
	white-space: nowrap;
	text-align: center;
}


.wp-block-image {
	margin: 0 0 1em;
}
.wp-block-column.has-background,
.wp-block-group.has-background {
	padding: 10px 30px;
	margin-bottom: 30px;
}

.wp-block-separator {
	border: none;
	border-top: 1px solid #ddd;
	margin: 30px auto 50px;
	clear: both;
}

.wp-block-image::after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}

.wp-block-file:not(.wp-element-button)  {
	font-size: 1em;
}

.wp-block-buttons {
	margin: 30px auto 30px;
}
.wp-block-button,
.wp-block-file {
	margin-top: 50px;
	margin-bottom: 50px;
}

div.wp-block-button__link,
.wp-block-button a,
a.wp-block-button__link,
.wp-block-file a {
	font-size: 1.125em;
	line-height: 1.2;
	color: #333 !important;
	border: 1px solid #1e447f;
	background: #fff;
	margin: 10px 0px;
	padding: 14px 40px 14px 40px;
	border-radius: 50px;
	position: relative;
}

.wp-block-file a {
	color: #04428f !important;
	background: #fff;
	border-radius: 0px;
}


.wp-block-button a[target="_blank"]::after,
.wp-block-button__link[target="_blank"]::after {
	content: "";
	display: block;
	background: url("image/icon_blank.svg") no-repeat 0 0 / contain;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.wp-block-button a[href$=".pdf"]:after,
.wp-block-button__link[href$=".pdf"]:after{
	background-image: url("image/file_pdf.svg");
}

.wp-block-button a[href$=".docx"]:after,
.wp-block-button a[href$=".doc"]:after,
.wp-block-button__link[href$=".docx"]:after,
.wp-block-button__link[href$=".doc"]:after{
	background-image: url("image/file_word.svg");
}

.wp-block-button a[href$=".xlsx"]:after,
.wp-block-button a[href$=".xlsm"]:after,
.wp-block-button a[href$=".xls"]:after,
.wp-block-button__link[href$=".xlsx"]:after,
.wp-block-button__link[href$=".xlsm"]:after,
.wp-block-button__link[href$=".xls"]:after{
	background-image: url("image/file_excel.svg");
}

.wp-block-button a:hover,
a.wp-block-button__link:hover {
	background: rgba(var(--main-color-rgb), 0.1);
}

.wp-block-button a:hover,
.wp-block-button__link:hover,
.wp-block-file a:hover {
	opacity: 1;
	color: #282828;
	text-decoration: none;
}
.wp-block-file a {
	padding-left: 50px;
}
.wp-block-file a:hover {
	opacity: 0.7;
}
.wp-block-file a::before {
	content: "";
	display: block;
	background: url("image/file_other.svg") no-repeat 0 0 / contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
.wp-block-file a[href$=".pdf"]:before {
	background-image: url("image/file_pdf.svg");
}

.wp-block-file a[href$=".docx"]:before,
.wp-block-file a[href$=".doc"]:before{
	background-image: url("image/file_word.svg");
}

.wp-block-file a[href$=".xlsx"]:before,
.wp-block-file a[href$=".xlsm"]:before,
.wp-block-file a[href$=".xls"]:before{
	background-image: url("image/file_excel.svg");
}

.wp-block-file .wp-block-file__button {
	color: #265eb3 !important;
	border-radius: 4em !important;
	background: #ddedfd !important;
}

.wp-block-file .wp-block-file__button::before {
	display: none !important;
}

@media screen and (max-width: 700px) {
	.wp-block-button a,
	a.wp-block-button__link,
	.wp-block-file a {

	}
}


.wp-block-embed__wrapper {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}


/* ==============================================
    contact form 7
============================================== */

.wpcf7 form.invalid .wpcf7-response-output {
	border: none;
	background: #ffcccc;
	padding: 10px !important;
	margin: 1em 0 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	background: #d6fdd4;
	padding: 10px !important;
	margin: 1em 0 !important;
}

.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-spinner {
	display: block !important;
	margin: 10px auto !important;
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
	border: 1px solid #cc3333 !important;
	background: #ffcccc !important;
}
span.wpcf7-not-valid {
	background: #ffcccc !important;
}

/* ==============================================
    recaptcha
============================================== */
/*.grecaptcha-badge {
    bottom: 100px !important;
}
@media screen and (max-width: 700px) {
	.grecaptcha-badge {
		bottom: 80px !important;
	}
}*/
