/* ----------------------------------------------------------------header*/
header {
    position: relative;
    margin-bottom: 40px;
    padding-top: 76px;
	text-align: center;
}
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	font-size: 0;
    z-index: 999;
}
h1 {
    height: 36px;
	padding-top: 10px;
    line-height: 1.1;
    text-align: center;
    font-family: var(--font-title);
	font-size: 10px;
    color: var(--main-color);
}
.header_logo {
	display: inline-block;
}
.header_logo img {
	width: auto;
	height: 50px;
}
.header_tel {
    position: absolute;
    right: 15px;
    bottom: -36px;
    display: inline-block;
    padding: 8px 10px;
    text-align: center;
    color: #fff;
    border-radius: var(--base-radius-sp);
    background: var(--main-color);
    transition: all 0.5s;
}
.header_tel .tx {
    position: relative;
    margin-bottom: 5px;
    line-height: 1.25;
    font-family: var(--font-title);
    font-weight: 600;
}
.header_tel .tx::before {
    position: absolute;
    left: 3px;
    bottom: 0;
    display: block;
    width: 2px;
    height: 22px;
    content: "";
    background: var(--yellow);
    transform: rotate(-30deg);
}
.header_tel .tx::after {
    position: absolute;
    right: 3px;
    bottom: 0;
    display: block;
    width: 2px;
    height: 22px;
    content: "";
    background: var(--yellow);
    transform: rotate(30deg);
}
.header_tel .num {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 20px;
}
.header_tel .num img {
    width: auto;
    height: 18px;
    margin-right: 3px;
}
.header_tel a {
    text-decoration: none;
    color: #fff;
}

@media print, screen and (min-width:576px) {
header {
    margin-bottom: 0;
}
.header_tel {
    bottom: 0;
}
}
@media print, screen and (min-width:768px) {
header {
    padding-top: 90px;
}
h1 {
    height: 44px;
	padding-top: 10px;
	font-size: 12px;
}
.header_logo img {
	width: auto;
	height: 80px;
}
.header_tel {
    right: 4.1666%;
    padding: 10px 15px;
    border-radius: var(--base-radius);
}
.header_tel .tx {
    margin-bottom: 6px;
    font-size: 22px;
}
.header_tel .tx::before {
    left: 15px;
    bottom: 0;
}
.header_tel .tx::after {
    right: 15px;
    bottom: 0;
}
.header_tel .num {
    font-size: 34px;
}
}
@media print, screen and (min-width:992px) {
header {
    padding-top: 100px;
}
h1 {
    height: 60px;
	padding-top: 16px;
	font-size: 12px;
}
.header_tel {
    width: 360px;
    padding: 30px 15px;
}
.header_tel .tx {
    margin-bottom: 9px;
    font-size: 27px;
}
.header_tel .tx::before {
    left: 20px;
    bottom: 0;
    width: 3px;
    height: 40px;
}
.header_tel .tx::after {
    right: 20px;
    bottom: 0;
    width: 3px;
    height: 40px;
}
.header_tel .num {
    font-size: 40px;
}
.header_tel .num img {
    width: auto;
    height: 32px;
    margin-right: 3px;
}
}
@media print, screen and (min-width:1240px) {
header {
    padding-top: 90px;
}
}

/* ----------------------------------------------------------------header_fixed*/
.header_tel.fixed {
    visibility: visible!important;
	position: fixed;
	top: 0;
    bottom: auto;
    border-radius: 0 0 10px 10px;
    z-index: 99999;
}
.header_tel.fixed .tx {
	display: none;
}
@media print, screen and (min-width:992px) {
.header_tel.fixed {
	padding: 10px 15px;
}
}

/* ----------------------------------------------------------------footer*/
footer {
	text-align: center;
	padding: 30px 0;
}

#footer_contact {
    margin-bottom: 30px;
}
#footer_contact h3 {
    margin-bottom: 50px;
    line-height: 1.1;
}
#footer_contact h3 span {
    display: block;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 47px;
    color: color-mix(in srgb, var(--main-color) 12%, white);
}
#footer_contact h3 strong {
    display: block;
    margin-top: -0.85em;
    line-height: 1.4;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}
#footer_contact p {
    line-height: 1.2;
    color: #fff;
}
#footer_contact .tel {
    position: relative;
    padding: 0 10px 20px;
    border-radius: var(--base-radius-sp);
    background: var(--main-color);
}
#footer_contact .tel h4 {
    display: inline-block;
    margin-top: -25px;
    padding: 0 20px 10px;
    border-radius: var(--base-radius-sp);
    background: #fff;
}
#footer_contact .tel h4 img {
  width: auto;
  height: 50px;
}
#footer_contact .tel p.num {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px 10px 15px;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 30px;
    color:#fff;
}
#footer_contact .tel a {
    text-decoration: none;
    color: #fff;
}

@media print, screen and (min-width:768px) {
footer {
	padding: 30px 0 30px;
}

#footer_contact {
    margin-bottom: 60px;
}
#footer_contact h3 {
    margin-bottom: 100px;
}
#footer_contact h3 span {
    font-size: 100px;
}
#footer_contact h3 strong {
    font-size: 36px;
}
#footer_contact p {
    font-size: 18px;
}
#footer_contact .tel {
    padding: 0 20px 40px;
    border-radius: var(--base-radius);
}
#footer_contact .tel h4 {
    margin-top: -40px;
    padding: 0 40px 20px;
    border-radius: var(--base-radius);
}
#footer_contact .tel h4 img {
  width: auto;
  height: 80px;
}
#footer_contact .tel p.num {
    gap: 10px;
    padding: 30px 10px 20px;
    font-size: 60px;
    border-radius: 40px;
}
}
@media print, screen and (min-width:992px) {
#footer_contact h3 {
}
#footer_contact h3 span {
    font-size: 124px;
}
#footer_contact h3 strong {
    font-size: 40px;
}
#footer_contact p {
    font-size: 20px;
}
#footer_contact .tel {
}
#footer_contact .tel h4 {
}
#footer_contact .tel p.num {
    gap: 10px;
    padding: 30px 10px 20px;
    font-size: 90px;
    border-radius: 40px;
}
}

#footer .bn {
    margin-bottom: 30px;
}
#footer .bn img {
    width: auto;
    max-width: 100%;
    height: auto;
}
@media print, screen and (min-width:768px) {
#footer .bn {
    margin-bottom: 60px;
}
}
@media print, screen and (min-width:992px) {
}

#footer .footer_nav {
    margin-bottom: 30px;
    padding: 20px 10px;
    border-radius: var(--base-radius-sp);
    background: color-mix(in srgb, var(--main-color) 12%, white);
    & h4 {
        margin-bottom: 1em;
        line-height: 1.3;
        font-family: var(--font-title);
        font-size: 18px;
        font-weight: 600;
        color: var(--main-color);
    }
    & nav {
        & ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px 20px;
            & li {
                & a {
                    text-decoration: none;
                    color: var(--txbase-color);
                }
            }
        }
    }
}
@media print, screen and (min-width:768px) {
#footer .footer_nav {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: var(--base-radius);
    & h4 {
        font-size: 22px;
    }
    & nav {
        & ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px 20px;
            & li {
                & a {
                    text-decoration: none;
                    color: var(--txbase-color);
                }
            }
        }
    }
}
}
@media print, screen and (min-width:992px) {
}

small {
    display: block;
    font-size: 11px;
    font-weight: 500;
}

@media print, screen and (min-width:992px) {
small {
    text-align: right;
    font-size: 14px;
}
}

/*TextRight*/
.tx_right {
	text-align: right;
}
/*TextLeft*/
.tx_left {
	text-align: left;
}
/*TextCenter*/
.tx_cent {
	text-align: center;
}
/*bold*/
.tx_bold {
	font-style: normal;
	font-weight: bold;
}
/*TextRed*/
.tx_red {
	color: #C33;
}
/*attention*/
.attention {
	font-size: 10px;
	line-height: 130%;
	margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
	float: left;
}
/*FloatRight*/
.float_right {
	float: right;
}
/*ClearBoth*/
.clearboth {
	clear: both;
}
/*phbox*/
.phbox_right {
	text-align: center;
}
.phbox_right img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.phbox_left {
	text-align: center;
}
.phbox_left img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.ov_hidden {
	overflow: hidden;
}

@media print, screen and (min-width:768px) {
.phbox_right {
	float: right;
	margin-left: 10px;
	margin-bottom: 0px;
}
.phbox_left {
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
}
}
/*------------------------------------------------------------Margin*/
/*MarginTop*/
.margin_t05 {
	margin-top: 5px;
}
.margin_t10 {
	margin-top: 10px;
}
.margin_t20 {
	margin-top: 20px;
}
.margin_t30 {
	margin-top: 30px;
}
.margin_t40 {
	margin-top: 40px;
}
.margin_t50 {
	margin-top: 50px;
}
/*MarginBottom*/
.margin_b05 {
	margin-bottom: 5px;
}
.margin_b10 {
	margin-bottom: 10px;
}
.margin_b20 {
	margin-bottom: 20px;
}
.margin_b30 {
	margin-bottom: 30px;
}
.margin_b40 {
	margin-bottom: 40px;
}
.margin_b50 {
	margin-bottom: 50px;
}
/*MarginRight*/
.margin_r05 {
	margin-right: 5px;
}
.margin_r10 {
	margin-right: 10px;
}
.margin_r15 {
	margin-right: 15px;
}
.margin_r20 {
	margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
	margin-left: 50px;
}
.margin_l10 {
	margin-left: 10px;
}
.margin_l15 {
	margin-left: 15px;
}
.margin_l20 {
	margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
	margin-bottom: 10px;
}

@media print, screen and (min-width:768px) {
.margin-xs-b10 {
	margin-bottom: 0px;
}
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
	zoom: 1;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a img.hoverimg {
	transition: all 0.5s;
}
a:hover img.hoverimg {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}
/*------------------------------------------------------------other*/
.title01 {
    position: relative;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
.title01::after {
    position: absolute;
    left: 50%;
    bottom: -41px;
    display: block;
    width: 0;
    height: 0;
    margin-left: -21px;
    border: solid 21px transparent;
    content: "";
    border-top: solid 21px var(--main-color);
}
.title01 > span {
    position: relative;
    display: block;
    padding: 12px 10px;
    border-radius: var(--base-radius-sp);
    background: var(--main-color);
    z-index: 1;
}
.title01.green::after {
    border-top: solid 21px var(--sub-color);
}
.title01.green > span {
    background: var(--sub-color);
    z-index: 1;
}
.title01 strong {
    font-weight: 600;
    color: var(--yellow);
}
.title01 .shine_r {
    position: absolute;
    top: -50px;
    right: 5px;
    width: auto;
    height: 60px;
}
.title01 .shine_l {
    position: absolute;
    top: -50px;
    left: 5px;
    width: auto;
    height: 60px;
}
@media print, screen and (min-width:768px) {
.title01 {
    margin-bottom: 60px;
    font-size: 30px;
}
.title01 > span {
    padding: 20px;
    border-radius: var(--base-radius);
}
.title01 .shine_r {
    top: -100px;
    right: 5px;
    width: auto;
    height: auto;
}
.title01 .shine_l {
    top: -100px;
    left: 5px;
    width: auto;
    height: auto;
}
}
@media print, screen and (min-width:992px) {
.title01 {
    font-size: 40px;
}
.title01 > span {
    padding: 30px;
}
}



/*Pagetop*/
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 15px;
}
#pagetop img {
	width: auto;
    height: 46px;
}
@media print, screen and (min-width:768px) {
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pagetop img {
	width: auto;
    height: auto;
}
}
