@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #333333;
}

/* font-family: "Roboto", sans-serif; */

/* link */
a img {
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.8;
}
a { outline: none; text-decoration: none; }
a:link    { color: #333333; text-decoration: none; }
a:visited { color: #333333; text-decoration: underline; }
a:hover   { color: #333333; text-decoration: underline; }
a:active  { color: #333333; text-decoration: underline; }



/*==========================================
 body
===========================================*/

html {
  background: #FFF;
  overflow: auto;
}
body {
  overflow: hidden;
	min-width: 1100px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 フェードイン
===========================================*/
/* 上下フェード */
.fade_off {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.0s ease;
}
.delay_1 { transition-delay: 0.5s; }
.delay_2 { transition-delay: 1.0s; }
.delay_3 { transition-delay: 1.5s; }

.delay_4 { transition-delay: 2.0s; }
.delay_5 { transition-delay: 2.1s; }
.delay_6 { transition-delay: 2.2s; }
.delay_7 { transition-delay: 2.3s; }
.delay_8 { transition-delay: 2.4s; }
.delay_8 { transition-delay: 2.5s; }
.delay_9 { transition-delay: 2.6s; }
.delay_10 { transition-delay: 2.7s; }

.fade_on {
  opacity: 1;
  transform: translateY(0px);
}

/* 左右フェード */
.fade_left_off {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.0s ease;
}
.fade_left_on {
  opacity: 1;
  transform: translateX(0px);
}
@media only screen and (max-width: 767px) {

}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 117px;
  background-color: #FFF;
  border-bottom: 1px solid #0062A0;
  transition: all 0.6s ease;
}
body.top header {
  background-color: transparent;
  border-bottom: none;
}
header.scroll_down,
body.top header .scroll_down {
  background-color: #FFF !important;
  border-bottom: 1px solid #0062A0 !important;
  /* transform: translateY(-260px); */
}
header.scroll_up,
body.top header.scroll_up {
  background-color: #FFF;
  border-bottom: 1px solid #0062A0;
  /* transform: translateY(0); */
}
body.top header:hover {
  background-color: #FFF;
  border-bottom: 1px solid #0062A0;
}
header #header {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
header #headerLogoArea {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 40px;
}
header #headerLogoArea h1 img {
  width: 220px;
  height: auto;
}

header #header_SpIcon {
  display: none;
}
@media only screen and (max-width: 767px) {
  header {
    height: 70px;
  }
  header.scroll_down,
  body.top header .scroll_down {
    /* transform: translateY(-70px); */
  } 
  body.top header:hover {
    background-color: transparent;
    border-bottom: none;
  }
  body.top header.scroll_up:hover {
    background-color: #FFF;
    border-bottom: 1px solid #0062A0;
  }
  header #header {
    width: 100%;
  }
  header #headerLogoArea {
    left: 20px;
    top: 27px;
  }
  header #headerLogoArea h1 img {
    width: 132px;
  }

  header #header_SpIcon {
    display: block;
    z-index: 100;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #F5F5F5;
  }
  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: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 14px;
    margin: -7px 0 0 -8px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0062A0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 6px;
  }
  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(6px) 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(-6px) rotate(45deg);
  }

}


/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  left: 500px;
  top: 66px;
}
header #headerGlobalArea ul {
  display: flex;
  justify-content: start;
}
header #headerGlobalArea li {
  padding: 0 40px 0 0;
}
header #headerGlobalArea li a {
  position: relative;
  display: block;
  width: 100%;
  height: 52px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0062A0;
  transition: all 0.3s ease;
}
header #headerGlobalArea li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #headerGlobalArea li a:hover::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130px;
  height: 7px;
  margin: 0 0 0 -65px;
  background-image: url("../img/header_active.svg");
  background-size: cover;
  content: "";
}

header #headerContact {
  position: absolute;
  right: 0;
  top: 49px;
  width: 180px;
  height: 48px;
}
header #headerContact a {
  position: relative;
  display: block;
  width: 180px;
  height: 48px;
  padding: 16px 0 0 26px;
  border-radius: 10px;
  box-sizing: border-box;
  background: linear-gradient(to right, #0062A0, #82CDE6);
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  transition: all 0.3s ease;
}
header #headerContact a:hover {
  background: linear-gradient(to right, #ffa300, #ffcc71);
  text-decoration: none;
}
header #headerContact a::after {
  position: absolute;
  right: 11px;
  top: 8px;
  width: 35px;
  height: 26px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
  transition: transform 0.25s ease;
  transform-origin: center center;
}
header #headerContact a:hover::after {
  transform: rotate(8deg);
}

header #headerSub {
  position: absolute;
  right: 0;
  top: 22px;
}
header #headerSub ul {
  display: flex;
  justify-content: right;
}
header #headerSub ul li {
  padding: 0 0 0 65px;
}
header #headerSub ul li a {
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0062A0;
  transition: all 0.3s ease;
}
header #headerSub ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
header #headerSub ul li:nth-child(1) a::before {
  position: absolute;
  left: -20px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
header #headerSub ul li:nth-child(2) a::before,
header #headerSub ul li:nth-child(3) a::before {
  position: absolute;
  left: -23px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}


header #headerGlobal_Sub {
  display: none;
  position: absolute;
  left: 0;
  top: 118px;
  width: 100%;
  height: 140px;
  background-color: #FFF;
}
header #headerGlobal_Sub::before {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 140px;
  margin: 0 0 0 -50vw;
  background-color: #FFF;
  content: "";
}
header #headerGlobal_Sub .subListBox {
  display: none;
  position: relative;
  z-index: 20;
  width: 100%;
  height: 140px;
}
header #headerGlobal_Sub .subListBox .mainLink {
  padding: 25px 0 0;
}
header #headerGlobal_Sub .subListBox .mainLink a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0062A0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: all 0.3s ease;
}
header #headerGlobal_Sub .subListBox .mainLink a:hover {
  opacity: 0.7;
}
header #headerGlobal_Sub .subListBox ul {
  position: absolute;
  left: 355px;
  top: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
header #headerGlobal_Sub .subListBox ul li {
  width: 180px;
  height: 50px;
  margin: 0 40px 0 0;
  border-top: 1px solid #0062A0;
  border-bottom: 1px solid #0062A0;
}
header #headerGlobal_Sub .subListBox ul li:nth-child(n + 4) {
  border-top: none;
  border-bottom: 1px solid #0062A0;
}
header #headerGlobal_Sub .subListBox ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 17px 0 0 20px;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0062A0;
  transition: all 0.3s ease;
}
header #headerGlobal_Sub .subListBox ul li a:hover {
  background-color: #F0FBFF;
  text-decoration: none;
  opacity: 1.0;
}
header #headerGlobal_Sub .subListBox ul li a::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
header #headerGlobal_Sub .subListBox ul li a::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 9px;
  margin: -4px 0 0;
  background-image: url("../img/icon06.svg");
  background-size: cover;
  content: "";
}


header #headerNavi_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  header #headerGlobalArea,
  header #headerGlobal_Sub,
  header #headerContact,
  header #headerSub {
    display: none;
  }

  header #headerNavi_Sp {
    position: absolute;
    right: -100vw;
    top: 0;
    display: block;
    width: 100%;
    height: calc(100vh + 70px);
    padding: 110px 20px 100px;
    box-sizing: border-box;
    background-color: #FFF;
  }
  header #headerNavi_Sp::before {
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    height: 1px;
    background-color: #0062A0;
    content: "";
  }
  header #headerNavi_Sp #headerNavi_Sp_ScrollArea {
    width: 100%;
    height: calc(100vh - 100px);
    overflow-y: scroll;
  }
  header #headerNavi_Sp #headerNavi_Sp_Scroll {
    width: 100%;
    padding: 0 0 100px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub {
    width: 100%;
    border-top: 1px solid #0062A0;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub:nth-child(5) {
    border-bottom: 1px solid #0062A0;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub .pullDownLink {
    width: 100%;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub .pullDownLink > a {
    position: relative;
    display: block;
    width: 100%;
    height: 64px;
    padding: 24px 60px 0 20px;
    box-sizing: border-box;
    background-color: #F5F5F5;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0062A0;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub .pullDownLink > a::before {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0;
    background-image: url("../img/icon07.svg");
    background-size: cover;
    content: "";
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub .pullDownLink > a.open::before {
    background-image: url("../img/icon08.svg");
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub .pullDownLink > a:hover {
    text-decoration: none;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub ul {
    display: none;
    list-style-type: none;
    background-color: #FFF;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub ul li {
    position: relative;
    width: 100%;
    height: 64px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 25px 60px 0 40px;
    box-sizing: border-box;
    border-top: 1px solid #B5B5B5;
    font-size: 1.4rem;
    font-weight: 500;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub ul li a:hover {
    text-decoration: none;
  }
  header #headerNavi_Sp .headerNavi_Sp_Sub ul li a::after {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 5px;
    height: 9px;
    margin: -4px 0 0;
    background-image: url("../img/icon06.svg");
    background-size: cover;
    content: "";
  }

  header #headerNavi_Sp .headerNavi_Sp_Contact {
    width: 300px;
    height: 50px;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact a {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 16px 0 0 35px;
    border-radius: 25px;
    box-sizing: border-box;
    background: linear-gradient(to right, #0062A0, #82CDE6);
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFF;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact a:hover {
    text-decoration: none;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact a::after {
    position: absolute;
    right: 35px;
    top: 10px;
    width: 35px;
    height: 26px;
    background-image: url("../img/icon03.svg");
    background-size: cover;
    content: "";
  }

  header #headerNavi_Sp .headerNavi_Sp_Bottom {
    width: 200px;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  header #headerNavi_Sp .headerNavi_Sp_Bottom ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
  }
  header #headerNavi_Sp .headerNavi_Sp_Bottom ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0062A0;
  }
  header #headerNavi_Sp .headerNavi_Sp_Bottom ul li a:hover {
    text-decoration: none;
  }
}

/*==========================================
 フッターのスタイル
===========================================*/
#footer_Contact {
  position: relative;
  width: 1300px;
  min-height: 300px;
  margin: 100px auto 0;
  padding: 70px 50px 0;
  background-color: #F5F5F5;
  border-radius: 10px;
  box-sizing: border-box;
}
body.no_contact #footer_Contact {
  display: none;
}
#footer_Contact::before {
  position: absolute;
  right: 96px;
  bottom: -28px;
  font-family: "Roboto", sans-serif;
  font-size: 10.0rem;
  font-weight: 400;
  color: #FFF;
  letter-spacing: 0.04em;
  content: "CONTACT US";
}
#footer_Contact h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #0062A0;
}
#footer_Contact p {
  padding: 30px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#footer_Contact ul {
  padding: 30px 0 0;
  list-style-type: none;
}
#footer_Contact ul li {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 40px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0062A0;
  line-height: 1.4;
}
#footer_Contact ul li::before {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#footer_Contact .link01 {
  position: absolute;
  right: 50px;
  top: 116px;
  width: 230px;
  height: 69px;
}
#footer_Contact .link01 a {
  position: relative;
  display: block;
  width: 230px;
  height: 69px;
  padding: 24px 0 0 47px;
  border-radius: 40px;
  box-sizing: border-box;
  background: linear-gradient(to right, #0062A0, #82CDE6);
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFF;
  transition: all 0.3s ease;
}
#footer_Contact .link01 a:hover {
  text-decoration: none;
  background: linear-gradient(to right, #ffa300, #ffcc71);
}
#footer_Contact .link01 a::after {
  position: absolute;
  right: 29px;
  top: 18px;
  width: 35px;
  height: 26px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
  transition: transform 0.25s ease;
  transform-origin: center center;
}
#footer_Contact .link01 a:hover::after {
  transform: rotate(8deg);
}
@media only screen and (max-width: 767px) {
  #footer_Contact {
    width: calc(100% - 40px);
    min-height: 450px;
    margin: 80px auto 0;
    padding: 70px 20px 0;
  }
  #footer_Contact::before {
    left: 0;
    bottom: -13px;
    width: 100%;
    font-size: 4.8rem;
    text-align: center;
  }
  #footer_Contact h2 {
    font-size: 2.4rem;
  }
  #footer_Contact p {
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #footer_Contact ul {
    padding: 40px 0 0;
  }
  #footer_Contact ul li {
    padding: 0 0 0 20px;
  }
  #footer_Contact ul li::before {
    left: 0;
    top: 5px;
    margin: 0;
  }
  #footer_Contact .link01 {
    left: 50%;
    top: 341px;
    width: 270px;
    height: 50px;
    margin: 0 0 0 -135px;
  }
  #footer_Contact .link01 a {
    width: 270px;
    height: 50px;
    padding: 16px 0 0 22px;
    font-size: 1.6rem;
  }
  #footer_Contact .link01 a:hover {
    text-decoration: none;
  }
  #footer_Contact .link01 a::after {
    right: 20px;
    top: 12px;
  }
}

footer {
  width: 100%;
  background-color: #FFF;
}
footer #footerBody {
  position: relative;
  width: 1040px;
  height: 360px;
  margin: 0 auto;
}
footer #footerBody h2 img {
  position: absolute;
  top: 127px;
  left: 0;
  width: 305px;
  height: auto;
}
footer #footerBody small {
  position: absolute;
  top: 326px;
  left: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: #0062A0
}
footer #footerBody .footerLink {
  display: none;
  position: absolute;
  right: 0;
  top: 77px;
  width: 646px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer #footerBody .footerLink .column {
  width: 160px;
}
footer #footerBody .footerLink .column ul {
  width: 100%;
  padding: 0 0 22px 0;
  list-style-type: none;
}
footer #footerBody .footerLink .column ul li {
  padding: 0 0 15px;
}
footer #footerBody .footerLink .column ul li:nth-child(1) {
  padding: 0 0 20px;
}
footer #footerBody .footerLink .column ul li a {
  font-size: 1.4rem;
  color: #0062A0;
  transition: all 0.3s ease;
}
footer #footerBody .footerLink .column ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
footer #footerBody .footerLink .column ul li.noLink a:hover {
  text-decoration: none;
  cursor: default;
}
footer #footerBody .footerLink .column ul li:nth-child(1) a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0062A0;
}
footer #footerBody .footerLink .column ul li:nth-child(1) a::before {
  position: absolute;
  left: -15px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0;
  border-radius: 8px;
  background-color: #82CDE6;
  content: "";
}
footer #footerBody .footerLink_Sp {
  display: none;
}
footer #footerBody .footerLink_Bottom {
  position: absolute;
  right: 0;
  top: 326px;
  width: 238px;
}
footer #footerBody .footerLink_Bottom ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
footer #footerBody .footerLink_Bottom ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #0062A0;
}
footer #footerBody .footerLink_Bottom ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  footer #footerBody {
    width: calc(100% - 80px);
    height: 485px;
  }
  footer #footerBody h2 img {
    top: 83px;
    width: 190px;
  }
  footer #footerBody small {
    position: absolute;
    display: block;
    top: 452px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  footer #footerBody .footerLink {
    display: none;
  }
  footer #footerBody .footerLink_Sp {
    display: block;
    position: absolute;
    left: 0;
    top: 156px;
    width: 100%;
  }
  footer #footerBody .footerLink_Sp .column {
    display: flex;
    justify-content: space-between;
  }
  footer #footerBody .footerLink_Sp .column ul {
    width: 53%;
    list-style-type: none;
  }
  footer #footerBody .footerLink_Sp .column ul:nth-child(2) {
    width: 43%;
  }
  footer #footerBody .footerLink_Sp .column ul li {
    padding: 0 0 35px 15px;
  }
  footer #footerBody .footerLink_Sp .column ul li a {
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0062A0;
  }
  footer #footerBody .footerLink_Sp .column ul li a::before {
    position: absolute;
    left: -15px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0;
    border-radius: 8px;
    background-color: #82CDE6;
    content: "";
  }

  footer #footerBody .footerLink_Bottom {
    left: 50%;
    top: 416px;
    width: 200px;
    margin: 0 0 0 -100px;
  }
  footer #footerBody .footerLink_Bottom ul li a {
    font-size: 1.2rem;
  }
}


/*==========================================
 ページアップ
===========================================*/
#pageup {
  position : fixed;
  z-index: 100;
  bottom : 10px;
  /* right : 25px; */
  right: 78px;
}
#pageup a {
  display: block;
  width: 62px;
  height: 62px;
  background-image: url("../img/pageup.svg");
  background-size: cover;
  transition: all 0.3s ease;
}
#pageup a:hover {
  background-image: url("../img/pageup_ov.svg");
}
@media only screen and (max-width: 767px) {
  #pageup {
    bottom : 90px;
    right : 20px;
  }
  #pageup a:hover {
    background-image: url("../img/pageup.svg");
  }
}

#pageContact {
  display: none;
}
@media only screen and (max-width: 767px) {
  #pageContact {
    display: block;
    position : fixed;
    z-index: 100;
    bottom : 20px;
    right : 20px;
    width: 180px;
    height: 50px;
  }
  #pageContact a {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 16px 0 0 23px;
    border-radius: 25px;
    box-sizing: border-box;
    background: linear-gradient(to right, #0062A0, #82CDE6);
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFF;
  }
  #pageContact a:hover {
    text-decoration: none;
  }
  #pageContact a::after {
    position: absolute;
    right: 16px;
    top: 9px;
    width: 35px;
    height: 26px;
    background-image: url("../img/icon03.svg");
    background-size: cover;
    content: "";
  }
}



/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 1000px;
  padding: 117px 0 0 0;
}
body.top #mainContents {
  /* background-color: #CCC; */
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 500px;
    padding: 71px 0 0 0;
  }
}

/*==========================================
 パンくず
===========================================*/
#mainContents #pankuzu {
  width: 1040px;
  margin: 0 auto;
  padding: 45px 0 0;
  font-size: 1.2rem;
  color: #BCBCBC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
#mainContents #pankuzu a {
  position: relative;
  margin: 0 35px 0 0;
  color: #0062A0;
}
#mainContents #pankuzu a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents #pankuzu a:after {
  position: absolute;
  right: -23px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3px 0 0;
  background-color: #82CDE6;
  border-radius: 7px;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents #pankuzu {
    width: calc(100% - 40px);
  }
  #pankuzu a {
    display: inline;
  }
}

/*==========================================
 共通タイトル
===========================================*/
#mainContents .titleArea {
  position: relative;
  width: 1040px;
  margin: 65px auto 0;
  padding: 0 0 0 37px; 
  box-sizing: border-box;
}
#mainContents .titleArea::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 103px;
  background-color: #FFA300;
  content: "";
}
#mainContents .titleArea.bk_on {
  padding: 0 0 173px 37px;
}
#mainContents .titleArea.bk_on::after {
  position: absolute;
  left: 50%;
  top: -121px;
  width: 1366px;
  height: 383px;
  margin: 0 0 0 -683px;
  background-image: url("../img/title_bg.svg");
  background-size: cover;
  content: "";
}

#mainContents .titleArea h2 {
  padding: 10px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 5.0rem;
  font-weight: 300;
  display: block;
  overflow: hidden;
  opacity: 0; 
}
#mainContents .titleArea h2 br {
  display: none;
}

#mainContents .titleArea h2.-is-ready {
  opacity: 1;
}
#mainContents .titleArea h2 span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
#mainContents .titleArea h2.-is-show span {
  transform: translateY(0);
  opacity: 1;
}

#mainContents .titleArea p {
  padding: 5px 0 0;
  font-size: 2.4rem;
  font-weight: 400;
  color: #BCBCBC;
  opacity: 0;
  transform: translateY(20px); /* 20pxほど下に配置 */
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.5s; /* h2のアニメーションが少し進んでから開始 */
}
#mainContents .titleArea h2.-is-show + p {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea {
    width: calc(100% - 40px);
    margin: 45px auto 0;
    padding: 0 0 0 20px; 
  }
  #mainContents .titleArea::before {
    width: 4px;
    height: 68px;
  }

  #mainContents .titleArea.bk_on {
    padding: 0 0 50px 20px;
  }
  #mainContents .titleArea.bk_on::after {
    left: auto;
    right: -20px;
    top: -102px;
    width: 137px;
    height: 229px;
    margin: 0;
    background-image: url("../img/title_bg_sp.svg");
  }

  #mainContents .titleArea h2 {
    font-size: 3.2rem;
  }
  #mainContents .titleArea h2 br {
    display: block;
  }

  #mainContents .titleArea.typ01::before {
    top: 11px;
    height: 101px;
  }
  #mainContents .titleArea.typ01 h2 {
    padding: 10px 0 0;
    font-size: 3.2rem;
    line-height: 1.2;
  }

  #mainContents .titleArea p {
    padding: 2px 0 0;
    font-size: 1.8rem;
  }
}


#mainContents .titleArea_Sub {
  width: 980px;
  margin: 40px auto 0;
}
#mainContents .titleArea_Sub h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  font-weight: 400;
  color: #0062A0;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea_Sub {
    width: calc(100% - 80px);
  }
}


/*==========================================
 ページナビ
===========================================*/
#mainContents .pageNavi01 {
  width: 980px;
  margin: 65px auto 0;
}
#mainContents .pageNavi01 ul {
  width: 730px;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .pageNavi01 ul li:nth-child(1) {
  width: 262px;
  padding: 0 0 10px;
  border-bottom: 2px solid #0062A0;
}
#mainContents .pageNavi01 ul li:nth-child(2) {
  width: 374px;
  padding: 0 0 10px;
  border-bottom: 2px solid #FFA300;
}
#mainContents .pageNavi01 ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
}
#mainContents .pageNavi01 ul li a:hover {
  text-decoration: none;
}
#mainContents .pageNavi01 ul li a::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 11px;
  margin: -5px 0 0;
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .pageNavi01 ul li:nth-child(1) a::after {
  background-image: url("../img/icon12.svg");
}
#mainContents .pageNavi01 ul li:nth-child(2) a::after {
  background-image: url("../img/icon13.svg");
}
#mainContents .pageNavi01 ul li a:hover::after {
  margin: -2px 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi01 {
    width: calc(100% - 80px);
    margin: 10px auto 0;
  }
  #mainContents .pageNavi01 ul {
    width: 242px;
  }
  #mainContents .pageNavi01 ul li:nth-child(1) {
    width: 100%;
    margin: 0 0 20px;
  }
  #mainContents .pageNavi01 ul li:nth-child(2) {
    width: 100%;
  }
  #mainContents .pageNavi01 ul li a {
    font-size: 1.2rem;
  }
  #mainContents .pageNavi01 ul li a::after {
    width: 16px;
    height: 9px;
    margin: -4px 0 0;
  }
}


#mainContents .pageNavi02 {
  width: 1040px;
  margin: 0 auto;
  padding: 80px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .pageNavi02 .column {
  width: 500px;
}
#mainContents .pageNavi02 .column a:hover {
  text-decoration: none;
}
#mainContents .pageNavi02 .column img {
  width: 100%;
  height: auto;
}
#mainContents .pageNavi02 .column h3 {
  position: relative;
  margin: 25px 0 0 43px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  transition: all 0.3s ease;
}
#mainContents .pageNavi02 .column h3::before {
  position: absolute;
  left: -45px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .pageNavi02 .column a:hover h3 {
  margin: 25px 0 0 48px;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi02 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px 0 0;
  }
  #mainContents .pageNavi02 .column {
    width: 100%;
    padding: 0 0 40px;
  }
}


#mainContents .pageNavi03 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi03 {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .pageNavi03 ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #mainContents .pageNavi03 ul li {
    width: 47%;
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: 1px solid #0062A0;
    display: flex;
  }
  #mainContents .pageNavi03 ul li a {
    position: relative;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 3em;
  }
  #mainContents .pageNavi03 ul li a::after {
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
    height: 8px;
    margin: -3px 0 0;
    background-image: url("../img/icon12.svg");
    background-size: cover;
    content: "";
  }
}

#mainContents .pageNavi_Sub01 {
  position: relative;
  width: 100%;
  margin: 100px 0 0;
  padding: 70px 0;
  background: linear-gradient(to right, #82CDE6, #F0FBFF);
}
#mainContents .pageNavi_Sub01::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 292px;
  height: 298px;
  background-image: url("../img/division/division_bk01.svg");
  background-size: cover;
  content: "";
}
#mainContents .pageNavi_Sub01 .columnBox {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .pageNavi_Sub01 .columnBox .column {
  width: 320px;
  padding: 0 40px 0 0;
}
#mainContents .pageNavi_Sub01 .columnBox .column a:hover {
  text-decoration: none;
}
#mainContents .pageNavi_Sub01 .columnBox .column img {
  width: 100%;
  height: auto;
}
#mainContents .pageNavi_Sub01 .columnBox .column h4 {
  position: relative;
  margin: 25px 0 0 43px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub01 .columnBox .column h4::before {
  position: absolute;
  left: -45px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub01 .columnBox .column a:hover h4 {
  margin: 25px 0 0 48px;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi_Sub01 {
    margin: 80px 0 0;
    padding: 60px 0 15px;
    background: linear-gradient(45deg, #82CDE6, #F0FBFF);
  }
  #mainContents .pageNavi_Sub01::before {
    right: -24px;
    width: 187px;
    height: 191px;
  }
  #mainContents .pageNavi_Sub01 .columnBox {
    width: calc(100% - 40px);
  }
  #mainContents .pageNavi_Sub01 .columnBox .column {
    width: 100%;
    padding: 0 0 45px 0;
  }
}



#mainContents .pageNavi_Sub02 {
  position: relative;
  width: 100%;
  margin: 100px 0 0;
  padding: 70px 0;
  background: linear-gradient(45deg, #0062A0, #82CDE6);
}
#mainContents .pageNavi_Sub02 .columnBox {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .pageNavi_Sub02 .columnBox .column {
  width: 320px;
}
#mainContents .pageNavi_Sub02 .columnBox .column a:hover {
  text-decoration: none;
}
#mainContents .pageNavi_Sub02 .columnBox .column img {
  width: 100%;
  height: auto;
}
#mainContents .pageNavi_Sub02 .columnBox .column h4 {
  position: relative;
  margin: 25px 0 0 43px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub02 .columnBox .column h4::before {
  position: absolute;
  left: -45px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0;
  background-image: url("../img/icon15.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub02 .columnBox .column a:hover h4 {
  margin: 25px 0 0 48px;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi_Sub02 {
    margin: 80px 0 0;
    padding: 60px 0 15px;
  }
  #mainContents .pageNavi_Sub02::before {
    right: -24px;
    width: 187px;
    height: 191px;
  }
  #mainContents .pageNavi_Sub02 .columnBox {
    width: calc(100% - 40px);
  }
  #mainContents .pageNavi_Sub02 .columnBox .column {
    width: 100%;
    padding: 0 0 45px 0;
  }
}


#mainContents .pageNavi_Sub03 {
  width: 1040px;
  margin: 0 auto;
  padding: 60px 0 100px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .pageNavi_Sub03 .column {
  margin: 0 90px 0 0;
}
#mainContents .pageNavi_Sub03 .column a:hover {
  text-decoration: none;
}
#mainContents .pageNavi_Sub03 .column a {
  display: inline-block;
  position: relative;
  margin: 0 0 0 43px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub03 .column a::before {
  position: absolute;
  left: -45px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub03 .column a:hover {
  transform: translateX(5px);
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi_Sub03 {
    width: calc(100% - 40px);
    padding: 60px 0 20px;
  }
  #mainContents .pageNavi_Sub03 .column {
    width: 100%;
    margin: 0 0 30px 0;
  }
}


#mainContents .pageNavi_Sub_footer01 {
  position: relative;
  width: 100%;
  margin: 200px 0 0;
  padding: 70px 80px 20px;
  box-sizing: border-box;
  background: linear-gradient(45deg, #0062A0, #82CDE6);
}
#mainContents .pageNavi_Sub_footer01 h3 {
  font-size: 4.0rem;
  font-weight: 400;
  color: #FFF;
}
#mainContents .pageNavi_Sub_footer01 ul {
  width: 680px;
  padding: 48px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .pageNavi_Sub_footer01 ul li {
  margin: 0 80px 50px 0;
}
#mainContents .pageNavi_Sub_footer01 ul li a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFF;
}
#mainContents .pageNavi_Sub_footer01 ul li a:hover {
  text-decoration: none;
}
#mainContents .pageNavi_Sub_footer01 ul li a::after {
  position: absolute;
  right: -15px;
  top: 50%;
  width: 7px;
  height: 12px;
  margin: -4px 0 0;
  background-image: url("../img/icon16.svg");
  background-size: cover;
  content: "";
}
#mainContents .pageNavi_Sub_footer01 ul li a::before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background-color: #FFF;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .pageNavi_Sub_footer01 ul li a:hover::before{
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi_Sub_footer01 {
    margin: 200px 0 0;
    padding: 70px 20px 35px;
  }
  #mainContents .pageNavi_Sub_footer01 h3 {
    font-size: 2.2rem;
  }
  #mainContents .pageNavi_Sub_footer01 ul {
    width: 100%;
  }
  #mainContents .pageNavi_Sub_footer01 ul li {
    width: 100%;
    margin: 0 0 36px 0;
  }
  #mainContents .pageNavi_Sub_footer01 ul li a::before {
    display: none;
  }
  /* #mainContents .pageNavi_Sub_footer01 ul li a::before{
    width: 100%;
  } */
}

/*==========================================
 ページネーションのスタイル
===========================================*/
#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: #000;
}
#mainContents #pagination ul li span::before {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 32px;
  height: 3px;
  margin: 0 0 0 -16px;
  background-color: #000;
  content: "";
}
#mainContents #pagination ul li span.dots::before {
  display: none;
}
#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: 10px;
  width: 10px;
  display: block;
  border: 2px solid #000;
  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: 10px;
  width: 10px;
  display: block;
  border: 2px solid #000;
  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: 12px;
    width: 12px;
    left: 15px;
    margin: -7px 0 0 0;
  }
  #mainContents #pagination ul li a.next:after {
    height: 12px;
    width: 12px;
    left: 10px;
    margin: -7px 0 0 0;
  }
}



/*==========================================
 トップページ
===========================================*/
#mainContents .topMv {
  display: block;
  position: relative;
  width: 100%;
  height: 768px;
  overflow: hidden;
}
#mainContents .topMv video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* これで上下左右中央へ */
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画面いっぱいに広げつつ、アスペクト比を維持して切り抜き */
  display: block;
  z-index: 1; /* 重なり順：動画を下に */
}
#mainContents .topMv img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 441px;
  height: 104px;
  margin: -52px 0 0 97px; 
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.5s ease-out 0.5s forwards;
}
#mainContents .topMv_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .topMv {
    display: none;
  }
  #mainContents .topMv_Sp {
    display: block;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  #mainContents .topMv_Sp video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* これで上下左右中央へ */
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面いっぱいに広げつつ、アスペクト比を維持して切り抜き */
    display: block;
    z-index: 1; /* 重なり順：動画を下に */
  }
  #mainContents .topMv_Sp img {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 300px;
    height: auto;
    margin: 0 0 0 -150px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.5s ease-out 0.5s forwards;
  }
}


/* ふわっと浮き上がるアニメーション */
@keyframes fadeUp {
  0% {
    opacity: 0;
    /* 元の位置からさらに20px下に下げた状態からスタート */
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


#mainContents .topMain {
  width: 100%;
  background-image: url("../img/top/top_bk01.jpg");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #mainContents .topMain {
    background-image: url("../img/top/top_bk01_sp.jpg");
  }
}

#mainContents .topMain .topMain_News {
  width: 1040px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .topMain .topMain_News .top_Title {
  width: 100%;
}
#mainContents .topMain .topMain_News .top_Title h3 {
  font-family: "Roboto", sans-serif;
  font-size: 8.0rem;
  font-weight: 300;
  color: #717171;
}
#mainContents .topMain .topMain_News .top_Title p {
  padding: 15px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0062A0
}
#mainContents .topMain .topMain_News .top_List {
  width: 100%;
  padding: 60px 0 0;
}
#mainContents .topMain .topMain_News .top_List ul {
  list-style-type: none;
  border-top: 1px solid #82CDE6;
}
#mainContents .topMain .topMain_News .top_List ul li {
  position: relative;
}
#mainContents .topMain .topMain_News .top_List ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 65px 100px 40px 0;
  border-bottom: 1px solid #82CDE6;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
#mainContents .topMain .topMain_News .top_List ul li a:hover {
  background-color: #F0FBFF;
}
#mainContents .topMain .topMain_News .top_List ul li.iconLink::after {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .topMain .topMain_News .top_List ul li.iconPDF::after {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 24px;
  height: 30px;
  margin: -15px 0 0 0;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .topMain .topMain_News .top_List ul li.iconBlank::after {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 25px;
  height: 25px;
  margin: -12px 0 0 0;
  background-image: url("../img/icon11.svg");
  background-size: cover;
  content: "";
}
#mainContents .topMain .topMain_News .top_List ul li p {
  display: inline-block;
  padding: 0 0 0 240px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
#mainContents .topMain .topMain_News .top_List ul li p:hover {
  text-decoration: none;
}
#mainContents .topMain .topMain_News .top_List ul li span.date {
  position: absolute;
  left: 20px;
  /* top: 68px; */
  top: 55px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0062A0;
}
#mainContents .topMain .topMain_News .top_List ul li span.cate {
  position: absolute;
  left: 240px;
  top: 33px;
  padding: 5px 15px 7px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #0062A0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.0;
  color: #FFF;
}

#mainContents .topMain .topMain_News .link01 {
  width: 296px;
  height: 60px;
  padding: 80px 0 0 0;
}
#mainContents .topMain .topMain_News .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 0 0;
  background-color: #0062A0;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .topMain .topMain_News .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topMain .topMain_News {
    width: calc(100% - 40px);
    padding: 90px 0 0;
  }
  #mainContents .topMain .topMain_News .top_Title h3 {
    font-size: 5.0rem;
  }
  #mainContents .topMain .topMain_News .top_Title p {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .topMain .topMain_News .top_List {
    padding: 60px 0 0;
  }
  #mainContents .topMain .topMain_News .top_List ul li a {
    padding: 55px 20px;
  }
  #mainContents .topMain .topMain_News .top_List ul li.iconLink::after,
  #mainContents .topMain .topMain_News .top_List ul li.iconPDF::after,
  #mainContents .topMain .topMain_News .top_List ul li.iconBlank::after {
    left: 20px;
    top: auto;
    margin: 0;
    bottom: 15px;
  }
  #mainContents .topMain .topMain_News .top_List ul li p {
    padding: 0;
  }
  #mainContents .topMain .topMain_News .top_List ul li span.date {
    left: 20px;
    top: 25px;
  }
  #mainContents .topMain .topMain_News .top_List ul li span.cate {
    left: 134px;
    top: 21px;
  }
  #mainContents .topMain .topMain_News .link01 {
    width: 296px;
    height: 60px;
    margin: 0 auto;
    padding: 70px 0 0 0;
  }
}


#mainContents .topMain .topMain_About {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding: 200px 0 0;
}
#mainContents .topMain .topMain_About .top_Title {
  width: 100%;
}
#mainContents .topMain .topMain_About .top_Title h3 {
  font-family: "Roboto", sans-serif;
  font-size: 8.0rem;
  font-weight: 300;
  color: #717171;
}
#mainContents .topMain .topMain_About .top_Title p {
  padding: 15px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0062A0
}

#mainContents .topMain .topMain_About .textBox {
  width: 436px;
  padding: 35px 0 0;
}
#mainContents .topMain .topMain_About .textBox p {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .topMain .topMain_About .imgBox {
  position: absolute;
  left: 530px;
  top: 276px;
  width: 459px;
  height: 345px;
}
#mainContents .topMain .topMain_About .imgBox img {
  width: 100%;
  height: auto;
}
#mainContents .topMain .topMain_About .imgBox::before {
  position: absolute;
  left: -101px;
  top: -117px;
  width: 174px;
  height: 182px;
  background-image: url("../img/top/top_about_icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .topMain .topMain_About.fade_on .imgBox::before {
  /* アニメーションの設定 */
  opacity: 0; /* 最初は透明 */
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.5s; /* 0.5秒遅らせて開始 */
}
/* アニメーションの定義 */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 20px下から開始 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 元の位置へ */
  }
}
#mainContents .topMain .topMain_About .link01 {
  width: 296px;
  height: 60px;
  padding: 80px 0 0 0;
}
#mainContents .topMain .topMain_About .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 0 0;
  background-color: #0062A0;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .topMain .topMain_About .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}



@media only screen and (max-width: 767px) {
  #mainContents .topMain .topMain_About {
    width: calc(100% - 40px);
    padding: 100px 0 0;
  }
  #mainContents .topMain .topMain_About .top_Title h3 {
    font-size: 5.0rem;
  }
  #mainContents .topMain .topMain_About .top_Title p {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }



  #mainContents .topMain .topMain_About .textBox {
    width: 100%;
    padding: 55px 0 0;
    box-sizing: border-box;
  }
  #mainContents .topMain .topMain_About .textBox p {
    font-size: 2.0rem;
  }
  #mainContents .topMain .topMain_About .imgBox {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 60px 0 0;
  }
  #mainContents .topMain .topMain_About .imgBox::before {
    left: -15px;
    top: 13px;
    width: 80px;
    height: 84px;
  }
  #mainContents .topMain .topMain_About .imgBox img {
    padding: 0 0 0 30px;
    box-sizing: border-box;
  }
  #mainContents .topMain .topMain_About .link01 {
    width: 296px;
    height: 60px;
    margin: 0 auto;
    padding: 70px 0 0 0;
  }
}


#mainContents .topMain .topMain_Business {
  position: relative;
  width: 1200px;
  margin: 180px auto 0;
  padding: 100px 80px;
  background-color: #FFF;
  border-radius: 30px;
  box-sizing: border-box;
}
#mainContents .topMain .topMain_Business .top_Title {
  width: 100%;
}
#mainContents .topMain .topMain_Business .top_Title h3 {
  font-family: "Roboto", sans-serif;
  font-size: 8.0rem;
  font-weight: 300;
  color: #717171;
}
#mainContents .topMain .topMain_Business .top_Title p {
  padding: 15px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0062A0
}

#mainContents .topMain .topMain_Business .textBox {
  width: 436px;
  padding: 35px 0 0;
}
#mainContents .topMain .topMain_Business .textBox p {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .topMain .topMain_Business .imgBox {
  position: absolute;
  left: 530px;
  top: 72px;
  width: 646px;
  height: 415px;
}
#mainContents .topMain .topMain_Business .imgBox img {
  width: 100%;
  height: auto;
}
#mainContents .topMain .topMain_Business .link01 {
  width: 296px;
  height: 60px;
  padding: 80px 0 0 0;
}
#mainContents .topMain .topMain_Business .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 0 0;
  background-color: #0062A0;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .topMain .topMain_Business .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topMain .topMain_Business {
    width: calc(100% - 40px);
    margin: 100px auto 0;
    padding: 70px 0;
  }
  #mainContents .topMain .topMain_Business .top_Title h3 {
    padding: 0 20px;
    font-size: 5.0rem;
  }
  #mainContents .topMain .topMain_Business .top_Title p {
    padding: 10px 20px 0;
    font-size: 1.8rem;
  }

  #mainContents .topMain .topMain_Business .textBox {
    width: 100%;
    padding: 55px 20px 0;
    box-sizing: border-box;
  }
  #mainContents .topMain .topMain_Business .textBox p {
    font-size: 2.0rem;
  }
  #mainContents .topMain .topMain_Business .imgBox {
    position: static;
    width: 100%;
    height: auto;
    padding: 20px 0 0;
  }

  #mainContents .topMain .topMain_Business .link01 {
    width: 296px;
    height: 60px;
    margin: 0 auto;
    padding: 70px 0 0 0;
  }
}


#mainContents .topMain .topMain_History {
  position: relative;
  width: 1040px;
  margin: 210px auto 0;
  padding: 0 0 290px;
}
#mainContents .topMain .topMain_History::after {
  position: absolute;
  right: -85px;
  bottom: 197px;
  width: 286px;
  height: 306px;
  background-image: url("../img/top/top_history_icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .topMain .topMain_History::before {
  position: absolute;
  z-index: 10;
  left: -123px;
  bottom: -1px;
  width: 818px;
  height: 114px;
  background-image: url("../img/top/top_history_icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .topMain .topMain_History_inner {
  position: relative;
  padding: 150px 0 120px;
  background-color: #FFF;
  border-radius: 0 30px 30px 0;
  box-sizing: border-box;
  background: linear-gradient(to right, #0062A0, #82CDE6);
}
#mainContents .topMain .topMain_History_inner::before {
  position: absolute;
  right: 1040px;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #0062A0;
  content: "";
}
#mainContents .topMain .topMain_History_inner h3 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #FFF;
}
#mainContents .topMain .topMain_History_inner p {
  width: 524px;
  padding: 50px 0 0;
  font-size: 2.0rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.8;
}

#mainContents .topMain .topMain_History_inner .imgBox {
  position: absolute;
  right: 0;
  top: 20px;
  width: 518px;
  height: 516px;
  animation: floating 2.0s ease-in-out infinite alternate;
}
#mainContents .topMain .topMain_History_inner .imgBox img {
  width: 100%;
  height: auto;
}
/* --- 上下に動くアニメーションの定義 --- */
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

#mainContents .topMain .topMain_History_inner .link01 {
  position: relative;
  width: 296px;
  height: 60px;
  padding: 80px 0 0 0;
}
#mainContents .topMain .topMain_History_inner .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 0 0;
  background-color: #FFF;
  box-sizing: border-box;
  border-radius: 50px;
  box-shadow: 0px 0px 12px 3px rgba(130, 205, 230, 0.5);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062A0;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .topMain .topMain_History_inner .link01 a:hover {
  background-color: #0062A0;
  text-decoration: none;
  color: #FFF;
}

@media only screen and (max-width: 767px) {
  #mainContents .topMain .topMain_History {
    width: calc(100% - 20px);
    margin: 110px 0 0;
    padding: 0 0 200px;
    box-sizing: border-box;
  }
  #mainContents .topMain .topMain_History::after {
    z-index: 10;
    right: -28px;
    bottom: 138px;
    width: 167px;
    height: 172px;
  }
  #mainContents .topMain .topMain_History::before {
    left: auto;
    right: -185px;
    bottom: auto;
    top: 572px;
    width: 424px;
    height: 59px;
    transform: rotate(-90deg);
  }
  #mainContents .topMain .topMain_History_inner {
    padding: 110px 0;
  }
  #mainContents .topMain .topMain_History_inner::before {
    display: none;
  }
  #mainContents .topMain .topMain_History_inner h3 {
    padding: 0 0 0 20px;
    font-size: 3.0rem;
    line-height: 1.4;
  }
  #mainContents .topMain .topMain_History_inner p {
    width: calc(100% - 40px);
    padding: 50px 0 0 20px;
  }

  #mainContents .topMain .topMain_History_inner .imgBox {
    position: static;
    width: 100%;
    height: auto;
    padding: 40px 0 0;
  }

  #mainContents .topMain .topMain_History_inner .link01 {
    width: 296px;
    height: 60px;
    margin: 0 auto;
    padding: 70px 0 0 0;
  }
}


/*==========================================
 共通のスタイル
===========================================*/
#mainContents .layoutTyp01 {
  width: 1040px;
  margin: 0 auto;
  padding: 145px 0 300px;
}
#mainContents .layoutTyp01 h3 {
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .layoutTyp01 .contentBox {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .layoutTyp01 .contentBox ul {
  list-style-type: none;
  border-top: 1px solid #82CDE6;
}
#mainContents .layoutTyp01 .contentBox ul li {
  position: relative;
}
#mainContents .layoutTyp01 .contentBox ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 65px 100px 40px 0;
  border-bottom: 1px solid #82CDE6;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp01 .contentBox ul li a:hover {
  background-color: #F0FBFF;
}
#mainContents .layoutTyp01 .contentBox ul li.iconLink::after {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .contentBox ul li.iconPDF::after {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 24px;
  height: 30px;
  margin: -15px 0 0 0;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .contentBox ul li.iconBlank::after {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 25px;
  height: 25px;
  margin: -12px 0 0 0;
  background-image: url("../img/icon11.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .contentBox ul li p {
  display: inline-block;
  padding: 0 0 0 240px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
#mainContents .layoutTyp01 .contentBox ul li p:hover {
  text-decoration: none;
}
#mainContents .layoutTyp01 .contentBox ul li span.date {
  position: absolute;
  left: 20px;
  /* top: 68px; */
  top: 55px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0062A0;
}
#mainContents .layoutTyp01 .contentBox ul li span.cate {
  position: absolute;
  left: 240px;
  top: 33px;
  padding: 5px 15px 7px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #0062A0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.0;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp01 {
    width: calc(100% - 40px);
    padding: 130px 0 150px;
  }
  #mainContents .layoutTyp01 h3 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp01 .contentBox {
    padding: 10px 0 0;
  }
  #mainContents .layoutTyp01 .contentBox ul li a {
    padding: 55px 20px;
  }
  #mainContents .layoutTyp01 .contentBox ul li.iconLink::after,
  #mainContents .layoutTyp01 .contentBox ul li.iconPDF::after,
  #mainContents .layoutTyp01 .contentBox ul li.iconBlank::after {
    left: 20px;
    top: auto;
    margin: 0;
    bottom: 15px;
  }
  #mainContents .layoutTyp01 .contentBox ul li p {
    padding: 0;
  }
  #mainContents .layoutTyp01 .contentBox ul li span.date {
    left: 20px;
    top: 25px;
  }
  #mainContents .layoutTyp01 .contentBox ul li span.cate {
    left: 134px;
    top: 21px;
  }
}

#mainContents .layoutTyp02 {
  width: 980px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp02 h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
}
#mainContents .layoutTyp02 p.date {
  margin: 40px 0 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: #0062A0
}
#mainContents .layoutTyp02 p.date span.cate {
  position: absolute;
  left: 131px;
  top: -5px;
  padding: 5px 15px 7px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #0062A0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.0;
  color: #FFF;
}

#mainContents .layoutTyp02 .entry {
  width: 100%;
  margin: 55px 0 0;
  padding: 55px 0 0;
  border-top: 1px solid #82CDE6;
}
#mainContents .layoutTyp02 .entry h3 {
  padding: 20px 0 40px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp02 .entry h4 {
  padding: 20px 0 40px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp02 .entry h5 {
  padding: 20px 0 40px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp02 .entry .entry_main {
  width: 100%;
  margin: 0 0 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid #717171;
}

#mainContents .layoutTyp02 .entry p {
  padding: 0 0 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.0;
}
#mainContents .layoutTyp02 .entry p span.red {
  color: #FF0000;
}
#mainContents .layoutTyp02 .entry p a {
  text-decoration: underline;
  color: #0062A0;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp02 .entry p a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .layoutTyp02 .entry ul {
  padding: 0 0 30px 30px;
  list-style-type: none;
}
#mainContents .layoutTyp02 .entry ul li {
  position: relative;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
#mainContents .layoutTyp02 .entry ul li::before {
  position: absolute;
  left: -30px;
  top: 0;
  content: "●";
}

#mainContents .layoutTyp02 .entry ol {
  padding: 0 0 30px 20px;
  list-style-type: none;
}
#mainContents .layoutTyp02 .entry ol li {
  position: relative;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
#mainContents .layoutTyp02 .entry ol li::before {
  position: absolute;
  left: -20px;
  top: 0;
}
#mainContents .layoutTyp02 .entry ol li:nth-child(1):before { content: "1."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(2):before { content: "2."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(3):before { content: "3."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(4):before { content: "4."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(5):before { content: "5."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(6):before { content: "6."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(7):before { content: "7."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(8):before { content: "8."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(9):before { content: "9."; }
#mainContents .layoutTyp02 .entry ol li:nth-child(10):before { content: "10."; }


#mainContents .layoutTyp02 .entry .youtubeBox {
	position: relative;
  margin: 0 0 50px;
	padding-top: 56.25%; /* 16:9 アスペクト比 */
	height: 0;
}

#mainContents .layoutTyp02 .entry .youtubeBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#mainContents .layoutTyp02 .entry .imgBox01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp02 .entry .imgBox01 .column {
  width: 49%;
}
#mainContents .layoutTyp02 .entry img {
  max-width: 100%;
  padding: 0 0 30px;
}
#mainContents .layoutTyp02 .entry .botLink01 {
  width: 336px;
  margin: 0 auto;
  padding: 50px 0;
}
#mainContents .layoutTyp02 .entry .botLink01 a {
  position: relative;
  display: block;
  width: 336px;
  height: 60px;
  padding: 21px 0 0;
  background-color: #FFF;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #0062A0;
  box-shadow: 0px 0px 12px 3px rgba(130, 205, 230, 0.5);
  transition: all 0.3s ease;
}
#mainContents .layoutTyp02 .entry .botLink01 a:hover {
  background-color: #0062A0;
  text-decoration: none;
  color: #FFF;
}

#mainContents .layoutTyp02 .entry .textLink01 {
  padding: 0 0 30px;
}
#mainContents .layoutTyp02 .entry .textLink01 a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  text-decoration: underline;
}
#mainContents .layoutTyp02 .entry .textLink01 a::after {
  position: absolute;
  right: -30px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp02 .entry .textLink01 a:hover {
  opacity: 0.7;
}

#mainContents .layoutTyp02 .entry .textLink02 {
  padding: 0 0 30px;
}
#mainContents .layoutTyp02 .entry .textLink02 a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  text-decoration: underline;
}
#mainContents .layoutTyp02 .entry .textLink02 a:hover {
  opacity: 0.7;
}

#mainContents .layoutTyp02 .entry table {
  width: 100%;
  margin: 30px 0 30px;
  border-top: 1px solid #0062A0;
  border-right: 1px solid #0062A0;
}
#mainContents .layoutTyp02 .entry table tr {
  border-bottom: 1px solid #0062A0;
}
#mainContents .layoutTyp02 .entry table tr th {
  width: 190px;
  padding: 25px;
  border-left: 1px solid #0062A0;
  background-color: #F0FBFF;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.6;
}
#mainContents .layoutTyp02 .entry table tr td {
  padding: 25px;
  border-left: 1px solid #0062A0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}


#mainContents .layoutTyp02 .link01 {
  width: 336px;
  margin: 0 auto;
  padding: 70px 0;
}
#mainContents .layoutTyp02 .link01 a {
  position: relative;
  display: block;
  width: 336px;
  height: 60px;
  padding: 21px 0 0;
  background-color: #0062A0;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp02 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp02 {
    width: calc(100% - 80px);
  }
  #mainContents .layoutTyp02 h2 {
    font-size: 2.4rem;
  }
  #mainContents .layoutTyp02 p.date {
    margin: 30px 0 0;
  }
  #mainContents .layoutTyp02 p.date span.cate {
    left: 0;
    top: 30px;
  }

  #mainContents .layoutTyp02 .entry {
    margin: 80px 0 0;
    padding: 35px 0 0;
  }
  #mainContents .layoutTyp02 .entry h3 {
    padding: 20px 0 30px;
    font-size: 2.8rem;
  }
  #mainContents .layoutTyp02 .entry h4 {
    padding: 20px 0 30px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp02 .entry h5 {
    padding: 20px 0 30px;
    font-size: 1.7rem;
  }

  #mainContents .layoutTyp02 .entry .imgBox01 .column {
    width: 100%;
  }
  #mainContents .layoutTyp02 .entry img {
    max-width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp02 .entry .botLink01 {
    width: 300px;
    padding: 40px 0;
  }
  #mainContents .layoutTyp02 .entry .botLink01 a {
    width: 300px;
    height: 58px;
    padding: 21px 0 0;
    font-size: 1.6rem;
  }

  #mainContents .layoutTyp02 .entry table {
    width: 100%;
    margin: 30px 0 30px;
    border-top: 1px solid #0062A0;
    border-right: 1px solid #0062A0;
  }
  #mainContents .layoutTyp02 .entry table tr {
    border-bottom: 1px solid #0062A0;
  }
  #mainContents .layoutTyp02 .entry table tr th {
    width: 110px;
    padding: 20px;
    font-size: 1.5rem;
  }
  #mainContents .layoutTyp02 .entry table tr td {
    padding: 20px;
    font-size: 1.4rem;
  }

  #mainContents .layoutTyp02 .link01 {
    width: 300px;
    padding: 50px 0;
  }
  #mainContents .layoutTyp02 .link01 a {
    width: 300px;
    height: 58px;
    padding: 21px 0 0;
    font-size: 1.6rem;
  }
}



#mainContents .layoutTyp03 {
  width: 1200px;
  margin: 70px auto 0;
  padding: 80px 100px 60px;
  box-sizing: border-box;
  background-color: #F3FAFB;
}
#mainContents .layoutTyp03 h3 {
  font-size: 3.2rem;
  font-weight: 700;
}
#mainContents .layoutTyp03 p {
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp03 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #FFF;
  }
  #mainContents .layoutTyp03 h3 {
    font-size: 2.2rem;
    color: #0062A0;
    text-align: center;
  }
  #mainContents .layoutTyp03 p {
    padding: 20px 0 0;
    font-size: 1.6rem;
    text-align: center;
  }
}

#mainContents .layoutTyp04 {
  width: 1200px;
  margin: 0 auto;
  padding: 0 80px 40px;
  box-sizing: border-box;
  background-color: #F3FAFB;
}
#mainContents .layoutTyp04 .columnBox {
  width: 1040px;
  margin: 0 0 60px;
  padding: 60px 30px;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp04 .columnBox .column_L {
  width: 480px;
}
#mainContents .layoutTyp04 .columnBox .column_L h4 {
  font-size: 2.6rem;
  font-weight: 700;
}
#mainContents .layoutTyp04 .columnBox .column_L .link01 {
  padding: 40px 0 0 0;
}
#mainContents .layoutTyp04 .columnBox .column_L .link01 a img {
  width: 230px;
  height: auto;
}
#mainContents .layoutTyp04 .columnBox .column_R {
  width: 500px;
}
#mainContents .layoutTyp04 .columnBox .column_R p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp04 .columnBox .column_R p.text01 {
  padding: 30px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp04 .columnBox .column_R p.tel {
  padding: 15px 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0062A0;
}
#mainContents .layoutTyp04 .columnBox .column_R .link02 {
  width: 250px;
  padding: 20px 0 0 0;
}
#mainContents .layoutTyp04 .columnBox .column_R .link02 a {
  display: block;
  width: 100%;
  height: 50px;
  position: relative;
  padding: 17px 0 0 64px;
  box-sizing: border-box;
  background: linear-gradient(to right, #0062A0, #82CDE6);
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp04 .columnBox .column_R .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp04 .columnBox .column_R .link02 a::before {
  position: absolute;
  left: 32px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -10px 0 0;
  background-image: url("../img/icon14.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp04 {
    width: calc(100% - 40px);
    padding: 40px 20px 20px;
  }
  #mainContents .layoutTyp04 .columnBox {
    width: 100%;
    margin: 0 0 40px;
    padding: 35px 20px;
  }
  #mainContents .layoutTyp04 .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp04 .columnBox .column_L h4 {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp04 .columnBox .column_L .link01 {
    padding: 20px 0 0 0;
  }
  #mainContents .layoutTyp04 .columnBox .column_L .link01 a img {
    width: 100%;
    height: auto;
  }
  #mainContents .layoutTyp04 .columnBox .column_R {
    width: 100%;
  }
  #mainContents .layoutTyp04 .columnBox .column_R p {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp04 .columnBox .column_R p.text01 {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp04 .columnBox .column_R p.tel {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp04 .columnBox .column_R .link02 {
    width: 250px;
    margin: 0 auto;
    padding: 20px 0 0 0;
  }
  #mainContents .layoutTyp04 .columnBox .column_R .link02 a {
    display: block;
    width: 100%;
    height: 50px;
    position: relative;
    padding: 17px 0 0 64px;
    box-sizing: border-box;
    background: linear-gradient(to right, #0062A0, #82CDE6);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFF;
    transition: all 0.3s ease;
  }
  #mainContents .layoutTyp04 .columnBox .column_R .link02 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #mainContents .layoutTyp04 .columnBox .column_R .link02 a::before {
    position: absolute;
    left: 32px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin: -10px 0 0;
    background-image: url("../img/icon14.svg");
    background-size: cover;
    content: "";
  }
}


#mainContents .layoutTyp05 {
  width: 1040px;
  margin: 130px auto 0;
  padding: 0 0 50px;
}
#mainContents .layoutTyp05 h4 {
  position: relative;
  margin: 0 0 35px;
  padding: 0 0 0 50px;
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .layoutTyp05 h4::before {
  position: absolute;
  left: 23px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0;
  border-radius: 10px;
  background-color: #FFA300;
  content: "";
}
#mainContents .layoutTyp05 .columnBox {
  position: relative;
  width: 100%;
  margin: 0 0 85px;
  padding: 40px 0;
  background-color: #FFF3DE;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}
#mainContents .layoutTyp05 .columnBox::before {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 172px;
  height: 145px;
  background-image: url("../img/contact/contact_bk01.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .layoutTyp05 .columnBox:hover::before {
  bottom: -5px;
}
#mainContents .layoutTyp05 .columnBox p {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}
#mainContents .layoutTyp05 .columnBox p.tel {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFA300;
}
#mainContents .layoutTyp05 .columnBox .linkBox {
  width: 550px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp05 .columnBox .link01,
#mainContents .layoutTyp05 .columnBox .link02,
#mainContents .layoutTyp05 .columnBox .link03 {
  width: 250px;
  margin: 0 auto;
  padding: 25px 0 0 0;
}
#mainContents .layoutTyp05 .columnBox .link01 a,
#mainContents .layoutTyp05 .columnBox .link02 a,
#mainContents .layoutTyp05 .columnBox .link03 a {
  display: block;
  width: 100%;
  height: 50px;
  position: relative;
  padding: 17px 0 0 0;
  box-sizing: border-box;
  background: linear-gradient(to right, #FFA300, #FFDA99);
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp05 .columnBox .link02 a {
  padding: 17px 0 0 21px;
}
#mainContents .layoutTyp05 .columnBox .link03 a {
  padding: 17px 0 0 15px;
}
#mainContents .layoutTyp05 .columnBox .link01 a:hover,
#mainContents .layoutTyp05 .columnBox .link02 a:hover,
#mainContents .layoutTyp05 .columnBox .link03 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp05 .columnBox .link01 a::before,
#mainContents .layoutTyp05 .columnBox .link02 a::before,
#mainContents .layoutTyp05 .columnBox .link03 a::before {
  position: absolute;
  left: 25px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0;
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp05 .columnBox .link01 a::before,
#mainContents .layoutTyp05 .columnBox .link03 a::before {
  background-image: url("../img/icon15.svg");
}
#mainContents .layoutTyp05 .columnBox .link02 a::before {
  background-image: url("../img/icon14.svg");
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp05 {
    width: calc(100% - 40px);
    margin: 100px auto 0;
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp05 h4 {
    margin: 0 0 30px;
    padding: 0 0 0 44px;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp05 .columnBox {
    margin: 0 0 60px;
    padding: 30px 0;
  }
  #mainContents .layoutTyp05 .columnBox::before {
    right: 0;
    width: 53px;
    height: 68px;
    background-image: url("../img/contact/contact_bk01_sp.svg");
  }
  #mainContents .layoutTyp05 .columnBox:hover::before {
    bottom: -5px;
  }
  #mainContents .layoutTyp05 .columnBox p {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp05 .columnBox p.tel {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp05 .columnBox .linkBox {
    width: 250px;
  }
  #mainContents .layoutTyp05 .columnBox .link01,
  #mainContents .layoutTyp05 .columnBox .link02,
  #mainContents .layoutTyp05 .columnBox .link03 {
    padding: 20px 0 0 0;
  }
}

#mainContents .layoutTyp06 {
  width: 980px;
  margin: 0 auto;
  padding: 140px 0 150px;
}
#mainContents .layoutTyp06 p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  color: #707070;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp06 {
    width: calc(100% - 80px);
    padding: 100px 0 100px;
  }
}


#mainContents .layoutTyp07 {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp07::before {
  position: absolute;
  right: -84px;
  bottom: -52px;
  width: 204px;
  height: 247px;
  background-image: url("../img/company/message_bk01.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp07 h3 {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.4;
}
#mainContents .layoutTyp07 .columnBox {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp07 .columnBox .column_L {
  width: 520px;
}
#mainContents .layoutTyp07 .columnBox .column_L h4 {
  padding: 0 0 40px;
  font-size: 3.0rem;
  font-weight: 600;
  color: #0062A0;
  line-height: 1.6;
}
#mainContents .layoutTyp07 .columnBox .column_L p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp07 .columnBox .column_L .text01 {
  display: none;
}
#mainContents .layoutTyp07 .columnBox .column_R {
  width: 458px;
}
#mainContents .layoutTyp07 .columnBox .column_R img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp07 .columnBox .column_R .text01 {
  display: block;
  text-align: right;
}
#mainContents .layoutTyp07 .columnBox .column_R .text01 p {
  padding: 30px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
}
#mainContents .layoutTyp07 .columnBox .column_R .text01 h5 {
  padding: 15px 0 0;
  font-size: 2.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp07 {
    width: calc(100% - 40px);
    padding: 80px 0 20px;
  }
  #mainContents .layoutTyp07::before {
    right: -22px;
    bottom: -57px;
    width: 191px;
    height: 231px;
  }
  #mainContents .layoutTyp07 h3 {
    font-size: 3.4rem;
    padding: 0 15px;
  }
  #mainContents .layoutTyp07 p.text01 {
    padding: 20px 15px 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp07 .columnBox {
    padding: 60px 0 0;
  }
  #mainContents .layoutTyp07 .columnBox .column_L {
    width: calc(100% - 30px);
    margin: 0 auto;
    order: 2;
  }
  #mainContents .layoutTyp07 .columnBox .column_L h4 {
    padding: 0 0 20px;
    font-size: 2.8rem;
  }
  #mainContents .layoutTyp07 .columnBox .column_L p {
    padding: 0 0 20px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp07 .columnBox .column_L .text01 {
    display: block;
    text-align: right;
  }
  #mainContents .layoutTyp07 .columnBox .column_L .text01 p {
    padding: 30px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp07 .columnBox .column_L .text01 h5 {
    padding: 15px 0 0;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp07 .columnBox .column_R {
    width: 100%;
    padding: 0 0 80px;
    order: 1;
  }
  #mainContents .layoutTyp07 .columnBox .column_R .text01 {
    display: none;
  }
}



#mainContents .layoutTyp08 {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding: 150px 0 0;
}
#mainContents .layoutTyp08 h3 {
  font-family: "Roboto", sans-serif;
  font-size: 3.0rem;
  font-weight: 400;
  color: #0062A0;
}
#mainContents .layoutTyp08 table {
  width: 100%;
  margin: 30px 0 0;
}
#mainContents .layoutTyp08 table tr {
  border-bottom: 1px solid #BCBCBC;
}
#mainContents .layoutTyp08 table tr:last-child {
  border-bottom: none;
}
#mainContents .layoutTyp08 table tr th {
  width: 210px;
  padding: 30px 0;
  font-size: 2.0rem;
  font-weight: 500;
  color: #0062A0;
  line-height: 1.6;
  text-align: left;
}
#mainContents .layoutTyp08 table tr td {
  padding: 30px 0;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp08 {
    width: calc(100% - 80px);
    padding: 80px 0 0;
  }
  #mainContents .layoutTyp08 h3 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp08 table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp08 table tr td {
    display: block;
    padding: 10px 0 20px;
    font-size: 1.6rem;
  }
}


#mainContents .layoutTyp09 {
  width: 100%;
  margin: 150px 0 0;
  padding: 80px 0;
  background-color: #F0FBFF;
}
#mainContents .layoutTyp09 .column {
  width: 1040px;
  margin: 0 auto 80px;
  padding: 35px 30px;
  background-color: #FFF;
  box-sizing: border-box;
}
#mainContents .layoutTyp09 .column:last-child {
  margin: 0 auto;
}
#mainContents .layoutTyp09 .column h3 {
  padding: 0 0 30px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0062A0;
}
#mainContents .layoutTyp09 .column p {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp09 .column ul {
  padding: 0 0 0 30px;
  list-style-type: none;
}
#mainContents .layoutTyp09 .column ul li {
  position: relative;
  padding: 0 0 45px;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp09 .column ul li::before {
  position: absolute;
  left: -30px;
  top: 8px;
  width: 20px;
  height: 20px;
  padding: 1px 0 0;
  box-sizing: border-box;
  background-color: #0062A0;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  line-height: 1.0;
}
#mainContents .layoutTyp09 .column ul li:nth-child(1):before { content: "1"; }
#mainContents .layoutTyp09 .column ul li:nth-child(2):before { content: "2"; }
#mainContents .layoutTyp09 .column ul li:nth-child(3):before { content: "3"; }
#mainContents .layoutTyp09 .column ul li:nth-child(4):before { content: "4"; }
#mainContents .layoutTyp09 .column ul li:nth-child(5):before { content: "5"; }

#mainContents .layoutTyp09 .column p.text01 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: right;
}
#mainContents .layoutTyp09 .column table {
  width: 100%;
}
#mainContents .layoutTyp09 .column table tr th {
  width: 230px;
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
  text-align: left;
}
#mainContents .layoutTyp09 .column table tr td {
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp09 .column img {
  padding: 20px 0 0;
  width: 334px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp09 {
    margin: 55px 0 0;
    padding: 50px 0;
  }
  #mainContents .layoutTyp09 .column {
    width: calc(100% - 40px);
    margin: 0 auto 50px;
    padding: 20px;
  }
  #mainContents .layoutTyp09 .column h3 {
    padding: 0 0 20px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp09 .column p {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp09 .column ul {
    padding: 0 0 0 30px;
    list-style-type: none;
  }
  #mainContents .layoutTyp09 .column ul li {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp09 .column ul li::before {
    top: 5px;
    padding: 2px 0 0;
    font-size: 1.4rem;
  }

  #mainContents .layoutTyp09 .column p.text01 {
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp09 .column table {
    width: 100%;
  }
  #mainContents .layoutTyp09 .column table tr th {
    width: 132px;
    padding: 0 0 15px;
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp09 .column table tr td {
    padding: 0 0 15px;
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp09 .column img {
    padding: 20px 0 0;
    width: 100%;
  }
}


#mainContents .layoutTyp10 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 100px;
}
#mainContents .layoutTyp10::before {
  position: absolute;
  left: 0;
  top: 25px;
  width: 100%;
  height: 100%;
  background-color: #F0FBFF;
  content: "";
}
#mainContents .layoutTyp10 .pageNavi_box {
  position: relative;
  width: 980px;
  margin: 0 auto;
}
#mainContents .layoutTyp10 .pageNavi_box::before {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 24px;
  width: 100vw;
  height: 2px;
  margin: 0 0 0 -50vw;
  background-color: #0062A0;
  content: "";
}
#mainContents .layoutTyp10 .pageNavi_box ul {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #D5F4FF;
  border-radius: 8px;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp10 .pageNavi_box ul li {
  position: relative;
  padding: 0 60px 0 34px;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp10 .pageNavi_box ul li:hover {
  transform: translateY(3px);
}
#mainContents .layoutTyp10 .pageNavi_box ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px 0 0;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  color: #0062A0;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp10 .pageNavi_box ul li a:hover {
  text-decoration: none;
}
#mainContents .layoutTyp10 .pageNavi_box ul li a::after {
  position: absolute;
  right: -28px;
  top: 50%;
  width: 19px;
  height: 19px;
  margin: -9px 0 0;
  background-image: url("../img/icon17.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp10 .pageNavi_box ul li:first-child a::before {
  display: none;
}
#mainContents .layoutTyp10 .pageNavi_box ul li a::before {
  position: absolute;
  left: -45px;
  top: 50%;
  width: 1px;
  height: 23px;
  margin: -11px 0 0;
  background-color: #0062A0;
  content: "";
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp10 {
    width: 100%;
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp10::before {
    top: 80px;
  }
  #mainContents .layoutTyp10 .pageNavi_box {
    position: relative;
    width: calc(100% - 80px);
  }
  #mainContents .layoutTyp10 .pageNavi_box::before {
    top: 50%;
    margin: 0 0 0 -50vw;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul {
    height: auto;
    padding: 20px 20px 10px;
    box-sizing: border-box;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li {
    width: 48%;
    padding: 0 0 20px;
    transition: all 0.3s ease;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li:hover {
    transform: translateY(0);
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li a {
    padding: 0;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.4;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li a span {
    display: none;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li a::after {
    right: 10px;
    top: 8px;
    width: 14px;
    height: 14px;
    margin: -6px 0 0;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li a::before {
    left: 0;
    top: auto;
    bottom: -5px;
    width: 94%;
    height: 1px;
    margin: 0;
  }
  #mainContents .layoutTyp10 .pageNavi_box ul li:first-child a::before {
    display: block;
  }
}

#mainContents .layoutTyp10 .columnBox {
  position: relative;
  width: 1200px;
  margin: 80px auto 0;
}
#mainContents .layoutTyp10 .columnBox h3 {
  position: absolute;
  left: 80px;
  top: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp10 .columnBox .column {
  width: 850px;
  margin: 0 0 20px 350px;
  padding: 35px 30px 20px;
  background-color: #FFF;
  box-sizing: border-box;
  border: 2px solid #0062A0;
  border-radius: 10px;
}
#mainContents .layoutTyp10 .columnBox .column a {
  position: relative;
  display: block;
  padding: 0 0 15px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0062A0;
}
#mainContents .layoutTyp10 .columnBox .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp10 .columnBox .column a::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 34px;
  height: 35px;
  margin: -24px 0 0;
  background-image: url("../img/icon19.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp10 .columnBox .column a.open::after {
  background-image: url("../img/icon18.svg");
}

#mainContents .layoutTyp10 .columnBox .column .columnList {
  display: none;
}
#mainContents .layoutTyp10 .columnBox .column:first-of-type .columnList {
  display: block;
}
#mainContents .layoutTyp10 .columnBox .column ul {
  width: 100%;
  margin: 10px 0 0;
  padding: 25px 0 0 30px;
  box-sizing: border-box;
  border-top: 1px solid #82CDE6;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp10 .columnBox .column ul li {
  position: relative;
  width: 48%;
  padding: 0 0 15px 20px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp10 .columnBox .column ul li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #82CDE6;
  content: "";
}
#mainContents .layoutTyp10 .columnBox .column p {
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp10 .columnBox {
    width: calc(100% - 40px);
    margin: 50px auto 0;
  }
  #mainContents .layoutTyp10 .columnBox h3 {
    position: static;
    padding: 0 0 25px;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp10 .columnBox .column {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 35px 20px 20px;
  }
  #mainContents .layoutTyp10 .columnBox .column a {
    font-size: 1.8rem;
  }

  #mainContents .layoutTyp10 .columnBox .column ul {
    margin: 20px 0 0;
    padding: 20px 0 0 20px;
  }
  #mainContents .layoutTyp10 .columnBox .column ul li {
    width: 100%;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp10 .columnBox .column ul li::before {
    top: 6px;
  }
  #mainContents .layoutTyp10 .columnBox .column p {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }
}


#mainContents .layoutTyp11 {
  width: 980px;
  margin: 0 auto;
}
#mainContents .layoutTyp11 h3 {
  padding: 140px 0 20px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp11 p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp11 .text01 {
  width: 100%;
  margin: 35px 0 0;
  padding: 35px 35px 15px;
  background-color: #F0FBFF;
  border-radius: 10px;
  box-sizing: border-box;
}
#mainContents .layoutTyp11 .text01 ul {
  width: 100%;
  list-style-type: none;
}
#mainContents .layoutTyp11 .text01 ul li {
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  list-style-type: none;
}

#mainContents .layoutTyp11 h4 {
  position: relative;
  margin: 50px 0 10px;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0062A0;
}
#mainContents .layoutTyp11 h4::before {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0;
  background-color: #82CDE6;
  border-radius: 10px;
  content: "";
}
#mainContents .layoutTyp11 h5 {
  padding: 0 0 0 20px; 
  font-size: 2.4rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}

#mainContents .layoutTyp11 .text02 {
  width: 100%;
  margin: 35px 0 0;
  padding: 35px 35px 15px;
  background-color: #FFF;
  border: 1px solid #82CDE6;
  box-sizing: border-box;
}
#mainContents .layoutTyp11 .text02 h6 {
  padding: 0 0 15px; 
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.0;
}
#mainContents .layoutTyp11 .text02 h6.typ01 {
  margin: 15px 0 0;
  padding: 30px 0 15px;
  border-top: 1px solid #82CDE6; 
}

#mainContents .layoutTyp11 .text02 ul {
  width: 100%;
  list-style-type: none;
}
#mainContents .layoutTyp11 .text02 ul li {
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  list-style-type: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp11 {
    width: calc(100% - 80px);
  }
  #mainContents .layoutTyp11 h3 {
    padding: 80px 0 20px;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp11 p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
  }
  #mainContents .layoutTyp11 .text01 {
    margin: 30px 0 0;
    padding: 30px 20px 15px;
  }
  #mainContents .layoutTyp11 h4 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp11 h5 {
    font-size: 2.0rem;
    line-height: 1.6;
  }

  #mainContents .layoutTyp11 .text02 {
    margin: 30px 0 0;
    padding: 30px 20px 15px;
  }
}


#mainContents .layoutTyp12 {
  width: 980px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp12 p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

#mainContents .layoutTyp12 .columnBox {
  width: 100%;
  margin: 50px 0 0;
  padding: 35px;
  box-sizing: border-box;
  border: 1px solid #82CDE6;
}
#mainContents .layoutTyp12 .columnBox h3 {
  padding: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0062A0;
}
#mainContents .layoutTyp12 .columnBox h4 {
  padding: 0 0 30px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp12 .columnBox p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.0;
}
#mainContents .layoutTyp12 .columnBox p a {
  color: #0062A0;
  text-decoration: underline;
}
#mainContents .layoutTyp12 .columnBox p a:hover {
  opacity: 0.8;
}
#mainContents .layoutTyp12 p.text_Right {
  padding: 30px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.0;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp12 {
    width: calc(100% - 40px);
    padding: 80px 0 0;
  }
  #mainContents .layoutTyp12 p {
    padding: 0 20px;
  }

  #mainContents .layoutTyp12 .columnBox {
    margin: 30px 0 0;
    padding: 30px 20px;
  }
  #mainContents .layoutTyp12 .columnBox h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp12 .columnBox h4 {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp12 .columnBox p {
    padding: 0;
  }
}


#mainContents .layoutTyp13 {
  width: 1040px;
  margin: 0 auto;
  padding: 180px 0 0;
}
#mainContents .layoutTyp13 h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0062A0;
}
#mainContents .layoutTyp13 .columnBox {
  width: 100%;
  padding: 40px 0 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp13 .columnBox .column {
  width: 244px;
  margin: 0 21px 45px 0;
  padding: 0 0 10px;
  border: 1px solid #82CDE6;
  box-sizing: border-box;
  border-radius: 8px;
}
#mainContents .layoutTyp13 .columnBox .column:nth-child(4n) {
  margin: 0 0 45px 0;
}
#mainContents .layoutTyp13 .columnBox .column img {
  width: 242px;
  height: 105px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}
#mainContents .layoutTyp13 .columnBox .column h4 {
  padding: 15px 15px 0;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4;
}
#mainContents .layoutTyp13 .columnBox .column p {
  padding: 10px 15px 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
#mainContents .layoutTyp13 .columnBox .column h5 {
  position: relative;
  margin: 35px 0 0;
  padding: 0 15px 0 27px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.0;
}
#mainContents .layoutTyp13 .columnBox .column h5::before {
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 15px;
  background-color: #82CDE6;
  content: "";
}
#mainContents .layoutTyp13 .columnBox .column ul {
  width: 100%;
  padding: 20px 15px 0 15px;
  box-sizing: border-box;
  list-style-type: none;
}
#mainContents .layoutTyp13 .columnBox .column ul li {
  padding: 0 0 10px 25px;
}
#mainContents .layoutTyp13 .columnBox .column ul li a {
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp13 .columnBox .column ul li a::before {
  position: absolute;
  left: -23px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp13 {
    width: calc(100% - 40px);
    padding: 70px 0 0;
  }
  #mainContents .layoutTyp13 h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp13 .columnBox .column {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp13 .columnBox .column:nth-child(4n) {
    margin: 0 0 30px 0;
  }
  #mainContents .layoutTyp13 .columnBox .column img {
    width: 100%;
    height: auto;
  }
  #mainContents .layoutTyp13 .columnBox .column h4 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp13 .columnBox .column ul li a {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp13 .columnBox .column ul li a::before {
    top: 5px;
  }
}


#mainContents .layoutTyp14 {
  width: 980px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp14 h3 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp14 p{
  padding: 30px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp14 .imgBox {
  width: 100%;
  padding: 70px 0 0;
}
#mainContents .layoutTyp14 .imgBox h4 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .layoutTyp14 .imgBox img {
  width: 100%;
  height: auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp14 .imgBox .link01 {
  width: 720px;
  height: 240px;
  margin: 80px auto 0;
  padding: 40px 0 0;
  box-sizing: border-box;
  background-image: url("../img/contact/supplier_bk01.svg");
  background-size: cover;
  text-align: center;
}
#mainContents .layoutTyp14 .imgBox .link01 h5 {
  font-size: 3.6rem;
  font-weight: 600;
  color: #0062A0;
}
#mainContents .layoutTyp14 .imgBox .link01 p {
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp14 .imgBox .link01 a {
  position: relative;
  display: block;
  width: 250px;
  height: 50px;
  margin: 30px auto 0;
  padding: 18px 0 0 0;
  border-radius: 40px;
  box-sizing: border-box;
  background: linear-gradient(to right, #0062A0, #82CDE6);
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp14 .imgBox .link01 a::before {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon15.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp14 .imgBox .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp14 {
    width: calc(100% - 40px); 
    padding: 70px 0 0;
  }
  #mainContents .layoutTyp14 h3 {
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp14 p{
    padding: 55px 0 0;
  }
  #mainContents .layoutTyp14 .imgBox {
    padding: 100px 0 0;
  }
  #mainContents .layoutTyp14 .imgBox h4 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp14 .imgBox img {
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp14 .imgBox .link01 {
    width: 300px;
    height: 211px;
    margin: 80px auto 0;
    padding: 30px 0 0;
    background-image: url("../img/contact/supplier_bk01_sp.svg");
  }
  #mainContents .layoutTyp14 .imgBox .link01 h5 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp14 .imgBox .link01 p {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
}




#mainContents .layoutTyp15 {
  width: 1040px;
  margin: 0 auto;
  padding: 100px 0;
}
#mainContents .layoutTyp15 .column {
  width: 100%;
  margin: 0 0 40px;
  padding: 70px 30px 40px;
  border: 3px solid #82CDE6;
  border-radius: 10px;
  box-sizing: border-box;
}
#mainContents .layoutTyp15 .column h4 {
  position: relative;
  margin: 0 0 60px 0;
  padding: 0 0 0 20px;
  font-size: 2.2rem;
  font-weight: 500;
}
#mainContents .layoutTyp15 .column h4::before {
  position: absolute;
  left: 0;
  top: -5px;
  width: 3px;
  height: 35px;
  background-color: #82CDE6;
  content: "";
}
#mainContents .layoutTyp15 .column h5 {
  padding: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
#mainContents .layoutTyp15 .column p {
  padding: 0 0 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp15 .column p.text01 {
  padding: 30px 0 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

#mainContents .layoutTyp15 .column .columnBox_Sub {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp15 .column .columnBox_Sub .column_Sub {
  width: 50%;
}

#mainContents .layoutTyp15 .link01 {
  width: 720px;
  height: 240px;
  margin: 80px auto 0;
  padding: 40px 0 0;
  box-sizing: border-box;
  background-image: url("../img/contact/supplier_bk01.svg");
  background-size: cover;
  text-align: center;
}
#mainContents .layoutTyp15 .link01 h5 {
  font-size: 3.6rem;
  font-weight: 600;
  color: #0062A0;
}
#mainContents .layoutTyp15 .link01 p {
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp15 .link01 a {
  position: relative;
  display: block;
  width: 250px;
  height: 50px;
  margin: 30px auto 0;
  padding: 18px 0 0 0;
  border-radius: 40px;
  box-sizing: border-box;
  background: linear-gradient(to right, #0062A0, #82CDE6);
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp15 .link01 a::before {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon15.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp15 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp15 {
    width: calc(100% - 40px);
    padding: 80px 0 50px;
  }
  #mainContents .layoutTyp15 .column {
    padding: 70px 20px 30px;
  }
  #mainContents .layoutTyp15 .column h5 {
    line-height: 1.4;
  }
  #mainContents .layoutTyp15 .column p {
    padding: 0 0 30px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
  }
  #mainContents .layoutTyp15 .column .columnBox_Sub .column_Sub {
    width: 100%;
  }

  #mainContents .layoutTyp15 .link01 {
    width: 300px;
    height: 211px;
    margin: 80px auto 0;
    padding: 30px 0 0;
    background-image: url("../img/contact/supplier_bk01_sp.svg");
  }
  #mainContents .layoutTyp15 .link01 h5 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp15 .link01 p {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
}



#mainContents .layoutTyp16 {
  width: 1200px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp16 .mapBox {
  position: relative;
  width: 1200px;
  height: 732px;
  background-image: url("../img/company/network_bk01.svg");
  background-size: cover;
}
#mainContents .layoutTyp16 .mapBox .map01,
#mainContents .layoutTyp16 .mapBox .map02,
#mainContents .layoutTyp16 .mapBox .map03,
#mainContents .layoutTyp16 .mapBox .map04,
#mainContents .layoutTyp16 .mapBox .map05 {
  position: absolute;
  width: 170px;
}
#mainContents .layoutTyp16 .mapBox .map01 {
  left: 345px;
  top: 481px;
}
#mainContents .layoutTyp16 .mapBox .map02 {
  left: 523px;
  top: 430px;
}
#mainContents .layoutTyp16 .mapBox .map03 {
  left: 659px;
  top: 83px;
}
#mainContents .layoutTyp16 .mapBox .map04 {
  left: 603px;
  top: 314px;
}
#mainContents .layoutTyp16 .mapBox .map05 {
  left: 147px;
  top: 474px;
}

#mainContents .layoutTyp16 .mapBox .map06,
#mainContents .layoutTyp16 .mapBox .map07,
#mainContents .layoutTyp16 .mapBox .map08,
#mainContents .layoutTyp16 .mapBox .map09,
#mainContents .layoutTyp16 .mapBox .map10 {
  position: absolute;
  width: 130px;
}
#mainContents .layoutTyp16 .mapBox .map06 {
  left: 845px;
  top: 544px;
}
#mainContents .layoutTyp16 .mapBox .map07 {
  left: 990px;
  top: 544px;
}
#mainContents .layoutTyp16 .mapBox .map08 {
  left: 845px;
  top: 591px;
}
#mainContents .layoutTyp16 .mapBox .map09 {
  left: 990px;
  top: 591px;
}
#mainContents .layoutTyp16 .mapBox .map10 {
  left: 845px;
  top: 641px;
}

#mainContents .layoutTyp16 .mapBox img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp16 .mapBox img:hover {
  opacity: 1;
}

#mainContents .layoutTyp16 .mapBox .map01::before,
#mainContents .layoutTyp16 .mapBox .map02::before,
#mainContents .layoutTyp16 .mapBox .map03::before,
#mainContents .layoutTyp16 .mapBox .map04::before,
#mainContents .layoutTyp16 .mapBox .map05::before,
#mainContents .layoutTyp16 .mapBox .map06::before,
#mainContents .layoutTyp16 .mapBox .map07::before,
#mainContents .layoutTyp16 .mapBox .map08::before,
#mainContents .layoutTyp16 .mapBox .map09::before,
#mainContents .layoutTyp16 .mapBox .map10::before {
  position: absolute;
  left: 50%;
  top: 37px;
  width: 16px;
  height: 5px;
  margin: 0 0 0 -8px;
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .layoutTyp16 .mapBox .map06::before,
#mainContents .layoutTyp16 .mapBox .map07::before,
#mainContents .layoutTyp16 .mapBox .map08::before,
#mainContents .layoutTyp16 .mapBox .map09::before,
#mainContents .layoutTyp16 .mapBox .map10::before {
  top: 26px;
}

#mainContents .layoutTyp16 .mapBox .map01::before,
#mainContents .layoutTyp16 .mapBox .map06::before,
#mainContents .layoutTyp16 .mapBox .map08::before {
  background-image: url("../img/company/network_map_icon02.svg");
}

#mainContents .layoutTyp16 .mapBox .map02::before,
#mainContents .layoutTyp16 .mapBox .map03::before,
#mainContents .layoutTyp16 .mapBox .map04::before,
#mainContents .layoutTyp16 .mapBox .map05::before,
#mainContents .layoutTyp16 .mapBox .map07::before,
#mainContents .layoutTyp16 .mapBox .map10::before {
  background-image: url("../img/company/network_map_icon01.svg");
}

#mainContents .layoutTyp16 .mapBox .map09::before {
  background-image: url("../img/company/network_map_icon03.svg");
}

#mainContents .layoutTyp16 .mapBox .map01:hover:before,
#mainContents .layoutTyp16 .mapBox .map02:hover:before,
#mainContents .layoutTyp16 .mapBox .map03:hover:before,
#mainContents .layoutTyp16 .mapBox .map04:hover:before,
#mainContents .layoutTyp16 .mapBox .map05:hover:before,
#mainContents .layoutTyp16 .mapBox .map06:hover:before,
#mainContents .layoutTyp16 .mapBox .map07:hover:before,
#mainContents .layoutTyp16 .mapBox .map08:hover:before,
#mainContents .layoutTyp16 .mapBox .map09:hover:before,
#mainContents .layoutTyp16 .mapBox .map10:hover:before {
  transform: translateY(3px);
}
#mainContents .layoutTyp16 .mapBox_sp {
  display: none;
}
#mainContents .layoutTyp16 .pageNavi {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp16 {
    width: calc(100% - 40px);
    padding: 70px 0 0;
  }
  #mainContents .layoutTyp16 .mapBox {
    display: none;
  }
  #mainContents .layoutTyp16 .mapBox_sp {
    display: block;
    width: 100%;
  }
  #mainContents .layoutTyp16 .mapBox_sp img {
    width: 100%;
    height: auto;
  }
  #mainContents .layoutTyp16 .pageNavi {
    display: block;
    width: 100%;
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp16 .pageNavi h3 {
    margin: 0 0 15px;
    padding: 35px 0 10px;
    border-bottom: 1px solid #0062A0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0062A0;
  }
  #mainContents .layoutTyp16 .pageNavi ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }
  #mainContents .layoutTyp16 .pageNavi ul li {
    width: 32%;
    height: 37px;
    margin: 0 2% 15px 0;
  }
  #mainContents .layoutTyp16 .pageNavi ul li:nth-child(3n) {
    margin: 0 0 15px 0;
  }
  #mainContents .layoutTyp16 .pageNavi ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 2% 15px 0;
    padding: 8px 0 0;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(1) a {
    border: 1px solid #FFA300;
    background-color: #FFF3DE;
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(2) a {
    border: 1px solid #0062A0;
    background-color: #F0FBFF;
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(3) a,
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(2) a,
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(4) a,
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(5) a {
    border: 1px solid #0062A0;
    background-color: #FFF;
  }

  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(1) a,
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(3) a {
    border: 1px solid #FFA300;
    background-color: #FFF;
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(4) a {
    border: 1px solid #82CDE6;
    background-color: #FFF;
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(5) a {
    border: 1px solid #0062A0;
    background-color: #FFF;
    font-size: 1.0rem;
  }

  #mainContents .layoutTyp16 .pageNavi ul li a::before {
    position: absolute;
    left: 50%;
    top: 25px;
    width: 16px;
    height: 5px;
    margin: 0 0 0 -8px;
    background-size: cover;
    content: "";
    transition: all 0.3s ease;
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(1) a::before {
    background-image: url("../img/company/network_map_icon02.svg");
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(2) a::before,
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(3) a::before,
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(4) a::before,
  #mainContents .layoutTyp16 .pageNavi ul.typ01 li:nth-child(5) a::before {
    background-image: url("../img/company/network_map_icon01.svg");
  }

  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(1) a::before,
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(3) a::before {
    background-image: url("../img/company/network_map_icon02.svg");
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(4) a::before {
    background-image: url("../img/company/network_map_icon03.svg");
  }
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(2) a::before,
  #mainContents .layoutTyp16 .pageNavi ul.typ02 li:nth-child(5) a::before {
    background-image: url("../img/company/network_map_icon01.svg");
  }
}


#mainContents .layoutTyp17 {
  position: relative;
  z-index: 20;
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp17 h3 {
  margin: 0 0 80px;
  padding: 200px 0 20px;
  border-bottom: 3px solid #0062A0;
  font-size: 3.0rem;
  font-weight: 600;
  color: #0062A0;
}
#mainContents .layoutTyp17 h4 {
  position: relative;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  font-weight: 500;
}
#mainContents .layoutTyp17 h4::before {
  position: absolute;
  left: 0;
  top: -3px;
  width: 6px;
  height: 32px;
  content: "";
}
#mainContents .layoutTyp17 h4.typ01::before {
  background-color: #FFA300;
}
#mainContents .layoutTyp17 h4.typ02::before {
  background-color: #0062A0;
}
#mainContents .layoutTyp17 h4.typ03::before {
  background-color: #82CDE6;
}
#mainContents .layoutTyp17 h5 {
  padding: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 500;
}
#mainContents .layoutTyp17 .columnBox {
  position: relative;
  width: 100%;
  padding: 60px 0 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp17 .columnBox .column_L {
  width: 490px;
}
#mainContents .layoutTyp17 .columnBox .column_L p {
  padding: 0 0 5px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
}
#mainContents .layoutTyp17 .columnBox .column_L p a {
  color: #0062A0;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp17 .columnBox .column_L p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp17 .columnBox .column_L .mapBox {
  width: 100%;
  height: 140px;
  padding: 10px 0;
}
#mainContents .layoutTyp17 .columnBox .column_L .mapBox iframe {
  width: 100%;
  height: 100%;
}
#mainContents .layoutTyp17 .columnBox .column_L a.map {
  position: relative;
  display: inline-block;
  margin: 0 40px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp17 .columnBox .column_L a.map.typ01 {
  margin: 0 0 50px;
}
#mainContents .layoutTyp17 .columnBox .column_L a.map:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp17 .columnBox .column_L a.map::after {
  position: absolute;
  right: -23px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}

#mainContents .layoutTyp17 .columnBox .column_R {
  width: 450px;
}
#mainContents .layoutTyp17 .columnBox .column_R img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp17 .bkBox {
  position: absolute;
  z-index: 0;
  right: -196px;
  top: 2431px;
  width: 340px;
  height: 414px;
  background-image: url("../img/company/network_bk02.svg");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp17 {
    width: calc(100% - 40px);
    padding: 100px 0 0;
  }
  #mainContents .layoutTyp17 h3 {
    margin: 0 0 60px;
    padding: 200px 0 20px;
    font-size: 2.6rem;
  }
  #mainContents .layoutTyp17 h4 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  #mainContents .layoutTyp17 h4::before {
    top: -1px;
  }
  #mainContents .layoutTyp17 h5 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp17 .columnBox {
    padding: 40px 0 90px;
  }
  #mainContents .layoutTyp17 .columnBox .column_L {
    width: 100%;
    order: 2;
  }
  #mainContents .layoutTyp17 .columnBox .column_L p {
    padding: 0 0 5px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp17 .columnBox .column_L .mapBox {
    height: 80px;
  }
  #mainContents .layoutTyp17 .columnBox .column_L a.map.typ01 {
    margin: 0 0 50px;
  }

  #mainContents .layoutTyp17 .columnBox .column_R {
    width: 100%;
    padding: 0 0 40px;
    order: 1;
  }

  #mainContents .layoutTyp17 .bkBox {
    right: -20px;
    top: 3321px;
    width: 158px;
    height: 193px;
  }
}


#mainContents .layoutTyp18 {
  width: 1040px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp18 img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp18 h3 {
  padding: 170px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #717171;
}
#mainContents .layoutTyp18 p {
  padding: 40px 0 0;
  font-size: 3.4rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp18 {
    width: calc(100% - 80px);
    padding: 70px 0 0;
  }
  #mainContents .layoutTyp18 h3 {
    padding: 55px 0 0;
    font-size: 2.4rem;
  }
  #mainContents .layoutTyp18 p {
    padding: 40px 0 0;
    font-size: 2.0rem;
    line-height: 2.2;
  }
}


#mainContents .layoutTyp19 {
  position: relative;
  width: 100%;
  margin: 100px 0 0;
  padding: 65px 0;
  background: linear-gradient(to right, #82CDE6 60%, #EBF9FE 100%);
}
#mainContents .layoutTyp19::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 508px;
  height: 686px;
  background-image: url("../img/company/identity_bk01.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp19 .layoutTyp19_inner {
  width: 1040px;
  margin: 0 auto;
}
#mainContents .layoutTyp19 h3 {
  font-family: "Roboto", sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #FFF;
}
#mainContents .layoutTyp19 img {
  width: 607px;
  height: auto;
  padding: 60px 0 0;
}
#mainContents .layoutTyp19 p {
  padding: 20px 0 0;
  font-size: 2.4rem;
  font-weight: 500;
  color: #FFF;
  line-height: 2.0;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp19 {
    margin: 85px 0 0;
    padding: 40px 0 60px;
    background: linear-gradient(to bottom right, #82CDE6 50%, #D8F5FF 100%);
  }
  #mainContents .layoutTyp19::before {
    width: 213px;
    height: 511px;
    background-image: url("../img/company/identity_bk01_sp.svg");
  }
  #mainContents .layoutTyp19 .layoutTyp19_inner {
    width: calc(100% - 80px);
  }
  #mainContents .layoutTyp19 h3 {
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp19 img {
    width: 237px;
    height: auto;
    padding: 40px 0 0;
  }
  #mainContents .layoutTyp19 p {
    padding: 30px 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .layoutTyp20 {
  position: relative;
  width: 100%;
}
#mainContents .layoutTyp20::after {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 50px;
  width: 124px;
  height: 455px;
  background-image: url("../img/company/identity_bk02.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp20 .layoutTyp20_inner {
  position: relative;
  z-index: 10;
  width: 1040px;
  margin: 60px auto 0;
  padding: 70px 0;
}
#mainContents .layoutTyp20 .layoutTyp20_inner::before {
  position: absolute;
  z-index: 0;
  left: -80px;
  top: 0;
  width: calc(1120px + ((100vw - 1040px) / 2));
  height: 100%;
  background: linear-gradient(to right, #0062A0 35% , #82CDE6 100% );
  border-radius: 30px 0 0 30px;
  content: "";
}
#mainContents .layoutTyp20 h3 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #FFF;
}
#mainContents .layoutTyp20 h4 {
  position: relative;
  display: inline-block;
  padding: 60px 0 50px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 15px;
  text-decoration-color: #82CDE6;
}
#mainContents .layoutTyp20 h4::after {
  position: absolute;
  right: -72px;
  top: 19px;
  width: 57px;
  height: 57px;
  background-image: url("../img/company/identity_icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp20 p {
  position: relative;
  width: 800px;
  padding: 0 0 30px;
  font-size: 2.0rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp20 {
    position: relative;
    width: 100%;
  }
  #mainContents .layoutTyp20::after {
    display: none;
  }
  #mainContents .layoutTyp20 .layoutTyp20_inner {
    width: calc(100% - 80px);
    margin: 90px auto 0;
    padding: 40px 0;
  }
  #mainContents .layoutTyp20 .layoutTyp20_inner::before {
    left: -20px;
    width: calc(100% + 60px);
  }

  #mainContents .layoutTyp20 h3 {
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp20 h4 {
    padding: 35px 0 25px;
    font-size: 2.0rem;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    line-height: 2.0;
  }
  #mainContents .layoutTyp20 h4::after {
    right: -95px;
    top: -27px;
    width: 29px;
    height: 29px;
  }
  #mainContents .layoutTyp20 p {
    position: relative;
    width: 100%;
    padding: 0 0 20px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}



#mainContents .layoutTyp21 {
  position: relative;
  width: 100%;
  margin: 75px 0 0;
  padding: 75px 0;
  background-color: #F0FBFF;
}
#mainContents .layoutTyp21::before {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 129px;
  height: 413px;
  background-image: url("../img/company/identity_bk06.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp21 .layoutTyp21_inner {
  width: 1040px;
  margin: 0 auto;
}
#mainContents .layoutTyp21 h3 {
  padding: 0 0 70px;
  font-family: "Roboto", sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #0062A0;
}
#mainContents .layoutTyp21 h4 {
  padding: 0 0 60px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp21 .column {
  position: relative;
  width: 100%;
  margin: 0 0 40px;
  padding: 30px;
  box-sizing: border-box;
  background-color: #FFF;
}
#mainContents .layoutTyp21 .column::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 66px;
  background-color: #FFA300;
  content: "";
}
#mainContents .layoutTyp21 .column::after {
  position: absolute;
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp21 .column:nth-child(1):after {
  right: 80px;
  bottom: -30px;
  width: 80px;
  height: 185px;
  background-image: url("../img/company/identity_bk03.svg");
}
#mainContents .layoutTyp21 .column:nth-child(2):after {
  right: 37px;
  bottom: -10px;
  width: 130px;
  height: 187px;
  background-image: url("../img/company/identity_bk04.svg");
}
#mainContents .layoutTyp21 .column:nth-child(3):after {
  right: 37px;
  bottom: -10px;
  width: 130px;
  height: 187px;
  background-image: url("../img/company/identity_bk05.svg");
}
#mainContents .layoutTyp21 .column h5 {
  padding: 2px 0 0;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp21 .column ul {
  width: 100%;
  padding: 30px 0 0 0;
  list-style-type: none;
}
#mainContents .layoutTyp21 .column ul li {
  position: relative;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0062A0;
  line-height: 1.4;
}
/* #mainContents .layoutTyp21 .column ul li::before {
  position: absolute;
  left: -20px;
  top: 0;
  content: "・";
} */
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp21 {
    margin: 100px 0 0;
    padding: 30px 0;
  }
  #mainContents .layoutTyp21::before {
    display: none;
  }
  #mainContents .layoutTyp21 .layoutTyp21_inner {
    width: calc(100% - 40px);
  }
  #mainContents .layoutTyp21 h3 {
    padding: 0 20px 20px;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp21 h4 {
    padding: 0 20px 30px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp21 .column {
    margin: 0 0 30px;
    padding: 20px 10px 20px 20px;
  }
  #mainContents .layoutTyp21 .column::before {
    width: 4px;
    height: 45px;
  }
  #mainContents .layoutTyp21 .column::after {
    z-index: 0;
  }
  #mainContents .layoutTyp21 .column:nth-child(1):after {
    right: 22px;
    bottom: 0;
    width: 37px;
    height: 85px;
  }
  #mainContents .layoutTyp21 .column:nth-child(2):after {
    right: 22px;
    bottom: 0;
    width: 60px;
    height: 86px;
  }
  #mainContents .layoutTyp21 .column:nth-child(3):after {
    right: 22px;
    bottom: 0;
    width: 60px;
    height: 86px;
  }
  #mainContents .layoutTyp21 .column h5 {
    padding: 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp21 .column ul {
    position: relative;
    z-index: 10;
    padding: 20px 0 0 15px;
  }
  #mainContents .layoutTyp21 .column ul li {
    padding: 0 0 5px;
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp21 .column ul li::before {
    left: -15px;
  }
}



#mainContents .layoutTyp22 {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp22 h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.6;
}
#mainContents .layoutTyp22 .mapArea {
  position: relative;
  width: 100%;
  height: 750px;
  margin: 35px 0 0;
}
#mainContents .layoutTyp22 .mapArea .mapImg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1266px;
  height: 750px;
  margin: 0 0 0 -633px;
}
#mainContents .layoutTyp22 .mapArea .mapImg img {
  width: 1266px;
  height: auto;
}
#mainContents .layoutTyp22 .mapArea .mapPoint {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1266px;
  height: 750px;
  margin: 0 0 0 -633px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img {
  position: absolute;
  width: auto;
  height: 73px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map01 {
  left: 232px;
  top: 60px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map02 {
  left: 178px;
  top: 246px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map03 {
  left: 378px;
  top: 178px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map04 {
  left: 334px;
  top: 329px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map05 {
  left: 484px;
  top: 248px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map06 {
  left: 530px;
  top: 461px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map07 {
  left: 709px;
  top: 43px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map08 {
  left: 650px;
  top: 171px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map09 {
  left: 694px;
  top: 354px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map10 {
  left: 831px;
  top: 273px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map11 {
  left: 966px;
  top: 158px;
}
#mainContents .layoutTyp22 .mapArea .mapPoint img.map12 {
  left: 950px;
  top: 394px;
}
/* アニメーションの定義（上下に5px動く） */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px); /* 上に5px移動 */
  }
}
/* img要素へのマウスオーバー設定 */
#mainContents .layoutTyp22 .mapArea .mapPoint img:hover {
  cursor: pointer;
  /* 0.5秒かけて、往復（alternate）し続ける（infinite） */
  animation: floatAnimation 0.5s ease-in-out infinite alternate;
  opacity: 1;
}

#mainContents .layoutTyp22 .mapArea .mapPopup {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 374px;
  height: 188px;
  margin: -144px 0 0 -187px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
}
#mainContents .layoutTyp22 .mapArea .mapPopup a {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 18px;
  height: 18px;
}
#mainContents .layoutTyp22 .mapArea .mapPopup a img {
  width: 100%;
  height: 100%;
}
#mainContents .layoutTyp22 .mapArea .mapPopup h4 {
  position: relative;
  padding: 0 0 0 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}
#mainContents .layoutTyp22 .mapArea .mapPopup h4::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 26px;
  background-color: #FFA300;
  content: "";
}
#mainContents .layoutTyp22 .mapArea .mapPopup p {
  width: 285px;
  padding: 20px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map01,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map02,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map03,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map04,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map05,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map06,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map07,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map08,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map09,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map10,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map11,
#mainContents .layoutTyp22 .mapArea .mapPopup .popup_map12 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp22 {
    width: 100%;
    padding: 70px 0 0;
  }
  #mainContents .layoutTyp22 h3 {
    padding: 0 20px;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp22 .mapArea {
    width: 100%;
    height: auto;
    margin: 10px 0 0;
  }
  #mainContents .layoutTyp22 .mapArea .mapImg {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }
  #mainContents .layoutTyp22 .mapArea .mapImg img {
    width: 100%;
  }
  #mainContents .layoutTyp22 .mapArea .mapPoint {
    display: none;
  }
}


#mainContents .layoutTyp23 {
  width: 1040px;
  margin: 0 auto;
  padding: 30px 0 0;
}
#mainContents .layoutTyp23 h3 {
  padding: 0 0 0 30px;
  font-size: 2.6rem;
  font-weight: 600;
}
#mainContents .layoutTyp23 .pageNavi {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .layoutTyp23 .pageNavi ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp23 .pageNavi ul li {
  width: 180px;
  height: 180px;
}
#mainContents .layoutTyp23 .pageNavi ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 85px 0 0;
  background-color: #FFF;
  box-sizing: border-box;
  border: 3px solid #0062A0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0062A0;
  line-height: 1.4;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp23 .pageNavi ul li:nth-child(5) a {
  padding: 98px 0 0;
}
#mainContents .layoutTyp23 .pageNavi ul li a::before {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 90px;
  height: 65px;
  margin: 0 0 0 -45px;
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp23 .pageNavi ul li:nth-child(1) a::before {
  background-image: url("../img/division/info_icon01.svg");
}
#mainContents .layoutTyp23 .pageNavi ul li:nth-child(2) a::before {
  background-image: url("../img/division/info_icon02.svg");
}
#mainContents .layoutTyp23 .pageNavi ul li:nth-child(3) a::before {
  background-image: url("../img/division/info_icon03.svg");
}
#mainContents .layoutTyp23 .pageNavi ul li:nth-child(4) a::before {
  background-image: url("../img/division/info_icon04.svg");
}
#mainContents .layoutTyp23 .pageNavi ul li:nth-child(5) a::before {
  background-image: url("../img/division/info_icon05.svg");
}
#mainContents .layoutTyp23 .pageNavi ul li a::after {
  position: absolute;
  left: 50%;
  top: 139px;
  width: 28px;
  height: 15px;
  margin: 0 0 0 -14px;
  background-image: url("../img/icon12.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp23 .pageNavi ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp23 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp23 h3 {
    padding: 0 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp23 .pageNavi {
    padding: 30px 0 0;
  }

  #mainContents .layoutTyp23 .pageNavi ul {
    justify-content: center;
  }
  #mainContents .layoutTyp23 .pageNavi ul li {
    width: 100px;
    height: 100px;
    margin: 0 10px 10px 0;
  }
  #mainContents .layoutTyp23 .pageNavi ul li a {
    padding: 45px 0 0;
    border: 2px solid #0062A0;
    font-size: 1.0rem;
  }
  #mainContents .layoutTyp23 .pageNavi ul li:nth-child(5) a {
    padding: 52px 0 0;
  }
  #mainContents .layoutTyp23 .pageNavi ul li a::before {
    top: 7px;
    width: 53px;
    height: 39px;
    margin: 0 0 0 -26px;
  }
  #mainContents .layoutTyp23 .pageNavi ul li a::after {
    top: 80px;
    width: 20px;
    height: 10px;
    margin: 0 0 0 -10px;
  }
}


#mainContents .layoutTyp23 .columnBox {
  width: 980px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp23 .columnBox .column {
  width: 100%;
  margin: 0 0 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp23 .columnBox .column .column_L {
  width: 330px;
}
#mainContents .layoutTyp23 .columnBox .column .column_L h4 {
  font-size: 2.6rem;
  font-weight: 600;
}
#mainContents .layoutTyp23 .columnBox .column .column_L .link01 {
  display: block;
  width: 230px;
  padding: 35px 0 0;
}
#mainContents .layoutTyp23 .columnBox .column .column_L .link01 a {
  position: relative;
  display: block;
  width: 230px;
  height: 56px;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp23 .columnBox .column .column_L .link01 img {
  width: 230px;
  height: 56px;
  border: 1px solid #0062A0;
}
#mainContents .layoutTyp23 .columnBox .column .column_L .link01 a:hover::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 56px;
  margin: -29px 0 0 -116px;
  border: 2px solid #0062A0;
  content: "";
}

#mainContents .layoutTyp23 .columnBox .column .column_R {
  width: 650px;
}
#mainContents .layoutTyp23 .columnBox .column .column_R img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp23 .columnBox .column .column_R p {
  padding: 25px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp23 .columnBox .column .column_R .link01 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp23 .columnBox {
    width: calc(100% - 40px);
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp23 .columnBox .column {
    margin: 0 0 65px;
  }
  #mainContents .layoutTyp23 .columnBox .column .column_L {
    width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp23 .columnBox .column .column_L h4 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp23 .columnBox .column .column_L .link01 {
    display: none;
  }

  #mainContents .layoutTyp23 .columnBox .column .column_R {
    width: 100%;
  }
  #mainContents .layoutTyp23 .columnBox .column .column_R .link01 {
    display: block;
    width: 230px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp23 .columnBox .column .column_R .link01 img {
    width: 100%;
    height: auto;
    border: 1px solid #0062A0;
  }
}



#mainContents .layoutTyp24 {
  width: 1200px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .layoutTyp24 h3 {
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  color: #0062A0;
}
#mainContents .layoutTyp24 .header_img {
  width: 100%;
  padding: 20px 0 30px;
}
#mainContents .layoutTyp24 .header_img img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp24 {
    width: calc(100% - 40px);
    padding: 70px 0 0;
  }
  #mainContents .layoutTyp24 h3 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp24 .header_img {
    padding: 25px 0 0;
  }
}

#mainContents .layoutTyp24 .mainArea {
  width: 1200px;
}

#mainContents .layoutTyp24 .mainArea .columnBox {
  width: 100%;
}

#mainContents .layoutTyp24 .mainArea .columnBox .column_T {
  position: relative;
  width: 100%;
  min-height: 136px;
  margin: 30px 0 0;
  box-sizing: border-box;
  border: 2px solid #0062A0;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T::after {
  position: absolute;
  right: 80px;
  top: 50%;
  width: 28px;
  height: 16px;
  margin: -8px 0 0;
  background-image: url("../img/icon12.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T.open::after {
  transform: rotate(-180deg);
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T::before {
  position: absolute;
  left: 120px;
  top: -32px;
  width: 2px;
  height: 30px;
  background-color: #0062A0;
  content: "";
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T:first-of-type:before {
  display: none;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 35px 170px 35px 110px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T a::before {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #F0FBFF;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T a:hover {
  text-decoration: none;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T a:hover::before {
  width: 100%;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_L {
  position: relative;
  width: 488px;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_L h4 {
  position: relative;
  font-size: 3.6rem;
  font-weight: 700;
  color: #0062A0;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_L p {
  padding: 10px 0 0;
  font-size: 2.0rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_R {
  position: relative;
  width: 430px;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_R p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #0062A0;
}

#mainContents .layoutTyp24 .mainArea .columnBox .column_B {
  display: none;
  position: relative;
  width: 100%;
  padding: 87px 110px 60px 184px;
  background-color: #F0FBFF;
  border: 2px solid #0062A0;
  border-top: none;
  box-sizing: border-box;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B::before {
  position: absolute;
  left: 120px;
  top: 2px;
  width: 2px;
  height: calc(100% - 2px);
  background-color: #82CDE6;
  content: "";
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column {
  width: 100%;
  padding: 0 0 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L {
  position: relative;
  width: 500px;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L::before {
  position: absolute;
  left: -74px;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 20px;
  background-color: #82CDE6;
  content: "";
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0062A0;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L h5 {
  padding: 20px 0 0;
  font-size: 2.0rem;
  font-weight: 700;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L p {
  padding: 20px 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_R {
  width: 338px;
}
#mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_R img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp24 .mainArea {
    width: 100%;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T {
    min-height: auto;
    margin: 20px 0 0;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T::after {
    right: 20px;
    top: 27px;
    margin: -0;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T::before {
    left: 26px;
    top: -22px;
    height: 20px;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T a {
    padding: 25px 20px;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T a::before {
    display: none;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_L {
    width: 100%;
    padding: 0 0 15px;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_L h4 {
    font-size: 2.4rem;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_L p {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_R {
    width: 100%;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_T .column_R p {
    font-size: 1.2rem;
  }

  #mainContents .layoutTyp24 .mainArea .columnBox .column_B {
    padding: 35px 20px 30px 50px;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B::before {
    left: 26px;
    top: 0;
    height: 100%;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L::before {
    left: -31px;
    top: 2px;
    width: 16px;
    height: 16px;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L h4 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L h5 {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_L p {
    padding: 10px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp24 .mainArea .columnBox .column_B .column .column_R {
    width: 100%;
  }
}

#mainContents .formArea {
  width: 100%;
  padding: 70px 0 0;
}
#mainContents .formArea .textArea table {
  width: 100%;
  margin: 0 0 15px;
}
#mainContents .formArea .textArea table th {
  position: relative;
  width: 230px;
  padding: 30px 0;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
  line-height:  1.4;
}
#mainContents .formArea .textArea table th.typ01 {
  vertical-align: top;
}
#mainContents .formArea .textArea table th span {
  margin: 0 0 0 7px;
  padding: 2px 10px 4px;
  border: 1px solid #E60012;
  box-sizing: border-box;
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFF;
}
#mainContents .formArea .textArea table th span.required {
  background-color: #E60012;
}
#mainContents .formArea .textArea table th span.any {
  background-color: #FFF;
  color: #E60012;
}
#mainContents .formArea .textArea table td {
  padding: 30px 0;
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 1.4;
}
#mainContents .formArea .textArea table td input[type="text"],
#mainContents .formArea .textArea table td input[type="email"],
#mainContents .formArea .textArea table td input[type="tel"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: none;
  background-color: #F5F5F5;
  border: 1px solid #969696;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.6rem;
}
#mainContents .formArea .textArea table td input.typ01 {
  width: 50%;
  margin: 0 0 20px;
}
#mainContents .formArea .textArea table td input.typ02 {
  width: 100%;
  margin: 0 0 20px;
}
#mainContents .formArea .textArea table td input.typ03 {
  display: inline-block;
  width: 50%;
}
#mainContents .formArea .textArea table td input.typ04 {
  display: inline-block;
  width: 47%;
  margin: 0 0 0 2%;
}
#mainContents .formArea .textArea table td input[type="text"]::placeholder,
#mainContents .formArea .textArea table td input[type="email"]::placeholder,
#mainContents .formArea .textArea table td input[type="tel"]::placeholder {
  color: #969696;
}
#mainContents .formArea .textArea table td input[type="text"]:focus,
#mainContents .formArea .textArea table td input[type="email"]:focus,
#mainContents .formArea .textArea table td input[type="tel"]:focus {
  outline: none;
}
#mainContents .formArea .textArea table td select {
  -webkit-appearance: none;
  width: auto;
  height: 50px;
  padding: 0 20px;
  border: none;
  background-color: #FFF;
  border: 1px solid #54575A;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 1.6rem;
  color: #333;
}
#mainContents .formArea .textArea table td textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 200px;
  padding: 5px 10px;
  border: none;
  background-color: #F5F5F5;
  border: 1px solid #969696;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .formArea .textArea table td textarea::placeholder {
  color: #B4B4B4;
}
#mainContents .formArea .textArea table td textarea:focus {
  outline: none;
}
#mainContents .formArea .textArea table td label {
  display: inline-block;
  padding: 12px 25px 12px 0;
  font-size: 1.6rem;
}
#mainContents .formArea .textArea table td label input[type="radio"] {
  margin: -2px 4px 0 0;
}

#mainContents .formArea .privacyText {
  width: 100%;
  padding: 100px 0 0;
}
#mainContents .formArea .privacyText h3 {
  padding: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .formArea .privacyText .privacyText_Box {
  width: 100%;
  height: 273px;
  padding: 20px 10px 20px 30px;
  box-sizing: border-box;
  background-color: #F0FBFF;
}
#mainContents .formArea .privacyText .privacyText_Box .privacyText_Scroll {
  width: 100%;
  height: 233px;
  padding: 0 20px 0 0;
  box-sizing: border-box;
  overflow-y: scroll;
}
#mainContents .formArea .privacyText .privacyText_Box .privacyText_Scroll p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.0;
  color: #333;
}

#mainContents .formArea .privacyBox {
  width: 100%;
  padding: 50px 0 0;
  text-align: center;
}
#mainContents .formArea .privacyBox input[type="checkbox"] {
  margin: -6px 4px 0 0;
}
#mainContents .formArea .privacyBox span {
  font-size: 1.8rem;
}
#mainContents .formArea .privacyBox p {
  display: block;
  padding: 0 0 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
#mainContents .formArea .submitArea {
  position: relative;
  width: 335px;
  height: 60px;
  margin: 70px auto 0;
}
#mainContents .formArea .submitArea input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  border-radius: 40px;
  background-color: #0062A0;
  border: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
}
.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}
#mainContents .formArea .error {
  display: block;
  padding: 10px 0 0;
  font-size: 1.6rem;
  color: #E60012;
}
#mainContents .mw_wp_form_input .noInputView {
  display: none;
}
#mainContents .mw_wp_form_preview .noView {
  display: none;
}

#mainContents .formArea .itemBox {
  width: 100%;
  padding: 30px 0 0;
}
#mainContents .formArea .itemBox h3 {
  padding: 50px 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .formArea .itemBox p {
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
#mainContents .formArea .itemBox .itemOther {
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 500;
}

#mainContents .formArea .itemBox table {
  width: 100%;
  margin: 20px 0 0;
  border: 1px solid #B5B5B5;
}
#mainContents .formArea .itemBox table tr th {
  width: 250px;
  background-color: #F5F5F5;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  line-height: 2.0;
}
#mainContents .formArea .itemBox table tr td {
  padding: 30px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 500;
}
#mainContents .formArea .itemBox table tr td label {
  display: block;
  padding: 0 0 15px;
  font-size: 1.6rem;
}
#mainContents .formArea .itemBox table tr td label input[type="checkbox"] {
  margin: -5px 4px 0 0;
}
#mainContents .formArea .itemBox table tr td textarea {
  height: 60px;
}
#mainContents .formArea .itemBox textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 200px;
  padding: 5px 10px;
  border: none;
  background-color: #F5F5F5;
  border: 1px solid #969696;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .formArea .itemBox textarea::placeholder {
  color: #B4B4B4;
}
#mainContents .formArea .itemBox textarea:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .formArea .textArea table {
    width: 100%;
    margin: 0 0 15px;
  }
  #mainContents .formArea .textArea table th {
    display: block;
    width: 100%;
    padding: 30px 0 0;
  }
  #mainContents .formArea .textArea table th.typ01 {
    vertical-align: middle;
  }
  #mainContents .formArea .textArea table td {
    display: block;
    width: 100%;
    padding: 10px 0 0;
  }
  #mainContents .formArea .textArea table tr.typ01 th {
    padding: 0;
  }
  #mainContents .formArea .textArea table tr.typ01 td {
    padding: 20px 0 0;
  }
  #mainContents .formArea .textArea table td input.typ01 {
    width: 100%;
  }
  #mainContents .formArea .textArea table td input.typ02 {
    width: 100%;
  }
  #mainContents .formArea .textArea table td input.typ03 {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
  #mainContents .formArea .textArea table td input.typ04 {
    display: block;
    width: 100%;
    margin: 0;
  }
  #mainContents .formArea .textArea table td textarea {
    height: 300px;
  }

  #mainContents .formArea .privacyText {
    padding: 50px 0 0;
  }
  #mainContents .formArea .privacyText .privacyText_Box {
    height: 375px;
  }
  #mainContents .formArea .privacyText .privacyText_Box .privacyText_Scroll {
    height: 330px;
  }
  #mainContents .formArea .privacyText .privacyText_Box .privacyText_Scroll p {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  #mainContents .formArea .privacyBox span {
    font-size: 1.6rem;
  }
  #mainContents .formArea .privacyBox p {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  #mainContents .formArea .submitArea {
    width: 267px;
  }
  #mainContents .formArea .submitArea input[type="submit"] {
    font-size: 1.6rem;
  }

  #mainContents .formArea .itemBox h3 {
    padding: 50px 0 20px;
  }
  #mainContents .formArea .itemBox p {
    padding: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #mainContents .formArea .itemBox table tr th {
    width: 30%;
  }
  #mainContents .formArea .itemBox table tr td {
    width: 70%;
    padding: 20px;
  }
  #mainContents .formArea .itemBox table tr td label {
    line-height: 1.4;
  }
  #mainContents .formArea .itemBox table tr td label input[type="checkbox"] {
    margin: -3px 4px 0 0;
  }
  #mainContents .formArea .itemBox table tr td textarea {
    height: 200px;
  }
  #mainContents .formArea .itemBox textarea {
    height: 360px;
  }
}


#mainContents .formArea_End {
  width: 980px;
  margin: 0 auto;
  padding: 140px 0 0;
}
#mainContents .formArea_End h2 {
  position: relative;
  padding: 150px 0 0;
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  color: #0062A0;
}
#mainContents .formArea_End h2::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 114px;
  height: 94px;
  margin: 0 0 0 -52px;
  background-image: url("../img/icon20.svg");
  background-size: cover;
  content: "";
}
#mainContents .formArea_End h3 {
  padding: 30px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .formArea_End p {
  padding: 30px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
#mainContents .formArea_End .link01 {
  width: 336px;
  margin: 0 auto;
  padding: 70px 0;
}
#mainContents .formArea_End .link01 a {
  position: relative;
  display: block;
  width: 336px;
  height: 60px;
  padding: 21px 0 0;
  background-color: #0062A0;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .formArea_End .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .formArea_End {
    width: calc(100% - 40px);
    padding: 80px 0 0;
  }
  #mainContents .formArea_End h2 {
    padding: 80px 0 0;
    font-size: 2.4rem;
  }
  #mainContents .formArea_End h2::before {
    width: 78px;
    height: 65px;
    margin: 0 0 0 -36px;
  }
  #mainContents .formArea_End h3 {
    padding: 20px 0 0;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .formArea_End p {
    padding: 20px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .formArea_End .link01 {
    width: 300px;
    padding: 50px 0;
  }
  #mainContents .formArea_End .link01 a {
    width: 300px;
    height: 58px;
    padding: 21px 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .error_404 {
  width: 980px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .error_404 h2 {
  font-size: 3.8rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .error_404 h3 {
  padding: 80px 0 0;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .error_404 p {
  padding: 30px 0 0;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
#mainContents .error_404 .link01 {
  width: 336px;
  margin: 0 auto;
  padding: 70px 0;
}
#mainContents .error_404 .link01 a {
  position: relative;
  display: block;
  width: 336px;
  height: 60px;
  padding: 21px 0 0;
  background-color: #0062A0;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .error_404 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .error_404 {
    width: calc(100% - 40px);
    padding: 130px 0 0;
  }
  #mainContents .error_404 h2 {
    font-size: 2.4rem;
  }
  #mainContents .error_404 h2::before {
    width: 78px;
    height: 65px;
    margin: 0 0 0 -36px;
  }
  #mainContents .error_404 h3 {
    padding: 20px 0 0;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .error_404 p {
    padding: 20px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .error_404 .link01 {
    width: 300px;
    padding: 50px 0;
  }
  #mainContents .error_404 .link01 a {
    width: 300px;
    height: 58px;
    padding: 21px 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .sdgs_header {
  position: relative;
  overflow: hidden;
  z-index: 10;
  width: 100%;
  padding: 140px 0 0;
}
#mainContents .sdgs_header_inner {
  width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#mainContents .sdgs_header_inner .logo_l,
#mainContents .sdgs_header_inner .logo_r {
  width: 195px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .sdgs_header_inner .logo_l > div,
#mainContents .sdgs_header_inner .logo_r > div {
  width: 33%;
  opacity: 0;
}
#mainContents .sdgs_header_inner .logo_c {
  width: 650px;
  text-align: center;
}
#mainContents .sdgs_header_inner .logo_c img {
  width: 538px;
}
#mainContents .sdgs_header .headerLogo {
  transform: scale(2) translateY(40px);
  opacity: 0;
  animation: zoom01 1.5s ease-in forwards;
  animation-delay: 1s;
}
@keyframes zoom01 {
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .sdgs_header {
    padding: 70px 0 0;
  }
  #mainContents .sdgs_header_inner {
    width: calc(100% - 80px);
    flex-wrap: wrap;
  }
  #mainContents .sdgs_header_inner .logo_l {
    order: 2;
  }
  #mainContents .sdgs_header_inner .logo_r {
    order: 3;
  }
  #mainContents .sdgs_header_inner .logo_c {
    order: 1;
  }
  #mainContents .sdgs_header_inner .logo_l,
  #mainContents .sdgs_header_inner .logo_r {
    width: 50%;
  }
  #mainContents .sdgs_header_inner .logo_c {
    width: 100%;
    padding: 0 0 50px;
  }
  #mainContents .sdgs_header_inner .logo_c img {
    width: 100%;
  }
}

#mainContents .sdgs_header_box {
  position: relative;
  padding: 60px;
  max-width: 1100px;
  margin: auto;
}
#mainContents .sdgs_header_box .plus {
  display: block;
  width: 16px;
  position: absolute;
}
#mainContents .sdgs_header_box .plus:nth-child(2) {
  top: 76px;
  left: 102px;
}
#mainContents .sdgs_header_box .plus:nth-child(3) {
  top: 124px;
  left: 143px;
}
#mainContents .sdgs_header_box .plus:nth-child(4) {
  top: 173px;
  left: 85px;
}
#mainContents .sdgs_header_box .plus:nth-child(5) {
  top: 76px;
  left: 1110px;
}
#mainContents .sdgs_header_box .plus:nth-child(6) {
  top: 122px;
  left: 1052px;
}
#mainContents .sdgs_header_box .plus:nth-child(7) {
  top: 172px;
  left: 1096px;
}

#mainContents .sdgs_header p {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.0;
  color: #0062A0;
}
@media only screen and (max-width: 767px) {
  #mainContents .sdgs_header_box {
    width: calc(100% - 80px);
    padding: 80px 0 60px;
  }
  #mainContents .sdgs_header_box .plus {
    width: 10px;
  }
  #mainContents .sdgs_header_box .plus:nth-child(2) {
    top: 53px;
    left: -24px;
  }
  #mainContents .sdgs_header_box .plus:nth-child(3) {
    top: 71px;
    left: -11px;
  }

  #mainContents .sdgs_header_box .plus:nth-child(5) {
    top: auto;
    bottom: 76px;
    left: auto;
    right: -7px;
  }
  #mainContents .sdgs_header_box .plus:nth-child(6) {
    top: auto;
    bottom: 60px;
    left: auto;
    right: -21px;
  }

  #mainContents .sdgs_header_box .plus:nth-child(4),
  #mainContents .sdgs_header_box .plus:nth-child(7) {
    display: none;
  }
  #mainContents .sdgs_header p {
    font-size: 2.0rem;
    text-align: left;
  }
}

#mainContents .fadein {
  opacity: 0;
  animation: fadein 0.5s ease forwards;
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
#mainContents .fadein2 {
  transform: translateY(30px);
  opacity: 0;
  animation: fadein2 0.5s ease forwards;
}
@keyframes fadein2 {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#mainContents .d01 {
  animation-delay: 3s;
}
#mainContents .icon01 {
  animation-delay: 3s;
}
#mainContents .icon02 {
  animation-delay: 3.1s;
}
#mainContents .icon03 {
  animation-delay: 3.2s;
}
#mainContents .icon04 {
  animation-delay: 3.3s;
}
#mainContents .icon05 {
  animation-delay: 3.4s;
}
#mainContents .icon06 {
  animation-delay: 3.5s;
}
#mainContents .icon07 {
  animation-delay: 3.6s;
}
#mainContents .icon08 {
  animation-delay: 3.7s;
}
#mainContents .icon09 {
  animation-delay: 3.8s;
}
#mainContents .icon10 {
  animation-delay: 4s;
}
#mainContents .plus01 {
  animation-delay: 5s;
}
#mainContents .plus02 {
  animation-delay: 5.2s;
}
#mainContents .plus03 {
  animation-delay: 5.3s;
}
#mainContents .plus04 {
  animation-delay: 5.4s;
}
#mainContents .plus05 {
  animation-delay: 5.5s;
}
#mainContents .plus06 {
  animation-delay: 5.6s;
}


#mainContents .sdgs_main {
  width: 100%;
  padding: 100px 0;
  background-color: #F0FBFF;
}
#mainContents .sdgs_main .sdgs_main_inner {
  width: 1040px;
  margin: 0 auto;
}
#mainContents .sdgs_main .sdgs_main_inner h3 {
  padding: 0 0 30px;
  font-size: 3.4rem;
  font-weight: 700;
  color: #0062A0;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 {
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 0 0 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column {
  width: 463px;
  margin: 0 0 35px;
  padding: 35px;
  background-color: #FFF;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_L {
  width: 164px;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_R {
  width: 187px;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_R h4 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #0062A0;
  line-height: 1.4;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_R p {
  padding: 5px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #mainContents .sdgs_main {
    padding: 70px 0;
  }
  #mainContents .sdgs_main .sdgs_main_inner {
    width: calc(100% - 40px);
  }
  #mainContents .sdgs_main .sdgs_main_inner h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox01 {
    width: 100%;
    padding: 0 0 50px;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column {
    width: 100%;
    margin: 0 0 30px;
    padding: 25px 20px;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_L {
    width: 90px;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_R {
    width: 170px;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_R h4 {
    font-size: 1.6rem;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox01 .column .column_R p {
    font-size: 1.4rem;
  }
}


#mainContents .sdgs_main .sdgs_main_inner .columnBox02 {
  width: 100%;
  margin: 0 auto;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi {
  width: 100%;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li {
  width: 180px;
  height: 180px;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 85px 0 0;
  background-color: #FFF;
  box-sizing: border-box;
  border: 3px solid #0062A0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0062A0;
  line-height: 1.4;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(5) a {
  padding: 98px 0 0;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a::before {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 90px;
  height: 65px;
  margin: 0 0 0 -45px;
  background-size: cover;
  content: "";
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(1) a::before {
  background-image: url("../img/sustainability/sdgs_icon01.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(2) a::before {
  background-image: url("../img/sustainability/sdgs_icon02.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(3) a::before {
  background-image: url("../img/sustainability/sdgs_icon03.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(4) a::before {
  background-image: url("../img/sustainability/sdgs_icon04.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(5) a::before {
  background-image: url("../img/sustainability/sdgs_icon05.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a::after {
  position: absolute;
  left: 50%;
  top: 139px;
  width: 28px;
  height: 15px;
  margin: 0 0 0 -14px;
  background-image: url("../img/icon12.svg");
  background-size: cover;
  content: "";
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 {
    width: 100%;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul {
    justify-content: center;
  }

  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li {
    width: 100px;
    height: 100px;
    margin: 0 10px 10px 0;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a {
    padding: 45px 0 0;
    border: 2px solid #0062A0;
    font-size: 1.0rem;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li:nth-child(5) a {
    padding: 52px 0 0;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a::before {
    top: 7px;
    width: 53px;
    height: 39px;
    margin: 0 0 0 -26px;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .pageNavi ul li a::after {
    top: 80px;
    width: 20px;
    height: 10px;
    margin: 0 0 0 -10px;
  }
}

#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column {
  width: 100%;
  margin: 70px 0 0;
  padding: 0 0 30px;
  background-color: #FFF;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column h4 {
  position: relative;
  width: 100%;
  height: 68px;
  padding: 16px 0 0 100px;
  background: linear-gradient(to right, #0062A0, #82CDE6);
  box-sizing: border-box;
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.4;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column h4::before {
  position: absolute;
  left: 30px;
  top: 10px;
  width: 50px;
  height: 50px;
  background-size: cover;
  content: "";
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column:nth-child(2) h4::before {
  background-image: url("../img/sustainability/sdgs_icon06.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column:nth-child(3) h4::before {
  background-image: url("../img/sustainability/sdgs_icon07.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column:nth-child(4) h4::before {
  background-image: url("../img/sustainability/sdgs_icon08.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column:nth-child(5) h4::before {
  background-image: url("../img/sustainability/sdgs_icon09.svg");
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column:nth-child(6) h4::before {
  background-image: url("../img/sustainability/sdgs_icon10.svg");
}

#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub {
  width: 100%;
  padding: 50px 80px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L {
  width: 542px;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L p {
  padding: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L ul {
  width: 100%;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  list-style-type: none;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L ul li {
  position: relative;
  padding: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L ul li::before {
  position: absolute;
  left: -20px;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #0062A0;
  content: "";
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_R {
  width: 273px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_R img {
  width: 123px;
  height: auto;
  padding: 0 0 30px;
}

#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .link01 {
  width: 297px;
  height: 52px;
  padding: 30px 0 0 80px;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0 0;
  background-color: #0062A0;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column {
    margin: 30px 0 0;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column h4 {
    height: auto;
    padding: 20px 20px 20px 66px;
    font-size: 1.8rem;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column h4::before {
    left: 18px;
    top: 50%;
    width: 37px;
    height: 37px;
    margin: -18px 0 0;
  }

  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub {
    padding: 30px 20px 0;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L {
    width: 100%;
    order: 2;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L ul li {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_L ul li::before {
    top: 9px;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_R {
    width: 100%;
    padding: 0 0 20px;
    justify-content: start;
    order: 1;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .columnSub .column_R img {
    width: 24%;
    margin: 0 1% 0 0;
    padding: 0 0 15px;
  }

  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .link01 {
    margin: 0 auto;
    padding: 20px 0 0 0;
  }
  #mainContents .sdgs_main .sdgs_main_inner .columnBox02 .column .link01 a {
    padding: 18px 0 0;
    font-size: 1.4rem;
  }
}


#mainContents .sdgs_footer {
  position: relative;
  width: 830px;
  margin: 0 auto;
  padding: 190px 0 100px;
}
#mainContents .sdgs_footer .sdgs_footer_logo {
  width: 564px;
  margin: 0 auto;
  text-align: center;
}
#mainContents .sdgs_footer .sdgs_footer_logo img {
  width: 100%;
  height: auto;
}
#mainContents .sdgs_footer_text {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0;
}
#mainContents .sdgs_footer_text p {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.0;
  color: #0062A0;
}

#mainContents .sdgs_footer .plus {
  display: block;
  width: 16px;
  position: absolute;
}
#mainContents .sdgs_footer .plus:nth-child(3) {
  top: 96px;
  left: 10px;
}
#mainContents .sdgs_footer .plus:nth-child(4) {
  top: 144px;
  left: 50px;
}
#mainContents .sdgs_footer .plus:nth-child(5) {
  top: 193px;
  left: 0;
}
#mainContents .sdgs_footer .plus:nth-child(6) {
  top: 96px;
  right: 0;
}
#mainContents .sdgs_footer .plus:nth-child(7) {
  top: 142px;
  right: 60px;
}
#mainContents .sdgs_footer .plus:nth-child(8) {
  top: 192px;
  right: 20px;
}
#mainContents .sdgs_footer .line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1024px;
  height: 11px;
  margin: 0 0 0 -512px;
  background-image: url("../img/sustainability/sdgs_line01.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .sdgs_footer {
    width: calc(100% - 80px);
    padding: 120px 0 60px;
  }
  #mainContents .sdgs_footer .sdgs_footer_logo {
    width: 100%;
  }
  #mainContents .sdgs_footer_text p {
    font-size: 2.0rem;
    text-align: left;
  }

  #mainContents .sdgs_footer .plus {
    width: 10px;
  }
  #mainContents .sdgs_footer .plus:nth-child(3) {
    top: 90px;
    left: -20px;
  }
  #mainContents .sdgs_footer .plus:nth-child(4) {
    top: 110px;
    left: -10px;
  }

  #mainContents .sdgs_footer .plus:nth-child(6) {
    top: 90px;
    right: -20px;
  }
  #mainContents .sdgs_footer .plus:nth-child(7) {
    top: 110px;
    right: -10px;
  }

  #mainContents .sdgs_footer .plus:nth-child(5),
  #mainContents .sdgs_footer .plus:nth-child(8) {
    display: none;
  }

  #mainContents .sdgs_footer .line {
    width: 100%;
    height: 11px;
    margin: 0 0 0 -50%;
    background-size: 100% auto;
    content: "";
  }
}
