@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;
	
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover{
	opacity: .7;
}

body{
	font-size: 14px;
	background: var(--bg-gray);
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper{
	min-width: 1245px;
}

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;
}

input[type=submit]{
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

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

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

	/*Colors*/
	--light-blue: #7e96a8;
	--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: 40px auto;
	--footer-margin: 20px auto;
	--general-margin: 10px 0;
	--general-margin-2: 20px 5px;
	--st-margin: 20px auto;
	--btn-margin: 20px auto;
	--btn-padding: 10px;
	--general-padding: 12px 20px;
}

.content {
    width: 1245px;
    overflow: hidden;
    margin: var(--content-margin);
    padding: var(--general-padding);
}

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

/*text*/
.text-box {
	color: var(--dark-gray);
    line-height: 1.7;
}
.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;
}
.justify-center {
    justify-content: center;
}
.align-center {
	align-items: center;
}
.pc-column {
    flex-direction: column;
    gap: 1em;
}
.gap-1 {
	gap: 1em;
}
.gap-6 {
	gap: 6em;
}

/*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);
}

.pankuzu {
    max-width: 1245px;
    margin: auto;
    padding: 2em 0;
}
.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: 4em;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

/*ヘッダー
----------------------------------------------------------------------------------------------------*/
header {
    position: relative;
    z-index: 10;
    height: 74px;
    background: var(--header-color);
    color: var(--white);
}
.head-inner {
    padding: 15px 28px;
}
.logo-box {}
.logo-box img {
    height: 40px;
}
.nav-box {}
.nav-box ul {}
.nav-box li {}
.nav-box a {
    font-weight: bold;
}

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

#main_title {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    margin: auto;
    width: fit-content;
    transform: translateY(-50%);
}
#main_title h1 {
    font-size: 4em;
    font-weight: bold;
    text-align: center;
}
#main_title p {
    font-size: 2em;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 4px;
}
#main_title img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit:contain;
    margin: 2em auto;
}

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

#main{}

/*con01*/

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

/*con02*/

.con02 {}

.con02 .about-title {
    font-family: 'Noto sans japanese', sans-serif;
    font-weight: 800;
    text-align: center;
    font-size: 5em;
    color: #333333;
    margin: 12px auto 24px;
}

.con02 figure,
.con03 figure {
    width: 49%;
}
.con02 figure img,
.con03 figure img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}
.con02 .flex-inner,
.con03 .flex-inner {
    width: 49%;
}

.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 {
    width: 49%;
}
.con04 figure img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    object-fit: cover;
    object-position: top;
}
.con04 .flex-inner {
    width: 49%;
    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: 19/4;
    object-fit: cover;
    object-position: center -191px;
}

.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 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 .flex-inner img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}
.con06 .flex-inner {
    width: 30%;
}
.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: 3em;
    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 {}


/*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 {
    width: 30%;
}
.con08 .text-box {
    padding: var(--general-padding);
    height: 100%;
}
.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 {}
.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: 3em;
    /* width: 100%; */
    text-align: center;
}
.con11 .text-box {
    text-align: center;
    margin: var(--general-margin-2);
    font-size: 1.2em;
}
.con11 table {
    margin: 1em 0;
}
label {}
input[type='radio'] {}
input[type='text'] {
    height: 4em;
    width: 100%;
    padding: var(--general-padding);
}
select {
    height: 4em;
    width: 100%;
    padding: var(--general-padding);
}
textarea {
    height: 8em;
    width: 100%;
    padding: var(--general-padding);
}
button {
	border: none;
}
#reserve_send {
    background: var(--gray);
}

/*con12*/

.con12 .blog-list ul {
    grid-template-columns: repeat(3,calc(1177px/3));
}

/*con13*/

.con13 {}
.con13 ul {}
.con13 li {
    width: 32%;
}
.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 {
    width: 1245px;
    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);
}
.footer-bottom .footer-inner ul {
    display: flex;
    gap: 1em;
    color: #78829f;
    margin: 1em 0;
}
.footer-bottom .footer-inner ul li {
}
.footer-bottom .footer-inner ul li a {
    display: block;
    width: 100%;
}
.footer-bottom small {}

.footer-fixed {}
.footer-fixed li {
	cursor: pointer;
}
.footer-fixed .to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    color: var(--white);
    background: rgb(0 0 0 / 45%);
    position: fixed;
    right: 4em;
    bottom: 1em;
}

.to-top{
	position: fixed;
	bottom: 20px;/*適宜変更*/
	right: calc( 50% - /*コンテンツ幅の半分の値*/ );/*適宜変更 これはコンテンツ幅の右に合わせる場合の指定です*/
	z-index: 99;/*適宜変更・削除*/

	display: inline-block;/*必要があれば適宜変更*/
}
.footer-fixed a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.pagetop img{
	/*アイコンを置く場合などは適宜サイズ指定など追加。*/
}

/*index*/

.gum2 ul {
    overflow: hidden;
}
.gum2 ul li {
    float: left;
    display: block;
}
.wide-view a {
    display: block;
    width: 90%;
    margin: auto;
    color: #fff;
    background: url(./img/index/arrow-right.png)no-repeat center #03a9f4;
    background-size: 14px;
    background-position-x: 90%;
}
.gum2 ul:first-of-type li.gi-text {
    float: right !important;
}
.gum2 ul li {
    float: left;
    display: block;
}
.wide-view .gi-imgbox img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
.togym-btn {
    font-size: 2rem;
}
.gum2 ul li.gi-text {
    padding: 24px 10px;
}
 .gum2 ul li.gi-text p {
    line-height: 150%;
}
.btn-box {
    margin: 20px 0;
    text-align: center;
}
.morebtn-b {
    display: inline-block;
    font-family: 'Noto sans japanese', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    background: #03a9f4;
    text-align: center;
    width: 90%;
    height: 50px;
    line-height: 79px;
    border: 0;
	font-size: 2rem;
	height: 84px;
}
.morebtn-b:before {
    content: " ";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url(./img/index/arrow-right.png)no-repeat center;
    background-size: cover;
    vertical-align: middle;
}

.gi-text p {
	font-family: "Rounded Mplus 1c",sans-serif;
	font-size: 18px;
}















