@charset "UTF-8";
/* animation */
.fadeinFirst {
  -webkit-animation-name: fadeinF;
          animation-name: fadeinF;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.fadeinSecond {
  -webkit-animation-name: fadeinF;
          animation-name: fadeinF;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeinF {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeinF {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ヘッダー調整 */
#header_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  height: 4rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 760px) {
  #header_bottom {
    overflow: hidden;
    width: 100%;
    height: 3rem;
  }
  #header_bottom_inner {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    height: 3rem;
  }
  #header_bottom_inner nav {
    position: absolute;
    right: 0;
    bottom: 1rem;
  }
  #header_bottom_inner nav ul li {
    display: inline-block;
    height: 1rem;
    margin-left: 1rem;
    font-size: 1rem;
    font-weight: bold;
  }
  #header_bottom_inner nav ul li a {
    padding-bottom: 0.5rem;
  }
  #header_bottom_inner nav ul li .dummylocation {
    border-bottom: solid 6px rgba(255, 255, 255, 0);
  }
}

.navLogo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: rgba(255, 255, 255, 0);
}

.navlogo_ON {
  fill: white;
}

.nav_contact_icon_ON {
  width: 40px;
  height: 1rem;
}

.nav_contact_icon_OFF {
  width: 0;
  height: 0;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nav_unshown {
  display: none;
}

/* 759 under */
@media screen and (max-width: 759px) {
  #header_contact {
    display: none;
  }
  .nav_contact_icon {
    width: 40px;
    height: 1rem;
  }
  .list_mailicon::after {
    content: "お問い合わせ";
  }
  #nav_drawer {
    position: relative;
  }
  #nav_open {
    position: fixed;
    top: 0;
    right: -1px;
    width: 30px;
    height: 22px;
    padding: 10px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 0 10px;
  }
  #nav_open span,
  #nav_open span:before,
  #nav_open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #555;
    display: block;
    content: "";
    cursor: pointer;
  }
  #nav_open span:before {
    bottom: -8px;
  }
  #nav_open span:after {
    bottom: -16px;
  }
  #nav_close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #nav_content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: -1px;
    z-index: 9999;
    width: 15rem;
    max-width: 90%;
    height: 100%;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }
  #nav_input:checked ~ #nav_close {
    display: block;
    opacity: 0.5;
  }
  #nav_input:checked ~ #nav_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
            box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  nav ul li {
    margin: 1rem;
    padding: 0.5rem;
  }
}

/* トップへ戻るボタン */
.sub_footer {
  position: relative;
  width: 100%;
  margin: 3rem 0 0 0;
}

.pageTop {
  display: none;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 51px;
  height: 51px;
  background-color: rgba(255, 255, 255, 0.8);
}

.pageTop_absolute {
  position: absolute;
  bottom: 0;
}

/* footer */
.footer_2box {
  margin-top: 0.5rem;
  background-color: #000033;
  color: #ffffff;
}

@media screen and (min-width: 760px) {
  .footer_2box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_2box a:link,
.footer_2box a:visited {
  color: #ffffff;
}

#footer_company {
  background-color: #000033;
  line-height: 1.4rem;
}

@media screen and (min-width: 760px) {
  #footer_company {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 45%;
    padding: 2rem 0.5rem 0 5%;
  }
}

@media screen and (max-width: 759px) {
  #footer_company {
    padding: 2rem 1rem;
  }
}

#footer_company div {
  display: block;
  max-width: 469px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 auto;
}

#footer_company div,
#footer_company span {
  color: #ffffff;
}

#footer_company .address {
  font-size: 85%;
}

#footer_nav {
  padding: 2rem 0.5rem 2rem 7%;
  background-color: #003366;
  font-size: 85%;
  line-height: 2rem;
}

@media screen and (min-width: 760px) {
  #footer_nav {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 55%;
  }
}

#footer_nav div {
  max-width: 630px;
}

#footer_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#footer_nav ul li {
  -webkit-flex-basis: 31%;
      -ms-flex-preferred-size: 31%;
          flex-basis: 31%;
  padding: 0.2rem 0;
  list-style: none;
}

/* コピーライト */
#copyright {
  margin: 0.5rem auto 3rem;
  background-color: #ffffff;
  color: gray;
  font-size: 0.8rem;
  text-align: center;
}

/* ロゴ調整 */
.header_top_logo {
  width: 105px;
  height: 38px;
  margin-left: 0.8rem;
}

/* ロゴとキャッチコピー */
#Catchphrase {
  font-size: 0.6rem;
}

#Catchphrase svg {
  fill: #cc0000;
}

#Catchphrase span {
  display: block;
  margin-left: 0.8rem;
  color: #990000;
}

#header_contact {
  margin-right: 0.7rem;
}

/* svgデータは非表示 */
.svgdata {
  position: absolute;
  width: 0;
  height: 0;
}

/* javascriptOFFの時の処理 */
.noscript {
  color: red;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1rem;
}

.javascript_on_block,
.javascript_on_inline {
  display: none;
}

/* basic */
img {
  max-width: 100%;
  height: auto;
}

input:not(.check) {
  width: 99%;
  height: 1.5rem;
  padding-left: 0.2rem;
}

textarea {
  width: 100%;
  height: 10rem;
  padding-left: 0.2rem;
}

/* text layout */
#main {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 2rem;
}

section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.box-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  margin-right: 1.5rem;
}

.box_inlineblock {
  display: inline-block;
}

.attention {
  color: red;
  font-weight: bold;
}

.textunderline {
  text-decoration: underline;
}

.textindent {
  padding-left: 1rem;
}

.telnumber {
  display: inline-block;
}

.bolder {
  font-weight: bolder;
}

.underline {
  border-bottom: solid 1px gray;
}

.domain::before {
  content: "@";
}

.dot::before {
  content: ".";
}

.contentTitle_index {
  padding: 0 1.5rem 1rem;
}

.contentTitle_index h1 {
  font-size: 1.6rem;
}

.contentTitle {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 2rem 1.5rem 2rem;
}

.contentTitle h1 {
  font-size: 1.6rem;
  font-weight: bolder;
}

.contentText {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* contact box */
#footer_contact_box {
  display: block;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 3rem;
  padding: 0 0.3rem 5rem 0.3rem;
  font-weight: bold;
}

#contact_box_top {
  background-color: #748595;
}

#contact_box_top .title {
  padding-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
}

#contact_box_top .consultation {
  padding: 1rem 0 1rem 10%;
  background-image: url(../image/icon/icon_contact_p.png);
  background-repeat: no-repeat;
  background-position: 90% 0;
  font-weight: bold;
  line-height: 2;
  color: #ffffff;
}

@media screen and (min-width: 500px) {
  #contact_box_top .consultation {
    background-size: 90px 84px;
  }
}

@media screen and (max-width: 499px) {
  #contact_box_top .consultation {
    background-size: 45px 42px;
  }
}

#contact_box_bottom {
  border: 1px solid #748595;
  padding: 1rem 0 0.5rem 0;
  color: #667584;
  font-weight: bold;
  line-height: 1.5rem;
}

@media screen and (min-width: 500px) {
  #contact_box_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
  #contact_box_bottom .bottom_left {
    -webkit-flex-basis: 42%;
        -ms-flex-preferred-size: 42%;
            flex-basis: 42%;
    padding-left: 4%;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  #contact_box_bottom .bottom_right {
    -webkit-flex-basis: 58%;
        -ms-flex-preferred-size: 58%;
            flex-basis: 58%;
  }
}

@media screen and (max-width: 499px) {
  #contact_box_bottom {
    text-align: center;
  }
  #contact_box_bottom .bottom_left {
    margin-bottom: 1rem;
  }
}

#contact_box_bottom a:link,
#contact_box_bottom a:visited {
  font-weight: bold;
  color: #667584;
}

#contact_box_bottom .telnumber {
  font-size: 1.6rem;
  font-style: "ＭＳ Ｐゴシック", sans_serif;
  color: #667584;
}

#contact_box_bottom .tel_time {
  font-size: 0.8rem;
  color: #667584;
}

#header_bottom {
  background: #003366;
}

#header_bottom_inner nav ul li a:hover,
#header_bottom_inner nav ul li .yourlocation {
  border-bottom: solid 6px #bfd2f0;;
  color: #bfd2f0;;
}

#header_bottom_inner nav a {
  color: #fff;
}

@media only screen and (max-width: 760px) {
  #header_bottom_inner nav ul li a,
  #header_bottom_inner nav ul li a.yourlocation {
    color: #000; 
  }
  #header_bottom_inner nav ul li a:hover,
  #header_bottom_inner nav ul li .yourlocation {
    border-bottom: solid 6px skyblue;
    color: #000;
  }
}

.h1_underline {
  overflow: visible;
  display: block;
  width: 3.5rem;
  height: 0;
  margin-top: 0.3rem;
  padding: 0;
  border-top: solid 6px rgba(70, 130, 180, 0.6);
}



.breadcrumb {
  background: rgba(226, 226, 226, 0.5);
  overflow: hidden;
  width: 100%;
}

.breadcrumb_inner {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding: 0.4em 1em;
}

.breadcrumb_inner li {
  display: inline;
  list-style: none;
} 

.breadcrumb_inner li:after {
  content: '>';
  padding: 0 0.3em;
  color: #555;
  font-size: 70%;
}

.breadcrumb_inner li:last-child:after {
  content: '';
}

.breadcrumb_inner li span {
  text-decoration: none;
  color: rgba(70, 70, 70, 0.7);
  font-size: 75%;
}

.breadcrumb_inner li a:hover {
  text-decoration: underline;
}

.news-item a {
  color: #6699CC;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.news-item a:visited {
  color: #6699CC;
}

.news-item a:hover {
  text-decoration: underline;
  color: #6699CC; 
}

.link-item a {
  color: #D93A49;
  text-decoration: underline;
  font-weight: bold;
  /* font-size: 20px; */
}

.link-item a:visited {
  color: #D93A49;
}
