@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:https://www.ogcfight.co.jp/
File name:common_sp.css
Summary:reset styles
Created:2022-03-01
--------------------------------------------------------------- */

@media screen and (max-width: 1120px) {

body {
	font-size: 14px !important;
}

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

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

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

img,
a {
	-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: 20px 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: none !important;
}

.sp_mode {
	display: inherit !important;
}

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

header {
	position: relative;
	z-index: 2;
}

header .inner {
	background: #fff;
	width: 100%;
	height: 50px;
	position: fixed;
}

header .inner .header_area > div {
    height: 50px;
	padding: 0;
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .inner .header_area h1 {
	width: 200px;
	margin-left: 4vw;
}

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

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

header .inner.open {
	position: fixed !important;
	top: 0px !important;
	margin-top: 0 !important;
	z-index: 99;
}

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

/* Nav_toggle */
/* ------------------------------------------------------------ */

#nav_toggle {
    cursor: pointer;
}

#nav_toggle > div {
    position: relative;
	background: #1e905a;
    width: 50px;
	height: 50px;
}

#nav_toggle span {
    width: 30px;
    height: 2px;
    left: 10px;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
}

#nav_toggle span:nth-child(1) {
    top: 16px;
}

#nav_toggle span:nth-child(2) {
    top: 24px;
}

#nav_toggle span:nth-child(3) {
    top: 32px;
}
/*
#nav_toggle:hover span:nth-child(1) {
	top: 10px;
}

#nav_toggle:hover span:nth-child(3) {
	top: 18px;
}
*/

.open #nav_toggle span:nth-child(1) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav_toggle span:nth-child(2) {
    top: 24px;
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

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

#global_nav {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global_nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#global_nav ul {
    list-style: none;
}

#global_nav ul:nth-of-type(1) {
    order: 2;
}

#global_nav ul:nth-of-type(2) {
    order: 1;
}

#global_nav ul li {
	text-align: center;
    font-size: 16px;
    display: block;
    margin: 20px 0 0;
	opacity: 0;
	/*transform: translateX(200px);*/
	transition: transform 0.3s ease, opacity 0.1s ease;
}

#global_nav ul li:nth-of-type(1) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(2) {
    transition-delay: .2s;
}

#global_nav ul li:nth-of-type(3) {
    transition-delay: .3s;
}

#global_nav ul li:nth-of-type(4) {
    transition-delay: .4s;
}

#global_nav ul li:nth-of-type(5) {
    transition-delay: .5s;
}

#global_nav ul li:nth-of-type(6) {
    transition-delay: .6s;
}

#global_nav ul li:nth-of-type(7) {
    transition-delay: .7s;
}

#global_nav ul li a {
	border-radius: 20px;
	border: 1px #fff solid;
	box-sizing: border-box;
	width: 220px;
	height: 40px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.open #global_nav {
    visibility: visible;
    opacity: 1;
}

.open #global_nav li {
    opacity: 1;
	/*transform: translateX(0);*/
	transition: transform 0.5s ease, opacity 0.9s ease;
}

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

main section#breadcrumbslist {
	background: #efefef;
	color: #221815;
	height: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section#breadcrumbslist .inner {
    padding: 0 4vw !important;
}

ul.breadcrumbs {
	display: flex;
}
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;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
ul.breadcrumbs  li:last-child::after {
	content: normal;
}
ul.breadcrumbs li a {
	color: #221815;
}
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;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.breadcrumbs li a:hover span::after {
	background: #221815;
	bottom: -3px;
}

ul.breadcrumbs li span {
	white-space: nowrap;
}

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

main:not(#index) {
	padding-top: 50px;
}

main > section:not(#mainvisual) .inner {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 40px 4vw;
}

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

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

main:not(#index) section#mainvisual .inner {
	box-sizing: border-box;
	width: 100%;
	height: 125px;
	margin: 0 auto;
	padding: 0 4vw;
	display: flex;
	align-items: center;
}

main:not(#index) section#mainvisual h2 {
	color: #fff;
	font-size: 16px;
	text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.75);
}

main:not(#index) section#mainvisual h2 span {
	font-size: 24px;
	display: block;
	margin-top: 5px;
}

main:not(#index) section h3 {
	color: #1e905a;
	font-size: 24px;
	margin-bottom: 20px;
}

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

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

.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	text-decoration: none;
	background: #1e905a;
	overflow: hidden;
	position: relative;
}

.btn a::before,
.btn a::after {
	box-sizing: border-box;
	transition: 0.3s ease-in-out;
}

.btn a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #5eaf88;
	transform: translateX(-100%);
}

.btn a:hover::before {
	transform: translateX(0);
}

.btn a span {
	position: relative;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
	margin-right: -0.1em;
}

.btn a img {
	position: absolute;
	top: calc(50% - 5px);
	right: 10px;
	width: 8px;
	height: 12px;
}

/* Group */
/* ------------------------------------------------------------ */
main section#group .inner h3 {
	font-size: 24px;
	color: #221815;
}

main section#group .inner ul {
	margin-top: 20px;
	display: block;
}

main section#group .inner ul li {
}

main section#group .inner ul li:nth-of-type(n+2) {
	margin-top: -1px;
}

main section#group .inner ul li a {
	box-sizing: border-box;
	border: 1px #221815 solid;
	width: 100%;
	height: auto;
	display: block;
}

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

main section .dllist {
}

main section .dllist .dlbox {
	border-bottom: 1px #221815 solid;
	width: 100%;
	display: block;
}

main section .dllist .dlbox:nth-of-type(1) {
	border-top: 1px #221815 solid;
}

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

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

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

main section .dllist .dlbox .wrap,
main section .dllist .dlbox p {
	line-height: 1.8;
}

main section .dllist .spacer {
	width: 100%;
}

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

main section#form .must {
	background: #1e905a;
	color: #fff;
	font-size: 10px;
	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 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-radius: 3px;
	border: 1px #221815 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 40px;
	padding: 10px;
	box-sizing: border-box;
}

main section#form select {
	border-radius: 3px;
	border: 1px #221815 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 40px;
	padding: 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

main section#form textarea {
	border-radius: 3px;
	border: 1px #221815 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

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

main section#form input[type="text"].zip {
	width: 40%;
}

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

/*Custom Select
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: #727171;
	border-style: solid;
	position: absolute;
	right: 20px;
	top: 15px;
	transform-origin: center;
	transform: rotate(45deg);
}
*/
/*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 #1e905a;
	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: #1e905a;
}
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 #1e905a;
}
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: #1e905a;
	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: 100%;
	margin: 20px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

main section#form .btn_submit:hover {
	background: #5eaf88;
}

main section#form .mw_wp_form_complete p {
	text-align: left;
	line-height: 1.8;
	margin-top: 20px;
}

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

footer {
	background: #ededed;
	border-bottom: 25px #1e905a solid;
	overflow: hidden;
}

footer .inner {
	box-sizing: border-box;
	width: 100%;
	padding: 40px 4vw 20px;
	display: block;
}

footer h1 {
	width: 200px;
	margin-bottom: 20px;
}

footer address {
	font-style: normal;
}

footer address p {
	font-size: 14px;
	margin: 15px 0 0;
}

footer nav {
	display: none;
}

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

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

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

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

.pagetop {
	width: 250px;
	margin: 0 auto;
}

.pagetop a {
	background: #1e905a;
	color: #fff;
	width: 250px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

}