@charset "UTF-8";
/*
 * =====================================================
 *
 * [Standard css]
 *
 * - base.css 		: ベースレイアウト
 * - common.css 	: 要素用
 * - clear.css 		: clearfix用css
 *
 * =====================================================
 */
/*
 * =====================================================
 *
 * ベースレイアウトCSS
 *
 * =====================================================
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300);
/*
 * =====================================================
 *
 * [variable]
 *
 * =====================================================
 */
/**
 * ---------------------------------------------------
 * reset
 * ---------------------------------------------------
 */
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
th,
td,
img,
pre,
form,
blockquote,
fieldset,
input,
textarea,
address,
figure,
figcaption,
main {
  margin: 0;
  padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

img,
object,
embed {
  vertical-align: top;
}

ol,
ul {
  list-style: none outside none;
}

li {
  list-style-type: none;
}

table {
  font-size: inherit;
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

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

legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

img,
abbr,
area,
acronym,
fieldset {
  border: none;
}

select,
input,
button,
textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

em,
strong {
  font-weight: bold;
}

input,
select,
textarea,
button {
  font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

a {
  color: #3065d0;
  text-decoration: underline;
}
a:link,
a a:visited {
  color: #3065d0;
  text-decoration: underline;
}
a:hover, a:active {
  text-decoration: none;
}
a.redLink:link, a.redLink:visited {
  color: #c81c24;
}

*:focus-visible {
  outline: 2px solid blue;
}

/**
 * ---------------------------------------------------
 * html
 * ---------------------------------------------------
 */
html {
  font-size: 62.5%;
}

/**
 * ---------------------------------------------------
 * body
 * ---------------------------------------------------
 */
body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.05em;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow: auto;
}
body.is-navOpen {
  overflow: hidden;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  font-size: 1.6rem;
}

/**
 * ---------------------------------------------------
 * header
 * ---------------------------------------------------
 */
.globalHeader {
  width: 100%;
  height: 80px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.globalHeader *,
.globalHeader *::before,
.globalHeader *::after {
  box-sizing: border-box;
}
.globalHeader .globalHeaderInner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  padding: 0 130px 0 40px;
  position: relative;
}
.globalHeader .logo {
  width: 118px;
  margin: auto 0;
}
.globalHeader .logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.globalHeader .btnDrawer {
  display: none;
}
.globalHeader .searchArea {
  width: 100%;
  padding: 40px 70px;
  background: #efefef;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 100;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.globalHeader .searchArea.active {
  visibility: visible;
  opacity: 1;
}
.globalHeader .searchArea .closeBtn {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.globalHeader .searchArea .closeBtn a {
  display: block;
  text-indent: -99999px;
  height: 100%;
  position: relative;
}
.globalHeader .searchArea .closeBtn a::before, .globalHeader .searchArea .closeBtn a::after {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #001a72;
  position: absolute;
  top: 15px;
  left: 0;
}
.globalHeader .searchArea .closeBtn a::before {
  transform: rotate(-45deg);
}
.globalHeader .searchArea .closeBtn a::after {
  transform: rotate(45deg);
}
.globalHeader .searchVox {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 12px;
}
.globalHeader .searchVox .searchForm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.globalHeader .searchVox .searchWord {
  width: calc(100% - 50px) !important;
  height: auto !important;
  padding: 10px !important;
  border: none !important;
  border-right: 1px solid #e5e8f1 !important;
}
.globalHeader .searchVox .btn {
  cursor: pointer;
  text-indent: -99999px;
  width: 50px;
  height: 40px;
  padding: 0;
  background: url("../../img/common/ico_search.png") no-repeat center center/20px 20px;
  border: none;
}
.globalHeader .langNav {
  padding: 30px;
  background: #f1f1fa;
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.globalHeader .langNav.active {
  visibility: visible;
  opacity: 1;
}
.globalHeader .langNav a {
  display: inline-block;
  color: #001a72;
  font-weight: bold;
}
.globalHeader .langNav .langNavInner {
  position: relative;
}
.globalHeader .langNav .langNavTitle {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}
.globalHeader .langNav .icoWin {
  padding-right: 15px;
  background: url("../../img/common/ico_blank_black.png?250130") no-repeat right center;
  background-size: 12px;
}
.globalHeader .langNav .langGlobalList {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.globalHeader .langNav .langGlobalList li {
  display: inline-block;
  font-size: 1.6rem;
}
.globalHeader .langNav .langGlobalList li:not(:first-child) {
  margin-left: 10px;
}
.globalHeader .langNav .langGlobalList li a {
  padding-left: 0;
}
.globalHeader .langNav .langNavList {
  margin-top: 15px;
}
.globalHeader .langNav .langNavList li:not(:first-child) {
  margin-top: 8px;
}
.globalHeader .langNav .langNavClose {
  display: block;
  position: absolute;
  right: -16px;
  top: -16px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  white-space: nowrap;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}
.globalHeader .langNav .langNavClose:hover {
  opacity: 0.7;
}
.globalHeader .langNav .langNavClose::before, .globalHeader .langNav .langNavClose::after {
  display: block;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #001a72;
  position: absolute;
  top: 50%;
  left: 0;
}
.globalHeader .langNav .langNavClose::before {
  transform: rotate(-45deg);
}
.globalHeader .langNav .langNavClose::after {
  transform: rotate(45deg);
}
.globalHeader .langNav .langNavClose span {
  opacity: 0;
}

#gNavOpener {
  display: none;
}

#gNavWrapper {
  height: 100%;
}

#gNavOverlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 26, 114, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

body.is-navOpen #gNavOverlay {
  display: block;
}

.drawerMenu {
  width: calc(100% - 200px);
  height: 100%;
  overflow: hidden;
}
.drawerMenu .searchBtn,
.drawerMenu .langBtn {
  width: 30px;
  margin-bottom: 15px;
}
.drawerMenu .searchBtn a,
.drawerMenu .langBtn a {
  display: block;
  padding: 5px;
}
.drawerMenu .searchBtn img,
.drawerMenu .langBtn img {
  vertical-align: middle;
  width: 20px;
  height: auto;
}
.drawerMenu .searchBtn {
  margin-left: 20px;
}
.drawerMenu .langBtn {
  margin-left: 10px;
}
.drawerMenu .megaNav {
  display: flex;
  justify-content: end;
  align-items: end;
  height: 100%;
}
.drawerMenu .megaNav .megaNavParent {
  display: flex;
  justify-content: flex-end;
  gap: 0 10px;
  height: 100%;
}
.drawerMenu .megaNav .megaNavParent > li {
  line-height: 1;
  font-size: 1.4rem;
}
.drawerMenu .megaNav .megaNavParent > li > button,
.drawerMenu .megaNav .megaNavParent > li > a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: end;
  color: #000;
  font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0 10px 15px 10px;
  border: none;
}
.drawerMenu .megaNav .megaNavParent > li > button > span,
.drawerMenu .megaNav .megaNavParent > li > a > span {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.drawerMenu .megaNav .megaNavParent > li > button > span::after,
.drawerMenu .megaNav .megaNavParent > li > a > span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity ease-out 0.3s;
}
.drawerMenu .megaNav .megaNavParent > li > button.icoWin,
.drawerMenu .megaNav .megaNavParent > li > a.icoWin {
  padding-right: 18px;
  background: url("../../img/common/ico_blank_black.png?250130") no-repeat right bottom 27px/12px auto;
}
.drawerMenu .megaNav .megaNavParent > li.is-current > button > span::after,
.drawerMenu .megaNav .megaNavParent > li.is-current > a > span::after, .drawerMenu .megaNav .megaNavParent > li:hover > button > span::after,
.drawerMenu .megaNav .megaNavParent > li:hover > a > span::after {
  opacity: 1;
}
.drawerMenu .megaNav .megaNavParent > li.is-open .megaNavSlide {
  display: block;
  animation: fadeIn ease-out 0.3s forwards;
}
.drawerMenu .megaNav .megaNavSlide {
  display: none;
  color: #000;
  width: 100%;
  max-height: calc(100vh - 100px);
  /*padding-bottom: 50px;*/
  background-color: #fff;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  animation: fadeOut ease-out 0.3s forwards;
}
.drawerMenu .megaNav .megaNavSlide::after {
  display: block;
  content: "";
  width: 233px;
  height: 56px;
  background: url("../../img/common/gnav_bg.svg") no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.drawerMenu .megaNav .megaNavSlide > .cInner {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  width: 100%;
  padding: 20px 135px 50px 40px;
  overflow-y: auto;
}
.drawerMenu .megaNav .megaNavSlide a {
  color: #000;
  text-decoration: none;
}
.drawerMenu .megaNav .megaNavSlide a:hover {
  text-decoration: underline;
}
.drawerMenu .megaNav .megaNavSlide .navTtl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  width: 180px;
}
.drawerMenu .megaNav .megaNavSlide .navTtl a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center top;
  transform: scaleY(0.8) rotate(45deg);
}
.drawerMenu .megaNav .megaNavSlide .navContent {
  display: flex;
  gap: 0 30px;
  width: calc(100% - 220px);
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list {
  list-style-type: none;
  width: calc(50% - 137px);
  padding: 0;
  margin: 0;
  border-top: 1px solid #001a72;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.875;
  padding: 4px 25px 4px 15px;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list a:not(.icoWin) {
  position: relative;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list a:not(.icoWin)::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center top;
  transform: scaleY(0.8) rotate(45deg);
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list a:not(.icoWin)::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: scaleY(0.8) rotate(45deg) translateY(-50%);
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list a:not(.icoWin)::after {
  right: 10px;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list a.icoWin {
  background: url("../../img/common/ico_blank_black.png?250130") no-repeat right 5px center/12px auto;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.875;
  padding: 8px 25px 8px 15px;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list > li {
  border-bottom: 1px solid #001a72;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list .sub {
  list-style-type: none;
  padding: 0 0 0 20px;
  margin: 0;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list .sub > li {
  border-top: 1px solid #e5e8f1;
}
.drawerMenu .megaNav .megaNavSlide .navContent > .list .sub > li a {
  color: #333;
  font-size: 1.5rem;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList {
  width: 214px;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList > .item:not(:last-child) {
  margin-bottom: 17px;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList > .item a {
  display: block;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList > .item a:hover img {
  opacity: 0.6;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList > .item .img {
  margin-bottom: 8px;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList > .item .img.bdr {
  border: 1px solid #cccccc;
  box-sizing: border-box;
}
.drawerMenu .megaNav .megaNavSlide .navContent .bnrList > .item .img img {
  transition: opacity ease-out 0.3s;
  max-width: 100%;
  height: auto;
}
.drawerMenu .megaNav .megaNavSlide .navClose {
  transition: opacity 0.2s ease-out 0s;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.drawerMenu .megaNav .megaNavSlide .navClose:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 959px) {
  .drawerMenu .megaNav .megaNavSlide .navClose {
    transition: none;
  }
  .drawerMenu .megaNav .megaNavSlide .navClose:hover {
    opacity: 1;
  }
}
.drawerMenu .megaNav .megaNavSlide .navClose > button {
  transition: opacity 0.2s ease-out 0s;
  cursor: pointer;
  display: block;
  text-indent: -99999px;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: transparent;
  border: none;
  position: relative;
}
.drawerMenu .megaNav .megaNavSlide .navClose > button:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 959px) {
  .drawerMenu .megaNav .megaNavSlide .navClose > button {
    transition: none;
  }
  .drawerMenu .megaNav .megaNavSlide .navClose > button:hover {
    opacity: 1;
  }
}
.drawerMenu .megaNav .megaNavSlide .navClose > button::before, .drawerMenu .megaNav .megaNavSlide .navClose > button::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 15px;
  left: 0;
}
.drawerMenu .megaNav .megaNavSlide .navClose > button::before {
  transform: rotate(-45deg);
}
.drawerMenu .megaNav .megaNavSlide .navClose > button::after {
  transform: rotate(45deg);
}

#aithinkBtn {
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
#aithinkBtn a {
  display: block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  height: 100%;
  background: #001a72;
  position: relative;
}
#aithinkBtn a::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../../img/common/ico_blank_white.png?250130");
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
}
#aithinkBtn a img {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/**
 * ---------------------------------------------------
 * wrapper
 * ---------------------------------------------------
 */
.wrapper {
  padding-top: 80px;
  position: relative;
}

/**
 * ---------------------------------------------------
 * content
 * ---------------------------------------------------
 */
.mainContents .pageHeader {
  width: 100%;
  padding: 35px 0;
  margin-bottom: 60px;
  background: #f4f4f4;
  transition: 0.3s;
}
.mainContents .pageHeader .pageTtl {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 54px;
  max-width: 940px;
  padding: 0 50px;
  margin: 0 auto;
}
.mainContents .pageHeader .sub {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  max-width: 940px;
  padding: 0 50px;
  margin: 0 auto;
}
.mainContents .breadcrumb {
  width: 100%;
  padding: 10px 0;
}
.mainContents .breadcrumb ul {
  text-align: right;
  max-width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
}
.mainContents .breadcrumb ul li {
  display: inline;
  color: #001a72;
  font-size: 1.3rem;
}
.mainContents .breadcrumb ul li:before {
  content: ">";
  color: #d9ddea;
  margin: 0 8px;
}
.mainContents .breadcrumb ul li:first-child:before {
  content: "";
  margin: 0;
}
.mainContents .breadcrumb ul li a {
  color: #001a72;
  text-decoration: underline;
}
.mainContents .breadcrumb ul li a:hover {
  text-decoration: none;
}
.mainContents .baseBlock {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  /* ul,
  ul li,
  ol,
  ol li {
    font-size: 1.6rem;
  } */
}
.mainContents .baseBlock p {
  font-size: 1.6rem;
  line-height: 1.9;
}
.mainContents .blockTtl {
  color: #001a72;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 44px;
  margin-bottom: 55px;
}

.indexContent {
  width: 100%;
  margin-bottom: 50px;
}
.indexContent .indexLead {
  line-height: 2;
  max-width: 960px;
  padding: 0 50px;
  margin: 0 auto 40px auto;
}
.indexContent .indexTile {
  display: flex;
  flex-wrap: wrap;
  width: auto !important;
  max-width: 960px;
  margin: 0 auto;
}
.indexContent .indexTile .indexTileItem {
  width: 33.3%;
  max-width: 320px;
  margin-bottom: 15px;
  position: relative;
}
.indexContent .indexTile .indexTileItem img {
  max-width: 100%;
}
.indexContent .indexTile .indexTileItem a {
  display: block;
  color: #000;
  text-decoration: none;
  margin: 0 10px;
}
.indexContent .indexTile .indexTileItem a img {
  transition: opacity 0.2s ease-in;
}
.indexContent .indexTile .indexTileItem a:hover img {
  opacity: 0.6;
}
.indexContent .indexTile .indexTileItem a:hover .pagename > span {
  text-decoration: underline;
}
.indexContent .indexTile .indexTileItem .pagename {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  height: 60px;
  margin-top: -30px;
  width: calc(100% - 29px);
  background: #fff;
  transform: translateX(30px);
}
.indexContent .indexTile .indexTileItem .pagename > span {
  padding: 5px 18px;
  position: relative;
}
.indexContent .indexTile .indexTileItem .pagename .sub {
  font-size: 1.3rem;
  letter-spacing: normal;
}
.indexContent .indexTile .indexTileItem a:not(.icoWin) .pagename > span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  bottom: 12px;
  margin: 0 0 0 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  rotate: 45deg;
}
.indexContent .indexTile .indexTileItem .icoWin .pagename > span::after {
  display: inline-block;
  content: "";
  margin-left: 8px;
  margin-right: 5px;
  background: no-repeat center center/cover;
  width: 12px;
  height: 12px;
  background-image: url("../../img/common/ico_blank_black.png?250130");
}
.indexContent .indexTile .indexTileItem .description {
  padding-bottom: 60px;
}

.indexNews {
  margin-bottom: 80px;
}
.indexNews .indexTile {
  display: block;
}
.indexNews .indexTile .blockTtl {
  margin-bottom: 0;
}
.indexNews .indexTile .moreLink {
  display: block;
  max-width: 940px;
  margin: 0 auto 15px auto;
}
.indexNews ul:not(.tabs) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.indexNews ul:not(.tabs) li {
  margin-bottom: 30px;
  overflow: hidden;
}
.indexNews ul:not(.tabs) li:last-child {
  margin-bottom: 0;
}
.indexNews ul:not(.tabs) li .date {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  width: 100px;
  float: left;
  margin-right: 10px;
}
.indexNews ul:not(.tabs) li .category {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1;
  width: 130px;
  float: left;
}
.indexNews ul:not(.tabs) li .category span {
  display: block;
  color: #fff;
  padding: 5px 0;
  background: #333;
}
.indexNews ul:not(.tabs) li .category .category_business,
.indexNews ul:not(.tabs) li .newsDetail .category .category_business {
  background: #7c72af;
}
.indexNews ul:not(.tabs) li .category .category_products,
.indexNews ul:not(.tabs) li .newsDetail .category .category_products {
  background: #ca4d87;
}
.indexNews ul:not(.tabs) li .category .category_corporate,
.indexNews ul:not(.tabs) li .newsDetail .category .category_corporate,
.indexNews ul:not(.tabs) li .category .category_news_release,
.indexNews ul:not(.tabs) li .newsDetail .category .category_news_release {
  background: #e4841e;
}
.indexNews ul:not(.tabs) li .category .category_csr,
.indexNews ul:not(.tabs) li .newsDetail .category .category_csr {
  background: #8caa13;
}
.indexNews ul:not(.tabs) li .category .category_emergency,
.indexNews ul:not(.tabs) li .newsDetail .category .category_emergency {
  background: #e74d4c;
}
.indexNews ul:not(.tabs) li .category .category_ir,
.indexNews ul:not(.tabs) li .newsDetail .category .category_ir {
  background: #298eba;
}
.indexNews ul:not(.tabs) li .category .category_topics,
.indexNews ul:not(.tabs) li .newsDetail .category .category_topics {
  background: #2a7f55;
}
.indexNews ul:not(.tabs) li .title {
  color: #333;
  font-size: 1.4rem;
  margin-left: 250px;
}
.indexNews ul:not(.tabs) li .title a {
  position: relative;
  color: #000;
  text-decoration: none;
}
.indexNews ul:not(.tabs) li .title a::after {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  width: 8px;
  height: 8px;
  margin: 0 0 0 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  rotate: 45deg;
}
.indexNews ul:not(.tabs) li .title a:hover {
  text-decoration: underline;
}
.indexNews ul:not(.tabs) li .title a.icoPDF::after, .indexNews ul:not(.tabs) li .title a.linkPdf::after {
  width: 18px;
  height: 15px;
  margin-left: 5px;
  border: 0;
  background: url("../../img/common/ico_pdf.svg") no-repeat left top/18px 15px;
  top: 2px;
  rotate: none;
}

.errorPage .searchVox {
  max-width: 510px;
  margin-top: 30px;
  padding: 12px;
  background: #f4f4f4;
}
.errorPage .searchVox .searchForm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.errorPage .searchVox .searchWord {
  width: calc(100% - 50px) !important;
  height: auto !important;
  padding: 10px !important;
  box-sizing: border-box;
  border: none !important;
  border-right: 1px solid #e5e8f1 !important;
  background-color: #f4f4f4 !important;
}
.errorPage .searchVox .btn {
  cursor: pointer;
  text-indent: -99999px;
  width: 50px;
  height: 40px;
  padding: 0;
  background: url("../../img/common/ico_search.png") no-repeat center center/20px 20px;
  border: none;
}

/**
 * ---------------------------------------------------
 * footer
 * ---------------------------------------------------
 */
#footer {
  color: #fff;
  width: 100%;
  background: #333333;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
#footer .footTop {
  max-width: 1100px;
  padding: 85px 50px 35px 50px;
  margin: 0 auto;
}
#footer .snsVox {
  margin-bottom: 50px;
}
#footer .snsVox .snsTtl {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
#footer .snsList {
  display: flex;
  justify-content: flex-start;
  gap: 0 20px;
}
#footer .snsList li img {
  width: auto;
  height: 27px;
}
#footer .footList {
  letter-spacing: -0.4em;
}
#footer .footList li {
  display: inline-block;
  letter-spacing: normal;
  margin-right: 30px;
}
#footer .footList li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
}
#footer .footList li a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  margin: 0 0 0 2px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  rotate: 45deg;
  translate: 0 -50%;
}
#footer .footList li a:hover {
  opacity: 1;
  text-decoration: underline;
}
#footer .footBottom {
  background: #001a72;
}
#footer .copyright {
  display: block;
  text-align: right;
  color: #99a3c7;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  max-width: 1100px;
  padding: 5px 30px;
  margin: 0 auto;
}

#pageTop {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 60px;
  right: 35px;
  z-index: 10;
  transition: 0.3s;
}
#pageTop a {
  display: block;
  text-indent: -9999px;
  height: 100%;
  background: url("../../img/common/pagetop.svg") no-repeat center center/cover;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
@media only screen and (max-width: 1024px) {
  /**
   * ---------------------------------------------------
   * header
   * ---------------------------------------------------
   */
  .globalHeader {
    height: 55px;
  }
  .globalHeader .globalHeaderInner {
    padding: 0 70px 0 20px;
  }
  .globalHeader .logo {
    width: 88px;
  }
  .globalHeader .btnDrawer {
    display: none;
  }
  .globalHeader .searchArea {
    width: 100%;
    padding: 40px 70px;
    background: #efefef;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 100;
    transition: 0.2s;
    visibility: hidden;
    opacity: 0;
  }
  .globalHeader .searchArea.active {
    visibility: visible;
    opacity: 1;
  }
  .globalHeader .searchArea .closeBtn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .globalHeader .searchArea .closeBtn a {
    display: block;
    text-indent: -99999px;
    height: 100%;
    position: relative;
  }
  .globalHeader .searchArea .closeBtn a::before, .globalHeader .searchArea .closeBtn a::after {
    display: block;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #001a72;
    position: absolute;
    top: 15px;
    left: 0;
  }
  .globalHeader .searchArea .closeBtn a::before {
    transform: rotate(-45deg);
  }
  .globalHeader .searchArea .closeBtn a::after {
    transform: rotate(45deg);
  }
  .globalHeader .searchVox {
    padding: 10px;
    margin: 20px 20px 0 20px;
    background: #e5e8f1;
  }
  .globalHeader .searchVox .searchWord {
    width: calc(100% - 40px) !important;
    background-color: transparent !important;
  }
  .globalHeader .searchVox .btn {
    width: 40px;
  }
  .globalHeader .langNav {
    width: 100%;
    padding: 20px;
    top: 55px;
  }
  .globalHeader .langNav .langNavClose {
    right: -8px;
    top: -8px;
  }
  .globalHeader .snsVox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 20px 40px;
    margin-top: 20px;
    background-color: #333;
  }
  .globalHeader .snsVox .snsList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .globalHeader .snsVox .snsList > li {
    width: 28px;
  }
  .globalHeader .snsVox .snsList > li img {
    width: 100%;
    height: auto;
  }
  #gNavOpener {
    cursor: pointer;
    display: block;
    width: 70px;
    height: 55px;
    padding: 0;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 90;
  }
  #gNavOpener::before, #gNavOpener::after,
  #gNavOpener > span::before {
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    margin-left: -10px;
    background-color: #001a72;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: margin-top ease-out 0.3s, opacity ease-out 0.3s, transform ease-out 0.3s;
  }
  #gNavOpener::before {
    margin-top: -6px;
  }
  #gNavOpener::after {
    margin-top: 6px;
  }
  #gNavOpener > span {
    display: block;
    text-indent: -9999px;
  }
  #gNavOpener.is-navOpen::before {
    margin-top: 0;
    transform: rotate(45deg);
  }
  #gNavOpener.is-navOpen::after {
    margin-top: 0;
    transform: rotate(-45deg);
  }
  #gNavOpener.is-navOpen > span::before {
    opacity: 0;
  }
  #gNavWrapper {
    width: 100%;
    height: auto;
    max-height: calc(100svh - 55px);
    background-color: #fff;
    position: fixed;
    top: 55px;
    right: -100%;
    z-index: 100;
    overflow-y: auto;
    transition: right 0.4s;
  }
  body.is-navOpen #gNavWrapper {
    right: 0;
  }
  .drawerMenu {
    display: flex;
    justify-content: end;
    align-items: center;
    width: auto;
  }
  .drawerMenu .searchBtn,
  .drawerMenu .langBtn {
    margin-top: auto;
    margin-bottom: auto;
  }
  .drawerMenu .searchBtn {
    margin-left: 20px;
  }
  .drawerMenu .langBtn {
    margin-left: 0;
  }
  .drawerMenu .megaNav {
    display: block;
    height: auto;
  }
  .drawerMenu .megaNav .megaNavParent {
    display: block;
    height: auto;
  }
  .drawerMenu .megaNav .megaNavParent > li {
    font-size: 1.6rem;
    position: relative;
  }
  .drawerMenu .megaNav .megaNavParent > li::before, .drawerMenu .megaNav .megaNavParent > li::after {
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    background-color: #e5e8f1;
    position: absolute;
    left: 20px;
  }
  .drawerMenu .megaNav .megaNavParent > li::after {
    content: "";
    bottom: 0;
  }
  .drawerMenu .megaNav .megaNavParent > li:first-child::before {
    content: "";
    top: 0;
  }
  .drawerMenu .megaNav .megaNavParent > li > button,
  .drawerMenu .megaNav .megaNavParent > li > a {
    display: block;
    text-align: left;
    padding: 17px 70px 17px 40px;
  }
  .drawerMenu .megaNav .megaNavParent > li > button.opener,
  .drawerMenu .megaNav .megaNavParent > li > a.opener {
    position: relative;
  }
  .drawerMenu .megaNav .megaNavParent > li > button.opener::before, .drawerMenu .megaNav .megaNavParent > li > button.opener::after,
  .drawerMenu .megaNav .megaNavParent > li > a.opener::before,
  .drawerMenu .megaNav .megaNavParent > li > a.opener::after {
    display: block;
    content: "";
    width: 14px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 40px;
    transition: transform ease-out 0.3s;
  }
  .drawerMenu .megaNav .megaNavParent > li > button.opener::after,
  .drawerMenu .megaNav .megaNavParent > li > a.opener::after {
    transform: rotate(90deg);
  }
  .drawerMenu .megaNav .megaNavParent > li > button > span,
  .drawerMenu .megaNav .megaNavParent > li > a > span {
    display: block;
    padding-bottom: 0;
  }
  .drawerMenu .megaNav .megaNavParent > li > button > span::after,
  .drawerMenu .megaNav .megaNavParent > li > a > span::after {
    content: none;
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open {
    background-color: #f7f8fb;
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open::before, .drawerMenu .megaNav .megaNavParent > li.is-open::after {
    width: 100%;
    background-color: #001a72;
    left: 0;
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open::before {
    content: "";
    top: -1px;
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open:first-child::before {
    top: 0;
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open > button,
  .drawerMenu .megaNav .megaNavParent > li.is-open > a {
    color: #001a72;
    font-weight: bold;
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open > button.opener::after,
  .drawerMenu .megaNav .megaNavParent > li.is-open > a.opener::after {
    transform: rotate(0);
  }
  .drawerMenu .megaNav .megaNavParent > li.is-open .megaNavSlide {
    animation: none;
  }
  .drawerMenu .megaNav .megaNavSlide {
    max-height: initial;
    padding-bottom: 0;
    background-color: transparent;
    position: static;
    visibility: visible;
    opacity: 1;
    transition: none;
    animation: none;
    overflow-y: hidden;
  }
  .drawerMenu .megaNav .megaNavSlide::after {
    content: none;
  }
  .drawerMenu .megaNav .megaNavSlide > .cInner {
    display: block;
    padding: 0 20px;
  }
  .drawerMenu .megaNav .megaNavSlide .navTtl {
    display: none;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent {
    display: block;
    width: auto;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent > .list {
    width: auto;
    border-top-color: #e5e8f1;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent > .list:not(:first-child) {
    border-top: none;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent > .list a {
    padding: 12px 50px 12px 20px;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent > .list a:not(.icoWin)::after {
    width: 10px;
    height: 10px;
    right: 25px;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent > .list a.icoWin {
    background-position: right 22px center;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent > .list > li {
    border-bottom-color: #e5e8f1;
  }
  .drawerMenu .megaNav .megaNavSlide .navContent .bnrList {
    display: none;
  }
  .drawerMenu .megaNav .megaNavSlide .navClose {
    display: none;
  }
  #aithinkBtn {
    display: none;
  }
  /**
   * ---------------------------------------------------
   * wrapper
   * ---------------------------------------------------
   */
  .wrapper {
    width: 100%;
    padding-top: 55px;
    padding-left: 0;
  }
  /**
   * ---------------------------------------------------
   * content
   * ---------------------------------------------------
   */
  .overlay {
    display: block;
    position: fixed;
    top: 110px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
  }
} /*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .bnrSprits {
    width: 90%;
    margin: 0 auto;
  }
  .bnrSprits img {
    width: 100%;
  }
  /**
   * ---------------------------------------------------
   * content
   * ---------------------------------------------------
   */
  .mainContents {
    padding-left: 0;
  }
  .mainContents .pageHeader {
    width: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .mainContents .pageHeader .pageTtl {
    word-break: break-all;
    font-size: 2.6rem;
    line-height: 1.5;
    padding: 0 20px;
    max-width: inherit;
    box-sizing: border-box;
  }
  .mainContents .pageHeader .sub {
    line-height: 1.3;
    max-width: inherit;
    padding: 0 20px;
  }
  .mainContents .breadcrumb {
    width: auto;
    padding: 3px 10px;
  }
  .mainContents .breadcrumb ul {
    padding: 0;
  }
  .mainContents .breadcrumb ul li {
    font-size: 1.3rem;
  }
  .mainContents .baseBlock {
    width: auto;
    padding: 0 20px;
    /* ul,
    ul li,
    ol,
    ol li {
      font-size: 1.5rem;
    } */
  }
  .mainContents .baseBlock p {
    font-size: 1.5rem;
  }
  .mainContents .blockTtl {
    font-size: 2.2rem;
    line-height: 38px;
    margin-bottom: 30px;
  }
  .indexContent .indexLead {
    font-size: 1.6rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .indexContent .indexTile {
    width: auto !important;
    padding: 0 10px;
  }
  .indexContent .indexTile .indexTileItem {
    width: 50%;
    max-width: 100%;
  }
  .indexContent .indexTile .indexTileItem a {
    transition: none;
  }
  .indexContent .indexTile .indexTileItem a:hover {
    opacity: 1;
  }
  .indexContent .indexTile .indexTileItem .pagename {
    font-size: 1.7rem;
  }
  .indexContent .indexTile .indexTileItem .description {
    padding-bottom: 30px;
  }
  .indexNews .indexTile .moreLink {
    margin-bottom: 40px;
  }
  .indexNews ul:not(.tabs) li .date {
    width: 8em;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .indexNews ul:not(.tabs) li .category {
    margin-bottom: 10px;
  }
  .indexNews ul:not(.tabs) li .title {
    clear: both;
    margin-left: 0;
  }
  .indexNews ul:not(.tabs) li .title a {
    display: inline-block;
    padding-right: 25px;
  }
  .indexNews ul:not(.tabs) li .title a::after {
    position: absolute;
    right: 5px;
    top: 50%;
    bottom: auto;
    translate: 0 -50%;
  }
  .indexNews ul:not(.tabs) li .title a.icoPDF::after, .indexNews ul:not(.tabs) li .title a.linkPdf::after {
    right: 5px;
    top: 50%;
    translate: 0 -50%;
  }
  /**
   * ---------------------------------------------------
   * footer
   * ---------------------------------------------------
   */
  #footer .footTop {
    padding: 50px 45px 60px 45px;
  }
  #footer .snsVox {
    margin-bottom: 55px;
  }
  #footer .snsVox .snsTtl {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
  }
  #footer .snsList {
    justify-content: center;
  }
  #footer .snsList li:last-of-type {
    margin-right: 0;
  }
  #footer .footList li {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #footer .footList li:last-of-type {
    margin-bottom: 0;
  }
  #footer .footList li a {
    font-size: 1.3rem;
  }
  #f-nav .navList {
    display: none;
  }
  #f-nav .navList.on {
    display: block;
  }
  #f-nav .navList li {
    width: 100%;
    border-top: 1px solid #fff;
  }
  #f-nav .navList li:first-child {
    border: none;
  }
  #f-nav .navList li a {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    text-align: left;
    text-decoration: none;
    width: 100%;
    padding: 20px 25px;
    background: #000 url("../../img/common/nav_arw.png") no-repeat 95% center;
    box-sizing: border-box;
  }
  #f-nav .navList li a:hover, #f-nav .navList li a.current {
    background-color: #333;
  }
  #pageTop {
    width: 37px;
    height: 37px;
    top: 15px;
    right: 10px;
  }
} /*  @media END */
/**
 ****************************************************
 *
 * スマホ
 *
 ****************************************************
 */
@media only screen and (max-width: 767px) {
  .indexContent .indexTile .indexTileItem {
    width: 100%;
  }
} /*  @media END */
/*
 * =====================================================
 *
 * clearfix用CSS
 *
 * =====================================================
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/**
 * Dreamweaver作業時のみ
 */
/* .clearfix { overflow:hidden; } */
/*
 * =====================================================
 *
 * 汎用要素用CSS
 *
 * =====================================================
 */
/**
 * ---------------------------------------------------
 * white-space
 * ---------------------------------------------------
 */
.wsN {
  white-space: nowrap;
}

/**
 * ---------------------------------------------------
 * word-wrap
 * ---------------------------------------------------
 */
.wrBW {
  word-wrap: break-word;
}

/**
 * ---------------------------------------------------
 * 文字色装飾
 * ---------------------------------------------------
 */
.cWhite {
  color: #ffffff;
}

.cBlue {
  color: #016bb5;
}

.cRed {
  color: #e4050b;
}

.cGray {
  color: #666666;
}

.cYellow {
  color: #ffff00;
}

.cLogo {
  color: #c70057;
}

/**
 * ---------------------------------------------------
 * 文字装飾
 * ---------------------------------------------------
 */
.decUline {
  text-decoration: underline;
}

.decNone {
  text-decoration: none;
}

/**
 * ---------------------------------------------------
 * 文字サイズ
 * ---------------------------------------------------
 */
.s70 {
  font-size: 70%;
}

.s80 {
  font-size: 80%;
}

.s90 {
  font-size: 90%;
}

.s100 {
  font-size: 100%;
}

.s110 {
  font-size: 110%;
}

.s120 {
  font-size: 120%;
}

.s130 {
  font-size: 130%;
}

.s140 {
  font-size: 140%;
}

.s150 {
  font-size: 150%;
}

.s160 {
  font-size: 160%;
}

.s170 {
  font-size: 170%;
}

.s180 {
  font-size: 180%;
}

.s190 {
  font-size: 190%;
}

.s200 {
  font-size: 200%;
}

/**
 * ---------------------------------------------------
 * 文字の太さ
 * ---------------------------------------------------
 */
.fwN {
  font-weight: normal;
}

.fwB {
  font-weight: bold;
}

/**
 * ---------------------------------------------------
 * 文字の高さ
 * ---------------------------------------------------
 */
.lh0-5 {
  line-height: 0.5;
}

.lh1 {
  line-height: 1;
}

.lh1-1 {
  line-height: 1.1;
}

.lh1-2 {
  line-height: 1.2;
}

.lh1-5 {
  line-height: 1.5;
}

.lh2 {
  line-height: 2;
}

/**
 * ---------------------------------------------------
 * レイアウト
 * ---------------------------------------------------
 */
.mA {
  margin: 0 auto !important;
}

.mLA {
  margin-left: auto !important;
}

.mRA {
  margin-right: auto !important;
}

.mT0 {
  margin-top: 0px !important;
}

.mT5 {
  margin-top: 5px !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT15 {
  margin-top: 15px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT25 {
  margin-top: 25px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT35 {
  margin-top: 35px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT45 {
  margin-top: 45px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mR0 {
  margin-right: 0px !important;
}

.mB3 {
  margin-right: 3px !important;
}

.mR5 {
  margin-right: 5px !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR15 {
  margin-right: 15px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mR25 {
  margin-right: 25px !important;
}

.mR30 {
  margin-right: 30px !important;
}

.mR35 {
  margin-right: 35px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.mR45 {
  margin-right: 45px !important;
}

.mR50 {
  margin-right: 50px !important;
}

.mR60 {
  margin-right: 60px !important;
}

.mR70 {
  margin-right: 70px !important;
}

.mR100 {
  margin-right: 100px !important;
}

.mR110 {
  margin-right: 110px !important;
}

.mR120 {
  margin-right: 120px !important;
}

.mR130 {
  margin-right: 130px !important;
}

.mR140 {
  margin-right: 140px !important;
}

.mR150 {
  margin-right: 150px !important;
}

.mR160 {
  margin-right: 160px !important;
}

.mR170 {
  margin-right: 170px !important;
}

.mR180 {
  margin-right: 180px !important;
}

.mR190 {
  margin-right: 190px !important;
}

.mR200 {
  margin-right: 200px !important;
}

.mR210 {
  margin-right: 210px !important;
}

.mR220 {
  margin-right: 220px !important;
}

.mR230 {
  margin-right: 230px !important;
}

.mR240 {
  margin-right: 240px !important;
}

.mR250 {
  margin-right: 250px !important;
}

.mR260 {
  margin-right: 260px !important;
}

.mR280 {
  margin-right: 280px !important;
}

.mR300 {
  margin-right: 300px !important;
}

.mB0 {
  margin-bottom: 0px !important;
}

.mB3 {
  margin-bottom: 3px !important;
}

.mB5 {
  margin-bottom: 5px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB15 {
  margin-bottom: 15px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB25 {
  margin-bottom: 25px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB35 {
  margin-bottom: 35px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB45 {
  margin-bottom: 45px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mL0 {
  margin-left: 0px !important;
}

.mL5 {
  margin-left: 5px !important;
}

.mL1em {
  margin-left: 1em !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mL15 {
  margin-left: 15px !important;
}

.mL20 {
  margin-left: 20px !important;
}

.mL25 {
  margin-left: 25px !important;
}

.mL30 {
  margin-left: 30px !important;
}

.mL35 {
  margin-left: 35px !important;
}

.mL40 {
  margin-left: 40px !important;
}

.mL45 {
  margin-left: 45px !important;
}

.mL50 {
  margin-left: 50px !important;
}

.mL55 {
  margin-left: 55px !important;
}

.mL60 {
  margin-left: 60px !important;
}

.mL70 {
  margin-left: 70px !important;
}

.mL80 {
  margin-left: 80px !important;
}

.mL85 {
  margin-left: 85px !important;
}

.mL105 {
  margin-left: 105px !important;
}

.mL110 {
  margin-left: 110px !important;
}

.mL115 {
  margin-left: 115px !important;
}

.mL120 {
  margin-left: 120px !important;
}

.mL130 {
  margin-left: 130px !important;
}

.mL140 {
  margin-left: 140px !important;
}

.mL150 {
  margin-left: 150px !important;
}

.mL170 {
  margin-left: 170px !important;
}

.mL200 {
  margin-left: 200px !important;
}

.mL225 {
  margin-left: 225px !important;
}

.mL270 {
  margin-left: 270px !important;
}

.pT0 {
  padding-top: 0px !important;
}

.pT2 {
  padding-top: 2px !important;
}

.pT3 {
  padding-top: 3px !important;
}

.pT5 {
  padding-top: 5px !important;
}

.pT10 {
  padding-top: 10px !important;
}

.pT15 {
  padding-top: 15px !important;
}

.pT20 {
  padding-top: 20px !important;
}

.pT25 {
  padding-top: 25px !important;
}

.pT30 {
  padding-top: 30px !important;
}

.pT35 {
  padding-top: 35px !important;
}

.pT40 {
  padding-top: 40px !important;
}

.pT45 {
  padding-top: 45px !important;
}

.pT50 {
  padding-top: 50px !important;
}

.pT80 {
  padding-top: 80px !important;
}

.pT100 {
  padding-top: 100px !important;
}

.pR0 {
  padding-right: 0px !important;
}

.pR5 {
  padding-right: 5px !important;
}

.pR10 {
  padding-right: 10px !important;
}

.pR15 {
  padding-right: 15px !important;
}

.pR20 {
  padding-right: 20px !important;
}

.pR25 {
  padding-right: 25px !important;
}

.pR30 {
  padding-right: 30px !important;
}

.pR35 {
  padding-right: 35px !important;
}

.pR40 {
  padding-right: 40px !important;
}

.pR45 {
  padding-right: 45px !important;
}

.pR50 {
  padding-right: 50px !important;
}

.pB0 {
  padding-bottom: 0px !important;
}

.pB5 {
  padding-bottom: 5px !important;
}

.pB10 {
  padding-bottom: 10px !important;
}

.pB15 {
  padding-bottom: 15px !important;
}

.pB20 {
  padding-bottom: 20px !important;
}

.pB25 {
  padding-bottom: 25px !important;
}

.pB30 {
  padding-bottom: 30px !important;
}

.pB35 {
  padding-bottom: 35px !important;
}

.pB40 {
  padding-bottom: 40px !important;
}

.pB45 {
  padding-bottom: 45px !important;
}

.pB50 {
  padding-bottom: 50px !important;
}

.pL0 {
  padding-left: 0px !important;
}

.pL5 {
  padding-left: 5px !important;
}

.pL10 {
  padding-left: 10px !important;
}

.pL15 {
  padding-left: 15px !important;
}

.pL20 {
  padding-left: 20px !important;
}

.pL25 {
  padding-left: 25px !important;
}

.pL30 {
  padding-left: 30px !important;
}

.pL35 {
  padding-left: 35px !important;
}

.pL40 {
  padding-left: 40px !important;
}

.pL45 {
  padding-left: 45px !important;
}

.pL50 {
  padding-left: 50px !important;
}

/**
 * ---------------------------------------------------
 * float用スタイル
 * ---------------------------------------------------
 */
.fLeft {
  float: left;
}

.fRight {
  float: right;
}

.fClear {
  clear: both;
}

.fClearL {
  clear: left;
}

.fClearR {
  clear: right;
}

.fN {
  float: none;
}

/**
 * ---------------------------------------------------
 * position用スタイル
 * ---------------------------------------------------
 */
.posRel {
  position: relative;
}

.posAbs {
  position: absolute;
}

.posT0R0 {
  right: 0px;
  top: 0px;
}

/**
 * ---------------------------------------------------
 * overflow
 * ---------------------------------------------------
 */
.ofHidden {
  overflow: hidden;
}

.ofAuto {
  overflow: auto;
}

.ofVisible {
  overflow: visible;
}

/**
 * ---------------------------------------------------
 * display用スタイル
 * ---------------------------------------------------
 */
.dspInline {
  display: inline;
}

.dspBlock {
  display: block;
}

.dspInlBlock {
  display: inline-block;
}

.dspNone {
  display: none;
}

/**
 * ---------------------------------------------------
 * 汎用行揃え用スタイル
 * ---------------------------------------------------
 */
.alignLeft {
  text-align: left !important;
}

.alignCenter {
  text-align: center !important;
}

.alignRight {
  text-align: right !important;
}

/**
 * ---------------------------------------------------
 * 汎用縦揃え用スタイル
 * ---------------------------------------------------
 */
.valignTop {
  vertical-align: top;
}

.valignMiddle {
  vertical-align: middle;
}

.valignBottom {
  vertical-align: bottom;
}

.valignTextBottom {
  vertical-align: text-bottom;
}

.valignSuper {
  vertical-align: super;
}

/**
 * ---------------------------------------------------
 * 汎用幅指定用スタイル
 * ---------------------------------------------------
 */
.w5 {
  width: 5px;
}

.w10em {
  width: 10em;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w30 {
  width: 30px;
}

.w40p {
  width: 40%;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w98p {
  width: 98%;
}

.w99p {
  width: 99%;
}

.w100 {
  width: 100px;
}

.w100p {
  width: 100%;
}

/**
 * ---------------------------------------------------
 * hasLayout true
 * ---------------------------------------------------
 */
.h1p {
  height: 1%;
}

.z1 {
  zoom: 1;
}

/**
 * ---------------------------------------------------
 * リスト用スタイル
 * ---------------------------------------------------
 */
.listTypeNone {
  list-style-type: none;
}

.listInside {
  list-style-position: inside;
}

.listOutside {
  list-style-position: outside;
}

.listTypeDisc {
  list-style-type: disc;
}

.listTypeSquare {
  list-style-type: square;
}

.listTypeCircle {
  list-style-type: circle;
}

.listTypeNum {
  padding-left: 0px;
  margin-left: 0px;
  margin-top: 0px;
}

.listTypeNum li {
  list-style-type: none;
  padding: 0px 0px 0px 20px;
}

.listNumParentheses {
  list-style-type: none;
  list-style-position: inside;
}

.listNumParentheses li {
  counter-increment: cnt;
}

.listNumParentheses li:before {
  display: marker;
  content: "(" counter(cnt) ")";
}

/**
 * ---------------------------------------------------
 * 背景色用スタイル
 * ---------------------------------------------------
 */
.bgFFFFFF {
  background-color: #ffffff;
}

.bgE6ECE8 {
  background-color: #e6ece8;
}

.bgF0F0DC {
  background-color: #f0f0dc;
}

.bgF0EFEE {
  background-color: #f0efee;
}

.bgEBE6E1 {
  background-color: #ebe6e1;
}

.bgC9C9C9 {
  background-color: #c9c9c9;
}

/**
 * ---------------------------------------------------
 * ボーダー用スタイル
 * ---------------------------------------------------
 */
.bdr1s999 {
  border: 1px solid #999999;
}

.bdr1sCCC {
  border: 1px solid #cccccc;
}

.bdr1sBBB {
  border: 1px solid #bbbbbb;
}

.bdr1s5B5B5B {
  border: 1px solid #5b5b5b;
}

.bdr1do444444 {
  border: 1px dotted #444444;
}

.bdrTn {
  border-top: none !important;
}

.bdrRn {
  border-right: none !important;
}

.bdrBn {
  border-bottom: none !important;
}

.bdrLn {
  border-left: none !important;
}

.bdrN {
  border: none !important;
}

.bdrTop {
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.bdrRight {
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.bdrBottom {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}

.bdrLeft {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

/**
 * テキストインデント
 */
.tim1em {
  text-indent: -1em;
}

.ti1em {
  text-indent: 1em;
}

/**
 * カーソル
 */
.csrPtr {
  cursor: pointer;
}

/**
 * ---------------------------------------------------
 * css3 角丸ボーダー
 * ---------------------------------------------------
 */
.bdrRad3 {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.bdrRad5 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/**
 * ワードブレイク
 */
.wbBrkA {
  word-break: break-all;
}

/**
 * IE png support用
 */
/**
 * 高さ合わせ
 */
/**
 * ホバーフェード
 */
/**
 * ロールオーバー
 */
/**
 * ホバーフェード(画像二枚版)
 */
/**
 * スムーススクロール
 */
/**
 * png画像→gif画像へ差し替え
 */
/**
 * PC画像⇔SP画像切替え
 */
/*
 * =====================================================
 *
 * [print用CSS]
 *
 * =====================================================
 */
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  1% {
    display: flex;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOut {
  0% {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  99% {
    display: flex;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/*
 * =====================================================
 *
 * [text]
 *
 * =====================================================
 */
/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
/*  @media END */
/*
 * =====================================================
 *
 * [heading]
 *
 * =====================================================
 */
.headStyle01 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 38px;
  padding-left: 23px;
  margin-bottom: 30px;
  background: url(../../img/common/ico_point03.svg) no-repeat left 0.3em/11px 20px;
}

.headStyle02 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 36px;
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}
.headStyle02::after {
  display: block;
  content: "";
  width: 11px;
  height: 2px;
  background: #001a72;
  position: absolute;
  top: 0.8em;
  left: 0;
}

.headStyle03 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 30px;
  margin-bottom: 30px;
}

.headStyle04 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 30px;
  margin-bottom: 20px;
}

.headStyle05 {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 26px;
  margin-bottom: 20px;
}

.headStyle06,
.mainContents p.copyTxt {
  color: #001a72;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 20px !important;
}

.headStyle07 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-top: 60px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9ddea;
  position: relative;
}
.headStyle07::before {
  display: block;
  content: "";
  width: 110px;
  height: 1px;
  background: #001a72;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.headStyle07 .sub {
  font-size: 1.3rem;
  margin-left: 10px;
}

.headStyle08 {
  color: #001a72;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 5px;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  .headStyle01 {
    font-size: 2rem;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .headStyle02 {
    font-size: 1.8rem;
    line-height: 30px;
  }
  .headStyle07 {
    font-size: 2.2rem;
    padding-bottom: 5px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .headStyle07::before {
    width: 75px;
  }
  .headStyle07 .sub {
    display: block;
    font-size: 1.3rem;
    margin-left: 0;
  }
  .mainContents p.copyTxt {
    font-size: 2.4rem;
  }
} /*  @media END */
/*
 * =====================================================
 *
 * [list]
 *
 * =====================================================
 */
/**
 * ---------------------------------------------------
 * 基本
 * ---------------------------------------------------
 */
.listStyle01 {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.listStyle02 {
  list-style-type: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.listStyle03 {
  list-style-type: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
/*  @media END */
/*
 * =====================================================
 *
 * [icon]
 *
 * =====================================================
 */
.icoPDF::after,
.icoDOC::after,
.icoXLS::after,
.icoMP3::after,
.icoMP4::after,
.icoNW::after {
  display: inline-block;
  content: "";
  color: #3065d0;
  margin-left: 8px;
  margin-right: 5px;
  background: no-repeat center center/cover;
}

a.icoPDF,
a.icoDOC,
a.icoXLS,
a.icoMP3,
a.icoMP4,
a.icoNW {
  color: #3065d0;
}

.icoPDF::after {
  width: 18px;
  height: 15px;
  background-image: url(../../img/common/ico_pdf.svg?250929);
}

.icoPDF.white::after {
  background-image: url(../../img/common/ico_pdf_white.svg);
}

.icoDOC::after {
  width: 25px;
  height: 16px;
  background-image: url(../../img/common/ico_doc.svg);
}

.icoDOC.white::after {
  background-image: url(../../img/common/ico_doc_white.svg);
}

.icoXLS::after {
  width: 24px;
  height: 16px;
  background-image: url(../../img/common/ico_xls.svg);
}

.icoXLS.white::after {
  background-image: url(../../img/common/ico_xls_white.svg);
}

.icoMP3::after {
  width: 22px;
  height: 16px;
  background-image: url(../../img/common/ico_mp3_blue.png);
}

.icoMP4::after {
  width: 22px;
  height: 16px;
  background-image: url(../../img/common/ico_mp4_blue.png);
}

.icoNW::after {
  width: 12px;
  height: 12px;
  background-image: url(../../img/common/ico_blank_black.png?250130);
}

.icoNW.white::after {
  background-image: url(../../img/common/ico_blank_white.png?250130);
}

.icoNW.white.large::after {
  width: 20px;
  height: 20px;
  background-image: url(../../img/common/ico_blank_white.png?250130);
}

.icoRequire {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.3;
  padding: 3px 5px;
  margin: 0 3px;
  background: #001a72;
}

.icoBlank::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-left: 0.5em;
  margin-bottom: 1px;
  background: url("../../img/common/ico_blank_black.png") no-repeat right center/cover;
}
.icoBlank.white::after {
  background: url("../../img/common/ico_blank_white.png") no-repeat right center/cover;
}

.icoArrow::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center top;
  transform: scaleY(0.8) rotate(45deg);
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
/*  @media END */
/*
 * =====================================================
 *
 * [btn]
 *
 * =====================================================
 */
.btnStyle01 a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: auto;
  min-width: 310px;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #001a72;
  border-radius: 10em;
  transition: 0.2s;
}
.btnStyle01 a span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 25px;
  line-height: 1.3;
  min-height: 60px;
}
.btnStyle01 a span:not(.icoPDF):not(.icoBlank)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  margin: 0 0 0 0;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  rotate: 45deg;
  translate: 0 -50%;
  background: none;
}
.btnStyle01 a span.icoBlank::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.btnStyle01 a:hover span {
  text-decoration: underline;
}
.btnStyle01.small a {
  min-width: 270px;
}
.btnStyle01.small a span {
  min-height: 40px;
}
.btnStyle01.bdn a {
  border: none;
}
.btnStyle01.left a span {
  justify-content: start;
}

a.btnStyle02 {
  display: grid;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 11px 50px 9px 30px;
  border: 1px solid #808080;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.6;
  box-sizing: border-box;
  text-decoration: none;
}
a.btnStyle02:not(.icoNW)::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: 0 0 0 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  rotate: 45deg;
  translate: 0 -50%;
}
a.btnStyle02.icoNW::after {
  position: absolute;
  display: inline;
  right: 30px;
  top: 50%;
  margin: 0;
  translate: 0 -50%;
}
a.btnStyle02:hover {
  text-decoration: underline;
}

.moreBtn div,
.moreBtn a {
  display: inline-block;
  color: #001a72;
  text-decoration: none;
  padding: 45px 0 0 55px;
  position: relative;
}
.moreBtn div::before,
.moreBtn a::before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  background: url(../../img/common/ico_arrow01.svg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.moreBtn div span,
.moreBtn a span {
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}
.moreBtn a:hover span {
  text-decoration: underline;
}
.moreBtn .icoWin span {
  padding-right: 18px;
  background: url("../../img/common/ico_blank_black.png?250130") no-repeat right center;
  background-size: 12px;
}
.moreBtn.white div,
.moreBtn.white a {
  color: #fff;
}
.moreBtn.white div::before,
.moreBtn.white a::before {
  background-image: url(../../img/common/ico_arrow02.svg);
}
.moreBtn.white .icoWin span {
  background-image: url("../../img/common/ico_blank_white.png?250130");
}

.moreLink {
  text-align: right;
}
.moreLink a {
  position: relative;
  text-decoration: none;
  padding-right: 20px;
  color: #000;
}
.moreLink a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center top;
  transform: scaleY(0.8) rotate(45deg);
}
.moreLink a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: scaleY(0.8) rotate(45deg) translateY(-50%);
}
.moreLink a:hover {
  text-decoration: underline;
}
.moreLink.white a {
  color: #fff;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  .btnStyle01 {
    text-align: center;
  }
  .btnStyle01 a {
    min-width: 230px;
    padding: 5px 15px;
  }
  .btnStyle01 a span {
    min-height: 50px;
  }
  .btnStyle01.small a span {
    min-height: 50px;
  }
  a.btnStyle02 {
    min-height: 60px;
    padding: 11px 23px 9px 10px;
  }
  a.btnStyle02:not(.icoNW)::after {
    right: 10px;
  }
  a.btnStyle02.icoNW::after {
    right: 10px;
  }
  .moreBtn div,
  .moreBtn a {
    padding: 30px 0 0 40px;
  }
  .moreBtn div::before,
  .moreBtn a::before {
    width: 50px;
    height: 50px;
  }
  .moreBtn div:hover,
  .moreBtn a:hover {
    opacity: 1;
  }
  .moreLink a:hover {
    opacity: 1;
  }
} /*  @media END */
/*
 * =====================================================
 *
 * [table]
 *
 * =====================================================
 */
.tableStyle01 {
  width: 100%;
  border-collapse: collapse;
}

.tableStyle01 tbody th {
  color: #001a72;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid #d9ddea;
  padding: 20px 30px 50px 20px;
  position: relative;
}

.tableStyle01 tbody th::before {
  display: block;
  content: "";
  width: 27px;
  height: 1px;
  background: #001a72;
  position: absolute;
  top: -1px;
  left: 20px;
}

.tableStyle01 tbody td {
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid #d9ddea;
  padding: 20px 20px 50px 20px;
}

.tableStyle02 {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #001a72;
  border-bottom: 1px solid #001a72;
}

.tableStyle02 th {
  font-size: 1.4rem;
  padding: 25px 30px;
}

.tableStyle02 thead th {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #001a72;
}

.tableStyle02 thead .headTH th {
  color: #fff;
  font-weight: normal;
  text-align: center;
  background: #001a72;
}

.tableStyle02 thead tr th:not(:first-of-type) {
  border-left: 1px solid #d9ddea;
}

.tableStyle02 tbody th {
  font-weight: normal;
  background: #f7f8fb;
  border-bottom: 1px solid #d9ddea;
}

.tableStyle02 td {
  font-size: 1.4rem;
  white-space: nowrap;
  text-align: center;
  padding: 25px 30px;
  border-left: 1px solid #d9ddea;
  border-bottom: 1px solid #d9ddea;
}

.tableStyle02 td.wsNr {
  white-space: normal;
}

.tableStyle02 tbody tr:last-of-type th,
.tableStyle02 tbody tr:last-of-type td {
  border-bottom: none;
}

.tableStyle02 tbody tr th.bdrBtmNone,
.tableStyle02 tbody tr td.bdrBtmNone {
  border-bottom: none;
}

.tableStyle02 .strong {
  background: #f5f5f9;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  .tableStyle01 {
    display: block;
  }
  .tableStyle01 tbody,
  .tableStyle01 tr,
  .tableStyle01 th,
  .tableStyle01 td {
    display: block;
  }
  .tableStyle01 tbody th {
    padding: 10px 0 5px 0;
    background: none;
  }
  .tableStyle01 tbody th::before {
    left: 0;
  }
  .tableStyle01 tbody td {
    padding: 0 0 30px 0;
    border-top: none;
  }
  /**
   * ---------------------------------------------------
   * 縦積み
   * ---------------------------------------------------
   */
  .tableA colgroup col {
    width: auto;
  }
  table.vertical:not(.spDspNone),
  table.vertical > caption:not(.spDspNone),
  table.vertical > thead:not(.spDspNone),
  table.vertical > tbody:not(.spDspNone),
  table.vertical > thead > tr:not(.spDspNone),
  table.vertical > tbody > tr:not(.spDspNone),
  table.vertical > tr:not(.spDspNone),
  table.vertical > thead > tr > th:not(.spDspNone),
  table.vertical > tbody > tr > th:not(.spDspNone),
  table.vertical > tr > th:not(.spDspNone),
  table.vertical > thead > tr > td:not(.spDspNone),
  table.vertical > tbody > tr > td:not(.spDspNone),
  table.vertical > tr > td:not(.spDspNone) {
    display: block;
    width: 100%;
  }
} /*  @media END */
/*
 * =====================================================
 *
 * [post]
 *
 * =====================================================
 */
/**
  * ---------------------------------------------------
  * list
  * ---------------------------------------------------
  */
.newsSection {
  padding-top: 40px !important;
  padding-bottom: 25px !important;
  background-color: #e8edf2;
}

.newsVox {
  padding-bottom: 25px;
}
.newsVox.white article {
  border-bottom-color: #ccc;
}
.newsVox.white article:first-child {
  border-top-color: #ccc;
}
.newsVox.white article a .category {
  border: 1px solid #ccc;
}
.newsVox.bdn article {
  border-bottom: none;
}
.newsVox.bdn article:first-child {
  border-top: none;
}
.newsVox article {
  border-bottom: 1px solid #fff;
}
.newsVox article:first-child {
  border-top: 1px solid #fff;
}
.newsVox article a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  width: 100%;
  padding: 15px 60px 15px 10px;
  position: relative;
  box-sizing: border-box;
}
.newsVox article a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center top;
  transform: scaleY(0.8) rotate(45deg);
}
.newsVox article a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: scaleY(0.8) rotate(45deg) translateY(-50%);
}
.newsVox article a.icoPDF .title::after, .newsVox article a.linkPdf .title::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 19px;
  height: 16px;
  margin-top: -0.3em;
  margin-left: 0.5em;
  background-image: url("../../img/common/ico_pdf.svg?250929");
}
.newsVox article a::after {
  width: 10px;
  height: 10px;
  background: none;
  right: 30px;
}
.newsVox article a time {
  display: block;
  width: 125px;
  position: relative;
}
.newsVox article a time::after {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../../img/common/ico_sticky.png") no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.newsVox article a .category {
  display: block;
  width: 160px;
  font-size: 1.4rem;
  letter-spacing: normal;
  text-align: center;
  padding: 5px 10px 5px 25px;
  margin-right: 20px;
  background-color: #fff;
  border-radius: 10em;
  position: relative;
  box-sizing: border-box;
}
.newsVox article a .category::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #001a72;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.newsVox article a .category.ct01::before {
  background-color: #7c72af;
}
.newsVox article a .category.ct02::before {
  background-color: #ca4d87;
}
.newsVox article a .category.ct03::before {
  background-color: #e4841e;
}
.newsVox article a .category.ct04::before {
  background-color: #8caa13;
}
.newsVox article a .category.ct05::before {
  background-color: #e74d4c;
}
.newsVox article a .category.ct06::before {
  background-color: #298eba;
}
.newsVox article a .category.ct07::before {
  background-color: #2a7f55;
}
.newsVox article a .title {
  font-weight: 500;
  width: calc(100% - 315px);
}
.newsVox article a:hover .title {
  text-decoration: underline;
}
.newsVox article span {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  width: 100%;
  padding: 15px 60px 15px 10px;
  position: relative;
  box-sizing: border-box;
}
.newsVox article span time {
  display: block;
  width: 115px;
  position: relative;
}
.newsVox article span time::after {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../../img/common/ico_sticky.png") no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.newsVox article span .title {
  font-weight: 500;
  width: calc(100% - 315px);
}
.newsVox article.sticky a time::after {
  content: "";
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  /**
  * ---------------------------------------------------
  * list
  * ---------------------------------------------------
  */
  .newsVox article a {
    flex-wrap: wrap;
    padding: 20px 30px 20px 10px;
  }
  .newsVox article a::after {
    width: 8px;
    height: 8px;
    right: 10px;
  }
  .newsVox article a .category {
    margin-right: 0;
  }
  .newsVox article a .title {
    width: 100%;
    margin-top: 12px;
  }
  .newsVox article span {
    flex-wrap: wrap;
    padding: 20px 30px 20px 10px;
  }
  .newsVox article span .title {
    width: 100%;
    margin-top: 12px;
  }
} /*  @media END */
/*
 * =====================================================
 *
 * [form]
 *
 * =====================================================
 */
.formTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 35px;
  margin-bottom: 70px;
}

.formTable th {
  font-weight: normal;
  text-align: left;
  width: 180px;
  padding: 20px 0 20px 30px;
  background: #fff;
  border-left: 1px solid #001a72;
}

.formTable th div {
  font-size: 1.5rem;
  height: 100%;
  padding-right: 45px;
  position: relative;
}

.formTable th .icoRequire {
  margin: -0.8em 0 0 0;
  position: absolute;
  top: 50%;
  right: 0;
}

.formTable td {
  padding: 0 0 0 20px;
  background: #fff;
}

.formTable td .caution {
  margin-top: 5px;
  color: #ff0000;
  font-size: 1.3rem;
}

.formTable p {
  margin-bottom: 0;
}

.formTable p.caption {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-top: 8px;
}

.formTable input[type=text],
.formTable textarea {
  width: 100%;
  padding: 20px;
  border: none;
  background: #e6e6e6;
  box-sizing: border-box;
}

.formTable input.short {
  width: 130px;
}

.formTable input.short2 {
  width: 160px;
}

.formTable input.medium {
  width: 100%;
}

.formTable select {
  padding: 20px;
  border: none;
  background: #e6e6e6;
}

.formTable .require input[type=text],
.formTable .require textarea,
.formTable .require select {
  background: #e5e8f1;
}

.formTable .require #entryPref {
  margin-bottom: 20px;
}

.formTable .require.errorTD input[type=text],
.formTable .require.errorTD textarea,
.formTable .require.errorTD select {
  background: #fbe0de;
}

.btnArea {
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin: 0 auto;
  overflow: hidden;
}

.btnArea .confirmBtn {
  width: 260px;
  margin: 0 15px;
}

.btnArea .submitBtn {
  width: 260px;
  margin: 0 15px;
  position: relative;
}

.btnArea .inputBtn {
  width: 360px;
  margin: 0 auto;
  position: relative;
}

.btnArea input {
  cursor: pointer;
  display: block;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  margin: 0 auto;
  border: none;
  background: #fff;
  border: 1px solid #001a72;
  border-radius: 10em;
  transition: 0.2s;
}

.btnArea .submitBtn input {
  color: #fff;
  background: #001a72;
}

.btnArea input:hover,
.btnArea input:hover {
  opacity: 0.7;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
/*  @media END */
/*
 * =====================================================
 *
 * [layout]
 *
 * =====================================================
 */
.thumTxtList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 14px;
}
.thumTxtList > .item {
  width: calc(33.3% - 10px);
}
.thumTxtList > .item .movie .movieIco {
  position: relative;
  display: block;
}
.thumTxtList > .item .movie .movieIco::after {
  display: block;
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  left: 50%;
  top: 50%;
  background: url(../../img/common/ico_movie.png) no-repeat center/cover;
  translate: -50% -50%;
  z-index: 1;
}
.thumTxtList > .item .movie .movieIco.icoBlack::after {
  background-image: url(../../img/common/ico_movie_black.png);
}
.thumTxtList > .item button,
.thumTxtList > .item > a {
  cursor: pointer;
  display: block;
  color: #000;
  font-size: 1.6rem;
  font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: left;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: none;
}
.thumTxtList > .item button img,
.thumTxtList > .item > a img {
  width: 100%;
  height: auto;
  transition: opacity ease-out 0.3s;
}
.thumTxtList > .item button .img,
.thumTxtList > .item > a .img {
  display: block;
}
.thumTxtList > .item button .title,
.thumTxtList > .item > a .title {
  display: block;
  font-weight: 500;
  margin-top: 10px;
  position: relative;
}
.thumTxtList > .item button .title:not(.icoBlank):not(.icoPDF)::after,
.thumTxtList > .item > a .title:not(.icoBlank):not(.icoPDF)::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center top;
  transform: scaleY(0.8) rotate(45deg);
}
.thumTxtList > .item button:hover img,
.thumTxtList > .item > a:hover img {
  opacity: 0.6;
}
.thumTxtList > .item button:hover .title,
.thumTxtList > .item > a:hover .title {
  text-decoration: underline;
}
.thumTxtList > .item .wrap {
  display: block;
  color: #000;
  font-size: 1.6rem;
  font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: left;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: none;
}
.thumTxtList > .item .wrap img {
  width: 100%;
  height: auto;
}
.thumTxtList > .item .wrap .img {
  display: block;
}
.thumTxtList > .item .wrap .title {
  display: block;
  font-weight: 500;
  margin-top: 10px;
  position: relative;
}
.thumTxtList > .item button {
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border: none;
}
.thumTxtList.column2 {
  gap: 40px 80px;
}
.thumTxtList.column2 > .item {
  width: calc(50% - 40px);
}
.thumTxtList.full {
  gap: 40px 0;
}
.thumTxtList.full > .item {
  width: 100%;
}
.thumTxtList.center {
  justify-content: center;
}

/* category */
.top.sustainability .mainContents .pageHeader,
.top.cat-top .mainContents .pageHeader {
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 50px;
  padding: 30px 0 0 0;
  background: none;
}
.top.sustainability .mainContents .pageHeader .pageTtl,
.top.cat-top .mainContents .pageHeader .pageTtl {
  max-width: initial;
  padding: 0 20px;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.top.sustainability .categoryBlock,
.top.cat-top .categoryBlock {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px 80px 20px;
  box-sizing: border-box;
}
.top.sustainability .bgGy,
.top.cat-top .bgGy {
  padding: 60px 0 0 0;
  background-color: #F2F2F2;
}
.top.sustainability .categoryTitle,
.top.cat-top .categoryTitle {
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #000000;
}
.top.sustainability .thumTxtList .item.pickup,
.top.cat-top .thumTxtList .item.pickup {
  width: calc(50% - 10px);
}
.top.sustainability .thumTxtList .item.pickup .movie .movieIco::after,
.top.cat-top .thumTxtList .item.pickup .movie .movieIco::after {
  width: 110px;
  height: 110px;
}
.top.sustainability .categoryList,
.top.cat-top .categoryList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 14px;
}
.top.sustainability .categoryList:not(:first-child),
.top.cat-top .categoryList:not(:first-child) {
  margin-top: 50px;
}
.top.sustainability .categoryList .item,
.top.cat-top .categoryList .item {
  min-height: 80px;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
/*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  .thumTxtList {
    justify-content: space-between;
    gap: 20px 10px;
  }
  .thumTxtList > .item {
    width: calc(50% - 5px);
  }
  .thumTxtList > .item .movie .movieIco::after {
    width: 55px;
    height: 55px;
  }
  .thumTxtList > .item > .wrap .title,
  .thumTxtList > .item > button .title,
  .thumTxtList > .item > a .title {
    margin-top: 5px;
  }
  .thumTxtList.column2 {
    display: block;
  }
  .thumTxtList.column2 > .item {
    width: auto;
  }
  .thumTxtList.column2 > .item:not(:last-child) {
    margin-bottom: 20px;
  }
  .thumTxtList.column2 > .item .movie .movieIco::after {
    width: 110px;
    height: 110px;
  }
  .thumTxtList.full {
    gap: 40px 0;
  }
  .thumTxtList.full > .item {
    width: 100%;
  }
  .thumTxtList.full > .item .movie .movieIco::after {
    width: 110px;
    height: 110px;
  }
  /* category */
  .top.sustainability .mainContents .pageHeader,
  .top.cat-top .mainContents .pageHeader {
    margin-bottom: 30px;
  }
  .top.sustainability .mainContents .pageHeader .pageTtl,
  .top.cat-top .mainContents .pageHeader .pageTtl {
    font-size: 3rem;
  }
  .top.sustainability .categoryBlock,
  .top.cat-top .categoryBlock {
    padding-bottom: 60px;
  }
  .top.sustainability .bgGy,
  .top.cat-top .bgGy {
    padding: 40px 0 0 0;
  }
  .top.sustainability .categoryTitle,
  .top.cat-top .categoryTitle {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .top.sustainability .thumTxtList .item.pickup,
  .top.cat-top .thumTxtList .item.pickup {
    width: 100%;
    padding-bottom: 20px;
  }
  .top.sustainability .categoryList,
  .top.cat-top .categoryList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }
  .top.sustainability .categoryList:not(:first-child),
  .top.cat-top .categoryList:not(:first-child) {
    margin-top: 35px;
  }
} /*  @media END */
/*
 * =====================================================
 *
 * [content]
 *
 * =====================================================
 */
.over {
  display: inline-block;
  opacity: 1;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  text-decoration: none;
}

.over:hover {
  opacity: 0.6;
  text-decoration: none;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.view-pc {
  display: block;
}

.view-tb {
  display: none;
}

.deviceTb .view-tb {
  display: block;
}

.view-sp {
  display: none;
}

.view-notsp {
  display: block;
}

.view-nottb {
  display: block;
}

.view-notpc {
  display: none;
}

/*
.deviceTb .view-notpc {
  display: block;
}
*/
/**
 * white-space
 */
.wsN {
  white-space: nowrap !important;
}

/**
 *  word-wrap
 */
.wrBW {
  word-wrap: break-word !important;
}

/**
 * ワードブレイク
 */
.wbBrkA {
  word-break: break-all !important;
}

sub {
  vertical-align: middle;
}

/**
 * ---------------------------------------------------
 * Slider Navigation
 * ---------------------------------------------------
 */
.sliderController {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
.sliderController .btn {
  transition: opacity 0.2s ease-out 0s;
  cursor: pointer;
  display: block;
  text-indent: -9999px;
  width: 24px;
  height: 24px;
  background: transparent url("../../img/common/ico_navigation.svg") no-repeat center/24px auto;
  border: none;
}
.sliderController .btn:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 959px) {
  .sliderController .btn {
    transition: none;
  }
  .sliderController .btn:hover {
    opacity: 1;
  }
}
.sliderController .btn.btnPrev {
  transform: scale(-1, 1);
}
.sliderController .stopBtn {
  transition: opacity 0.2s ease-out 0s;
  cursor: pointer;
  display: block;
  text-indent: -9999px;
  width: 24px;
  height: 24px;
  background: transparent url("../../img/common/ico_stop.svg") no-repeat center/24px auto;
  border: none;
}
.sliderController .stopBtn:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 959px) {
  .sliderController .stopBtn {
    transition: none;
  }
  .sliderController .stopBtn:hover {
    opacity: 1;
  }
}
.sliderController .stopBtn.is-stop {
  background-image: url("../../img/common/ico_play.svg");
}
.sliderController .sliderPagination {
  display: flex;
  gap: 0 2px;
  width: auto !important;
  padding: 0 5px;
}
.sliderController .sliderPagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background-color: #b2bad5;
  border-radius: 8px;
  opacity: 1;
  transition: width ease-out 0.3s, background-color ease-out 0.3s;
}
.sliderController .sliderPagination .swiper-pagination-bullet:hover, .sliderController .sliderPagination .swiper-pagination-bullet-active {
  background-color: #001a72;
}

/**
 * --------------------------------------------------------------------------
 * 文字色装飾
 * --------------------------------------------------------------------------
 */
.cWhite {
  color: #ffffff !important;
}

.cRed {
  color: #c71b23 !important;
}

/**
 * --------------------------------------------------------------------------
 * 文字装飾
 * --------------------------------------------------------------------------
 */
.decUline {
  text-decoration: underline !important;
}

.decNone {
  text-decoration: none !important;
}

/**
 * --------------------------------------------------------------------------
 * リスト
 * --------------------------------------------------------------------------
 */
.listStyle01 {
  list-style-type: none;
}

.listStyle02 {
  padding-left: 1.5em;
}

.listStyle02 li {
  list-style-type: disc;
}

.listStyle02 ul li {
  list-style-type: none;
}

.listStyle02 .listStyle02 {
  padding-left: 0;
}

.listStyle02 .listStyle02 li {
  margin-left: 0.5em;
  padding-left: 0.5em;
}

.listStyle02 .listStyle02 li::marker {
  content: "-";
}

/**
 * --------------------------------------------------------------------------
 * ボックス
 * --------------------------------------------------------------------------
 */
.voxStyle01 {
  max-width: 790px;
  padding: 40px 50px;
  margin: 100px auto 0 auto;
  background: #edeff5;
}

.columnVox {
  display: flex;
  justify-content: center;
}

.columnVox .item {
  width: 300px;
  margin-right: 20px;
  margin-bottom: 90px;
}

.columnVox .item:nth-of-type(3n) {
  margin-right: 0;
}

.columnVox .item figure {
  text-align: center;
}

.columnVox .item figure figcaption {
  font-size: 1.4rem;
  line-height: 26px;
  text-align: left;
  margin-top: 12px;
}

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

.imgTxtVox > .img {
  width: 400px;
}

.imgTxtVox > .img > img {
  max-width: 100%;
}

.imgTxtVox > .txt {
  width: calc(100% - 440px);
  max-width: 500px;
}

/**
 * --------------------------------------------------------------------------
 * FAQ
 * --------------------------------------------------------------------------
 */
.faqList {
  counter-increment: cnt;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #f5f5f5;
}

.faqList:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.faqList dt,
.faqList dd {
  position: relative;
  line-height: 1.9;
}

.faqList dt {
  color: #323c99;
  font-weight: bold;
  padding-left: 4.5em;
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}

.faqList dt:before {
  content: "Q." counter(cnt);
  color: #323c99;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 5px 3px 5px;
  border-bottom: 1px solid #323c99;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.faqList dd {
  padding-left: 4.5em;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}

.faqList dd:before {
  content: "A." counter(cnt);
  color: #323c99;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 5px 3px 5px;
  border-bottom: 1px solid #323c99;
  position: absolute;
  top: 0;
  left: 0;
}

/**
 * --------------------------------------------------------------------------
 * relatedLinks
 * --------------------------------------------------------------------------
 */
.relatedLinks {
  width: 100%;
  margin-top: 30px;
  background: #edeff5;
}

.relatedLinks .title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 15px;
  background: #001a72;
}

.relatedLinks .relatedLinksContent {
  padding: 15px 20px;
}

.relatedLinks .relatedLinksContent p {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.relatedLinks .relatedLinksContent .more {
  text-align: right;
}

.relatedLinks .relatedLinksContent .more a {
  color: #001a72;
  text-decoration: none;
}

.relatedLinks .relatedLinksContent .more a:hover {
  text-decoration: underline;
}

.relatedLinks .relatedLinksContent .more .icoNW::after {
  background-image: url(../../img/common/ico_blank_black.png?250130);
}

/**
 * --------------------------------------------------------------------------
 * localNav
 * --------------------------------------------------------------------------
 */
.localNavVox {
  padding: 80px 0;
  background: #edeff5;
}

.localNavVox .blockTtl {
  padding: 0 10px;
  margin-bottom: 30px;
}

.localNavVox .cInner {
  width: 940px;
  margin: 0 auto;
}

.localNavList {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.localNavList li {
  width: 300px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.localNavList li:nth-of-type(3n) {
  margin-right: 0;
}

.localNavList li a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-decoration: none;
  height: 100%;
  min-height: 80px;
  padding: 15px 40px 15px 20px;
  background: #fff;
  position: relative;
  box-sizing: border-box;
  transition: 0.2s;
}

.localNavList li.powertrain a {
  border-top: 4px solid #a41528;
}

.localNavList li.brake_chassis a {
  border-top: 4px solid #0076cf;
}

.localNavList li.body a {
  border-top: 4px solid #009244;
}

.localNavList li.cs-s a {
  border-top: 4px solid #df6421;
}

.localNavList li.aftermarket a {
  border-top: 4px solid #245a84;
}

.localNavList li a::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../../img/common/ico_arrow03.svg) no-repeat right center/cover;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.localNavList li a .in span {
  font-size: 1.4rem;
}

.localNavList li a:hover {
  text-decoration: underline;
}

/**
 * --------------------------------------------------------------------------
 * AIThink
 * --------------------------------------------------------------------------
 */
.aithinkVox {
  color: #fff;
  background: #001a72;
  padding: 55px 0;
}

.aithinkVox .inner {
  max-width: 1080px;
  margin: 0 auto;
}

.aithinkVox .heading {
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
}

.aithinkVox .heading img {
  width: 160px;
  margin-bottom: 10px;
}

.aithinkVox .heading p {
  font-size: 1.65rem !important;
}

.aithinkVox .entryVox {
  display: flex;
  justify-content: space-between;
}

.aithinkVox .entryVox .entry {
  width: 500px;
}

.aithinkVox .entryVox .entry:not(:first-of-type) {
  width: 520px;
  padding-left: 20px;
  border-left: 1px solid #fff;
}

.aithinkVox .entryVox .entry a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.aithinkVox .entryVox .entry .img {
  text-align: center;
  width: 248px;
  margin-right: 20px;
}

.aithinkVox .entryVox .entry .img img {
  max-width: 100%;
  transition: opacity 0.2s ease-in;
}

.aithinkVox .entryVox .entry a:hover .img img {
  opacity: 0.6;
}

.aithinkVox .entryVox .entry .txt {
  width: 230px;
}

.aithinkVox .entryVox .entry .txt .title {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}

.aithinkVox .entryVox .entry a:hover .txt .title {
  text-decoration: underline;
}

.aithinkVox .entryVox .entry .txt .title::after {
  content: "";
  position: relative;
  display: inline-block;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url(../../img/common/ico_blank_white.png?250130) no-repeat center center/cover;
}

.aithinkVox .entryVox .entry .txt time {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
}

.aithinkVox .entryVox .entry .txt .tags {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.aithinkVox .entryVox .entry .txt .tags li {
  font-size: 1.4rem;
  font-weight: 500;
}

/**
 * --------------------------------------------------------------------------
 * セレクトリスト
 * --------------------------------------------------------------------------
 */
.selectList {
  margin-bottom: 50px;
  overflow: hidden;
}

.selectList .item {
  width: 31.3%;
  float: left;
  margin-right: 2%;
  position: relative;
}

.selectList .item::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #001a72;
  border-right: 1px solid #001a72;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(135deg);
}

.selectList .item:nth-child(3n) {
  margin-right: 0;
}

.selectList .item select {
  cursor: pointer;
  width: 100%;
  color: #001a72;
  background: #fff;
  padding: 20px 25px;
  border: 1px solid #d9ddea;
  border-bottom: 1px solid #001a72;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

/**
 * --------------------------------------------------------------------------
 * アンカーリンク
 * --------------------------------------------------------------------------
 */
.anchorLink {
  margin-bottom: 90px;
}

.anchorLink ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.anchorLink ul li {
  width: 305px;
  margin-right: 12px;
}

.anchorLink ul li:nth-of-type(3n) {
  margin-right: 0;
}

.anchorLink ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 15px 40px 15px 20px;
  background: url(../../img/common/ico_arrow_down.svg) no-repeat 95% center/8px 6px;
  border-bottom: 1px solid #001a72;
}

/**
 * --------------------------------------------------------------------------
 * タブ
 * --------------------------------------------------------------------------
 */
.tabVoxWrapper {
  margin-bottom: 130px;
}

.tabs {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  gap: 0 12px;
  max-width: 1060px;
  margin: 0 auto 50px auto;
}
.tabs li {
  flex: 1;
}
.tabs li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #001a72;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  height: 100%;
  padding: 18px 5px;
  border: 1px solid #001a72;
  position: relative;
  transition: 0.2s;
  box-sizing: border-box;
}
.tabs li.active a,
.tabs li a:hover {
  color: #fff;
  background-color: #001a72;
}
.tabVoxWrapper .tabs {
  margin-bottom: 0;
}

.tabContents {
  display: none;
  padding-top: 50px;
}

/**
 * --------------------------------------------------------------------------
 * 文字の太さ
 * --------------------------------------------------------------------------
 */
.fwN {
  font-weight: normal !important;
}

.fwB {
  font-weight: bold !important;
}

/**
 * --------------------------------------------------------------------------
 * 文字の高さ
 * --------------------------------------------------------------------------
 */
.lh1 {
  line-height: 1 !important;
}

.lh1-2 {
  line-height: 1.2 !important;
}

.lh1-5 {
  line-height: 1.5 !important;
}

.lh2 {
  line-height: 2 !important;
}

/**
 * --------------------------------------------------------------------------
 * レイアウト
 * --------------------------------------------------------------------------
 */
.mA {
  margin: 0 auto !important;
}

.mLA {
  margin-left: auto !important;
}

.mRA {
  margin-right: auto !important;
}

.m0 {
  margin: 0 !important;
}

.m3 {
  margin: 3px !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mT0 {
  margin-top: 0px !important;
}

.mT5 {
  margin-top: 5px !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT15 {
  margin-top: 15px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT25 {
  margin-top: 25px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT35 {
  margin-top: 35px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT45 {
  margin-top: 45px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mR0 {
  margin-right: 0px !important;
}

.mB3 {
  margin-right: 3px !important;
}

.mR5 {
  margin-right: 5px !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR15 {
  margin-right: 15px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mR25 {
  margin-right: 25px !important;
}

.mR30 {
  margin-right: 30px !important;
}

.mR35 {
  margin-right: 35px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.mR45 {
  margin-right: 45px !important;
}

.mR50 {
  margin-right: 50px !important;
}

.mR70 {
  margin-right: 70px !important;
}

.mR100 {
  margin-right: 100px !important;
}

.mR110 {
  margin-right: 110px !important;
}

.mR120 {
  margin-right: 120px !important;
}

.mR130 {
  margin-right: 130px !important;
}

.mR140 {
  margin-right: 140px !important;
}

.mR150 {
  margin-right: 150px !important;
}

.mR160 {
  margin-right: 160px !important;
}

.mR170 {
  margin-right: 170px !important;
}

.mR180 {
  margin-right: 180px !important;
}

.mR190 {
  margin-right: 190px !important;
}

.mR200 {
  margin-right: 200px !important;
}

.mR210 {
  margin-right: 210px !important;
}

.mR220 {
  margin-right: 220px !important;
}

.mR230 {
  margin-right: 230px !important;
}

.mR240 {
  margin-right: 240px !important;
}

.mR250 {
  margin-right: 250px !important;
}

.mR260 {
  margin-right: 260px !important;
}

.mR280 {
  margin-right: 280px !important;
}

.mR300 {
  margin-right: 300px !important;
}

.mB0 {
  margin-bottom: 0px !important;
}

.mB3 {
  margin-bottom: 3px !important;
}

.mB5 {
  margin-bottom: 5px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB15 {
  margin-bottom: 15px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB25 {
  margin-bottom: 25px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB35 {
  margin-bottom: 35px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB45 {
  margin-bottom: 45px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mL0 {
  margin-left: 0px !important;
}

.mL5 {
  margin-left: 5px !important;
}

.mL1em {
  margin-left: 1em !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mL15 {
  margin-left: 15px !important;
}

.mL20 {
  margin-left: 20px !important;
}

.mL25 {
  margin-left: 25px !important;
}

.mL30 {
  margin-left: 30px !important;
}

.mL35 {
  margin-left: 35px !important;
}

.mL40 {
  margin-left: 40px !important;
}

.mL45 {
  margin-left: 45px !important;
}

.mL50 {
  margin-left: 50px !important;
}

.mL55 {
  margin-left: 55px !important;
}

.mL60 {
  margin-left: 60px !important;
}

.mL70 {
  margin-left: 70px !important;
}

.mL80 {
  margin-left: 80px !important;
}

.mL85 {
  margin-left: 85px !important;
}

.mL105 {
  margin-left: 105px !important;
}

.mL110 {
  margin-left: 110px !important;
}

.mL115 {
  margin-left: 115px !important;
}

.mL120 {
  margin-left: 120px !important;
}

.mL130 {
  margin-left: 130px !important;
}

.mL140 {
  margin-left: 140px !important;
}

.mL150 {
  margin-left: 150px !important;
}

.mL170 {
  margin-left: 170px !important;
}

.mL200 {
  margin-left: 200px !important;
}

.mL225 {
  margin-left: 225px !important;
}

.mL270 {
  margin-left: 270px !important;
}

.p0 {
  padding: 0 !important;
}

.p3 {
  padding: 3px !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pT0 {
  padding-top: 0px !important;
}

.pT2 {
  padding-top: 2px !important;
}

.pT3 {
  padding-top: 3px !important;
}

.pT5 {
  padding-top: 5px !important;
}

.pT10 {
  padding-top: 10px !important;
}

.pT15 {
  padding-top: 15px !important;
}

.pT20 {
  padding-top: 20px !important;
}

.pT25 {
  padding-top: 25px !important;
}

.pT30 {
  padding-top: 30px !important;
}

.pT35 {
  padding-top: 35px !important;
}

.pT40 {
  padding-top: 40px !important;
}

.pT45 {
  padding-top: 45px !important;
}

.pT50 {
  padding-top: 50px !important;
}

.pT80 {
  padding-top: 80px !important;
}

.pT100 {
  padding-top: 100px !important;
}

.pR0 {
  padding-right: 0px !important;
}

.pR5 {
  padding-right: 5px !important;
}

.pR10 {
  padding-right: 10px !important;
}

.pR15 {
  padding-right: 15px !important;
}

.pR20 {
  padding-right: 20px !important;
}

.pR25 {
  padding-right: 25px !important;
}

.pR30 {
  padding-right: 30px !important;
}

.pR35 {
  padding-right: 35px !important;
}

.pR40 {
  padding-right: 40px !important;
}

.pR45 {
  padding-right: 45px !important;
}

.pR50 {
  padding-right: 50px !important;
}

.pB0 {
  padding-bottom: 0px !important;
}

.pB5 {
  padding-bottom: 5px !important;
}

.pB10 {
  padding-bottom: 10px !important;
}

.pB15 {
  padding-bottom: 15px !important;
}

.pB20 {
  padding-bottom: 20px !important;
}

.pB25 {
  padding-bottom: 25px !important;
}

.pB30 {
  padding-bottom: 30px !important;
}

.pB35 {
  padding-bottom: 35px !important;
}

.pB40 {
  padding-bottom: 40px !important;
}

.pB45 {
  padding-bottom: 45px !important;
}

.pB50 {
  padding-bottom: 50px !important;
}

.pL0 {
  padding-left: 0px !important;
}

.pL5 {
  padding-left: 5px !important;
}

.pL10 {
  padding-left: 10px !important;
}

.pL15 {
  padding-left: 15px !important;
}

.pL20 {
  padding-left: 20px !important;
}

.pL25 {
  padding-left: 25px !important;
}

.pL30 {
  padding-left: 30px !important;
}

.pL35 {
  padding-left: 35px !important;
}

.pL40 {
  padding-left: 40px !important;
}

.pL45 {
  padding-left: 45px !important;
}

.pL50 {
  padding-left: 50px !important;
}

/**
 * --------------------------------------------------------------------------
 * float用スタイル
 * --------------------------------------------------------------------------
 */
.fLeft {
  float: left !important;
}

.fRight {
  float: right !important;
}

.fClear {
  clear: both !important;
}

.fClearL {
  clear: left !important;
}

.fClearR {
  clear: right !important;
}

.fN {
  float: none !important;
}

/**
 * --------------------------------------------------------------------------
 * position用スタイル
 * --------------------------------------------------------------------------
 */
.posRel {
  position: relative !important;
}

.posAbs {
  position: absolute !important;
}

/**
 *  overflow用スタイル
 */
.ofHidden {
  overflow: hidden !important;
}

.ofAuto {
  overflow: auto !important;
}

.ofVisible {
  overflow: visible !important;
}

/**
 * --------------------------------------------------------------------------
 * display用スタイル
 * --------------------------------------------------------------------------
 */
.dspInline {
  display: inline !important;
}

.dspBlock {
  display: block !important;
}

.dspInlBlock {
  display: inline-block !important;
}

.dspNone {
  display: none !important;
}

.dspTable {
  display: table !important;
}

.dspTblCell {
  display: table-cell !important;
}

/**
 * --------------------------------------------------------------------------
 * 汎用行揃え用スタイル
 * --------------------------------------------------------------------------
 */
.alignLeft {
  text-align: left !important;
}

.alignCenter {
  text-align: center !important;
}

.alignRight {
  text-align: right !important;
}

/**
 * --------------------------------------------------------------------------
 * 汎用縦揃え用スタイル
 * --------------------------------------------------------------------------
 */
.valignTop {
  vertical-align: top !important;
}

.valignMiddle {
  vertical-align: middle !important;
}

.valignBottom {
  vertical-align: bottom !important;
}

.valignTextBottom {
  vertical-align: text-bottom !important;
}

.valignSuper {
  vertical-align: super !important;
}

/**
 * --------------------------------------------------------------------------
 * 汎用幅指定用スタイル
 * --------------------------------------------------------------------------
 */
.w5 {
  width: 5px !important;
}

.w10em {
  width: 10em !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w30 {
  width: 30px !important;
}

.w40p {
  width: 40% !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.w60 {
  width: 60px !important;
}

.w70 {
  width: 70px !important;
}

.w80 {
  width: 80px !important;
}

.w90 {
  width: 90px !important;
}

.w98p {
  width: 98% !important;
}

.w99p {
  width: 99% !important;
}

.w100 {
  width: 100px !important;
}

.w100p {
  width: 100% !important;
}

/**
 * --------------------------------------------------------------------------
 * hasLayout true
 * --------------------------------------------------------------------------
 */
.h1p {
  height: 1%;
}

.z1 {
  zoom: 1;
}

/**
 * --------------------------------------------------------------------------
 * リスト用スタイル
 * --------------------------------------------------------------------------
 */
.listTypeNone {
  list-style-type: none;
}

.listInside {
  list-style-position: inside;
}

.listOutside {
  list-style-position: outside;
}

.listTypeDisc li {
  list-style-type: disc;
  margin-left: 20px;
}

.listTypeSquare {
  list-style-type: square;
}

.listTypeCircle {
  list-style-type: circle;
}

.listTypeNum {
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
}

.listTypeNum li {
  list-style-type: decimal;
  margin-left: 20px;
}

.listNumParentheses {
  list-style-type: none;
  list-style-position: inside;
}

.listNumParentheses li {
  counter-increment: cnt;
}

.listNumParentheses li:before {
  display: marker;
  content: "(" counter(cnt) ")";
}

/**
 * --------------------------------------------------------------------------
 * 背景色用スタイル
 * --------------------------------------------------------------------------
 */
.bgFFFFFF {
  background-color: #ffffff !important;
}

.bgE6ECE8 {
  background-color: #e6ece8 !important;
}

.bgF0F0DC {
  background-color: #f0f0dc !important;
}

.bgF0EFEE {
  background-color: #f0efee !important;
}

.bgEBE6E1 {
  background-color: #ebe6e1 !important;
}

.bgC9C9C9 {
  background-color: #c9c9c9 !important;
}

.bgF5F5F5 {
  background-color: #f5f5f5 !important;
}

.bgF7F7F7 {
  background-color: #f7f7f7 !important;
}

/**
 * --------------------------------------------------------------------------
 * ボーダー用スタイル
 * --------------------------------------------------------------------------
 */
.bdr1s999 {
  border: 1px solid #999999 !important;
}

.bdr1sCCC {
  border: 1px solid #cccccc !important;
}

.bdr1sCBCBCB {
  border: 1px solid #cbcbcb !important;
}

.bdr1sBBB {
  border: 1px solid #bbbbbb !important;
}

.bdr1s5B5B5B {
  border: 1px solid #5b5b5b !important;
}

.bdr1do444444 {
  border: 1px dotted #444444 !important;
}

.bdrTn {
  border-top: none !important;
}

.bdrRn {
  border-right: none !important;
}

.bdrBn {
  border-bottom: none !important;
}

.bdrLn {
  border-left: none !important;
}

.bdrN {
  border: none !important;
}

.bdrTop {
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.bdrRight {
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.bdrBottom {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}

.bdrLeft {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

/**
 * テキストインデント
 */
.tim1em {
  text-indent: -1em;
}

.ti1em {
  text-indent: 1em;
}

/**
 * カーソル
 */
.csrPtr {
  cursor: pointer;
}

/**
 * --------------------------------------------------------------------------
 * alphaBg
 * --------------------------------------------------------------------------
 */
#alphaBg {
  width: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 500;
  background: #000000;
  display: none;
  min-height: 100%;
}

.popupWrapper {
  display: none;
  width: 75.5%;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -37.75%;
  z-index: 2100;
}
.popupWrapper .closeVox {
  border-left: 2px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.popupWrapper .popupCloseBt {
  cursor: pointer;
  display: block;
  line-height: 62px;
  text-decoration: none;
  height: 62px;
  background-color: transparent;
  padding: 0 45px 0 20px;
  border: none;
  position: relative;
}
.popupWrapper .popupCloseBt::before {
  content: "CLOSE";
  color: #000;
  font-weight: bold;
  transition: color ease-out 0.3s;
}
.popupWrapper .popupCloseBt:hover {
  text-decoration: underline;
}
.popupWrapper .popupCloseBt span {
  width: 15px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 20px;
  top: 50%;
  margin: -1px 0 0 -8px;
}
.popupWrapper .popupCloseBt span:nth-child(1) {
  transform: rotate(-45deg);
}
.popupWrapper .popupCloseBt span:nth-child(2) {
  transform: rotate(45deg);
}
.popupWrapper .titleVox {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  background-color: #f1f1f5;
  height: 62px;
  padding: 0 120px 0 30px;
}
.popupWrapper .content {
  background: #ffffff;
}
.popupWrapper .inner {
  padding: 30px;
}
.popupWrapper .inner p {
  margin-bottom: 30px;
}

#popupContents {
  display: none;
}

#popupWrapperMovie .movieVox {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
#popupWrapperMovie .movieVox iframe,
#popupWrapperMovie .movieVox video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/**
 * --------------------------------------------------------------------------
 * accordion
 * --------------------------------------------------------------------------
 */
.accordionWrapper {
  margin-top: -1px;
  border-bottom: 1px solid #001a72;
  overflow: hidden;
}

.accordionWrapper .accordionTtl {
  cursor: pointer;
  font-size: 1.6rem;
  padding: 30px 50px 30px 30px;
  border-top: 1px solid #001a72;
  position: relative;
  transition: 0.2s;
}

.accordionWrapper button.accordionTtl {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #001a72;
  text-align: left;
  color: #000000;
}

.accordionWrapper button.accordionTtl:focus-visible {
  outline-offset: -2px;
}

.accordionWrapper .accordionTtl::before,
.accordionWrapper .accordionTtl::after {
  display: block;
  content: "";
  width: 15px;
  height: 1px;
  background: #001a72;
  position: absolute;
  top: 50%;
  right: 30px;
  transition: 0.2s;
}

.accordionWrapper .accordionTtl::after {
  transform: rotate(90deg);
}

.accordionWrapper.open > .accordionTtl {
  color: #fff;
  background: #333;
}

.accordionWrapper.open > .accordionTtl::before {
  background: #fff;
}

.accordionWrapper.open > .accordionTtl::after {
  transform: rotate(0);
  opacity: 0;
}

.accordionWrapper .accordionInner {
  display: none;
  padding-top: 40px;
}

/**
 * フォーム
 */
.formErrVox {
  display: none;
  color: #fff !important;
  font-weight: bold;
  padding: 10px 30px 10px 70px;
  margin-bottom: 50px;
  background-color: #c81c24;
  border-radius: 10px;
  position: relative;
}
.formErrVox::before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background: url("../../images/content/content/ico_caution.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.formErrVox::after {
  display: block;
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #c81c24;
  position: absolute;
  bottom: 0;
  left: 100px;
  transform: translateY(100%);
}

body.error .formErrVox {
  display: block;
}

.caution {
  color: #c81c24;
  font-size: 1.5rem;
  font-weight: bold;
}

body:not(.ie) .js-lazyBg,
body:not(.ie) .js-lazyBg * {
  background-image: none !important;
}

/**
 ****************************************************
 *
 * PC以外
 *
 ****************************************************
 */
@media only screen and (min-width: 960px) {
  .pcDspNone {
    display: none;
  }
  .dspInlBlockPC {
    display: inline-block;
  }
} /*  @media END */
/**
 ****************************************************
 *
 * タブレット
 *
 ****************************************************
 */
@media only screen and (max-width: 1024px) {
  .view-pc {
    display: none;
  }
  .view-tb {
    display: none;
  }
  .deviceTb .view-tb {
    display: none;
  }
  .view-sp {
    display: block;
  }
  .view-notsp {
    display: none;
  }
  .view-nottb {
    display: block;
  }
  .view-notpc {
    display: block;
  }
  .deviceTb .view-notpc {
    display: block;
  }
} /*  @media END */
/**
 ****************************************************
 *
 * 960px以下
 *
 ****************************************************
 */
@media only screen and (max-width: 960px) {
  .spDspNone {
    display: none;
  }
  .alignCenterSP {
    text-align: center !important;
  }
  .mL0SP {
    margin-left: 0 !important;
  }
  /**
  * ---------------------------------------------------
  * Slider Navigation
  * ---------------------------------------------------
  */
  .sliderController {
    margin-top: 15px;
  }
  .sliderController .btn {
    width: 28px;
    height: 28px;
    background-size: 28px auto;
  }
  .sliderController .stopBtn {
    width: 28px;
    height: 28px;
    background-size: 28px auto;
  }
  .sliderController .sliderPagination {
    gap: 0 5px;
  }
  .sliderController .sliderPagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 10px;
  }
  /**
   * --------------------------------------------------------------------------
   * ボックス
   * --------------------------------------------------------------------------
   */
  .imgTxtVox {
    display: block;
  }
  .imgTxtVox > .img {
    width: auto;
    margin-bottom: 20px;
  }
  .imgTxtVox > .txt {
    width: auto;
    max-width: 100%;
  }
  /**
   * --------------------------------------------------------------------------
   * FAQ
   * --------------------------------------------------------------------------
   */
  .faqList dt {
    margin-bottom: 15px;
  }
  /**
   * --------------------------------------------------------------------------
   * relatedLinks
   * --------------------------------------------------------------------------
   */
  .relatedLinks .title {
    font-size: 1.3rem;
    padding: 15px 30px;
  }
  .relatedLinks .relatedLinksContent {
    padding: 15px 30px;
  }
  .relatedLinks .relatedLinksContent p {
    font-size: 1.7rem;
  }
  .relatedLinks .relatedLinksContent .more {
    text-align: right;
  }
  .relatedLinks .relatedLinksContent .more a {
    color: #001a72;
    text-decoration: none;
  }
  .relatedLinks .relatedLinksContent .more a:hover {
    text-decoration: underline;
  }
  .relatedLinks .relatedLinksContent .more .icoNW::after {
    background-image: url(../../img/common/ico_blank_black.png?250130);
  }
  /**
   * --------------------------------------------------------------------------
   * タブ
   * --------------------------------------------------------------------------
   */
  .tabs {
    gap: 0 1%;
    margin-bottom: 30px;
  }
  .tabs li {
    width: 32.7%;
  }
  .tabs li a {
    font-size: 1.3rem;
    letter-spacing: normal;
    padding: 20px 2px;
  }
  .tabContents {
    padding-top: 30px;
  }
  /**
   * --------------------------------------------------------------------------
   * localNav
   * --------------------------------------------------------------------------
   */
  .localNavVox {
    padding: 70px 0;
  }
  .localNavVox .blockTtl {
    padding: 0 20px;
  }
  .localNavVox .cInner {
    width: auto;
  }
  .localNavVox .indexTile .indexTileItem {
    margin-bottom: 30px;
  }
  .localNavVox .indexTile .indexTileItem:last-of-type {
    margin-bottom: 0;
  }
  .localNavList {
    display: block;
    padding: 0 20px;
  }
  .localNavList li {
    width: auto;
    margin-right: 0;
  }
  .localNavList li a {
    font-size: 1.7rem;
  }
  /**
   * --------------------------------------------------------------------------
   * AIThink
   * --------------------------------------------------------------------------
   */
  .aithinkVox {
    padding: 30px 20px 20px;
  }
  .aithinkVox .inner {
    width: auto;
  }
  .aithinkVox .heading img {
    width: 105px;
    margin-bottom: 15px;
  }
  .aithinkVox .entryVox {
    display: block;
  }
  .aithinkVox .entryVox .entry {
    width: 100%;
  }
  .aithinkVox .entryVox .entry:not(:first-of-type) {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
    border-left: none;
    border-top: 1px solid #fff;
  }
  .aithinkVox .entryVox .entry a {
    transition: none;
  }
  .aithinkVox .entryVox .entry .img {
    width: 140px;
  }
  .aithinkVox .entryVox .entry .txt {
    width: calc(100% - 155px);
  }
  .aithinkVox .entryVox .entry .txt .title {
    font-size: 1.6rem;
  }
  .aithinkVox .entryVox .entry .txt time {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  /**
   * --------------------------------------------------------------------------
   * alphaBg
   * --------------------------------------------------------------------------
   */
  .popupWrapper {
    width: 90%;
    margin-left: -45%;
  }
  .popupWrapper .popupCloseBt {
    padding: 0 30px 0 20px;
  }
  .popupWrapper .popupCloseBt::before {
    display: none;
  }
  .popupWrapper .titleVox {
    font-size: 1.3rem;
    min-height: 40px;
    height: auto;
    line-height: 1.3;
    padding: 10px 60px 10px 10px;
  }
  /**
   * --------------------------------------------------------------------------
   * accordion
   * --------------------------------------------------------------------------
   */
  .accordionWrapper .accordionTtl {
    font-size: 1.5rem;
    padding-top: 30px;
    padding-left: 20px;
  }
  .accordionWrapper .accordionInner {
    padding-top: 30px;
  }
  /**
   * ---------------------------------------------------
   * iOSボタンデザインのリセット
   * ---------------------------------------------------
   */
  input[type=submit],
  input[type=button] {
    cursor: pointer;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
  }
  input[type=submit]::-webkit-search-decoration,
  input[type=button]::-webkit-search-decoration {
    display: none;
  }
  input[type=submit]:focus,
  input[type=button]:focus {
    outline-offset: -2px;
  }
} /*  @media END */
/**
 ****************************************************
 *
 * スマホ
 *
 ****************************************************
 */
/*  @media END *//*# sourceMappingURL=import.css.map */