@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #0065A3;

}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  font-size: 0.5208333vw;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
}

* {
  letter-spacing: 0.04em;
}

.wrap {
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:767px) {
  html {
    /* 375px>> 10px */
    font-size: 2.66666666vw;
  }

  body {
    font-size: 1.4rem;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
}


/*================================================
* 
================================================*/
#mv {
  padding: 0;
}

@media screen and (max-width:767px) {}

/*================================================
* service
================================================*/
#service {
  padding-top: 16rem;
}

#service .wrap {
  width: 120rem;
}

#service p {
  text-align: center;
  font-size: 3.3rem;
}

#service h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10rem auto 4rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 4.9rem;
  padding-bottom: 1rem;
  border-bottom: 0.6rem solid var(--color-primary);
}

#service ul {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 5.5rem;

}

#service ul li {
  width: 35rem;
}

@media screen and (max-width:767px) {
  #service {
    padding-top: 8rem;
  }

  #service p {
    font-size: 1.6rem;
  }

  #service h2 {
    font-size: 2.8rem;
    margin: 6rem auto 4rem;
  }

  #service .wrap {
    width: 34.5rem;
    gap: 0 1.5rem;
  }

  #service ul li {
    width: 15rem;
  }
}


/*================================================
* message
================================================*/
#message {
  padding-top: 24rem;
  padding-bottom: 26rem;
  background: url(../images/message_bg.png) no-repeat center top/cover;

}

#message .wrap {
  padding-left: 28rem;
}

#message h2 {
  color: var(--color-primary);
  font-size: 9rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

#message p {
  line-height: 2;
  width: 76rem;
}

#message .name {
  margin-top: 8rem;
}

#message .name span {
  font-size: 3.4rem;
}

@media screen and (max-width:767px) {
  #message {
    padding-top: 2rem;
    padding-bottom: 22rem;
    background: url(../images/message_bg_sp.png) no-repeat center top / cover;
  }

  #message .wrap {
    padding: 0 1.5rem;
  }

  #message h2 {
    font-size: 5rem;
  }

  #message p {
    width: 100%;
  }

  #message .name {
    margin-top: 2rem;
  }

  #message .name span {
    font-size: 2.4rem;
  }
}

/*================================================
* about
================================================*/
#about {
  background: var(--color-primary);
  padding: 10rem 0;
}

#about .wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20rem;
  color: var(--color-white);
}

#about .wrap h2 span {
  display: block;
  font-size: 5rem;
  font-weight: 700;
}

#about .wrap .inner {
  width: 62rem;
  padding-top: 8rem;
}

#about .wrap dl {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}


#about .wrap dl dt {
  padding-bottom: 1rem;
  border-right: 1px solid var(--color-white);
  width: 14rem;
  padding: 1rem 0;
}

#about .wrap dl dd {
  width: calc(100% - 14rem);
  padding: 0.5rem 0 0.5rem 3rem;
}

#about .wrap .inner .btnArea a {
  width: 38rem;
  display: block;
  border: 1px solid var(--color-white);
  border-radius: 1000px;
  text-align: center;
  padding: 0.5rem 0 0.5rem 4rem;
  position: relative;
}

#about .wrap .inner .btnArea a:hover {
  background: var(--color-white);
  color: var(--color-primary);
  opacity: 1;
}

#about .wrap .inner .btnArea a img {
  position: absolute;
  width: 4.3rem;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

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

  #about {
    background: var(--color-primary);
    padding: 5rem 0;
  }


  #about .wrap {
    width: 34.5rem;
    justify-content: start;
    gap: 0;
  }

  #about .wrap h2 span {
    font-size: 4rem;
  }

  #about .wrap .inner {
    width: 100%;
    padding-top: 4rem;
  }

  #about .wrap dl dt {
    padding: 1rem 0;
    width: 12rem;
  }

  #about .wrap dl dd {
    width: calc(100% - 12rem);
    padding: 1rem 0 1rem 2rem;
  }

  #about .wrap .inner .btnArea a {
    width: 100%;
    padding: 1.4rem 0 1.4rem 2rem;
  }

  #about .wrap .inner .btnArea a img {
    width: 3.6rem;
    left: 1rem;

  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  text-align: center;
  padding: 3rem 0;
  font-size: 1.7rem;
  color: var(--color-primary);
}


@media screen and (max-width:767px) {
  footer {
    font-size: 1.2rem;
  }
}