@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:https://support-corp.net/
File name:common.css
Summary:reset styles
Created:2021-10-26
--------------------------------------------------------------- */

@media screen and (min-width: 1225px) {

	body {
		background: #fff url(../img/common/bg.jpg) repeat top left;
	}


	/* Link */
	/* ------------------------------------------------------------ */

	a:link,
	a:visited {
		color: #402111;
		text-decoration: none;
	}

	a:hover,
	a:active {
		color: #402111;
		text-decoration: none;
	}

	img,
	.alpha {
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
	}

	.alpha:hover {
		filter: alpha(opacity=50);
		opacity: 0.5;
	}

	/* Font */
	/* ------------------------------------------------------------ */

	em {
		font-style: normal;
	}

	sup {
		font-size: 66%;
		vertical-align: top;
	}

	sub {
		font-size: 66%;
		vertical-align: baseline;
	}

	/* インデント1文字分 */
	/* ------------------------------------------------------------ */

	.indent {
		text-indent: -1em;
		margin-left: 1em;
	}

	/* Align */
	/* ------------------------------------------------------------ */

	.a_left {
		text-align: left !important;
	}

	.a_center {
		text-align: center !important;
	}

	.a_right {
		text-align: right !important;
	}

	/* Float */
	/* ------------------------------------------------------------ */

	.f_left {
		float: left;
	}

	.f_right {
		float: right;
	}

	/* Clear */
	/* ------------------------------------------------------------ */

	.clfx::after {
		content: '';
		height: 0;
		clear: both;
		display: block;
		visibility: hidden;
	}

	/* HR */
	/* ------------------------------------------------------------ */

	hr {
		height: 1px;
		margin: 60px 0;
		padding: 0;
		display: block;
		border: 0;
		border-top: 1px #e6e6e6 solid;
	}

	/* Center合わせ */
	/* ------------------------------------------------------------ */

	.c_mgn {
		margin-left: auto;
		margin-right: auto;
	}

	/* pc_mode / sp_mode */
	/* ------------------------------------------------------------ */

	.pc_mode {
		display: inherit !important;
	}

	.sp_mode {
		display: none !important;
	}

	/* Header */
	/* ------------------------------------------------------------ */

	header {}

	header .inner {
		width: 1000px;
		margin: 0 auto;
	}

	header .inner .header_area {}

	header .inner .header_area>div {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

	header .inner .header_area>div>h1 {
		margin-top: 20px;
	}

	header .inner .header_area>div>h1 a {
		width: 510px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	header .inner .header_area>div>h1 a img:nth-of-type(1) {
		width: 360px;
	}

	header .inner .header_area>div>h1 a img:nth-of-type(2) {
		width: 123px;
	}

	header .inner .header_area>div>div {
		width: 430px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	header .inner .header_area>div>div>div {
		width: 100%;
	}

	header .inner .header_area>div>div ul {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	header .inner .header_area>div>div ul li {
		background: #fff;
	}

	header .inner .header_area>div>div ul li a {
		color: #fff;
		padding: 0 10px 10px 10px;
		display: block;
	}

	header .inner .header_area>div>div ul li a span {
		font-size: 18px;
		width: 188px;
		height: 49px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-left: 1px #fff dotted;
		border-right: 1px #fff dotted;
		border-bottom: 1px #fff dotted;
	}

	header .inner .header_area>div>div ul li:nth-of-type(1) a {
		background: #402111;
	}

	header .inner .header_area>div>div ul li:nth-of-type(2) a {
		background: #57A9D2;
	}

	header .inner .header_area>div>div ul li a span img {
		width: 24px;
		margin-right: 5px;
	}

	header .inner .header_area>div>div p.tel {
		width: 330px;
		margin-top: 30px;
	}

	header .inner .header_area>div>div p.available {
		text-align: right;
		font-size: 10px;
		line-height: 1.5;
		margin-top: 15px;
	}

	header a[href^="tel:"] {
		pointer-events: none;
	}

	/* Global menu */
	/* ------------------------------------------------------------ */

	header #global_nav {
		width: 100%;
		margin-top: 30px;
	}

	header #global_nav ul {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	header #global_nav ul li {
		width: 16.666%;
	}

	header #global_nav ul li a {
		font-size: 18px;
		width: 100%;
		height: 60px;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}

	header #global_nav ul li a::after {
		content: "";
		background: url(../img/common/btn_headermenu_hover.svg) no-repeat center / 100% 100%;
		width: 114px;
		height: 28px;
		position: absolute;
		transition: transform 0.5s ease, opacity 0.5s ease;
		opacity: 0;
	}

	header #global_nav ul li a:hover::after {
		opacity: 1;
	}

	header #global_nav ul li.line {
		width: 1px;
		height: 60px;
		position: relative;
	}

	header #global_nav ul li.line::before {
		content: "";
		background-image: linear-gradient(to bottom, #402111, #402111 1px, transparent 1px, transparent 2px);
		background-size: 1px 2px;
		background-repeat: repeat-y;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	header #global_nav ul li:nth-of-type(n+14) {
		display: none;
	}

	/* Main */
	/* ------------------------------------------------------------ */

	main {
		margin-top: 60px;
	}

	main#index section:not(#mainvisual) {
		padding: 80px 0;
	}

	main:not(#index) section:not(#title) {
		margin: 0 0 80px;
		padding: 80px 0 0;
	}

	main section .inner {
		max-width: 1000px;
		margin: 0 auto;
	}

	main a[href^="tel:"] {
		color: #402111;
		pointer-events: none;
		cursor: text;
		text-decoration: none;
	}

	/* title */
	/* ------------------------------------------------------------ */

	main:not(#index) section#title {
		background: #fff;
		padding: 30px 0 0;
	}

	main:not(#index) section#title .inner {
		max-width: 1200px;
		height: 100px;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	main:not(#index) section#title .inner::before {
		content: "";
		background: url(../img/common/petal_upper.svg) no-repeat center top;
		width: 1200px;
		height: 194px;
		position: absolute;
		top: -70px;
		left: calc(50% - 600px);
		z-index: 0;
	}

	main:not(#index) section#title .inner>div {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

	main:not(#index) section#title h2 {
		text-align: center;
		font-size: 24px;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 20px;
		padding: 0 30px 10px;
		border-bottom: 1px #402111 dotted;
		z-index: 1;
	}

	main:not(#index) section#title ul {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		z-index: 1;
	}

	main:not(#index) section#title ul li {
		margin: 0 20px;
	}

	main:not(#index) section#title ul li a {
		display: block;
	}

	main section h3 {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 40px;
	}

	main section h3 span {
		font-size: 18px;
		margin-bottom: 15px;
		display: block;
	}

	main section h4,
	main section h5 {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	main section p.comment {
		line-height: 2;
	}

	/* Table */
	/* ------------------------------------------------------------ */

	main section .dllist1 {
		position: relative;
	}

	main section .dllist1 .dlbox {
		border-bottom: 1px #402111 dotted;
		width: 100%;
		display: block;
	}

	main section .dllist1 .dlbox .dtbox {
		text-align: left;
		width: 100%;
		display: block;
	}

	main section .dllist1 .dlbox .ddbox {
		text-align: left;
		width: 100%;
		display: block;
	}

	main section .dllist1 .dlbox:nth-of-type(1) {
		border-top: 1px #402111 dotted;
	}

	main section .dllist1 .dlbox .wrap {
		line-height: 1.5;
		padding: 7px 10px 10px;
	}

	main section .dllist1 .dlbox .dtbox .wrap {
		padding: 10px 10px 0;
		font-weight: 700;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	main section .dllist2 {
		position: relative;
	}

	main section .dllist2 .dlbox {
		border-bottom: 1px #402111 dotted;
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	main section .dllist2 .dlbox .dtbox {
		text-align: left;
		width: 250px;
		padding: 20px 0;
		display: block;
		flex-shrink: 0;
	}

	main section .dllist2 .dlbox .ddbox {
		text-align: left;
		width: 100%;
		padding: 20px 0;
		display: block;
	}

	main section .dllist2 .dlbox:nth-of-type(1) {
		border-top: 1px #402111 dotted;
	}

	main section .dllist2 .dlbox .wrap {
		line-height: 1.5;
		padding: 0 10px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	main section .dllist2 .dlbox .wrap p {
		line-height: 1.5;
	}

	main section .dllist2 .dlbox .wrap:nth-of-type(n+2) {
		margin-top: 10px;
	}

	main section .dllist2 .dlbox .wrap span.txt {
		width: 100%;
		margin-bottom: 5px;
	}

	main section .dllist2 .dlbox .dtbox .wrap {
		font-weight: 700;
		justify-content: space-between;
	}

	main section .dllist2 .dlbox .ddbox .wrap {
		flex-wrap: wrap;
	}

	main section .dllist1 .precautionarystatement,
	main section .dllist2 .precautionarystatement {
		font-size: 12px;
	}

	/* Form */
	/* ------------------------------------------------------------ */

	main section#form .must {
		background: #DF828C;
		color: #fff;
		font-size: 12px;
		line-height: 1;
		padding: 5px 10px;
		display: block;
	}

	main section#form span.error {
		margin-top: 5px;
	}

	main section#form .radio span.error {
		margin-top: 0;
	}

	main section#form .inner>form .dtbox .wrap span {
		font-size: 14px;
		line-height: 1;
	}

	main section#form span.mwform-zip-field {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	main section#form input[type="text"],
	main section#form input[type="tel"],
	main section#form input[type="email"],
	main section#form input[type="password"],
	main section#form input[type="date"],
	main section#form input[type="number"] {
		/*border: 1px solid #c1c1c1;*/
		border: none;
		border-radius: 3px;
		border: 1px #402111 solid;
		background: #fff;
		font-size: 18px;
		letter-spacing: 1px;
		width: 100%;
		height: 50px;
		padding: 10px;
		box-sizing: border-box;
	}

	main section#form input[type="file"] {
		font-size: 18px;
	}

	main section#form input[type="text"].zip {
		width: 30%;
		margin-left: 10px;
	}

	main section#form select.prefecture {
		width: 30%;
		margin-bottom: 10px;
	}

	main section#form div.select {
		width: 100%;
		position: relative;
	}

	main section#form div.select::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		border-width: 0 2px 2px 0;
		border-color: #402111;
		border-style: solid;
		position: absolute;
		right: 20px;
		top: 15px;
		transform-origin: center;
		transform: rotate(45deg);
	}

	main section#form select {
		/*border: 1px solid #c1c1c1;*/
		border: none;
		border-radius: 3px;
		border: 1px #402111 solid;
		background: #fff;
		font-size: 18px;
		letter-spacing: 1px;
		width: 100%;
		height: 50px;
		padding: 10px;
		box-sizing: border-box;
		-webkit-appearance: none;
	}

	main section#form textarea {
		/*border: 1px solid #c1c1c1;*/
		border: none;
		border-radius: 3px;
		border: 1px #402111 solid;
		background: #fff;
		font-size: 18px;
		letter-spacing: 1px;
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
	}

	main section#form .check label {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		cursor: pointer;
	}
	main section#form .check label input[type="checkbox"] {
		position: absolute;
		z-index: 0;
		opacity: 0;
	}
	main section#form .check label .custom_check {
		background: #FFF;
		width: 20px;
		height: 20px;
		z-index: 1;
		border: 1px solid #DF828C;
		border-radius: 3px;
	}
	main section#form .check label .custom_check::before {
		content: "";
		height: 2px;
		width: 7px;
		background: #FFF;
		position: absolute;
		transform: rotate(40deg);
		top: 11px;
		left: 5px;
		display: none;
	}
	main section#form .check label .custom_check::after {
		content: "";
		height: 2px;
		width: 10px;
		background: #FFF;
		position: absolute;
		transform: rotate(-50deg);
		top: 9px;
		left: 9px;
		display: none;
	}
	main section#form .check label input:checked+.custom_check,
	main section#form .check label input:checked~.custom_check {
		background: #DF828C;
	}
	main section#form .check label input:checked+.custom_check::before,
	main section#form .check label input:checked+.custom_check::after,
	main section#form .check label input:checked~.custom_check::before,
	main section#form .check label input:checked~.custom_check::after {
		display: block;
	}
	main section#form .check label span {
		line-height: 1;
	}
	main section#form .check label span a {
		text-decoration: underline;
	}

	main section#form .radio {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	main section#form .radio input[type="radio"] {
		position: absolute;
		visibility: hidden;
		width: auto;
	}
	main section#form .radio .mwform-radio-field-text {
		line-height: 1;
		margin-right: 20px;
		cursor: pointer;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	main section#form .radio .mwform-radio-field-text::before {
		position: relative;
		left: 0;
		top: 0;
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		margin-right: 10px;
		background: #fff;
		border: 1px solid #9fa0a0;
		box-sizing: border-box;
		border-radius: 50%;
		vertical-align: middle;
	}
	main section#form .radio input[type="radio"]:checked+.mwform-radio-field-text::before {
		border: 1px solid #DF828C;
	}
	main section#form .radio input[type="radio"]:checked+.mwform-radio-field-text::after {
		position: absolute;
		left: 5px;
		top: 5px;
		content: "";
		display: inline-block;
		width: 10px;
		height: 10px;
		background: #DF828C;
		border-radius: 50%;
		box-sizing: border-box;
		vertical-align: middle;
	}

	main section#form .mwform-zip-field {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	main section#form .mwform-zip-field input {
		margin: 0 10px;
	}

	main section#form .policy {
		background: #fff;
		text-align: left;
		font-size: 12px;
		height: 200px;
		margin-top: 60px;
		padding: 30px;
		border: 1px #402111 solid;
		overflow: auto;
	}

	main section#form .policy h1,
	main section#form .policy h2 {
		font-weight: 700;
		line-height: 1.5;
	}

	main section#form .policy p {
		line-height: 1.5;
		margin-left: 2em;
	}

	main section#form .policy dl {
		margin: 10px 0;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	main section#form .policy dl dt {
		line-height: 1.5;
	}

	main section#form .policy dl dd {
		line-height: 1.5;
		margin-left: 1.1em;
	}

	main section#form .policy ol {
		list-style-type: decimal;
	}

	main section#form .policy ol li {
		line-height: 1.5;
		margin-left: 2em;
	}

	main section#form .btn_area {
		width: 660px;
		margin: 60px auto 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	main section#form .btn_submit {
		background: #402111;
		color: #fff;
		font-size: 16px;
		letter-spacing: 0.2em;
		margin-right: -0.2em;
		width: 400px;
		height: 60px;
		display: block;
		cursor: pointer;
		border: none;
	}

	main section#form .btn_submit:hover {
		background-color: #DF828C;
	}

	main section#form .btn_reset {
		background: #f2f2f2;
		color: #323333;
		font-size: 16px;
		letter-spacing: 0.2em;
		margin-right: -0.2em;
		width: 200px;
		height: 60px;
		display: block;
		cursor: pointer;
		border: none;
	}

	main section#form .btn_reset:hover {
		background-color: #bfbfbf;
	}

	main section#form .mw_wp_form_complete p {
		line-height: 1.2;
	}

	/* Footer */
	/* ------------------------------------------------------------ */

	footer {
		padding: 40px 0;
		border-top: 3px #402111 solid;
	}

	footer .inner {
		width: 1000px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

	footer .inner>div:nth-of-type(1) {
		flex-shrink: 0;
	}

	footer .inner>div:nth-of-type(1) h1 {
		width: 360px;
	}

	footer .inner>div:nth-of-type(1) address {
		font-size: 14px;
		line-height: 2;
		font-style: normal;
		margin-top: 20px;
	}

	footer a[href^="tel:"] {
		color: #402111;
		pointer-events: none;
		cursor: text;
		text-decoration: none;
	}

	footer .inner>nav {
		width: 430px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	footer .inner>nav ul:nth-of-type(1) {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
	}

	footer .inner>nav ul:nth-of-type(1) li {
		margin-right: 40px;
	}

	footer .inner>nav ul:nth-of-type(1) li:nth-of-type(3n) {
		margin-right: 0px;
	}

	footer .inner>nav ul:nth-of-type(1) li a {
		font-size: 18px;
		padding: 10px 0;
		display: block;
		position: relative;
	}

	footer .inner>nav ul:nth-of-type(1) li a::after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 0px;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
	}

	footer .inner>nav ul:nth-of-type(1) li a:hover::after {
		background: #402111;
		bottom: -3px;
	}

	footer .inner>nav ul:nth-of-type(1) li a.active::after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background: #fff;
		position: absolute;
		bottom: -3px;
	}

	footer .inner>nav ul:nth-of-type(2) {
		width: 100%;
		margin-top: 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	footer .inner>nav ul:nth-of-type(2) li {
		border: 1px #402111 solid;
	}

	footer .inner>nav ul:nth-of-type(2) li a {
		color: #402111;
		display: block;
	}

	footer .inner>nav ul:nth-of-type(2) li a span {
		font-size: 18px;
		width: 208px;
		height: 58px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	footer .inner>nav ul:nth-of-type(2) li a span img {
		width: 24px;
		margin-right: 5px;
	}

	/* fadein */
	/* ------------------------------------------------------------ */

	.fadein {
		opacity: 0;
		transform: translate(0, 40px);
		transition: all 700ms;
	}

	.fadein.scrollin {
		opacity: 1;
		transform: translate(0, 0);
	}

	/* トップページに戻るボタン */
	/* ------------------------------------------------------------ */

	.pagetop {
		background: #fff;
		width: 60px;
		display: none;
		position: fixed;
		bottom: 40px;
		right: 40px;
		z-index: 1;
	}

	.pagetop a {
		display: block;
	}

	.pagetop img {
		width: 100%;
		height: auto;
	}

}