@charset "UTF-8";
/*

オンライン画像配信サービス「TONARI」

*/
/* Vendor */
/* Variable */
/*

breakpoints

*/
/*

base color

*/
/*

text color

*/
/*

table color

*/
/*

button color

*/
/*

width

*/
/*

webfonts

*/
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/* Function */
body.tonari {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

body.tonari .mv.blue {
  background-image: url("../../images/tonari/mv.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  body.tonari .mv.blue {
    background-image: url("../../images/tonari/sp_mv.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

body.tonari .mv.blue .mv__contents__title h1 {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  body.tonari .mv.blue .mv__contents__title h1 {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .mv.blue .mv__contents__title h1 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .mv.blue .mv__contents__title h1 {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.tonari .title_whiteline {
  text-align: center;
  padding-top: 20px;
}

body.tonari .title_whiteline h2 {
  position: relative;
  margin: 0;
  padding: 0 50px;
  color: #fff;
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  body.tonari .title_whiteline h2 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .title_whiteline h2 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

body.tonari .title_whiteline h2::before, body.tonari .title_whiteline h2::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32%;
  height: 5px;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

@media screen and (max-width: 1199px) {
  body.tonari .title_whiteline h2::before, body.tonari .title_whiteline h2::after {
    width: 25%;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .title_whiteline h2::before, body.tonari .title_whiteline h2::after {
    width: 22%;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .title_whiteline h2::before, body.tonari .title_whiteline h2::after {
    width: 18%;
  }
}

body.tonari .title_whiteline h2::before {
  left: 0;
}

body.tonari .title_whiteline h2::after {
  right: 0;
}

body.tonari .grid {
  background-image: url("../../images/tonari/bg_grid_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-repeat: repeat;
  padding-bottom: 200px;
}

@media screen and (max-width: 575px) {
  body.tonari .grid {
    padding-bottom: 250px;
  }
}

body.tonari .grid .merit .wrapper {
  height: 450px;
  background-color: #1541a2;
  margin-bottom: 200px;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit .wrapper {
    height: 900px;
    margin-bottom: 240px;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .merit .wrapper {
    height: 750px;
    margin-bottom: 160px;
  }
}

@media screen and (max-width: 320px) {
  body.tonari .grid .merit .wrapper {
    height: 850px;
    margin-bottom: 180px;
  }
}

body.tonari .grid .merit .inner {
  width: 90%;
  margin: 0 auto;
  color: #fff;
}

body.tonari .grid .merit .inner .text {
  margin: 25px 0;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit .inner .text {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .merit .inner .text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.tonari .grid .merit__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.tonari .grid .merit__box .content {
  width: 23.6%;
  background-color: #fff;
  color: #1541a2;
  padding: 2.7%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
  box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit__box .content {
    width: 48.1%;
    padding: 4% 5.6%;
  }
  body.tonari .grid .merit__box .content:nth-child(n + 3) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .merit__box .content {
    padding: 4%;
  }
}

body.tonari .grid .merit__box .content > * {
  margin: 0;
}

body.tonari .grid .merit__box .content__title {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .merit__box .content__title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .grid .merit__box .content__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit__box .content__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .merit__box .content__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.tonari .grid .merit__box .content__title::after {
  content: "";
  width: 100%;
  height: 13px;
  background-image: url("../../images/tonari/ico_01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit__box .content__title::after {
    height: 18px;
  }
}

body.tonari .grid .merit__box .content__keyword {
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 5px;
  padding: 25px 0 0;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .merit__box .content__keyword {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .grid .merit__box .content__keyword {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit__box .content__keyword {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .merit__box .content__keyword {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

body.tonari .grid .merit__box .content__text {
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
}

@media screen and (max-width: 991px) {
  body.tonari .grid .merit__box .content__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .merit__box .content__text {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .merit__box .content__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.tonari .grid .use .wrapper {
  height: 1130px;
  background-color: #1541a2;
  margin-bottom: 230px;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .use .wrapper {
    margin-bottom: 180px;
    height: 1100px;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .grid .use .wrapper {
    height: 1200px;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .wrapper {
    height: 2600px;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .use .wrapper {
    height: 1900px;
    margin-bottom: 250px;
  }
}

@media screen and (max-width: 375px) {
  body.tonari .grid .use .wrapper {
    height: 1800px;
    margin-bottom: 180px;
  }
}

body.tonari .grid .use .inner {
  width: 90%;
  margin: 0 auto;
  color: #fff;
}

body.tonari .grid .use .inner .tac {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  margin: 5px 0 20px;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .inner .tac {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .use .inner .tac {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.tonari .grid .use .before_after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .before_after {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.tonari .grid .use .before_after .before, body.tonari .grid .use .before_after .after {
  width: 47.5%;
  color: #000;
  background-color: #fff;
  padding: 0 2.4%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .before_after .before, body.tonari .grid .use .before_after .after {
    width: 100%;
  }
}

body.tonari .grid .use .before_after .before__title, body.tonari .grid .use .before_after .after__title {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #1541a2;
  margin: 20px 0;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .use .before_after .before__title, body.tonari .grid .use .before_after .after__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .before_after .before__title, body.tonari .grid .use .before_after .after__title {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .use .before_after .before__title, body.tonari .grid .use .before_after .after__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.tonari .grid .use .before_after .before p, body.tonari .grid .use .before_after .after p {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .before_after .before p, body.tonari .grid .use .before_after .after p {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .use .before_after .before p, body.tonari .grid .use .before_after .after p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.tonari .grid .use .before_after .before .illust {
  text-align: center;
  margin-bottom: 30px;
}

body.tonari .grid .use .before_after .before .illust img {
  width: 37.4%;
}

body.tonari .grid .use .before_after .triangle {
  background-image: url("../../images/tonari/ico_triangle_pc.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 36px;
  margin-top: 100px;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .use .before_after .triangle {
    width: 20px;
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .before_after .triangle {
    background-image: url("../../images/tonari/ico_triangle_sp.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 36px;
    height: 24px;
    margin: 15px 0;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

body.tonari .grid .use .before_after .after .illust {
  text-align: center;
}

body.tonari .grid .use .before_after .after .illust img {
  width: 80%;
}

body.tonari .grid .use .before_after .after__title {
  letter-spacing: 3px;
}

body.tonari .grid .use .use_image {
  background-color: #fff;
  padding: 0 2.7%;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
  box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
}

body.tonari .grid .use .use_image__title {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  color: #1541a2;
  margin: 45px 0 20px;
  padding: 20px 0 0;
}

@media screen and (max-width: 575px) {
  body.tonari .grid .use .use_image__title {
    margin: 35px 0 10px;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

body.tonari .grid .use .use_image .content_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body.tonari .grid .use .use_image .content_pc .set_01 {
  width: 22.5%;
  color: #000;
  position: relative;
}

body.tonari .grid .use .use_image .content_pc .set_01 .arrow_01 {
  line-height: 30px;
  margin: 0px 0 10px;
}

body.tonari .grid .use .use_image .content_pc .set_01 .arrow_01::after {
  content: "";
  background-image: url("../../images/tonari/ico_arrow_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 64%;
  height: 180px;
  background-position: right bottom;
  position: absolute;
  top: 15px;
  left: 55%;
}

body.tonari .grid .use .use_image .content_pc .set_01 .illust {
  text-align: center;
  margin-top: 25px;
}

body.tonari .grid .use .use_image .content_pc .set_01 .illust img {
  width: 83.1%;
}

body.tonari .grid .use .use_image .content_pc .set_02 {
  width: 50%;
}

body.tonari .grid .use .use_image .content_pc .set_03 {
  width: 22.5%;
  color: #000;
  position: relative;
}

body.tonari .grid .use .use_image .content_pc .set_03 .arrow_02::after {
  content: "";
  background-image: url("../../images/tonari/ico_arrow_02.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 105%;
  height: 70px;
  background-position: right bottom;
  position: absolute;
  top: 40%;
  right: 100%;
}

body.tonari .grid .use .use_image .content_pc .set_03 .arrow_03::after {
  content: "";
  background-image: url("../../images/tonari/ico_arrow_03.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 55%;
  height: 18px;
  background-position: right bottom;
  position: absolute;
  top: 52%;
  right: 100%;
}

body.tonari .grid .use .use_image .content_pc .set_03 .text {
  margin-bottom: 25px;
  line-height: 25px;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .use_image .content_pc {
    display: none;
  }
}

body.tonari .grid .use .use_image .content_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .use_image .content_sp {
    display: block;
  }
  body.tonari .grid .use .use_image .content_sp p {
    color: #000;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) and (max-width: 575px) {
  body.tonari .grid .use .use_image .content_sp p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .use_image .content_sp .inner {
    margin: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  body.tonari .grid .use .use_image .content_sp .inner .set_01 {
    width: 47%;
    margin-top: 20px;
  }
  body.tonari .grid .use .use_image .content_sp .inner .set_03 {
    width: 47%;
    margin-top: 20px;
  }
}

body.tonari .grid .use .use_image .notice {
  color: #ED1C24;
  margin-left: 25.7%;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .use_image .notice {
    margin-left: 0;
    margin-top: 50px;
  }
}

body.tonari .grid .use .use_image .notice p {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: -70px;
  padding: 0 0 35px 10px;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .use .use_image .notice p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: -10px;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .use .use_image .notice p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .use .use_image .notice p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.tonari .grid .flow .wrapper {
  height: 265px;
  background-color: #1541a2;
  margin-bottom: 170px;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow .wrapper {
    height: 1015px;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .flow .wrapper {
    height: 700px;
    margin-bottom: 150px;
  }
}

@media screen and (max-width: 375px) {
  body.tonari .grid .flow .wrapper {
    height: 750px;
    margin-bottom: 170px;
  }
}

body.tonari .grid .flow .inner {
  width: 90%;
  margin: 0 auto;
  color: #fff;
}

body.tonari .grid .flow .inner h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  body.tonari .grid .flow .inner h2 {
    margin-bottom: 20px;
  }
}

body.tonari .grid .flow__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.tonari .grid .flow__box .content {
  width: 17.3%;
  background-color: #fff;
  color: #1541a2;
  padding: 1.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
  box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box .content {
    width: 45.8%;
    padding: 4.4%;
  }
  body.tonari .grid .flow__box .content:nth-child(n + 3) {
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) and (max-width: 575px) {
  body.tonari .grid .flow__box .content:nth-child(n + 3) {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box .content:last-child {
    margin: 45px auto 0;
  }
}

@media screen and (max-width: 767px) and (max-width: 575px) {
  body.tonari .grid .flow__box .content:last-child {
    margin: 25px auto 0;
  }
}

body.tonari .grid .flow__box .content > * {
  margin: 0;
}

body.tonari .grid .flow__box .content__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .flow__box .content__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .grid .flow__box .content__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box .content__title {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .flow__box .content__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.tonari .grid .flow__box .content__title:after {
  content: "";
  width: 125%;
  height: 13px;
  background-image: url("../../images/tonari/ico_01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateX(-12.5%);
  -ms-transform: translateX(-12.5%);
  transform: translateX(-12.5%);
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box .content__title:after {
    height: 20px;
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .flow__box .content__title:after {
    height: 17px;
  }
}

body.tonari .grid .flow__box .content__keyword {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 25px 0 10px;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .flow__box .content__keyword {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box .content__keyword {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .flow__box .content__keyword {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.tonari .grid .flow__box .content__text {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .flow__box .content__text {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .flow__box .content__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.tonari .grid .service h3, body.tonari .grid .service p {
  color: #000;
}

body.tonari .grid .service .wrapper {
  height: 470px;
  background-color: #1541a2;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .service .wrapper {
    height: 510px;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .service .wrapper {
    height: 1230px;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .service .wrapper {
    height: 1050px;
  }
}

@media screen and (max-width: 375px) {
  body.tonari .grid .service .wrapper {
    height: 1200px;
  }
}

body.tonari .grid .service .inner {
  width: 90%;
  margin: 0 auto;
  color: #fff;
}

body.tonari .grid .service .inner h2 {
  margin-bottom: 20px;
}

body.tonari .grid .service .inner h2::before, body.tonari .grid .service .inner h2::after {
  width: 24%;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .service .inner h2::before, body.tonari .grid .service .inner h2::after {
    width: 17%;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .grid .service .inner h2::before, body.tonari .grid .service .inner h2::after {
    width: 15%;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .service .inner h2::before, body.tonari .grid .service .inner h2::after {
    width: 12%;
  }
}

body.tonari .grid .service .inner .content {
  background-color: #fff;
  padding: 40px;
  zoom: 1;
  -webkit-box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
  box-shadow: 5px 5px rgba(21, 65, 162, 0.2);
}

body.tonari .grid .service .inner .content::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .service .inner .content {
    padding: 30px;
  }
}

body.tonari .grid .service .inner .content h3 {
  margin: 0;
  color: #1541a2;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 1199px) {
  body.tonari .grid .service .inner .content h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  body.tonari .grid .service .inner .content h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  body.tonari .grid .service .inner .content h3 {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .service .inner .content h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.tonari .grid .service .inner .content p {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 15px 0;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .service .inner .content p {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.tonari .grid .service .inner .content p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.tonari .grid .service .inner .content .inner_01 {
  width: 31%;
  float: left;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .service .inner .content .inner_01 {
    width: 100%;
    float: none;
  }
}

body.tonari .grid .service .inner .content .inner_02 {
  width: 65%;
  float: right;
}

@media screen and (max-width: 767px) {
  body.tonari .grid .service .inner .content .inner_02 {
    width: 100%;
    float: none;
  }
}

/*# sourceMappingURL=tonari.css.map */