@charset "utf-8";

/*============================
fonts
============================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*============================*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  color: #111;
  min-width: 1040px;
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

a {
  text-decoration: underline;
  color: #111;
  outline: none;
}

a:active,
a:hover,
a:focus {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
  }

  body {
    width: 100%;
    min-width: 0;
  }
}

/*============================
useful
============================*/

.sp-only {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

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

  .pc-only {
    display: none;
  }
}

/*============================
top
============================*/

#top {
  width: 100%;
  z-index: 500;
  border-top: 4px solid #0070BB;
}

#top .inner {
  width: 980px;
  margin: auto;
  overflow: hidden;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0;
}

.siteTitle {
  width: 240px;
}

.siteTitle a {
  background: url(../images/common/header/hd_logo.png) no-repeat center center;
  width: 100%;
  padding-top: 12.2077%;
  height: 0;
  display: block;
  overflow: hidden;
  -webkit-background-size: 100%;
  background-size: 100%;
}

p.announce {
  font-size: 14px;
  text-align: left;
  margin-left: 10px;
}

p.tel {
  position: relative;
  margin-left: auto;
}

.tel a {
  font-weight: bold;
  font-size: 30px;
  text-decoration: none;
  cursor: default;
}

p.tel:before {
  content: '\f095';
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  display: block;
  position: absolute;
  bottom: 8px;
  left: -40px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  border-radius: 4px;
  color: #fff;
  background-color: #0049a3;
}

@media only screen and (max-width: 768px) {
  #top {
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
  }

  #top .inner {
    height: 51px;
    padding: 0;
  }

  .siteTitle {
    width: 200px;
    padding-left: 10px;
  }

  p.announce {
    display: none;
  }

  p.tel-sp {
    position: fixed;
    right: 70px;
    top: 10px;
  }

  .tel-sp a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #0049a3;
    color: #fff;
    display: block;
    border-radius: 5px;
  }
}

/*============================
nav
============================*/

nav {
  width: 100%;
  background: #0070BB;
}

.nav-toggle {
  display: none;
}

.globalNav {
  width: 980px;
  margin: auto;
  overflow: hidden;
  background: url(../images/common/nav/line.png) no-repeat right center;
}

.globalNav li {
  float: left;
  width: 20%;
  padding: 18px 0;
  background: url(../images/common/nav/line.png) no-repeat left center;
}

.globalNav li a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  nav {
    position: relative;
    z-index: 200;
  }

  .nav-toggle {
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 55px;
    display: block;
    overflow: hidden;
    width: 55px;
    height: 0;
    background: url(../images/common/nav/menu.png) no-repeat center center #0070bc;
    background-size: 55px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 600;
  }

  .open .nav-toggle {
    background-image: url(../images/common/nav/close.png);
  }

  .globalNav {
    position: fixed;
    top: -55px;
    left: 0;
    width: 100%;
    overflow: inherit;
    background: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-align: left;
    background: #0070bc;
  }

  .open .globalNav {
    position: fixed;
    top: 55px;
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .globalNav li {
    width: 100%;
    float: none;
    padding: 0;
    border-top: 1px solid #ffffff;
    background: none;
    position: relative;
  }

  .globalNav li a {
    position: inherit;
    padding: 16px;
    width: 100%;
    overflow: inherit;
    height: inherit;
    color: #fff;
    background: none;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
  }

  .globalNav li a span {
    font-size: 12px;
    padding-left: 20px;
    font-weight: normal;
  }

  .globalNav li:after {
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

/*============================
container
============================*/

.container {
  padding-bottom: 60px;
  text-align: left;
}

.cont_img {
  text-align: center;
  position: relative;
  background: url(../images/common/cont.jpg) no-repeat center center;
  height: 260px;
  -webkit-background-size: cover;
  background-size: cover;
}

.cont h1 {
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 40px;
  font-weight: bold;
  width: 490px;
  margin-top: -24px;
  margin-left: -245px;
  color: #fff;
  text-shadow: 1px 2px 4px #111;
}

.container .inner {
  width: 980px;
  margin: auto;
}

.cont .container .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .container {
    padding-bottom: 0;
  }

  .container .inner {
    width: 90.625%;
    margin: auto;
  }

  .cont_img {
    margin-top: 55px;
    height: 150px;
  }

  .cont h1 {
    width: 300px;
    margin-left: -150px;
    font-size: 20px;
    font-weight: bold;
    margin-top: -10px;
  }
}

/*============================
primary
============================*/

.primary {
  width: 680px;
}

.cont .primary article:not(:first-of-type) {
  margin-top: 60px;
}

.primary article p:not(:first-of-type) {
  margin-top: 20px;
}

.primary img {
  display: block;
  width: 100%;
}

.root {
  font-size: 11px;
  height: 50px;
  line-height: 50px;
  overflow-x: auto;
  margin-bottom: 10px;
}

.root li {
  white-space: nowrap;
}

.cont h2 {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  padding-left: 10px;
  margin-bottom: 25px;
  border-left: 8px solid #0070bc;
  background-color: #E9E8E8;
}

.cont h3 {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
  padding-left: 10px;
  margin-bottom: 25px;
  border-left: 8px solid #0070bd;
  border-bottom: 1px solid #E9E8E8;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .primary {
    width: 100%;
    float: none;
  }

  .cont .primary article:not(:first-of-type) {
    margin-top: 40px;
  }

  .cont h2,
  .cont h3 {
    margin-bottom: 20px;
  }
}


/*============================
table.info
============================*/

table.info {
  width: 100%;
}

table.info tr {
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #cecece;
}

table.info tr:last-child {
  border: none;
}

table.info th {
  width: 140px;
  text-align: center;
  vertical-align: middle;
  background: #e8e8e8;
  border-radius: 3px;
}

table.info th,
table.info td {
  padding: 14px 0;
}

table.info tr:first-child {
  padding-top: 0;
}

table.info td {
  text-align: left;
  padding-left: 16px;
}


table.info td a {
  display: block;
}

@media only screen and (max-width: 768px) {
  table.info {
    float: none;
    width: 100%;
    font-size: 15px;
  }

  table.info th {
    width: 110px;
    padding: 14px 6px;
    font-size: 14px;
  }

  table.info td {
    padding-left: 10px;
  }
}

/*============================
link
============================*/

.link {
  clear: both;
  width: 280px;
  margin: auto;
  font-size: 16px;
  padding-top: 40px;
}

.link a {
  padding: 15px 0;
  display: block;
  margin: auto;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  background: #0049a3;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
}

.link a::after {
  display: block;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media only screen and (max-width: 768px) {
  .link {
    width: 100%;
    padding-top: 20px;
  }
}

/*============================
secondary
============================*/

.secondary {
  width: 260px;
  margin-top: 50px;
}

.secondary dt {
  padding: 12px 0;
  color: #fff;
  background: #0070bc;
  text-align: center;
  font-weight: bold;
}

.secondary dd {
  padding: 20px;
  font-size: 14px;
  background: #f8f8f8;
}

.secondary .company .address {
  font-size: 14px;
}

.secondary .company .tel {
  font-size: 24px;
  padding-top: 5px;
  font-weight: bold;
}

.secondary .company img {
  width: 100%;
  display: block;
  margin-top: 10px;
}

.secondary .company .googlelink {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  border-radius: 3px;
  background: #0049a3;
  text-align: center;
}

.secondary .company .googlelink a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .secondary {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
}

/*============================
toTop
============================*/

.toTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  z-index: 500;
  border-radius: 2px;
  background-color: #0049a3;
}

.toTop li a {
  display: block;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
  height: 0;
  position: relative;
}

.toTop li a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .toTop {
    width: 36px;
    height: 36px;
  }
}

/*============================
footer
============================*/

footer {
  padding: 30px 0;
  color: #fff;
  font-size: 12px;
  background: #0070BB;
  position: relative;
}

footer a {
  color: #fff;
}

.sitelink li {
  display: inline-block;
  border-left: 1px solid #fff;
  padding: 0 15px;
}

.sitelink li:last-child {
  border-right: 1px solid #fff;
}

.copyright {
  font-size: 12px;
  padding-top: 10px;
}


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

  footer {
    padding: 30px 0 60px;
  }

  .sitelink li {
    padding: 0 4px;
    line-height: 12px;
  }
}
