@charset "utf-8";
/* CSS Document */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*設定する場合→ font-family:'Noto sans japanese', sans-serif; を追加*/
/*同時に他のWEBフォントを使う場合はhtml側に記載すること*/


html {
    scroll-behavior: smooth;
}
*{
	box-sizing: border-box;
}
a{
    text-decoration: none;
	color: inherit;
}
body{
	font-size: 14px;
	background: var(--bg-gray);
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper{
	min-width: 320px;
	max-width: 600px;
	margin: 0 auto;
}

img{
	vertical-align: bottom;
}

input[type=text],input[type=tel],input[type=email],
input[type=submit],
input[type=button]{
	-webkit-appearance: none;
	border: 1px solid #999999;
}

.for-pc{
	display: none !important;
}

.sp-br{
	display: block;
}

/*共通
----------------------------------------------------------------------------------------------------*/
:root{

	/*Colors*/
	--light-blue: #7e96a8;
	--light-blue2: #466caa;
	--middle-light-blue: #165baa;
	--blue: #284575;
	--midium-blue: #284575;
	--dark-blue: #0b1930;
	--green: #449265;
	--gray: #f6f6f6;
	--dark-gray: #676767;
	--black: #000;
	--white: #fff;

	/*Style Guide*/
	--bg-gray: var(--gray);
	--bg-white: var(--white);
	--header-color: var(--blue);
	--st-green: var(--green);
	--st-blue: var(--middle-light-blue);
	--foot-top: var(--midium-blue);
	--foot-bottom: var(--dark-blue);

	/*Margin&Padding*/
	--content-margin: 20px auto;
	--footer-margin: 12px auto;
	--general-margin: 10px 0;
	--general-margin-2: 20px 5px;
	--st-margin: 12px auto;
	--btn-margin: 12px auto;
	--btn-padding: 10px;
	--general-padding: 6px 12px;
}

.content{
	min-width: 320px;
	max-width: 600px;
	margin: 12px;
	padding: 12px;
	overflow: hidden;
}


/*background-color*/
.bg-white {
	background: var(--bg-white);
}

/*text*/
.text-box {
	color: var(--dark-gray);
	padding: 1em 0;
	line-height: 1.4;
}
.t-red {
    color: red;
    padding: 0.4em 0;
    line-height: 1.7;
}
.text-midium {
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.7;
}
.text-blue {
    color: var(--middle-light-blue);
}
.text-link {
    color: var(--middle-light-blue);
}


/*margin*/
.mb-1 {
    margin-bottom: 1em;
}

/*flex*/
.flex-box {
    display: flex;
}
.flex-inner {}
.flex-reverse {
	flex-direction: row-reverse;
}
.justify-between {
	justify-content: space-between;
}
.align-center {
	align-items: center;
}
.sp-column {
	flex-direction: column;
    gap: 1em;
}
.gap-1 {
	gap: 1em;
}
.gap-6 {
	gap: 2em;
}

/*button*/
.btn {
    width: fit-content;
    background: var(--middle-light-blue);
    color: var(--white);
    padding: var(--btn-padding);
    margin: var(--btn-margin);
    display: block;
    text-align: center;
}

/*banner*/
.banner-box {
    width: fit-content;
    margin: auto;
}
.banner-box img {
	width: 100%;
}

/*title*/
h2 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin: var(--st-margin);
    color: var(--st-blue);
}
h3 {
    font-size: 1.5em;
    margin-bottom: var(--st-margin);
}
h4 {
    text-align: center;
    font-size: 1.2em;
    margin: var(--general-margin-2);
    color: var(--dark-gray);
}
.sst {
    display: block;
    font-weight: bold;
    margin: 1em 0 0.4em;
}

/*table*/
.table-box {
    margin: var(--content-margin);
    width: 100%;
}
.table-box table {
    width: 100%;
    color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
    border-bottom: none;
    border-right: none;
}
.table-box thead {}
.table-box thead tr {
    border-bottom: 1px solid var(--dark-gray);
}
.table-box thead th {
    padding: var(--general-padding);
    border-right: 1px solid var(--dark-gray);
    font-weight: bold;
}
.table-box thead td {
    padding: var(--general-padding);
    border-right: 1px solid var(--dark-gray);}
.table-box tbody tr {
    border-bottom: 1px solid var(--dark-gray);
}
.table-box tbody tr:nth-child(odd) {
    background: var(--gray);
}
.table-box tbody tr:nth-child(even) {
    background: var(--white);
}
.table-box tbody th {
    padding: var(--general-padding);
    border-right: 1px solid var(--dark-gray);}
.table-box tbody td {
    padding: var(--general-padding);
    border-right: 1px solid var(--dark-gray);
}

header {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 74px;
    background: var(--header-color);
    color: var(--white);
}
.head-inner {
    padding: 17px;
}
.logo-box {}
.logo-box img {
    height: 40px;
}
.nav-box {
    position: fixed;
    top: 74px;
    right: -80%;
    width: 80%;
    z-index: 999;
    transition: 0.7s ease-in-out;
}
.nav-box.show {
    right: 0;
    transition: 0.7s ease-in-out;
}
.nav-box ul {
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: var(--light-blue2);
    padding: 2em;
    gap: 2em;
}
.nav-box li {
    font-size: 1.4em;
    color: var(--gray);
}
.nav-box a {
    font-weight: bold;
}

.sp-menu {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}
.sp-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.sp-menu-inner span {
    position: absolute;
    height: 2px;
    width: 72%;
    margin: 2px auto;
    left: 0;
    right: 0;
    background: var(--light-blue);
}
.sp-menu-inner span:first-of-type {
    top: 12px;
}
.sp-menu-inner span:nth-of-type(2) {
	opacity: 1;
}
.sp-menu-inner span:last-of-type {
    bottom: 12px;
}

.sp-menu.show {}
.show .sp-menu-inner {}
.show .sp-menu-inner span {
    position: absolute;
    transition: 0.7s;
}
.show .sp-menu-inner span:first-of-type {
    transform: rotate(45deg);
    top: unset;
}
.show .sp-menu-inner span:nth-of-type(2) {
    opacity: 0;
}
.show .sp-menu-inner span:last-of-type {
    transform: rotate(-45deg);
    bottom: unset;
}

#main_image {
    height: 380px;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.slider-box {}
.slider-box ul {}
.slider-box li {}
.slider-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

#main_title {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    width: fit-content;
    transform: translateY(-50%);
}
#main_title img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 1em auto;
}
#main_title h1 {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
}

.pankuzu {
    margin-top: 74px;
    padding: 1em 1em;
}
.pankuzu ul {
    display: flex;
    gap: 1em;
}
.pankuzu li {
    display: flex;
    align-items: center;
}
.pankuzu li::after {
    content: '>';
    margin-left: 1em;
    font-size: 0.8em;
    color: #c1c1c1;
}
.pankuzu li:last-child::after{
    content: unset;
}
.pankuzu a {
    color: #4397CB;
}


/*浦和オープン前対応*/

.notready {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000a6;
    z-index: 9;
}
.notready p {
    font-family: 'Noto Sans Japanese', sans-serif;
    font-size: 2.2em;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/

#main{}

/*con01*/

.con01 {}
.covid-19 {
    display: block;
    border: 2px solid var(--green);
    margin: 1em 0;
    padding: 1em;
}

/*con02*/

.con02 {}

.con02 .about-title {
    font-family: 'Noto sans japanese', sans-serif;
    font-weight: 800;
    text-align: center;
    font-size: 3em;
    color: #333333;
    margin: 12px auto 24px;
}
.con02 figure,
.con03 figure {}
.con02 figure img,
.con03 figure img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}
.con02 .flex-inner,
.con03 .flex-inner {}

.con02 .btn {
    margin: 1em 0;
}

/*con03*/

.con03 {}
.seminer {}
.seminer thead {}
.seminer thead tr {}
.seminer thead th {}
.seminer thead td {}
.seminer tbody {}
.seminer tbody tr {}
.seminer tbody th {}
.seminer tbody td {}

/*con04*/
.con04 {}
.con04 .flex-box {
	margin: var(--general-margin);
}
.con04 figure {}
.con04 figure img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    object-fit: cover;
    object-position: top;
}
.con04 .flex-inner {
    color: var(--dark-gray);
}
.profile {
    margin: var(--general-margin);
}
.profile li {
    margin: var(--general-margin);
}

/*con05*/
.con05 {}
.price {}
.price thead {}
.price thead tr {}
.price thead th {}
.price thead td {}
.price tbody {}
.price tbody tr {}
.price tbody th {}
.price tbody td {}
.price tbody td p {
    font-weight: bold;
    margin: var(--general-margin);
}
.price tbody td span {}

/*con06*/
.con06 {}
#kawagoe-img {}
#kawagoe-img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.con06 .flex-box a {
    position: relative;
}
.con06 .flex-box a::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url('./../img/icon/list-arrow.png') no-repeat center;
    background-size: contain;
    position: absolute;
    right: 4px;
    bottom: 4px;
}

.con06 .flex-inner img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}
.con06 figure {
    position: relative;
}
.con06 .no-ready figure::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: #0000007d;
    position: absolute;
    z-index: 1;
    top: 0;
}
.con06 figcaption {
    font-family: 'Noto sans japanese', sans-serif;
    position: absolute;
    left: 12px;
    top: 12px;
    font-weight: 800;
    font-size: 3em;
    color: #fff;
    line-height: 1.4;
}
.con06 .text-box {
    padding: var(--general-padding);
}
.con06 .faq-btn.active .text-box {
    background: var(--middle-light-blue);
    color: #fff;
}
.con06 .btn {
    margin: 0;
}

.tel-link {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--middle-light-blue);
    padding: 0.4em 0;
    display: block;
}
.google-banner {
    text-align: center;
    margin: 0 0 2em;
}
.google-banner-link {}
.google-banner-link img {
	width: 100%;
}


/*con07*/
.con07 {}

.week-schedule {}
.week-box {}
.week-inner {}
.week-inner ul {
    border: 1px solid var(--middle-light-blue);
    border-right: none;
}
.week-inner li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    color: var(--middle-light-blue);
    border-right: 1px solid var(--middle-light-blue);
    cursor: pointer;
}
.schedule-box {}
.schedule-list {
    display: none;
}
.schedule-box table {
    border: 1px solid var(--middle-light-blue);
    border-top: none;
    width: 100%;
}
.schedule-box tbody {}
.schedule-box tbody tr {
    border-bottom: 1px solid var(--middle-light-blue);
}
.schedule-box tbody th {
    padding: var(--general-padding);
    width: 10%;
    font-weight: bold;
}
.schedule-box tbody td {
    padding: var(--general-padding);
    color: var(--middle-light-blue);
}
.active {
    background: var(--middle-light-blue) !important;
    color: #fff !important;
}

/*con08*/
.con08 figure {
    width: 100%;
}
.con08 img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}
.con08 .flex-inner {}
.con08 .text-box {
    padding: var(--general-padding);
}
.con08 .faq-btn.active .text-box {
    background: var(--middle-light-blue);
    color: #fff;
}

/*con09*/
.con09 {}
.faq-list {}
.faq-box {
    margin: var(--general-margin);
}
.faq-box dl {}
.faq-box dt {
    padding: var(--general-padding);
    background: var(--gray);
    color: var(--dark-gray);
}
.faq-box dd {
    padding: var(--general-padding);
}
.faq-box dt p {}
.faq-box dd p {
    line-height: 1.4;
    color: var(--dark-gray);
}
.acc-title {
    cursor: pointer;
}
.acc-inner {
    display: none;
}
.faq-box:first-child .acc-inner {
    display: block;
}

/*con11*/
.con11 {}
.blue-tel-link {
    display: block;
    color: var(--middle-light-blue);
    font-weight: bold;
    font-size: 2.2em;
    /* width: 100%; */
    text-align: center;
}
.con11 .text-box {
    text-align: center;
    font-size: 1.2em;
}
.con11 table {
    margin: 1em 0;
}
label {}
input[type='radio'] {}
input[type='text'] {
    height: 3em;
    width: 100%;
    padding: var(--general-padding);
}
select {
    height: 3em;
    width: 100%;
    padding: var(--general-padding);
}
textarea {
    height: 8em;
    width: 100%;
    padding: var(--general-padding);
}
button {
	border: none;
}
#reserve_send {
    background: var(--gray);
}


/*con13*/

.con13 {}
.con13 ul {}
.con13 li {}
.con13 dl {
    background: #fff;
    color: var(--dark-gray);
    padding: 2em;
    height: 100%;
}
.con13 dt {
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: 1px solid;
    padding-bottom: 6px;
}
.con13 dd {
    padding: 6px 0;
    line-height: 1.4em;
}

/*フッター
----------------------------------------------------------------------------------------------------*/

footer {}

.google-map {
    height: 320px;
}
.google-map iframe {}

.footer-inner {
    margin: var(--footer-margin);
}
.footer-top {
    background: var(--foot-top);
    color: var(--light-blue);
    padding: var(--general-padding);
}
.footer-top .gym-name {
	color: var(--st-green);
}
.footer-top ul {}
.footer-top li {}
.footer-bottom {
    background: var(--foot-bottom);
    color: var(--blue);
    padding: var(--general-padding);
    padding-bottom: 52px;
}
.footer-bottom .footer-inner ul {
    color: #78829f;
}
.footer-bottom .footer-inner ul li {
    display: block;
    width: 100%;
}
.footer-bottom .footer-inner ul li a {
    display: block;
    width: 100%;
    padding: 0.5em 0;
}
.footer-bottom small {}

.footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
.footer-fixed li {
    cursor: pointer;
    width: calc( 50% - 26px);
    display: flex;
    justify-content: center;
    border-right: 1px solid var(--white);
    color: var(--white);
    background: var(--green);
    align-items: center;
}
.footer-fixed li:nth-child(2){
	background: var(--middle-light-blue);
}
.footer-fixed .to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px !important;
    height: 52px !important;
    color: var(--white);
    background: rgb(0 0 0 / 45%);
    border: none;
}

.footer-fixed a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}


/*index*/
.btn-box a {
    display: block;
    width: 90%;
    font-size: 16px;
    margin: auto;
    color: #fff;
    background: #03a9f4;
    padding: 18px 0;
    text-align: center;
}
.gum2 ul li.gi-text {
    margin-bottom: 10px;
}
.gi-text p {
    line-height: 160%;
    padding: 12px 0;
    line-height: 160%;
}

.gi-text {
    text-align: left;
    padding: 0 12px;
}
.gi-imgbox {
    display: block;

    overflow: hidden;
    width: 100%;
}
.gi-imgbox img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
.gi-text p {
	font-family: "Rounded Mplus 1c",sans-serif;
	font-size: 14px;
}



























