@charset "UTF-8";
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

input[type=submit],
input[type=button],
input[type=reset] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

html {
  font-size: 62.5%;
  height: 100%;
}
@media screen and (max-width: 320px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #00505A;
  line-height: 1.8;
  font-size: 1.8rem;
  box-sizing: border-box;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

img {
  vertical-align: top;
}

body * {
  box-sizing: inherit;
  /* box-sizingの値は継承されないので明示的に設定 */
}

a {
  color: #0778D8;
}

strong {
  font-weight: bold;
}

main {
  height: 100%;
}

/* ------------------------------------------------------------------------
 HEADER
 ------------------------------------------------------------------------ */
.vision .header_inner {
  background-color: transparent;
}

.header {
  height: 100px;
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
    margin-bottom: 100px;
  }
}
.single .header {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .single .header {
    margin-bottom: 100px;
  }
}
.header_inner {
  background-color: #FFFFFF;
  padding: 14px 0;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 5;
}
.header_inner .contents_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header_inner {
    position: static;
    padding: 0;
    background-color: transparent;
  }
}
.header .logo {
  width: 181px;
}
@media screen and (min-width: 769px) {
  .header .logo {
    will-change: opacity;
    transition: opacity 0.3s ease-in-out;
  }
  .header .logo:hover {
    opacity: 0.6 !important;
  }
}
.header .logo a {
  display: block;
}
@media screen and (max-width: 768px) {
  .header .logo a {
    position: relative;
  }
}
.header .logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .header .logo {
    position: fixed;
    z-index: 20;
    left: 15px;
    top: 22px;
    width: 160px;
    height: 44px;
  }
}
.header .logo_nav {
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.header .logo_nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .logo_nav {
    display: block;
  }
}
.header.active .logo_nav {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header.active .logo {
    display: block;
  }
}

/* ------------------------------------------------------------------------
 NAVIGATION
 ------------------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  .nav-wrap {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .nav-wrap {
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: 0.3s ease-out all;
    padding-left: 20%;
    padding-right: 20%;
  }
  .active .nav-wrap {
    visibility: visible;
    opacity: 1;
  }
}
.nav-wrap .sns_area {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav-wrap .sns_area {
    display: flex;
    margin-top: 16px;
    justify-content: center;
    /* width: 100%; */
    margin-left: 0;
  }
}
.nav-wrap .nav {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .nav-wrap .nav {
    display: block;
    padding-top: 130px;
    margin: 0 auto;
  }
}
.nav-wrap .nav > li {
  display: inline-block;
  margin-right: 45px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .nav-wrap .nav > li {
    margin-right: 0;
    display: block;
  }
}
.nav-wrap .nav > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .nav-wrap .nav > li:last-child {
    border-bottom: 0;
  }
}
.nav-wrap .nav > li > a {
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.445;
  font-style: normal;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #00505A;
}
@media screen and (max-width: 768px) {
  .nav-wrap .nav > li > a {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4375;
    padding: 10px 0;
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .nav-wrap .nav > li > a {
    will-change: opacity;
    transition: opacity 0.3s ease-in-out;
  }
  .nav-wrap .nav > li > a:hover {
    opacity: 0.6 !important;
  }
}

@media screen and (max-width: 768px) {
  .nav-wrap .nav > li > a,
.nav-wrap .nav-btnlist > li > a,
.nav-wrap .nav_policy > a,
.nav-wrap .sns_area > li > a,
.nav-wrap .nav_small > span {
    transform: translateY(100%);
  }
  .active .nav-wrap .nav > li > a,
.active .nav-wrap .nav-btnlist > li > a,
.active .nav-wrap .nav_policy > a,
.active .nav-wrap .sns_area > li > a,
.active .nav-wrap .nav_small > span {
    transition: transform 0.3s ease;
    transition-delay: calc(0.07s * var(--index));
    transform: translateX(0);
  }
}

.nav-button {
  display: none;
}

.nav-bg {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav-bg {
    display: block;
    background-color: #00505A;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    transition: transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    transition: transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91), -webkit-transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    width: 100%;
    z-index: 5;
  }
  .active .nav-bg {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    transition: transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
    transition: transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91), -webkit-transform 0.3s cubic-bezier(0.25, 0.76, 0.56, 0.91);
  }
}

@media screen and (max-width: 768px) {
  /*メニューボタンのエフェクト*/
  .nav-button,
.nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .nav-button {
    display: block;
    cursor: pointer;
    z-index: 20;
    position: fixed;
    width: 33px;
    height: 26px;
    top: 29px;
    right: 15px;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00505A;
    border-radius: 4px;
    transform-origin: left center;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .active .nav-button span:nth-of-type(1) {
    transform: rotate(45deg);
    background-color: #fff;
  }
  .nav-button span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
  }
  .active .nav-button span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .active .nav-button span:nth-of-type(3) {
    transform: rotate(-45deg);
    background-color: #fff;
    width: 100%;
  }
}
.nav-btnlist {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .nav-btnlist {
    margin-top: 22px;
    display: block;
  }
}
.nav-btnlist > li {
  overflow: hidden;
}
.nav-btnlist > li + li {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .nav-btnlist > li + li {
    margin-left: 0;
    margin-top: 17px;
  }
}

.nav_policy {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav_policy {
    display: block;
    overflow: hidden;
    margin-top: 47px;
  }
  .nav_policy a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 2;
    font-family: "Jost", sans-serif;
    display: block;
  }
}

.nav_small {
  display: none;
  overflow: hidden;
}
.nav_small > span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .nav_small {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 8px;
  }
}

/* ------------------------------------------------------------------------
 FOOTER
 ------------------------------------------------------------------------ */
.footer {
  width: 100%;
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 105px;
  }
}

.footer_inner {
  color: #00505A;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    width: 100%;
  }
}
.footer_inner .contents_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_inner .contents_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_l {
  display: flex;
  padding: 20px 0;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_l {
    display: none;
  }
}
.footer_r {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_r {
    width: 100%;
    text-align: right;
    display: block;
    padding: 10px 0;
  }
}
.footer_r small {
  font-size: 1.2rem;
  line-height: 2;
}

/* ------------------------------------------------------------------------
 ETC
 ------------------------------------------------------------------------ */
.box {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.box .boxInner {
  width: inherit;
  height: inherit;
  text-align: center;
  background-color: transparent;
}

.policy_link {
  margin-right: 20px;
}

.policy_link a {
  font-size: 1.2rem;
  line-height: 2;
  display: block;
  text-decoration: none;
  color: #00505A;
  transition: 0.2s ease-out opacity;
}
@media screen and (min-width: 769px) {
  .policy_link a {
    will-change: opacity;
    transition: opacity 0.3s ease-in-out;
  }
  .policy_link a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 768px) {
  .policy_link {
    display: none;
  }
}

.sns_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0;
  margin-left: 58px;
}
.sns_area > li {
  overflow: hidden;
}
.sns_area > li + li {
  margin-left: 24px;
}
.sns_area a {
  display: block;
  transition: 0.2s ease-out opacity;
}
@media screen and (min-width: 769px) {
  .sns_area a {
    will-change: opacity;
    transition: opacity 0.3s ease-in-out;
  }
  .sns_area a:hover {
    opacity: 0.6 !important;
  }
}

/* ローディング
 ------------------------------------------------------------------------ */
#loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #00505A;
}

#loading_inner {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

.cell {
  width: 640px;
  height: 400px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation-name: parapara;
  animation-duration: 2.8s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(43);
  animation-fill-mode: forwards;
  background: url(../img/loading/loading.png) 0 0 no-repeat;
}
@media screen and (max-width: 768px) {
  .cell {
    width: 320px;
    height: 200px;
    background-size: 100%;
    animation-name: parapara_sp;
  }
}

/* ------------------------------------------------------------------------
 PAGER
 ------------------------------------------------------------------------ */
.wp-pagenavi {
  margin-top: 210px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 120px;
  }
}
.wp-pagenavi .pages {
  display: none !important;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: 1px solid #00505A !important;
  line-height: 1 !important;
  padding: 11px 15px !important;
  margin: 0 8px !important;
  color: #00505A !important;
  border-radius: 8px !important;
  font-size: 1.6rem !important;
  display: inline-block !important;
}
.wp-pagenavi span.pages {
  border: 0 !important;
}
.wp-pagenavi a.nextpostslink {
  position: relative;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
}
.wp-pagenavi a.nextpostslink:after {
  content: "";
  display: block;
  position: absolute;
  /* text-indent: 0; */
  width: 10px;
  height: 10px;
  border-right: solid 1px #00505A;
  border-bottom: solid 1px #00505A;
  top: 50%;
  left: 50%;
  transform-origin: center bottom;
  transform: translate(-50%, -50%) rotate(-45deg) skew(15deg, 15deg);
}
@media screen and (min-width: 769px) {
  .wp-pagenavi a {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .wp-pagenavi a:hover {
    background-color: #00505A !important;
    color: #FFFFFF !important;
  }
  .wp-pagenavi a:hover:after {
    border-color: #FFFFFF;
  }
}
.wp-pagenavi span.current {
  background-color: #ccdcde;
  border-color: #ccdcde !important;
}

/* ------------------------------------------------------------------------
 COMMON
 ------------------------------------------------------------------------ */
.font_jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.contents_inner {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .contents_inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contents_article {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.service_title {
  font-size: 4rem;
  font-family: "Jost", sans-serif;
  line-height: 1.45;
  color: #00505A;
  display: inline-block;
  letter-spacing: 0.05em;
  vertical-align: top;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service_title {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.page_title {
  font-size: 4rem;
  font-family: "Jost", sans-serif;
  line-height: 1.45;
  color: #00505A;
  display: inline-block;
  letter-spacing: 0.05em;
  vertical-align: top;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page_title {
    font-size: 3.2rem;
    line-height: 1.4375;
  }
}
.page_title + .page_subtitle {
  margin-top: 15px;
}

.page_subtitle {
  font-size: 1.4rem;
  line-height: 1.714;
  color: #00505A;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.service_subtitle {
  margin-top: 100px;
  font-size: 1.4rem;
  line-height: 1.714;
  color: #00505A;
  letter-spacing: 0.1em;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .page_subtitle {
    font-size: 1.6rem;
    line-height: 1.714;
  }
}
#index .page_subtitle {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #index .page_subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.section_title {
  font-size: 2.4rem;
  line-height: 1.66667;
}

.block_title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  padding-bottom: 32px;
}
.block_title:before {
  content: "";
  width: 75px;
  height: 1px;
  background-color: #00505A;
  position: absolute;
  bottom: 0;
  left: 0;
}
.block_title * {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}

.btn {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #00505A;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .btn {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.btn:not(.article_btn_area) {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .btn:not(.article_btn_area) {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .btn:not(.article_btn_area):hover {
    background-color: #00505A !important;
    color: #FFFFFF !important;
  }
  .btn:not(.article_btn_area):hover:after {
    border-color: #FFFFFF;
  }
}
.btn select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  display: inline-block;
  color: inherit;
  cursor: pointer;
  background: none;
}
.btn select:focus {
  outline: none;
}
.btn::after {
  content: ">";
  display: inline-block;
  margin-left: 5px;
}
.btn.is-header {
  display: block;
  font-size: 1.4rem;
  line-height: 1.445;
  height: auto;
  padding: 4px 16px;
  letter-spacing: 0.05em;
}
.btn.is-header::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .btn.is-header {
    font-size: 1.6rem;
    border: 1px solid #fff;
    background-color: #FFF;
    padding: 9px 10px;
  }
}
.btn.is-slim {
  height: 30px;
  line-height: 28px;
  padding-left: 30px;
  padding-right: 30px;
}
.btn.is-slim:after {
  margin-left: 0;
}
.btn.is-wide {
  padding-left: 48px;
  padding-right: 48px;
}
@media screen and (max-width: 768px) {
  .btn.is-wide {
    padding-left: 45px;
    padding-right: 45px;
  }
}
.btn.is-noicon::after {
  display: none;
}

a.tag:not(.is-works-category),
.cat-item > a {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #00505A;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  a.tag:not(.is-works-category),
.cat-item > a {
    padding-left: 22px;
    padding-right: 22px;
  }
}
a.tag:not(.is-works-category):not(.article_btn_area),
.cat-item > a:not(.article_btn_area) {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  a.tag:not(.is-works-category):not(.article_btn_area),
.cat-item > a:not(.article_btn_area) {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  a.tag:not(.is-works-category):not(.article_btn_area):hover,
.cat-item > a:not(.article_btn_area):hover {
    background-color: #00505A !important;
    color: #FFFFFF !important;
  }
  a.tag:not(.is-works-category):not(.article_btn_area):hover:after,
.cat-item > a:not(.article_btn_area):hover:after {
    border-color: #FFFFFF;
  }
}

a.tag.is-works-category {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: #00505A;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  a.tag.is-works-category {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media screen and (min-width: 769px) {
  a.tag.is-works-category {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  a.tag.is-works-category:hover {
    background-color: transparent !important;
    color: #00505A !important;
  }
}

.tag:not(a).is-works-category {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: #00505A;
}
@media screen and (max-width: 768px) {
  .tag:not(a).is-works-category {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.tag:not(a):not(.is-works-category) {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #00505A;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .tag:not(a):not(.is-works-category) {
    padding-left: 22px;
    padding-right: 22px;
  }
}

a.tag:not(.is-works-tag),
a.tag.is-works-tag,
.tag:not(a).is-works-tag,
.tag:not(a):not(.is-works-tag),
.cat-item > a {
  border-radius: 20px;
  height: 30px;
  line-height: 28px;
  padding-left: 12px;
  padding-right: 12px;
}

.tag + .tag {
  margin-left: 5px;
}

.cat-item + .cat-item {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .cat-item + .cat-item {
    margin-left: 5px;
  }
}

.anim-clip {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.anim-clip > span {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

[data-anim=text] {
  display: inline-block;
  visibility: hidden;
}
[data-anim=text].is-visible {
  visibility: visible;
}

[data-anim=imageOut] {
  overflow: hidden;
  visibility: hidden;
}
[data-anim=imageOut].is-visible {
  visibility: visible;
}

[data-anim=imageIn] {
  overflow: hidden;
}

.article_list {
  display: flex;
  flex-wrap: wrap;
}
* + .article_list {
  margin-top: 60px;
}
.article_tag_area + .article_list {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .article_tag_area + .article_list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .article_list {
    width: 100%;
    display: block;
  }
}
.article_list > li {
  width: calc((100% - 28px) / 3);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .article_list > li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .article_list > li:nth-child(3n+2),
.article_list > li:nth-child(3n+3) {
    margin-left: 14px;
  }
}
@media screen and (min-width: 769px) {
  .article_list > li:nth-child(3) ~ li {
    margin-top: 104px;
  }
}
@media screen and (max-width: 768px) {
  .article_list > li + li {
    margin-top: 60px;
  }
}
.article_list_box {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.article_list_box_inner {
  width: inherit;
  height: inherit;
  text-align: center;
  background-color: transparent;
}
.article_list_box_inner > a {
  display: block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .article_list_box_inner > a {
    will-change: transform;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.01);
  }
  .article_list_box_inner > a:hover {
    transform: scale(0.97);
  }
}
.article_list_box_inner > a::after {
  content: "";
  display: block;
  height: 0;
  padding-top: 56.3888888889%;
}
.article_list_box_inner > a > img {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_list_thumb {
  width: 100%;
  height: auto;
}
.article_list_text {
  margin-top: 16px;
}
.article_list_text a {
    color: inherit;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    letter-spacing: 0.1em;
    transition: 0.2s ease-out all;
    word-break: break-all;  
}
.company_name {
  font-size: 1.4rem;
}
.article_title {
  font-size: 1.6rem;
  font-weight: 600;
}
/* .news_title {
  font-size: 1.6rem;
} */
@media screen and (min-width: 769px) {
  .article_list_text a {
    will-change: opacity;
    transition: opacity 0.3s ease-in-out;
  }
  .article_list_text a:hover {
    opacity: 0.6 !important;
  }
}
.article_list_date {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 16px;
}
.article_list_category {
  min-height: 30px;
  line-height: 1;
  margin-top: 16px;
}
.article_list_category a {
  text-decoration: none;
}
.article_list_link {
  text-align: right;
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .article_tag_area_filter + .article_btn_area {
    margin-top: 20px;
  }
}

/* ------------------------------------------------------------------------
 GENERAL
 ------------------------------------------------------------------------ */
@media screen and (max-width: 768px) {
  .spdn {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcdn {
    display: none;
  }
}

/* ------------------------------------------------------------------------
 KEYFRAMES
 ------------------------------------------------------------------------ */
@keyframes parapara {
  0% {
    background-position: 0 0;
    opacity: 0;
  }
  20% {
    background-position: 0 0;
    opacity: 0;
  }
  40% {
    background-position: 0 0;
    opacity: 1;
  }
  70% {
    background-position: 0 -17200px;
  }
  100% {
    background-position: 0 -17200px;
  }
}
@keyframes parapara_sp {
  0% {
    background-position: 0 0;
    opacity: 0;
  }
  20% {
    background-position: 0 0;
    opacity: 0;
  }
  40% {
    background-position: 0 0;
    opacity: 1;
  }
  70% {
    background-position: 0 -8600px;
  }
  100% {
    background-position: 0 -8600px;
  }
}
.kv_box {
  position: relative;
  min-height: calc(100% - 100px - 60px);
  padding-bottom: calc(18.75% + 40px);
}
@media screen and (max-width: 768px) {
  .kv_box {
    min-height: calc(100% - 80px - 24px);
    padding-bottom: calc(96% + 30px);
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .kv_box {
    min-height: 0;
    height: auto;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 320px) {
  .kv_box {
    min-height: calc(100% - 80px - 20px);
    padding-bottom: calc(96% + 20px);
  }
}
.kv_box .kv_list_img {
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .kv_box .kv_list_img {
    position: static;
  }
}

.kv_area {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .kv_area {
    margin-top: 24px;
  }
}
@media screen and (max-width: 320px) {
  .kv_area {
    margin-top: 20px;
  }
}
.kv_area img {
  width: 100%;
}

.kv_title {
  font-size: 5.2rem;
  line-height: 1.4807;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .kv_title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.kv_title + .btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .kv_title + .btn {
    margin-top: 28px;
  }
}

.kv_subTitle {
  font-size: 2rem;
  line-height: 1.45;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.05em;
}
.kv_subTitle + .kv_title {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .kv_subTitle {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}

.kv_title_box {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .kv_title_box {
    margin-top: 5px;
  }
}

.kv_btn_box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .kv_btn_box {
    margin-top: 27px;
  }
}
@media screen and (max-width: 320px) {
  .kv_btn_box {
    margin-top: 10px;
  }
}

.kv_list_img {
  display: flex;
}
@media screen and (max-width: 768px) {
  .kv_list_img {
    display: block;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .kv_list_img {
    margin-top: 30px;
  }
}
.kv_list_img > li {
  width: 33.3333%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .kv_list_img > li {
    width: 100%;
  }
}
.kv_list_img > li a {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .kv_list_img > li a {
    will-change: transform;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.01);
  }
  .kv_list_img > li a:hover {
    transform: scale(0.97);
  }
}
.kv_list_img > li a::before {
  content: "";
  display: block;
  height: 0;
  padding-top: 56.206088993%;
}
@media screen and (max-width: 768px) {
  .kv_list_img > li a::before {
    padding-top: 32%;
  }
}
.kv_list_img > li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00505A;
  mix-blend-mode: darken;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.kv_list_img_box {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 28px;
}
@media screen and (max-width: 768px) {
  .kv_list_img_box {
    left: 13px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
.kv_list_img_title {
  font-size: 4rem;
  color: #FFFFFF;
  line-height: 1.45;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .kv_list_img_title {
    font-size: 3.2rem;
    line-height: 1.4375;
  }
}
.kv_list_img_text {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.5;
}
.kv_list_img_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.kv_list_img_image.is-aboutus {
  background-image: url(../img/bg_kv_aboutus.png);
}
.kv_list_img_image.is-service {
  background-image: url(../img/bg_kv_service.png);
}
.kv_list_img_image.is-recruit {
  background-image: url(../img/bg_kv_recruit.png);
}

.article_area + .article_area {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .article_area + .article_area {
    margin-top: 120px;
  }
}
.kv_box + .article_area {
  margin-top: 120px;
}

/* ------------------------------------------------------------------------
 OVERWRITE
 ------------------------------------------------------------------------ */
#index .header {
  margin-bottom: 0;
}
#index .footer {
  margin-top: 440px;
}
#index .footer[lang="en"] {
  margin-top: 100px;
}

/* ------------------------------------------------------------------------
 ARTICLE
 ------------------------------------------------------------------------ */
.article_tag_area {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .article_tag_area {
    display: block;
    margin-top: 80px;
  }
}

.article_tag_area_category {
  display: flex;
}
.article_tag_area_category > li + li {
  margin-left: 10px;
}

.article_tag_area_filter {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .article_tag_area_filter {
    display: block;
  }
}

.article_tag_area_filter_label {
  font-size: 1.4rem;
  line-height: 1.7142;
}
@media screen and (max-width: 768px) {
  .article_tag_area_filter_label {
    font-size: 1.6rem;
  }
}
.article_tag_area_filter_label + .article_tag_area_category {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .article_tag_area_filter_label + .article_tag_area_category {
    margin-left: 0;
    margin-top: 15px;
  }
}

.post_content {
  text-align: left;
  margin-top: 20px;
}

.member_area + .member_area {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .member_area + .member_area {
    margin-top: 120px;
  }
}

.member_detail_area {
  margin-top: 120px;
}
.member_detail_area * + h1, .member_detail_area * + h2, .member_detail_area * + h3, .member_detail_area * + h4, .member_detail_area * + h5, .member_detail_area * + h6 {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .member_detail_area * + h1, .member_detail_area * + h2, .member_detail_area * + h3, .member_detail_area * + h4, .member_detail_area * + h5, .member_detail_area * + h6 {
    margin-top: 80px;
  }
}

.post_detail_contents {
  margin-top: 20px;
}
.post_detail_contents * + h1, .post_detail_contents * + h2, .post_detail_contents * + h3, .post_detail_contents * + h4, .post_detail_contents * + h5, .post_detail_contents * + h6 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .post_detail_contents * + h1, .post_detail_contents * + h2, .post_detail_contents * + h3, .post_detail_contents * + h4, .post_detail_contents * + h5, .post_detail_contents * + h6 {
    margin-top: 30px;
  }
}

.post_detail_contents *,
.member_detail_area * {
  font-size: 1.4rem;
  line-height: 1.7142;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .post_detail_contents *,
.member_detail_area * {
    font-size: 1.6rem;
  }
}
.post_detail_contents .has-huge-font-size,
.member_detail_area .has-huge-font-size {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents .has-huge-font-size,
.member_detail_area .has-huge-font-size {
    font-size: 2.2rem;
  }
}
.post_detail_contents .has-large-font-size,
.member_detail_area .has-large-font-size {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents .has-large-font-size,
.member_detail_area .has-large-font-size {
    font-size: 2rem;
  }
}
.post_detail_contents .has-medium-font-size,
.member_detail_area .has-medium-font-size {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents .has-medium-font-size,
.member_detail_area .has-medium-font-size {
    font-size: 1.8rem;
  }
}
.post_detail_contents .has-small-font-size,
.member_detail_area .has-small-font-size {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents .has-small-font-size,
.member_detail_area .has-small-font-size {
    font-size: 1.2rem;
  }
}
.post_detail_contents h1, .post_detail_contents h2, .post_detail_contents h3, .post_detail_contents h4, .post_detail_contents h5, .post_detail_contents h6,
.member_detail_area h1,
.member_detail_area h2,
.member_detail_area h3,
.member_detail_area h4,
.member_detail_area h5,
.member_detail_area h6 {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  padding-bottom: 32px;
}
.post_detail_contents h1:before, .post_detail_contents h2:before, .post_detail_contents h3:before, .post_detail_contents h4:before, .post_detail_contents h5:before, .post_detail_contents h6:before,
.member_detail_area h1:before,
.member_detail_area h2:before,
.member_detail_area h3:before,
.member_detail_area h4:before,
.member_detail_area h5:before,
.member_detail_area h6:before {
  content: "";
  width: 75px;
  height: 1px;
  background-color: #00505A;
  position: absolute;
  bottom: 0;
  left: 0;
}
.post_detail_contents h1 *, .post_detail_contents h2 *, .post_detail_contents h3 *, .post_detail_contents h4 *, .post_detail_contents h5 *, .post_detail_contents h6 *,
.member_detail_area h1 *,
.member_detail_area h2 *,
.member_detail_area h3 *,
.member_detail_area h4 *,
.member_detail_area h5 *,
.member_detail_area h6 * {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}
.post_detail_contents h1,
.member_detail_area h1 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h1,
.member_detail_area h1 {
    font-size: 2.6rem;
  }
}
.post_detail_contents h2,
.member_detail_area h2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h2,
.member_detail_area h2 {
    font-size: 2.2rem;
  }
}
.post_detail_contents h3,
.member_detail_area h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h3,
.member_detail_area h3 {
    font-size: 1.8rem;
  }
}
.post_detail_contents h4,
.member_detail_area h4 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h4,
.member_detail_area h4 {
    font-size: 1.6rem;
  }
}
.post_detail_contents h5,
.member_detail_area h5 {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h5,
.member_detail_area h5 {
    font-size: 1.4rem;
  }
}
.post_detail_contents h6,
.member_detail_area h6 {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h6,
.member_detail_area h6 {
    font-size: 1.2rem;
  }
}
.post_detail_contents a:hover,
.member_detail_area a:hover {
  text-decoration: none;
}
.post_detail_contents * + *,
.member_detail_area * + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .post_detail_contents * + *,
.member_detail_area * + * {
    margin-top: 15px;
  }
}
.post_detail_contents h1 + *, .post_detail_contents h2 + *, .post_detail_contents h3 + *, .post_detail_contents h4 + *, .post_detail_contents h5 + *, .post_detail_contents h6 + *,
.member_detail_area h1 + *,
.member_detail_area h2 + *,
.member_detail_area h3 + *,
.member_detail_area h4 + *,
.member_detail_area h5 + *,
.member_detail_area h6 + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .post_detail_contents h1 + *, .post_detail_contents h2 + *, .post_detail_contents h3 + *, .post_detail_contents h4 + *, .post_detail_contents h5 + *, .post_detail_contents h6 + *,
.member_detail_area h1 + *,
.member_detail_area h2 + *,
.member_detail_area h3 + *,
.member_detail_area h4 + *,
.member_detail_area h5 + *,
.member_detail_area h6 + * {
    margin-top: 60px;
  }
}
.post_detail_contents * + .wp-block-button,
.member_detail_area * + .wp-block-button {
  margin-top: 95px;
}
@media screen and (max-width: 768px) {
  .post_detail_contents * + .wp-block-button,
.member_detail_area * + .wp-block-button {
    margin-top: 50px;
  }
}
.post_detail_contents .wp-block-button + h1,
.post_detail_contents .wp-block-button + h2,
.post_detail_contents .wp-block-button + h3,
.post_detail_contents .wp-block-button + h4,
.post_detail_contents .wp-block-button + h5,
.post_detail_contents .wp-block-button + h6,
.member_detail_area .wp-block-button + h1,
.member_detail_area .wp-block-button + h2,
.member_detail_area .wp-block-button + h3,
.member_detail_area .wp-block-button + h4,
.member_detail_area .wp-block-button + h5,
.member_detail_area .wp-block-button + h6 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .post_detail_contents .wp-block-button + h1,
.post_detail_contents .wp-block-button + h2,
.post_detail_contents .wp-block-button + h3,
.post_detail_contents .wp-block-button + h4,
.post_detail_contents .wp-block-button + h5,
.post_detail_contents .wp-block-button + h6,
.member_detail_area .wp-block-button + h1,
.member_detail_area .wp-block-button + h2,
.member_detail_area .wp-block-button + h3,
.member_detail_area .wp-block-button + h4,
.member_detail_area .wp-block-button + h5,
.member_detail_area .wp-block-button + h6 {
    margin-top: 40px;
  }
}
.post_detail_contents img,
.member_detail_area img {
  max-width: 100%;
  height: auto;
}
.post_detail_contents .wp-block-image,
.member_detail_area .wp-block-image {
  margin-bottom: 0;
}
.post_detail_contents .wp-block-button,
.member_detail_area .wp-block-button {
  text-align: center;
}
.post_detail_contents .wp-block-button__link,
.member_detail_area .wp-block-button__link {
  background-color: #00505A;
  border-radius: 8px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 100%;
  max-width: 550px;
}
@media screen and (max-width: 768px) {
  .post_detail_contents .wp-block-button__link,
.member_detail_area .wp-block-button__link {
    font-size: 1.6rem;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.post_detail_ttl {
  font-size: 1.7rem;
  line-height: 1.6666;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .post_detail_ttl {
    font-size: 1.8rem;
  }
}

.post_ttl {
  font-size: 2.4rem;
  line-height: 1.6666;
  font-weight: 800;
  word-break: break-all;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .post_ttl {
    font-size: 1.8rem;
  }
}


.post_detail_date {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
}

.caption {
  font-size: 1.4rem;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .caption {
    font-size: 1.6rem;
  }
}

.prev_next_news {
  display: flex;
  justify-content: space-between;
  margin-top: 130px;
}
.prev_next_news > li > a {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .prev_next_news > li > a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .prev_next_news {
    margin-top: 70px;
  }
}

.sns_btn {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sns_btn {
    width: 100%;
    justify-content: center;
  }
}

.list_back_btn {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .list_back_btn {
    text-align: center;
  }
}
.list_back_btn a {
  color: #fff;
  padding: 12px 80px 12px 30px;
  background: url(../img/icon_arrow.png) no-repeat #729EA4;
  text-decoration: none;
  background-position: right 20px center;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
}
@media screen and (max-width: 768px) {
  .list_back_btn a {
    width: 100%;
    display: block;
    padding: 12px 40px 12px 40px;
  }
}

.post_bottom_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .post_bottom_area {
    display: block;
  }
}

/* ------------------------------------------------------------------------
 MEMBER
 ------------------------------------------------------------------------ */
/* メンバー一覧表示・ボードメンバーも含む */
.member_list {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .member_list > li {
    margin-top: 80px;
    width: 16.6666666667%;
    text-align: left;
    height: auto;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    box-sizing: border-box; 
  }
  
}
@media screen and (max-width: 768px) {
  .member_list > li {
    margin-top: 80px;
    width: 45%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.member_list > li a {
  display: block;
}
.member_list > li img {
  border: 1px solid #00505A;
  width: 100%;
  transition: 0.2s all ease-out;
}
.member_list > li:hover img {
  transform: scale(1.1);
}
.member_list_box {
  width: 100%;
  overflow: hidden;
}
.member_list_box_inner {
  width: 100%;
  overflow: hidden;
}
.member_name {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .member_name {
    font-size: 1.3rem;
  }
}

.member_list_profile {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5%;
}
/* メンバー一覧 end */

/* 事業部ごとにメンバー一覧を表示させたいときはこちらを使用する */
 /* .member_list {
  display: flex;
  flex-wrap: wrap;
}
* + .member_list {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  * + .member_list {
    margin-top: 80px;
  }
}
.member_list > li {
  width: 16.6666667%;
  text-align: left;
  height: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .member_list > li {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}
.member_list > li a {
  display: block;
}
.member_list > li img {
  width: 100%;
  transition: 0.2s all ease-out;
}
.member_list > li:hover .member_list_profile {
  opacity: 1;
}
.member_list > li:hover img {
  transform: scale(1.1);
}
.member_list_box {
  width: 100%;
  overflow: hidden;
}
.member_list_box_inner {
  width: 100%;
  overflow: hidden;
}
.member_list_caption {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .member_list_caption {
    font-size: 1.6rem;
  }
}
.member_list_caption span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
.member_list_profile {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5%;
} */

/* ボードメンバー start */
 /* .board_member_list {
  display: flex;
  flex-wrap: wrap;
}
* + .board_member_list {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  * + .board_member_list {
    margin-top: 80px;
  }
}
@media screen and (min-width: 769px) {
  .board_member_list > li {
    width: 16.6666666667%;
    text-align: left;
    height: auto;
    position: relative;
    overflow: hidden;
    flex:1;
    margin: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .board_member_list > li {
    width: 45%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 5px;
  }
}
.board_member_list > li a {
  display: block;
}
.board_member_list > li img {
  width: 100%;
  transition: 0.2s all ease-out;
}
.board_member_list > li:hover img {
  transform: scale(1.1);
}
.board_member_list_box {
  width: 100%;
  overflow: hidden;
}
.board_member_list_box_inner {
  width: 100%;
  overflow: hidden;
}
.board_member_name {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .board_member_name {
    font-size: 1.3rem;
  }
}

.board_member_list_profile {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5%;
} */
/* ボードメンバー end */


.member_service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.member_service_list > li {
  width: 49%;
  text-align: left;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .member_service_list > li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.member_service_list > li a {
  display: block;
}
.member_service_list > li img {
  width: 100%;
  transition: 0.2s all ease-out;
  border: 1px solid #729EA4;
}
.member_service_list > li:hover .member_service_list_profile {
  opacity: 1;
}
.member_service_list > li:hover  {
  box-shadow:0 0 20px rgb(0, 110, 255, 0.5), 0 2px 5px rgba(0, 0, 0, 0.3);
  transform: translate(0, -5px);
}
.member_service_list_box {
  width: 100%;
  overflow: hidden;
}
.member_service_list_box_inner {
  width: 100%;
  overflow: hidden;
}
.member_service_list_caption {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}

.service_item {
  margin: 30px !important;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
.service_subtitle {
  margin-top: 100px;
  font-size: 1.4rem;
  line-height: 1.714;
  color: #00505A;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.value_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  width: 92%;
}
* + .value_list {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  * + .value_list {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .value_list {
    width: 100%;
    display: block;
  }
}
.value_list > li {
  width: calc((100% - 115px) / 2);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .value_list > li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .value_list > li:nth-child(2n+2) {
    margin-left: 115px;
  }
}
@media screen and (min-width: 769px) {
  .value_list > li:nth-child(2) ~ li {
    margin-top: 104px;
  }
}
@media screen and (max-width: 768px) {
  .value_list > li + li {
    margin-top: 60px;
  }
}
.value_list_contents {
  font-size: 1.4rem;
  line-height: 1.714;
}
@media screen and (max-width: 768px) {
  .value_list_contents {
    font-size: 1.6rem;
  }
}
* + .value_list_contents {
  margin-top: 20px;
}

/* ------------------------------------------------------------------------
 MEMBER DETAIL
 ------------------------------------------------------------------------ */
.head_member_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
* + .head_member_detail {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  * + .head_member_detail {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .head_member_detail {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .head_member_detail {
    display: block;
  }
}
.head_member_detail_r {
  width: 100%;
  display: block;
  text-align: left;
  background: #DEE5F8;
  position: relative;
  order: 2;
}
.head_member_detail_r::after {
  content: "";
  display: block;
  height: 0;
  padding-top: 87.2727272727%;
}
@media screen and (max-width: 768px) {
  .head_member_detail_r::after {
    padding-top: 55.9766763848%;
  }
}
.head_member_detail_r > img {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .head_member_detail_r > img {
    object-position: top center;
  }
}
.head_member_detail_l {
  width: 69%;
}
@media screen and (max-width: 768px) {
  .head_member_detail_l {
    width: 100%;
    margin-top: 12px;
  }
}
.head_member_detail_l > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.head_member_detail_l p {
  text-align: left;
}

.member_detail_area {
  padding-right: 16.5%;
}
@media screen and (max-width: 768px) {
  .member_detail_area {
    margin-top: 80px;
    padding-right: 0;
  }
}

.member_detail_name {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4722;
  letter-spacing: 0.05em;
  order: 2;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .member_detail_name {
    margin-top: 40px;
  }
}
.member_detail_en {
  font-size: 1.4rem;
  line-height: 1.7142;
  letter-spacing: 0.1em;
  order: 2;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .member_detail_en {
    font-size: 1.6rem;
  }
}
.member_detail_position {
  font-size: 1.4rem;
  line-height: 1.7142;
  letter-spacing: 0.1em;
  order: 1;
}
@media screen and (max-width: 768px) {
  .member_detail_position {
    font-size: 1.6rem;
  }
}
.member_detail_btn > a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .member_detail_btn > a {
    font-size: 1.6rem;
  }
}
* + .member_detail_btn {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  * + .member_detail_btn {
    margin-top: 80px;
  }
}

.member_pht_order {
  order: 2;
}

/* ------------------------------------------------------------------------
 OTHER
 ------------------------------------------------------------------------ */
.hajimari_box div.circle_box {
  width: 70%;
  height: 70%;
}
@media screen and (max-width: 768px) {
  .hajimari_box div.circle_box {
    width: 85%;
    height: 85%;
    min-height: 170px;
  }
}

.value {
  font-size: 10rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .value {
    font-size: 4rem;
  }
}

.unit {
  font-size: 5rem;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .unit {
    font-size: 2.6rem;
  }
}

.service_area {
  max-width: 1280px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.service_list {
  display: flex;
  flex-wrap: wrap;
}
.service_list > * {
  width: 40.3902439%;
  margin-top: 10px;
}
.service_list * + .btn {
  margin-top: 20px;
  width: 170px;
  text-align: center;
}


@media screen and (max-width: 768px) {
  .service_list {
    display: block;
  }
  .service_list > * {
    width: auto;
  }
  .service_list > *:nth-child(2n) {
    margin-left: auto;
  }
}

.service_lead {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 2.4rem;
  line-height: 1.67;
  text-align: left;
  letter-spacing: 0.1em;
}
* + .service_lead {
  margin-top: 40px;
}

.service_text {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.4rem;
  line-height: 1.71;
  text-align: left;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .service_text {
    font-size: 1.6rem;
  }
}
* + .service_text {
  margin-top: 20px;
}

.service_box {
  display: flex;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .service_box {
    display: block;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .service_logo {
    width: auto;
    height: auto;
  }
}
.service_logo.is-large {
  height: 54px;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .service_logo.is-large {
    width: auto;
    height: auto;
  }
}
.service_logo.is-piece {
  position: relative;
}
.service_logo.is-piece > img {
  width: 200px;
}

@media screen and (max-width: 768px) {
  .service_logo.is-piece {
    position: static;
    top: auto;
  }
  a.btn.tukurus {
    margin-top: 0px;
  }
  
}
.service_logo > img {
  max-width: 100%;
}

.service_link {
  text-decoration: none;
  color: #222;
  transition: color 0.6s ease-out;
  display: block;
  margin-bottom: 10px;
}

.service_link:hover .service_type01 .service_area_l {
  background: #0C6BB8;
  color: #fff;
}

.service_link:hover .service_type02 .service_area_l {
  background: #1AA18E;
  color: #fff;
}

.service_link:hover .service_type03 .service_area_l {
  background: #0778D8;
  color: #fff;
}

.service_link:hover .service_type04 .service_area_l {
  background: #F4F528;
}

.service_link:hover .service_type05 .service_area_l {
  background: #1BA499;
  color: #fff;
}

.service_link:hover .service_type06 .service_area_l {
  background: #E2414C;
  color: #fff;
}

.service_link:hover .service_area_r img {
  transform: scale(1.2);
}

.service_area_r {
  width: 50%;
  overflow: hidden;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .service_area_r {
    width: 100%;
  }
}
.service_area_r img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
  min-height: 430px;
  transition: 0.2s ease-out all;
}
@media screen and (max-width: 768px) {
  .service_area_r img {
    min-height: 235px;
  }
}

/*service*/
.service_kv {
  background: #000;
  position: relative;
  width: 100%;
  height: 600px;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .service_kv {
    height: 235px;
    margin-bottom: 60px;
  }
}

.service_kv::after {
  content: "";
  width: 100%;
  height: 600px;
  display: block;
  position: absolute;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .service_kv::after {
    height: 235px;
  }
}

.service_01 .service_kv::after {
  background: url(../img/pht_service_kv_01.png) no-repeat;
  background-size: cover;
}

.service_02 .service_kv::after {
  background: url(../img/pht_service_kv_02.png) no-repeat;
  background-size: cover;
}

.service_03 .service_kv::after {
  background: url(../img/pht_service_kv_03.png) no-repeat;
  background-size: cover;
}

.service_04 .service_kv::after {
  background: url(../img/pht_service_kv_04.png) no-repeat;
  background-size: cover;
}

.service_05 .service_kv::after {
  background: url(../img/pht_service_kv_05.png) no-repeat;
  background-size: cover;
}

.service_06 .service_kv::after {
  background: url(../img/pht_service_kv_06.png) no-repeat;
  background-size: cover;
}

.service_kv_ttl {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 1;
  font-weight: bold;
}
.service_kv_ttl img {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .service_kv_ttl img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service_kv_ttl {
    font-size: 2rem;
    width: 100%;
  }
}

.service_kv_ttl img {
  height: 140px;
}
@media screen and (max-width: 768px) {
  .service_kv_ttl img {
    height: 45px;
  }
}

.content_area_img img {
  width: 100%;
  height: auto;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .content_area_img img {
    margin-bottom: 80px;
  }
}
.content_area_servicetext {
  margin-bottom: 200px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .content_area_servicetext {
    margin-bottom: 100px;
  }
}

.service_sitelink_area {
  max-width: 1316px;
  height: 413px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service_sitelink_area img {
  width: auto;
  height: 160px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service_sitelink_area img {
    height: 70px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service_sitelink_area {
    max-width: 100%;
    height: auto;
    padding: 40px 0;
    margin-bottom: 0;
  }
}

.service_01 .service_sitelink_area {
  background: #0C6BB8;
}

.service_02 .service_sitelink_area {
  background: #1AA18E;
}

.service_03 .service_sitelink_area {
  background: #0778D8;
}

.service_04 .service_sitelink_area {
  background: #F4F528;
}

.service_05 .service_sitelink_area {
  background: #1BA499;
}

.service_06 .service_sitelink_area {
  background: #E2414C;
}

.service_sitelink_area_btn a {
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  padding: 12px 40px;
  display: inline-block;
  transition: 0.2s ease-out all;
}
@media screen and (max-width: 768px) {
  .service_sitelink_area_btn a {
    font-size: 1.3rem;
    padding: 6px 20px;
  }
}
.service_sitelink_area_btn a:hover {
  background: #fff;
  color: #000;
}

.service_04 .service_sitelink_area_btn a {
  border: 2px solid #000;
  color: #000;
}
@media screen and (max-width: 768px) {
  .service_04 .service_sitelink_area_btn a {
    font-size: 1.3rem;
  }
}

.vision .vision_btn {
  margin-top: 160px;
  width: 170px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vision .page_title {
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}

.vision_area {
  max-width: 1280px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}

.vision_lead {
  font-size: 5.2rem;
  line-height: 1.4807;
  letter-spacing: 0.2em;
}
* + .vision_lead {
  margin-top: 164px;
}
@media screen and (max-width: 768px) {
  .vision_lead {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  * + .vision_lead {
    margin-top: 10px;
  }
}

.vision_text {
  font-size: 1.6rem;
  line-height: 3;
  letter-spacing: 0.2em;
}
* > .vision_text {
  margin-top: 50px;
}
.vision_text > span {
  display: block;
}
@media screen and (max-width: 768px) {
  .vision_text {
    font-size: 1.6rem;
    line-height: 2.5;
  }
  * > .vision_text {
    margin-top: 30px;
  }
}

.vision {
  background: linear-gradient(-45deg, rgba(238, 119, 82, 0.4), rgba(231, 60, 126, 0.4), rgba(35, 166, 213, 0.4), rgba(35, 213, 171, 0.4));
  background-size: 1000% 1000%;
  animation: gradient 15s ease infinite;
}
@media screen and (max-width: 768px) {
  .vision {
    background-size: 1500% 1500%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.recruit_area {
  max-width: 1280px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}

* + .recruit_speakerdeck {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  * + .recruit_speakerdeck {
    margin-top: 80px;
  }
}

.recruit_link_area {
  display: flex;
  flex-wrap: wrap;
}
.recruit_link_area > * {
  display: block;
  width: 50%;
}
* + .recruit_link_area {
  margin-top: 135px;
}
@media screen and (max-width: 768px) {
  .recruit_link_area {
    display: block;
  }
  .recruit_link_area > * {
    width: auto;
  }
  .recruit_link_area > * + * {
    margin-top: 12px;
  }
  * + .recruit_link_area {
    margin-top: 80px;
  }
}

.recruit_link {
  position: relative;
  text-decoration: none;
  color: #00505A;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .recruit_link > * {
    will-change: transform;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.01);
  }
  .recruit_link > *:hover {
    transform: scale(0.97);
  }
}

.recruit_link_content {
  display: flex;
  height: 316px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #00505A;
  top: 25%;
  overflow: hidden;
  position: relative;
}
.recruit_link_content::before, .recruit_link_content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.recruit_link_content::before {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.recruit_link_content::after {
  z-index: 1;
}
.recruit_link_content.recruit_link_content_01::after {
  background: url(../img/bg_rec_01.png) no-repeat;
  background-size: cover;
}
.recruit_link_content.recruit_link_content_02::after {
  background: url(../img/bg_rec_02.png) no-repeat;
  background-size: cover;
}
.recruit_link_content:hover::before {
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .recruit_link_content {
    height: 194px;
  }
}

.recruit_link_ttl {
  font-size: 3.6rem;
  line-height: 1.4722;
  letter-spacing: 0.05em;
  margin-top: 10%;
  font-weight: bold;
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}
.recruit_link_ttl + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .recruit_link_ttl {
    font-size: 2.4rem;
    line-height: 1.6666;
    letter-spacing: 0.1em;
  }
  .recruit_link_ttl + * {
    margin-top: 33px;
  }
}

.recruit_link_btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  width: 170px;
  height: 40px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 4px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .recruit_link_btn {
    height: 37px;
    width: 157px;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
}

/*contact*/
.contact_area {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.contact_text {
  font-size: 1.2rem;
}
* + .contact_text {
  margin-top: 15px;
}

.required_text {
  font-size: 1.2rem;
  color: #F2994A;
}

.contact_table {
  font-size: 1.4rem;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact_table {
    font-size: 1.6rem;
  }
}

.contact_row {
  display: flex;
}
.contact_row + .contact_row {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .contact_row {
    display: block;
  }
}

.contact_head {
  width: 190px;
  padding-right: 10px;
}
.contact_head.required::after {
  content: "*";
  display: inline;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7142;
  color: #F2994A;
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .contact_head.required::after {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_head {
    width: auto;
    padding-right: 0;
  }
}

.contact_desc {
  width: calc(100% - 190px);
}
@media screen and (max-width: 768px) {
  .contact_desc {
    width: auto;
    margin-top: 5px;
  }
}

.form_text {
  height: 40px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #00505A;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .form_text {
    font-size: 16px;
  }
}

.mwform-radio-field.vertical-item + .mwform-radio-field.vertical-item {
  margin-top: 20px;
}
.mwform-radio-field label {
  cursor: pointer;
}
.mwform-radio-field label > input {
  display: none;
}
.mwform-radio-field label > input + * {
  padding-top: 3px;
  padding-left: 40px;
  position: relative;
}
.mwform-radio-field label > input + *::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 3px;
  border: 1px solid #00505A;
  border-radius: 50%;
}
.mwform-radio-field label > input + *::after {
  display: none;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 6px;
  top: 6px;
  margin-top: 3px;
  background-color: #00505A;
  border-radius: 50%;
}
.mwform-radio-field label > input:checked + *::after {
  display: block;
}

.form_textarea {
  width: 100%;
  border: 1px solid #00505A;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .form_textarea {
    font-size: 16px;
  }
}

.privacy_text {
  font-size: 1.2rem;
  line-height: 2;
}
.privacy_text > a {
  text-decoration: underline;
  color: #00505A;
}
* + .privacy_text {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .privacy_text {
    margin-top: 60px;
  }
}

.form_submit {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: #00505A;
  cursor: pointer;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 8px;
  font-size: 1.6rem;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .form_submit {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media screen and (min-width: 769px) {
  .form_submit {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .form_submit:hover {
    background-color: transparent !important;
    color: #00505A !important;
  }
}

.form_complete {
  margin-top: 100px;
  text-align: center;
}
.form_complete_ttl {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
}
.form_complete_text {
  font-size: 1.4rem;
  line-height: 1.7142;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .form_complete_text {
    font-size: 1.6rem;
  }
}
.form_complete_btn {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: #00505A;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  height: 60px;
  line-height: 60px;
  font-size: 1.8rem;
  border-radius: 8px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .form_complete_btn {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media screen and (min-width: 769px) {
  .form_complete_btn {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .form_complete_btn:hover {
    background-color: transparent !important;
    color: #00505A !important;
  }
}
.form_complete_btn.secondary {
  border: 1px solid #00505A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  vertical-align: top;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap;
  color: #00505A;
  background-color: transparent;
  width: 100%;
  max-width: 360px;
  height: 60px;
  line-height: 60px;
  font-size: 1.8rem;
  border-radius: 8px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .form_complete_btn.secondary {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.form_complete_btn.secondary:not(.article_btn_area) {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .form_complete_btn.secondary:not(.article_btn_area) {
    will-change: background-color, color;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .form_complete_btn.secondary:not(.article_btn_area):hover {
    background-color: #00505A !important;
    color: #FFFFFF !important;
  }
  .form_complete_btn.secondary:not(.article_btn_area):hover:after {
    border-color: #FFFFFF;
  }
}

.about_section + .about_section {
  margin-top: 220px;
}
@media screen and (max-width: 768px) {
  .about_section + .about_section {
    margin-top: 120px;
  }
}

.about_vision {
  margin-top: 100px;
}
.about_vision h3 {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.about_vision p {
  font-size: 4rem;
  line-height: 1.475;
  letter-spacing: 0.2em;
}
.about_vision h3 + p {
  margin-top: 10px;
}
.about_vision * + .btn {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .about_vision {
    margin-top: 80px;
  }
  .about_vision h3 {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .about_vision p {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.about_ceo_messages {
  display: flex;
  margin-top: 100px;
  margin-bottom: 120px;
}
.about_ceo_picture {
  width: 34.16370107%;
  padding-right: 24px;
}
.about_ceo_picture > img {
  width: 100%;
  height: auto;
}
.about_ceo_message {
  width: 65.83629893%;
}
.about_ceo_lead {
  font-size: 2.4rem;
  line-height: 1.6666;
  letter-spacing: 0.1em;
}
.about_ceo_lead + .about_ceo_text {
  margin-top: 70px;
}
.about_ceo_text {
  font-size: 1.4rem;
  line-height: 1.7142;
  letter-spacing: 0.1em;
}
.about_ceo_text + .about_ceo_text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .about_ceo_text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about_ceo_messages {
    display: block;
    margin-top: 30px;
  }
  .about_ceo_picture, .about_ceo_message {
    width: auto;
    margin-right: auto;
  }
  .about_ceo_picture {
    padding-right: 0;
  }
  .about_ceo_message {
    margin-top: 30px;
  }
  .about_ceo_lead + .about_ceo_text {
    margin-top: 30px;
  }
}

.about_company {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.7142;
}
.about_company > div {
  display: flex;
  justify-content: flex-end;
}
.about_company > div + div {
  margin-top: 20px;
}
.about_company dt {
  width: 170px;
  margin-right: 20px;
}
.about_company dd {
  width: 100%;
  max-width: 550px;
  word-break: break-all;
}
.about_company iframe {
  width: 100%;
}
.about_company_access {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .about_company {
    font-size: 1.6rem;
    margin-top: 80px;
  }
  .about_company dt {
    width: 130px;
  }
}

.about_hajimari {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  max-width: 758px;
  margin-left: auto;
  margin-top: 120px;
}
.about_hajimari > * {
  width: 33.3333%;
  padding: 10px;
}
.about_hajimari_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 55px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: #80A7AC;
  border: 1px solid #80A7AC;
  box-sizing: border-box;
  border-radius: 8px;
}
.about_hajimari_ttl[lang="en"] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: #80A7AC;
  border: 1px solid #80A7AC;
  box-sizing: border-box;
  border-radius: 8px;
}
.about_hajimari_image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
}
.about_hajimari_image img {
  max-width: 100%;
}
.about_hajimari_data {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.about_hajimari_data .value.odometer,
.about_hajimari_data .unit {
  font-weight: normal;
  font-size: 4rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about_hajimari {
    margin: -5px;
    margin-top: 65px;
  }
  .about_hajimari > * {
    width: 50%;
    padding: 5px;
  }
  .about_hajimari_ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .about_hajimari_ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about_hajimari_data .value.odometer,
.about_hajimari_data .unit {
    font-size: 3.2rem;
  }
}

.about_value {
  display: flex;
  flex-wrap: wrap;
  margin: -30px;
  max-width: 760px;
  margin-left: auto;
  margin-top: 90px;
}
.about_value > * {
  width: 50%;
  padding: 30px;
}
.about_value_head {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.about_value_head_icon {
  display: inline-block;
  min-width: 72px;
}
.about_value_head_icon > img {
  vertical-align: middle;
}
.about_value_head + * {
  margin-top: 20px;
}
.about_value p {
  font-size: 1.4rem;
  line-height: 1.7142;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .about_value p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about_value {
    display: block;
    margin: auto;
    max-width: none;
  }
  .about_value > * {
    width: auto;
    padding: 0;
  }
  * + .about_value > * {
    margin-top: 60px;
  }
  .about_value_head {
    white-space: initial;
    display: flex;
    font-size: 1.8rem;
  }
  .about_value_head_icon {
    min-width: 60px;
    padding-right: 10px;
  }
}

a.maplink {
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid #000;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 2px 15px;
  color: #000;
  transition: 0.2s ease-out all;
}
@media screen and (max-width: 768px) {
  a.maplink {
    margin-top: 20px;
  }
}
a.maplink:hover {
  background: #000;
  color: #fff;
}

/*hajimari*/
.hajimari_box div.circle_box {
  width: 70%;
  height: 70%;
}
@media screen and (max-width: 768px) {
  .hajimari_box div.circle_box {
    width: 85%;
    height: 85%;
    min-height: 170px;
  }
}

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

.hajimari_area dl {
  width: 30%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .hajimari_area dl {
    width: 46%;
    margin-bottom: 40px;
  }
}

.hajimari_area dt {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  height: 110px;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hajimari_area dt {
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.hajimari_area dd {
  background: #E6EEEF;
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #00505A;
}
@media screen and (max-width: 768px) {
  .hajimari_area dd {
    height: auto;
    padding: 20px 0;
    min-height: 220px;
  }
}

.value {
  font-size: 10rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .value {
    font-size: 4rem;
  }
}

.unit {
  font-size: 5rem;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .unit {
    font-size: 2.6rem;
  }
}

.hajimari_ttl {
  font-size: 4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
@media screen and (max-width: 768px) {
  .hajimari_ttl {
    font-size: 2.2rem;
  }
}

.privacy_policy {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.privacy_policy img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.privacy_policy + .privacy_policy {
  margin-top: 80px;
}
.privacy_policy_head {
  font-size: 2.4rem;
  line-height: 1.6666;
  letter-spacing: 0.1em;
}
.privacy_policy_head + * {
  margin-top: 30px;
}
.privacy_policy_text {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.security_action_text {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.security_action_text a{
  color: inherit;
}
.privacy_policy_text + .privacy_policy_text {
  margin-top: 24px;
}
.privacy_policy_text + .security_action_text {
  margin-top: 24px;
}
.privacy_policy_list {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 42px;
}
.privacy_policy_ol {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 60px;
  list-style-type: decimal;
}
.privacy_policy_ul {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 60px;    
  list-style-type: disc;
}
.privacy_policy_table {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.privacy_policy_table + *, * + .privacy_policy_table {
  margin-top: 20px;
}
.privacy_policy_table th {
  font-weight: bold;
}
.privacy_policy_table tbody {
  border-top: 1px solid #00505A;
  border-bottom: 1px solid #00505A;
}
.privacy_policy_table a {
  color: inherit;
}
.privacy_policy_table th, .privacy_policy_table td {
  vertical-align: baseline;
}
.privacy_policy_table td:first-child {
  padding-right: 10px;
}
.privacy_policy_mark_area {
  display: flex;
}
.privacy_policy_mark_area > *:first-child {
  width: 95px;
  padding-right: 20px;
}
.privacy_policy_mark_area > *:last-child {
  width: calc(100% - 95px);
}
.privacy_policy_mark > img {
  width: 100%;
  height: auto;
}

.SDGs_logo {
  width: 100%;
}

.service_logo.is-mentor > img {
  height: 40px;
}

.service_logo.is-hru > img {
  height: 40px;
}

/* ブログカード */
.blogcard {
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  word-wrap: break-word;
  margin: 40px;
  box-shadow: 0 0 10px 6px rgba(0,0,0,.025);
  border-radius: 7px;
}
.blogcard.ex {
  background-color: #f7f7f7;
}
.blogcard a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s ease;
}
.blogcard a:hover {
  opacity: 0.6;
}
.blogcard_thumbnail {
  float: left;
  padding: 20px;
}
.blogcard_title {
  color: #000;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  padding: 17px 20px 10px;  
}
.blogcard_excerpt {
  color: #767676;
  font-size: 0.85em;
  line-height: 1.6;
  padding: 0 17px 15px 20px;
}
.blogcard_link {
  font-size:0.65em;
  padding:0 17px 15px 20px;
  text-align: left;
}
.blogcard_link .favicon {
  margin-bottom: -4px;
}
.blogcard_link .icon-external-link-alt::before {
  font-size:0.75em;
}

@media screen and (max-width: 768px) {
  .blogcard {
    margin: 40px 0;
  }
  .blogcard_thumbnail img {
    width: 90px;
  }
  .blogcard_title {
    font-size: 0.95em;
    padding-bottom: 17px;
  }
  .blogcard_excerpt  {
    display: none;
  }
}
/* ブログカード end*/


.thumb{
  text-align:center;
  }
  .thumb img{
    width:100%;
    height:100%;
  }

  .thumb_cover{
    text-align:center;  
    }
  .thumb_cover img{
    width:65%;
  }
  @media screen and (max-width: 768px) {
    .thumb_cover img {
      width: 100%;
    }
  }

  .compass img {
    max-width: 100%;
    height: auto;
    margin-top: 230px;
    margin-bottom: 190px;
  }
  @media screen and (max-width: 768px) {
    .compass img {
      margin-top: 70px;
      margin-bottom: 30px;
      width: 100%;
    }
  }

/* ABOUT US */
.about_titlewrap {
  margin-bottom: 135px;
}
@media screen and (max-width: 768px) {
  .about_titlewrap {
    margin-bottom: 44px;
  }
}
.kv_list_img.is-aboutus {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.kv_list_img_image.is-ceomessage {
  background-image: url(../img/bg_kv_ceo.png);
}
.kv_list_img_image.is-bhag {
  background-image: url(../img/bg_kv_bhag.png);
}
.kv_list_img_image.is-compass {
  background-image: url(../img/bg_kv_compass.png);
}
@media screen and (max-width: 768px) {
  .kv_list_img > li a.is-aboutus {
    height: 200px;
  }
}

/* Vision */
.visioncompass_section {
  margin-top: 270px;
}
.vision_title {
  font-size: 4rem;
  font-family: "Jost";
}
@media screen and (max-width: 768px) {
  .vision_title {
    font-size: 2.4rem;
  }
}
.vision_subtitle {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .vision_subtitle {
    font-size: 1.3rem;
  }
}

/* BHAG */
.bhagwrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #E5EEEE;
  font-family: "Jost","Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.bhag_innerwrap {
  max-width: 80%;
  margin: auto;
  margin-bottom: 240px;
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .bhag_innerwrap {
    max-width: 90%;
    margin: 0 auto 140px;
    padding-top: 56px;
  }
}
.bhag_vision {
  width: 55%;
}
.sp-show .bhagmain {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .bhag_vision {
    width: 100%;
  }
}
.bhag_vision.is-second {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .bhag_vision.is-second {
    width: 100%;
  }
}
.bhag_text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .bhag_text {
    font-size: 1.4rem;
  }
}
.bhag_text > span {
  display: block;
}
.bhag_text.is-vision_decoration, .bhag_text.is-text_decoration {
  font-size: 2.6rem;
  font-weight: 500;
  color: #E5EEEE;
  box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
	display: inline;
	padding: 0 0 0 .2em;
	line-height: 2;
	background-color: #034F58;
}
@media screen and (max-width: 768px) {
  .bhag_text.is-vision_decoration {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .bhag_text.is-text_decoration {
    font-size: 1.4rem;
  }
}
.bhag_visionwrap {
  margin-top: 200px;
}
.bhag_h3 {
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}
.bhag_visionlist {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
@media screen and (max-width: 768px) {
  .bhag_visionlist {
    gap: 100px;
  }
}
.bhag_visionitem {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .bhag_visionitem {
    flex-direction: column;
  }
}
.bhag_visionitem.is-second {
  flex-direction: column;
  gap: 40px;
}
.bhag_btn {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .bhag_btn.is-views {
    margin-left: 15px;
  }
}
.views_titlewrap {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .views_titlewrap {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
}
.views_title {
  display: flex;
  justify-content: center;
}
.views_text {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .views_text {
    font-size: 1.3rem;
  }
}
.viewswrap {
  max-width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .viewswrap {
    width: 100%;
    max-width: 100%;
  }
}
.viewswrap_inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 120px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .viewswrap_inner {
    flex-direction: column;
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.views {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .views {
    width: 100%;
  }
}
.views img {
  width: 100%;;
}
.bg_green {
  background-color: #E5EEEE;
  padding-top: 130px;
  margin-top: 0;
}

/* utility */
.sp-none {
  display: block;
}
.sp-show {
  display: none;
}
.pcw-80 {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .pcw-80 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .sp-show {
    display: block;
  }
}
