@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;900&display=swap');*/
/* ==========================================================================
	$top
========================================================================== */
#top {
  position: relative;
  background-image: url(../img/top.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: auto;
  height: 75vh;
  max-height: 700px;
}
#top h1 {
  font-size: 36px;
  text-align: center;
  color: #FFF;
  background-color: #013a80;
  width: 300px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}
#top h1 span {
  font-size: 18px;
  font-weight: normal;
}

.section__lead {
  margin: 50px auto 20px;
}

/* ==========================================================================
	$service ページ共通
========================================================================== */
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

a.btn {
  margin: 20px 0;
}

#point-01,
#point-02,
#point-03 {
  padding-bottom: 60px;
}
#point-01 .inner,
#point-02 .inner,
#point-03 .inner {
  position: relative;
  min-height: 250px;
}

.service__content_ttl {
  background-color: #013a80;
  padding: 30px 5px 10px;
}
.service__content_ttl h2 {
  font-size: 32px;
  text-align: left;
  color: #FFF;
  position: relative;
  margin: 0;
  padding-left: 90px;
}
.service__content_ttl h2::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 960px) {
  .service__content_ttl h2 {
    font-size: 28px;
    padding-left: 75px;
  }
  .service__content_ttl h2::before {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 480px) {
  .service__content_ttl {
    padding: 25px 0px 10px;
  }
  .service__content_ttl h2 {
    font-size: 24px;
    padding-left: 55px;
  }
  .service__content_ttl h2::before {
    width: 40px;
    height: 45px;
  }
}

.service__content_column {
  display: flex;
  justify-content: space-between;
}

.service__content_txt {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .service__content_txt {
    width: 100%;
  }
}

.service__content_img {
  width: 40%;
}
.service__content_img img {
  display: block;
  width: 100%;
  box-shadow: 5px 5px 3px rgba(56, 81, 112, 0.4);
}
@media screen and (max-width: 768px) {
  .service__content_img {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media screen and (max-width: 480px) {
  .service__content_img {
    padding: 0 10px;
  }
}

/* ==========================================================================
	$point 01
========================================================================== */
#point-01 {
  background-image: url(../img/bg_l.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
}
#point-01 .service__content_ttl {
  -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  position: absolute;
  width: 59%;
  top: 0;
  left: 0;
}
#point-01 .service__content_ttl h2::before {
  content: url(../img/point_1.svg);
}
#point-01 .service__content_lead {
  padding: 110px 30px 60px 0;
}
#point-01 dl {
  /*display: flex;*/
  /*align-items: flex-start;*/
  /*justify-content: space-between;*/
  margin-top: 20px;
}
#point-01 dt {
  color: #FFF;
  background-color: #013a80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 40px;
  margin-bottom: 10px;
}
#point-01 dd {
  width: 100%;
}
#point-01 .service__content_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: max-content;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  right: 0;
}
#point-01 .service__content_img img:nth-child(1) {
  grid-area: 1/1/2/3;
}
#point-01 .service__content_img img:nth-child(2) {
  grid-area: 2/1/3/2;
}
#point-01 .service__content_img img:nth-child(3) {
  grid-area: 2/2/3/3;
}
#point-01 h3 {
  font-size: 21px;
  color: #FFF;
  text-align: center;
  background-color: #013a80;
  border-radius: 100px;
  margin: 6% auto 20px;
  padding: 10px;
}
#point-01 .service__banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#point-01 .service__banner_item {
  width: 100%;
}
#point-01 .service__banner_item a {
  opacity: 1;
  transition: all 0.3s;
}
#point-01 .service__banner_item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
#point-01 .service__banner_item img {
  width: 100%;
}
#point-01 .service__content-column {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
#point-01 .service__content-item {
  width: 50%;
}
#point-01 .service__content-item img {
  width: 100%;
}
#point-01 .service__content-item dl {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #point-01 .service__content_ttl {
    position: unset;
    width: 100%;
  }
  #point-01 dt {
    width: 70px;
    height: 40px;
  }
  #point-01 dd {
    padding-left: 5px;
  }
  #point-01 .service__content_lead {
    padding: 30px 0px 40px;
  }
  #point-01 .service__content_img {
    position: unset;
  }
  #point-01 .service__banner {
    display: block;
    width: 100%;
    max-width: 660px;
    padding: 0 30px;
  }
  #point-01 .service__banner_item {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  #point-01 .service__content-column {
    display: block;
  }
  #point-01 .service__content-column .service__content-item {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  #point-01 .service__content_ttl {
    -webkit-clip-path: none;
            clip-path: none;
  }
  #point-01 h3 {
    font-size: 18px;
    width: 100%;
  }
  #point-01 .service__content_lead {
    padding: 20px 10px 20px;
  }
  #point-01 .service__banner {
    padding: 0 10px;
  }
}

/* ==========================================================================
	$point 02
========================================================================== */
#point-02 {
  background-image: url(../img/bg_r.jpg);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: right bottom;
}
#point-02 .service__content_ttl {
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding-left: 60px;
  position: absolute;
  width: 59%;
  top: 0;
  right: 0;
}
#point-02 .service__content_ttl h2::before {
  content: url(../img/point_2.svg);
}
#point-02 .service__content_lead {
  padding: 110px 0 0 30px;
}
#point-02 .service__content_txt {
  margin-left: 40%;
}
#point-02 .service__content_img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  #point-02 .service__content_ttl {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  #point-02 .service__content_ttl {
    position: unset;
    width: 100%;
    padding-left: 5px;
    -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  }
  #point-02 .service__content_lead {
    padding: 30px 0px 40px;
  }
  #point-02 .service__content_txt {
    margin-left: 0;
  }
  #point-02 .service__content_img {
    position: unset;
    transform: translateY(0);
  }
}
@media screen and (max-width: 480px) {
  #point-02 .service__content_ttl {
    -webkit-clip-path: none;
            clip-path: none;
    padding-left: 0;
  }
  #point-02 .service__content_lead {
    padding: 20px 10px 20px;
  }
}

/* ==========================================================================
	$point 03
========================================================================== */
#point-03 {
  background-image: url(../img/bg_l.jpg);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: left bottom;
}
#point-03 .service__content_ttl {
  -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  position: absolute;
  width: 59%;
  top: 0;
  left: 0;
}
#point-03 .service__content_ttl h2::before {
  content: url(../img/point_3.svg);
}
#point-03 .service__content_lead {
  padding: 110px 0 30px 0;
}
#point-03 .service__content_img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #point-03 .service__content_ttl {
    position: unset;
    width: 100%;
  }
  #point-03 .service__content_lead {
    padding: 30px 0px 40px;
  }
  #point-03 .service__content_img {
    position: unset;
    transform: translateY(0);
  }
}
@media screen and (max-width: 480px) {
  #point-03 .service__content_ttl {
    -webkit-clip-path: none;
            clip-path: none;
  }
  #point-03 .service__content_lead {
    padding: 20px 10px 20px;
  }
}

/* ==========================================================================
	$point 04〜07
========================================================================== */
#point-04 {
  margin-bottom: 100px;
}
#point-04 .service__content_column {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#point-04 .service__content_item {
  width: 40%;
}
#point-04 .service__content_item p {
  width: 80%;
  margin: 0 auto;
}
#point-04 .service__content_item a.btn {
  width: 80%;
  max-width: 300px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  #point-04 .service__content_item {
    width: 45%;
  }
}
@media screen and (max-width: 600px) {
  #point-04 .service__content_item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
  }
  #point-04 .service__content_item img {
    text-align: center;
  }
}/*# sourceMappingURL=layout.css.map */