@charset "UTF-8";
/***** 設定 *****/
/***** リセット・基礎レイアウト *****/
/*----------------

1.リセットCSS 一般
2.リセットCSS カスタマイズ
3.共通設定

------------------*/
/*-----------------------------------------------
--リセットCSS（一般）
-----------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Print */
@media print {
  body {
    background: none !important;
    color: #000;
    font-size: 10pt;
  }
  a[rel=bookmark]:link:after,
  a[rel=bookmark]:visited:after {
    content: " [" attr(href) "] ";
    /* Show URLs */
  }
}
/*-----------------------------------------------
--リセットCSS（カスタマイズ）
-----------------------------------------------*/
/* html5対応 */
main {
  display: block;
}

/* img下の余白を消す */
img {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

/*-----------------------------------------------
--メインカラム
-----------------------------------------------*/
.lay_l {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lay_l {
    width: 95%;
  }
}

.lay_m {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lay_m {
    width: 95%;
  }
}

.lay_s {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lay_s {
    width: 95%;
  }
}

/*-----------------------------------------------
--段落用（レスポンシブ）
-----------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 1039px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1040px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.spmin {
  display: none;
}
@media screen and (max-width: 450px) {
  .spmin {
    display: block;
  }
}

/*-----------------------------------------------
--ホバーアクション（透過）
-----------------------------------------------*/
.hv {
  display: inline-block;
}
.hv:hover {
  opacity: 0.8;
}

/*-----------------------------------------------
--画面ローディング
-----------------------------------------------*/
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-----------------------------------------------
--grid
-----------------------------------------------*/
.grid {
  display: grid;
}

.grid_justify {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*グリッドの横方向の位置を指定する start end space-between space-around space-evenly*/
}

.grid_align {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center; /*グリッドの縦方向の位置を指定する*/
}

.gridG_10 {
  grid-gap: 10px;
}

.gridG_20 {
  grid-gap: 20px;
}

.gridG_30 {
  grid-gap: 30px;
}
@media screen and (max-width: 767px) {
  .gridG_30 {
    grid-gap: 15px;
  }
}

.gridG_40 {
  grid-gap: 40px;
}
@media screen and (max-width: 767px) {
  .gridG_40 {
    grid-gap: 20px;
  }
}

.gridG_50 {
  grid-gap: 50px;
}

.gridG_60 {
  grid-gap: 60px;
}

.gridR_1 {
  grid-template-rows: repeat(1, minmax(60px, 1fr));
}

.gridR_2 {
  grid-template-rows: repeat(2, minmax(60px, 1fr));
}

.gridR_3 {
  grid-template-rows: repeat(3, minmax(60px, 1fr));
}

.gridR_4 {
  grid-template-rows: repeat(4, minmax(60px, 1fr));
}

.gridC_1 {
  grid-template-columns: repeat(1, minmax(200px, 1fr));
}

.gridC_2 {
  grid-template-columns: repeat(2, minmax(200px, 1fr));
}
@media screen and (max-width: 767px) {
  .gridC_2 {
    grid-template-columns: inherit;
  }
}

.gridC_3 {
  grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.gridC_4 {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
}

.gridC_5 {
  grid-template-columns: repeat(5, minmax(200px, 1fr));
}

.gridC_6 {
  grid-template-columns: repeat(6, minmax(200px, 1fr));
}

.gridC_7 {
  grid-template-columns: repeat(7, minmax(200px, 1fr));
}

.gridC_8 {
  grid-template-columns: repeat(8, minmax(200px, 1fr));
}

.gridC_9 {
  grid-template-columns: repeat(9, minmax(200px, 1fr));
}

.gridC_10 {
  grid-template-columns: repeat(10, minmax(200px, 1fr));
}

.gridC_11 {
  grid-template-columns: repeat(11, minmax(200px, 1fr));
}

.gridC_12 {
  grid-template-columns: repeat(12, minmax(200px, 1fr));
}

@media screen and (max-width: 1039px) {
  .gridC_tab_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gridC_tab_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gridC_tab_3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gridC_tab_4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gridC_tab_5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gridC_tab_6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .gridC_tab_7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .gridC_tab_8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .gridC_sp_1 {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
  .gridC_sp_2 {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  .gridC_sp_3 {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
  .gridC_sp_4 {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }
}
.gridC_11_1 {
  grid-template-columns: 1fr 8%;
}

.gridC_10_2 {
  grid-template-columns: 1fr 16%;
}

.gridC_9_3 {
  grid-template-columns: 1fr 24%;
}

.gridC_8_4 {
  grid-template-columns: 1fr 32%;
}

.gridC_7_5 {
  grid-template-columns: 1fr 40%;
}

.gridC_6_6 {
  grid-template-columns: 50% 50%;
}

.gridC_5_7 {
  grid-template-columns: 40% 1fr;
}

.gridC_4_8 {
  grid-template-columns: 32% 1fr;
}

.gridC_3_9 {
  grid-template-columns: 24% 1fr;
}

.gridC_2_10 {
  grid-template-columns: 16% 1fr;
}

.gridC_1_11 {
  grid-template-columns: 8% 1fr;
}

/*-----------------------------------------------
--Flex
-----------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .flex {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

.flex_rv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .flex_rv {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

.flex_ct {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .flex_ct {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

.flex_col2 > * {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .flex_col2 > * {
    width: 100%;
    margin-bottom: 40px;
  }
  .flex_col2 > *:last-of-type {
    margin-bottom: 0;
  }
}

.flex_col3 > * {
  width: 30%;
}
@media screen and (max-width: 1039px) {
  .flex_col3 > * {
    width: 45%;
    margin-bottom: 40px;
  }
  .flex_col3 > *:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .flex_col3 > * {
    width: 100%;
    margin-bottom: 40px;
  }
  .flex_col3 > *:last-of-type {
    margin-bottom: 0;
  }
}

/*-----------------------------------------------
--Fonts
-----------------------------------------------*/
body {
  line-height: 1.8;
  font-size: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word; /*折り返しを綺麗にする*/
  font-family: Avenir, Verdana, Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 2px; /*font-family:Avenir, Verdana, Arial, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Roboto, Meiryo, sans-serif;*/
  text-rendering: optimizeLegibility; /*アンチエイリアスなどフォント見やすくする*/
  color: #242424;
  text-align: justify; /*均等に配置する*/
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/*----游ゴシック__fontfamily---*/
/*body {
font-family:Avenir, Verdana, Arial, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Roboto, Meiryo, sans-serif;
font-weight: 500;
}*/
a, a:link, a:active, a:visited {
  text-decoration: none;
  outline: none;
  color: #242424;
}

a:hover, a:active {
  outline: 0;
}

i {
  color: #242424;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-----------------------------------------------
--fontfamily
-----------------------------------------------*/
.serif {
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "小塚明朝 ProN", "メイリオ", Meiryo, serif;
}

/*-----------------------------------------------
--パーツ各種
-----------------------------------------------*/
.tri {
  width: 0;
  height: 0;
  border: 80px solid transparent;
  border-top: 60px solid #fe6601;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tri {
    border: 60px solid transparent;
    border-top: 40px solid #fe6601;
  }
}

.bold {
  font-weight: 700;
}

.thin {
  font-weight: 100;
}

.txt-c {
  text-align: center;
}

.txt-r {
  text-align: right;
}

.txt-l {
  text-align: left;
}

.txtbox p {
  margin-bottom: 20px;
}
.txtbox p:last-of-type {
  margin-bottom: 0px;
}

.centering {
  position: relative;
}
.centering_in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.frame {
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
}

.mapwrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.mapwrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.videowrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin: 0 auto 50px;
  text-align: center;
}
.videowrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*right: 0;
  bottom: 0;
  margin: auto;*/
}

.word {
  word-break: keep-all;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/***** block *****/
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1039px) {
  .header {
    padding: 15px 10px;
    background: white;
  }
}
@media screen and (max-width: 1039px) {
  .header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
  }
}
.header .logo {
  max-width: 180px;
  width: 15%;
  min-width: 140px;
  padding-left: 20px;
}
@media screen and (max-width: 1039px) {
  .header .logo {
    width: 220px;
    padding-left: 10px;
    padding-top: 6px;
  }
}
.header .logo.none {
  display: none;
}
.header .nav_pc {
  width: 80%;
  max-width: 900px;
}
@media screen and (max-width: 1200px) {
  .header .nav_pc {
    width: 75%;
  }
}
@media screen and (max-width: 1039px) {
  .header .nav_pc {
    display: none;
  }
}
.header .nav_pc .navwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .nav_pc .navwrap .link {
  display: inline-block;
  font-size: 12px;
  color: #242424;
  position: relative;
  padding: 30px 0;
  line-height: 1;
}
.header .nav_pc .navwrap .link:after {
  position: absolute;
  bottom: 30%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #137a48;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .nav_pc .navwrap .link:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header .nav_pc .navwrap .btn_cont {
  background: #111111;
  color: #fff;
  text-align: center;
  padding: 30px 40px;
  font-size: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .nav_pc .navwrap .btn_cont:hover {
  background: #137a48;
}
.header .nav_pc .navwrap .btn_cont a {
  font-size: 12px;
  color: #fff;
}
.header .nav_pc-new {
  width: 80%;
  max-width: 900px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 1039px) {
  .header .nav_pc-new {
    display: none;
  }
}
.header .nav_pc-new .link_hussub {
  position: relative;
}
.header .nav_pc-new .link_btn {
  display: block;
  font-size: 12px;
  color: #242424;
  position: relative;
  padding: 30px 0;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .nav_pc-new .link_btn:hover {
  color: #137a48;
}
.header .nav_pc-new .link_cont {
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 6px #aaa;
          box-shadow: 0px 0px 6px #aaa;
  padding: 20px 15px;
  width: 200px;
  line-height: 1;
}
.header .nav_pc-new .link_cont li {
  margin-bottom: 20px;
}
.header .nav_pc-new .link_cont li:last-of-type {
  margin-bottom: 0;
}
.header .nav_pc-new .link_cont a {
  font-size: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}
.header .nav_pc-new .link_cont a:hover {
  color: #137a48;
}
.header .nav_pc-new .link_cont a::before {
  display: block;
  width: 10px;
  height: 1px;
  background: #00aac3;
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
}
.header .nav_pc-new .link {
  display: inline-block;
  font-size: 12px;
  color: #242424;
  position: relative;
  padding: 30px 0;
  line-height: 1;
  cursor: pointer;
}
.header .nav_pc-new .link:after {
  position: absolute;
  bottom: 30%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #137a48;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .nav_pc-new .link:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header .nav_pc-new .new-groval03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
    margin: 20px 0;
}
.header .nav_pc-new .btn_docu a {
  padding: 16px 20px;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #00aac3;
  color: #00aac3;
  font-size: 12px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .nav_pc-new .btn_docu a:hover {
  border: 1px solid #137a48;
  color: #137a48;
}
.header .nav_pc-new .btn_cont a {
  padding: 16px 20px;
  letter-spacing: 0;
  line-height: 1;
  background: #00aac3;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .nav_pc-new .btn_cont a:hover {
  border: 1px solid #137a48;
  background: #137a48;
}
.header .nav_pc-new .link_lang {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .nav_pc-new .link_lang li {
  font-size: 12px;
  border-left: 1px solid #ddd;
  padding: 16px;
}
.header .nav_pc-new .link_lang li a {
  display: inline-block;
  position: relative;
  line-height: 1;
  cursor: pointer;
}
.header .nav_pc-new .link_lang li a:after {
  position: absolute;
  bottom: -50%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #137a48;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .nav_pc-new .link_lang li a:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header .nav_sp {
  display: none;
}
@media screen and (max-width: 1039px) {
  .header .nav_sp {
    display: block;
  }
}
.header .nav_sp .navbtn_wrap {
  display: none;
  position: fixed;
  top: 23px;
  right: 14px;
}
@media screen and (max-width: 1039px) {
  .header .nav_sp .navbtn_wrap {
    display: block;
  }
}
.header .nav_sp .nav_btn {
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.header .nav_sp .nav_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00aac3;
  border-radius: 2px;
}
.header .nav_sp .nav_btn span:nth-of-type(1) {
  top: 0;
  -webkit-animation: btn07-bar01 0.75s forwards;
  animation: btn07-bar01 0.75s forwards;
}
.header .nav_sp .nav_btn span:nth-of-type(2) {
  top: 10px;
}
.header .nav_sp .nav_btn span:nth-of-type(3) {
  bottom: 0;
}
.header .nav_sp .nav_btn, .header .nav_sp .nav_btn span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(12px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(12px) rotate(45deg);
            transform: translateY(12px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
            transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
.header .nav_sp .nav_btn span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.header .nav_sp .nav_btn span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 0.75s forwards;
  animation: btn07-bar03 0.75s forwards;
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
            transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
.header .nav_sp .nav_btn.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 0.75s forwards;
  animation: active-btn07-bar01 0.75s forwards;
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
            transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(12px) rotate(45deg);
            transform: translateY(12px) rotate(45deg);
  }
}
.header .nav_sp .nav_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .nav_sp .nav_btn.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 0.75s forwards;
  animation: active-btn07-bar03 0.75s forwards;
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
            transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
}
.header .nav_sp .navwrap {
  display: none;
  width: 100vw;
  height: calc(100vh - 70px);
  background: #f9f9f9;
  position: fixed;
  top: 70px;
  left: 0;
  overflow-y: scroll;
}
.header .nav_sp .navwrap.open {
  display: block;
  -webkit-animation: menufadein 0.5s ease-in-out 0s 1 forwards;
          animation: menufadein 0.5s ease-in-out 0s 1 forwards;
}
.header .nav_sp .navwrap ul {
  padding: 60px 5% 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
@media screen and (max-width: 767px) {
  .header .nav_sp .navwrap ul {
    padding: 40px 5% 40px;
  }
}
.header .nav_sp .navwrap li {
  width: 100%;
  border-left: 1px solid #00aac3;
  padding: 18px 20px 18px 20px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/icon_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .header .nav_sp .navwrap li {
    padding: 14px 20px 14px 20px;
  }
}
.header .nav_sp .navwrap li a {
  padding: 15px 0;
  display: block;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header .nav_sp .navwrap li a {
    padding: 10px 0;
    font-size: 14px;
  }
}
.header .nav_sp .navwrap li a span {
  display: block;
  font-family: serif;
  font-size: 12px;
  line-height: 1;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .header .nav_sp .navwrap li a span {
    font-size: 10px;
  }
}
.header .nav_sp .navwrap li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 10px;
  height: 10px;
  background: url(../img/angle-right-solid.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header .nav_sp .navwrap li.btn {
  width: 90%;
  margin-top: 60px;
  background: #de4949;
}
.header .nav_sp .navwrap li.btn a {
  color: #fff;
}
.header .nav_sp .navwrap li.btn_2 {
  width: 90%;
  margin-top: 20px;
  background: #de4949;
}
.header .nav_sp .navwrap li.btn_2 a {
  color: #fff;
}
@-webkit-keyframes menufadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes menufadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header .nav_wantedly a {
  background: url(../img/link_outside.svg) no-repeat right center;
  background-size: 10px;
  font-size: 12px;
  display: inline-block;
  color: #242424;
  position: relative;
  padding: 30px 14px 30px 0;
  line-height: 1;
}
.header .nav_wantedly a:after {
  position: absolute;
  bottom: 30%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #137a48;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .nav_wantedly a:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header .nav_sp .nav_wantedly a {
  background: url(../img/link_outside.svg) no-repeat right center;
  background-size: 10px !important;
  padding-right: 14px !important;
  display: inline-block !important;
}
.header .nav_sp .link_lang a span {
  font-family: sans-serif !important;
  font-size: 14px !important;
}
.header .nav_sp .new-groval01, .header .nav_sp .new-groval02 {
  padding: 0 5% !important;
}
.header .nav_sp .new-groval04 {
  padding: 0px 5% 80px !important;
}
.header .nav_sp .link_btn {
  margin: 30px 5% 20px;
  padding: 10px 0 9px 10px;
  line-height: 1;
  display: block;
  font-weight: bold;
  border-left: 5px solid #00aac3;
}
.header .lang-item a {
  font-size: 12px;
  padding-bottom: 2px;
  position: relative;
  display: inline-block;
}
.header .lang-item a:after {
  position: absolute;
  bottom: 0%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #137a48;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .lang-item a:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*=　共通パーツ
=================================*/
.grecaptcha-badge {
  visibility: hidden;
}

.fix {
  position: fixed;
}

.en {
  font-family: serif;
}

.waku {
  -webkit-box-shadow: 0 0 4px #eee;
          box-shadow: 0 0 4px #eee;
}

.hr {
  width: 90%;
  height: 1px;
  margin: 0 auto;
  background: #cbcbcb;
}

.mt60 {
  margin-top: 60px;
}

.linkarea {
  background: #f9f9f9;
  padding: 120px 5% 60px;
}
@media screen and (max-width: 767px) {
  .linkarea {
    padding: 80px 5% 40px;
  }
}

.linkarea_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.linkarea_flex li {
  width: 48%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .linkarea_flex li {
    width: 100%;
    margin-bottom: 40px;
  }
}

.linkarea_box {
  padding: 80px 5%;
  border-radius: 6px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background: url(../img/navpanel_aboutus.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .linkarea_box {
    padding: 50px 5%;
  }
}
.linkarea_box:hover {
  opacity: 0.8;
  -webkit-transform: scale(101%);
          transform: scale(101%);
}
.linkarea_box .linkarea_link {
  border-left: 1px solid #fff;
  padding: 14px;
}
.linkarea_box .ja {
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .linkarea_box .ja {
    font-size: 16px;
  }
}
.linkarea_box .en {
  font-size: 12px;
  display: block;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .linkarea_box .en {
    font-size: 10px;
  }
}
.linkarea_box.service {
  background: url(../img/navpanel_service.jpg) no-repeat center center;
  background-size: cover;
}
.linkarea_box.tech {
  background: url(../img/navpanel_tech.jpg) no-repeat center center;
  background-size: cover;
}
.linkarea_box.news {
  background: url(../img/navpanel_news.jpg) no-repeat center center;
  background-size: cover;
}
.linkarea_box.company {
  background: url(../img/navpanel_company.jpg) no-repeat center center;
  background-size: cover;
}
.linkarea_box.Service {
  background: url(../img/navpanel_service.jpg) no-repeat center center;
  background-size: cover;
}
.linkarea_box.News {
  background: url(../img/navpanel_news.jpg) no-repeat center center;
  background-size: cover;
}
.linkarea_box.Technology, .linkarea_box.technology {
  background: url(../img/navpanel_tech.jpg) no-repeat center center;
  background-size: cover;
}

.mv {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  background: url(../img/mv_company.jpg) no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1039px) {
  .mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 30vh;
    max-height: 360px;
  }
}
.mv .mv_ttl {
  /*margin: 0 5%;
  border-left:1px solid #fff;
  padding: 20px;
  color:#fff;
  text-shadow: 0 0 4px #333;*/
  padding: 20px 30px 20px 5%;
  background: #00aac3;
  color: #fff;
}
.mv .mv_ttl .ja {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .mv .mv_ttl .ja {
    font-size: 20px;
    letter-spacing: 4px;
  }
}
.mv .mv_ttl .ja.ex {
  margin-bottom: 0px;
}
.mv .mv_ttl .en {
  font-size: 12px;
  display: block;
  line-height: 1;
}

.bread {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 40px 5% 40px 0;
  position: relative;
}
@media screen and (max-width: 1039px) {
  .bread {
    padding: 30px 5% 30px 0;
  }
}
.bread .bread_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  font-size: 12px;
}
.bread .bread_wrap span {
  display: block;
  padding: 0 10px;
}
.bread:after {
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background: #00aac3;
  position: absolute;
  bottom: 0;
  right: 5%;
}
.bread a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
}
.bread a:hover {
  color: #00aac3;
}

/*-----------------------------------------------
--TOP
-----------------------------------------------*/
.video-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 75vh;
  max-height: 900px;
}
@media screen and (max-width: 1039px) {
  .video-area {
    height: 600px;
    overflow: hidden;
    padding-top: 70px;
  }
}
.video-area .txt {
  position: relative;
  z-index: 1;
  padding-left: 5%;
  color: #fff;
  text-shadow: 0 0 4px #000;
}
.video-area .txt .copy01 {
  font-size: 2.4vw;
  line-height: 1.4;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .video-area .txt .copy01 {
    font-size: 5vw;
  }
}
.video-area .txt .copy02 {
  font-size: 1.2vw;
}
@media screen and (max-width: 767px) {
  .video-area .txt .copy02 {
    font-size: 3vw;
  }
}

.video {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 80px 0 -25vh;
}
.video.videopc {
  display: block;
}
.video.videosp {
  display: none;
}
@media screen and (max-width: 1039px) {
  .video {
    margin: 80px 0 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 959px) {
  .video.videosp {
    display: block;
  }
  .video.videopc {
    display: none;
  }
}

.top .sc01 {
  padding: 80px 5%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top .sc01 {
    padding: 40px 5% 60px;
  }
}
.top .sc01 .col_l {
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1039px) {
  .top .sc01 .col_l {
    width: 80%;
    max-width: 600px;
  }
}
.top .sc01 .col_r {
  width: 42%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1vw;
}
.top .sc01 .col_r p:first-of-type {
  margin-bottom: 20px;
}
@media screen and (max-width: 1039px) {
  .top .sc01 .col_r {
    font-size: 14px;
    width: 90%;
    max-width: 800px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top .sc01 .col_r {
    margin-top: 40px;
  }
}
.top .sc02 {
  padding: 0px 5% 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background: url(../img/bg01.png) no-repeat left bottom;
}
@media screen and (max-width: 1039px) {
  .top .sc02 {
    background: url(../img/bg01.png) no-repeat right top;
    background-size: 240px;
    padding: 0px 5% 0px;
  }
}
.top .sc02 .col_l {
  width: 20%;
}
@media screen and (max-width: 1039px) {
  .top .sc02 .col_l {
    width: 100%;
    margin-bottom: 40px;
  }
}
.top .sc02 .col_l .ttl {
  color: #00aac3;
  border-left: 1px solid #00aac3;
  padding: 50px 0 50px 24px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .top .sc02 .col_l .ttl {
    font-size: 20px;
    padding: 40px 0 40px 24px;
  }
}
.top .sc02 .col_l .ttl span {
  font-size: 12px;
  font-family: serif;
  display: block;
  margin-top: 8px;
  letter-spacing: 2px;
}
.top .sc02 .col_r {
  width: 80%;
}
@media screen and (max-width: 1039px) {
  .top .sc02 .col_r {
    width: 100%;
  }
}
.top .sc02 .col_r .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
.top .sc02 .col_r .box .img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .top .sc02 .col_r .box .img {
    width: 100%;
    margin: 0 auto 40px;
    max-width: 540px;
  }
}
.top .sc02 .col_r .box .txt {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .top .sc02 .col_r .box .txt {
    width: 100%;
  }
}
.top .sc02 .col_r .box .box_ttl {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #00aac3;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top .sc02 .col_r .box .box_ttl {
    font-size: 18px;
    line-height: 1.4;
  }
}
.top .sc02 .col_r .box .box_link {
  font-family: serif;
  text-align: right;
  background: url(../img/icon_arrow.png) no-repeat center right;
  background-size: 14px;
  padding-right: 20px;
  display: block;
  color: #137a48;
  line-height: 1;
  margin-top: 20px;
}
.top .sc03 .imgbar_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.top .sc03 .imgbar {
  width: 25%;
  position: relative;
}
@media screen and (max-width: 1039px) {
  .top .sc03 .imgbar {
    width: 50%;
  }
}
.top .sc03 .name {
  color: #fff;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .top .sc03 .name {
    font-size: 10px;
  }
}
.top .sc04 {
  padding: 120px 5% 100px;
  background: url(../img/bg02.png) no-repeat left bottom;
}
@media screen and (max-width: 1039px) {
  .top .sc04 {
    padding: 60px 5% 40px;
    background: url(../img/bg02.png) no-repeat right top 60px;
    background-size: 200px;
  }
}
@media screen and (max-width: 767px) {
  .top .sc04 {
    padding: 60px 5% 20px;
    background: url(../img/bg02.png) no-repeat right top 60px;
    background-size: 140px;
  }
}
.top .linkarea {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top .linkarea {
    padding: 60px 5%;
  }
}
.top .sc05 {
  padding: 100px 5%;
  background-color: #f9f9f9;
  background-image: url(../img/boll01.png), url(../img/boll02.png);
  background-repeat: no-repeat;
  background-position: left bottom, right top;
  background-size: 200px;
}
@media screen and (max-width: 1039px) {
  .top .sc05 {
    padding: 60px 5%;
  }
}
.top .sc05_wrap {
  background: #fff;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
}
.top .sc05_wrap .ttl {
  text-align: center;
  color: #00aac3;
  line-height: 1;
  font-size: 24px;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top .sc05_wrap .ttl {
    font-size: 20px;
  }
}
.top .sc05_wrap .ttl span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}
.top .sc05_wrap .arlist li {
  border-bottom: 2px solid #00aac3;
}
.top .sc05_wrap .arlist .link {
  font-size: 18px;
  line-height: 1.4;
  display: block;
  padding: 30px 20px 30px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../img/icon_arrow.png) no-repeat right center;
  background-size: 16px;
}
@media screen and (max-width: 767px) {
  .top .sc05_wrap .arlist .link {
    font-size: 14px;
    padding: 30px 30px 30px 6px;
  }
}
.top .sc05_wrap .arlist .link:hover {
  color: #137a48;
}
.top .sc05_wrap .arlist .link:hover span {
  color: #137a48;
}
.top .sc05_wrap .arlist .link .date {
  display: block;
  font-size: 12px;
  color: #7e7e7e;
  line-height: 1;
  margin-bottom: 10px;
}
.top .sc06 {
  padding: 100px 5% 0;
}
@media screen and (max-width: 1039px) {
  .top .sc06 {
    padding: 60px 5% 0;
  }
}
.top .sc06 .ttl {
  text-align: center;
  color: #00aac3;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top .sc06 .ttl {
    font-size: 20px;
  }
}
.top .sc06 .ttl span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}
.top .column_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.top .column_wrap .column_box {
  width: 30%;
}
@media screen and (max-width: 960px) {
  .top .column_wrap .column_box {
    width: 48%;
    margin-bottom: 40px;
  }
  .top .column_wrap .column_box:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .top .column_wrap .column_box {
    width: 100%;
  }
}
.top .column_wrap .bgimg {
  width: 100%;
  height: 260px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top .column_wrap .date {
  display: block;
  font-size: 12px;
  color: #7e7e7e;
  line-height: 1;
  margin-bottom: 10px;
}
.top .column_wrap .link {
  font-size: 16px;
  line-height: 1.4;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top .column_wrap .link {
    font-size: 14px;
  }
}
.top .column_wrap .link:hover {
  color: #137a48;
}
.top .column_wrap .link:hover .bgimg {
  opacity: 0.8;
}

/*-----------------------------------------------
--About us
-----------------------------------------------*/
.aboutus .mv {
  background: url(../img/mv_aboutus.jpg) no-repeat center center;
  background-size: cover;
}
.aboutus .sc01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 120px 5%;
}
.aboutus .sc01 .col_l {
  width: 48%;
  line-height: 2.5;
}
@media screen and (max-width: 1039px) {
  .aboutus .sc01 .col_l {
    width: 100%;
    margin-bottom: 40px;
    line-height: 2;
  }
}
.aboutus .sc01 .col_l p {
  margin-bottom: 25px;
}
.aboutus .sc01 .col_l p:last-of-type {
  margin-bottom: 0;
}
.aboutus .sc01 .col_r {
  width: 48%;
}
@media screen and (max-width: 1039px) {
  .aboutus .sc01 .col_r {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.aboutus .sc02 {
  background: #f9f9f9;
  padding: 120px 5% 60px;
}
.aboutus .hito_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .aboutus .hito_box {
    margin-bottom: 60px;
  }
}
.aboutus .hito_box .col_l {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .aboutus .hito_box .col_l {
    width: 100%;
    margin: 0 auto 40px;
    max-width: 360px;
  }
}
.aboutus .hito_box .col_r {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .aboutus .hito_box .col_r {
    width: 100%;
  }
}
.aboutus .hito_box .name_wrap {
  border-left: 4px solid #00aac3;
  padding: 20px 10px 20px 20px;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .aboutus .hito_box .name_wrap {
    margin-bottom: 30px;
  }
}
.aboutus .hito_box .name_wrap .role {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 500px) {
  .aboutus .hito_box .name_wrap .role {
    font-size: 12px;
  }
}
.aboutus .hito_box .name_wrap .name {
  font-size: 24px;
}
@media screen and (max-width: 500px) {
  .aboutus .hito_box .name_wrap .name {
    font-size: 20px;
  }
}
.aboutus .hito_box .txt p {
  margin-bottom: 25px;
}
.aboutus .hito_box .txt p:last-of-type {
  margin-bottom: 0;
}
.aboutus .hito_box .txt a {
  text-decoration: underline;
  color: #00aac3;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.aboutus .hito_box .txt a:hover {
  opacity: 0.8;
}
.aboutus .hito_box .icon_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 20px;
}
.aboutus .hito_box .icon_box .icon {
  display: block;
  width: 36px;
  margin-right: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.aboutus .hito_box .icon_box .icon:hover {
  opacity: 0.8;
}

/*-----------------------------------------------
--Service
-----------------------------------------------*/
.service .mv {
  background: url(../img/mv_service.jpg) no-repeat center center;
  background-size: cover;
}
.service .sc01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 100px 5% 0;
}
@media screen and (max-width: 1039px) {
  .service .sc01 {
    padding: 60px 5% 0;
  }
}
.service .sc01 .c_l {
  width: 48%;
}
@media screen and (max-width: 1039px) {
  .service .sc01 .c_l {
    width: 100%;
  }
}
.service .sc01 .c_r {
  width: 45%;
  padding-top: 10px;
}
@media screen and (max-width: 1039px) {
  .service .sc01 .c_r {
    width: 95%;
    max-width: 600px;
    padding-top: 0px;
    margin: 40px auto;
  }
}
.service .sc01 .numttl {
  color: #00aac3;
  font-size: 18px;
  font-family: serif;
}
@media screen and (max-width: 767px) {
  .service .sc01 .numttl {
    font-size: 16px;
  }
}
.service .sc01 .num {
  font-size: 36px;
  font-family: serif;
  letter-spacing: -2px;
}
@media screen and (max-width: 767px) {
  .service .sc01 .num {
    font-size: 30px;
  }
}
.service .sc01 .ttl {
  font-size: 24px;
  margin: 40px 0 46px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service .sc01 .ttl {
    font-size: 20px;
    line-height: 1.4;
  }
}
.service .sc01 .txt p {
  margin-bottom: 25px;
}
.service .sc01 .txt p:last-of-type {
  margin-bottom: 0;
}
.service .sc01 .txt a {
  text-decoration: underline;
  color: #00aac3;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service .sc01 .txt a:hover {
  opacity: 0.8;
}
.service .sc02 {
  padding: 60px 5% 100px;
}
.service .col3_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.service .col3_wrap > * {
  width: 30%;
}
@media screen and (max-width: 1039px) {
  .service .col3_wrap > * {
    width: 48%;
    margin-bottom: 40px;
  }
  .service .col3_wrap > *:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .service .col3_wrap > * {
    width: 100%;
  }
}
.service .col3_wrap .ttl {
  font-weight: bold;
  border-bottom: 2px solid #00aac3;
  padding: 16px 0 8px;
  margin-bottom: 16px;
}
.service .sc03 {
  padding: 100px 5%;
}

/*-----------------------------------------------
--Service 2024年1月更新
-----------------------------------------------*/
.service-2401 .mv {
  background: url(../img/mv_service.jpg) no-repeat center center;
  background-size: cover;
}
.service-2401 .ttlbig {
  color: #00aac3;
  border-left: 1px solid #00aac3;
  padding: 50px 0 50px 24px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .service-2401 .ttlbig {
    font-size: 20px;
    padding: 40px 0 40px 24px;
  }
}
.service-2401 .ttlbig span {
  font-size: 12px;
  font-family: serif;
  display: block;
  margin-top: 8px;
  letter-spacing: 2px;
}
.service-2401 .numttl {
  color: #00aac3;
  font-size: 18px;
  font-family: serif;
}
@media screen and (max-width: 767px) {
  .service-2401 .numttl {
    font-size: 16px;
  }
}
.service-2401 .num {
  font-size: 36px;
  font-family: serif;
  letter-spacing: -2px;
}
@media screen and (max-width: 767px) {
  .service-2401 .num {
    font-size: 30px;
  }
}
.service-2401 .ttl {
  font-size: 24px;
  margin: 20px 0 36px;
  line-height: 1;
  font-weight: bold;
  color: #00aac3;
}
@media screen and (max-width: 767px) {
  .service-2401 .ttl {
    font-size: 20px;
    line-height: 1.4;
  }
}
.service-2401 .target {
  background: #f9f9f9;
  color: #444;
  display: inline-block;
  padding: 18px 20px 16px;
  line-height: 1;
  margin-bottom: 40px;
  border-radius: 5px;
  letter-spacing: 0;
}
.service-2401 .target .main {
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.service-2401 .target .min {
  font-size: 12px;
  padding-left: 20px;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service-2401 .target .min {
    display: block;
    padding-left: 0px;
    margin-top: 10px;
  }
}
.service-2401 .txt_big {
  font-size: 18px;
  font-weight: bold;
  color: #00aac3;
  margin-bottom: 20px;
}
.service-2401 .sc01 {
  padding: 0px 5% 0;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc01 {
    padding: 60px 5% 0;
  }
}
.service-2401 .sc01 img {
  max-width: 1200px;
}
.service-2401 .sc01 .pcimg {
  display: block;
}
@media screen and (max-width: 640px) {
  .service-2401 .sc01 .pcimg {
    display: none;
  }
}
.service-2401 .sc01 .spimg {
  display: none;
}
@media screen and (max-width: 640px) {
  .service-2401 .sc01 .spimg {
    display: block;
  }
}
.service-2401 .sc01 .ttlwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.service-2401 .sc01 .ttlwrap .txt {
  width: calc(100% - 300px);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .service-2401 .sc01 .ttlwrap .txt {
    width: 100%;
    margin-top: 20px;
  }
}
.service-2401 .sc02 {
  padding: 100px 5% 0;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 {
    padding: 60px 5% 0;
  }
}
.service-2401 .sc02 .ttlwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-2401 .sc02 .ttlwrap .c_r {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 16px;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 .ttlwrap .c_r {
    margin-top: 0px;
  }
}
.service-2401 .sc02 .flexwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 .flexwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.service-2401 .sc02 .flexwrap .c_l {
  width: 55%;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 .flexwrap .c_l {
    width: 100%;
  }
}
.service-2401 .sc02 .flexwrap .c_r {
  width: 40%;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 .flexwrap .c_r {
    margin: 0 auto 40px;
    max-width: 600px;
    width: 100%;
  }
}
.service-2401 .sc02 .cvlogo {
  max-width: 400px;
  width: 80%;
  margin-bottom: 20px;
}
.service-2401 .sc02 .btnwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}
.service-2401 .sc02 .btnwrap a {
  border: 1px solid #137a48;
  border-radius: 30px;
  padding: 10px 16px;
  line-height: 1;
  background: #fff;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #137a48;
}
.service-2401 .sc02 .btnwrap a:hover {
  background: #137a48;
  color: #fff;
}
.service-2401 .sc02 .flexwrap02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-2401 .sc02 .flexwrap02 .c_l {
  width: 40%;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 .flexwrap02 .c_l {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
  }
}
.service-2401 .sc02 .flexwrap02 .c_r {
  width: 55%;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02 .flexwrap02 .c_r {
    width: 100%;
    margin-bottom: 40px;
  }
}
.service-2401 .sc02 .flexwrap02 .logowrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.service-2401 .sc02 .flexwrap02 .logowrap span {
  background: #137a48;
  color: #fff;
  padding: 10px 20px;
  line-height: 1;
  text-align: center;
  margin-left: 20px;
  margin-top: 18px;
  display: block;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.service-2401 .sc02-03 {
  padding: 40px 0 100px;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc02-03 {
    padding: 20px 0 60px;
  }
}
.service-2401 .sc05 .boxwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-2401 .sc05 .boxwrap .box {
  background: #f4f4f4;
  border-radius: 8px;
  width: 48%;
  margin-bottom: 40px;
  padding: 30px;
}
@media screen and (max-width: 1039px) {
  .service-2401 .sc05 .boxwrap .box {
    width: 100%;
  }
}
.service-2401 .sc05 .boxwrap h3 {
  font-size: 18px;
  font-weight: bold;
  color: #00aac3;
  margin-bottom: 20px;
  line-height: 1.4;
}
.service-2401 .sc05 .boxwrap ul li {
  margin-top: 20px;
  margin-bottom: 16px;
  background: url(../img/icon_en.png) no-repeat left top 5px;
  background-size: 10px;
  padding-left: 20px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .service-2401 .sc05 .boxwrap ul li {
    background: url(../img/icon_en.png) no-repeat left top 3px;
    background-size: 10px;
  }
}

/*-----------------------------------------------
--Climate Vision 2024年1月更新
-----------------------------------------------*/
.cv-2402 .mv {
  background: url(../img/mv_cv.jpg) no-repeat center center;
  background-size: cover;
}
.cv-2402 .sc01 {
  padding: 0px 5% 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1039px) {
  .cv-2402 .sc01 {
    padding: 0px 5% 0;
  }
}
.cv-2402 .sc01 .ttl {
  font-size: 24px;
  color: #00aac3;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1039px) {
  .cv-2402 .sc01 .ttl {
    font-size: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .cv-2402 .sc01 .ttl {
    font-size: 18px;
  }
}
.cv-2402 .sc01 .txtarea p {
  margin-bottom: 20px;
}
.cv-2402 .sc01 .txtarea p:last-of-type {
  margin-bottom: 0;
}
.cv-2402 .sc01 .img {
  max-width: 1040px;
  margin: 40px auto 20px;
}
.cv-2402 .sc01 .caption {
  font-size: 14px;
  padding-bottom: 40px;
  display: block;
}
.cv-2402 .sc02 {
  padding: 0px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1039px) {
  .cv-2402 .sc02 {
    padding: 0px 5% 60px;
  }
}
.cv-2402 .sc02 .img {
  max-width: 1040px;
  margin: 40px auto;
}
.cv-2402 .sc02 .imgmin {
  max-width: 420px;
  margin: 40px auto;
}
.cv-2402 .editer {
  text-align: left;
}
.cv-2402 .editer iframe {
  clip: inherit !important;
  position: inherit;
}
.cv-2402 .editer h2 {
  font-size: 18px;
  font-weight: bold;
  color: #00aac3;
  padding-top: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid #00aac3;
  padding-bottom: 8px;
  line-height: 1.4;
}
.cv-2402 .editer h3 {
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.cv-2402 .editer p {
  line-height: 2;
  margin-bottom: 30px;
}
.cv-2402 .editer p:last-of-type {
  margin-bottom: 0;
}
.cv-2402 .editer strong {
  font-weight: bold;
}
.cv-2402 .editer figure {
  margin: 0 auto 40px;
  text-align: center;
}
.cv-2402 .editer img {
  margin: 0 auto;
  max-width: 700px;
}
.cv-2402 .editer figcaption {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}
.cv-2402 .editer .list01, .cv-2402 .editer ul {
  margin-bottom: 30px;
}
.cv-2402 .editer .list01 li, .cv-2402 .editer ul li {
  margin-bottom: 16px;
  background: url(../img/icon_en.png) no-repeat left top 3px;
  background-size: 10px;
  padding-left: 20px;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .cv-2402 .editer .list01 li, .cv-2402 .editer ul li {
    background: url(../img/icon_en.png) no-repeat left top 3px;
    background-size: 10px;
  }
}
.cv-2402 .editer .list01 li ul, .cv-2402 .editer ul li ul {
  margin-top: 16px;
}
.cv-2402 .editer .list01 li ul li, .cv-2402 .editer ul li ul li {
  background: none;
  position: relative;
}
.cv-2402 .editer .list01 li ul li::before, .cv-2402 .editer ul li ul li::before {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background: #00aac3;
  position: absolute;
  top: 8px;
  left: 0;
}
.cv-2402 .editer ol {
  margin-bottom: 30px;
  list-style: decimal;
}
.cv-2402 .editer ol li {
  margin-bottom: 16px;
  line-height: 1.2;
  margin-left: 25px;
  text-align: left;
}
.cv-2402 .editer a {
  text-decoration: underline;
  color: #137a48;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.cv-2402 .editer a:hover {
  opacity: 0.6;
}

/*-----------------------------------------------
--Technology
-----------------------------------------------*/
.tech .mv {
  background: url(../img/mv_tech.jpg) no-repeat center center;
  background-size: cover;
}
.tech .sc01 {
  padding: 100px 5%;
}
@media screen and (max-width: 1039px) {
  .tech .sc01 {
    padding: 60px 5%;
  }
}

/*-----------------------------------------------
--Company
-----------------------------------------------*/
.company .sc01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 120px 5%;
}
@media screen and (max-width: 959px) {
  .company .sc01 {
    padding: 80px 5%;
  }
}
.company .col_l {
  width: 48%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 959px) {
  .company .col_l {
    width: 100%;
    margin-bottom: 100px;
  }
}
.company .col_l .img {
  width: 60%;
}
.company .col_r {
  width: 48%;
}
@media screen and (max-width: 959px) {
  .company .col_r {
    width: 100%;
  }
}
.company .table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 2px solid #00aac3;
}
.company .table dt {
  width: 35%;
  background: #f9f9f9;
  padding: 30px 10px 30px 40px;
  font-size: 14px;
  font-weight: bold;
  border-top: 2px solid #00aac3;
}
@media screen and (max-width: 767px) {
  .company .table dt {
    padding: 30px 10px 30px 10px;
    width: 25%;
    font-size: 12px;
    letter-spacing: 0;
  }
}
.company .table dd {
  width: 65%;
  font-size: 14px;
  padding: 30px 10px 30px 40px;
  border-top: 2px solid #00aac3;
}
@media screen and (max-width: 767px) {
  .company .table dd {
    padding: 30px 10px 30px 10px;
    width: 75%;
    font-size: 12px;
    letter-spacing: 0;
  }
}
.company .mapwrap {
  width: 100%;
  margin: 80px auto 0;
  max-width: 960px;
  max-height: 600px;
  padding-bottom: 46.25%;
}
@media screen and (max-width: 767px) {
  .company .mapwrap {
    padding-bottom: 56.25%;
  }
}

/*-----------------------------------------------
--News
-----------------------------------------------*/
.news .mv {
  background: url(../img/mv_news.jpg) no-repeat center center;
  background-size: cover;
}
.news.newspage .mv {
  height: 25vh;
}
.news .pagewrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 5%;
}
@media screen and (max-width: 1039px) {
  .news .pagewrap {
    padding: 40px 5% 60px;
  }
}
.news .page_cont {
  width: calc(100% - 420px);
}
@media screen and (max-width: 1039px) {
  .news .page_cont {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
}
.news .page_cont .date {
  font-size: 12px;
  color: #7e7e7e;
  line-height: 1;
  margin-bottom: 10px;
}
.news .page_cont .ttl01 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #00aac3;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .news .page_cont .ttl01 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.news .editer {
  text-align: left;
}
.news .editer iframe {
  clip: inherit !important;
  position: inherit;
}
.news .editer h2 {
  font-size: 18px;
  font-weight: bold;
  color: #00aac3;
  padding-top: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid #00aac3;
  padding-bottom: 8px;
  line-height: 1.4;
}
.news .editer h3 {
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news .editer p {
  line-height: 2;
  margin-bottom: 30px;
}
.news .editer p:last-of-type {
  margin-bottom: 0;
}
.news .editer strong {
  font-weight: bold;
}
.news .editer figure {
  margin: 0 auto 40px;
  text-align: center;
}
.news .editer img {
  margin: 0 auto;
  max-width: 700px;
}
.news .editer figcaption {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}
.news .editer .list01, .news .editer ul {
  margin-bottom: 30px;
}
.news .editer .list01 li, .news .editer ul li {
  margin-bottom: 16px;
  background: url(../img/icon_en.png) no-repeat left top 3px;
  background-size: 10px;
  padding-left: 20px;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .news .editer .list01 li, .news .editer ul li {
    background: url(../img/icon_en.png) no-repeat left top 3px;
    background-size: 10px;
  }
}
.news .editer .list01 li ul, .news .editer ul li ul {
  margin-top: 16px;
}
.news .editer .list01 li ul li, .news .editer ul li ul li {
  background: none;
  position: relative;
}
.news .editer .list01 li ul li::before, .news .editer ul li ul li::before {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background: #00aac3;
  position: absolute;
  top: 8px;
  left: 0;
}
.news .editer ol {
  margin-bottom: 30px;
  list-style: decimal;
}
.news .editer ol li {
  margin-bottom: 16px;
  line-height: 1.2;
  margin-left: 25px;
  text-align: left;
}
.news .editer a {
  text-decoration: underline;
  color: #137a48;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news .editer a:hover {
  opacity: 0.6;
}
.news .page_side {
  width: 360px;
}
@media screen and (max-width: 1039px) {
  .news .page_side {
    width: 100%;
    max-width: 800px;
    margin: 80px auto 0;
  }
}
.news .side_box .bgimg {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
.news .side_box .side_linklist li {
  border-top: 2px solid #00aac3;
}
.news .side_box .side_linklist li:last-of-type {
  border-bottom: 2px solid #00aac3;
}
.news .side_box .ttl {
  font-family: serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.news .side_box .side_linklist .link {
  font-size: 14px;
  line-height: 1.4;
  display: block;
  padding: 20px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news .side_box .side_linklist .link:hover {
  color: #137a48;
}
.news .side_box .side_linklist .link:hover span {
  color: #137a48;
}
.news .side_box .side_linklist .link span {
  display: block;
  font-size: 12px;
  color: #7e7e7e;
}
.news .side_linkarea_box {
  padding: 30px 5%;
  border-radius: 6px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background: url(../img/navpanel_aboutus.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 20px;
}
.news .side_linkarea_box:hover {
  opacity: 0.8;
  -webkit-transform: scale(101%);
          transform: scale(101%);
}
.news .side_linkarea_box .linkarea_link {
  border-left: 1px solid #fff;
  padding: 14px;
}
.news .side_linkarea_box .ja {
  font-size: 14px;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}
.news .side_linkarea_box .en {
  font-size: 10px;
  display: block;
  line-height: 1;
  color: #fff;
}
.news .side_linkarea_box.service {
  background: url(../img/navpanel_service.jpg) no-repeat center center;
  background-size: cover;
}
.news .side_linkarea_box.tech {
  background: url(../img/navpanel_tech.jpg) no-repeat center center;
  background-size: cover;
}
.news .side_linkarea_box.news {
  background: url(../img/navpanel_news.jpg) no-repeat center center;
  background-size: cover;
}
.news .side_linkarea_box.Service {
  background: url(../img/navpanel_service.jpg) no-repeat center center;
  background-size: cover;
}
.news .side_linkarea_box.News {
  background: url(../img/navpanel_news.jpg) no-repeat center center;
  background-size: cover;
}
.news .side_linkarea_box.Technology, .news .side_linkarea_box.technology {
  background: url(../img/navpanel_tech.jpg) no-repeat center center;
  background-size: cover;
}
.news .arlist li {
  border-bottom: 2px solid #eee;
}
.news .arlist .link {
  font-size: 18px;
  line-height: 1.4;
  display: block;
  padding: 30px 20px 30px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../img/icon_arrow.png) no-repeat right center;
  background-size: 16px;
}
@media screen and (max-width: 1039px) {
  .news .arlist .link {
    font-size: 16px;
    padding: 30px 30px 30px 0px;
  }
}
.news .arlist .link:hover {
  color: #137a48;
}
.news .arlist .link:hover span {
  color: #137a48;
}
.news .arlist .link .date {
  display: block;
  font-size: 12px;
  color: #7e7e7e;
  line-height: 1;
  margin-bottom: 10px;
}

/*-----------------------------------------------
--Column
-----------------------------------------------*/
.column .mv {
  background: url(../img/mv_column.jpg) no-repeat center center;
  background-size: cover;
}

/*-----------------------------------------------
--Contact
-----------------------------------------------*/
.contact .mv {
  background: url(../img/mv_contact.jpg) no-repeat center center;
  background-size: cover;
}
.contact .cont_wrap {
  background: #f9f9f9;
  margin: 100px auto;
  width: 95%;
  max-width: 1040px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .contact .cont_wrap {
    margin: 60px auto;
    padding: 60px 5%;
  }
}
.contact .cont_wrap .lead {
  font-size: 14px;
  margin-bottom: 60px;
}
.contact .cont_wrap dt {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.contact .cont_wrap dt .red {
  font-size: 10px;
  font-weight: normal;
  color: #de4949;
  display: inline-block;
  margin-left: 10px;
}
.contact .cont_wrap dd {
  margin-bottom: 40px;
}
.contact .cont_wrap input {
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  font-size: 14px;
}
.contact .cont_wrap select {
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  font-size: 14px;
  position: relative;
  background: #ffffff;
  cursor: pointer;
  text-overflow: ellipsis;
  outline: none;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.contact .cont_wrap select:before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.contact .cont_wrap select:after {
  position: absolute;
  top: 0;
  right: 2.5em;
  bottom: 0;
  width: 1px;
  content: "";
  border-left: 1px solid #bbbbbb;
}
.contact .cont_wrap textarea {
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  font-size: 14px;
  min-height: 140px;
}
.contact .cont_wrap .privacy {
  font-size: 14px;
}
.contact .cont_wrap .privacy a {
  color: #00aac3;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact .cont_wrap .privacy a:hover {
  opacity: 0.6;
}
.contact .cont_wrap .privacy_check {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .cont_wrap .privacy_check .check {
  width: 14px;
  height: 14px;
  border: 1px solid #cbcbcb;
  border-radius: 1px;
  background: #fff;
  margin-right: 10px;
}
.contact .cont_wrap .privacy_check .red {
  font-size: 10px;
  font-weight: normal;
  color: #de4949;
  display: inline-block;
  margin-left: 10px;
}
.contact .cont_wrap .btn_send {
  width: 80%;
  max-width: 360px;
  color: #fff;
  background: #00aac3;
  padding: 14px 40px;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  margin: 60px auto 0;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact .cont_wrap .btn_send:hover {
  background: #137a48;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item label {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.wpcf7-list-item label input {
  width: auto !important;
  margin-right: 10px !important;
}

/*-----------------------------------------------
--Privacy
-----------------------------------------------*/
.privacy .mv {
  background: url(../img/mv_company.jpg) no-repeat center center;
  background-size: cover;
}
.privacy .page_cont {
  font-size: 14px;
}
.privacy .page_cont .ttl {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #00aac3;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.privacy .page_cont p {
  line-height: 2;
  margin-bottom: 30px;
}
.privacy .page_cont p:last-of-type {
  margin-bottom: 0;
}
.privacy .page_cont strong {
  font-weight: bold;
}
.privacy .page_cont a {
  text-decoration: underline;
  color: #137a48;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.privacy .page_cont a:hover {
  opacity: 0.6;
}

/*===============================
ページャー
=================================*/
.pagination {
  margin-top: 60px;
}
.pagination span,
.pagination a {
  display: inline-block;
  border: 1px solid #00aac3;
  color: #00aac3;
}

a.page-numbers,
.pagination .current {
  padding: 5px 6px 5px 8px;
  margin: 0 2px;
  text-decoration: none;
}

.pagination .current {
  background: #00aac3;
  color: #fff;
}

/*-----------------------------------------------
--Cases
-----------------------------------------------*/
.cases .mv {
  background: url(../img/mv_cases.jpg) no-repeat center center;
  background-size: cover;
}

.footer {
  border-top: 2px solid #00aac3;
  padding: 100px 5% 80px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 80px 5% 40px;
  }
}
.footer .catch {
  line-height: 2;
  font-size: 24px;
  padding-bottom: 60px;
  letter-spacing: 6px;
}
@media screen and (max-width: 767px) {
  .footer .catch {
    font-size: 18px;
    letter-spacing: 4px;
  }
}
.footer .logo {
  width: 90%;
  max-width: 300px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer .logo {
    width: 80%;
    max-width: 240px;
  }
}
.footer .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .footer .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .link {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer .link li:first-of-type {
  margin-right: 20px;
}
.footer .link a {
  color: #242424;
  font-size: 12px;
  letter-spacing: 1px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .link a:hover {
  color: #137a48;
}
.footer .link span {
  padding: 0 16px;
}
.footer .copy {
  display: block;
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .footer .copy {
    width: 100%;
    margin-top: 10px;
  }
}

.foot_lang {
  background: #f4f4f4;
}
.foot_lang .wpml-ls-legacy-list-horizontal a span {
  color: #549745;
  font-weight: bold;
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.foot_lang .wpml-ls-legacy-list-horizontal a span:hover {
  opacity: 0.8;
}
.foot_lang .wpml-ls-current-language a span {
  color: #999;
  font-weight: normal;
  font-size: 10px;
}
.foot_lang .wpml-ls-current-language a span:hover {
  opacity: 1;
}
.foot_lang .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
  margin-bottom: 0px;
}

.btn_fixed {
  width: 300px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
}
@media screen and (max-width: 767px) {
  .btn_fixed {
    width: 240px;
  }
}
@media screen and (max-width: 420px) {
  .btn_fixed {
    width: 200px;
  }
}
.btn_fixed a {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn_fixed a:hover {
  opacity: 0.9;
}


/* ===============================================
  Gaia Vision New Footer
=============================================== */
.gv-footer,
.gv-footer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.gv-footer {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  border-top: 3px solid transparent;
  border-image: -webkit-gradient(linear, left top, right top, from(#007B49), to(#00B7CE)) 1;
  border-image: linear-gradient(to right, #007B49, #00B7CE) 1;
  color: #3E3A39;
  text-align: left;
  letter-spacing: 0.04em;
}

.gv-footer a {
  text-decoration: none;
}

.gv-footer a::before,
.gv-footer a::after {
  content: none !important;
  display: none !important;
}

.gv-cta-section {
  padding: 48px 48px 40px;
  border-bottom: 1px solid #C6DEEB;
}

.gv-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gv-cta-card {
  border: 1px solid #C6DEEB;
  border-radius: 10px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.gv-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #007B49, #00B7CE);
  opacity: 0;
  transition: opacity 0.2s;
}

.gv-cta-card:hover {
  border-color: #007B49;
  box-shadow: 0 4px 20px rgba(0, 123, 73, 0.1);
}

.gv-cta-card:hover::before {
  opacity: 1;
}

.gv-card-service-type {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #007B49;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.gv-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #3E3A39;
  margin: 0 0 14px;
  line-height: 1.2;
  padding: 0;
  border: none;
}

.gv-card-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.85;
  margin: 0 0 20px;
  flex: 1;
}

.gv-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.gv-feature-pill {
  font-size: 11px;
  color: #007B49;
  background: #E7F9F3;
  border: 1px solid #C6DEEB;
  border-radius: 4px;
  padding: 3px 9px;
}

.gv-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gv-card-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  background: #007B49 !important;
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none !important;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.gv-card-btn:hover {
  background: #005f38 !important;
  color: #fff !important;
}

.gv-card-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.gv-card-btn-accent {
  background: #F08300 !important;
}

.gv-card-btn-accent:hover {
  background: #cc6f00 !important;
}

.gv-nav-section {
  padding: 40px 48px 36px;
  border-bottom: 1px solid #C6DEEB;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.gv-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.gv-logo-row img {
  height: 28px;
  width: auto;
  display: block;
  margin: 0;
}

.gv-brand-copy {
  font-size: 12px;
  color: #007B49;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.gv-brand-tagline {
  font-size: 12px;
  color: #888;
  line-height: 1.8;
  margin: 0;
}

.gv-nav-col h5 {
  font-size: 13px;
  font-weight: 500;
  color: #007B49;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding: 0;
  border-bottom: none;
}

.gv-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gv-nav-col-no-heading {
  padding-top: 27px;
}

.gv-nav-col li {
  margin-bottom: 10px;
}

.gv-nav-col a {
  font-size: 13px;
  color: #3E3A39;
  text-decoration: none;
  opacity: 0.75;
  transition: color 0.15s, opacity 0.15s;
}

.gv-nav-col a:hover {
  color: #007B49;
  opacity: 1;
}

.gv-bottom {
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: nowrap;
}

.gv-copy {
  font-size: 11.5px;
  color: #aaa;
}

.gv-legal {
  display: flex;
  gap: 24px;
}

.gv-legal a {
  font-size: 11.5px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.gv-legal a:hover {
  color: #007B49;
}

@media screen and (max-width: 640px) {
  .gv-cta-section {
    padding: 32px 20px 28px;
  }

  .gv-cta-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gv-cta-card {
    padding: 22px 20px 20px;
  }

  .gv-card-name {
    font-size: 18px;
  }

  .gv-card-btns {
    flex-direction: column;
  }

  .gv-card-btn {
    width: 100% !important;
    justify-content: center;
    padding: 12px 20px;
  }

  .gv-nav-section {
    padding: 28px 20px 24px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gv-brand-area {
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid #C6DEEB;
  }

  .gv-nav-col {
    padding: 20px 0;
    border-bottom: 1px solid #C6DEEB;
  }

  .gv-nav-col:last-child {
    border-bottom: none;
  }

  .gv-nav-col-no-heading {
    padding-top: 20px;
  }

  .gv-nav-col h5 {
    font-size: 13px;
  }

  .gv-nav-col li {
    margin-bottom: 10px;
  }

  .gv-nav-col a {
    font-size: 13px;
  }

  .gv-bottom {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gv-legal {
    gap: 20px;
  }
}


/* ==============================
  コラム共通パーツ
  この記事でわかること / 監修 / 表 / 参考URL / 図キャプション / FAQ
============================== */

/* 共通 */
.column-parts {
  margin: 48px 0;
}

.column-parts h2 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.column-parts h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 1.2em;
  background: #008c68;
  border-radius: 2px;
}

.column-parts h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}

.column-parts p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

/* ==============================
  この記事でわかること
============================== */

.article-summary-box {
  margin: 40px 0;
  padding: 28px 32px;
  background: #f3fbf8;
  border: 1px solid #9ed8ca;
  border-radius: 10px;
}

.article-summary-box h2 {
  margin-bottom: 18px;
  color: #008c68;
}

.article-summary-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-summary-box li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  background: none;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.article-summary-box li:last-child {
  margin-bottom: 0;
}

.article-summary-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #008c68;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

/* ==============================
  監修・記事作成
============================== */

.article-author-box {
  margin: 48px 0;
}

.article-author-list {
  border: 1px solid #d7e7e4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.article-author-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 26px;
  border-bottom: 1px solid #e4eeee;
}

.article-author-item:last-child {
  border-bottom: none;
}

.article-author-label {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #008c68;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.article-author-content {
  flex: 1;
}

.article-author-name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}

.article-author-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* ==============================
  テーブル
============================== */

.article-table-wrap {
  margin: 32px 0 12px;
  overflow-x: auto;
}

.article-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border: 1px solid #b7d9d2;
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
}

.article-table th {
  padding: 14px 16px;
  background: #e7f6f2;
  border: 1px solid #b7d9d2;
  color: #222;
  font-weight: 700;
  text-align: left;
}

.article-table td {
  padding: 14px 16px;
  border: 1px solid #d8e8e5;
  color: #333;
  vertical-align: top;
}

.article-table tr:nth-child(even) td {
  background: #fbfdfd;
}

.article-table th:first-child,
.article-table td:first-child {
  width: 80px;
  min-width: 80px;
  white-space: nowrap;
}

.article-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: #777;
}

/* ==============================
  画像2カラム
============================== */

.news .editer .article-image-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 12px;
}

.news .editer .article-image-columns figure {
  margin: 0;
}

.news .editer .article-image-columns img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================
  図キャプション・出所
============================== */

.news .editer .article-figcaption,
.article-figcaption {
  margin: 10px 0 28px;
  font-size: 0.8rem !important;
  line-height: 1.7;
  color: #666 !important;
  text-align: center;
}

.news .editer .article-figcaption a,
.article-figcaption a {
  color: #137a48;
  text-decoration: underline;
}

.news .editer .article-figcaption a:hover,
.article-figcaption a:hover {
  text-decoration: none;
}

/* ==============================
  参考URL
============================== */

.article-reference-box {
  margin: 32px 0;
  padding: 24px 28px;
  border: 1px solid #d7e7e4;
  border-radius: 10px;
  background: #fff;
}

.news .editer .article-reference-title {
  margin: 0 0 10px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #333;
}

.news .editer .article-reference-box ul,
.news .editer .article-reference-box .list01 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news .editer .article-reference-box ul li,
.news .editer .article-reference-box .list01 li {
  position: relative;
  margin: 0 0 3px;
  padding-left: 0;
  background: none;
  background-size: auto;
  font-size: 0.8rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.news .editer .article-reference-box ul li:last-child,
.news .editer .article-reference-box .list01 li:last-child {
  margin-bottom: 0;
}

.news .editer .article-reference-box a,
.article-reference-box a {
  text-decoration: underline;
  word-break: break-all;
}

.news .editer .article-reference-box a:hover,
.article-reference-box a:hover {
  text-decoration: none;
}

/* ==============================
  FAQ
  details / summary 開閉対応
============================== */

.news .editer .article-faq {
  margin: 48px 0;
}

.news .editer .article-faq-item {
  border: 1px solid #c8e5df;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 16px;
  overflow: hidden;
}

.news .editer .article-faq-question {
  position: relative;
  display: block;
  padding: 22px 56px 22px 26px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #222;
  cursor: pointer;
  list-style: none;
}

.news .editer .article-faq-question::-webkit-details-marker {
  display: none;
}

.news .editer .article-faq-question::before {
  content: "Q.";
  margin-right: 8px;
  color: #008c68;
  font-weight: 700;
}

.news .editer .article-faq-question::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid #008c68;
  border-bottom: 3px solid #008c68;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.news .editer .article-faq-item[open] .article-faq-question::after {
  transform: translateY(-35%) rotate(225deg);
}

.news .editer .article-faq-answer {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  line-height: 2;
  color: #444;
}

.news .editer .article-faq-answer::before {
  content: "A.";
  margin-right: 8px;
  color: #f08300;
  font-weight: 700;
}

/* ==============================
  スマホ対応
============================== */

@media screen and (max-width: 768px) {
  .column-parts {
    margin: 36px 0;
  }

  .column-parts h2 {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .column-parts h3 {
    font-size: 17px;
  }

  .column-parts p {
    font-size: 15px;
    line-height: 1.9;
  }

  .article-summary-box {
    padding: 22px 20px;
    margin: 32px 0;
  }

  .article-summary-box li {
    font-size: 15px;
    line-height: 1.8;
  }

  .article-author-item {
    display: block;
    padding: 20px;
  }

  .article-author-label {
    display: inline-block;
    margin-bottom: 12px;
  }

  .article-author-name {
    font-size: 16px;
  }

  .article-author-text {
    font-size: 14px;
  }

  .news .editer .article-image-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-reference-box {
    padding: 20px;
  }

  .news .editer .article-reference-box ul li,
  .news .editer .article-reference-box .list01 li {
    font-size: 0.8rem;
  }

  .news .editer .article-faq {
    margin: 36px 0;
  }

  .news .editer .article-faq-question {
    padding: 18px 48px 18px 20px;
    font-size: 0.95rem;
  }

  .news .editer .article-faq-answer {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }
}

/* コラム本文の段落余白 */
.news .editer p {
  margin-bottom: 28px;
  line-height: 2;
}

.news .editer p:last-child {
  margin-bottom: 0;
}

/* 参考URL・図キャプション・コラムパーツ内は個別指定を優先 */
.news .editer .column-parts p,
.news .editer .article-reference-box p {
  margin-bottom: 0;
}

.news .editer figure.wp-block-image {
  margin: 0 auto 20px;
  text-align: center;
}