@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
html {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 62.5%;
  font-weight: 350;
  color: #35383B;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #000; text-decoration: none; }
a:visited { color: #000; text-decoration: underline; }
a:hover   { color: #000; text-decoration: underline; }
a:active  { color: #000; text-decoration: underline; }

/*==========================================
 body
===========================================*/

html {
  background: #FFF;
  overflow: auto;
}
body {
  overflow: hidden;
	min-width: 1200px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}

/*==========================================
 clearfix
===========================================*/
.clearfix {
	zoom: 1;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: #FFF;
}
body.top header {
  background-color: rgba(0, 0, 0, 0);
}
header #header {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
header #headerLogoArea {
  position: absolute;
  left: 0;
  top: 25px;
}
header #headerLogoArea h1 img {
  width: 172px;
  height: 44px;
}

header #header_SpIcon {
  display: none;
}
header #sideMenu {
  display: none;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  header {
    height: 90px;
  }
  header #header {
    width: 100%;
    margin: 0;
  }
  header #headerLogoArea {
    left: 5%;
    top: 25px;
  }
  header #header_SpIcon {
    display: block;
    z-index: 2100;
    position: absolute;
    right: 5%;
    top: 23px;
    width: 36px;
    height: 50px;
    padding: 14px 0 0;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger {
    position: relative;
    width: 36px;
    height: 22px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #44AF35;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  header #sideMenu {
    display: block;
    z-index: 2000;
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100vh;
    background-color: #FFF;
  }
  header #sideMenu > ul {
    width: 100%;
    margin: 90px 0 0;
    border-top: 1px solid #CCCCCC;
    list-style-type: none;
  }
  header #sideMenu > ul li {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #CCCCCC;
  }
  header #sideMenu > ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 30px 0;
    box-sizing: border-box;
    font-size: 2.0rem;
  }
  header #sideMenu > ul li:nth-child(5) a::after {
    position: absolute;
    left: 201px;
    top: 50%;
    width: 16px;
    height: 15px;
    margin: -7px 0 0;
    background-image: url("../img/icon02.svg");
    background-size: cover;
    content: "";
  }
  header #sideMenu > ul li a span {
    display: block;
    padding: 5px 0 0;
    font-size: 1.2rem;
  }
  header #sideMenu > ul li.active a,
  header #sideMenu > ul li a:hover {
    text-decoration: none;
    background-color: #DAEFD7;
  }
  header #overay {
    z-index: 1500;
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
  }
}


/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  /* right: 0; */
  right: 200px;
  top: 40px;
}
header #headerGlobalArea ul {
  display: flex;
  justify-content: space-between;
  width: 480px;
}
header #headerGlobalArea li {
}
header #headerGlobalArea li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
}
header #headerGlobalArea li a:hover,
header #headerGlobalArea li.active a {
  text-decoration: none;
  color: #44AF35;
  text-decoration: underline;
}
header #headerGlobalArea li:nth-child(4) a::after {
  position: absolute;
  right: -25px;
  top: 50%;
  width: 16px;
  height: 15px;
  margin: -7px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  header #headerGlobalArea {
    display: none;
  }
}


header #headerGlobalLang {
  position: absolute;
  right: 0;
  top: 33px;
  width: 120px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #dcdcdc;
  background-color: #FFF;
}
header #headerGlobalLang a.langBot {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0 0 35px;
  box-sizing: border-box;
  font-size: 1.5rem;
}
header #headerGlobalLang a.langBot::before {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0;
  background-image: url("../img/icon_lang.svg");
  background-size: 100%;
  content: "";
}
header #headerGlobalLang a:hover {
  color: #44af35;
}
header #headerGlobalLang .open {
  display: none;
  position: absolute;
  left: 0;
  top: -1px;
  width: 120px;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  background-color: #FFF;
  box-sizing: border-box;
}
header #headerGlobalLang .open ul {
  list-style-type: none;
}
header #headerGlobalLang .open ul li {
  margin: 0 0 15px;
}
header #headerGlobalLang .open ul li:nth-child(1) a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0 0 34px;
  box-sizing: border-box;
  font-size: 1.5rem;
}
header #headerGlobalLang .open ul li:nth-child(1) a::before {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -5px 0 0;
  background-image: url("../img/icon_lang.svg");
  background-size: 100%;
  content: "";
}
header #headerGlobalLang .open ul li:nth-child(2) a,
header #headerGlobalLang .open ul li:nth-child(3) a {
  padding: 0 0 0 17px;
  font-size: 1.4rem;
}
header #headerGlobalLang .open ul li a:hover {
  color: #44af35;
}

header #headerGlobalLang_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  header #headerGlobalLang {
    display: none;
  }

  header #headerGlobalLang_Sp {
    display: block;
    position: absolute;
    left: 30px;
    top: 33px;
    width: 120px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #dcdcdc;
    background-color: #FFF;
  }
  header #headerGlobalLang_Sp a.langBot {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 0 0 35px;
    box-sizing: border-box;
    font-size: 1.5rem;
  }
  header #headerGlobalLang_Sp a.langBot::before {
    position: absolute;
    left: 13px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0;
    background-image: url("../img/icon_lang.svg");
    background-size: 100%;
    content: "";
  }
  header #headerGlobalLang_Sp a:hover {
    color: #44af35;
  }
  header #headerGlobalLang_Sp .open {
    display: none;
    position: absolute;
    left: 0;
    top: -1px;
    width: 120px;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    background-color: #FFF;
    box-sizing: border-box;
  }
  header #headerGlobalLang_Sp .open ul {
    list-style-type: none;
  }
  header #headerGlobalLang_Sp .open ul li {
    margin: 0 0 15px;
  }
  header #headerGlobalLang_Sp .open ul li:nth-child(1) a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 0 0 34px;
    box-sizing: border-box;
    font-size: 1.5rem;
  }
  header #headerGlobalLang_Sp .open ul li:nth-child(1) a::before {
    position: absolute;
    left: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -5px 0 0;
    background-image: url("../img/icon_lang.svg");
    background-size: 100%;
    content: "";
  }
  header #headerGlobalLang_Sp .open ul li:nth-child(2) a,
  header #headerGlobalLang_Sp .open ul li:nth-child(3) a {
    padding: 0 0 0 17px;
    font-size: 1.4rem;
  }
  header #headerGlobalLang_Sp .open ul li a:hover {
    color: #44af35;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/
#footerApp {
  width: 470px;
  margin: 100px auto 50px;
}
#footerApp .column_L {
  float: left;
  width: 198px;
}
#footerApp .column_R {
  float: right;
  width: 218px;
}
#footerApp img {
  width: 100%;
  height: auto;
}
#footerApp p.footerAppLink {
  position: relative;
  display: block;
  width: 352px;
  margin: 30px auto 0;
  font-size: 1.6rem;
  text-align: center;
}
#footerApp p.footerAppLink::after {
  position: absolute;
  right: -18px;
  top: 4px;
  display: block;
  width: 12px;
  height: 11px;
  background-image: url(../img/icon01.svg);
  background-size: 100% 100%;
  content: "";
}
footer {
  width: 100%;
  min-height: 300px;
  padding: 60px 0 0;
  box-sizing: border-box;
  background-color: #606060;
}
footer #footerBody {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
footer #footerBody h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 167px;
}
footer #footerBody h2 img {
  width: 100%;
  height: auto;
}
footer #footerBody #footerLink {
  position: absolute;
  right: 0;
  top: 0;
}
footer #footerBody #footerLink ul {
  list-style-type: none;
}
footer #footerBody #footerLink ul li {
  margin: 0 0 15px;
  text-align: right;
}
footer #footerBody #footerLink ul li a {
  font-size: 1.2rem;
  color: #FFF;
}
footer #footerBody #footerCopy {
  position: absolute;
  right: 0;
  top: 167px;
}
footer #footerBody #footerCopy small {
  font-size: 1.2rem;
  color: #FFF;
}

/* スマホ用 */
@media only screen and (max-width: 767px) {
  #footerApp {
    width: 90%;
    margin: 50px 5% 30px;
  }
  #footerApp .column_L {
    width: 48%;
  }
  #footerApp .column_R {
    width: 48%;
  }
  #footerApp img {
    width: 100%;
    height: auto;
  }
  #footerApp p.footerAppLink {
    width: 308px;
    font-size: 1.3rem;
  }
  #footerApp p.footerAppLink::after {
    right: -5px;
    top: 2px;
  }
  footer {
    min-height:inherit;
    padding: 35px 0 0;
  }
  footer #footerBody {
    position: inherit;
    width: 90%;
    margin: 0 5%;
      text-align: center;
  }
  footer #footerBody h2 {
    position: inherit;
    left: 0;
    top: 0;
    width: 167px;
      margin:0 auto 4em;
  }
  footer #footerBody #footerLink {
      position: inherit;
      left: 0;
      right:auto;
      padding-bottom: 4em;
    }
    footer #footerBody #footerLink ul li {
    text-align: center;
        padding-bottom: 1em;
    }
  footer #footerBody #footerCopy {
    position: inherit;
      left: 0;
      right:auto;
      padding-bottom: 4em;
  }
}





/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 500px;
  padding: 90px 0 0 0;
}
#mainContents section.w_full {
  width: 100%;
  margin: 0;
}
#mainContents section.w_1200 {
  width: 1200px;
  margin: 0 auto;
}
#mainContents section.w_1080 {
  width: 1080px;
  margin: 0 auto;
}
#mainContents section.w_825 {
  width: 825px;
  margin: 0 auto;
}
#mainContents section.bt_Green01 {
  background-color: #F8FAF5;
}
#mainContents section.bt_Green03 {
  background-color: #44AF35;
}

/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 1500px;
    padding: 98px 0 0 0;
  }
  #mainContents section.w_1200,
  #mainContents section.w_1080,
  #mainContents section.w_825 {
    width: 90%;
    margin: 0 5%;
  }
  #mainContents section.w_3no {
    width: 100%;
    margin: 0;
  }
}

/* 余白調整  /////////////////////////////*/
#mainContents .pt_5 { padding-top: 5px; }
#mainContents .pt_10 { padding-top: 10px; }
#mainContents .pt_20 { padding-top: 20px; }
#mainContents .pt_30 { padding-top: 30px; }
#mainContents .pt_40 { padding-top: 40px; }
#mainContents .pt_50 { padding-top: 50px; }
#mainContents .pt_60 { padding-top: 60px; }
#mainContents .pt_80 { padding-top: 80px; }
#mainContents .pt_100 { padding-top: 100px; }
#mainContents .pt_140 { padding-top: 140px; }
#mainContents .pt_150 { padding-top: 150px; }
#mainContents .pt_400 { padding-top: 400px; }

#mainContents .pb_10 { padding-bottom: 10px; }
#mainContents .pb_20 { padding-bottom: 20px; }
#mainContents .pb_30 { padding-bottom: 30px; }
#mainContents .pb_40 { padding-bottom: 40px; }
#mainContents .pb_50 { padding-bottom: 50px; }
#mainContents .pb_60 { padding-bottom: 60px; }
#mainContents .pb_100 { padding-bottom: 100px; }
#mainContents .pb_200 { padding-bottom: 200px; }
#mainContents .pb_400 { padding-bottom: 400px; }

#mainContents .mt_20 { margin-top: 20px; }
#mainContents .mt_30 { margin-top: 30px; }
#mainContents .mt_40 { margin-top: 40px; }
#mainContents .mt_60 { margin-top: 60px; }

#mainContents .mb_30 { margin-bottom: 30px; }
#mainContents .mb_60 { margin-bottom: 60px; }
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .pt_5 { padding-top: 3px; }
  #mainContents .pt_10 { padding-top: 5px; }
  #mainContents .pt_20 { padding-top: 10px; }
  #mainContents .pt_30 { padding-top: 15px; }
  #mainContents .pt_40 { padding-top: 20px; }
  #mainContents .pt_50 { padding-top: 25px; }
  #mainContents .pt_60 { padding-top: 30px; }
  #mainContents .pt_80 { padding-top: 40px; }
  #mainContents .pt_100 { padding-top: 50px; }
  #mainContents .pt_140 { padding-top: 70px; }
  #mainContents .pt_150 { padding-top: 75px; }
  #mainContents .pt_400 { padding-top: 200px; }

  #mainContents .pb_10 { padding-bottom: 5px; }
  #mainContents .pb_20 { padding-bottom: 10px; }
  #mainContents .pb_30 { padding-bottom: 15px; }
  #mainContents .pb_40 { padding-bottom: 20px; }
  #mainContents .pb_50 { padding-bottom: 25px; }
  #mainContents .pb_60 { padding-bottom: 30px; }
  #mainContents .pb_100 { padding-bottom: 50px; }
  #mainContents .pb_200 { padding-bottom: 200px; }
  #mainContents .pb_400 { padding-bottom: 200px; }

  #mainContents .plr_3p { padding-left: 3%; padding-right: 3%; }

  #mainContents .mt_20 { margin-top: 15px; }
  #mainContents .mt_30 { margin-top: 20px; }
  #mainContents .mt_40 { margin-top: 30px; }
  #mainContents .mt_60 { margin-top: 30px; }

  #mainContents .mb_30 { margin-bottom: 20px; }
  #mainContents .mb_60 { margin-bottom: 30px; }
}

/* layout  /////////////////////////////*/
#mainContents .t_center { text-align: center;}


/*==========================================
 共通スクロールフェード
===========================================*/
.fade_off {
  opacity: 0;
  transform: translateY(30px);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}
.fade_on {
  opacity: 1;
  transform: translateY(0px);
}


/*==========================================
 共通タイトル
===========================================*/
#mainContents .titleArea {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}
#mainContents .titleArea h2.topH01 img {
  width: 276px;
  height: auto;
}
#mainContents .titleArea h2.topH02 img {
  width: 134px;
  height: auto;
}
#mainContents .titleArea h2.topH03 img {
  width: 177px;
  height: auto;
}

#mainContents .titleArea .topNewsLink {
  position: absolute;
  left: 750px;
  top: 5px;
}
#mainContents .titleArea .topNewsLink a {
  position: relative;
  font-size: 1.6rem;
}
#mainContents .titleArea .topNewsLink a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .titleArea .topNewsLink a::before {
  position: absolute;
  left: -20px;
  top: 8px;
  width: 8px;
  height: 8px;
  display: block;
  border-top: 1px solid #44AF35;
  border-right: 1px solid #44AF35;
  transform: rotate(45deg);
  content: "";
}

#mainContents .titleAreaSub {
  position: relative;
  width: 1480px;
  height: 210px;
  margin: 0 auto;
}
#mainContents .titleAreaSub h2 {
  position: absolute;
  z-index: 500;
  left: 200px;
  top: 70px;
}
#mainContents .titleAreaSub h2 img {
  width: auto;
  height: 56px;
}
#mainContents .titleAreaSub h2.tokutei_ttl{
  padding-top: 15px;
}
#mainContents .titleAreaSub h2.tokutei_ttl img {
  width: auto;
  height: 38px;
}



#mainContents .titleAreaSub .titleAreaSubBk {
  position: absolute;
  z-index: 400;
  right: 0;
  top: 0;
  width: 200%;
  height: 210px;
  text-align: right;
  background-color: #D8EFD5;
}
#mainContents .titleAreaSub .titleAreaSubBk img.pcView {
  display: inline-block;
  width: auto;
  height: 210px;
}
#mainContents .titleAreaSub .titleAreaSubBk img.spView {
  display: none;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .titleArea {
    width: 100%;
  }
  #mainContents .titleArea h2.topH01 img {
    width: 184px;
    height: auto;
  }
  #mainContents .titleArea .topNewsLink {
    left: auto;
    right: 5%;
    top: 8px;
  }
  #mainContents .titleArea .topNewsLink a {
    font-size: 1.3rem;
  }
  #mainContents .titleArea .topNewsLink a::before {
    top: 6px;
  }

  #mainContents .titleAreaSub {
    position: relative;
    width: 95%;
    height: 153px;
    margin: 0 5% 0 0;
  }
  #mainContents .titleAreaSub h2 {
    left: 5%;
    top: 50%;
    margin: -20px 0 0;
  }
  #mainContents .titleAreaSub.typ01 h2 {
    margin: -58px 0 0;
  }
  #mainContents .titleAreaSub h2 img {
    height: 41px;
  }
  #mainContents .titleAreaSub.typ01 h2 img {
    height: 116px;
  }
  #mainContents .titleAreaSub h2.tokutei_ttl{
    padding-top: 0px;
  }
  #mainContents .titleAreaSub h2.tokutei_ttl img {
    width: auto;
    height: 60px;
  }
  #mainContents .titleAreaSub h2.service_kenshin{
    margin-top: -55px;
  }
  #mainContents .titleAreaSub h2.service_kenshin img {
    width: auto;
    height: 113px;
  }
  #mainContents .titleAreaSub .titleAreaSubBk {
    width: 100%;
    height: 153px;
    text-align: left;
    background-color: #FFF;
  }
  #mainContents .titleAreaSub .titleAreaSubBk img.pcView {
    display: none;
  }
  #mainContents .titleAreaSub .titleAreaSubBk img.spView {
    display: block;
    width: 100%;
    height: auto;
  }
}

#mainContents h3.typ01 {
  font-size: 1.8rem;
}
#mainContents h4.typ01 {
  font-size: 1.6rem;
  font-weight: normal;
}

#mainContents ul.typ01 {
  padding-left: 20px;
  list-style-type: disc
}
#mainContents ul.typ01 li {
  font-size: 1.6rem;
  line-height: 2.0;
}

#mainContents ul.typ02 {
  padding-left: 20px;
  list-style-type: decimal
}
#mainContents ul.typ02 li {
  font-size: 1.6rem;
  line-height: 2.0;
}

/*==========================================
 共通 P
===========================================*/
#mainContents p.f_13 { font-size: 1.3rem; }
#mainContents p.f_14 { font-size: 1.4rem; }
#mainContents p.f_15 { font-size: 1.5rem; }
#mainContents p.f_16 { font-size: 1.6rem; }
#mainContents p.f_18 { font-size: 1.8rem; }
#mainContents p.f_20 { font-size: 2.0rem; }
#mainContents p.f_22 { font-size: 2.2rem; }
#mainContents p.f_24 { font-size: 2.4rem; }
#mainContents p.f_26 { font-size: 2.6rem; }

#mainContents p.fl_14 { line-height: 1.4; }
#mainContents p.fl_16 { line-height: 1.6; }
#mainContents p.fl_18 { line-height: 1.8; }

#mainContents p.center { text-align: center; }
#mainContents p.right { text-align: right; }

#mainContents p.fc_red { color: #B41E1E; }

@media only screen and (max-width: 767px) {
  #mainContents p.f_13 { font-size: 1.1rem; }
  #mainContents p.f_14 { font-size: 1.2rem; }
  #mainContents p.f_15 { font-size: 1.3rem; }
  #mainContents p.f_16 { font-size: 1.4rem; }
  #mainContents p.f_18 { font-size: 1.6rem; }
  #mainContents p.f_20 { font-size: 1.8rem; }
  #mainContents p.f_22 { font-size: 2.0rem; }
  #mainContents p.f_24 { font-size: 2.2rem; }
  #mainContents p.f_26 { font-size: 2.4rem; }
}

/*==========================================
 共通 img
===========================================*/
#mainContents img.img_full {
  width: 100%;
  height: auto;
}

/*==========================================
 共通リンク
===========================================*/
#mainContents .linkType01 {
  width: 100%;
}
#mainContents .linkType01 a {
  display: block;
  width: 340px;
  height: 77px;
  margin: 0 auto;
  padding: 30px 0 0;
  box-sizing: border-box;
  background-color: #44AF35;
  border-radius: 40px;
  font-size: 1.8rem;
  text-align: center;
  color: #FFF;
}
#mainContents .linkType01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .linkType01 a {
    width: 263px;
    height: 60px;
    padding: 22px 0 0;
    font-size: 1.6rem;
  }
}

#mainContents .linkType02 {
  width: 100%;
}
#mainContents .linkType02 a {
  position: relative;
  padding: 0 0 0 20px;
  font-size: 1.3rem;
}
#mainContents .linkType02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .linkType02 a::before {
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 8px;
  display: block;
  border-top: 1px solid #44AF35;
  border-right: 1px solid #44AF35;
  transform: rotate(225deg);
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .linkType02 {
    width: 90%;
    margin:  0 5%;
  }
}

#mainContents .linkType03 {
  width: 100%;
}
#mainContents .linkType03 a {
  display: block;
  width: 400px;
  height: 77px;
  margin: 0 auto;
  padding: 30px 0 0;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 40px;
  font-size: 1.8rem;
  text-align: center;
  color: #44AF35;
}
#mainContents .linkType03 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .linkType03 p{
    text-align: center;
    font-size: 14px;
    color:#fff;
    margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  #mainContents .linkType03 a {
    width: 263px;
    height: 60px;
    padding: 22px 0 0;
    font-size: 1.6rem;
  }
}

#mainContents .linkType04 {
  width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .linkType04 a {
  display: block;
  width: 400px;
  height: 77px;
  margin: 0 auto;
  padding: 30px 0 0;
  box-sizing: border-box;
  background-color: #44AF35;
  border-radius: 40px;
  font-size: 1.8rem;
  text-align: center;
  color: #FFF;
}
#mainContents .linkType04 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .linkType04 {
    width: 263px;
    margin: 0 auto;
  }
  #mainContents .linkType04 a {
    width: 263px;
    height: 60px;
    margin: 0 0 20px;
    padding: 22px 0 0;
    font-size: 1.6rem;
  }
}


/*==========================================
 共通レイアウト
===========================================*/
#mainContents .columnTyp01 {
  width: 100%;
}
#mainContents .columnTyp01 .column_L {
  float: left;
  width: 540px;
}
#mainContents .columnTyp01 .column_R {
  float: right;
  width: 525px;
}
#mainContents .columnTyp01 img {
  width: 100%;
  height: auto;
}


/*==========================================
 共通表組み
===========================================*/
#mainContents .table_typ01 {
  width: 100%;
}
#mainContents .table_typ01 table {
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
}
#mainContents .table_typ01 table tr {
  border-top: 1px solid #E6E6E6;
}
#mainContents .table_typ01 table tr th {
  width: 122px;
  padding: 20px 5px;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
  line-height: 1.8;
}
#mainContents .table_typ01 table tr td {
  padding: 20px 20px;
  font-size: 1.4rem;
  background-color: #FFF;
  vertical-align: middle;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  #mainContents .table_typ01 {
    padding: 20px 0 30px;
  }
  #mainContents .table_typ01 table tr th {
    width: 95px;
    padding: 10px 15px;
    font-size: 1.3rem;
  }
  #mainContents .table_typ01 table tr td {
    padding: 10px 10px;
    font-size: 1.3rem;
  }
}


#mainContents .table_set dl{
    *zoom : 1;
}
#mainContents .table_set dl:after{
    content : "";
    display : block;
    clear   : both;
}

#mainContents .table_set {
    border-top: 1px solid #E6E6E6;
    font-size: 1.6rem;
    line-height: 1.8;
}
#mainContents .table_set dl {
  border-bottom: 1px solid #E6E6E6;
}
#mainContents .table_set dl.base_color {
    background-color: #f4faf3;
}
#mainContents .table_set dl dt {
  width: 25%;
  float: left;
  padding: 1em 0 1em 0.5em;
  font-weight: bold;
}
#mainContents .table_set dl dd {
  width: 70%;
    float:right;
    padding: 1em 0;
}
#mainContents .table_set dl dd ul{
    list-style: disc;
    margin-left: 1.5em;
}
#mainContents .table_set dl dd ul li{

}
#mainContents .table_set dl dd small{
    font-size: 12px;
}

@media only screen and (max-width: 767px) {
  #mainContents .table_set {

  }
  #mainContents .table_set dl dt {
    width: 100%;
    float: none;
    padding: 0.5em;
    box-sizing: border-box;
  }
  #mainContents .table_set dl dd {
    width: 100%;
    float: none;
padding: 0 0.5em 0.5em;
    box-sizing: border-box;
  }
}


/*==========================================
 ページネーションのスタイル
===========================================*/
#mainContents #pagination {
  margin: 50px 0 0;
}
#mainContents #pagination ul {
  text-align: center;
}
#mainContents #pagination ul li {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  vertical-align: middle;
  display: inline-block;
}
#mainContents #pagination ul li a,
#mainContents #pagination ul li span {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 5px 0 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  display: block;
  text-decoration: none;
}
#mainContents #pagination ul li span {
  color: #44AF35;
}
#mainContents #pagination ul li span::before {
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 20px;
  height: 1px;
  margin: 0 0 0 -10px;
  background-color: #44AF35;
  content: "";
}
#mainContents #pagination ul li a:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:hover,
#mainContents #pagination ul li a.next:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:before {
  content: '';
  height: 7px;
  width: 7px;
  display: block;
  border: 2px solid #666666;
  border-left-width: 0;
  border-top-width: 0;
  position: absolute;
  top: 50%;
  left: 14px;
  margin: -6px 0 0 0;
  transform: rotate(-225deg);
}
#mainContents #pagination ul li a.next:after {
  position: absolute;
  top: 50%;
  left: 7px;
  height: 7px;
  width: 7px;
  display: block;
  border: 2px solid #666666;
  border-left-width: 0;
  border-top-width: 0;
  margin: -6px 0 0 0;
  transform: rotate(-45deg);
  content: "";
}


/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents #pagination {
    padding: 0 0 30px;
  }
  #mainContents #pagination ul li {
    width: 40px;
    height: 40px;
    margin: 0 2px;
  }
  #mainContents #pagination ul li a,
  #mainContents #pagination ul li span {
    width: 40px;
    height: 40px;
    padding: 12px 0 5px 0;
    font-size: 16px;
  }
  #mainContents #pagination ul li a.prev:before {
    height: 7px;
    width: 7px;
    left: 15px;
    margin: -4px 0 0 0;
  }
  #mainContents #pagination ul li a.next:after {
    height: 7px;
    width: 7px;
    left: 10px;
    margin: -4px 0 0 0;
  }
}



/*==========================================
 Top
===========================================*/
#mainContents #topMvArea {
  position: relative;
  width: 1480px;
  height: 800px;
  margin: -98px auto 0;
}
#mainContents #topMvArea #topMv {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 800px;
}
#mainContents #topMvArea #topMv img {
  width: 100%;
  height: auto;
}
#mainContents #topMvArea #topMvSp {
  display: none;
}
#mainContents #topMvArea .bx-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
#mainContents #topMvArea .bx-wrapper .bx-pager {
  position: absolute !important;
  left: 50% !important;
  bottom: 25px !important;
  width: 1200px !important;
  margin: 0 0 0 -600px !important;
  text-align: right !important;
}
#mainContents #topMvArea .bx-wrapper .bx-pager.bx-default-pager a {
  background: #FFF !important;
  border: 1px solid #FFF !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 10px !important;
  -moz-border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}
#mainContents #topMvArea .bx-wrapper .bx-pager.bx-default-pager a:hover,
#mainContents #topMvArea .bx-wrapper .bx-pager.bx-default-pager a.active,
#mainContents #topMvArea .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #44AF35 !important;
}
#mainContents .corner-circle-img {
  border-bottom-right-radius: 70px;
}


/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents #topMvArea {
    width: 100%;
    height: auto;
  }
  #mainContents #topMvArea #topMv {
    display: none;
  }
  #mainContents #topMvArea #topMvSp {
    display: block;
    opacity: 0;
    width: 100%;
    height: auto;
  }
  #mainContents #topMvArea #topMvSp img {
    width: 100%;
    height: auto;
  }
  #mainContents #topMvArea .bx-wrapper .bx-pager {
    width: 100% !important;
    margin: 0 0 0 -50% !important;
    text-align: center !important;
  }

  #mainContents #topMvText {
    position: relative;
    z-index: 900;
    width: 280px;
    margin: 0 auto;
  }
  #mainContents #topMvText img {
    width: 100%;
    height: auto;
  }
}

#mainContents .topType01 {
  width: 1197px;
  margin: 0 auto;
}
#mainContents .topType01 .column {
  float: left;
  width: 270px;
  margin: 0 39px 0 0;
}
#mainContents .topType01 .column:nth-child(4) {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #mainContents .topType01 {
    width: 270px;
    margin: 0 auto;
  }
  #mainContents .topType01 .column {
    float: none;
    width: 270px;
    margin: 0;
  }
  #mainContents .topType01 .bx-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
  }
  #mainContents .topType01 .bx-wrapper .bx-pager {
    position: absolute !important;
    bottom: -40px !important;
  }
  #mainContents .topType01 .bx-wrapper .bx-pager.bx-default-pager a {
    background: #FFF !important;
    border: 1px solid #999999 !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 10px !important;
    -moz-border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }
  #mainContents .topType01 .bx-wrapper .bx-pager.bx-default-pager a:hover,
  #mainContents .topType01 .bx-wrapper .bx-pager.bx-default-pager a.active,
  #mainContents .topType01 .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #44AF35 !important;
  }
}



#mainContents .topType02 {
  width: 100%;
  margin: 0 auto;
}
#mainContents .topType02 .column_L {
  float: left;
  width: 426px;
}
#mainContents .topType02 .column_R {
  position: relative;
  float: right;
  width: 580px;
}
#mainContents .topType02 .column_R img {
  position: relative;
  z-index: 800;
}
#mainContents .topType02 .column_R .topApp01 {
  position: absolute;
  left: -127px;
  bottom: -30px;
}
#mainContents .topType02 .column_R .topAppText01 {
  position: absolute;
  left: -350px;
  bottom: -30px;
}
#mainContents .topType02 .column_R .topApp03 {
  position: absolute;
  left: -127px;
  bottom: -20px;
}
#mainContents .topType02 .column_R .topAppText03 {
  position: absolute;
  left: -290px;
  bottom: -30px;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .topType02 {
    width: 100%;
    margin: 0;
  }
  #mainContents .topType02 .column_L {
    float: none;
    width: 100%;
  }
  #mainContents .topType02 .column_R {
    float: none;
    width: 100%;
    height: 367px;
    margin: 0 0 120px;
  }
  #mainContents .topType02 .column_R img {
    width: auto;
    height: 367px;
  }
  #mainContents .topType02 .column_R .topApp01 {
    position: absolute;
    left: 10px;
    bottom: -80px;
  }
  #mainContents .topType02 .column_R .topApp01 img {
    width: 137px;
    height: auto;
  }
  #mainContents .topType02 .column_R .topAppText01 {
    position: absolute;
    left: 170px;
    bottom: -80px;
  }
  #mainContents .topType02 .column_R .topApp03 {
    position: absolute;
    left: 10px;
    bottom: -80px;
  }
  #mainContents .topType02 .column_R .topApp03 img {
    width: 137px;
    height: auto;
  }
  #mainContents .topType02 .column_R .topAppText03 {
    position: absolute;
    left: 170px;
    bottom: -80px;
  }
}

#mainContents .topType03 {
  width: 100%;
  margin: 0 auto;
}
#mainContents .topType03 .column_L {
  position: relative;
  float: left;
  width: 580px;
  height: 706px;
}
#mainContents .topType03 .column_L img.bkImg,
#mainContents .topType03 .column_L picture.bkImg{
  position: absolute;
  z-index: 800;
  right: 0;
  top: 0;
}
#mainContents .topType03 .column_L .topApp02 {
  position: absolute;
  z-index: 800;
  right: -180px;
  bottom: -30px;
}
#mainContents .topType03 .column_L .topAppText02 {
  position: absolute;
  right: -290px;
  bottom: -30px;
}
#mainContents .topType03 .column_R {
  float: right;
  width: 426px;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .topType03 {
    width: 100%;
    margin: 0 auto;
  }
  #mainContents .topType03 .column_L {
    float: none;
    width: 100%;
    height: 367px;
    padding: 0 0 120px;
  }
  #mainContents .topType03 .column_L img.bkImg,
  #mainContents .topType03 .column_L picture.bkImg {
    right: 0;
    top: 0;
    width: auto;
    height: 367px;
  }
  #mainContents .topType03 .column_L .topApp02 {
    position: absolute;
    z-index: 900;
    right: 0;
    bottom: 50px;
  }
  #mainContents .topType03 .column_L .topApp02 img {
    width: 150px;
    height: auto;
  }
  #mainContents .topType03 .column_L .topAppText02 {
    position: absolute;
    right: 170px;
    bottom: 60px;
  }
  #mainContents .topType03 .column_R {
    float: none;
    width: 100%;
  }
}

#mainContents .topType04 {
  position: relative;
  width: 1120px;
  height: 472px;
  margin: 0 auto;
}
#mainContents .topType04 .topPointApp {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 210px;
  height: auto;
  margin: 0 0 0 -105px;
}
#mainContents .topType04 .topPointApp img {
  width: 100%;
  height: auto;
}
#mainContents .topType04 .topPointArea img {
  position: absolute;
  width: 270px;
  height: auto;
  opacity: 0;
}
#mainContents .fade_on .topType04 .topPointArea img {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
#mainContents .topType04 .topPointArea img:nth-child(1) {
  left: 158px;
  top: 0;
  animation-delay: 1.0s;
}
#mainContents .topType04 .topPointArea img:nth-child(2) {
  right: 158px;
  top: 0;
  animation-delay: 2.0s;
}
#mainContents .topType04 .topPointArea img:nth-child(3) {
  left: 0;
  bottom: 0;
  animation-delay: 3.0s;
}
#mainContents .topType04 .topPointArea img:nth-child(4) {
  right: 0;
  bottom: 0;
  animation-delay: 4.0s;
}
@keyframes fadeIn {
  0% {opacity: 0 }
  100% {opacity: 1 }
}

@media only screen and (max-width: 767px) {
  #mainContents .topType04 {
    width: 90%;
    height: auto;
    margin: 0 5%;
  }
  #mainContents .topType04 .topPointApp {
    position: static;
    width: 210px;
    height: auto;
    margin: 0 auto;
  }
  #mainContents .topType04 .topPointArea {
    width: 270px;
    height: 270px;
    margin: 40px auto 50px;
  }
  #mainContents .topType04 .topPointArea #topPointAreaMv {
    opacity: 0;
  }
  #mainContents .topType04 .topPointArea img {
    position: static;
    width: 270px;
    height: 270px;
    opacity: 1;
  }
  #mainContents .topType04 .topPointArea img:nth-child(1) {
    left: 0;
    top: 0;
  }
  #mainContents .topType04 .topPointArea img:nth-child(2) {
    right: 0;
    top: 0;
  }
  #mainContents .topType04 .topPointArea img:nth-child(3) {
    left: 0;
    bottom: 0;
  }
  #mainContents .topType04 .topPointArea img:nth-child(4) {
    right: 0;
    bottom: 0;
  }

  #mainContents .topPointArea .bx-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
  }
  #mainContents .topPointArea .bx-wrapper .bx-pager {
    position: absolute !important;
    bottom: -40px !important;
  }
  #mainContents .topPointArea .bx-wrapper .bx-pager.bx-default-pager a {
    background: #FFF !important;
    border: 1px solid #999999 !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 10px !important;
    -moz-border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }
  #mainContents .topPointArea .bx-wrapper .bx-pager.bx-default-pager a:hover,
  #mainContents .topPointArea .bx-wrapper .bx-pager.bx-default-pager a.active,
  #mainContents .topPointArea .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #44AF35 !important;
  }
}


#mainContents .topNewsArea {
  width: 1200px;
  margin: 0 auto;
}
#mainContents .topNewsArea ul {
  border-top: 1px solid #D6D6D6;
  list-style-type: none;
}
#mainContents .topNewsArea ul li {
  padding: 30px 15px;
  border-bottom: 1px solid #D6D6D6;
}
#mainContents .topNewsArea ul li span {
  position: relative;
  font-size: 1.4rem;
}
#mainContents .topNewsArea ul li span::before {
  position: absolute;
  left: 80px;
  top: 0;
  width: 73px;
  height: 20px;
  padding: 3px 0 0;
  box-sizing: border-box;
  background-color: #9CC715;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
}
#mainContents .topNewsArea ul li span.icon01::before {
  content: "News";
}
#mainContents .topNewsArea ul li span.icon02::before {
  content: "Update";
}
#mainContents .topNewsArea ul li a {
  padding: 0 0 0 100px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .topNewsArea {
    width: 90%;
    margin: 0 5%;
  }
  #mainContents .topNewsArea ul li {
    padding: 20px 0;
  }
  #mainContents .topNewsArea ul li span {
    display: block;
    padding: 0 0 15px;
  }
  #mainContents .topNewsArea ul li span::before {
    top: -3px;
  }
  #mainContents .topNewsArea ul li a {
    padding: 0;
    line-height: 1.4;
  }
}


#mainContents h3.topText01 img {
  width: 351px;
  height: auto;
}
#mainContents h3.topText02 img {
  width: 365px;
  height: auto;
}
#mainContents h3.topText03 img {
  width: 483px;
  height: auto;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents h3.topText01 {
    width: 254px;
    margin: 0 auto;
  }
  #mainContents h3.topText01 img {
    width: 100%;
  }
  #mainContents h3.topText02 {
    width: 264px;
    margin: 0 auto;
  }
  #mainContents h3.topText02 img {
    width: 100%;
  }
  #mainContents h3.topText03 {
    width: 310px;
    margin: 0 auto;
  }
  #mainContents h3.topText03 img {
    width: 100%;
  }
}

#mainContents .maru01::before {
  position: absolute;
  right: -200px;
  top: 550px;
  width: 375px;
  height: 375px;
  background-image: url("../img/bk_maru01.svg");
  background-size: 375px 375px;
  content: "";
}
#mainContents .maru02::before {
  position: absolute;
  left: -500px;
  top: -200px;
  width: 634px;
  height: 634px;
  background-image: url("../img/bk_maru01.svg");
  background-size: 634px 634px;
  content: "";
}
#mainContents .maru02::after {
  position: absolute;
  left: -700px;
  top: -500px;
  width: 634px;
  height: 634px;
  background-image: url("../img/bk_maru01.svg");
  background-size: 634px 634px;
  content: "";
}
#mainContents .maru03::before {
  position: absolute;
  left: 400px;
  top: -200px;
  width: 846px;
  height: 846px;
  background-image: url("../img/bk_maru01.svg");
  background-size: 846px 846px;
  content: "";
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .maru01::before {
    top: 200px;
  }
  #mainContents .maru02::before {
    left: -200px;
    top: -50px;
    width: 317px;
    height: 317px;
    background-size: 317px 317px;
  }
  #mainContents .maru02::after {
    display: none;
  }
  #mainContents .maru03::before {
    left: auto;
    right: -200px;
    top: -50px;
    width: 317px;
    height: 317px;
    background-size: 317px 317px;
  }
}


/*==========================================
 Service
===========================================*/
#mainContents .serviceArea {
  width: 100%;
}
#mainContents .serviceArea .column {
  float: left;
  width: 330px;
  height: 693px;
  margin: 0 45px 50px 0;
  padding: 38px 0 0;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #FFF;
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.08);
}
#mainContents .serviceArea .column:nth-child(3n) {
  margin: 0 0 50px;
}
#mainContents .serviceArea .column .serviceIcon {
  width: 56px;
  margin: 0 auto;
}
#mainContents .serviceArea .column .serviceIcon img {
  width: 100%;
  height: auto;
}
#mainContents .serviceArea .column .serviceText {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
#mainContents .serviceArea .column .serviceText img.pcView {
  display: inline-block;
  width: auto;
  height: 56px;;
}
#mainContents .serviceArea .column .serviceText img.spView {
  display: none;
}
#mainContents .serviceArea .column:nth-child(5) .serviceText img {
  height: 21px;
  padding: 17px 0 18px;
}
#mainContents .serviceArea .column:nth-child(8) .serviceText img {
  height: 21px;
  padding: 17px 0 18px;
}
#mainContents .serviceArea .column .serviceList {
  padding: 20px 30px 20px;
  font-size: 1.6rem;
  margin-left: 1.5em;
  line-height: 1.6em;
}
#mainContents .serviceArea .column .serviceList li {
  list-style: disc;
}
#mainContents .serviceArea .column .serviceImg {
  width: 100%;
  margin-top: 30px;
}
#mainContents .serviceArea .column .serviceImg img {
  width: 100%;
  height: auto;
}
#mainContents .serviceArea .column p {
  padding: 20px 30px 0;
  font-size: 1.6rem;
}
#mainContents .serviceArea .column p small{
    font-size: 1.2rem;
}
#mainContents .serviceBottom {
  width: 100%;
  height: 198px;
  box-sizing: border-box;
  background-color: #F8FAF5;
  text-align: center;
}
#mainContents .serviceBottom img.pcView {
  display: inline-block;
  width: 720px;
  height: auto;
}
#mainContents .serviceBottom img.spView {
  display: none;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .serviceArea {
    width: 100%;
  }
  #mainContents .serviceArea .column {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 50px 0;
    padding: 25px 0 0;
  }
  #mainContents .serviceArea .column .serviceIcon {
    display: none;
  }
  #mainContents .serviceArea .column .serviceText {
    width: 100%;
    margin-top: 0;
    padding: 0 0 0 25px;
    box-sizing: border-box;
    text-align: left;
  }
  #mainContents .serviceArea .column .serviceText img.pcView {
    display: none;
  }
  #mainContents .serviceArea .column .serviceText img.spView {
    display: block;
    width: auto;
    height: 45px;
  }
  #mainContents .serviceArea .column:nth-child(5) .serviceText img {
    height: 45px;
    padding: 0;
  }
  #mainContents .serviceArea .column p {
    padding: 20px 50px;
  }

  #mainContents .serviceBottom {
    width: 100%;
    height: auto;
  }
  #mainContents .serviceBottom img.pcView {
    display: none
  }
  #mainContents .serviceBottom img.spView {
    display: inline-block;
    width: 320px;
    height: auto;
  }
}



/*==========================================
 service_kenshin
===========================================*/
#mainContents .service_kenshinTyp01 {
  width: 100%;
  padding: 90px 0 0;
}
#mainContents .service_kenshinTyp01 h3 img {
  width: 711px;
  height: auto;
}
#mainContents .service_kenshinTyp01 p {
  padding: 30px 0 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .service_kenshinTyp01 {
    padding: 40px 0 0;
  }
  #mainContents .service_kenshinTyp01 h3 img {
    width: 328px;
  }
  #mainContents .service_kenshinTyp01 p {
    padding: 20px 0 0;
  }
}

#mainContents .service_kenshinTyp02 {
  width: 100%;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
}
#mainContents .service_kenshinTyp02 .column {
  width: 330px;
}
#mainContents .service_kenshinTyp02 .column img {
  width: 100%;
  height: auto;
}
#mainContents .service_kenshinTyp02 .column h4 {
  padding: 15px 0 0;
  font-size: 2.0rem;
  font-weight: bold;
  color: #44AF35;
}
#mainContents .service_kenshinTyp02 .column p {
  padding: 5px 0 0;
  font-size: 1.6em;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .service_kenshinTyp02 {
    padding: 40px 0;
    flex-wrap: wrap;
  }
  #mainContents .service_kenshinTyp02 .column {
    width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .service_kenshinTyp02 .column h4 {
    padding: 15px 0 0;
    font-size: 2.0rem;
    font-weight: bold;
    color: #44AF35;
  }
  #mainContents .service_kenshinTyp02 .column p {
    padding: 5px 0 0;
    font-size: 1.6em;
    line-height: 1.8;
  }
}


#mainContents .service_kenshinTyp03 {
  width: 100%;
  padding: 80px 0;
}
#mainContents .service_kenshinTyp03 h2 {
  padding: 0 0 60px;
  text-align: center;
}
#mainContents .service_kenshinTyp03 h2 img {
  width: auto;
  height: 27px;
}
#mainContents .service_kenshinTyp03 .service_kenshinTyp03_Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#mainContents .service_kenshinTyp03_Box .column {
  width: 520px;
  height: 210px;
  background-color: #E9F1E6;
  border-radius: 10px;
  box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 8%);
}
#mainContents .service_kenshinTyp03_Box .column h3 {
  width: 100%;
  height: 48px;
  padding: 12px 0 0;
  box-sizing: border-box;
  background-color: #15974B;
  border-radius: 10px 10px 0 0;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #FFF;
}
#mainContents .service_kenshinTyp03_Box .column h4 {
  width: 460px;
  margin: 0 auto;
  padding: 13px 0;
  border-bottom: 1px solid #15974B;
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  color: #15974B;
  line-height: 1.6;
}
#mainContents .service_kenshinTyp03_Box .column p {
  padding: 15px 0 0;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
}
#mainContents .service_kenshinTyp03 .service_kenshinLink {
  width: 500px;
  height: 120px;
  padding: 100px 0 0;
  margin: 0 auto;
  text-align: center;
}
#mainContents .service_kenshinTyp03 .service_kenshinLink a {
  display: block;
  width: 500px;
  height: 120px;
  padding: 30px 0 0;
  box-sizing: border-box;
  background-color: #15974B;
  border-radius: 10px;
  box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 8%);
  font-size: 3.0rem;
  font-weight: bold;
  color: #FFF;
}
#mainContents .service_kenshinTyp03 .service_kenshinLink a span {
  display: block;
  padding: 15px 0 0;
  font-size: 1.6rem;
  font-weight: normal;
}
#mainContents .service_kenshinTyp03 .service_kenshinLink a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .service_kenshinTyp03 {
    padding: 40px 0;
  }
  #mainContents .service_kenshinTyp03 h2 {
    padding: 0 0 40px;
  }
  #mainContents .service_kenshinTyp03 h2 img {
    height: 22px;
  }
  #mainContents .service_kenshinTyp03 .service_kenshinTyp03_Box {
    flex-wrap: wrap;
  }
  #mainContents .service_kenshinTyp03_Box .column {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    padding: 0 0 15px;
  }
  #mainContents .service_kenshinTyp03_Box .column h3 {
    height: 46px;
    padding: 12px 0 0;
    font-size: 2.2rem;
  }
  #mainContents .service_kenshinTyp03_Box .column h4 {
    width: 90%;
    padding: 10px 0;
    font-size: 1.6rem;
  }
  #mainContents .service_kenshinTyp03_Box .column p {
    padding: 10px 5% 0;
    font-size: 1.4rem;
  }
  #mainContents .service_kenshinTyp03 .service_kenshinLink {
    width: 300px;
    height: 88px;
    padding: 20px 0 0;
  }
  #mainContents .service_kenshinTyp03 .service_kenshinLink a {
    width: 300px;
    height: 88px;
    padding: 24px 0 0;
    font-size: 2.2rem;
  }
  #mainContents .service_kenshinTyp03 .service_kenshinLink a span {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }
}



#mainContents .service_kenshinArea {
  width: 100%;
  background-color: #E9F1E6;
}
#mainContents .service_kenshinArea h2 {
  padding: 0 0 60px;
  text-align: center;
}
#mainContents .service_kenshinArea h2 img {
  width: auto;
  height: 27px;
}
#mainContents .service_kenshinArea .service_kenshinBox {
  width: 1080px;
  margin: 0 auto;
}
#mainContents .service_kenshinArea .column {
  float: left;
  width: 330px;
  height: 693px;
  margin: 0 45px 50px 0;
  padding: 38px 0 0;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #FFF;
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.08);
}
#mainContents .service_kenshinArea .column:nth-child(3n) {
  margin: 0 0 50px;
}
#mainContents .service_kenshinArea .column .kenshinIcon {
  width: 56px;
  margin: 0 auto;
}
#mainContents .service_kenshinArea .column .kenshinIcon img {
  width: 100%;
  height: auto;
}
#mainContents .service_kenshinArea .column .kenshinText {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
#mainContents .service_kenshinArea .column .kenshinText img.pcView {
  display: inline-block;
  width: auto;
  height: 56px;;
}
#mainContents .service_kenshinArea .column .kenshinText img.spView {
  display: none;
}
#mainContents .service_kenshinArea .column:nth-child(6) .kenshinText img {
  height: 21px;
  padding: 17px 0 18px;
}
#mainContents .service_kenshinArea .column:nth-child(8) .kenshinText img {
  height: 21px;
  padding: 17px 0 18px;
}
#mainContents .service_kenshinArea .column .serviceList {
  padding: 20px 30px 20px;
  font-size: 1.6rem;
  margin-left: 1.5em;
  line-height: 1.6em;
}
#mainContents .service_kenshinArea .column .serviceList li {
  list-style: disc;
}
#mainContents .service_kenshinArea .column .kenshinImg {
  width: 100%;
  margin-top: 30px;
}
#mainContents .service_kenshinArea .column .kenshinImg img {
  width: 100%;
  height: auto;
}
#mainContents .service_kenshinArea .column p {
  padding: 20px 30px 0;
  font-size: 1.6rem;
}
#mainContents .service_kenshinArea .column p img {
  padding: 5px 0 0;
}
#mainContents .service_kenshinArea .column p small{
    font-size: 1.2rem;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  #mainContents .service_kenshinArea {
    width: 100%;
  }
  #mainContents .service_kenshinArea h2 {
    padding: 0 0 30px;
  }
  #mainContents .service_kenshinArea h2 img {
    height: 23px;
  }
  #mainContents .service_kenshinArea .service_kenshinBox {
    width: 90%;
  }
  #mainContents .service_kenshinArea .column {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 50px 0;
    padding: 25px 0 0;
  }
  #mainContents .service_kenshinArea .column .kenshinIcon {
    display: none;
  }
  #mainContents .service_kenshinArea .column .kenshinText {
    width: 100%;
    margin-top: 0;
    padding: 0 0 0 25px;
    box-sizing: border-box;
    text-align: left;
  }
  #mainContents .service_kenshinArea .column .kenshinText img.pcView {
    display: none;
  }
  #mainContents .service_kenshinArea .column .kenshinText img.spView {
    display: block;
    width: auto;
    height: 45px;
  }
  #mainContents .service_kenshinArea .column:nth-child(6) .kenshinText img {
    height: 45px;
    padding: 0;
  }
  #mainContents .service_kenshinArea .column:nth-child(8) .kenshinText img {
    height: 45px;
    padding: 0;
  }
  #mainContents .service_kenshinArea .column p {
    padding: 20px 50px;
  }
}



/*==========================================
 News
===========================================*/
#mainContents .newsArea {
  width: 100%;
}
#mainContents .newsArea .column_L {
  float: left;
  width: 890px;
  padding: 0 0 0 66px;
  box-sizing: border-box;
}
#mainContents .newsArea .column_R {
  float: right;
  width: 240px;
}

#mainContents .newsArea h3.newsCateName img {
  width: auto;
  height: 15px;
}
#mainContents .newsArea .newsList ul {
  border-top: 1px solid #D6D6D6;
  list-style-type: none;
}
#mainContents .newsArea .newsList ul li {
  padding: 30px 15px;
  border-bottom: 1px solid #D6D6D6;
}
#mainContents .newsArea .newsList ul li:nth-child(2n) {
  background-color: #F8FAF5;
}
#mainContents .newsArea .newsList ul li span {
  position: relative;
  font-size: 1.4rem;
}
#mainContents .newsArea .newsList ul li span::before {
  position: absolute;
  left: 80px;
  top: 0;
  width: 73px;
  height: 20px;
  padding: 3px 0 0;
  box-sizing: border-box;
  background-color: #9CC715;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
}
#mainContents .newsArea .newsList ul li span.icon01::before {
  content: "News";
}
#mainContents .newsArea .newsList ul li span.icon02::before {
  content: "Update";
}
#mainContents .newsArea .newsList ul li a {
  padding: 0 0 0 100px;
  font-size: 1.4rem;
}

#mainContents .newsArea .newsCateList {
  width: 100%;
  margin: 37px 0 0;
}
#mainContents .newsArea .newsCateList ul {
  list-style-type: none;
}
#mainContents .newsArea .newsCateList ul li {
  width: 100%;
  height: 54px;
  margin: 0 0 10px;
  background-color: #FFF;
  border-radius: 6px;
}
#mainContents .newsArea .newsCateList ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 19px 0 0 20px;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #606060;
}
#mainContents .newsArea .newsCateList ul li a:hover {
  opacity: 0.7;
}
#mainContents .newsArea .newsCateList ul li.active {
  box-shadow:0px 0px 6px 3px rgba(35,170,7,0.08);
}
#mainContents .newsArea .newsCateList ul li.active a {
  color: #44AF35;
  text-decoration: underline;
}

#mainContents .newsArea .newsMovie h3 img {
  width: auto;
  height: 14px;
}


@media only screen and (max-width: 767px) {
  #mainContents .newsArea {
    width: 100%;
  }
  #mainContents .newsArea .column_L {
    float: none;
    width: 100%;
    padding: 0;
  }
  #mainContents .newsArea .column_R {
    float: none;
    width: 100%;
    margin: 100px 0 0;
  }
  #mainContents .newsArea .newsList ul li {
    padding: 20px 0;
  }
  #mainContents .newsArea .newsList ul li span {
    display: block;
    padding: 0 0 15px;
  }
  #mainContents .newsArea .newsList ul li span::before {
    top: -3px;
  }
  #mainContents .newsArea .newsList ul li a {
    padding: 0;
    line-height: 1.4;
  }

  #mainContents .newsArea .newsCateList {
    width: 100%;
    margin: 37px 0 0;
  }
  #mainContents .newsArea .newsCateList ul {
    list-style-type: none;
  }
  #mainContents .newsArea .newsCateList ul li {
    height: auto;
    margin: 0 0 6px;
    border-bottom: 1px solid #D6D6D6;
    text-align: center;
  }
  #mainContents .newsArea .newsCateList ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0 20px 0;
    box-sizing: border-box;
    font-size: 1.6rem;
    color: #606060;
  }
  #mainContents .newsArea .newsCateList ul li.active {
    border-bottom: 0px;
  }

  #mainContents .newsArea .newsMovie h3 {
    text-align: center;
  }
  #mainContents .newsArea .newsMovie h3 img {
    display: inline-block;
  }
  #mainContents .newsArea .newsMovie .newsMovieBox {
    width: 240px;
    margin: 0 auto;
  }
  #mainContents .newsArea .newsMovie .newsMovieBox p {
    text-align: center;
  }
}


#mainContents .newsArea .newsEntry {
  width: 100%;
  margin: 37px 0 0;
  border-bottom: 1px solid #D6D6D6;
}
#mainContents .newsArea .newsEntry .newsEntryTitle {
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  background-color: #F8FAF5;
}
#mainContents .newsArea .newsEntry .newsEntryTitle p.date {
  position: relative;
  font-size: 1.4rem;
}
#mainContents .newsArea .newsEntry .newsEntryTitle p.date::before {
  position: absolute;
  left: 110px;
  top: -3px;
  width: 73px;
  height: 20px;
  padding: 3px 0 0;
  box-sizing: border-box;
  background-color: #9CC715;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
}
#mainContents .newsArea .newsEntry .newsEntryTitle p.date.icon01::before {
  content: "News";
}
#mainContents .newsArea .newsEntry .newsEntryTitle p.date.icon02::before {
  content: "Update";
}
#mainContents .newsArea .newsEntry .newsEntryTitle h3 {
  margin: 20px 0 0;
  padding: 0 0 0 110px;
  font-size: 2.4rem;
}
#mainContents .newsArea .newsEntry .newsEntryBody {
  padding: 30px 0 30px 130px;
}
#mainContents .newsArea .newsEntry .newsEntryBody p {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  #mainContents .newsArea .newsEntry {
    margin: 0;
  }
  #mainContents .newsArea .newsEntry .newsEntryTitle {
    width: 100%;
    padding: 20px 5%;
    background-color: #FFF;
  }
  #mainContents .newsArea .newsEntry .newsEntryTitle p.date::before {
    left: 80px;
  }
  #mainContents .newsArea .newsEntry .newsEntryTitle h3 {
    padding: 0;
    font-size: 2.0rem;
  }
  #mainContents .newsArea .newsEntry .newsEntryBody {
    width: 90%;
    margin: 0 5%;
    padding: 20px 0;
  }
  #mainContents .newsArea .newsEntry .newsEntryBody p {
    font-size: 1.4rem;
  }
}
