/* base */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  position: relative;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

img {
  max-width: 100%;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

@media all and (max-width:767px) {
  .for_pc {
    display: none;
  }
}
@media all and (min-width:768px) {
  .for_sp {
    display: none;
  }
}

@media all and (min-width:768px) {
  a[href^=tel] {
    pointer-events: none;
  }
}
.wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media all and (max-width:767px) {
  .wrap {
    padding: 0 6vw;
  }
}

/* header */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width:1360px) {
  header {
    height: 100px;
  }
}
@media all and (max-width:767px) {
  header {
    padding: 0 6vw;
    height: 72px;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #333;
  text-decoration: none;
}
header .logo div {
  width: 14vw;
}
header .logo h1 {
  margin: 0 0 0.2vw 1vw;
  font-size: 2.2vw;
  font-weight: 900;
}
@media all and (min-width:1025px) {
  header .logo div {
    width: 180px;
  }
  header .logo h1 {
    margin: 0 0 2px 10px;
    font-size: 27px;
    letter-spacing: 1px;
  }
}
@media all and (max-width:767px) {
  header .logo {
    display: block;
  }
  header .logo div {
    width: 90px;
  }
  header .logo h1 {
    margin: 5px 0 0;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
@media all and (min-width:768px) {
  header nav {
    display: block !important;
  }
}
@media all and (max-width:767px) {
  header nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 15px 0 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header nav ul li {
  margin: 0 1vw;
}
header nav ul li a {
  display: block;
  padding: 1.5vw 0.5vw;
  color: #333;
  border-bottom: 3px solid #03547c;
  font-size: 1.75vw;
  font-weight: 700;
}
@media all and (min-width:1025px) and (max-width:1259px) {
  header nav ul li {
    margin: 0 0 0 1vw;
  }
  header nav ul li a {
    padding: 15px 0.5vw;
    font-size: 16px;
  }
}
@media all and (min-width:1260px) {
  header nav ul li {
    margin: 0 0 0 30px;
  }
  header nav ul li a {
    padding: 15px;
    border-bottom-width: 4px;
    font-size: 17px;
    letter-spacing: 1px;
  }
}
@media all and (min-width:1600px) {
  header nav ul {
    margin-right: 60px;
  }
}
@media all and (max-width:767px) {
  header nav ul {
    display: block;
    margin-bottom: 20px;
  }
  header nav ul li {
    width: 240px;
    margin: 0 auto;
    text-align: center;
  }
  header nav ul li a {
    padding: 15px;
    border-bottom-width: 2px;
    font-size: 18px;
  }
}
@media all and (min-width:768px) {
  header nav .tel {
    display: none;
  }
}
@media all and (max-width:767px) {
  header nav .tel {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.5;
  }
  header nav .tel a {
    color: #333;
  }
  header nav .tel span {
    margin: 0 0 0 5px;
    font-size: 30px;
    font-weight: 900;
  }
}
@media all and (min-width:768px) {
  header .spbtn {
    display: none;
  }
}
@media all and (max-width:767px) {
  header .spbtn {
    display: block;
    position: absolute;
    top: 16px;
    right: 6vw;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  header .spbtn span {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    height: 3px;
    width: 100%;
    background: #03547c;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  header .spbtn span:nth-of-type(2) {
    top: calc(50% - 1.5px);
  }
  header .spbtn span:nth-of-type(3) {
    top: auto;
    bottom: 5px;
  }
  header .spbtn.active span {
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  header .spbtn.active span:nth-of-type(2) {
    display: none;
  }
  header .spbtn.active span:nth-of-type(3) {
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
}

/* footer */
footer {
  background: #03547c;
  padding: 50px 0;
  color: #fff;
}
footer .logo {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 15px;
  background: #fff;
}
footer .logo div {
  width: 180px;
}
footer .logo h1 {
  margin-top: 8px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
footer .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .frame .info {
  width: 50%;
}
footer .frame .info p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
}
footer .frame .info .tel {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
footer .frame .info .tel a {
  color: #fff;
}
footer .frame .info .tel span {
  margin: 0 20px 0 5px;
  font-size: 30px;
  font-weight: 900;
}
@media all and (min-width:1025px) {
  footer .frame .info .tel br {
    display: none;
  }
}
footer .frame .menu {
  position: relative;
  width: 50%;
}
footer .frame .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .frame .menu ul li {
  margin-left: 24px;
}
footer .frame .menu ul li a {
  display: block;
  padding: 15px;
  border-bottom: 3px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media all and (min-width:1025px) and (max-width:1259px) {
  footer .frame .menu ul li a {
    padding: 15px 10px;
  }
}
footer .frame .menu .copyright {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 15px;
}
@media all and (min-width:768px) and (max-width:1024px) {
  footer {
    padding: 5vw 0;
  }
  footer .logo {
    margin-bottom: 2vw;
    padding: 1vw 1.5vw;
  }
  footer .logo div {
    width: 15vw;
  }
  footer .logo h1 {
    margin-top: 0.8vw;
    font-size: 2vw;
  }
  footer .frame .info p {
    font-size: 1.7vw;
  }
  footer .frame .info .tel {
    margin-top: 1vw;
    font-size: 2vw;
    line-height: 1.5;
  }
  footer .frame .info .tel span {
    margin: 0 0 0.5vw;
    font-size: 3.75vw;
  }
  footer .frame .menu ul li {
    margin-left: 1vw;
  }
  footer .frame .menu ul li a {
    padding: 2vw 1vw;
    font-size: 1.75vw;
  }
  footer .frame .menu .copyright {
    font-size: 1.5vw;
  }
}
@media all and (max-width:767px) {
  footer .logo h1 {
    font-size: min(5vw, 22px);
  }
  footer .frame {
    display: block;
  }
  footer .frame .info {
    width: 100%;
    text-align: center;
  }
  footer .frame .info p {
    font-size: min(3.5vw, 16px);
  }
  footer .frame .info .tel {
    line-height: 1.5;
  }
  footer .frame .info .tel span {
    margin: 0 0 5px 8px;
  }
  footer .frame .menu {
    width: 100%;
  }
  footer .frame .menu ul {
    display: block;
    margin: 15px 0 50px;
  }
  footer .frame .menu ul li {
    max-width: 280px;
    margin: 0 auto;
  }
  footer .frame .menu ul li a {
    padding: 20px 0;
    text-align: center;
    border-width: 2px;
  }
  footer .frame .menu .copyright {
    position: relative;
    font-size: min(3.25vw, 12px);
    text-align: center;
  }
}

/* main */
main {
  margin-top: 80px;
}
@media all and (min-width:1360px) {
  main {
    margin-top: 100px;
  }
}
@media all and (max-width:767px) {
  main {
    margin-top: 72px;
  }
}

.mv ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mv ul li {
  width: 33.3333%;
  line-height: 0;
}
.mv ul li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  opacity: 0.875;
}
@media all and (min-width:1360px) {
  .mv ul li img {
    height: 360px;
  }
}
@media all and (min-width:768px) and (max-width:1024px) {
  .mv ul li img {
    height: 24vw;
  }
}
@media all and (max-width:767px) {
  .mv ul li {
    width: 50%;
  }
  .mv ul li img {
    height: 30vw;
  }
}

.sec {
  padding: 90px 0;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .sec {
    padding: 7.5vw 0;
  }
}
@media all and (max-width:767px) {
  .sec {
    padding: 60px 0;
  }
}
.sec.bg {
  background: #f1faff;
}
.sec .title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  padding: 30px 42px 5px 84px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  background: url("../img/common/bg_title.png") bottom left no-repeat;
  background-size: 70px auto;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .sec .title {
    margin: 0 auto 4.5vw;
    padding: 2.5vw 4vw 0.5vw 8vw;
    font-size: 3vw;
    letter-spacing: 0.3vw;
    background-size: 7vw auto;
  }
}
@media all and (max-width:767px) {
  .sec .title {
    margin: 0 auto 30px;
    padding: 16px 15px 4px 60px;
    font-size: min(6.66vw, 25px);
    letter-spacing: 2px;
    background-size: 50px auto;
  }
}
.sec .subtitle {
  margin-bottom: 40px;
  color: #fc5421;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
.sec .subtitle span {
  display: inline-block;
  padding: 0 45px 15px;
  border-bottom: 2px solid #ccc;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .sec .subtitle {
    margin-bottom: 4vw;
    font-size: 2.6vw;
  }
  .sec .subtitle span {
    padding: 0 4.5vw 1.5vw;
  }
}
@media all and (max-width:767px) {
  .sec .subtitle {
    margin-bottom: 30px;
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
.about table {
  width: 100%;
}
.about table tr {
  border-bottom: 1px solid #ccc;
}
.about table tr:last-child {
  border-bottom: none;
}
.about table tr th, .about table tr td {
  padding: 20px 30px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 2;
}
.about table tr th {
  color: #03547c;
  font-weight: 700;
}
@media all and (min-width:768px) {
  .about table tr td br.pcnone {
    display: none;
  }
}
@media all and (min-width:768px) and (max-width:1024px) {
  .about {
    padding: 3.5vw 9vw;
  }
  .about table tr th, .about table tr td {
    padding: 2vw 3vw;
    font-size: 1.8vw;
  }
}
@media all and (max-width:767px) {
  .about {
    padding: 15px 6vw;
  }
  .about table tr {
    display: block;
  }
  .about table tr th, .about table tr td {
    display: block;
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
  }
  .about table tr th {
    padding: 15px 0 0;
    text-align: left;
  }
  .about table tr td {
    padding: 8px 0 15px;
  }
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.message .text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 66%;
}
.message .text p {
  margin-bottom: 30px;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 2;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .message .text p {
    margin-bottom: 3vw;
    font-size: 1.7vw;
  }
}
.message .text .president {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.message .text .president .name {
  margin-left: 10px;
  font-size: 24px;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .message .text .president .name {
    font-size: 2.4vw;
  }
}
.message .pic {
  width: 30%;
}
@media all and (max-width:767px) {
  .message {
    display: block;
  }
  .message .text {
    width: 100%;
  }
  .message .text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
  .message .text .president .name {
    font-size: 20px;
  }
  .message .pic {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
}

.service {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
.service .intro {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.service .ttl {
  margin: 40px 0 10px;
  padding-left: 15px;
  border-left: 6px solid #03547c;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}
.service p {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 1px;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .service {
    padding: 3.5vw 5vw;
  }
  .service .intro {
    margin-bottom: 2.5vw;
    padding-bottom: 2.5vw;
  }
  .service .ttl {
    margin: 2.5vw 0 1vw;
    padding-left: 1.5vw;
    font-size: 2.2vw;
  }
  .service p {
    font-size: 1.7vw;
  }
}
@media all and (max-width:767px) {
  .service {
    padding: 30px 6vw;
  }
  .service .intro {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .service .ttl {
    font-size: 20px;
    line-height: 1.5;
  }
  .service p {
    font-size: 16px;
    line-height: 1.8;
  }
}

.access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 90px;
}
.access .map {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  width: 100%;
  margin: 40px 0;
  text-align: center;
}
.access .spot {
  width: 25%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.access .spot:nth-of-type(5) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
.access .spot:nth-of-type(6) {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}
.access .spot:nth-of-type(7) {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
.access .spot .pic img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1.3333/1;
}
.access .spot p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .access {
    margin-bottom: 8vw;
  }
  .access .map {
    margin: 4vw 0;
  }
  .access .spot {
    padding: 0 2vw;
  }
  .access .spot p {
    margin-top: 1vw;
    font-size: 2vw;
  }
}
@media all and (max-width:767px) {
  .access {
    display: block;
    margin-bottom: 50px;
  }
  .access .map {
    margin: 30px 0;
  }
  .access .spot {
    width: min(400px, 92.5%);
    margin: 0 auto 30px;
    padding: 0;
  }
  .access .spot .pic img {
    aspect-ratio: 1.5/1;
  }
  .access .spot p {
    font-size: 18px;
  }
}

.lb-data .lb-number {
  display: none !important;
}

.googlemap iframe {
  width: 100%;
  height: 360px;
}
@media all and (min-width:768px) and (max-width:1024px) {
  .googlemap iframe {
    height: 30vw;
  }
}
@media all and (max-width:767px) {
  .googlemap iframe {
    height: 240px;
  }
}
/*# sourceMappingURL=style.css.map */