/* リセットCSS */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;	
}



/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* リセットCSSここまで */

/* ハンバーガーメニュー */
	
/*ヘッダーメニュー内*/	

.sp_in{
	align-items: center;
    display: flex;	
	width:100;
	height:100%;
	justify-content: space-between
	}

.sp_right{
	align-items: center;
    display: flex;
	justify-content: flex-end;
	margin-right:60px;
}


.tel-ico img{
	height:34px;
}
.web-ico img{
	height:34px;
	margin-left:10px;
}
	
.sp_logo img{
	width:150px;
	margin-top:10px;
	margin-left:10px;
	}	

	
.sp_header{
    width: 100%;
    height: 60px;
    position: fixed;
	z-index: 9999;
    top: 0;
    background: #fff;
    
    box-shadow: 0px 4px 10px -5px #777777;
	vertical-align: middle;
   
}	

.tel_btn img{
	width:50%;	
	}	
	
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 3;
  right : 13px;
  top   : 9px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #F63231;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  top  : 0;
  left : 0;
  color: #fff;
  font-weight: bold;	
  z-index: 2;
  background:#F63231;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  pointer-events: none;
	height:100%;
}
.fade-wrap{
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}	
	
	

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#555555;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1.5em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  pointer-events: auto;
}

#logo{
	margin-left:15px;
		
	}	
	
.nav_line{
	border: 1px dashed #d7b38e;	
	}	
	
/* ハンバーガーメニュー終わり */
	
/* スライドCSS */
/*slick setting*/
.slick-prev:before,
.slick-next:before {
  color: #000;
}
.slick-list{
  border-radius: 0 0 15px 15px;
}

/*=============
slick
=============*/

.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
}
.full div.img01 {
  background-image: url(images/img_top01.jpg);
}
.full div.img02 {
  background-image: url(images/img_top02.jpg);
}
.full div.img03 {
  background-image: url(images/img_top03.jpg);
}
/* .full div.img04 {
  background-image: url(images/img_top04.png);
}*/
.full .slick-dots {
  bottom: 4%;
  z-index: +1;
}

/* スライドCSSここまで */

/* ユーティリティ */

html{
  font-size: 14px;
  color: #111111;
  line-height: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.flex{
    display: flex;
}
.rltv{
  position: relative;
}
.deco_pipe_top01{
  position: absolute;
  z-index: -3;
  bottom: 150px;
    right: 465px;
    transform:rotate(90deg) 
}
.deco_pipe_top02{
  position: absolute;
  z-index: -3;
  bottom: 100px;
    right: 335px;
    transform:rotate(90deg) 
}
.deco_pipe01{
  position: absolute;
  z-index: -3;
  top: -50px;
    right: -65px;
}
.deco_pipe02{
  position: absolute;
  z-index: -3;
  top: -50px;
    left: -75px;
}
.deco_pipe01-1{
  position: absolute;
  z-index: -3;
  bottom: -50px;
    left: -65px;
}
.deco_pipe02-1{
  position: absolute;
  z-index: -3;
  bottom: -50px;
    right: -75px;
}
.deco_pipe03{
  position: absolute;
  z-index: -3;
  top: -50px;
    left: -75px;
}
.deco_pipe04{
  position: absolute;
  z-index: -3;
  bottom: -50px;
    right: -75px;
}
.anchor {
  display: block;
  padding-top: 10px;
  margin-top: -10px;
}


/* 汎用 */

.text_r{
	margin:0 0 0 auto;
}
.text_l{
	text-align: left;
}

.flex_c{
	display: flex;
	justify-content: center;
	min-height: 100vh; /* セクションを画面全体の高さにする場合 */
}

.red{
	color:#F63231;
}
.gray{
	color:#707070;
}
.txt_m{
	font-size:1.2rem;
}
.txt_large{
	font-size:2rem;
}

.tit_red_middle{
	color:#F63231;
	font-size: 1.5rem;
	font-weight:800;
	border-bottom:#F63231 solid 2px;
}


.txt_red_middle{
	color:#F63231;
	font-size: 1.5rem;
	font-weight:800;
}

.ct{
	text-align: center;
}

.bg_white{
	background-color: #fff;
}

.height{
	height:600px;
}

.mg_top-20{
	margin-top:-20px
}
.mg_top50{
	margin-top:100px;
}

/* 基本 */

bady{
	width:100%;
}

main{
	width:100%;
	margin:0 auto;
}

.tit_h2{
	font-size:4rem;
	color:#FBC1C1;
	font-weight:800;
	text-align: center;
	margin: 50px 0;
	line-height: 0.6;
}
.tit_h2 span{
	font-size:2rem;
	color:#FF3131;
	text-align: center;
	font-weight:800;
}

.tit_menuh2{
	font-size:2rem;
	color:#FF3131;
	text-align: center;
	font-weight:800;
	padding-bottom: 4px;
	border-bottom:3px solid #FF3131;
	width:200px;
	margin:0 auto 30px;	
}


section {
	margin:30px auto;
	width:1080px;
}




header{
	font-family: 'Noto Sans Japanese', sans-serif;	
	font-weight:500;
	width:100%;
}

.header-wrap{
	position:relative;
	width:100%;
	}

.over_header{
	position:absolute;
	top:20px;
	align-items: center;
}


.kv img{
	width:100%;
	
}

.pc-menu{
	font-weight:900;
	color:#FF3131;
	font-size:18px;
}

.pc-menu .text_link a:hover{
	border-bottom:solid 2px #FF3131;
	padding-bottom:3px;
}


.over_header ul li{
	display:inline-block;
	margin-right:20px;
	vertical-align: middle;
}
.logo{
	margin-left:20px;
}


.about_p{
	text-align: center;
}


.tit_5effect{
	font-size:1.8rem;
	color:#FF3131;
	text-align: center;
	font-weight: 900;
	margin-bottom: 50px;
}

.tit_5effect span{
	font-size:4rem;
}
.effect_p{
	margin:20px;
	color:#707070;
	font-size:1.5rem;
}

.effect_1{
	border:2px solid #FFBD39;
	width:100%;
}
.tit_effect_1{
	color:#fff;
	background-color:#FFBD39;
	padding:10px;
	font-size:2rem;
	font-weight:500;
}

.effect_2{
	border:2px solid #F63231;
	width:100%;
}
.tit_effect_2{
	color:#fff;
	background-color:#F63231;
	padding:10px;
	font-size:2rem;
	font-weight:500;
}

.effect_3{
	border:2px solid #4AD987;
	width:100%;
}
.tit_effect_3{
	color:#fff;
	background-color:#4AD987;
	padding:10px;
	font-size:2rem;
	font-weight:500;
}

.effect_4{
	border:2px solid #316EF6;
	width:100%;
}
.tit_effect_4{
	color:#fff;
	background-color:#316EF6;
	padding:10px;
	font-size:2rem;
	font-weight:500;
}

.effect_5{
	border:2px solid #9B31F6;
	width:100%;
}
.tit_effect_5{
	color:#fff;
	background-color:#9B31F6;
	padding:10px;
	font-size:2rem;
	font-weight:500;
}


.tit_effect_r{
	float: right;
	opacity: 0.5;
}

/* 比較表 */

.com{
	margin-top:
	10%;	
	}
.comparison{
	font-weight:800;
	color: #707070;
}

.comparison　tr{
	background-color: #fff;
}
.comparison table {
  width: 100%;
  border-collapse: collapse;
}

.comparison td{
  border: 1px solid #fff;
  padding: 10px;
}

td.hidden {
  border:none;
}

td.rounded {

	background-color: #FF3131;
	color:#fff;
	border: 4px solid #FF3131;
	height: 80px;
}

td.shifted {
  
	 height: 60px; /* セル2の高さを60pxに設定 */
}
.dark{
	background-color: #555;
	color:#fff;
}
.light_dark{
	background-color: #F4F4F4;
}


.comparison td:nth-child(2) {
  border-top: 1px solid #FF3131;
  border-bottom: 1px solid #FF3131;
  border-left: 3px solid #FF3131;
  border-right: 3px solid #FF3131;
}

.comparison tr:last-child td:nth-child(2) {
  border-top: 1px solid #FF3131;
  border-left: 3px solid #FF3131;
  border-right: 3px solid #FF3131;
  border-bottom: 3px solid #FF3131;

}

.comparison tr:first-child td {
  text-align: center;
vertical-align: middle;
font-size:1.2em;	
}
.comparison td:first-child {
  text-align: center;
	vertical-align: middle;
	font-size:1.2em;	
}


.com{
	position: relative;
	margin-bottom: 150px;
}
.combg_pink{
	position: absolute;
	left: 0;
	top: -50px;
	background-color:#FDDEDE;
	width:90%;
	height:650px;
	padding:50px;
	z-index: -1;
	border-radius: 0 50px 50px 0;
}





.footer_nav_container{
	background-color:#FF3131;
	color:#fff;	
	margin:0 auto;
	padding:20px;
}

.footer_nav_container ul li{
	display:inline-block;
	margin-right:20px;
	vertical-align: middle;
}

.footer_nav{
	text-align: center;
}

.copy{
	background-color:#555555;
	color:#fff;
	text-align: center;
	width:100%;
	font-size:0.8rem;
	padding:1rem 0;
}



/*メニューボタン*/
.menu_btn{
	font-size:1.5rem;

}


.menu_btn a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 50%;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #F63231;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 3px;
    border-radius: 50px;
    overflow: hidden;
}
.menu_btn a:before{
content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient( 
130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
    -webkit-transition: 0.5s;
    transition: 0.6s;
}
.menu_btn a:hover:before {
    left: 100%;
}
.menu_btn a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}

/*メニューボタンここまで*/

.menu-area{
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-area .box {
  width: calc(20% - 20px); /* 5つのボックスを横並びにするため、幅を計算して割り当てます */
  margin-bottom: 20px;
  margin-right: 20px; /* ボックス間の間隔を20pxに設定 */
  border:#FF3131 2px solid;	
}

.menu-area .box:last-child {
  margin-right: 0; /* 最後のボックスには間隔を付けない */
}

.menu-area .box img{
	width:100%;
}

.menu-area .box p{
 padding:10px;
color:#555;
	font-weight: 800;
}

.menu-area a:hover{
	display: block;
	opacity: 0.7;
}


.menu-area .box p::after {
 content: '\f138';
 font-family: "Font Awesome 5 Free";
color:#FF3131;	
}


.trainer{
	position: relative;
}
.bg_pink{
	position: absolute;
	right: 0;
	top: -50px;
	background-color:#FDDEDE;
	width:90%;
	height:600px;
	padding:50px;
	z-index: -1;
	border-radius: 50px 0 0 50px;
}

.trainer_img{
	display: flex;
	justify-content:space-around;
	
}
.trainer_img li{
	width:450px;
}

.trainer_img img{
	width:100%;
}




.accses_in{
	display: flex;
	justify-content:space-around;
	font-weight: 800;
	color: #707070;
}


.accses_txt{
	flex:6;
	margin:30px 0 50px;
}
.accses_photo{
	flex:4;
	
}

.accses_txt img{
	width:90%;
}


.border_news{
	border-top:dashed #FF3131 1px;
	font-size:1rem;
	coror:#707070;
	padding:10px;
}

.border_news span{
	font-size:0.8rem;
	background-color:#707070;
	color:#fff;
	padding:3px 10px;
	margin: 0 20px;
	border-radius: 10px;
}
.border_bottom{
	border-bottom:dashed #FF3131 1px;	
}

.news{
	position: relative;
	margin-bottom: 150px;
}
.newsbg_pink{
	position: absolute;
	left: 0;
	top: -50px;
	background-color:#FDDEDE;
	width:90%;
	height:400px;
	padding:50px;
	z-index: -1;
	border-radius: 0 50px 50px 0;
}
.news section{
	width:800px;
}


	.relative{
		position:relative;
	}	
	.absolute{
		position:absolute;
		top:-50px;
		right:-30px;
		width:100px !important;
	}	





/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/* メニューページ */
/* ============================================ */




.menupage_wap{
	margin-top:50px;
}

.menu_box{
	margin:10px auto;
	width:1080px;
	}
	



.menu_bg_pink{
	background-color: #FDDEDE;
}

.menu_container{
	display:flex;
	padding:20px;
}

.position_none{
	position: static;
	margin-top: 20px ;
}


.menu_left, .menu_right {
  margin: 20px;
  flex: 1;
}

.menu_ico{
	font-size: 0.8rem;
    background-color: #FF3131;
    color: #fff;
    padding: 2px 10px;
    margin: 2px 10px;
    border-radius: 15px;
    display: inline-block;

}
.menu_container table{
	font-size:1.2rem;
	font-weight:500;
}

.menu_container table th{
	width: 20%;
	
}

.video_wrap{
	text-align: center;

}


.video_wrap video{
	width: 70%;
}


/* スマホ対応 */

@media screen and (max-width: 1400px) {
  .Tabnone{
    display: none;
  }
}

@media screen and (min-width: 1399px) {
  .tabSPnav{
    display: none;
  }
}


@media screen and (min-width: 767px) {
  .pcNone{
    display: none;
  }
}
@media screen and (max-width: 766px) {
  .spNone{
    display: none;
  }
  
  header{
    width: 90%; 
  }
	
	section,.news section{
		width:96%;
	}	
	section img{
		width:100%;
	}
	
	.tit_effect_1, .tit_effect_2, .tit_effect_3, .tit_effect_4, .tit_effect_5{
		font-size:20px;
		font-weight:800;
	}
	.tit_effect_r{
		font-size:16px;
		font-weight:800;
	}
	.effect_p{
		font-size:16px;
		font-weight:500;
	}
	
	.menu_btn a	{
		width:300px;
	}

	
	
.table02 td:nth-child(2) {
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  border-left: 3px solid #555;
  border-right: 3px solid #555;
}

.table02 tr:last-child td:nth-child(2) {
  border-top: 1px solid #555;
  border-left: 3px solid #555;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

}	
	
.kv img{
	margin-top:60px;
}	
	
.accses_in{
		display: block;
	}
.accses_txt img{
	width:100%;
	}


.border_news{
		display: block;
	}

.trainer_img{
		display: block;
	}	

.trainer_img li{
	width:320px;
	margin:0 auto;
	}	
	
	.trainer_img li img{
		margin-bottom: 30px;
	}	
	
.menu-area .box {
  width: calc(50% - 10px); /* 2カラムにするために幅を50%に調整します */
  margin-bottom: 20px;
}
		
.menu-area .box:nth-child(even) {
			    margin-right: 0; /* 余白を削除します */	
	}

.video_wrap video{
	width:100%;
}

	
	
/*メニューページ*/


	
	.menu_container{
		display: block;
	}
	
.menu_left, .menu_right {
  margin: 0;
}
	
	
	
}
