@charset "utf-8";

/* Common */

.pc { display: block; }
.sp { display: none; }
@media only screen and (max-width: 750px) {
  .pc { display: none; }
  .sp { display: block; }
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}
@media only screen and (max-width: 750px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}



/* Font */

header span,
main .title h2,
main section .outline li dt,
main section .outline li dd,
main section .outline li dd div p,
main section .outline li dd.flex .address a,
.minchoTxt {
  font-family: 'Noto Serif JP', serif;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-feature-settings: normal;
  /* letter-spacing: 1px; */
}

main .title span,
footer .address,
footer .tel,
footer .copyright,
.gothicTxt {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体" , YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	font-feature-settings: normal;
	/* letter-spacing: 1px; */
}



/* Contents */

body {
  background-color: #fff;
  color: #1a1a1a;
  font-size: 1em;
}

header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px 25px;
}

header div {
  width: 100%;
  max-width: 270px;
}

header div span {
  display: inline-block;
  margin: 10px 0 0 0;
  font-size: 0.9em;
}

main section {
  padding: 60px 0;
}

#important_notice {
  background-color: #f6f0e4;
}

#corporate_profile {
  margin: 0 0 50px 0;
}

main section a.important_pdf {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

main section .title {
  text-align: center;
  margin: 0 0 30px 0;
}

main section .title h2 {
  font-size: 1.5em;
  letter-spacing: 0.5px;
}

main section .title span {
  display: inline-block;
  margin: 8px 0 0 0;
  font-size: 0.8em;
  font-weight: 600;
}

main section .outline {
  max-width: 1000px;
  margin: 0 auto;
}

main section .outline li {
	border-bottom: 1px solid #999;
}

main section .outline li:first-child {
	border-top: 1px solid #999;
}

main section .outline li dl {
	display: flex;
}

main section .outline li dt {
	font-size: 0.95em;
	background: #fff;
	width: 20%;
	padding: 10px 20px;
}

main section .outline li dd {
	font-size: 0.95em;
	width: 80%;
	padding: 10px 20px;
	align-self: center;
	line-height: 1.5;
}

main section .outline li dd.flex {
  display: flex;
	padding-right: 0;
	justify-content: space-between;
}

main section .outline li dd.flex .address {
	width: 40%;
}

main section .outline li dd.flex .map {
	width: 58%;
}

main section .outline li dd.flex .map iframe {
	width: 100%;
	aspect-ratio: 3/2;
}

main section .outline li dd p {
	margin-bottom: 10px;
}


@media only screen and (max-width: 750px) {
  main section {
    padding: 40px 0;
  }
  main section a.important_pdf {
    width: 70%;
  }
  main section .outline {
    width: 95%;
  }
  main section .outline li dl {
	  display: block;
    width: 100%;
  }
  main section .outline li dt {
    width: 100%;
    background-color: #eee;
    box-sizing: border-box;
  }
  main section .outline li dd {
    width: 100%;
    box-sizing: border-box;
  }
  main section .outline li dd.flex {
    display: block;
    padding: 10px 20px;
  }
  main section .outline li dd.flex .address {
    width: 100%;
  }
  main section .outline li dd.flex .map {
    width: 100%;
    margin: 15px 0 10px 0;
  }
  #corporate_profile {
    margin: 0;
  }
}







footer div {
  background-color: #333;
  color: #fff;
  font-size: 0.9em;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

footer ul {
  width: 100%;
  max-width: 1200px;
  display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
  padding: 30px 20px;
}

footer ul li.logo {
  width: 35%;
}

footer ul li.address {
  width: 30%;
}

footer ul li.address a.google_map_link {
  text-decoration: none;
  color: inherit;
	padding: 0 20px 0 0;
	will-change: opacity;
	background: url("../img/ico_window.svg") center right no-repeat;
}

footer ul li.tel {
  width: 35%;
}

footer .logo figure {
  width: 70%;
  margin: 0;
}

footer a[href^="tel:"] {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2em;
  letter-spacing: 0.8px;
}

footer .copyright {
  text-align: center;
  font-size: 0.85em;
  margin: 8px 0;
}

@media only screen and (max-width: 750px) {
  footer div {
    font-size: 0.95em;
  }
  footer ul {
    width: 24em !important;
  }
  footer ul li {
    width: 100% !important;
  }
  footer .logo figure {
    width: 100%;
    margin: 0 0 20px 0;
  }
  footer a[href^="tel:"] {
    font-size: 2.5em;
    letter-spacing: 1px;
  }
}




#not_found {
  border-top: solid 1px #aaa;
}
#not_found a {
  display: block;
  margin-top: 50px;
}