@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:http://envision.okayama.jp/
File name:common.css
Summary:reset styles
Created:2021-12-01
--------------------------------------------------------------- */

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

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

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

a:hover,
a:active {
	color: #221815;
	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 {
	position: relative;
	z-index: 2;
}

header .inner {
	background: rgba(255, 255, 255, 0);
	width: 100%;
	position: fixed;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

header .inner .header_area {
	width: 1200px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner .header_area > div > h1 {
	width: 250px;
}

header .inner .header_area > div > h1 img {
	filter: brightness(0) invert(1);
}

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

header #global_nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

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

header #global_nav ul li {
	position: relative;
	padding: 0 0 0 30px;
}

header #global_nav ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left:0;
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: #fff;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

header #global_nav ul li:nth-of-type(1)::before,
header #global_nav ul li:nth-of-type(7)::before {
	content: none;
}

header #global_nav ul li a {
	color: #fff;
    font-size: 18px;
    font-weight: 500;
	white-space: nowrap;
	display: block;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

header #global_nav ul li a span {
	position: relative;
}

header #global_nav ul li a span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

header #global_nav ul li a:hover span::after {
	background: #fff;
	bottom: -3px;
}

header #global_nav ul li a.active span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -3px;
	left: 0;
}

header #global_nav ul li:nth-of-type(7) a {
	border-radius: 20px;
	border: 1px #fff solid;
    font-size: 18px;
	box-sizing: border-box;
	width: 220px;
	height: 40px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

header #global_nav ul li:nth-of-type(7) a:hover {
	border: 1px #fff solid;
	background: #231815;
}

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

header .inner.fixed {
	background: rgba(255, 255, 255, 1) !important;
}

header .inner.fixed .header_area h1 img {
	filter: brightness(1) invert(0);
}

header .inner.fixed #global_nav ul li::before {
	background-color: #221815;
}

header .inner.fixed #global_nav ul li a {
	color: #221815 !important;
}

header .inner.fixed #global_nav ul li a:hover span::after {
	background: #221815 !important;
}

header .inner.fixed #global_nav ul li a.active span::after {
	background: #221815 !important;
}

header .inner.fixed #global_nav ul li:nth-of-type(7) a {
	border: 1px #221815 solid;
	background: #fff;
}

header .inner.fixed #global_nav ul li:nth-of-type(7) a:hover {
	background: #231815;
	color: #fff !important;
}

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

main > section:not(#mainvisual) {
	margin: 0;
	padding: 0;
}

main > section:last-child {
	margin-bottom: 0 !important;
}

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

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

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

main:not(#index) section#mainvisual .inner {
	width: 1200px;
	height: 520px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

main:not(#index) section#mainvisual h2 {
	text-align: center;
	color: #fff;
	font-size: 48px;
	font-weight: 400;
	font-family: "Noto Serif JP";
	position: relative;
	margin-top: 120px;
}

main:not(#index) section#mainvisual h2 span {
	text-align: center;
	font-size: 40px;
	font-family: "AlexBrush";
	display: block;
	margin-top: 20px;
}

main:not(#index) section#mainvisual h2::before {
	content: '';
	position: absolute;
	top: -80px;
	left: calc(50% - 26px);
	background: url(../img/common/logo_mark_white.svg);
	width: 52px;
	height: 56px;
}

main section h3 {
	text-align: center;
	font-size: 30px;
	font-family: "Noto Serif JP";
	position: relative;
	margin: 80px 0 40px;
}

main section h3 span {
	text-align: center;
	font-size: 24px;
	font-family: "AlexBrush";
	display: block;
	margin-top: 10px;
}

main section h3::before {
	content: '';
	position: absolute;
	top: -80px;
	left: calc(50% - 26px);
	background: url(../img/common/logo_mark.svg);
	width: 52px;
	height: 56px;
}

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

/* Button */
/* ------------------------------------------------------------ */

p.btn a {
	border-radius: 25px;
    font-size: 18px;
	box-sizing: border-box;
	width: 220px;
	height: 50px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

p.btn.type1 a {
	border: 1px #bd2135 solid;
	background: #fff url(../img/common/btn_arrow1.svg) no-repeat center right 10px;
	background-size: 10px 16px;
	color: #bd2135;
}

p.btn.type2 a {
	border: 1px #fff solid;
	background: #bd2135 url(../img/common/btn_arrow2.svg) no-repeat center right 10px;
	background-size: 10px 16px;
	color: #fff;
}

/* Pagination */
/* ------------------------------------------------------------ */

nav.navigation.pagination {
	padding: 80px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav.navigation.pagination h2 {
	display: none;
}

nav.navigation.pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
}

nav.navigation.pagination ul.page-numbers li:first-of-type,
nav.navigation.pagination ul.page-numbers li:last-of-type {
	display: none;
}

nav.navigation.pagination ul.page-numbers li .page-numbers {
	background: #fff;
	color: #231815;
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav.navigation.pagination ul.page-numbers li .page-numbers.current {
	background: #bd2135;
	color: #fff;
}

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

main section .dllist {
	position: relative;
}

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

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

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

main section .dllist .dlbox .wrap {
	line-height: 1.7;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section .dllist .dlbox .dtbox .wrap {
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

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

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

main section#form .must {
	background: #ff7c56;
	color: #fff;
	font-size: 12px;
	margin-top: 5px;
	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 #727171 solid;
	background: #fff;
	font-size: 16px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
}

main section#form select {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	font-size: 16px;
	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 #727171 solid;
	background: #fff;
	font-size: 16px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

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

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

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

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

/*Custom CheckBox*/
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 #df4360;
	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 input:checked + .custom_check,
main section#form .check label input:checked ~ .custom_check {
	background: #df4360;
}
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;
}

/*Custom radio button*/
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 #727171;
	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 #df4360;
}
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: #df4360;
	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 .btn_area {
	width: 1000px;
	margin: 40px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#form .btn_submit {
	background: #ff7c56;
	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: #ff7c56;
}

main section#form .mw_wp_form_complete p {
	text-align: center;
	line-height: 1.7;
}

/* Breadcrumb */
/* ------------------------------------------------------------ */

main section#breadcrumbslist {
	background: #bd2135;
	color: #fff;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

ul.breadcrumbs {
    display: flex;
	flex-wrap: wrap;
}
ul.breadcrumbs li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
}
ul.breadcrumbs li::after {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
ul.breadcrumbs  li:last-child {
	margin-right: 0;
	padding-right: 0;
}
ul.breadcrumbs  li:last-child::after {
	content: normal;
}
ul.breadcrumbs li a {
    color: #fff;
}

ul.breadcrumbs li a span {
	position: relative;
}

ul.breadcrumbs li a span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

ul.breadcrumbs li a:hover span::after {
	background: #fff;
	bottom: -3px;
}

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

footer {
	background: #f8e8ea url(../img/index/bg_logo.png) no-repeat;
	background-size: 444px 479px;
	background-position-x: calc(50% - 160px);
	background-position-y: -80px;
	padding: 60px 0 80px;
	border-bottom: 10px #bd2135 solid;
}

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

footer h1 {
	width: 320px;
}

footer address {
	font-size: 18px;
	font-style: normal;
	line-height: 1.7;
	margin-top: 20px;
}

footer nav {
}

footer nav ul {
	width: 390px;
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

footer nav ul li:nth-of-type(1),
footer nav ul li:nth-of-type(2),
footer nav ul li:nth-of-type(4),
footer nav ul li:nth-of-type(5) {
	flex-basis: 33.333%;
}

footer nav ul li:nth-of-type(n+4) {
	margin-top: 20px;
}

footer nav ul li a {
	background: url(../img/common/menu_arrow.svg) no-repeat left center;
	background-size: 10px 16px;
	color: #221815;
    font-size: 18px;
	white-space: nowrap;
	padding-left: 15px;
	display: block;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

footer nav ul li a span {
	position: relative;
}

footer nav ul li a span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

footer nav ul li a:hover span::after {
	background: #221815;
	bottom: -3px;
}

footer nav ul li a.active span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #221815;
	position: absolute;
	bottom: -3px;
	left: 0;
}

footer nav ul li:nth-of-type(7) a {
	border-radius: 20px;
	border: 1px #221815 solid;
	background-image: none;
	background-color: #fff;
    font-size: 18px;
	box-sizing: border-box;
	width: 220px;
	height: 40px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer nav ul li:nth-of-type(7) a:hover {
	background: #231815;
	color: #fff !important;
}

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

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

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

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

.pagetop {
	border-radius: 60px;
	width: 60px;
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
}

.pagetop a {
	display: block;
}

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

}