@charset "UTF-8";

/* reset browser defaults */
html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,figure,address,figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
  font-style:normal; }
  
   h1 {
	   font-size:1.5rem;
	   margin:0;
   }
  
   h2 {
	  font-size:1.25rem;
margin: 0 0 2rem;
   }
   
   h3 {
	   font-size:1.125rem;
   	 margin-top:0;
   }
   
   h4,h5 {
	   font-size:1rem;
	    line-height:1.4;
	 margin-top:0;
	 margin-bottom:1rem;
   }
   
   h1,h2,h3 {
	line-height:1.4;
	 margin-top:0;
	 font-weight:500;
   }
   
  small {
	  font-size:88%;
  }
  
ol, ul {
  list-style: none; }

ul.disc {
	list-style-type:disc;
	padding-left:1.5rem;
}
ul.disc ul {
	list-style-type: circle;
}
ol.decimal {
	list-style-type:decimal;
	padding-left:1.5rem;
	text-align: justify;
}

blockquote, q {
  quotes: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }
  
  .text-left {
  	text-align:left;
  }
  
 .no-margin,
 p.no-margin {
 	margin: 0;
 }
 
 @media screen and (min-width: 60em) {
 	 h2 {
	  font-size:1.875rem;
	  margin: 0 0 3.75rem;
   }
   
   h3 {
	   font-size:1.5rem;
   }

 	}
  
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

img {
	 max-width:100%;
	 vertical-align:middle;
	 height:auto;
 }

 * {
	 	box-sizing:border-box;
 }
 
 :root {
--border-color: #C6C6CA;
--link-color:#2669C7;
--text-color:#191919;
}


/* general styling */
html {
  scroll-behavior: smooth;
}


body {
font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
  line-height:1.8;
	margin:0;
	padding:0;
   }
 .inner  {
	 width:90%;
	 margin:0 auto;
	 	max-width:70rem; 
 }
  .text-right {
	 text-align:right;
 }
 .text-center {
	 text-align:center;
 }
 .block-break {
	 display:inline-block;
 }
 
 .pc-only {
 	display: none;
 }

/* links */
a:link {
  outline: none;
text-decoration:none;
color: var(--link-color);
  }
  

  a:visited {
  	text-decoration:none;
  	color: var(--link-color);
  }
 a:hover {
text-decoration:none;
color: var(--link-color);
opacity: .7;
 }
 
a.underline {
text-decoration:underline;
} 

.no-margin {
	margin: 0;
}

 
 /*grid*/
@media screen and (min-width:48em) and ( max-width:60em) {
.parent--tab {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1.5rem;	
}
.span-2--tab {
  grid-column: 2 span;
}
.span-3--tab {
  grid-column: 3 span;
}
.span-4--tab {
  grid-column: 4 span;
}
.span-5--tab {
  grid-column: 5 span;
}
.span-6--tab {
  grid-column: 6 span;
}
.span-7--tab {
  grid-column: 7 span;
}
.span-8--tab {
  grid-column: 8 span;
}
.span-9--tab {
  grid-column: 9 span;
}
.span-10--tab {
  grid-column: 10 span;
}
.parent.parent--tab.school-all {
	gap:1.5rem;
}
}
@media screen and (min-width: 60em) {
.parent {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 2rem;
}
.span-2 {
  grid-column: 2 span;
}
.span-3 {
  grid-column: 3 span;
}
.span-4 {
  grid-column: 4 span;
}
.span-5 {
  grid-column: 5 span;
}
.span-6 {
  grid-column: 6 span;
}
.span-7 {
  grid-column: 7 span;
}
.span-8 {
  grid-column: 8 span;
}
.span-9 {
  grid-column: 9 span;
}
.span-10 {
  grid-column: 10 span;
}
}


  /* ヘッダー（モバイル） */
        .header {
            background-color: white;
            padding: 1rem 0;
            position: relative;
        }
        
        .header a {
		  color: var(--text-color);	
		}
		
		.header a.current {
			color: #888;
		}


        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
			width: 90%;
			margin: 0 auto;
			max-width:70rem; 
			gap:1rem;
        }

        .logo {
            font-weight: bold;
            text-decoration: none;
            color: black;
        }

        /* ハンバーガーメニューボタン */
        .hamburger {
            display: block;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #004C95;
            margin: 5px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* モバイルナビゲーション */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
        }

        .nav.active {
            transform: translateY(0);
        }

        .nav-header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 1rem 2rem;
        }

        .nav-logo {
            display: none;
        }

        .nav-hamburger {
            display: block;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
        }

        .nav-hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #004C95;
            margin: 5px 0;
            transition: 0.3s;
        }

        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .nav-list {
            list-style: none;
            padding: 2rem;
        }

        .nav-item {
            margin-bottom: 2rem;
        }
        
         .nav-item a {
		 	color:var(--text-color);
		 	font-weight: 600;
		 }

        .nav-link {
            color: black;
            text-decoration: none;
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid #e0e0e0;
        }

        /* PC用のナビゲーションは非表示 */
        .pc-nav {
            display: none;
        }
        
        .box {
			padding: 4rem 0;
		}
		.box-margin-bottom {
			margin-bottom: 4rem;
		}
		.small-section {
			margin: 2.5rem 0;
		}

        /* PC用スタイル */
        @media screen and (min-width: 60em) {
            .header {
                padding: 1.5rem 2rem;
				margin-bottom: 1rem;
            }
			
			.header .logo img {
				width: 21.25rem;
			}

            .header-container {
                max-width: 1200px;
                margin: 0 auto;
            }

            /* ハンバーガーメニューを非表示 */
            .hamburger {
                display: none;
            }

            /* モバイルナビを非表示 */
            .nav {
                display: none;
            }

            /* PC用ナビゲーションを表示 */
            .pc-nav {
                display: block;
            }

            .pc-nav-list {
                display: flex;
                list-style: none;
                gap: 2rem;
            }

            .pc-nav-link {
                color: black;
                text-decoration: none;
                padding: 0.5rem 1rem;
            }
			 .box {
			padding: 8rem 0;
		}
			.small-section {
			margin: 5rem 0;
		}
		.box-margin-bottom {
			margin-bottom: 5rem;
		}
        }
        
      /*  hero*/
      .hero__text__main {
	font-size: 1.125rem;
}

 .section-wrapper {
            margin-bottom: 50px;
        }

        .section-grid {
            display: grid;
            grid-template-columns: 1fr;
        }

        .text-content {
            max-width: 100%;
            width: 100%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        
        .text-content p,
        .hero__text p {
			margin: 0;
		}
		
		.text-content p:first-child,
		.hero__text p:first-child {
			color: #728292;
		}

        .image-content {
            position: relative;
            overflow: hidden;
            min-height: 300px;
			padding: 0 1rem;
        }

/*        .image-content img {
            width: 100%;
            object-fit: cover;
            object-position: cover;
	
        }*/
        
        .hero__text {
			margin-bottom: 1rem;
		}
        
            @media screen and (min-width: 60em) {
			.hero .box {
				padding-top: 4rem;
			}
			.hero__text {
				align-self: center;
			}
				}

        /* タブレット・PC対応 */
        @media screen and (min-width: 60em) {
            .section-wrapper {
                position: relative;
                max-width: 1200px;
                margin: 0 auto 70px;
            }

            .section-grid {
                display: grid;
                grid-template-columns: 600px 1fr;
                min-height: 500px;
                position: relative;
            }

            .text-content {
                max-width: 600px;
                padding: 0 40px;
                z-index: 2;
            }

            .text-content h2 {
                font-size: 2.2rem;
            }

             .image-content {
                position: absolute;
                top: 0;
                left: 600px;
                right: calc((100vw - 1200px) / -2);

                min-height: auto;
                display: flex;
                align-items: center;
				justify-content:flex-end;
								padding:0;
            }
			
			.image-content img {
				max-height: 600px;
			}

			      .hero__text__main {
	font-size: 1.75rem;
}
  .hero__text {
			margin-bottom: 0;
		}
			}
			 @media screen and (min-width: 75em) {
			 	  .text-content {
                padding: 0;
				}
				        .section-wrapper {
                margin: 0 auto 150px;
            }
			 	}

            /* ビューポートが1200px以下の場合の調整 */
            @media screen and (max-width: 75em) {
                .image-content {
                    right: 0;
                }
            }


/*company*/
#company {
	border-radius: 0 5rem;
background: linear-gradient(142deg, #f6f8fd 0%, #E9EFF7 100%);
}

/*@media screen and (max-width: 60em) {
	#company .box {
		padding-bottom: 7rem;
		}
}*/
@media screen and (min-width: 60em) {
	#company {
			border-radius: 0 12.5rem;
		}
}

/*announcement__table*/
.table {
	width: 100%;
	border: none;
}


.table th,
.table td {
	display: block;
}
.table th,
.table td {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid var(--border-color);
}

.table td {
	padding: 0 0 1rem 0;	
}

.table th {
		border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: none;
text-align: left;
	padding: 1rem 0 0;
}
.table tr:last-child th,
.table tr:last-child td {
	border-bottom: none;
}

@media screen and (min-width:65rem){
	.table th,
.table td {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 12px;
	padding: 1rem 0;
	display: table-cell;
}
.table th {
	padding-right: 1rem;
		width: 25%;
			font-weight: normal;
}
.table.history__table th {
	width: 8rem;
}
.table tr:last-child th,
.table tr:last-child td {
	border-bottom: none;
}

}

.window {
	display: inline;
	padding-right: 1.75rem;
	 background-image: url(../images/window.svg);
	 background-repeat:no-repeat;
	 background-position:right .375rem center;
    background-size: 1rem;
	text-align: center;
}

/*school-all*/
.school-all {
	text-align: center;
}
.school-all p {
	margin: 0;
}
.school-all p + p {
	color: #797677;
	font-size: .875rem;
}
.school-all img {
	margin-bottom: 1rem;
	border-radius: .5rem;
}

@media screen and (max-width: 60em) {
	.school-all > div {
		margin-bottom: 1.5rem;
	}
}

.bg {
	background: #EFF3F9;
}
.footer {
border-radius: 5rem 0 0 0;
background: #3C3C3C;
color: #fff;
}
.contents .footer {
	margin-top: 4rem;
}
@media screen and (max-width: 60em) {
.footer p {
	font-size: .875rem;
}
.footer a {
	color: #fff;
}
}

@media screen and (min-width: 60em) {
.footer {
border-radius: 12.5rem 0 0 0;
}
.contents .footer {
	margin-top: 8rem;
}
}

/*アニメーション*/
/* 初期状態：両方とも非表示 */
.text-content,
.image-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* アニメーション表示状態 */
.text-content.show,
.image-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* ページロード後のアニメーション実行 */
.text-content {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.image-content {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*profile__body*/
.profile__head {
	border-bottom: var(--border-color) solid 1px;
	padding-bottom: 3rem;
	margin-bottom: 3rem;
}
.profile__body dt {
	font-weight: 600;
}
.profile__body dd + dt {
	margin-top: 1.5rem;
}
@media screen and (max-width: 60em) {
.profile__body>div dl:first-child {
	margin-bottom: 1.5rem;
}
}

/*imagearea__parent*/
.imagearea__parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}
.imagearea__parent .div1 {
    grid-column: span 2 / span 2;	
}

@media screen and (min-width: 60em) {
.imagearea__parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
}
.imagearea__parent img {
	object-fit:cover;
	width: 100%;
}
    
.imagearea__parent .div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.imagearea__parent .div2 {
    grid-column-start: 3;
}

.imagearea__parent .div3 {
    grid-column-start: 4;
}

.imagearea__parent .div4 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.imagearea__parent .div5 {
    grid-column-start: 4;
    grid-row-start: 2;
}
}

/*imagearea--tennis*/
.imagearea--tennis img {
	width: 100%;
	object-fit:cover;
}
@media screen and (min-width: 60em) {
.imagearea--tennis {
	max-height: 500px;
	overflow: hidden;
}
}

img.logomark {
max-width: 8.75rem;	
}

.caption {
	font-size: .875rem;
	margin: .5rem 0 0;
}

img.radius-image {
	border-radius: .5rem;
}

/*====== contents ====== */
.contents h1 {
	font-size: 1.5rem;
}
.contents__header {
	    background: #EFF3F9;
		padding: 1rem 0;
	margin-bottom: 3rem;
}


.contents h2 {
font-size: 1.25rem;
    margin: 0 0 1rem;
}
.contents h2.small {
font-size: 1.125rem;
    margin: 0 0 .5rem;
}
.arrow-down-left {
    padding-left: 1.5rem;
    background: url(https://kens-tennis.jp/renewal2022/wp-content/themes/kens-theme/images/expand_circle_down.svg) no-repeat left center;
    background-size: 1.125rem;
}

@media screen and (min-width: 60em) {
	.contents h2 {
font-size: 1.625rem;
    margin: 0 0 2.5rem;
}
.contents h1 {
	font-size: 2.25rem;
}
.contents__header {
	margin-bottom: 4rem;
}

.contents h2.small {
font-size: 1.25rem;
}
}

/*table*/
.contents table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}
.contents table td,
.contents table th {
	padding: .5rem;
	border: 1px solid var(--border-color);
	vertical-align: middle;
}
.contents table td.center,
.contents table th.center {
	text-align: center;
}

.contents table th {
	font-weight: normal;
	background: #EFF3F9;
	text-align: left;
}


@media screen and (min-width: 60em) {
	.contents table td,
.contents table th {
	padding: 1rem;
	}
}


/*breadcrumb*/

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 1rem;
  font-size: .875rem;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}
