@charset "utf-8";
/* レイアウトのためのCSS */

:root{
  --menucolor: #000000; /* 黒 */
  --bgcolor: #47585c; 
  --bgLightcolor: #9fa09e;
  --hoverLightcolor: #e60012; /* ロゴの赤 */
  --headlineFont: "Dancing Script";
  --serifFont:    "Noto Serif JP";
  --sansFont:     "Noto Sans JP";
}

html{ scroll-behavior:smooth; }/* ゆっくりスクロール */

body{  
  font-family: var(--serifFont), serif;
  letter-spacing:0.1em;
  color: #333;
  font-size: 1rem;
  line-height:1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; 
  word-wrap: break-word;
}

*{ box-sizing: border-box; }


.page{ /* 基本のページ幅 */
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 50px;
}
@media screen and (max-width:767px) {
  .page{
    width: 94%;
  }
}

/* PCとタブレットとスマホで表示を切り替える用 */
.mb,.tb{ display: none; }
@media screen and (max-width:990px) {
  .tb{ display: block;}
  .mb,.pc{ display: none; }
}
@media screen and (max-width:768px) {
  .mb{ display: block;}
  .tb,.pc{ display: none; }
}
/* br */
@media screen and (max-width:990px) {
  .br{
      display: block;
  }
}
@media screen and (max-width:768px) {
  .br_mb{
      display: block;
  }
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
  text-decoration: none;
  outline: none;
}

img{
  max-width: 100%;
  height: auto;
}

h2{
  font-family: var(--headlineFont), serif;
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 50px;/* 画像分 */

  position: relative;
}
h2::before{
  content: '';
  display: block;
  position: absolute;
  bottom: -20px;
  background-color: #333;
  height: 20px;
  width: 100%;

  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 685.1 48.4"><path d="M685.1,12c-.4-.7-1.5-1.1-3.5-1-13.3.7-27.2.4-40.4,2.1-15.1.6-31.1,1.2-46,3.5-18.2-.4-36.1,2.6-54.2,2.4-12.3-.9-24.1,1.4-36.3,1.9-147.6,4.3-295.4,13.5-442.7,18.9-3.7.4-7.9,4.1-3.9,6.9,63.5,6.1,129.8-5.6,193.8-8.5,68.6-5.5,137.5-6.6,206.2-10-2.2,0-4.5,0-6.7,0,58-.3,115.7-5.8,173.5-9.4,15.8-1.1,31.5-2.2,47.3-3.3,3.5-.3,12.8,1.4,12.9-3.4Z"/>  <path d="M101,18.5c110.5-5.4,221.2-.3,331.8-9.1,23.8-1.9,47.7,0,71.6,0,27.4-3.3,56.9-2.2,84.3-2.4,21.3-1.6,42.8-3,64.2-1.7,1.5-.3,3.4-.5,4.5-1.7.1-.1,2.4-3.6,1.2-3.5-7.7.4-15.6-.5-23.3,0-60.4,3.8-121.7,3.9-181.9,5.3-22.8-1-45.4,3-68.3,1.6-40.5,0-80.9,2.7-121.4,2.2-47.2,0-94.3.9-141.4,2.8-35.8,1.4-71.6,3.4-107.3,6-5,.6-10.9.3-14.7,3.8-1.3,3.8,3.5,5.2,6.6,4.4,31.3-3.3,62.8-5.9,94.2-7.9ZM5.4,21.6"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: 50% 50%;
}

/* header */
#header{ /* 一番手前に */
  position:fixed;
  top: 0;
  left: 50px;
  height: 100px;
  background:transparent;

  z-index: 101;
}

#header h1 a{
  display: block;

  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;

  background: transparent url(../images/logo.png) no-repeat 0% 0%;
  background-size: contain;

  width: 200px;
  height: 70px;

  position: absolute;
  top: 10px;

  transition: all .3s;
}
@media screen and (max-width:990px) {
  #header{
    left: 10px;
  }
  #header h1 a{
    width: 160px;
    height: 50px;
  }
}
@media screen and (max-width:768px) {
  #header{
    height: 70px;
    align-items: flex-end;
  }
  #header h1 a{
    width: 180px;
    height: 50px;
  }
}
/* g-navi */
#main-nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;

  background-color: rgba(0,0,0,.4);
  position: fixed;
  z-index: 100;
  width: 100%;

  transition: all .3s;
}
#g-nav{
  padding-right: 150px; /* G Tranlate分 */
}
#g-nav ul{
  display: flex;
  flex-wrap: wrap;
}

#g-nav ul li a{
  display: block;
  position: relative;

  font-size: .85rem;
  color: #fff;

  padding: 30px 20px 30px;
  position: relative;

  transition: 0.5s;/* 縮小時スムーズに */
}

#g-nav ul li a::after{
  content: '';
  position: absolute;
  top: 80%;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0.03, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}
#g-nav ul li a:hover::after,
#g-nav ul li.current a::after{
  transform: scale(1, 1);/*X方向にスケール拡大*/
  background-color: var(--hoverLightcolor);
}
@media screen and (max-width:990px) {
  #header h1 a{
    width: 160px;
    height: 50px;
  }
  #g-nav{
    padding-right: 120px;
  }
  #g-nav ul li a{
    padding: 20px;
  }
}
@media screen and (max-width:767px) {
  #header,
  #main-nav{
    height: 60px;
  }
  #g-nav{
    padding-right: 0px;
  }
  #g-nav ul{
    display: block;
  }
  #g-nav ul li{
    text-align: center;
  }
  #g-nav ul li a{
    padding: 10px;
    position: relative;
    font-size: 1.2rem;
    color: #fff;
  } 
  #g-nav ul li a::after{
    content: none;
  }
  #g-nav ul li a:hover,
  #g-nav ul li a:active,
  #g-nav ul li.current{
    color: #fff;
  }
}

/* 固定用 */
.is_fixed{
  background-color: rgba(0,0,0,1.0) !important;
  box-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* footer */
footer#footer{
  background-color: var(--menucolor);
  color: #fff;
  position: relative;
  padding-top: 50px;
}

footer#footer small{
  width: 100%;
  display: block;
  text-align: center;
  padding: 5px;
}
footer#footer .footer-area{
  display: grid;
  grid-template-columns: repeat(2, 48%);
  gap: 40px;
  font-size: .8rem; 
}
footer#footer .footer-area .footer-logo{
  display: block;

  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;

  background: transparent url(../images/logo_wh.png) no-repeat 0% 0%;
  background-size: contain;

  width: 200px;
  height: 80px;
  margin-bottom: 20px;
}
footer#footer .footer-area .footer-tel{
  font-size: 1.0rem;
}
footer#footer .footer-area .footer-tel a{
  color: #fff;
}
footer#footer .footer-area .footer-tel p::before{
  font-family: 'Font Awesome 6 Free';
  content: '\f87b';
  font-weight: bold;
  margin-right: 5px;
}

footer#footer .sns-link{
  margin-top: 1em;
}
footer#footer .sns-link li a{
  color: #fff;
  margin-bottom: 1em;
}
footer#footer .sns-link li img{
  width: 1.3em;
  margin-right: .5em;
  vertical-align: middle;
}
footer#footer .footer-img{
  background: transparent url(../images/footer-img.jpg) no-repeat 50% 20%;
  background-size: cover;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.5);
}
@media screen and (max-width: 767px) {
  footer#footer .footer-area{
    display: block;
  }
  footer#footer .footer-area .footer-logo{
    width: 100%;
    height: 80px;
    background-position: 50% 0%;
  }
  footer#footer .footer-img{
    height: 250px;
    margin-top: 30px;
  }
}

/* =========== TOP ============ */
#top-slider{
  position: relative;
  overflow: hidden;
  height: 100vh;

  background-color: var(--bgcolor);
}
#top-slider::before{
  font-family: 'Font Awesome 6 Free';
  content: '\f110';
  font-weight: bold;
  font-size: 2.0rem;
  color: #fff;

  position: absolute;
  top: 50%;
  left: 50%;

  animation:3s linear infinite loading;
}
@keyframes loading{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

#top-slider .slide-overray{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#slider-area{
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  margin: 0 auto;
  z-index: -1;
}

@media screen and (max-width:990px) {
  #top-slider{
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  #top-slider{
    height: 70vh;
  }
}

/* scroll アニメーション */
.scroll-animation{
  position: absolute;
  width: 24px;
  height: 24px;

  left: 50%;
  bottom: 100px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
@media screen and (max-width:990px) {
  .scroll-animation{
    display: none;
  }
}

/* =========== TOP:cencept ============ */
#lead{
  background: var(--bgcolor) url(../images/lead-bg.jpg) no-repeat 0 0;
  background-size: cover;
  background-blend-mode: multiply;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #lead{
    padding-top: 30px;
  }
}
#lead h2{
  color: var(--hoverLightcolor);
  line-height: 200%;
}
#lead h2::before{
  background-color: var(--hoverLightcolor);
}

#lead .lead-area{
  position: relative;
  
  color: #fff;
  font-size: 1.0rem;
  line-height: 180%;
}

#lead .lead-area .lead-01,
#lead .lead-area .lead-02{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;

  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #lead .lead-area .lead-01,
  #lead .lead-area .lead-02{
    width: 95%; 
  }
}
@media screen and (max-width: 767px) {
  #lead .lead-area .lead-01,
  #lead .lead-area .lead-02{
    display: block;
  }
}


#lead .lead-area .lead-01 .lead-img-left{
  width: 65%;

  position: relative;
  z-index: 2;
}
#lead .lead-area .lead-01 .lead-img-left .lead-img img{
  width: 100%;

  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1172 722">  <path d="M781.5,40c-41.53,0-81.55,5.66-119.1,16.15-46.28,12.93-95.57,7.54-138.26-14.51C472.85,15.15,413.39,0,349.98,0,156.69,0,0,140.81,0,314.5s156.69,314.5,349.98,314.5c12.09,0,24.04-.55,35.81-1.63,64.03-5.85,128.21,8.76,184.22,40.34,60.95,34.35,133.55,54.29,211.49,54.29,215.67,0,390.5-152.67,390.5-341S997.17,40,781.5,40Z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: 50% 50%;
}
#lead .lead-area .lead-01 .lead-img-left .lead-img-bg{
  position: absolute;
  background-color: var(--bgLightcolor);
  width: 100%;
  height: 100%;
  top: 5px;
  right: 10px;
  z-index: -1;
  transform: rotate(5deg);

  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1172 722">  <path d="M781.5,40c-41.53,0-81.55,5.66-119.1,16.15-46.28,12.93-95.57,7.54-138.26-14.51C472.85,15.15,413.39,0,349.98,0,156.69,0,0,140.81,0,314.5s156.69,314.5,349.98,314.5c12.09,0,24.04-.55,35.81-1.63,64.03-5.85,128.21,8.76,184.22,40.34,60.95,34.35,133.55,54.29,211.49,54.29,215.67,0,390.5-152.67,390.5-341S997.17,40,781.5,40Z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: 50% 50%;
}
#lead .lead-area .lead-01 .lead-text-right{
  position: relative;
  width: 30%;
  z-index: 10;

  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #lead .lead-area .lead-01 .lead-img-left{
    width: 60%;
  }
  #lead .lead-area .lead-01 .lead-text-right{
    width: 35%;
    font-size: .8rem;
  }
}
@media screen and (max-width: 767px) {
  #lead .lead-area .lead-01 .lead-img-left{
    width: 100%;
  }
  #lead .lead-area .lead-01 .lead-text-right{
    width: 100%;
    margin: 20px auto;
  }  
  #lead .lead-area .lead-01 .lead-img-left .lead-img img{
    mask-image: none;
    height: 200px;
    object-fit: cover;
  }
  #lead .lead-area .lead-01 .lead-img-left .lead-img-bg{
    display: none;
  }
}

#lead .lead-area .lead-02{
  flex-direction: row-reverse;
}
#lead .lead-area .lead-02 .lead-img-right{
  width: 65%;

  position: relative;
  z-index: 2;
}
#lead .lead-area .lead-02 .lead-img-right .lead-img img{
  width: 100%;

  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1227 677"><path d="M834,68h0c-5.73,0-11.3-1.77-16.04-4.99C759.99,23.6,686.27,0,606,0c-103.79,0-196.65,39.45-258.65,101.53-4.51,4.52-10.47,7.28-16.82,7.91C144,127.77,0,247.29,0,392c0,157.4,170.36,285,380.5,285,80.87,0,155.84-18.9,217.49-51.12,7.76-4.05,16.98-4.08,24.84-.22,60.99,29.97,133.45,47.34,211.18,47.34,217.05,0,393-135.43,393-302.5s-175.95-302.5-393-302.5Z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: 50% 50%;
}
#lead .lead-area .lead-02 .lead-img-right .lead-img-bg{
  position: absolute;
  background-color: var(--bgLightcolor);
  width: 100%;
  height: 100%;

  top: 5px;
  left: 10px;
  
  z-index: -1;
  transform: rotate(-5deg);

  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1227 677"><path d="M834,68h0c-5.73,0-11.3-1.77-16.04-4.99C759.99,23.6,686.27,0,606,0c-103.79,0-196.65,39.45-258.65,101.53-4.51,4.52-10.47,7.28-16.82,7.91C144,127.77,0,247.29,0,392c0,157.4,170.36,285,380.5,285,80.87,0,155.84-18.9,217.49-51.12,7.76-4.05,16.98-4.08,24.84-.22,60.99,29.97,133.45,47.34,211.18,47.34,217.05,0,393-135.43,393-302.5s-175.95-302.5-393-302.5Z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: 50% 50%;
}
#lead .lead-area .lead-02 .lead-text-left{
  position: relative;
  width: 30%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
#lead .lead-area .lead-02 .lead-text-left p{
  text-align: center;
  margin-bottom: 20px;
}
#lead .lead-area .lead-02 .lead-text-left p img{
  width: 160px;
}
@media screen and (max-width: 1024px) {
  #lead .lead-area .lead-02 .lead-img-right{
    width: 60%;
  }
  #lead .lead-area .lead-02 .lead-text-left{
    width: 35%;
    font-size: .8rem;
  }
}
@media screen and (max-width: 767px) {
  #lead .lead-area .lead-02 .lead-img-right{
    width: 100%;
  }
  #lead .lead-area .lead-02 .lead-text-left{
    width: 100%;
  }  
  #lead .lead-area .lead-02 .lead-img-right .lead-img img{
    mask-image: none;
    height: 200px;
    object-fit: cover;
  }
  #lead .lead-area .lead-02 .lead-img-right .lead-img-bg{
    display: none;
  }
}



/* =========== TOP:menu ============ */
#menu{
  background: var(--bgLightcolor) url(../images/menu-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  background-blend-mode: multiply;
  padding: 100px 0;
  position: relative;
}
#menu::after{/* ページ内リンク位置調整用 */
  content:'';
  display: block;
  padding-top: 180px;
  margin-top: -180px;
}
#menu .to_menu{
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}
#menu .to_menu a{
  font-family: var(--headlineFont), serif;
  font-size: 3rem;
  line-height: 200%;

  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
  padding: 0 2em;

  position: relative;
  z-index: 3;
}

#menu .to_menu a span{
  position: relative;
  z-index: 4;
}
#menu .to_menu a::after{
  font-family: 'Font Awesome 6 Free';
  content: '\f101';
  font-weight: bold;
  margin-left: 5px;
  font-size: 2.0rem;

  position: absolute;
  right: 5px;
  z-index: 4;
}

#menu .to_menu a::before{
  content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
 
	background: var(--hoverLightcolor);
	width: 100%;
	height: 100%;
 
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top center;
}
#menu .to_menu a:hover::before{
  transform:scale(1, 1);
}

#menu .menu_gallery div img{
  height: 250px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  #menu .menu_gallery div img{
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  #menu{
    padding-bottom: 0;
  }
  #menu::before{
    content: none;
  }
  #menu .menu_gallery div img{
    height: 120px;
  }
}

/* =========== TOP:Access ============ */
#access::before{
  content:'';
  display: block;
  padding-top: 180px;
  margin-top: -180px;
}
#access .access-bg{
  width: 100%;
  height: 40vh;
  background: transparent url(../images/access-bg.jpg)  no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}
#access .access-info{
  display: grid;
  grid-template-columns: 50% 50%;

  overflow: hidden;
}
#access .access-info .access-map iframe{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
#access .access-info .access-detail{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3em 0;

  background-color: var(--bgcolor);
  color: #fff;
}
#access .access-info .access-detail h2{
  width: 100%;
}
#access h2::before{
  background-color: #fff;
}
#access .access-info .access-detail .access-address{
  margin: 20px auto 50px;
}
#access .access-info .access-detail .access-maplink{
  width: 100%;
  display: flex;
  justify-content: center;
}
#access .access-info .access-detail .access-maplink a{
  display: block;
  font-size: 0.8rem;
  border: 1px solid #fff;
  color: #fff;
  padding: 1em 3em;

  position: relative;
}
#access .access-info .access-detail .access-maplink a span{
  position: relative;
  z-index: 3;
}
#access .access-info .access-detail .access-maplink a span::before{
  font-family: 'Font Awesome 6 Free';
  content: '\f3c5';
  font-weight: bold;
  margin-right: 5px;
}
#access .access-info .access-detail .access-maplink a::before{
  content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
 
	background: var(--hoverLightcolor);
	width: 100%;
	height: 100%;
 
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top center;
}
#access .access-info .access-detail .access-maplink a:hover::before{
	transform:scale(1, 1);
}
@media screen and (max-width: 767px) {
  #access .access-info .access-detail{
    width: 100%;
    padding: 2em 1em;
    margin: 0 auto;
  }
  #access .access-info{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #access .access-info .access-map{
    width: 100%;
    height: 300px;
  }
  #access .access-bg{
    background-attachment: scroll;
    height: 200px;
  }
}

/* =========== TOP:Contact ============ */
#contact{
  background: var(--bgLightcolor) url(../images/contact-bg.jpg) no-repeat 0 0;
  background-size: cover;
  background-blend-mode: multiply;
  padding: 100px 0;
}
#contact .contact-info{
  background-color: rgba(255,255,255,.7);
  position: relative;

  width: 50%;
  min-width: 400px;
  margin: 0 auto;

  padding: 4em;
  
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#contact .contact-info .contact-tel{
  font-size: 2.0rem;
  width: 100%;
  text-align: center;
  margin: .5em auto 1em;
}
#contact .contact-info .hours dl{
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: .5em;
}
#contact .contact-info .hours dl dt{
  font-weight: bold;
  text-align: right;
}
#contact .contact-info .hours dl .notice{
  margin-left: 1em;
  font-size: 80%;
}
#contact .contact-info .hours .timezone{
  align-items: center;
}
#contact .contact-info .hours .timezone dt p{
  text-align: center;
  background-color: var(--bgcolor);
  color: #fff;
  font-size: 80%;
  padding: 0 1em;
  border-radius: 10px;
}

@media screen and (max-width:990px) {
  #contact .contact-info{
    width: 80%;
    min-width: initial;
  }
}
@media screen and (max-width:767px) {

  #contact .contact-info{
    width: 96%;
    border-style: none;
    padding: 1em;
    
  }
  #contact .contact-info .hours dl{
    display: block;
    margin-bottom: 1em;
  }
  #contact .contact-info .hours dl dt{
    text-align: center;
    margin: 1em;
  }
  #contact .contact-info .hours .timezone{
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: .5em;
  }
  #contact .contact-info .hours .timezone dt{
    margin: 0;
  }
}