
/*共通*/

html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3",
		"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,
		"ＭＳＰゴシック", "MS PGothic", sans-serif;
	/*1086pxからコンテンツ幅が収縮するので1086px以下から文字サイズ縮小*/
	font-size: min(1.41vw, 10px);
	font-weight: 500;
	font-style: normal;
	line-height: 1;
	color: #000;
	-webkit-font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	text-rendering: optimizeSpeed;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	position: relative;
}

a {
	display: block;
  transition: all .4s;
}
a:hover {
  opacity: .7;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

img {
	max-width: 100%;
	width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.hd-container {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hd-logo {
  width: 256px;
  width: min(13.3vw, 256px);
  position: absolute;
  top: min(3.85vw, 74px);
  left: 50%;
  transform: translateX(-50%);
}

.hd-tel {
  width: 380px;
  width: min(19.8vw, 380px);
  position: absolute;
  top: min(4.89vw, 94px);
  right: 0;
}

.kv {
  position: relative;
}

.kv-contact {
  width: min(15.6vw, 300px);
  position: absolute;
  bottom: min(2.44vw, 47px);
  right: min(3.64vw, 70px);
}

.about {
  padding: 12rem 0;
  background:#e6e6e6;
}

.about-container {
  max-width: 65rem;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.sec-ttl {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: .24em;
  color: #076291;
  text-align: center;
  margin-bottom: 8rem;
}

.about-img {
  margin-bottom: 7rem;
}

.about-detail dl {
  display: flex;
  font-size: 2.1rem;
  letter-spacing: .12em;
  padding: 2.5rem 0;
  border-bottom: 1px solid #B3B3B3;
}
.about-detail dl:first-of-type {
  border-top: 1px solid #B3B3B3;
}

.about-detail dt {
  width: 31.2%;
  font-weight: normal;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.about-detail dd {
  width: 68.8%;
}

.about-detail dd.address {
  line-height: 1.23;
}

.about-detail dd.licence-list {
  line-height: 1.42;
}

.about-detail dd .map {
  width: 100%;
  height: auto;
  aspect-ratio: 405/320;
  margin-top: 2.5rem;;
}

.about-detail dd .map iframe {
  width: 100%;
  height: 100%;
}

.recruit {
  padding: 9rem 0;
}

.container {
  max-width: 1100px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: #076291;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  position: relative;
}

.ft-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(7.52vw, 90px);
}

.ft-logo {
  width: min(21.6vw, 256px);
}

.ft-contact {
  width: min(41.8vw, 500px);
  margin-bottom: 20px;
}

.ft-tel {
  width: min(29.8vw, 357px);
}

.copyright {
  text-align: center;
  font-size: min(1.75vw, 21px);
  letter-spacing: .12em;
  color: #FFF;
}

.top-btn {
  width: min(6vw, 115px);
  position: absolute;
  bottom: 20px;
  right: 25px;
}

@media screen and (max-width: 750px)  {

  html, body {
    font-size: min(1.3333vw, 10px);
  }
  
  .pc {
    display: none;
  }
  
  .sp {
    display: block;
  }

  .hd-logo {
    width: 34.1vw;
    top: 5rem;
  }

  





  .recruit {
    padding: 6.5rem 0;
  }


  footer {
    padding-top: 11.3rem;
    padding-bottom: 18rem;
  }

  .ft-flex {
    justify-content: center;
  }

  .ft-logo {
    width: 34.1vw;
  }

  .copyright {
    font-size: 2.1rem;
  }

  .top-btn {
    width: 11.5rem;
    bottom: 14rem;
    right: 3rem;
  }

  .sp-bt-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
  }

  .sp-bt-menu-flex {
    display: flex;
  }

}