@charset "UTF-8";
/* CSS Document */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
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,
strike,
strong,
sub,
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%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 62.5%;
}
body {
  color: #333;
  font-size: 1.4em;
  font-family: 'Noto Sans JP', sans-serif, 'Yu Gothic', YuGothic,
    'Hiragino Kaku Gothic ProN', Meiryo, serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-feature-settings: 'palt';
}
p {
  line-height: 170%;
}
p small {
  letter-spacing: 0.1rem;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
a:link {
  color: #333;
}
a:visited {
  color: #333;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}
img {
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-shadow: none;
  outline: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* iPad背景切れ対策 */
@media screen and (min-width: 813px) {
  body {
    min-width: 1260px;
  }
}

/* 表示切替 */
.switch {
  visibility: hidden;
}
.sp {
  display: none;
}

/*
	common
-----------------------------------------------------------------------------------------------*/

/* カラーテキスト */
.blTx {
  color: #37a0dc;
}
.nbTx {
  color: #0f3b80;
}
.whTx {
  color: #ffffff;
}
.require {
  font-weight: bold;
  color: #ea545d;
}

/* カラー背景 */
.blBk {
  background-color: #37a0dc;
}
.glBk {
  background-color: #f5f7f7;
}

/* テキスト情報 */
.txtR {
  text-align: right;
}

.ctsArea {
  width: 1060px;
  padding: 0 30px 120px 30px;
  margin: 0 auto;
}
.ctsAreaPlus {
  padding-top: 100px;
}

/*　トップh3　*/
.top_tit_h3 h3 span {
  font-weight: bold;
  position: relative;
  letter-spacing: 0.1rem;
}
.top_tit_h3 h3 span::after {
  content: '';
  position: absolute;
  left: 0;
  background-color: #37a0dc;
}
.top_tit_h3 h3 span {
  display: block;
  font-size: 2rem;
  margin: 10px 0 30px 0;
  padding: 20px 0 0 0;
}
.top_tit_h3 h3 span::after {
  width: 24px;
  height: 6px;
  top: 0;
}
.DkLine h3 span::after {
  background-color: #2062c0;
}

/*　その他ページh2　*/
.tit_h2 .tit {
  font-weight: bold;
  position: relative;
  letter-spacing: 0.1rem;
}
.tit_h2 .tit::after {
  content: '';
  position: absolute;
  left: 0;
  background-color: #37a0dc;
}
.tit_h2 .tit {
  font-size: 2.8rem;
  margin: 0 0 60px 0;
}
.tit_h2 .tit::after {
  width: 24px;
  height: 6px;
  bottom: -30px;
  left: 0;
}
.DkLine .tit::after {
  background-color: #2062c0;
}

.txtArea .case {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.txtArea h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.btn_sw {
  font-size: 1.2rem;
  width: 140px;
  height: 40px;
  line-height: 38px;
  transition: oll 0.5s;
}
.btn_sw a {
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
  padding: 0 10px 0 0;
  transition: all 0.3s;
}
.btn_sw a:hover {
  background-color: #fff;
  color: #37a0dc;
  opacity: 1;
}
.btn_sw a::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.6s;
}
.btn_sw a:hover::after {
  border-top: solid 1px #37a0dc;
  border-right: solid 1px #37a0dc;
  right: 10px;
}
.btn_sw > a {
  display: block;
  width: 100%;
  height: 100%;
}

/*　テーブルリスト　*/
.tbllistBase {
  width: 100%;
  border-collapse: collapse;
}
.tbllistBase th,
.tbllistBase td {
  font-size: 1.5rem;
  line-height: 180%;
}
.tbllistBase th {
  width: 80px;
  font-weight: bold;
  text-align: left;
}
.tbllistBase th:nth-child(2n) {
  width: 50px;
  font-weight: bold;
  text-align: right;
}
.tbllistBase td {
  padding: 0 0 0 30px;
  word-break: break-all;
  background-color: #fff;
}
.tbllistBase tbody {
  display: block;
  padding: 35px 0;
  border-bottom: 1px solid #cdd7d7;
}
.tbllistBase tbody:last-of-type {
  border-bottom: none;
}

/*　テーブル　*/
.tblBase {
  width: 100%;
  border-collapse: collapse;
}
.tblBase th,
.tblBase td {
  font-size: 1.6rem;
  line-height: 180%;
}
.tblBase th {
  width: 240px;
  font-weight: bold;
  text-align: left;
  padding: 25px 30px;
  background-color: #ebefef;
}
.tblBase td {
  padding: 30px 0 30px 30px;
  word-break: break-all;
  background-color: #fff;
}
.tblBase tr {
  border-bottom: 1px solid #cdd7d7;
}
.tblBase tr:last-of-type {
  border-bottom: none;
}

/* お問合せ窓口 */
.contactBox {
  width: 100%;
  border: 1px solid #cdd7d7;
  padding: 20px 30px;
}
.contactBox h4 {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 5px 0;
}
.contactBox p {
  margin: 0 0 15px 0;
}

.contactBox p:nth-child(3n) {
  display: inline-block;
  font-size: 1.8rem;
  border-top: 1px solid #cdd7d7;
  border-bottom: 1px solid #cdd7d7;
  padding: 10px 5px;
}
.contactBox p:last-child {
  margin: 0;
}
.contactBox span,
.cookiepolicy span {
  color: #cdd7d7;
}

/*確認ボタン共通*/
.contactButton {
  margin: 0 auto;
}
.contactButton.clm2 {
  display: -ms-flex;
  display: flex;
  -ms-justify-content: center;
  justify-content: center;
}
.contactButton .button {
  width: 300px;
  height: 80px;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 1px 1px 3px 1px rgb(0 0 0 / 10%);
}
.contactButton .button:hover {
  box-shadow: none;
}
.contactButton button {
  color: #fff;
  background-color: #37a0dc;
  font-size: 1.6rem;
  line-height: 80px;
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}
.contactButton > button {
  display: block;
  width: 100%;
  height: 100%;
}

.contactButton button:hover {
  background-color: rgba(20, 90, 165, 1);
  opacity: 1;
}
.contactButton .button::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.6s;
}
.contactButton .button:hover::after {
  right: 15px;
}

/*
	header
-----------------------------------------------------------------------------------------------*/
.headerBox {
  min-width: 100%;
  height: 70px;
  position: fixed;
  z-index: 500;
  padding: 15px;
}

/* gnav */
#gNavOpen {
  box-shadow: none;
  outline: none;
}

.listGnav {
  margin: 0 0 90px 0;
}
.listGnav li {
  width: 100%;
  margin: 0 0 25px 0;
}
.listGnav a {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s ease;
}
.listGnav a::after {
  content: '';
  position: absolute;
  background: #37a0dc;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: 0 0 -3px 0;
  transition: all 0.3s ease;
}
.listGnav a:hover,
.listGnav .active a {
  color: #37a0dc;
  opacity: 1;
}
.listGnav a:hover::after,
.listGnav .active a::after {
  text-decoration: underline;
  width: 100%;
}
.listGnav .listIn {
  margin: 10px 0 0 15px;
}
.listGnav .listIn li {
  margin: 0 0 10px 0;
}
.listGnav .listIn li span {
  color: #37a0dc;
}
.listGnav .listIn li a {
  font-weight: normal;
  font-size: 1.4rem;
  color: #cccccc;
}

.gnav {
  display: block;
  width: 350px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  font-weight: bold;
  position: absolute;
  top: 0;
  right: -100%;
  padding: 100px 0 0 70px;
  transition: all 1s;
  z-index: 900;
}

.gnav.active {
  right: 0;
  transition: all 0.6s;
}

/*headerBtnArea*/
.headerBtnArea {
  display: -ms-flex;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.headerBtnArea a.btnHeader {
  -ms-align-items: flex-end;
  align-items: flex-end;
  width: 60px;
  height: 55px;
  font-size: 0.9rem;
  padding: 0 0 5px 0;
}

/* gNavOpen */
#gNavOpen {
  display: block;
  width: 70px;
  height: 70px;
  background-color: rgba(55, 160, 220, 0.9);
  border: none;
  position: relative;
  transition: all 0.3s;
  z-index: 1200;
}
#gNavOpen:hover {
  background-color: rgba(20, 90, 165, 0.9);
  border: none;
  cursor: pointer;
}
#gNavOpen.active {
  background-color: rgba(55, 160, 220, 0.9);
}
#gNavOpen.active:hover {
  background-color: rgba(20, 90, 165, 0.9);
}
#gNavOpen .gNavOpenBox {
  display: block;
  width: 25px;
  height: 20px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#gNavOpen .line {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 0;
}
#gNavOpen .line.line01 {
  top: 0px;
  transition: transform 0.3s;
}
#gNavOpen .line.line02 {
  margin: -1px 0 0 0;
  top: 50%;
}
#gNavOpen .line.line03 {
  bottom: 0;
  transition: transform 0.3s;
}

/* gNavClose */
#gNavOpen.active .line01 {
  top: 8px;
  transform: rotate(45deg);
}
#gNavOpen.active .line02 {
  opacity: 0;
}
#gNavOpen.active .line03 {
  top: 8px;
  transform: rotate(135deg);
}

/*
	kvWrapper
-----------------------------------------------------------------------------------------------*/
.kvWrapper {
  height: 100vh;
  min-height: 800px;
  position: relative;
}
#wrapper .kitasplogo {
  position: absolute;
  width: 188px;
  height: 44px;
  top: 20px;
  left: 20px;
  z-index: 9999;
}
#wrapper .kitasplogo img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 10px rgb(15 59 128 / 20%));
}
#wrapper .kitasplogo > a {
  display: block;
  width: 100%;
  height: 100%;
}

.kvWrapperIn {
  height: 100%;
  background-color: #cdd7d7;
}

.kvWrapper .txtArea {
  display: -ms-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
}
.kvWrapper .txtArea_top {
  background: url('../images/kv_top_01_pc.png') no-repeat top center / cover;
  width: 100%;
  height: 50%;
  position: relative;
}
.kvWrapper .txtArea_bottom {
  background: url('../images/kv_top_02_pc.png') no-repeat top center / cover;
  width: 100%;
  height: 50%;
  position: relative;
}
.kvWrapper .txtArea .tit {
  position: absolute;
  bottom: 30px;
  left: 12%;
}

.kvWrapper .txtArea .txt {
  min-height: 300px;
  font-size: 2rem;
  line-height: 200%;
  position: absolute;
  top: 30px;
  left: 12%;
  mix-blend-mode: multiply;
}
.kvWrapper .txtArea .txt p {
  line-height: 180%;
}

/* スクロールバー */
.scroll {
  width: 300px;
  text-align: right;
  font-size: 1.2rem;
  line-height: 100%;
  position: absolute;
  bottom: -70px;
  left: -160px;
  transform: rotate(-90deg);
}
.scroll::after {
  position: absolute;
  content: '';
  display: block;
  background-color: #37a0dc;
  width: 0;
  height: 1px;
  top: 15px;
  right: 0;
  animation: scrollUp 1.5s linear infinite;
}
.scroll span {
  display: inline-block;
  margin: 0 0 0 -3px;
}

/*
	about_newsWrapper
-----------------------------------------------------------------------------------------------*/
.about_newsWrapper .aboutAreaIn,
.about_newsWrapper .newsAreaIn {
  width: 490px;
  margin: 0 auto;
}
.about_newsWrapper .aboutAreaIn {
  margin: 0 0 0 auto;
}
.about_newsWrapper .newsAreaIn {
  margin: 0;
}
.aboutArea,
.newsArea {
  width: calc(100% / 2);
}

/* 会社概要エリア */
.about_newsWrapper {
  display: -ms-flex;
  display: flex;
}

.about_newsWrapper .flexBox {
  display: -ms-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.about_newsWrapper .btnArea {
  margin-top: auto;
  height: 60px;
}
.aboutArea {
  padding: 80px 80px 80px 0;
}
.aboutArea {
  position: relative;
}
.aboutArea::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #37a0dc;
  z-index: -5;
}
.aboutArea p {
  line-height: 190%;
  color: #fff;
  margin: 0 0 50px 0;
}
.aboutArea .btnArea {
  display: -ms-flex;
  display: flex;
}

/* Newsエリア */
.newsArea {
  padding: 80px 0 80px 80px;
}
.newsArea .cat {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  word-break: break-all;
}
.newsArea .cat a,
.newsListAreaIn .cat a,
.newsListbaseAreaIn .cat a {
  background-color: #e4e4e4;
  padding: 2px 8px;
  margin: 0 10px 0 0;
}
.newsArea h4 {
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #cdd7d7;
  word-break: break-all;
}
.newsArea .txt {
  padding: 0 0 20px 0;
  word-break: break-all;
}
.newsArea .txt a {
  color: #37a0dc;
}

/* 共通ボタン */
.btn {
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}
.btn::before,
.btn::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
}
.btn,
.btn::before,
.btn::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
}
.btn::before {
  width: 12px;
  height: 12px;
  bottom: 6px;
  right: 6px;
  border-top: 12px solid transparent;
}
.btn:hover::before {
  opacity: 0.6;
}
.btn::after {
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.btn:hover::after {
  right: 0;
}
.btn a {
  text-align: center;
  line-height: 60px;
  transition: all 0.3s;
  z-index: 2;
}
.btn > a {
  display: block;
  width: 100%;
  height: 100%;
}
.btn a:hover {
  opacity: 0.8;
}

/* 会社概要・お知らせ共通ボタン */
.aboutArea .btn,
.newsArea .btn {
  width: 220px;
  height: 60px;
  margin: 0 20px 0 0;
}

/* 会社概要ボタン */
.aboutArea .btn::before {
  border-right: 12px solid #ffffff;
}
.aboutArea .btn:hover::before {
  border-right: 12px solid #37a0dc;
}
.aboutArea .btn:hover::after {
  background-color: #ffffff;
}
.aboutArea .btn a {
  color: #ffffff;
  border: solid 1px #ffffff;
}
.aboutArea .btn a:hover {
  color: #006dc1;
}
/* お知らせボタン */
.newsArea .btn::before {
  border-right: 12px solid #333333;
}
.newsArea .btn:hover::before {
  border-right: 12px solid #ffffff;
}
.newsArea .btn:hover::after {
  background-color: #333333;
}
.newsArea .btn a {
  color: #333333;
  border: solid 1px #333333;
}
.newsArea .btn a:hover {
  color: #ffffff;
}

/* GO-GLOBALボタン共通 */
.global_btn {
  display: inline-block;
  background-color: #0f3b80;
  text-align: center;
  transition: all 0.3s;
}
.global_btn:hover {
  background-color: #0d284b;
  opacity: 1;
}
.global_btn a {
  color: #ffffff;
}
.global_btn a:hover {
  opacity: 0.8;
}
.global_btn > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* GO-GLOBALボタン */
.aboutArea .global_btn {
  width: 220px;
  height: 60px;
}
.aboutArea .global_btn a img {
  padding: 10px 0 0 0;
}
.aboutArea .global_btn p {
  font-size: 1.2rem;
  margin: 2px 0 0 0;
  line-height: 100%;
  text-align: center;
}

/*
	solution
-----------------------------------------------------------------------------------------------*/
.solutionArea {
  background-color: #333333;
  width: 100%;
  padding: 40px 0;
  position: relative;
}
.solutionArea .scrollbk {
  background: url(../images/solution_bk_img_pc.png) no-repeat bottom right;
  width: 100%;
  height: calc(100% - 120px);
  position: absolute;
  top: 60px;
  right: calc(50% + 190px);
}

.solutionAreaIn {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  width: 1140px;
  margin: 0 auto;
}
.solutionAreaIn h3 {
  width: calc(100% / 3);
}
.solutionAreaIn ul {
  color: #ffffff;
  padding: 60px 0 60px 80px;
}
.solutionAreaIn ul li {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: 0 0 50px 0;
}
.solutionAreaIn ul li:last-of-type {
  margin: 0;
}
.solutionAreaIn ul li .bkround {
  width: 134px;
  height: 134px;
  background-color: #37a0dc;
  border-radius: 50%;
  position: relative;
  margin: 0 30px 0 0;
}
.solutionAreaIn ul li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*
	our_valueArea
-----------------------------------------------------------------------------------------------*/
.our_valueArea {
  width: 100%;
  padding: 60px 0;
}
.our_valueAreaIn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 1140px;
  margin: 0 auto;
}
.our_valueAreaIn > div {
  border-right: 1px solid #cdd7d7;
  border-bottom: 1px solid #cdd7d7;
}

.our_valueAreaIn > div:nth-child(3n) {
  border-right: none;
}
.our_valueAreaIn > div:nth-child(n + 4) {
  border-bottom: none;
}
.our_valueAreaIn div h3 {
  padding: 160px 0 0 0;
}

.our_valueAreaIn .bkimg {
  width: 320px;
  height: auto;
  margin: 30px auto 0 auto;
}
.our_valueAreaIn .txtArea {
  padding: 20px 30px 50px 30px;
}

/*
	case_study
-----------------------------------------------------------------------------------------------*/
.case_studyAreaIn {
  width: 1200px;
  padding: 100px 30px 120px 30px;
  margin: 0 auto;
}
.case_titArea {
  display: flex;
  display: -ms-flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
}
.case_titArea .btn_sw {
  margin: 0 0 30px 0;
}

/* swiper */
.swiperBox {
  position: relative;
}

/* swiper button */
.swiper-button-prev,
.swiper-button-next {
  width: 28px;
}

.swiper-button-prev {
  left: -60px;
}
.swiper-button-next {
  right: -60px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: relative;
}
.swiper-button-prev:after {
  transform: rotate(225deg);
  left: 10px;
}
.swiper-button-next:after {
  right: 10px;
}

/* swiper pagination */

/* 事例3つでspのみ表示 */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  display: none;
}

/* 事例3つ以上 */
.swiper-pagination {
  width: 100%;
  margin: 20px auto 0 auto;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  width: 50px;
  height: 6px;
  margin: 0 4px;
  border-radius: 0;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 0.8;
}

/* listSlide */
.swiper-container ul {
  display: flex;
  display: -ms-flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.listSlide li {
  display: -ms-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  background-color: #fff;
  transition: background-color 0.3s;
}
.listSlide li:hover {
  background-color: #d7e3f0;
}
.listSlide li a {
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
}
.listSlide li > a {
  width: 100%;
  height: 100%;
}
.listSlide li > a:hover {
  opacity: 1;
}

.listSlide li figure {
  background-color: #fff;
  overflow: hidden;
  margin: 0 auto;
  transition: all 0.5s;
}
.listSlide li:hover figure {
  background-color: rgba(0, 10, 40, 0.6);
}

.listSlide li figure img {
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}
.listSlide li :hover figure img {
  transform: scale(1.08);
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.listSlide li .case {
  font-size: 2rem;
  line-height: 100%;
  margin: 0 0 12px 0;
}
.listSlide li .case span {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 0 5px;
}
.listSlide .txtArea {
  padding: 25px 25px 25px 25px;
}
.listSlide .caseCat {
  margin: 0 0 15px 0;
}
.listSlide .caseCat .cat {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  background-color: #37a0dc;
  padding: 8px 20px;
  position: relative;
  border-radius: 65px;
  word-break: break-all;
}
.listSlide .txt {
  font-size: 1.6rem;
  font-weight: normal;
  word-break: break-all;
}
.swlistbtn {
  font-size: 1.2rem;
  text-align: right;
  position: relative;
  margin: auto 15px 15px 15px;
}
.swlistbtn::before {
  content: '';
  display: block;
  position: absolute;
  background-color: #333333;
  width: 60px;
  height: 1px;
  top: 12px;
  right: 70px;
  transition: all 0.6s;
}
.listSlide li:hover .swlistbtn::before {
  width: 30px;
}
.listSlide .swlistbtn::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #333333;
  width: 8px;
  height: 1px;
  top: 9px;
  right: 70px;
  transform: rotate(45deg);
}

/* slide01 */

.listSlide .slide01 .txt span {
  background-color: #422d91;
}

/*
	footer
-----------------------------------------------------------------------------------------------*/

footer {
  width: 100%;
  background: #fff;
  border-top: solid 1px #cdd7d7;
}
.goglobalArea {
  border-bottom: solid 1px #cdd7d7;
  margin: 60px 0 0 0;
}
.goglobalAreaIn {
  display: -ms-flex;
  display: flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 1140px;
  margin: 0 auto;
  padding: 0 0 80px 0;
}
.goglobalAreaIn ul {
  display: -ms-flex;
  display: flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.goglobalAreaIn ul li {
  width: 260px;
  height: 70px;
  margin: 0 0 0 20px;
  position: relative;
  transition: all 0.3s;
}
.goglobalAreaIn ul li a {
  line-height: 70px;
}
.goglobalAreaIn .logo {
  width: 245px;
  height: 100%;
}
.goglobalAreaIn .logo > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* 代理店一覧_代理店募集共通ボタン */
.goglobalAreaIn ul .global_btn a::after {
  content: '';
  display: inline-block;
  background: url(../images/linkmark.svg) no-repeat center right;
  background-size: contain;
  height: 13px;
  width: 12px;
  padding: 0 0 0 25px;
}

/* 代理店専用ページボタン */
.goglobalAreaIn .btn::after {
  border-right: 12px solid #0f3b80;
}
.goglobalAreaIn .btn:hover::after {
  background-color: #0d284b;
}
.goglobalAreaIn .btn a {
  color: #0f3b80;
  border: solid 1px #0f3b80;
}
.goglobalAreaIn a:hover {
  color: #ffffff;
}
.goglobalAreaIn .btn:hover::after {
  border-right: 12px solid #ffffff;
}

/* footerBoxIn */
.footerBoxIn {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  padding: 40px 30px 0 30px;
}
.footerBox {
  position: relative;
}

/* footerL */
.footerL h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.footerL p {
  font-size: 1.2rem;
}
.snsArea {
  display: -ms-flex;
  display: flex;
  margin: 40px 0 0 0;
}
.snsArea li {
  margin: 0 15px 0 0;
}
.snsArea li > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* footerL */

.footerR {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-justify-content: space-between;
}
.footerR > ul {
  margin: 0 0 0 60px;
}
.footerR li {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
}
.footerR .listIn {
  margin: 10px 0 0 0;
}
.footerR .listIn li {
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}
.footerR .listIn li span {
  color: #37a0dc;
}

#copyright {
  width: 1140px;
  text-align: right;
  font-size: 0.8rem;
  margin: 20px auto 40px auto;
}
/*
	pageTop
-----------------------------------------------------------------------------------------------*/
#pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
#pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(180, 180, 180, 0.8);
  position: relative;
}
#pagetop a::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: 50%;
  left: 50%;
  transform: translateY(-30%) translateX(-50%) rotate(-45deg);
}

/*
	各種ページ共通
-----------------------------------------------------------------------------------------------*/
/*　ヘッダー　*/
.kvheader {
  width: 100%;
  height: 200px;
  position: relative;
}
.kvheader .header {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0.1em;
  padding: 90px 0 0 0;
  text-shadow: 1px 1px 10px rgb(0 0 0 / 10%);
}
/*　パンくず　*/
#olistPan {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding: 0 0 10px 30px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
}
#olistPan li {
  padding: 0 20px 0 0;
  position: relative;
}
#olistPan li:nth-last-of-type(n + 2)::after {
  content: ' ';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%) rotate(45deg);
}
#olistPan li:last-of-type {
  padding: 0;
}
#olistPan li a {
  color: rgba(255, 255, 255, 0.8);
}
#olistPan li:last-of-type a,
#olistPan li.none a {
  text-decoration: none;
  pointer-events: none;
}

/*
	errorページ
-----------------------------------------------------------------------------------------------*/
.errorPage {
  background: url('../images/kv_top_01_pc.png') no-repeat top center / cover;
  height: 500px;
}
.errorPageIn {
  width: 1060px;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 140px 0 0 0;
  margin: 0 auto;
}
.errorPageIn .tit {
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 110%;
  margin: 0 0 40px 0;
}
.errorPageIn .tit span {
  display: block;
  font-size: 2.6rem;
}
.errorPageIn .txt {
  font-size: 1.6rem;
  line-height: 200%;
}
.navigation {
  margin-top: 20px;
}

@media screen and (max-width: 812px) {
  body {
    -webkit-text-size-adjust: 100%;
    font-size: 1.4rem;
  }
  img {
    width: 100%;
  }
  p {
    line-height: 150%;
    letter-spacing: 0.1rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline-block;
  }

  /*
	common
-----------------------------------------------------------------------------------------------*/
  .ctsArea {
    width: 100%;
    max-width: 550px;
    padding: 0 25px 60px 25px;
  }
  .ctsAreaPlus {
    padding-top: 50px;
  }

  /*　トップh3　*/
  .top_tit_h3 h3 span {
    font-size: 2rem;
    margin: 7px 0 25px 0;
    padding: 12px 0 0 0;
  }
  .top_tit_h3 h3 span::after {
    width: 20px;
    height: 5px;
  }
  .top_tit_h3 h3 img {
    width: auto;
    height: 34px;
  }

  /*　その他ページh2　*/
  .tit_h2 .tit {
    font-size: 2.4rem;
    margin: 0 0 50px 0;
  }

  .txtArea p {
    text-align: justify;
  }
  .btn_sw {
    height: 30px;
    line-height: 30px;
    font-size: 1rem;
    width: 120px;
  }
  .btn_sw a::after {
    right: 10px;
  }
  .btn_sw a:hover::after {
    border-top: solid 1px #37a0dc;
    border-right: solid 1px #37a0dc;
    right: 5px;
  }

  /*　テーブルリスト　*/
  .tbllistBase th,
  .tbllistBase td {
    font-size: 1.4rem;
    text-align: justify;
    line-height: 160%;
  }
  .tbllistBase th {
    vertical-align: top;
    width: 80px;
    display: block;
  }
  .tbllistBase th:first-child {
    font-size: 1.6rem;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .tbllistBase th:nth-child(2n),
  .tbllistBase td {
    display: inline-block;
  }
  .tbllistBase th:nth-child(2n) {
    width: 58px;
  }
  .tbllistBase td {
    width: calc(100% - 58px);
    padding: 0 0 0 10px;
  }
  .tbllistBase tbody {
    padding: 15px 0;
  }

  /*　テーブル　*/
  .tblBase th,
  .tblBase td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    text-align: justify;
    line-height: 160%;
    padding: 12px 15px;
  }

  /* お問合せ窓口 */
  .contactBox {
    width: 100%;
    padding: 20px;
  }
  .contactBox h4 {
    font-size: 1.5rem;
  }
  .contactBox p {
    margin: 0 0 15px 0;
  }

  .contactBox p:nth-child(3n) {
    display: block;
    font-size: 1.5rem;
    padding: 10px 5px;
  }

  /*確認ボタン共通*/
  .contactButton .button {
    width: 200px;
    height: 60px;
  }
  .contactButton button {
    font-size: 1.5rem;
    line-height: 60px;
  }
  .contactButton .button::after {
    width: 10px;
    height: 10px;
    right: 10px;
  }

  /*
	header
-----------------------------------------------------------------------------------------------*/
  .headerBox {
    min-width: auto;
    width: 100%;
    height: 50px;
  }

  /* gnav */
  .listGnav {
    margin: 0 0 40px 0;
  }
  .listGnav li {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .listGnav a {
    font-size: 1.4rem;
  }
  .listGnav a::after {
    transition: all 0.05s ease;
  }
  .listGnav .listIn {
    margin: 6px 0 0 10px;
  }
  .listGnav .listIn li {
    margin: 0 0 10px 0;
  }
  .listGnav .listIn li a {
    font-size: 1.2rem;
  }
  .gnav {
    width: 250px;
    padding: 50px 0 0 40px;
  }

  /* gNavOpen */
  #gNavOpen {
    width: 50px;
    height: 50px;
    box-shadow: none;
    outline: none;
    transition: all 0.1s;
  }
  #gNavOpen .gNavOpenBox {
    width: 20px;
    height: 16px;
  }
  #gNavOpen .line {
    width: 20px;
  }

  /*
	kvWrapper
-----------------------------------------------------------------------------------------------*/
  .kvWrapper {
    height: 100%;
    min-height: initial;
  }
  #wrapper .kitasplogo {
    width: 105px;
    height: auto;
    top: 10px;
    left: 10px;
  }

  .kvWrapper .txtArea {
    width: 100%;
  }
  .kvWrapper .txtArea .tit img {
    max-width: 280px;
    height: auto;
    bottom: 20px;
  }
  .kvWrapper .txtArea .tit,
  .kvWrapper .txtArea .txt {
    width: 100%;
    left: 0;
    padding: 0 40px;
  }
  .kvWrapper .txtArea_top {
    background: url('../images/kv_top_01_sp.png') no-repeat top center / cover;
    height: 340px;
  }
  .kvWrapper .txtArea_bottom {
    background: url('../images/kv_top_02_sp.png') no-repeat top center / cover;
    height: 340px;
  }
  .kvWrapper .txtArea .txt p {
    font-size: 1.5rem;
    line-height: 160%;
    top: 20px;
    text-align: justify;
  }

  /* スクロールバー */
  .scroll {
    font-size: 1rem;
    bottom: -20px;
    left: 50%;
    transform: rotate(-90deg) translateY(-160px);
  }
  .scroll::after {
    width: 0;
    height: 1px;
    top: 15px;
    right: -3px;
  }
  .scroll span {
    margin: 0 0 0 -3px;
  }

  /*
	about_newsWrapper
-----------------------------------------------------------------------------------------------*/
  /* 会社概要エリア */
  .about_newsWrapper {
    display: block;
    width: 100%;
  }
  .about_newsWrapper .flexBox {
    display: block;
    padding: 60px 25px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .about_newsWrapper .btnArea {
    margin: 0;
    height: 100%;
  }
  .aboutArea,
  .newsArea {
    width: 100%;
  }
  .aboutArea {
    padding: 0;
  }
  .aboutArea p {
    line-height: 180%;
    margin: 0 0 30px 0;
    text-align: justify;
  }
  .aboutArea .btnArea {
    display: block;
    width: 100%;
  }

  /* Newsエリア */
  .newsArea {
    padding: 0;
  }
  .newsArea .cat {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
  }
  .newsArea .cat a {
    background-color: #e4e4e4;
    padding: 2px 8px;
    margin: 0 10px 0 0;
  }
  .newsArea h4 {
    font-weight: bold;
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #cdd7d7;
  }
  .newsArea .txt {
    margin: 0 0 40px 0;
    text-align: justify;
  }

  /* 共通ボタン */
  .btn {
    display: block;
  }
  .btn::before {
    width: 10px;
    height: 10px;
    bottom: 6px;
    right: 6px;
    border-top: 10px solid transparent;
  }
  .btn::after {
    display: none;
  }
  .btn a {
    display: block;
    line-height: 50px;
  }

  /* 会社概要・お知らせ共通ボタン */
  .aboutArea .btn,
  .newsArea .btn {
    height: 50px;
    margin: 0 auto;
  }

  /* 会社概要ボタン */
  .aboutArea .btn {
    margin-bottom: 15px;
  }
  .aboutArea .btn::before {
    border-right: 10px solid #ffffff;
  }

  /* お知らせボタン */
  .newsArea .btn::before {
    border-right: 10px solid #333333;
  }
  .newsArea .btn:hover::before {
    border-right: 10px solid #ffffff;
  }
  .newsArea .btn a {
  }

  /* GO-GLOBALボタン共通 */
  .global_btn {
    display: block;
    margin: 0 auto;
  }

  /* GO-GLOBALボタン */
  .aboutArea .global_btn {
    width: 220px;
    height: 50px;
  }
  .aboutArea .global_btn a img {
    width: auto;
    height: 28px;
    padding: 8px 0 0 0;
  }
  .aboutArea .global_btn p {
    font-size: 1rem;
    margin: 2px 0 0 0;
    line-height: 100%;
  }

  /*
	solution
-----------------------------------------------------------------------------------------------*/
  .solutionArea {
    padding: 0;
  }
  .solutionArea .scrollbk {
    background: url(../images/solution_bk_img_sp.png) no-repeat center top /
      cover;
    height: 230px;
    top: 0;
    right: auto;
  }
  .solutionAreaIn {
    display: block;
    width: 100%;
    padding: 60px 25px;
  }
  .solutionAreaIn h3 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .solutionAreaIn ul {
    padding: 10px 0 0 0;
  }
  .solutionAreaIn ul li {
    display: block;
    margin: 0 0 40px 0;
  }
  .solutionAreaIn ul li:last-of-type {
    margin: 0;
  }
  .solutionAreaIn ul li .bkround {
    width: 130px;
    height: 130px;
    margin: 0 auto 30px auto;
  }
  .solutionAreaIn ul li img {
    width: 80px;
    height: auto;
  }
  .solutionAreaIn ul li .txtArea {
    max-width: 500px;
    margin: 0 auto;
  }

  /*
	our_valueArea
-----------------------------------------------------------------------------------------------*/
  .our_valueArea {
    padding: 60px 25px;
  }
  .our_valueAreaIn {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 500px;
  }
  .our_valueAreaIn > div {
    border-right: none;
    border-bottom: 1px solid #cdd7d7;
  }
  .our_valueAreaIn > div:nth-child(n + 2) {
    padding: 0 0 30px 0;
  }
  .our_valueAreaIn > div:nth-child(n + 4) {
    border-bottom: 1px solid #cdd7d7;
  }
  .our_valueAreaIn > div:last-child {
    border-bottom: none;
    padding: 0;
  }
  .our_valueAreaIn div h3 {
    padding: 0;
  }
  .our_valueAreaIn .tit_h3 {
    display: block;
  }
  .our_valueAreaIn .bkimg {
    width: 80%;
    max-width: 260px;
    margin: 20px auto 0 auto;
  }
  .our_valueAreaIn .txtArea {
    padding: 10px 0 0 0;
  }

  /*
	case_study
-----------------------------------------------------------------------------------------------*/
  .case_studyAreaIn {
    width: 100%;
    max-width: 550px;
    padding: 60px 25px;
  }
  .case_titArea {
    margin-bottom: 0;
  }
  .swiperBox {
    padding: 0;
  }

  /* swiper button */
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
    background-color: rgba(120, 120, 120, 0.8);
    top: 50%;
  }
  .swiper-button-prev {
    left: -18px;
  }
  .swiper-button-next {
    right: -18px;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  .swiper-button-prev:after {
    left: 3px;
  }
  .swiper-button-next:after {
    right: 3px;
  }

  /* swiper pagination */

  /* 事例3つでspのみ表示 */
  .swiper-button-prev,
  .swiper-button-next,
  .swiper-pagination {
    display: -ms-flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
  }

  /* 事例3つ以上 */
  .swiper-pagination {
    width: 100%;
    position: static;
    margin: 20px auto 0 auto;
  }
  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active {
    width: 20px;
    height: 6px;
    margin: 0 4px;
    border-radius: 0;
  }
  .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.4;
  }
  .swiper-pagination-bullet-active {
    opacity: 0.8;
  }

  /* listSlide */
  .listSlide .txtArea {
    padding: 20px 30px 20px 30px;
  }
  .listSlide li figure {
    width: 100%;
    height: auto;
  }
  .listSlide li .case {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
  .listSlide li .case span {
    font-size: 2.5rem;
  }
  .listSlide .caseCat .cat {
    font-size: 1.3rem;
  }
  .listSlide .listbtn {
    font-size: 1rem;
  }
  .listSlide .listbtn::before {
    width: 30px;
    height: 1px;
    top: 10px;
    right: 60px;
  }
  .listSlide .listbtn::after {
    width: 8px;
    height: 1px;
    top: 7px;
    right: 60px;
  }

  /*
	footer
-----------------------------------------------------------------------------------------------*/
  footer {
    padding: 0 0 30px 0;
  }

  .goglobalArea {
    padding: 0 0 40px 0;
    margin: 35px 0 0 0;
  }
  .goglobalAreaIn {
    display: block;
    width: 100%;
    padding: 0;
  }
  .goglobalAreaIn ul {
    display: block;
  }
  .goglobalAreaIn ul li {
    width: 220px;
    height: 50px;
    margin: 0 auto 15px auto;
  }
  .goglobalAreaIn ul li:last-of-type {
    margin: 0 auto 0 auto;
  }
  .goglobalAreaIn ul li a {
    line-height: 50px;
  }
  .goglobalAreaIn .logo {
    width: 220px;
    margin: 0 auto 20px auto;
  }

  /* 代理店一覧_代理店募集共通ボタン */
  .goglobalAreaIn ul .global_btn::before {
    height: 10px;
    width: 10px;
    right: 50px;
  }

  /* 代理店専用ページボタン */
  .goglobalAreaIn .btn::before {
    border-right: 10px solid #0f3b80;
  }
  .goglobalAreaIn .btn:hover::before {
    border-right: 10px solid #ffffff;
  }

  /* footerBoxIn */
  .footerBoxIn {
    display: block;
    width: 100%;
    max-width: 550px;
    padding: 0 25px;
    margin: 35px auto 0 auto;
  }

  /* footerL */
  .footerL h3 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
  .footerL p {
    font-size: 1.2rem;
  }

  .footerL .snsArea {
    justify-content: left;
    margin: 30px auto 0 auto;
  }
  .snsArea li {
    margin: 0 15px 0 0;
  }

  /* footerR */
  .footerR {
    display: none;
  }
  #copyright {
    width: 100%;
    max-width: 500px;
    text-align: left;
    font-size: 0.8rem;
    margin: 20px auto 0 auto;
    padding: 0 0 0 25px;
  }

  /*
	errorページ
-----------------------------------------------------------------------------------------------*/
  .errorPage {
    background: url('../images/kv_top_01_sp.png') no-repeat top center / cover;
    height: 370px;
  }
  .errorPageIn {
    width: 100%;
    padding: 90px 0 0 0;
  }
  .errorPageIn .tit {
    font-size: 3rem;
    line-height: 120%;
    margin: 0 0 30px 0;
  }
  .errorPageIn .tit span {
    line-height: 110%;
    font-size: 2.2rem;
  }
  .errorPageIn .txt {
    font-size: 1.6rem;
    line-height: 180%;
  }

  /*
	pageTop
-----------------------------------------------------------------------------------------------*/
  #pagetop {
    bottom: 10px;
    right: 10px;
  }
  #pagetop a {
    width: 40px;
    height: 40px;
  }
  #pagetop a::after {
    width: 12px;
    height: 12px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }

  /*
		各種ページ共通
	-----------------------------------------------------------------------------------------------*/
  /*　ヘッダー　*/
  .kvheader {
    height: 90px;
  }
  .kvheader .header {
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding: 50px 0 0 0;
  }
  /*　パンくず　*/
  #olistPan {
    display: none;
  }

  /* sp横画面調整 */
  @media screen and (min-width: 560px) and (max-width: 736px) {
    .kvWrapper {
      height: 400px;
    }
    .kvWrapper .txtArea_top {
      background: url('../images/kv_top_01_pc.png') no-repeat top center / cover;
      height: 200px;
    }
    .kvWrapper .txtArea_bottom {
      background: url('../images/kv_top_02_pc.png') no-repeat top center / cover;
      height: 200px;
    }
    .gnav {
      width: 240px;
      padding: 50px 0 60px 40px;
      overflow-y: scroll;
    }
    .kvWrapper .txtArea {
      max-width: 100%;
    }
    .kvWrapper .txtArea h2,
    .kvWrapper .txtArea .txt {
      padding: 0 0 0 60px;
    }
    .kvWrapper .txtArea h2 {
      bottom: 20px;
    }
    .kvWrapper .txtArea .txt {
      top: 20px;
    }
    /* スクロールバー */
    .scroll {
      bottom: 100px;
      left: 30px;
    }
    .aboutArea .btnArea {
      display: flex;
      display: -ms-flex;
    }
    .swiperBox {
      padding: 0;
    }
    .swiper-button-prev {
      left: -35px;
    }
    .swiper-button-next {
      right: -35px;
    }
    /* listSlide */
    .listSlide .txtArea {
      padding: 20px 15px 20px 15px;
    }
    /* footerR */
    #copyright {
      padding: 0;
    }
  }
}
/* ipad画面調整 */
@media screen and (min-width: 737px) and (max-width: 812px) {
  .kvWrapper {
    height: 1000px;
  }
  .kvWrapper .txtArea_top {
    height: 500px;
  }
  .kvWrapper .txtArea_bottom {
    height: 500px;
  }
  .kvWrapper .txtArea h2 img {
    max-width: 380px;
    bottom: 30px;
  }
  .kvWrapper .txtArea {
    max-width: 100%;
  }
  .kvWrapper .txtArea h2,
  .kvWrapper .txtArea .txt {
    padding: 0 0 0 60px;
  }
  .scroll {
    bottom: -140px;
  }
} /* ipadpro画面調整 */
@media screen and (min-width: 1024px) and (max-width: 1026px) {
  .scroll {
    bottom: -250px;
  }
}

/*
  GO-GLOBAL関係ナビゲーション
-----------------------------------------------------------------------------------------------*/
.goglobalNav ul {
  display: flex;
  justify-content: space-around;
  padding: 10px 30px;
  background-color: #37a0dc;
  color: #FFFFFF;
}

.goglobalNav ul li {
  margin: 0 20px;
  font-size: 1.8rem;
}

.goglobalNav ul li a {
  color: #FFFFFF;
}

.goglobalNav ul li a::before {
  content: '▶';
}

@media screen and (max-width: 812px) {
  .goglobalNav {
    display: none;
  }
}
