@charset "UTF-8";

/* Import
---------------------------------------------*/
@import url("https://use.fontawesome.com/releases/v5.12.1/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese");


/* Common
---------------------------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
}
body{
  color: #111;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
}
ul,ol,li,dl,dt,dd {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #111;
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  opacity: 0.7;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
p + p {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  p + p {
    margin-top: 12px;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}


/* Header
---------------------------------------------*/
.header {
  position: relative;
  text-align: center;
  width: 100%;
}
.header p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 0;
  margin: 0;
}
.breadcrumb {
  text-align: center;
  line-height: 1.2;
  background-color: #000;
  padding: 10px 0;
  margin: 0;
}
.breadcrumb li {
  display: inline;
  color: #fff;
  font-size: 1.2rem;
}
.breadcrumb li::before {
  content: '>';
  margin: 0 10px;
}
.breadcrumb li:first-of-type::before {
  content: none;
}
.breadcrumb li a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header p {
    font-size: 1.3rem;
  }
  .breadcrumb {
    text-align: left;
    padding: 5px 10px;
  }
  .breadcrumb li::before {
    margin: 0 2px;
  }
}


/* kv
---------------------------------------------*/
.kv {
  overflow: hidden;
  position: relative;
}
.kv::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-width: 0 100vw 200px 100vw;
  border-style: solid;
  border-color: transparent transparent #0249A1 transparent;
}
.kv__inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.kv__image {
  max-width: 500px;
  margin: 80px 0 140px auto;
}
.kv__text {
  position: absolute;
  left: 0;
  top: 50%;
  max-width: 630px;
  width: 90%;
  transform: translate(0,-50%);
}
.kv__text h1 {
  font-size: 3.2rem;
  line-height: 1.6;
  margin: 14px 0 20px;
}
.kv__text h1 span {
  color: #2fa201;
}
.kv__text h1 b {
  font-size: 5.2rem;
}
.kv__text p {
  font-size: 1.8rem;
  font-weight: bold;
}
.kv__text .kv__copy--body span {
  color: #ff7d1f;
}
@media screen and (max-width: 768px) {
  .kv::after {
    border-width: 0 100vw 50px 100vw;
  }
  .kv__inner {
    margin-bottom: 50px;
  }
  .kv__image {
    margin: 0 0 20px;
  }
  .kv__text {
    position: static;
    transform: inherit;
    margin: 0 auto;
  }
  .kv__text h1 {
    font-size: 2.0rem;
    margin: 10px 0;
  }
  .kv__text h1 b {
    font-size: 3.1rem;
  }
  .kv__text p {
    font-size: 1.4rem;
  }
}


/* merit
---------------------------------------------*/
.merit {
  color: #fff;
  background-color: #0249A1;
  padding: 60px 0;
}
.merit__inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.merit h2 {
  font-size: 3.6rem;
  line-height: 1.2;
  text-align: center;
}
.merit h2 b {
  font-size: 5.2rem;
}
.merit__inner > p {
  max-width: 760px;
  width: 90%;
  margin: 30px auto 60px;
}
.merit ul {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.merit ul li {
  width: 28%;
}
.merit ul li h3 {
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
.merit ul li h3 small {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.merit ul li .merit__image {
  overflow: hidden;
  border-radius: 50%;
}
.merit ul li p {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .merit h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .merit h2 b {
    display: block;
    font-size: 3.4rem;
  }
  .merit ul {
    flex-wrap: wrap;
    width: 90%;
  }
  .merit ul li {
    width: 100%;
    margin-top: 40px;
  }
  .merit ul li:first-child {
    margin-top: 0;
  }
  .merit ul li h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .merit ul li h3 small {
    font-size: 1.2rem;
  }
  .merit ul li .merit__image {
    border-radius: 16px;
  }
  .merit ul li p {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 10px;
  }
}


/* reason
---------------------------------------------*/
.reason {
  background-color: #A6DEF5;
  padding-bottom: 60px;
}
.reason h2 {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  background: linear-gradient(#000, #555);
  padding: 40px 0;
}
.reason h2 b {
  display: block;
  font-size: 5.2rem;
}
.reason__inner {
  max-width: 1000px;
  width: 90%;
  padding-top: 40px;
  margin: 0 auto;
}
.reason__box {
  display: flex;
  background-color: rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 4px 6px 0 rgb(0 0 0 / 10%);
  padding: 30px 30px 20px;
  margin-top: 40px;
}
.reason__inner > .reason__box:first-child {
  margin-top: 0;
}
.reason__image {
  overflow: hidden;
  width: 260px;
  border-radius: 50%;
  margin-right: 40px;
}
.reason__inner > .reason__box:nth-of-type(even) .reason__image {
  order: 1;
  margin: 0 0 0 40px;
}
.reason__text {
  flex: 1;
}
.reason__subt {
  display: inline-block;
  color: #004098;
  font-size: 2.0rem;
  font-weight: 700;
  background-color: #fff;
  box-shadow: 2px 4px 0 rgb(0 0 0 / 10%);
  padding: 0 15px;
  margin-bottom: 5px;
}
.reason__text h3 {
  font-size: 3.2rem;
  margin: 10px 0;
}
.reason__text p {
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .reason {
    padding-bottom: 40px;
  }
  .reason__inner {
    padding-top: 20px;
  }
  .reason h2 {
    font-size: 1.8rem;
    padding: 20px 0;
  }
  .reason h2 b {
    font-size: 3.6rem;
  }
  .reason__box {
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 20px;
  }
  .reason__image,
  .reason__inner > .reason__box:nth-of-type(even) .reason__image {
    order: 0;
    width: 100%;
    margin: 0 0 10px;
  }
  .reason__text {
    text-align: center;
    width: 100%;
  }
  .reason__subt {
    font-size: 1.4rem;
  }
  .reason__text h3 {
    font-size: 2.6rem;
    margin: 5px 0;
  }
  .reason__text p {
    font-size: 1.2rem;
    text-align: left;
  }
}

/* voice
---------------------------------------------*/
.voice {
  color: #fff;
  background-color: #0249A1;
  padding: 60px 0;
}
.voice__inner {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.voice h2 {
  font-size: 5.2rem;
  text-align: center;
}
.voice__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.voice__image {
  width: 126px;
}
.voice__text {
  flex: 1;
  position: relative;
  color: #111;
  border-radius: 16px;
  background-color: #fff;
  padding: 20px 30px;
  margin-left: 30px;
}
.voice__text::before {
  content: '';
  display: block;
  position: absolute;
  right: 100%;
  top: 50%;
  width: 0;
  height: 0;
  border-width: 10px 14px 10px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  transform: translate(0,-50%);
}
.voice__subt {
  display: inline-block;
  color: #786416;
  font-weight: 700;
  background-color: #e5dca0;
  border-radius: 20px;
  padding: 6px 20px;
  margin-bottom: 10px;
}
.voice__text p {
  font-weight: 700;
}
.voice__desc {
  font-size: 2.2rem;
  font-weight: 700;
  border: 1px solid #fff;
  padding: 20px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .voice {
    padding: 40px 0;
  }
  .voice h2 {
    font-size: 3.2rem;
  }
  .voice__box {
    margin-top: 20px;
  }
  .voice__image {
    display: none;
  }
  .voice__text {
    padding: 12px 20px;
    margin: 0 0 12px;
  }
  .voice__text::before {
    right: 50%;
    top: 100%;
    border-width: 14px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    transform: translate(-50%,0);
  }
  .voice__subt {
    padding: 2px 12px;
  }
  .voice__desc {
    font-size: 1.6rem;
    padding: 12px 20px;
  }
}


/* entetsu
---------------------------------------------*/
.entetsu {
  padding: 60px 0;
}
.entetsu__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.entetsu__text {
  font-size: 1.8rem;
  font-weight: 700;
  width: 45%;
}
.entetsu__text p {
  line-height: 1.8;
}
.entetsu__image {
  width: 50%;
}
.entetsu__lead {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .entetsu {
    padding: 30px 0;
  }
  .entetsu__text {
    font-size: 1.4rem;
    width: 100%;
  }
  .entetsu__image {
    width: 100%;
    margin-top: 30px;
  }
  .entetsu__lead {
    font-size: 2.0rem;
    margin-top: 20px;
  }
}


/* cv
---------------------------------------------*/
.cv {
  margin-top: 60px;
}
.cv a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #ff872f;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  padding: 18px 0;
  margin: 0 auto;
}
.cv a::before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  width: 86px;
  height: 113px;
  background: url(../img/hiyoko.png) no-repeat;
  background-size: contain;
  transform: translate(-50%,-50%);
}
.cv a::after {
  content: '\f105';
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .cv {
    margin-top: 40px;
  }
  .cv a {
    font-size: 1.5rem;
    padding-left: 26px;
  }
  .cv a::before {
    left: 3px;
    width: 56px;
    height: 74px;
  }
  .cv a::after {
    margin-left: 10px;
  }
}


/* contact
---------------------------------------------*/
.contact {
  background-color: #A6DEF5;
  padding: 60px 0;
}
.contact__inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.contact h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.contact__box {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 4px 6px 0 rgb(0 0 0 / 10%);
  padding: 30px 30px 20px;
}
.contact__box::after {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  top: 0;
  width: 86px;
  height: 113px;
  background: url(../img/hiyoko.png) no-repeat;
  background-size: contain;
  transform: translate(-50%,-50%);
}
.contact__box > div {
  font-weight: 700;
  text-align: center;
}
.contact__box .contact__tel {
  width: 65%;
  padding-right: 30px;
}
.contact__box .contact__mail {
  border-left: 1px dotted #ccc;
  width: 35%;
  padding-left: 30px;
}
.contact__box .tel {
  float: left;
  font-size: 2.8rem;
  line-height: 1;
  width: 45%;
  padding: 0 10px;
  margin: 10px 0;
}
.contact__box .tel + .tel {
  width: 55%;
}
.contact__box .tel span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.4;
  background-color: #fff289;
  padding: 5px 0;
  margin-bottom: 10px;
}
.contact__box .tel a::before {
  content: '\f879';
  color: #004098;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  line-height: 0;
  vertical-align: middle;
  margin-right: 0.3em;
}
.contact__box .cv {
  margin: 10px 0;
}
.contact__box .cv a {
  font-size: 1.6rem;
  width: 100%;
}
.contact__box .cv a::before {
  content: none;
}
.contact__box .caution {
  clear: both;
  font-size: 1.4rem;
  padding-top: 5px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
  .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .contact__box {
    display: block;
    padding: 22px 20px;
  }
  .contact__box::after {
    left: 10px;
    top: 10px;
    width: 56px;
    height: 70px;
  }
  .contact__box .contact__tel,
  .contact__box .contact__mail {
    width: 100%;
    padding: 0;
  }
  .contact__box .contact__mail {
    border: 0;
    border-top: 1px dotted #ccc;
    padding-top: 20px;
    margin-top: 20px;
  }
  .contact__box .tel {
    font-size: 3.0rem;
  }
  .contact__box .tel,
  .contact__box .tel + .tel {
    width: 100%;
    padding: 0;
  }
  .contact__box .tel span {
    font-size: 1.0rem;
  }
  .contact__box .tel::before {
    font-size: 2.0rem;
  }
  .contact__box .cv a {
    width: 100%;
  }
}


/* Footer
---------------------------------------------*/
.footer {
  text-align: center;
  background-color: #000;
  padding: 24px 20px 90px;
}
.footer__nav {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.footer__nav ul li {
  display: inline;
}
.footer__nav ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  width: 1px;
  height: 20px;
  margin: 0 30px;
}
.footer__nav ul li:first-of-type::before {
  content: none;
}
.footer__nav ul li a {
  color: #fff;
}
.footer .copyright {
  color: #fff;
  font-size: 1.2rem;
}
@media (max-width:768px) {
  .footer {
    padding-bottom: 60px;
  }
  .footer__nav ul li::before {
    height: 18px;
    margin: 0 10px;
  }
  .footer__nav ul li a {
    font-size: 1.2rem;
  }
  .footer .copyright {
    font-size: 1.1rem;
  }
}
