@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Maru+Gothic:wght@700&family=Barlow+Condensed:wght@500&display=swap');

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #3f3b3a;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: Arial, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.f-barlow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.fadeIn {
  visibility: hidden;
  opacity: 0;
  transition: opacity 2s;
}

.fadeIn.active {
  visibility: visible;
  opacity: 1;
}

.fadeInUp {
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 32px);
  transition: transform 1s, opacity 1s;
}

.fadeInUp.active {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.container {
  width: 100%;
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  position: relative;
}

.header-wrap {
  position: relative;
  max-width: 104rem;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9rem;
  z-index: 99;
}

.header-logo a {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
}

.header-logo img {
  width: 13rem;
  margin-right: 1em;
}

.header-contact a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  font-weight: bold;
  padding-left: 3.8em;
}

.header-contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.8em;
  height: 2.8em;
  background-image: url(../img/icon_contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform: translateY(-50%);
}

.header-contact a span {
  font-size: .64em;
  font-weight: normal;
  margin-left: 1em;
}

.header-menu {
  background: #167daf;
  color: #fff;
}

.header-nav {
  max-width: 104rem;
  padding: .7rem 2rem;
  margin: 0 auto;
}

.header-nav ul {
  display: flex;
  align-items: center;
}

.header-nav ul li {
  width: 25%;
  border-left: 1px solid #fff;
}

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

.header-nav ul li a {
  position: relative;
  height: 2.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.25;
}

.header-nav ul li a span {
  display: block;
  font-size: .75em;
  font-weight: normal;
}

.header-nav ul li.current a:hover {
  opacity: 1;
  pointer-events: none;
}

.header-nav ul li.current a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 60%;
  height: .5rem;
  background: #fff100;
  transform: translate(-50%, .1rem);
}

.header-menubtn {
  display: none;
}

.top-mv {
  padding: 6rem 0;
  height: 75rem;
  background-image: url(../img/mv_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.top-mv .container {
  max-width: 100%;
  padding: 0 5vw;
}

.top-mv .mv-ttl {
  font-size: 15rem;
  line-height: 1;
}

.top-mv .mv-txt {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .15em;
}

.top-overview {
  padding: 5rem 0;
  background: #167daf;
  color: #fff;
}

.top-overview .overview-list {
  display: flex;
}

.top-overview .overview-list li {
  width: 30%;
  text-align: center;
}

.top-overview .overview-list .li-img {
  display: inline-block;
  width: 16rem;
}

.top-overview .overview-list .li-txt {
  margin-top: .5em;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.25;
}

.top-overview .overview-list .li-txt span {
  margin-top: .25em;
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: .1em;
}

.top-about {
  padding: 12rem 0;
  background: #f7f8f8;
}

.top-about .about-ttl {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.55;
}

.top-about .about-txt {
  margin-top: 1.5em;
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}

.top-hm {
  padding: 12rem 0;
}

.top-hm .container {
  max-width: 84rem;
}

.sect-ttl {
  position: relative;
  padding-bottom: 1em;
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  letter-spacing: .1em;
}

.sect-ttl span {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  color: #727171;
  margin-bottom: .25em;
}

.sect-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 15rem;
  height: .5rem;
  background: #87c3df;
  transform: translateX(-50%);
}

.top-hm .hm-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  margin-top: 4em;
}

.top-hm .hm-list li {
  width: 25%;
  margin: 2em 0;
  text-align: center;
}

.top-hm .hm-list li img {
  width: 16rem;
}

.top-hm .hm-list li span {
  margin-top: 2em;
  min-height: 2.4em;
  display: block;
  color: #595857;
  line-height: 1.2;
}

.top-hm .hm-btn {
  margin-top: 2rem;
  text-align: center;
}

.top-hm .hm-btn a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: .7em 2em .7em 4em;
  color: #056fb8;
  border: .15rem solid #056fb8;
}

.top-hm .hm-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5em;
  width: 2em;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.top-news {
  padding: 10rem 0;
  background: rgba(205,233,239,.4);
}

.top-news .news-list {
  max-width: 60rem;
  margin: 6rem auto 0;
}

.top-news .news-list li {
  border-bottom: 1px solid #231916;
}

.top-news .news-list li a {
  position: relative;
  padding: .75em 2em .75em 5em;
  font-size: 1.6rem;
  display: flex;
}

.top-news .news-list li a::before {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 3em;
  width: 1.25em;
  height: 1.25em;
  background: #167daf;
  border-radius: 50%;
  transform: translateY(-50%);
}

.top-news .news-list .li-date {
  width: 7em;
}

.top-news .news-list .li-ttl {
  flex: 1;
}

.pagetop {
  position: fixed;
  right: 5rem;
  bottom: 10rem;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  pointer-events: all;
  z-index: 99;
}

.pagetop:hover {
  opacity: .7;
}

.pagetop img {
  display: block;
}

footer {
  margin-top: 10rem;
}

.footer-wrap {
  padding: 3rem 0;
  background: #89ccea;
  color: #fff;
}

.footer-wrap .container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-info {
  margin-right: 5rem;
}

.footer-info .footer-logo {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.footer-info .footer-address {
  display: block;
  margin: .25em 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-info .footer-tel {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.footer-menu {
  display: flex;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-menu li {
  position: relative;
  padding: 0 2em;
}

.footer-menu li::after {
  content: "/";
  position: absolute;
  top: 0;
  right: 0;
}

.footer-menu li:last-child {
  padding-right: 0;
}

.footer-menu li:last-child::after {
  display: none;
}

.footer-copyright {
  background: #186388;
  color: #fff;
  font-size: 1rem;
  padding: 1em 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .header-wrap {
    height: 6rem;
    padding: 1rem 6rem 1rem 1rem;
    background: #fff;
  }

  .header-logo a {
    font-size: 1.25rem;
  }

  .header-logo img {
    width: 8rem;
  }

  .header-contact a {
    width: 4rem;
    height: 4rem;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 4rem;
  }

  .header-contact a::before {
    width: 4rem;
    height: 4rem;
  }

  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    height: 100vh;
    background: #167daf;
    color: #fff;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    transition: all .4s;
    z-index: 90;
  }
  
  .header-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .header-nav {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header-nav ul {
    width: 90%;
    flex-direction: column;
  }
  
  .header-nav ul li {
    width: 100%;
    border-left: none;
    border-top: 1px solid #fff;
  }

  .header-nav ul li a {
    height: 3.5em;
  }
  
  .header-nav ul li:last-child {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  
  .header-nav ul li.current a::after {
    top: initial;
    bottom: 0;
  }

  .header-menubtn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #167daf;
    /* border: 1px solid #000; */
    z-index: 99;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 2.4rem;
    height: 1.6rem;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    background-color: #fff;
    border-radius: .2rem;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: .7rem;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active {
    transform: rotate(360deg);
  }

  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(.7rem) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    transform: translateY(0) rotate(45deg);
  }

  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0;
  }

  .top-mv {
    padding: 1rem 0;
    height: 54vw;
    background-image: url(../img/mv_sp.jpg);
  }
  
  .top-mv .container {
    padding: 0 1rem;
  }
  
  .top-mv .mv-ttl {
    font-size: 4.2rem;
  }
  
  .top-mv .mv-txt {
    font-size: .9rem;
  }
  
  .top-overview {
    padding: 2rem 0;
  }
  
  .top-overview .overview-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .top-overview .overview-list li {
    width: 40%;
    margin: .5rem 0;
  }
  
  .top-overview .overview-list .li-img {
    width: 8.2rem;
  }
  
  .top-overview .overview-list .li-txt {
    font-size: 1.6rem;
  }
  
  .top-overview .overview-list .li-txt span {
    font-size: 1.1rem;
  }
  
  .top-about {
    padding: 4rem 0;
  }
  
  .top-about .about-ttl {
    font-size: 2rem;
  }
  
  .top-about .about-txt {
    font-size: 1.5rem;
    text-align: justify;
  }
  
  .top-hm {
    padding: 6rem 0;
  }
  
  .sect-ttl {
    font-size: 2rem;
  }

  .sect-ttl span {
    margin-bottom: .5em;
  }
  
  .sect-ttl::after {
    width: 13.5rem;
    height: .45rem;
  }
  
  .top-hm .hm-list {
    font-size: 1.2rem;
    margin-top: 4em;
  }
  
  .top-hm .hm-list li {
    width: 50%;
    margin: 2em 0;
  }
  
  .top-hm .hm-list li img {
    width: 12rem;
  }
  
  .top-hm .hm-btn {
    text-align: center;
  }
  
  .top-news {
    padding: 6rem 0;
  }
  
  .top-news .news-list {
    margin: 4rem 2rem 0;
  }
  
  .top-news .news-list li {
    border-bottom: 1px solid #231916;
  }
  
  .top-news .news-list li a {
    padding: 1em 0 1em 1.5em;
    flex-direction: column;
  }
  
  .top-news .news-list li a::before {
    top: 1.75em;
    left: 0;
    width: 1em;
    height: 1em;
  }
  
  .pagetop {
    right: 2rem;
    bottom: 4rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  
  footer {
    margin-top: 6rem;
  }
  
  .footer-wrap {
    padding: 3rem .5rem;
  }
  
  .footer-wrap .container {
    display: block;
  }
  
  .footer-info {
    margin: 0 0 1rem;
  }
  
  .footer-info .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-info .footer-address {
    font-size: 1.1rem;
  }
  
  .footer-info .footer-tel {
    font-size: 1.8rem;
  }
  
  .footer-menu {
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: -2em;
  }
  
  .footer-menu li {
    margin: .5em 0;
  }
  
  .footer-copyright {
    background: #186388;
    color: #fff;
    font-size: 1rem;
    padding: 1em 0;
    text-align: center;
  }

}
/*--------------------------------
共通
---------------------------------*/
.pc {display: none;}
.sp {width: 100%;}
.content-body{margin: 20px;}

/*--------------------------------
お問合せ
---------------------------------*/
.content-head{margin: 0;}
.content-head img {width: 100%;}
.contact-text {font-size: 1.6rem;margin-top: 50px;}
.contactform{margin-top: 50px;}
.form-inputtext{border: 1px solid #000; border-radius: 3px;width: 100%;padding: 10px;box-sizing: border-box;font-size: 1.6rem;margin-bottom: 35px;}
.form-textarea{border: 1px solid #000; border-radius: 3px;width: 100%;padding: 10px;box-sizing: border-box;font-size: 1.6rem;line-height: 180%;height: 150px;}
.contactform dt {font-size: 1.6rem; font-weight: bold;}
.contactform dt span {height: 20px;line-height: 20px;color: #fff;background-color: #036eb8;width: 55px;text-align: center;font-size: 13px;display: inline-block;margin-left: 15px;}
.btnwrap {text-align: center;margin: 30px 0;}
.btn {width: 200px;height: 40px;padding: 5px 8px;background-color: #176388;font-size: 16px;color: #fff;font-weight: bold;margin: 20px 10px;border-radius: 5px;border: 0;}
.contactcheck{margin-top: 50px;}
.contactcheck dt {font-size: 1.6rem;font-weight: bold; }
.contactcheck dd {font-size: 1.6rem; border-bottom: 1px solid #000;padding-bottom: 10px;margin-bottom: 15px;}
.contactcheck dd span{font-size: 9px;}
.contact-text2 {font-size: 1.6rem;margin-top: 30px;}
.contactform h3 {font-size: 2rem;text-align: center;font-weight: bold;}



@media screen and (min-width: 769px) {
/*--------------------------------
共通
---------------------------------*/
.pc {display: block;width: 100%;}
.sp {display: none;}

}

@media screen and (min-width: 1001px) {
/*--------------------------------
お問合せ1000
---------------------------------*/
.contact-text {text-align: center;margin-top: 80px;}
.contactform{margin: 50px auto 20px;width: 660px;}
.contactcheck{width: 660px;margin: 50px auto;}
.contactcheck dl{display: flex;flex-wrap: wrap;}
.contactcheck dt {width: 160px;border-bottom: 1px solid #000;padding-bottom: 10px;margin-bottom: 30px;}
.contactcheck dd {width: 460px;margin-bottom: 30px;}
.contact-text2 {margin-top: 40px;}


}
.sample{text-align: center;margin: 50px auto;}
.product{margin: 20px;}
.product-list li{margin-top: 30px;}
.product-list li p{font-size: 1.5rem;text-align: center;margin-top: 15px;font-weight: bold;}
.product-list li img {width: 100%;margin: auto;}
.product-list li p span {display: block;font-size: 1.3rem;margin-bottom: 25px;font-weight: normal;}
.product-text {font-size: 1.5rem;text-align: center;margin-bottom: 3rem;}
@media screen and (min-width: 1001px) {
.product{margin: 50px auto;}
.product-list{display: flex;width: 1000px;margin: auto;}
.product-list li img {padding: 10px;}
.product-list li{margin-top: 50px;}
.product-text {margin-bottom: 4rem;}
}
@media screen and (min-width: 1301px) {
.product-list{width: 1250px;}
.product-list li{margin-top: 70px;}
.product-text {margin-bottom: 5rem;}

}