@charset "UTF-8";
/* CSS Document */
img {
  /* ウィンドウサイズに応じて画像を拡縮 */
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}

body {
  color: #494949;
  -webkit-text-size-adjust: 100%;
  /* 横向きにしたときにフォントサイズが変わらないように */
  line-height: 2em;
}

#wovn-translate-widget[wovn] {
  top: 100px !important;
  right: 0;
}

.wrapper {
  /* この要素で画面最大幅を限定します。 */
  max-width: 1100px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
}

.sp_only {
  display: none;
}

.flex {
  display: flex;
}

a {
  text-decoration: none;
}

.fadeIn {
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.fadeIn.go {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.on {
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.on.View {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 736px) {
  body {
    /* 横向きにしたときにフォントサイズが変わらないように */
    line-height: 1.7em;
    font-size: 0.70rem;
  }
  .wrapper {
    padding: 0 1rem;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}

/***************************
 ** flexible boxと子要素の関係
 * flexible box仕様には3段階あります。box,flexbox,flex
 * ブラウザによって実装段階がそれぞれ異なるので、注意すること
 *
 * 横並びのboxなのでクラス名を「flex_row」に変更
 */
.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- ie10 ---*/
  display: -webkit-flex;
  /*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify;
  /*--- Androidブラウザ ---*/
  -ms-flex-pack: justify;
  /*--- ie10 ---*/
  -webkit-justify-content: space-between;
  /*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch;
  /*--- Androidブラウザ ---*/
  -ms-flex-align: stretch;
  /*--- ie10 ---*/
  -webkit-align-items: stretch;
  /*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  /*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row;
  /*--- ie10 ---*/
  -webkit-flex-direction: row;
  /*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
  /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
  /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap;
  /*--- ie10 ---*/
  -webkit-flex-wrap: nowrap;
  /*--- mac old safari ---*/
  flex-wrap: nowrap;
}

.flex_row > * {
  /**** flexible box関連指定 ****/
  /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1;
  /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 1;
  /*--- ie10 ---*/
  -webkit-flex: 1 1;
  /* mac old safari */
  /* ie11で、flex-basisを記述すると正しく動作しないので記載しないように変更 */
  flex: 1 1;
  /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;
  /*--- Androidブラウザ ---*/
  -ms-flex-order: 0;
  /*--- ie10 ---*/
  -webkit-order: 0;
  /*--- mac old safari ---*/
  order: 0;
}

.flex_row .item {
  /**** flexible box関連指定 ****/
  /* flexアイテムの伸縮・幅の指定 flex: 1 1 auto;が必要な箇所 */
  -webkit-box-flex: 0.1;
  /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 1 auto;
  /*--- ie10 ---*/
  -webkit-flex: 1 1 auto;
  /* mac old safari */
  /* ie11で、flex-basisを記述すると正しく動作しないので記載しないように変更 */
  flex: 1 1 auto;
  /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;
  /*--- Androidブラウザ ---*/
  -ms-flex-order: 0;
  /*--- ie10 ---*/
  -webkit-order: 0;
  /*--- mac old safari ---*/
  order: 0;
}

@media screen and (max-width: 736px) {
  /***************************
   * スマホの場合にどうするかを記載するので接頭辞として、「sp_」を追加
   */
  .sp_flex_col {
    /* flexアイテムの並び方向 */
    -webkit-box-orient: vertical;
    /*--- Androidブラウザ 2つに分かれている ---*/
    -ms-flex-direction: column;
    /*--- ie10 ---*/
    -webkit-flex-direction: column;
    /*--- mac old safari ---*/
    flex-direction: column;
  }
  /*.sp_flex_col>* {
    width: 100%;
  }*/
  /***************************
   ** 4⇒2カラム
   */
  .sp_flex_2row2col {
    /* flexアイテムを複数行にするかどうか */
    /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
    /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
    -ms-flex-wrap: wrap;
    /*--- ie10 ---*/
    -webkit-flex-wrap: wrap;
    /*--- mac old safari ---*/
    flex-wrap: wrap;
  }
  .sp_flex_2row2col > * {
    width: 48%;
    box-sizing: border-box;
  }
}

/***************************
 ** header
 */
header {
  height: 100px;
}

header h1 {
  width: 520px;
  margin: 30px 0 30px 30px;
  z-index: 300;
  position: relative;
}

header .header_base {
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 1000;
  justify-content: space-between;
}

header .header_base .h_nav {
  font-size: 16px;
  line-height: 1.5;
}

header .header_base .h_nav .nav_group .nav_item .md-uline {
  margin: 38px 36px 37px 0;
  color: #000;
  position: relative;
  display: inline-block;
}

header .header_base .h_nav .nav_group .nav_item .md-uline::after {
  position: absolute;
  bottom: -38px;
  left: 0;
  content: '';
  width: 100%;
  height: 5px;
  background: #0081bf;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

header .header_base .h_nav .nav_group .nav_item .md-uline:hover::after {
  transform: scale(1, 1);
}

header .header_base .h_nav .nav_group .nav_item .md-uline:hover {
  color: #0081bf;
}

header .header_base .h_nav .nav_group .nav_item .btn_blue {
  width: 200px;
  display: inline-block;
  margin: 0 15px 15px 0;
  border-radius: 0 0 10px 10px;
  padding: 19px 0 16px 0;
  background-color: #0081bf;
  border: 2px solid #0081bf;
  border-top: 0;
  color: #fff;
}

header .header_base .h_nav .nav_group .nav_item .btn_blue:hover {
  color: #0081bf;
  background-color: #fff;
  border: 2px solid #0081bf;
  border-top: 0;
  transition: 0.5s;
}

header .header_base .h_nav .nav_group .nav_item .btn_green {
  width: 200px;
  display: inline-block;
  margin: 0 15px 15px 0;
  border-radius: 0 0 10px 10px;
  padding: 31px 0 28px 0;
  background-color: #1aca86;
  border: 2px solid #1aca86;
  border-top: 0;
  color: #fff;
}

header .header_base .h_nav .nav_group .nav_item .btn_green:hover {
  color: #1aca86;
  background-color: #fff;
  border: 2px solid #1aca86;
  border-top: 0;
  transition: 0.5s;
}

.header_line {
  border-bottom: solid 1px #ccc;
}

@media screen and (max-width: 1430px) {
  header h1 {
    width: 25%;
  }
}

@media screen and (max-width: 1240px) {
  header {
    height: 8.06452vw;
  }
  header h1 {
    margin: 2vw 0 2vw 2vw;
  }
  header .header_base .h_nav {
    font-size: 1.29032vw;
  }
  header .header_base .h_nav .nav_group .nav_item .md-uline {
    margin: 3.06452vw 2.90323vw 2.98387vw 0;
  }
  header .header_base .h_nav .nav_group .nav_item .btn_blue {
    width: 14vw;
    margin: 0 1.20968vw 1.20968vw 0;
    border-radius: 0 0 0.80645vw 0.80645vw;
    padding: 1.53226vw 0 1.29032vw 0;
  }
  header .header_base .h_nav .nav_group .nav_item .btn_green {
    width: 14vw;
    margin: 0 1.20968vw 1.20968vw 0;
    border-radius: 0 0 0.80645vw 0.80645vw;
    padding: 2.5vw 0 2.25806vw 0;
  }
}

@media screen and (max-width: 736px) {
  header {
    height: 12vw;
    margin: 0;
  }
  header h1 {
    width: 80%;
    margin: 2.93333vw;
  }
  header h1 img {
    max-width: 100%;
  }
}

/***************************
 ** nav
 */
nav ul > li {
  text-align: center;
}

/* ===========================
            * ハンバーガーメニュー
            ============================= */
/* ボタン */
.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.p-hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 12vw;
  height: 12vw;
  margin: auto;
  border-radius: 0;
  border: 1px solid #0e2d53;
  background-color: #0e2d53;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 999;
}

.menu {
  color: #fff;
  font-size: 2.66667vw;
  position: absolute;
  top: 6.93333vw;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p-hamburger__line {
  position: absolute;
  top: -3.2vw;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5.86667vw;
  height: 0.53333vw;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
  border-radius: 0.26667vw;
}

.p-hamburger__line::before,
.p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 5.86667vw;
  height: 0.53333vw;
  background-color: inherit;
  content: '';
  -webkit-transition: inherit;
  transition: inherit;
  border-radius: 0.26667vw;
}

.p-hamburger__line::before {
  top: -1.33333vw;
}

.p-hamburger__line::after {
  top: 1.33333vw;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line {
  background-color: transparent;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
  top: 0;
  background-color: #fff;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* メニュー */
.hamburger {
  position: relative;
  z-index: 999;
}

.nav_toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
}

.hamburger__nav {
  width: 100vw;
  position: absolute;
  top: 12vw;
  right: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  transform: translateY(-50px);
  z-index: 999;
}

/* メニューを表示する */
.hamburger__nav.show {
  opacity: 1;
  visibility: visible;
  transform: skewY(0);
}

.hamburger__menulist {
  width: 87%;
}

.hamburger__menulist a {
  width: 100%;
  margin-bottom: 2px;
  text-align: left;
  padding: 5.33333vw 6.66667vw;
  display: inline-block;
  font-size: 0.9375rem;
  color: #494949;
  background-color: #edf3f6;
}

.hamburger__menulist a::after {
  color: #494949;
  position: absolute;
  right: 10px;
  content: '';
  width: 6px;
  height: 16px;
  background-image: url(../img/arrow_img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hamburger__menu_btn {
  margin: 10px;
}

.hamburger__menu_btn:last-of-type {
  margin-bottom: 6.66667vw;
}

.hamburger__menu_btn .btn_blue {
  position: relative;
  display: block;
  max-width: 100%;
  border-radius: 6px;
  padding: 15px;
  background-color: #1982cb;
  color: #fff;
  font-size: 0.9375rem;
  border: 2px solid #0081bf;
}

.hamburger__menu_btn .btn_blue::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  content: '';
  display: inline-block;
  width: 6px;
  height: 16px;
  background-image: url(../img/arrow_img_white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hamburger__menu_btn .btn_blue:hover {
  color: #0081bf;
  background-color: #fff;
  border: 2px solid #0081bf;
  transition: 0.5s;
}

.hamburger__menu_btn .btn_blue:hover::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  content: '';
  display: inline-block;
  width: 6px;
  height: 16px;
  background-image: url(../img/arrow_img_blue.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hamburger__menu_btn .btn_green {
  position: relative;
  display: block;
  max-width: 100%;
  border-radius: 6px;
  padding: 24px;
  background-color: #1aca86;
  color: #fff;
  font-size: 0.9375rem;
  border: 2px solid #1aca86;
}

.hamburger__menu_btn .btn_green::after {
  position: absolute;
  right: 10px;
  content: '';
  display: inline-block;
  width: 6px;
  height: 16px;
  background-image: url(../img/arrow_img_white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hamburger__menu_btn .btn_green:hover {
  color: #1aca86;
  background-color: #fff;
  border: 2px solid #1aca86;
  transition: 0.5s;
}

.hamburger__menu_btn .btn_green:hover::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  content: '';
  display: inline-block;
  width: 6px;
  height: 16px;
  background-image: url(../img/arrow_img_green.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/***************************
 ** #main
 */
main {
  display: block;
  /* for ie10 */
}

/***************************
 ** #fv
 */
#fv {
  margin-bottom: 7rem;
}

.fv_back {
  background: -moz-linear-gradient(left, #0081bf 50%, #0081bf);
  background: -webkit-linear-gradient(left, #0081bf 50%, #0081bf);
  background: linear-gradient(to right, #0081bf 50%, #0081bf);
}

#fv .fv_main {
  max-width: 1100px;
  font-size: 2.3rem;
  line-height: 1.7;
  color: #fff;
  padding: 80px 10px 70px 10px;
  position: relative;
}

#fv .fv_main .lead_txt_01 {
  max-width: 700px;
  border-bottom: 2px solid #fff;
}

#fv .fv_main .mission {
  width: 292px;
  margin: 20px 0 5px;
}

#fv .fv_main .lead_txt_02 {
  font-size: 1rem;
  line-height: 2;
}

#fv .fv_img {
  max-width: 664px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
  z-index: 200;
}

#fv .fv_img img {
  max-width: 664px;
  position: absolute;
  z-index: 2;
  top: 10%;
  margin-left: 13vw;
}

#fv h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #0081bf;
  margin-top: 3rem;
  padding: 0 0 1rem;
}

#fv .txt {
  width: 60%;
  margin: 2rem 0;
}

@media screen and (max-width: 3000px) {
  #fv .fv_img img {
    top: 10%;
    margin-left: 9vw;
  }
}

@media screen and (max-width: 2100px) {
  #fv .fv_img img {
    top: 10%;
    margin-left: 12vw;
  }
}

@media screen and (max-width: 1550px) {
  #fv .fv_img img {
    top: 10%;
    margin-left: 14vw;
  }
}

@media screen and (max-width: 1153px) {
  #fv .fv_img img {
    top: 10%;
    right: 2%;
    width: 57%;
  }
}

@media screen and (max-width: 890px) {
  #fv .fv_main {
    font-size: 2rem;
  }
  #fv .fv_img img {
    top: 10%;
    right: 0%;
    width: 57%;
  }
}

@media screen and (max-width: 736px) {
  #fv {
    margin-bottom: -8rem;
  }
  #fv .wrapper {
    padding: 1rem 1rem 2rem;
    margin-bottom: 8rem;
  }
  #fv .fv_img img {
    width: 88.53333vw;
    top: 33.33333vw;
    right: 2%;
  }
  #fv .lead_txt_01 {
    width: 80vw;
    font-size: 5.33333vw;
    padding-bottom: 4vw;
  }
  #fv .fv_main .mission {
    width: 46.66667vw;
    position: relative;
    margin: 60vw 0 -1.33333vw;
    z-index: 9;
  }
  #fv .fv_main .lead_txt_02 {
    font-size: 3.73333vw;
    line-height: 1.5;
  }
}

/***************************
 ** .sec01
 */
.sec01 {
  padding-top: 100px;
  margin-top: -100px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.sec01::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-bottom: 14vw solid #edf3f6;
  /* 三角をグレーにする */
  border-left: 100vw solid transparent;
}

.sec01 .ttl_wrap {
  text-align: center;
}

.sec01 .ttl_wrap .ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  font-size: 1.9rem;
  color: #0e2d53;
  text-align: center;
  font-weight: bold;
}

.sec01 .ttl_wrap .ttl::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;
  /*線の上下位置*/
  display: inline-block;
  width: 50px;
  /*線の長さ*/
  height: 4px;
  /*線の太さ*/
  background-color: #0e2d53;
  /*線の色*/
  transform: translateX(-50%);
  /*位置調整*/
}

.sec01 .flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.sec01 .item_box {
  width: 49%;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 4px solid #0081bf;
  text-align: center;
  padding: 26px;
  background-color: #fff;
}

.sec01 .item_box .item_name {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0e2d53;
  margin-bottom: 37px;
}

.sec01 .item_box .item_name::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -17px;
  /*線の上下位置*/
  display: inline-block;
  width: 40px;
  /*線の長さ*/
  height: 2px;
  /*線の太さ*/
  background-color: #0081bf;
  /*線の色*/
  transform: translateX(-50%);
  /*位置調整*/
}

.sec01 .item_box .box_txt01 {
  max-width: 470px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.9;
  padding: 15px 22px;
  background-color: #edf3f6;
  text-align: left;
}

.sec01 .item_box .box_txt02 {
  margin-bottom: 15px;
}

.sec01 .item_box .box_txt02 table {
  max-width: 470px;
}

.sec01 .item_box .box_txt02 th {
  width: 90px;
  vertical-align: middle;
  position: relative;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  padding: 29px 16px;
  background-color: #0081bf;
}

.sec01 .item_box .box_txt02 th::after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 15px solid #0081bf;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.sec01 .item_box .box_txt02 td {
  width: 380px;
  font-size: 1rem;
  line-height: 1.9;
  padding: 15px 20px;
  text-align: left;
  background-color: #edf3f6;
}

.sec01 .item_box .box_txt03 {
  margin-bottom: 25px;
  font-size: 0.875rem;
  line-height: 2;
  text-align: left;
}

.sec01 .item_box .btn_green a {
  position: relative;
  width: 300px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  border-radius: 8px;
  padding: 20px 0;
  background-color: #1aca86;
  border: 2px solid #1aca86;
  color: #fff;
}

.sec01 .item_box .btn_green a::after {
  position: absolute;
  top: 20px;
  right: 22px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-image: url(../img/link_icon_white.png);
  background-size: contain;
  vertical-align: middle;
}

.sec01 .item_box .btn_green a:hover {
  color: #1aca86;
  background-color: #fff;
  border: 2px solid #1aca86;
  transition: 0.5s;
}

.sec01 .item_box .btn_green a:hover::after {
  position: absolute;
  top: 20px;
  right: 22px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-image: url(../img/link_icon_green.png);
  background-size: contain;
  vertical-align: middle;
}

.sec01 .item_box .btn_green.mail a::after {
  top: 35%;
  background-image: url(../img/mail_icon_white.png);
}

.sec01 .item_box .btn_green.mail a:hover::after {
  top: 35%;
  background-image: url(../img/mail_icon_green.png);
}

@media screen and (max-width: 736px) {
  .sec01 {
    margin-top: -12vw;
    padding-top: 12vw;
  }
  .sec01::before {
    content: '';
    position: absolute;
    bottom: 51vw;
    left: 0;
    z-index: 0;
    border-bottom: 14vw solid #edf3f6;
    /* 三角をグレーにする */
    border-left: 100vw solid transparent;
  }
  .sec01::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 0;
    width: 100vw;
    height: 51vw;
    background-color: #edf3f6;
  }
  .sec01 .wrapper .ttl {
    margin-bottom: 9.33333vw;
    font-size: 4.53333vw;
  }
  .sec01 .wrapper .ttl::before {
    width: 6.66667vw;
    height: 0.53333vw;
    bottom: -4vw;
  }
  .sec01 .wrapper .item_box {
    width: 100%;
    border: 0.66667vw solid #0081bf;
    padding: 14px;
  }
  .sec01 .wrapper .item_box .item_name {
    font-size: 4vw;
  }
  .sec01 .wrapper .item_box .item_name::before {
    width: 5.33333vw;
    height: 2px;
  }
  .sec01 .wrapper .item_box .box_txt01 {
    max-width: 637px;
    font-size: 0.875rem;
    padding: 2vw 2vw;
    line-height: 1.6;
  }
  .sec01 .wrapper .item_box .box_txt02 {
    margin-bottom: 10px;
  }
  .sec01 .wrapper .item_box .box_txt02 table {
    max-width: 665px;
  }
  .sec01 .wrapper .item_box .box_txt02 th {
    width: 17.33333vw;
    padding: 3px;
    font-size: 0.875rem;
  }
  .sec01 .wrapper .item_box .box_txt02 th::after {
    top: calc(50% - 5px);
    right: -6px;
    border-left: 6px solid #0081bf;
    border-top: 4px solid transparent;
    border-bottom: 4px solid;
  }
  .sec01 .wrapper .item_box .box_txt02 td {
    width: 66.66667vw;
    font-size: 0.875rem;
    padding: 2vw 2vw 2vw 3.33333vw;
    line-height: 1.6;
  }
  .sec01 .wrapper .item_box .box_txt03 {
    margin-bottom: 8px;
    font-size: 0.8125rem;
  }
  .sec01 .wrapper .item_box .btn_green a {
    width: 61.33333vw;
    padding: 15px;
    font-size: 0.9375rem;
    border-radius: 6px;
  }
  .sec01 .wrapper .item_box .btn_green a::after {
    margin-left: 10px;
    position: absolute;
    top: 31%;
    content: "";
    display: inline-block;
    width: 20px;
    height: 17px;
    background-image: url(../img/link_icon_white.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
  }
  .sec01 .wrapper .item_box .btn_green a:hover::after {
    position: absolute;
    top: 31%;
    content: "";
    display: inline-block;
    width: 20px;
    height: 17px;
    background-image: url(../img/link_icon_green.png);
    background-size: contain;
    vertical-align: middle;
  }
  .sec01 .wrapper .item_box .btn_green.mail a::after {
    top: 35%;
    width: 17px;
    height: 14px;
    background-image: url(../img/mail_icon_white.png);
  }
  .sec01 .wrapper .item_box .btn_green.mail a:hover::after {
    top: 35%;
    width: 17px;
    height: 14px;
    background-image: url(../img/mail_icon_green.png);
  }
}

/***************************
 ** .sec02
 */
.sec02 {
  margin-bottom: 70px;
}

.sec02 .bg_color {
  background-color: #edf3f6;
}

.sec02 .bg_color .illust {
  padding: 27px 0 60px;
}

@media screen and (max-width: 736px) {
  .sec02 {
    margin-bottom: 12vw;
  }
  .sec02 .bg_color {
    background-color: #edf3f6;
  }
  .sec02 .bg_color .illust {
    margin-top: -40px;
    width: 100%;
    padding: 27px 0 27px;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
  }
  .sec02 .bg_color .illust img {
    position: absolute;
    top: 0;
    right: -50%;
    left: -50%;
    bottom: 0;
    margin: auto;
    width: 135%;
    max-width: none;
  }
}

/***************************
 ** .sec03
 */
.sec03 {
  padding-top: 100px;
  margin-top: -100px;
  margin-bottom: 100px;
}

.sec03 .ttl_wrap {
  text-align: center;
}

.sec03 .ttl_wrap .ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  font-size: 1.9rem;
  color: #0e2d53;
  text-align: center;
  font-weight: bold;
}

.sec03 .ttl_wrap .ttl::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;
  /*線の上下位置*/
  display: inline-block;
  width: 50px;
  /*線の長さ*/
  height: 4px;
  /*線の太さ*/
  background-color: #0e2d53;
  /*線の色*/
  transform: translateX(-50%);
  /*位置調整*/
}

.sec03 .mgb {
  margin-bottom: 50px;
}

.sec03 .item_description {
  max-width: 1080px;
}

.sec03 .item_description .item_name {
  margin-bottom: 10px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 2.5;
  color: #0e2d53;
  border-bottom: 2px solid #dcdcdc;
}

.sec03 .item_description .item_txt {
  width: 70%;
  padding-right: 2%;
}

.sec03 .item_description .item_txt p {
  line-height: 1.9;
}

.sec03 .item_description .item_txt p:nth-of-type(1) {
  margin-bottom: 15px;
}

.sec03 .item_description .item_txt p span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.8;
}

.sec03 .item_description .btn_green {
  align-self: flex-end;
}

.sec03 .item_description .btn_green a {
  position: relative;
  width: 300px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  border-radius: 8px;
  padding: 20px 0;
  background-color: #1aca86;
  border: 2px solid #1aca86;
  color: #fff;
}

.sec03 .item_description .btn_green a::after {
  position: absolute;
  top: 20px;
  right: 22px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-image: url(../img/link_icon_white.png);
  background-size: contain;
  vertical-align: middle;
}

.sec03 .item_description .btn_green a:hover {
  color: #1aca86;
  background-color: #fff;
  border: 2px solid #1aca86;
  transition: 0.5s;
}

.sec03 .item_description .btn_green a:hover::after {
  position: absolute;
  top: 20px;
  right: 22px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-image: url(../img/link_icon_green.png);
  background-size: contain;
  vertical-align: middle;
}

.sec03 .item_description .btn_green.mail a::after {
  background-image: url(../img/mail_icon_white.png);
}

.sec03 .item_description .btn_green.mail a:hover::after {
  background-image: url(../img/mail_icon_green.png);
}

.sec03 .attention_txt {
  padding-top: 35px;
  font-size: 0.875rem;
}

.sec03 .product_box {
  margin: 40px 0 70px;
}

.sec03 .product_box .product {
  width: 43%;
  margin: 0 auto;
}

.sec03 .product_box .product p {
  margin-right: 30px;
  font-size: 1.5rem;
  color: #0e2d53;
  text-align: center;
}

.sec03 .product_box .product_detail {
  width: 57%;
}

.sec03 .product_box .product_detail .detail {
  font-size: 0.875rem;
  line-height: 2.1;
}

.sec03 .product_box .product_detail .detail tr {
  border-bottom: solid 1px white;
}

.sec03 .product_box .product_detail .detail tr th {
  width: 140px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  background-color: #0081bf;
  color: white;
  padding: 8px;
}

.sec03 .product_box .product_detail .detail tr th::after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -9px;
  border-left: 15px solid #0081bf;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.sec03 .product_box .product_detail .detail tr td {
  width: 480px;
  padding: 15px 15px 15px 20px;
  vertical-align: middle;
  background-color: #edf3f6;
}

@media screen and (max-width: 736px) {
  .sec03 {
    padding-top: 50px;
    margin-bottom: 13.33333vw;
  }
  .sec03 .wrapper .ttl {
    margin-bottom: 6.66667vw;
    font-size: 4.53333vw;
  }
  .sec03 .wrapper .ttl::before {
    width: 6.66667vw;
    height: 0.53333vw;
    bottom: -4vw;
  }
  .sec03 .wrapper .flex {
    flex-direction: column;
  }
  .sec03 .wrapper .flex .product_box .product {
    width: 100%;
  }
  .sec03 .wrapper .flex .product_box .product p {
    margin-right: 0;
  }
  .sec03 .wrapper .item_name {
    font-size: 4vw;
  }
  .sec03 .wrapper .item_txt {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .sec03 .wrapper .item_txt p span {
    font-size: 0.8125rem;
  }
  .sec03 .wrapper .btn_green {
    margin: 15px auto 0;
  }
  .sec03 .wrapper .mgb {
    margin-bottom: 8vw;
  }
  .sec03 .wrapper .btn_green a {
    width: 61.33333vw;
    padding: 15px;
    font-size: 0.9375rem;
    border-radius: 6px;
  }
  .sec03 .wrapper .btn_green a::after {
    margin-left: 10px;
    position: absolute;
    top: 31%;
    content: "";
    display: inline-block;
    width: 20px;
    height: 17px;
    background-image: url(../img/link_icon_white.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
  }
  .sec03 .wrapper .btn_green a:hover::after {
    position: absolute;
    top: 31%;
    content: "";
    display: inline-block;
    width: 20px;
    height: 17px;
  }
  .sec03 .wrapper .btn_green.mail a::after {
    width: 17px;
    height: 14px;
    background-image: url(../img/mail_icon_white.png);
  }
  .sec03 .wrapper .btn_green.mail a:hover::after {
    width: 17px;
    height: 14px;
    background-image: url(../img/mail_icon_green.png);
  }
  .sec03 .wrapper .product_box {
    margin: 8vw 0 8vw;
  }
  .sec03 .wrapper .product {
    width: 100%;
  }
  .sec03 .wrapper .product:last-of-type {
    margin-bottom: 4vw;
  }
  .sec03 .wrapper .product p {
    margin-right: 0;
    margin-bottom: 4vw;
    font-size: 4vw;
  }
  .sec03 .wrapper .product_detail {
    width: 100%;
  }
  .sec03 .wrapper .product_detail .detail tr th {
    width: 167px;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .sec03 .wrapper .product_detail .detail tr td {
    padding: 15px 8px 15px 15px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/***************************
 ** .sec04
 */
.sec04 {
  padding-top: 25px;
  margin-top: -25px;
  background-color: #edf3f6;
  padding-bottom: 90px;
}

.sec04 .ttl_wrap {
  padding-top: 80px;
  text-align: center;
}

.sec04 .ttl_wrap .ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  font-size: 1.9rem;
  color: #0e2d53;
  text-align: center;
  font-weight: bold;
}

.sec04 .ttl_wrap .ttl::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;
  /*線の上下位置*/
  display: inline-block;
  width: 50px;
  /*線の長さ*/
  height: 4px;
  /*線の太さ*/
  background-color: #0e2d53;
  /*線の色*/
  transform: translateX(-50%);
  /*位置調整*/
}

.sec04 .company_detail {
  width: 55.5%;
  margin-right: 80px;
  font-size: 0.875rem;
}

.sec04 .company_detail .detail tbody {
  border-top: solid 1px #dcdcdc;
}

.sec04 .company_detail .detail tbody tr {
  border-bottom: solid 1px #dcdcdc;
}

.sec04 .company_detail .detail tbody tr th {
  width: 100px;
  padding: 8px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  line-height: 1.4;
}

.sec04 .company_detail .detail tbody tr td {
  width: 500px;
  padding: 15px 5px 15px 20px;
  vertical-align: middle;
}

.sec04 .company_detail .detail tbody tr td a {
  color: #1982cb;
}

.sec04 .company_map {
  position: relative;
  width: 37%;
  box-sizing: border-box;
}

.sec04 .company_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 736px) {
  .sec04 {
    margin-top: 0vw;
    padding-top: 4vw;
    padding-bottom: 12vw;
  }
  .sec04 .wrapper .ttl_wrap {
    padding-top: 12vw;
  }
  .sec04 .wrapper .ttl_wrap .ttl {
    margin-bottom: 9.33333vw;
    font-size: 4.53333vw;
  }
  .sec04 .wrapper .ttl_wrap .ttl::before {
    width: 6.66667vw;
    height: 0.53333vw;
    bottom: -4vw;
  }
  .sec04 .wrapper .flex {
    flex-direction: column;
  }
  .sec04 .wrapper .flex .company_detail {
    width: 100%;
    margin-bottom: 7vw;
  }
  .sec04 .wrapper .flex .company_detail .detail tbody tr th {
    font-size: 0.875rem;
    width: 220px;
  }
  .sec04 .wrapper .flex .company_detail .detail tbody tr td {
    font-size: 0.875rem;
  }
  .sec04 .wrapper .flex .company_map {
    width: 100%;
  }
  .sec04 .wrapper .flex .company_map iframe {
    position: unset;
    height: 58vw;
  }
}

/***************************
 ** .sec05
 */
.sec05 {
  padding-bottom: 90px;
  background-color: #94cfeb;
  color: #fff;
}

.sec05 .ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 67px;
  font-size: 1.5rem;
  font-weight: bold;
}

.sec05 .ttl::before {
  content: '';
  position: absolute;
  left: 10%;
  bottom: -40px;
  /*線の上下位置*/
  display: inline-block;
  width: 50px;
  /*線の長さ*/
  height: 4px;
  /*線の太さ*/
  background-color: #0e2d53;
  /*線の色*/
  transform: translateX(-60%);
  /*位置調整*/
}

.sec05 h2 {
  font-size: 1.625rem;
  font-weight: bold;
  color: #0e2d53;
  line-height: 2.8rem;
  margin-bottom: 2rem;
}

.sec05 .about {
  margin-bottom: 1rem;
  line-height: 1.6rem;
}

.sec05 .about span {
  font-size: 1.5rem;
  font-weight: bold;
}

.sec05 .wrapper {
  padding-top: 90px;
}

.item03 {
  width: 44%;
  margin: 0 0 4rem 0;
}

.item03 .sample {
  width: 100%;
}

.item03 .swiper-container-horizontal > .swiper-pagination-bullets, .item03 .swiper-pagination-custom, .item03 .swiper-pagination-fraction {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}

.item03 .swiper-pagination-bullet {
  width: 80px;
  height: 6px;
  border-radius: 0;
  background-color: #fff;
  opacity: 0.6;
}

.item03 .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.item04 {
  width: 49%;
  margin-right: 7%;
}

.slide-bottom {
  width: 94%;
}

.faci_list {
  margin-bottom: 35px;
}

.faci_list .faci_box {
  display: table;
  width: 110px;
  height: 110px;
  background-image: url(../img/box_img.png);
  background-size: cover;
  margin-right: 5%;
}

.faci_list .faci_box:last-child {
  margin-right: 0;
}

.faci_list .faci_box p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  line-height: 1.5;
}

.icon {
  width: 458px;
  border: 1px solid #bcbcbc;
  background-color: #fff;
  padding: 1.5rem;
  text-align: left;
  margin-right: 2rem;
  font-size: 0.875rem;
  color: #0e2d53;
  line-height: 1.7;
}

.icon p:last-child {
  padding-top: 1rem;
}

.icon:last-child {
  margin-right: 0;
}

.link_btn {
  width: 50%;
  margin: 50px auto 0;
}

.link_btn a {
  width: 100%;
  font-size: 1.375rem;
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1;
  border-radius: 8px;
  padding: 27px 0;
  background-color: #1aca86;
  border: 2px solid #1aca86;
  color: #fff;
}

.link_btn a::after {
  position: absolute;
  right: 4%;
  content: "";
  display: inline-block;
  width: 25px;
  height: 18px;
  background-image: url(../img/link_icon_white.png);
  background-size: cover;
}

.link_btn a:hover {
  color: #1aca86;
  background-color: #fff;
  border: 2px solid #1aca86;
  transition: 0.5s;
}

.link_btn a:hover::after {
  position: absolute;
  right: 4%;
  content: "";
  display: inline-block;
  width: 25px;
  height: 18px;
  background-image: url(../img/link_icon_green.png);
  background-size: cover;
}

.link_btn a span {
  font-weight: bold;
}

/* リンクボタン末尾の矢印 */
/* 2021/02/15のニュースリリース用ボタン */
.news-release {
  padding: 0.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #494949;
  color: #fff;
  margin: 2rem 1rem -1rem 0;
  font-size: 1.8rem;
  width: 48%;
}

.news-release span {
  font-weight: bold;
}

.news-release::after {
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  font-size: 2rem;
  display: block;
  position: absolute;
  right: 1rem;
  top: 18%;
  color: #fff;
}

.news-release a {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
}

@media screen and (max-width: 1050px) {
  .sec05 .link_btn a {
    font-size: 1rem;
  }
  .sec05 .link_btn a::after {
    right: 2%;
  }
}

@media screen and (max-width: 736px) {
  .sec05 {
    padding-bottom: 10.66667vw;
  }
  .sec05 .ttl {
    font-size: 3.73333vw;
    margin-bottom: 8vw;
  }
  .sec05 .ttl::before {
    left: 8%;
    bottom: -3.33333vw;
    width: 6.66667vw;
    height: 0.53333vw;
  }
  .sec05 h2 {
    font-size: 4.53333vw;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .sec05 .about {
    font-size: 3.73333vw;
    line-height: 1.6;
  }
  .sec05 .wrapper {
    padding: 0rem;
  }
  .sec05 .wrapper .flex {
    flex-direction: column-reverse;
  }
  .sec05 .wrapper .flex:last-of-type {
    flex-direction: unset;
    justify-content: space-between;
  }
  .sec05 .wrapper .flex .item03 {
    width: 64vw;
    margin: 10vw auto;
  }
  .sec05 .wrapper .flex .item03 .swiper-container-horizontal > .swiper-pagination-bullets, .sec05 .wrapper .flex .item03 .swiper-pagination-custom, .sec05 .wrapper .flex .item03 .swiper-pagination-fraction {
    margin-top: 4vw;
  }
  .sec05 .wrapper .flex .item03 .swiper-pagination-bullet {
    width: 10.66667vw;
    height: 0.8vw;
  }
  .sec05 .wrapper .flex .item04 {
    width: 100%;
    margin-right: 0;
  }
  .sec05 .wrapper .flex .item04 .slide-bottom {
    width: 100%;
  }
  .sec05 .wrapper .flex .item04 .slide-bottom .faci_list {
    margin-bottom: 1rem;
  }
  .sec05 .wrapper .flex .item04 .slide-bottom .faci_list .faci_box {
    display: table;
    width: 21.33333vw;
    height: 21.33333vw;
    background-image: url(../img/box_img.png);
    background-size: cover;
    margin-right: 0;
  }
  .sec05 .wrapper .flex .item04 .slide-bottom .faci_list .faci_box:last-of-type {
    margin-right: 0;
  }
  .sec05 .wrapper .flex .item04 .slide-bottom .faci_list .faci_box p {
    font-size: 3.33333vw;
  }
  .sec05 .wrapper_inner {
    padding: 1rem;
  }
  .sec05 .icon {
    width: 48%;
    margin-right: 2%;
    padding: 1rem;
  }
  .sec05 .icon:nth-of-type(even) {
    margin-right: 0;
  }
  .sec05 .icon:nth-of-type(1) {
    margin-bottom: 2%;
  }
  .sec05 .icon:nth-of-type(2) {
    margin-bottom: 2%;
  }
  .sec05 .link_btn {
    width: 100%;
    margin: 5.33333vw auto 0;
  }
  .sec05 .link_btn a {
    max-width: 99%;
    padding: 15px 0;
    font-size: 0.9375rem;
    border-radius: 6px;
  }
  .sec05 .link_btn a::after {
    right: 2%;
    width: 17px;
    height: 15px;
  }
  /* リンクボタン末尾の矢印 */
  /* 2021/02/15 ニュースリリース用 */
  .news-release {
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: #494949;
    color: #fff;
    margin: 1.5rem auto;
    font-size: 1.2rem;
    width: 100%;
    font-weight: bold;
  }
  .news-release::after {
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    font-weight: 900;
    font-size: 1rem;
    display: block;
    position: absolute;
    right: 0.3rem;
    top: 25%;
    color: #fff;
  }
  /* 2021/02/15 ニュースリリース用 リンクボタン末尾の矢印 */
}

/***************************
 ** 下層ページ　privacy terms
 */
.sub_page {
  margin-bottom: 4rem;
}

.sub_h2 {
  font-size: 1.8rem;
  text-align: center;
  margin: 4rem 0;
  font-weight: 600;
}

.txt_block {
  margin-bottom: 2rem;
}

.sub_h3 {
  font-size: 1.2rem;
  color: #00a9ce;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.sub_h3line {
  font-size: 1.2rem;
  color: #00a9ce;
  margin-bottom: 0.6rem;
  border-left: 4px solid #00a9ce;
  padding: 0 0.5em;
  font-weight: 600;
}

/*リスト　(1)(2)(3)*/
.list_brackets li {
  list-style-type: none;
  text-indent: -2.5rem;
  padding-left: 2.5rem;
}

/*リスト　アイウエオ*/
.list_katakana {
  list-style-type: none;
}

.list_katakana li {
  margin-left: 2.5rem;
}

/*リスト　■*/
.list_square {
  margin-left: 1rem;
}

.list_square li {
  list-style-type: none;
}

.list_square li:before {
  content: '■';
  color: #00a9ce;
}

/*テーブル*/
table.sub_table {
  margin: 20px auto;
  text-align: left;
}

.sub_table th {
  background: #efefef;
  border: solid 1px #ccc;
  padding: 10px;
  width: 30%;
}

.sub_table td {
  border: solid 1px #ccc;
  padding: 10px;
}

@media screen and (max-width: 736px) {
  .sub_h2 {
    font-size: 1.2rem;
    text-align: center;
    margin: 2rem 0;
  }
  .sub_h3, .sub_h3line {
    font-size: 1rem;
    color: #00a9ce;
    margin-bottom: 0.6rem;
  }
  .txt_block {
    margin-bottom: 1.5rem;
  }
  /*リスト　(1)(2)(3)*/
  .list_brackets li {
    list-style-type: none;
    text-indent: -2rem;
    padding-left: 2rem;
  }
  /*リスト　アイウエオ*/
  .list_katakana li {
    margin-left: 2rem;
    text-indent: -1rem;
    padding-left: 1rem;
  }
  /*リスト　■*/
  .list_square {
    margin-left: 0.5rem;
  }
  .list_square li {
    text-indent: -0.7rem;
    padding-left: 0.5rem;
  }
}

/***************************
 ** #footer
 */
footer {
  text-align: center;
}

footer .foot_bg {
  background-image: url(../img/foot_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer .ttl_wrap {
  padding-top: 80px;
  text-align: center;
}

footer .ttl_wrap .ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  font-size: 1.9rem;
  color: #0e2d53;
  text-align: center;
  font-weight: bold;
}

footer .ttl_wrap .ttl::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;
  /*線の上下位置*/
  display: inline-block;
  width: 50px;
  /*線の長さ*/
  height: 4px;
  /*線の太さ*/
  background-color: #0e2d53;
  /*線の色*/
  transform: translateX(-50%);
  /*位置調整*/
}

footer .contact {
  padding-bottom: 65px;
}

footer .contact .contact_txt {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
}

footer .contact .contact_txt span {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: normal;
}

footer .contact .green {
  color: #1aca86;
}

footer .contact .red {
  color: #ff3963;
}

footer .contact .link_btn {
  margin-top: 0;
  margin-bottom: 30px;
}

footer .contact .btn_green a::after {
  width: 25px;
  height: 20px;
  right: 15%;
  /* background-image: url(../img/link_icon_white.png); */
  background-image: url(../img/mail_icon_white.png);
}

footer .contact .btn_green a:hover::after {
  width: 25px;
  height: 20px;
  right: 15%;
  /* background-image: url(../img/link_icon_green.png); */
  background-image: url(../img/mail_icon_green.png);
}

footer .contact .btn_red {
  margin-bottom: 15px;
}

footer .contact .btn_red a {
  background-color: #ff3963;
  border-color: #ff3963;
}

footer .contact .btn_red a::after {
  width: 25px;
  height: 20px;
  right: 15%;
  background-image: url(../img/mail_icon_white.png);
}

footer .contact .btn_red a:hover {
  color: #ff3963;
  background-color: #fff;
}

footer .contact .btn_red a:hover::after {
  width: 25px;
  height: 20px;
  right: 15%;
  background-image: url(../img/mail_icon_red.png);
}

.foot_bg02 {
  background-color: #0e2d53;
}

.footer_link {
  color: #fff;
  padding: 2.8rem 0 1rem;
}

.footer_link ul {
  margin-bottom: 2rem;
}

.footer_link ul li {
  display: inline-block;
  color: #2d5a90;
}

.footer_link ul li a {
  padding: 0 13px;
  color: #fff;
  text-decoration: none;
}

.footer_link p {
  font-size: 0.75rem;
}

.footer_line {
  border-bottom: 3px solid #00a9ce;
}

@media screen and (max-width: 1050px) {
  #footer .link_btn a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 736px) {
  #footer .foot_bg .wrapper .ttl_wrap {
    padding-top: 12vw;
  }
  #footer .foot_bg .wrapper .ttl_wrap .ttl {
    margin-bottom: 9.33333vw;
    font-size: 4.53333vw;
  }
  #footer .foot_bg .wrapper .ttl_wrap .ttl::before {
    width: 6.66667vw;
    height: 0.53333vw;
    bottom: -4vw;
  }
  #footer .foot_bg .wrapper .contact {
    padding-bottom: 8vw;
  }
  #footer .foot_bg .wrapper .contact .contact_txt {
    font-size: 3.73333vw;
    line-height: 1.6;
  }
  #footer .foot_bg .wrapper .contact .contact_txt span {
    font-size: 3.46667vw;
    text-align: left;
    display: inline-block;
  }
  #footer .foot_bg .wrapper .contact .link_btn {
    width: 99%;
  }
  #footer .foot_bg .wrapper .contact .btn_green a {
    font-size: 0.9375rem;
    padding: 15px 0;
    border-radius: 6px;
  }
  #footer .foot_bg .wrapper .contact .btn_green a::after {
    right: 3%;
    /* width: 17px;
    height: 15px; */
    width: 15px;
    height: 12px;
  }
  #footer .foot_bg .wrapper .contact .btn_red a {
    font-size: 0.9375rem;
    padding: 15px 0;
    border-radius: 6px;
  }
  #footer .foot_bg .wrapper .contact .btn_red a::after {
    right: 3%;
    width: 15px;
    height: 12px;
  }
  #footer .foot_bg02 .wrapper .footer_link {
    padding: 7.33333vw 0 8vw;
  }
  #footer .foot_bg02 .wrapper .footer_link li {
    display: block;
    font-size: 15px;
    line-height: 2.3;
  }
  #footer .foot_bg02 .wrapper .footer_link li a {
    text-decoration: underline;
  }
}

/***************************
 ** conversion
 */
.box-conversion {
  margin-bottom: 2rem;
}

.btn-cv {
  text-align: center;
}

.btn-cv li {
  display: inline-block;
  margin: 0 10px;
  width: 220px;
  height: 50px;
}

.btn-cv li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.8em;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  background-color: #019fc7;
  border-radius: 5px;
  box-shadow: 1px 1px 6px #bcbcbc;
}

.btn-cv li a:hover {
  background-color: #2baecf;
}

.btn-cv li.mod-vcube a {
  background-color: #ed8626;
}

.btn-cv li.mod-vcube a:hover {
  background-color: #f5a738;
}

@media screen and (max-width: 736px) {
  .btn-cv li {
    margin: 0 5px;
    width: 130px;
    height: 40px;
  }
  .btn-cv li a {
    line-height: 40px;
  }
}

/***************************
 ** #rev_top
 */
.rev_top {
  position: fixed;
  width: 12%;
  max-width: 60px;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
}
