@charset "UTF-8";
/*

	キャミックについて

*/
/* 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.about {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

body.about .kv {
  background-image: url("../../images/about/bg_kv_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  z-index: -10;
}

@media screen and (max-width: 991px) {
  body.about .kv {
    background-image: url("../../images/about/bg_kv_02.jpg");
    padding-top: 175px;
  }
}

body.about .kv::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #022957;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .kv::before {
    height: 2.5px;
  }
}

body.about .kv .wrap {
  width: 41vw;
  background-color: rgba(255, 255, 255, 0.3);
  margin-left: 44.5vw;
  padding: 105px 4.5vw 30vw;
}

@media screen and (max-width: 991px) {
  body.about .kv .wrap {
    width: 100vw;
    margin-left: 0;
    padding: 35px 0 145px;
  }
}

body.about .kv * {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .kv * {
    width: 89vw;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  body.about .kv * {
    text-align: left;
  }
}

body.about .kv__title {
  margin: 0 auto;
}

body.about .kv__sub_title {
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  margin: 35px auto 0;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .kv__sub_title {
    font-size: 10px;
    font-size: 1rem;
    margin: 17.5px auto 0;
  }
}

body.about .kv__sub_title::before, body.about .kv__sub_title::after {
  content: "";
  width: 11vw;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}

@media screen and (max-width: 991px) {
  body.about .kv__sub_title::before, body.about .kv__sub_title::after {
    width: 35vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .kv__sub_title::before, body.about .kv__sub_title::after {
    width: 30vw;
  }
}

body.about .kv__sub_title::before {
  left: 0;
}

body.about .kv__sub_title::after {
  right: 0;
}

body.about .kv__catch {
  line-height: 1.75;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 3px;
  margin: 50px auto 0;
}

@media screen and (max-width: 575px) {
  body.about .kv__catch {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: .3px;
    margin: 25px auto 0;
  }
}

body.about .kv__content {
  line-height: 2.25;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 30px auto 0;
}

body.about .kv__content .br_tab_l {
  display: none;
}

@media screen and (max-width: 991px) {
  body.about .kv__content .br_tab_l {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  body.about .kv__content .br_tab_l {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  body.about .kv__content {
    font-size: 10px;
    font-size: 1rem;
    margin: 10px auto 0;
  }
}

body.about .breadcrumbs {
  margin-top: -20.5vw;
}

@media screen and (max-width: 991px) {
  body.about .breadcrumbs {
    margin-top: -150px;
  }
}

body.about .breadcrumbs .wrapper {
  margin-left: 18.5vw;
}

@media screen and (max-width: 991px) {
  body.about .breadcrumbs .wrapper {
    margin-left: 5.5vw;
  }
}

body.about .breadcrumbs .wrapper, body.about .breadcrumbs a {
  color: #fff;
}

@media screen and (max-width: 575px) {
  body.about .breadcrumbs .wrapper, body.about .breadcrumbs a {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  body.about .breadcrumbs span {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.about .greeting {
  margin-top: 15px;
}

@media screen and (max-width: 575px) {
  body.about .greeting {
    margin-top: 45px;
  }
}

body.about .greeting__blk {
  width: 61vw;
  background-color: rgba(3, 41, 89, 0.4);
  padding: 55px 0;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .greeting__blk {
    width: 85.6vw;
    padding: 290px 25px 300px;
  }
}

body.about .greeting__blk::before {
  content: "";
  width: 62.5vw;
  height: 101.5%;
  background-color: rgba(3, 41, 89, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -10;
}

@media screen and (max-width: 991px) {
  body.about .greeting__blk::before {
    width: 89.3vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .greeting__blk::before {
    height: 100.8%;
  }
}

body.about .greeting__title {
  width: 29.5vw;
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 36px;
  font-size: 3.6rem;
  color: #fff;
  margin-left: 3vw;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .greeting__title {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  body.about .greeting__title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

body.about .greeting__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../../images/about/ico_trg_white_01.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 10;
}

@media screen and (max-width: 575px) {
  body.about .greeting__title::before {
    width: 11px;
    height: 11px;
    top: -15px;
    left: -20px;
  }
}

body.about .greeting__title::after {
  content: "";
  width: 18.5vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
  body.about .greeting__title::after {
    width: 56vw;
    right: 20px;
  }
}

@media screen and (max-width: 575px) {
  body.about .greeting__title::after {
    width: 42vw;
    right: 0;
  }
}

body.about .greeting__content_01__pgh, body.about .greeting__content_02__pgh {
  line-height: 2.5;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  body.about .greeting__content_01__pgh, body.about .greeting__content_02__pgh {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.about .greeting__content_01 {
  padding-left: 3vw;
  margin-top: 35px;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_01 {
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  body.about .greeting__content_01 {
    margin-top: 17.5px;
  }
}

body.about .greeting__content_01__pgh {
  width: 29.5vw;
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_01__pgh {
    width: 100%;
  }
}

body.about .greeting__content_01__img {
  width: 23vw;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -15.5vw;
  right: 3vw;
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_01__img {
    width: 230px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -390px);
    -ms-transform: translate(-50%, -390px);
    transform: translate(-50%, -390px);
  }
}

body.about .greeting__content_02 {
  position: relative;
  margin: 30px 0 0 19vw;
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_02 {
    margin: 15px 0 0 0;
  }
}

body.about .greeting__content_02__pgh {
  width: 39vw;
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_02__pgh {
    width: 100%;
  }
}

body.about .greeting__content_02__img {
  width: 23vw;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 12px;
  left: -3.15vw;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_02__img {
    width: 230px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 150px);
    -ms-transform: translate(-50%, 150px);
    transform: translate(-50%, 150px);
  }
}

@media screen and (max-width: 575px) {
  body.about .greeting__content_02__img {
    -webkit-transform: translate(-50%, 100px);
    -ms-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
}

body.about .greeting__content_03 {
  line-height: 2.5;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  margin: 40px 0 0 19vw;
  text-align: right;
  width: 39vw;
}

@media screen and (max-width: 991px) {
  body.about .greeting__content_03 {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  body.about .greeting__content_03 {
    font-size: 10px;
    font-size: 1rem;
    margin: 20px 0 0 0;
  }
}

body.about .greeting__content_03 span {
  line-height: 2;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 575px) {
  body.about .greeting__content_03 span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.about .philosophy {
  margin-top: 7.5vw;
}

@media screen and (max-width: 991px) {
  body.about .philosophy {
    margin-top: 115px;
  }
}

body.about .philosophy__bg {
  width: 100%;
  background-image: url("../../images/about/bg_philosophy_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 280px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__bg {
    padding: 75px 0 140px;
  }
}

body.about .philosophy__title {
  width: 16.3vw;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__title {
    width: 44vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__title {
    width: 165px;
  }
}

body.about .philosophy__sub_title {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .philosophy__sub_title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.about .philosophy__sub_title::after {
  content: "";
  width: 110px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 15px);
  -ms-transform: translate(-50%, 15px);
  transform: translate(-50%, 15px);
}

@media screen and (max-width: 575px) {
  body.about .philosophy__sub_title::after {
    width: 75px;
    -webkit-transform: translate(-50%, 7.5px);
    -ms-transform: translate(-50%, 7.5px);
    transform: translate(-50%, 7.5px);
  }
}

body.about .philosophy__blk {
  margin-top: -8vw;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__blk {
    margin-top: -90px;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__blk {
    margin-top: -60px;
  }
}

body.about .philosophy__card_01 {
  width: 55vw;
  background-color: #fff;
  padding: 50px 50px 50px 0;
  margin-left: 25.8vw;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_01 {
    width: 78.4vw;
    padding: 30px 20px 45px;
    margin: 0 auto;
  }
}

body.about .philosophy__card_01::before {
  content: "";
  width: 56vw;
  height: 103%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -10;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_01::before {
    width: 81.1vw;
    height: 105%;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_01::before {
    height: 103%;
  }
}

body.about .philosophy__card_01__title, body.about .philosophy__card_01__content {
  margin-left: 22vw;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_01__title, body.about .philosophy__card_01__content {
    margin-left: 0;
  }
}

body.about .philosophy__card_01__title {
  line-height: 1.5;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 28px;
  font-size: 2.8rem;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_01__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.about .philosophy__card_01__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../../images/about/ico_trg_blue_01.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: -30px;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_01__title::before {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_01__title::before {
    width: 11px;
    height: 11px;
    top: -20px;
  }
}

body.about .philosophy__card_01__content {
  line-height: 2.5;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_01__content {
    line-height: 2.2;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_01__content {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 10px;
  }
}

body.about .philosophy__img_01 {
  width: 34vw;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 71px;
  left: 10vw;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__img_01 {
    width: 304px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 8px;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

body.about .philosophy .wrap {
  width: 65.5vw;
  background-color: rgba(55, 134, 199, 0.75);
  padding: 25.5vw 0 1vw 1vw;
  margin: -18vw 0 0 18.8vw;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .philosophy .wrap {
    width: 90.7vw;
    padding: 375px 0 1vw;
    margin: -280px auto 0;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy .wrap {
    padding: 375px 0 5px;
  }
}

body.about .philosophy .wrap::before, body.about .philosophy .wrap::after {
  content: "";
  position: absolute;
  z-index: -10;
}

body.about .philosophy .wrap::before {
  width: 55vw;
  height: 290px;
  background-color: rgba(55, 134, 199, 0.2);
  bottom: -50px;
  left: -50px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy .wrap::before {
    width: 93.1vw;
    height: 165px;
    bottom: -10px;
    left: -10px;
  }
}

body.about .philosophy .wrap::after {
  width: 35px;
  height: 35px;
  background-color: rgba(55, 134, 199, 0.2);
  bottom: -100px;
  left: -100px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy .wrap::after {
    display: none;
  }
}

body.about .philosophy__card_02 {
  width: 48.5vw;
  border: 1px #fff solid;
  padding: 110px 110px 50px 60px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_02 {
    width: 88vw;
    padding: 125px 20px 20px;
    margin: 0 auto;
  }
}

body.about .philosophy__card_02__title, body.about .philosophy__card_02__content_01, body.about .philosophy__card_02__content_02 {
  color: #fff;
}

body.about .philosophy__card_02__title {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 28px;
  font-size: 2.8rem;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_02__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.about .philosophy__card_02__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../../images/about/ico_trg_white_01.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: -30px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_02__title::before {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_02__title::before {
    width: 11px;
    height: 11px;
    top: -20px;
  }
}

body.about .philosophy__card_02__content_01, body.about .philosophy__card_02__content_02 {
  line-height: 2.5;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_02__content_01, body.about .philosophy__card_02__content_02 {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.about .philosophy__card_02__content_01 {
  margin-top: 40px;
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_02__content_01 {
    margin-top: 20px;
  }
}

body.about .philosophy__card_02__content_02 {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__card_02__content_02 {
    width: 338px;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__card_02__content_02 {
    width: 165px;
    margin-top: 35px;
  }
}

body.about .philosophy__img_02 {
  width: 21vw;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: -6.5vw;
  left: 47.5vw;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .philosophy__img_02 {
    width: 146px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    bottom: -30px;
    left: 54.7vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .philosophy__img_02 {
    left: 205px;
  }
}

body.about .our_role {
  margin-top: 10.5vw;
}

@includ mq(tablet_l) {
  body.about .our_role {
    margin-top: 135px;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role {
    margin-top: 65px;
  }
}

body.about .our_role__bg {
  width: 100%;
  background-image: url("../../images/about/bg_our_role_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 280px;
}

@media screen and (max-width: 991px) {
  body.about .our_role__bg {
    padding: 80px 0 140px;
  }
}

body.about .our_role__title {
  width: 14.5vw;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  body.about .our_role__title {
    width: 37.3vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__title {
    width: 140px;
  }
}

body.about .our_role__sub_title {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .our_role__sub_title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 30px;
  }
}

body.about .our_role__sub_title::after {
  content: "";
  width: 210px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 15px);
  -ms-transform: translate(-50%, 15px);
  transform: translate(-50%, 15px);
}

@media screen and (max-width: 575px) {
  body.about .our_role__sub_title::after {
    width: 135px;
    -webkit-transform: translate(-50%, 7.5px);
    -ms-transform: translate(-50%, 7.5px);
    transform: translate(-50%, 7.5px);
  }
}

body.about .our_role__blk {
  margin-top: -8vw;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .our_role__blk {
    margin-top: -65px;
  }
}

body.about .our_role__card_01 {
  width: 55vw;
  background-color: #fff;
  padding: 50px 0 60px 60px;
  margin-left: 19.3vw;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_01 {
    width: 78.4vw;
    padding: 35px 20px 40px;
    margin: 0 auto;
  }
}

body.about .our_role__card_01::before {
  content: "";
  width: 56vw;
  height: 103%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -10;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_01::before {
    width: 81.1vw;
    height: 105%;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_01::before {
    width: 103%;
  }
}

body.about .our_role__card_01__title, body.about .our_role__card_01__content {
  width: 28.8vw;
}

body.about .our_role__card_01__title {
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_01__title {
    width: 66.7vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_01__title {
    width: 250px;
  }
}

body.about .our_role__card_01__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../../images/about/ico_trg_green_01.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: -30px;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_01__title::before {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_01__title::before {
    width: 11px;
    height: 11px;
    top: -20px;
  }
}

body.about .our_role__card_01__content {
  line-height: 2.5;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_01__content {
    width: 100%;
    line-height: 2.2;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_01__content {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 20px;
  }
}

body.about .our_role__img_01 {
  width: 34vw;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 3.75vw;
  right: 11.8vw;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .our_role__img_01 {
    width: 304px;
    top: 100%;
    right: 8px;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

body.about .our_role .wrap {
  width: 65.5vw;
  background-color: rgba(0, 178, 174, 0.8);
  padding: 25.5vw 0 1vw 0;
  margin: -20.5vw 0 0 15.7vw;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .our_role .wrap {
    width: 90.7vw;
    padding: 370px 0 1.2vw;
    margin: -270px auto 0;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role .wrap {
    padding: 370px 0 5px;
  }
}

body.about .our_role .wrap::before, body.about .our_role .wrap::after {
  content: "";
  position: absolute;
  z-index: -10;
}

body.about .our_role .wrap::before {
  width: 55vw;
  height: 290px;
  background-color: rgba(0, 178, 174, 0.2);
  bottom: -50px;
  right: -50px;
}

@media screen and (max-width: 991px) {
  body.about .our_role .wrap::before {
    width: 93.1vw;
    height: 165px;
    bottom: -10px;
    right: -10px;
  }
}

body.about .our_role .wrap::after {
  width: 35px;
  height: 35px;
  background-color: rgba(0, 178, 174, 0.2);
  bottom: -100px;
  right: -100px;
}

@media screen and (max-width: 991px) {
  body.about .our_role .wrap::after {
    display: none;
  }
}

body.about .our_role__card_02 {
  width: 48.5vw;
  border: 1px #fff solid;
  padding: 115px 70px 50px 110px;
  margin: 0 1vw 0 auto;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_02 {
    width: 88vw;
    padding: 115px 20px 20px;
    margin: 0 auto;
  }
}

body.about .our_role__card_02__title, body.about .our_role__card_02__content {
  color: #fff;
}

body.about .our_role__card_02__title {
  line-height: 1.58;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 28px;
  font-size: 2.8rem;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_02__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.about .our_role__card_02__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../../images/about/ico_trg_white_01.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: -30px;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_02__title::before {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_02__title::before {
    width: 11px;
    height: 11px;
    top: -20px;
  }
}

body.about .our_role__card_02__title .br_pc {
  display: block;
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_02__title .br_pc {
    display: none;
  }
}

body.about .our_role__card_02__title .br_sp {
  display: none;
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_02__title .br_sp {
    display: block;
  }
}

body.about .our_role__card_02__content {
  line-height: 2.5;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  body.about .our_role__card_02__content {
    line-height: 2.2;
  }
  body.about .our_role__card_02__content span {
    padding-left: 32vw;
    margin-top: 30px;
    display: block;
  }
}

@media screen and (max-width: 575px) {
  body.about .our_role__card_02__content {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 20px;
  }
  body.about .our_role__card_02__content span {
    padding-left: 120px;
  }
}

body.about .our_role__img_02 {
  width: 21.5vw;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 115px;
  left: -19.8vw;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  body.about .our_role__img_02 {
    width: 143px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: -18px;
    -webkit-transform: translateY(-170px);
    -ms-transform: translateY(-170px);
    transform: translateY(-170px);
  }
}

body.about .relationship {
  background-image: url("../../images/about/bg_relationship_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0 1000px;
  margin-top: 9vw;
}

@media screen and (max-width: 991px) {
  body.about .relationship {
    height: 133vw;
    background-image: url("../../images/about/bg_relationship_02.jpg");
  }
}

@media screen and (max-width: 575px) {
  body.about .relationship {
    height: 500px;
    padding: 35px 0 0;
    margin-top: 50px;
  }
}

body.about .relationship__title {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 40px;
  font-size: 4rem;
  color: #244f93;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .relationship__title {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.about .relationship__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.about .relationship__title::after {
  content: "";
  width: 840px;
  height: 20px;
  background-image: url("../../images/about/ico_bubble_01.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 45px);
  -ms-transform: translate(-50%, 45px);
  transform: translate(-50%, 45px);
}

@media screen and (max-width: 991px) {
  body.about .relationship__title::after {
    width: 90%;
  }
}

@media screen and (max-width: 575px) {
  body.about .relationship__title::after {
    width: 320px;
    height: 10px;
    -webkit-transform: translate(-50%, 22.5px);
    -ms-transform: translate(-50%, 22.5px);
    transform: translate(-50%, 22.5px);
  }
}

body.about .cta {
  padding: 75px 0;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.about .cta {
    padding: 32.5px 0;
  }
}

body.about .cta::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../images/about/bg_cta_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

body.about .cta__btn {
  width: 50vw;
  height: 100px;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.about .cta__btn {
    width: 89.3vw;
  }
}

@media screen and (max-width: 575px) {
  body.about .cta__btn {
    height: 50px;
    border-radius: 25px;
  }
}

body.about .cta__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: -webkit-repeating-linear-gradient(135deg, rgba(36, 71, 116, 0.2), rgba(36, 71, 116, 0.2) 1.5px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 5px);
  background: -o-repeating-linear-gradient(135deg, rgba(36, 71, 116, 0.2), rgba(36, 71, 116, 0.2) 1.5px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 5px);
  background: repeating-linear-gradient(-45deg, rgba(36, 71, 116, 0.2), rgba(36, 71, 116, 0.2) 1.5px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 5px);
  position: absolute;
  bottom: -10px;
  right: -8px;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.about .cta__btn::before {
    bottom: -5px;
    right: -4px;
  }
}

body.about .cta__btn a {
  height: 100px;
  line-height: 100px;
  border-radius: 50px;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  border: 2px #1541a2 solid;
  font-size: 32px;
  font-size: 3.2rem;
  color: #032959;
  text-align: center;
  display: block;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

body.about .cta__btn a .arrow {
  width: 17%;
  height: 1px;
  background: #032959;
  position: absolute;
  top: 50%;
  left: 94%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.about .cta__btn a .arrow::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #032959;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: translateY(-50%) rotate(29.5deg);
  -ms-transform: translateY(-50%) rotate(29.5deg);
  transform: translateY(-50%) rotate(29.5deg);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.about .cta__btn a:hover {
  background-color: #032959;
  color: #fff;
}

body.about .cta__btn a:hover .arrow {
  background: #fff;
}

body.about .cta__btn a:hover .arrow::after {
  background: #fff;
}

@media screen and (max-width: 575px) {
  body.about .cta__btn a {
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.about .cta__btn a .arrow {
    width: 60px;
  }
  body.about .cta__btn a .arrow::after {
    width: 11.5px;
  }
}

body.about .cta__btn a:hover {
  border-color: #fff;
}

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