@charset "utf-8";
/* --------------------------------------------------
	SiteName : 
	FileName : global.css
	Description : global styles
	
	== TOC =========================================
	1 : basic layout styles
	2 : headerArea styles
	3 : globalNaviArea styles
	4 : localNaviArea styles
	5 : contentsArea styles
	6 : footer styles
	
-------------------------------------------------- */
/* 1. basic layout styles
================================================== */
body, h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, form, fieldset {
  margin: 0;
  padding: 0;
}
html {
  font-size: 70%;
  overflow-y: scroll;
}

fieldset, img {
  border: 0;
}
ul, ol {
  list-style: none;
}
hr {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
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;
}
textarea {
  resize: none;
}
iframe {
  border: none;
  border: 0;
  background-color: transparent;
  overflow: hidden;
}
/* wrapper */
#wrapper {
  position: relative;
  overflow: hidden;
}
:focus {
  outline: 0;
}
/* clarfix */
.clearfix {
  zoom: 1;
  display: block;
  clear: both; /*	overflow: hidden;
*/
}
.clearfix:after {
  overflow: hidden;
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  font-size: 0.1em;
  line-height: 0;
}
iframe {
  vertical-align: bottom;
}
.gennokaku {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.gennokaku_l {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 200;
  font-style: normal;
}
.gennokaku_m {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.btn.gennokaku_m {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: normal;
  font-style: normal;
}
.gennokaku_b {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}
span.anchorlink {
  display: inline-block;
  width: 0;
  margin: 0;
  padding: 0;
  height: 0;
}
/* 2. headerArea styles
================================================== */
#header {
  width: 100%;
  z-index: 999;
}
#header.fixed {
  position: fixed;
}
#header .search_box #serch_area {
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
#header .search_box #serch_area::placeholder {
  color: #2f2f2f;
}
#header .search_box #search_btn {
  background-image: url(/img/common/icon_header_02.svg);
  background-position: center;
  background-repeat: no-repeat;
}
header #logo:hover {
  opacity: 0.6;
}
/* 3. globalNaviArea styles
================================================== */
#gNavi {
  margin: 0;
  padding: 0;
}
#gNavi > ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#gNavi > ul > li {
  /*cursor: pointer;*/
}
#gNavi > ul > li > a {
  text-decoration: none;
  color: #2C2C2C;
}
#gNavi ul > li .megaMenuWrap {
  width: 100%;
  z-index: 99;
  background-color: #FFFFFF;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  display: none;
}
#gNavi ul > li .megaMenuWrap a {
  color: #000000;
  text-decoration: none;
}
/* 4. localnavi styles
================================================== */
.localnavi > li > a {
  display: flex;
  text-decoration: none;
  color: #2f2f2f;
  border-bottom: 1px solid #B1B1B1;
  border-right: 1px solid #B1B1B1;
  background-color: #FFFFFF;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 200;
  font-style: normal;
  align-items: center;
  position: relative;
}
.localnavi > li > a:after {
  border-top: 1px solid #2f2f2f;
  border-right: 1px solid #2f2f2f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  content: "";
}
/* 5. contentsArea styles
================================================== */
.list_dot01 li {
  position: relative;
  padding-left: 1em;
}
.list_dot01 li:before {
  width: 2px;
  height: 2px;
  display: block;
  background-color: #454545;
  border-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
}
.list_dot02 li {
  position: relative;
  padding-left: 1.5em;
}
.list_dot02 li:before {
  width: 12px;
  height: 12px;
  display: block;
  background-color: #454545;
  border-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
}
.ol_style {
  counter-reset: number; /* 名前を付けたカウンターをリセット */
}
.ol_style > li {
  padding-left: 1.5em;
  position: relative;
}
.ol_style > li:before {
  counter-increment: number; /* 任意の名前を付けて！ */
  content: counter(number)"."; /* 名前を付けたカウンターを呼び出し */
  color: #333333;
  position: absolute;
  left: 0px;
  top: -1px;
}
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexbox.bw {
  justify-content: space-between;
}
.flexbox.cnt {
  justify-content: center;
}
.flexbox.hcnt {
  align-items: center;
}
.btn a {
  color: #FFFFFF;
  background-color: #0057a2;
  text-decoration: none;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}
.btn a:after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  content: "";
}
.h_style01 {
  color: #0057a2;
  letter-spacing: 1px;
}
.h_style02 {
  color: #121212;
  letter-spacing: 1px;
  text-align: center;
}
.h_style03 {
  color: #010101;
  border-left: 4px solid #1773ba;
}
.h_style03:first-child {
  margin-top: 0px;
}
.h_style04 {
  border-bottom: 1px solid #d2d2d2;
}
.tbl_style01 {
  width: 100%;
  border-collapse: collapse;
}
.tbl_style01 thead {
  border: 1px solid #0057A2;
  border-bottom: 1px solid #FFFFFF;
}
.tbl_style01 thead th {
  background-color: #0057A2;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FFFFFF;
}
.tbl_style01 thead th + th {
  border-left: 1px solid #FFFFFF;
}
.tbl_style01 tbody {}
.tbl_style01 tbody th {
  font-weight: bold;
  vertical-align: middle;
  background-color: #e4e4e4;
  border: 1px solid #bfbfbf;
  text-align: left;
}
.tbl_style01 tbody td {
  border: 1px solid #bfbfbf;
}

#visual {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
#visual:before, #visual:after {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  content: "";
}
#visual:before {
  background-color: rgba(0, 87, 162, 0.63);
  left: 0px;
}
#visual:after {
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}
#visual .container {
  z-index: 0;
}
#visual h1 {
  color: #FFFFFF;
  position: relative;
}
#maincontainer #side h2 {
  color: #FFFFFF;
  background-color: #0057a2;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
#maincontainer #side ul li {
  border-bottom: 1px solid #bfbfbf;
}
#maincontainer #side ul li a {
  color: #040404;
  text-decoration: none;
  display: block;
  padding: 15px 0;
}
.article_list a {
  display: block;
  color: #040404;
  text-decoration: none;
}
.article_list > li {
  position: relative;
  border-bottom: 1px solid #bfbfbf;
}
.article_list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.article_list .thumbnail {
  position: relative;
  vertical-align: middle;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}
.article_list .thumbnail:before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border: 1px solid #bfbfbf;
  content: "";
}
.article_list .thumbnail img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 100%;
}
.article_list .txt {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.article_list .detail {
  position: absolute;
  top: 0px;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0px;
}
.article_list .detail .cate {
  margin-left: 5px;
}
.article_list .detail .cate a {
  border-right: 1px solid #000000;
  padding: 0 5px;
  border-left: 1px solid #000000;
}
.article_list .detail .new {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  text-align: center;
  background-color: #f1263e;
  margin-left: 10px;
  letter-spacing: 0;
}
.pagenavi {
  text-align: center;
}
.pagenavi li {
  display: inline-block;
  letter-spacing: normal;
	margin: 0 3px; 
}
.pagenavi li a {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #a7a7a7;
}
.pagenavi li.current a {
  background-color: #0057a2;
}
/* 6. footer styles
================================================== */
#footer .cta_box {
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
}
#footer .cta_box .btn_cta a {
  color: #FFFFFF;
  text-align: center;
  background-color: #e11515;
  text-decoration: none;
  display: block;
}
#footer .cta_box .btn_cta a:before {
  background-image: url(/img/common/icon_mail_01.svg);
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
#footer .cta_box .tel_txt {
  font-weight: bold;
}
#footer .cta_box .tel_txt a {
  color: #232323;
  text-decoration: none;
}
#footer .cta_box .tel_txt a:before {
  background-image: url(/img/common/icon_tel_01.svg);
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
#footer .bnr_box ul {
  justify-content: center;
}
#footer .bnr_box ul li a {
  display: block;
}
#footer .bnr_box ul li img {
  width: auto;
}

/* スポンサーバナー関連追記　山沢 */
#footer .support {
  position: relative;
}
#footer .support p {
  position: absolute;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#footer .support p span {
  background: #0057a2;
  padding: 6px 10px 6px 20px;
  border-radius: 5px;
}
#footer .support ul {
  padding: 30px 15px 10px; 
  border-radius: 5px; 
  border: 2px solid #0057a2;
}
/* スポンサーバナー関連追記　上田 */
#footer .support02 {
  position: relative;
}
#footer .support02 p {
  position: absolute;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#footer .support02 p span {
  background: #0057a2;
  padding: 6px 20px 6px 20px;
  border-radius: 5px;
}
#footer .support02 ul {
  padding: 30px 15px 10px; 
  border-radius: 5px; 
  border: 2px solid #0057a2;
}
#footer .bnr_box .support02 ul {
  justify-content: space-around;
}

#footer .support03 {
  position: relative;
}
#footer .support03 p {
  position: absolute;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#footer .support03 p span {
  background: #0057a2;
  padding: 6px 20px 6px 20px;
  border-radius: 5px;
}
#footer .support03 ul {
  padding: 30px 15px 10px; 
  border-radius: 5px; 
  border: 2px solid #0057a2;
}
#footer .bnr_box .support03 ul {
  justify-content: space-around;
}
#footer .support_filler {
  width: 250px;
}
#footer .support_filler02 {
  width: 0px;
}


#footer .support04 {
  position: relative;
}
#footer .support04 p {
  position: absolute;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#footer .support04 p span {
  background: #0057a2;
  padding: 6px 20px 6px 20px;
  border-radius: 5px;
}

#footer .support04 ul {
  padding: 30px 15px 10px; 
  border-radius: 5px; 
  border: 2px solid #0057a2;
}
#footer .bnr_box .support04 ul {
  justify-content: space-around;
}
#footer .support04 p {
  top: -10px;
  width: 100%;
}
#footer .support04_filler {
  width: 5%;
}
#footer .support04 .flexbox li {
  padding-top: 20px;
}

/* 「日本を元気にする企業」用 */
#footer .support041 {
  position: relative;
}
#footer .support041 ul {
  padding: 30px 15px 10px; 
  border-radius: 5px; 
  border: 2px solid #0057a2;
}
#footer .bnr_box .support041 ul {
  justify-content: space-around;
}

#footer .support041 .flexbox li {
  padding-top: 10px;
  padding-bottom: 10px;
}


/* スポンサーバナー関連追記　山沢 */

/* 指定調査機関バナー　NPC */
#footer .survey {
  position: relative;
}
#footer .survey_bnr {
  padding: 0px 200px 30px 200px; 
}
/* YouTubeバナー NPC 20210217 */
#footer .youtube {
  position: relative;
}
#footer .youtube_bnr {
  padding: 0px 300px;
}
/******************************/

/* SNS関連追記　NPC */
#footer .snslink {
  position: relative;
}
#footer .snslink ul {
  padding: 10px 15px 10px; 
}
#footer .snslink_filler {
  width: 10px;
}
/******************************/

#footer #copy {
  color: #FFFFFF;
  background-color: #3b3b3b;
}
#pagetop {
  position: fixed;
  right: 0px;
  bottom: 0px;
  display: none;
  z-index: 99;
}
#pagetop a {
  display: block;
  background-color: #3b3b3b;
  position: relative;
}
#pagetop a:before {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
}
#pagetop.absolute {
  position: absolute;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

PC Setting

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media screen and (min-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7;
    word-wrap: break-word;
    word-break: break-all;
  }
  a:hover {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: .6;
  }
  .pcNoDisplay {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: text;
  }
  a[href^="tel:"]:hover {
    cursor: default;
    opacity: 1;
  }
  img {
    width: 100%;
    height: auto;
  }
  /* 2. headerArea styles
================================================== */
  #header {
    background-color: #FFFFFF;
  }
  #header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #header .left_wrap {
    /* flex-basis: 17.5%; */
    flex-basis: 20.5%;
  }
  #header #logo img.wide {
    display: block;
  }
  #header #logo img.narrow {
    display: none;
  }
  #header .menu-trigger {
    display: none;
  }
  #header .sp_btn {
    display: none;
  }
  #header .right_wrap > .flexbox {
    padding-top: 20px;
    align-items: center;
    justify-content: flex-end;
  }
  #header .outer {
    position: relative;
    justify-content: flex-end;
    align-items: center;
    padding-top: 15px;
  }
  #header .language {
    /*margin-right: 6.5%;*/
    margin-right: 13.0%;
  }
  #header .language li {
    line-height: 1.2;
  }
  #header .language li + li {
    border-left: 1px solid #020202;
  }
  #header .language li a {
    color: #434343;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0 10px;
    font-weight: bold;
  }
  #header .language li.en a:before {
    background-image: url(/img/common/icon_header_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin: 0 5px -3px 0;
    display: inline-block;
    content: "";
  }
  #header .link_list {
    margin-right: 3%;
  }
  #header .link_list li + li {
    margin-left: 10px;
  }
  #header .link_list li a {
    padding-left: 1em;
    position: relative;
    color: #434343;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
  }
  #header .link_list li a:before {
    width: 4px;
    height: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    box-sizing: border-box;
    border: 4px solid transparent;
    border-left: 4px solid #434343;
    content: "";
  }
  #header .search_box {
    border: 1px solid #c4c4c4;
    border-radius: 2px 0 0 2px;
    position: relative;
  }
  #header .search_box #serch_area {
    padding: 7px 20px 6px 10px;
    width: 200px;
  }
  #header .search_box #serch_area::placeholder {
    font-size: 1.2rem;
  }
  #header .search_box #search_btn {
    background-size: 12px auto;
    border-radius: 0 2px 2px 0;
    padding: 6px 0;
    width: 35px;
    height: 100%;
    background-color: #dedede;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  #header.fixed #logo img {
    width: auto;
    height: 35px;
  }
  #header.fixed #logo img.wide {
    display: none;
  }
  #header.fixed #logo img.narrow {
    display: block;
  }
  #header.fixed .outer {
    display: none;
  }
  /* 3. globalNaviArea styles
================================================== */
  #gNavi {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  #gNavi > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 15px;
  }
  #gNavi > ul > li + li {
    margin-left: 50px;
  }
  #gNavi > ul > li:nth-child(2) {
    margin: 0;
  }
  #gNavi > ul > li > a, #gNavi .menu__multi .menu__multi_ttl span {
    padding-bottom: 17px;
    display: block;
    position: relative;
    cursor: pointer;
  }
  #gNavi > ul > li > a:hover:before, #gNavi > ul > li.active > a:before, #gNavi .menu__multi .menu__multi_ttl span:hover:before, #gNavi .menu__multi.active .menu__multi_ttl span:before {
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #0057a2;
    content: "";
  }
  #gNavi > ul > li > a:hover {
    opacity: 1;
    transform: none;
  }
  #gNavi ul > li .megaMenuWrap {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0px;
    right: 0px;
  }
  #gNavi ul > li .megaMenuWrap a {
    position: relative;
    padding-left: 1.6em;
    display: inline-block;
  }
  #gNavi ul > li .megaMenuWrap a:before, #gNavi ul > li .megaMenuWrap a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
  }
  #gNavi ul > li .megaMenuWrap a:before {
    width: 15px;
    height: 15px;
    top: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #0057a2;
  }
  #gNavi ul > li .megaMenuWrap a:after {
    width: 3px;
    height: 3px;
    top: 15px;
    left: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: middle;
  }
  #gNavi ul > li .megaMenuWrap .megaMenuInr {
    border-top: 1px solid #cecece;
    box-shadow: 0px 14px 14px -14px rgba(0, 0, 0, 0.28);
  }
  #gNavi ul > li .pagetitle {
    border-bottom: 1px solid #d2d2d2;
    font-size: 2rem;
  }
  #gNavi ul > li .pagetitle a {
    padding-left: 1.3em;
  }
  #gNavi ul > li .pagetitle a:before {
    width: 20px;
    height: 20px;
    top: 8px;
  }
  #gNavi ul > li .pagetitle a:after {
    left: 6px;
    width: 5px;
    height: 5px;
  }
  #gNavi ul > li .pagetitle h2 {
    margin: 0 auto;
    max-width: 1100px;
    padding: 13px 0px;
    font-weight: 500;
  }
  #gNavi ul > li .second {
    margin: 0 auto;
    max-width: 1100px;
    padding: 25px 0 30px;
  }
  #gNavi ul > li .second > ul > li {
    flex-basis: 33.333%;
    line-height: 2.5;
  }
  #gNavi ul > li .solo {
    border-top: 1px solid #d2d2d2;
    line-height: 2.5;
    padding-top: 20px;
    margin-top: 20px;
  }
  #header.fixed {
    box-shadow: 0px 7px 7px -7px rgba(0, 0, 0, 0.05);
  }
  #header.fixed #gNavi > ul {
    padding-top: 22px;
  }
  #header.fixed #gNavi > ul > li > a {
    padding-bottom: 25px;
  }
  #header.fixed #gNavi ul > li .megaMenuWrap {
    top: 70px;
  }
  /* 4. localnavi styles
================================================== */
  .localnavi {
    margin: 0 auto;
    padding: 50px 0;
    max-width: 900px;
  }
  .localnavi > li {
    flex-basis: 33.3333%;
  }
  .localnavi > li > a {
    padding: 0 20px;
    height: 70px;
    letter-spacing: 1.5px;
  }
  .localnavi > li > a:after {
    right: 15px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
  }
  .localnavi > li:nth-child(3n - 2) > a {
    border-left: 1px solid #B1B1B1;
  }
  .localnavi > li:nth-child(1) > a, .localnavi > li:nth-child(2) > a, .localnavi > li:nth-child(3) > a {
    border-top: 1px solid #B1B1B1;
  }
  .localnavi > li:last-of-type > a {
    border-right: 1px solid #B1B1B1;
  }
  /* 5. contentsArea styles
================================================== */
  .container {
    margin: 0 auto;
    max-width: 1100px;
  }
  .flexbox > li img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .flexbox.col2 {
    margin: 0 -2.5%;
  }
  .flexbox.col2 > li {
    margin: 0 2.5%;
    flex-basis: 45%;
  }
  .flexbox.col3 {
    margin: 0 -2.5%;
  }
  .flexbox.col3 > li {
    margin: 0 2.5%;
    flex-basis: 28.333333%;
  }
  .flexbox.col4 {
    margin: 0 -2.5%;
  }
  .flexbox.col4 > li {
    margin: 0 2.5%;
    flex-basis: 20%;
  }
  .btn {
    text-align: center;
  }
  .btn a {
    font-size: 1.3rem;
    min-width: 220px;
    padding: 12px 0;
    margin: 0 auto;
    display: inline-block;
  }
  .btn a:after {
    right: 10px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
  }
  .h_style01 {
    font-size: 4.3rem;
  }
  .h_style02 {
    font-size: 3.5rem;
  }
  .h_style03 {
    margin: 75px 0 25px;
    font-size: 2.5rem;
    padding-left: 20px;
  }
  .h_style04 {
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .tbl_style01 {}
  .tbl_style01 thead {}
  .tbl_style01 thead th {
    padding: 18px 20px;
  }
  .tbl_style01 tbody {}
  .tbl_style01 tbody th {
    padding: 18px 20px;
    width: 230px;
    letter-spacing: 0px;
  }
  .tbl_style01 tbody td {
    padding: 18px 20px;
  }
  #visual {
    padding: 116px 0;
  }
  #visual:before {
    width: 44.5%;
  }
  #visual:after {
    width: 4px;
    left: 44.5%;
    border: 160px solid transparent;
    border-left: 120px solid rgba(0, 87, 162, 0.63);
  }
  #visual h1 {
    font-size: 4rem;
  }
  /* snswrap */
  .snswrap {
    margin: 15px auto 45px;
    max-width: 1100px;
  }
  .snswrap .sns_inn {
    display: flex;
    width: 200px;
    align-items: center;
  }
  .snswrap .sns_inn li {
    margin: 0 0.5vw 0 0;
    width: 25%;
  }

  /* topicpath */
  #topicpath {
    margin: 15px auto 45px;
    max-width: 1100px;
  }
  #topicpath ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #topicpath ul li {
    font-size: 1.2rem;
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  #topicpath ul li:before {
    content: "\003e";
    float: left;
    display: block;
    margin-right: 5px;
    padding-left: 5px;
  }
  #topicpath ul li:first-child:before {
    content: "";
    float: none;
    display: none;
    padding-left: 0;
  }
  #topicpath ul li a {
    color: #010101;
    text-decoration: none;
  }
  #maincontainer {
    width: 100%;
    display: table;
  }
  #maincontainer #main, #maincontainer #side {
    display: table-cell;
    vertical-align: top;
  }
  #maincontainer #side {
    width: 33.5%;
  }
  #maincontainer #side nav {
    width: 81%;
    margin-left: auto;
  }
  #maincontainer #side h2 {
    font-size: 1.8rem;
    padding: 15px 0;
  }
  #maincontainer #side ul + h2 {
    margin-top: 45px;
  }
  .article_list > li {
    padding-bottom: 25px;
  }
  .article_list > li:hover {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: .6;
  }
  .article_list > li + li {
    margin-top: 25px;
  }
  .article_list > li > a {
    opacity: 1;
    transform: none;
  }
  .article_list .thumbnail {
    flex-basis: 30.5%;
    height: 150px;
  }
  .article_list .txt {
    flex-basis: 66.5%;
    padding: 35px 0 0 3%;
    font-size: 2rem;
    line-height: 1.5;
  }
  .article_list .detail {
    left: 33.5%;
    padding-top: 5px;
  }
  .article_list .detail .date, .article_list .detail .cate {
    padding: 2px 0;
  }
  .article_list .detail .new {
    font-size: 1.3rem;
    padding: 2px 8px 3px 8px;
  }
  .pagenavi {
    margin: 80px 0;
  }
  .pagenavi li a {
    padding: 2px 8px;
  }
  /* 6. footer styles
================================================== */
  #footer .cta_box {
    padding: 15px 0;
  }
  #footer .cta_box ul {
    align-items: center;
  }
  #footer .cta_box ul li:nth-child(1) {
    flex-basis: 45.5%;
  }
  #footer .cta_box ul li:nth-child(2) {
    flex-basis: 54.5%;
    position: relative;
  }
  #footer .cta_box ul li:nth-child(2):before {
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #c9c9c9;
    content: attr(x);
  }
  #footer .cta_box .btn_cta a {
    padding: 20px 0;
    margin: 0 16% 0 auto;
    width: 63%;
    font-size: 1.6rem;
  }
  #footer .cta_box .btn_cta a:before {
    width: 20px;
    height: 14px;
    margin: 0 10px -2px 0;
  }
  #footer .cta_box .inner {
    padding-left: 40px;
    letter-spacing: 1.2px;
  }
  #footer .cta_box .tel_txt {
    line-height: 1;
    margin-top: 5px;
  }
  #footer .cta_box .tel_txt a {
    font-size: 2.8rem;
  }
  #footer .cta_box .tel_txt a:before {
    width: 20px;
    height: 20px;
    margin-right: 3px;
  }
  #footer .cta_box .tel_txt span {
    margin-left: 7px;
    font-size: 43%;
  }
  #footer .bnr_box {
    padding: 20px 0;
  }
	
/* スポンサーバナー関連追記　山沢 */
/*  #footer .bnr_box ul {
    justify-content: flex-end;
  } */  
  #footer .bnr_box ul li + li {
    margin-left: 35px;
  }
  #footer .bnr_box ul li img {
    height: 60px;
  }
  #footer .support {
    margin: 40px 0 10px;
  }
  #footer .support p {
    top: -10px;
    width: 100%;
  }
  #footer .support ul {
    width: 70%;
    margin: 0 auto;
  }
  #footer .bnr_box .support ul li img {
    height: 50px;
    margin-bottom: 20px;
  }
/* スポンサーバナー関連追記　上田 */
  #footer .support02 {
    margin: 40px -60px 10px -90px;
    width: 700px;
  }
  #footer .support02 p {
    top: -10px;
    width: 100%;
  }
  #footer .support02 ul {
    width: 70%;
    margin: 0 auto;
  }
/*#footer .bnr_box .support02 ul li img {
    height: 50px;
  } */
  #footer .bnr_box ul li img.banner01 {
    position: relative;
	top: 55px;
  }
  #footer .support03 {
    margin: 40px -30px 10px -90px;
    width: 300px;
  }
  #footer .support03 p {
    top: -10px;
    width: 100%;
  }
  #footer .support03 ul {
    width: 70%;
    margin: 0 auto;
  }
/* スポンサーバナー関連追記　山沢 */
	
  #footer .ft_nav {
    padding: 50px 0;
    background-color: #0057a2;
  }
  #footer .ft_nav .container {
    max-width: 1200px;
  }
  #footer .ft_nav ul.flexbox.col3 {
    margin: 0 -3%;
  }
  #footer .ft_nav ul.flexbox.col3 > li {
    margin: 0 3%;
  }
  #footer .ft_nav ul.flexbox.col3 > li:first-of-type {
    flex-basis: 35.5%;
  }
  #footer .ft_nav ul.flexbox.col3 > li:nth-child(n+2) {
    flex-basis: 23.2%;
  }
  #footer .ft_nav a {
    color: #FFFFFF;
    text-decoration: none;
  }
  #footer .ft_nav .link {
    margin-bottom: 15px;
    padding-left: 1em;
    position: relative;
  }
  #footer .ft_nav .link a {
    padding-bottom: 5px;
    vertical-align: middle;
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #FFFFFF;
  }
  #footer .ft_nav .link a:before {
    width: 4px;
    height: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    box-sizing: border-box;
    border: 4px solid transparent;
    border-left: 4px solid #FFFFFF;
    content: "";
  }
  #footer .ft_nav .second {
    padding-left: 1.5em;
  }
  #footer .ft_nav .second {
    margin-bottom: 35px;
  }
  #footer .ft_nav .second > li a {
    padding-left: 0.5em;
    position: relative;
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 2.5;
    letter-spacing: 0.8px;
  }
  #footer .ft_nav .second > li a:before {
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    left: 0px;
    top: 9px;
    border-radius: 10px;
    background-color: #FFFFFF;
    content: "";
  }
  #footer #copy {
    text-align: right;
    padding: 35px 0 25px;
    font-size: 1.2rem;
  }
  #footer #copy p {
    margin: 0 auto;
    max-width: 1100px;
  }
  #pagetop.absolute {
    bottom: 80px;
  }
  #pagetop a {
    width: 48px;
    height: 30px;
  }
  #pagetop a:before {
    width: 8px;
    height: 8px;
    margin-left: -4px;
  }
  #cta_scroll {
    position: fixed;
    right: 0px;
    top: 200px;
    z-index: 999;
  }
  #cta_scroll_02 {
    position: fixed;
    right: 0px;
    top: 448px;
    z-index: 999;
  }
  #cta_scroll a {
    background-color: #f1263e;
    border: 3px solid #FFFFFF;
    border-right: none;
    padding: 20px 21px 36px;
    border-radius: 3px 0 0 3px;
    display: block;
    position: relative;
  }
  #cta_scroll_02 a {
    background-color: #20589d;
    border: 3px solid #FFFFFF;
    border-right: none;
    padding: 20px 21px 36px;
    border-radius: 3px 0 0 3px;
    display: block;
    position: relative;
  }
  #cta_scroll_02 a img {
    display: block;
    width: 14px;
    height: auto;
  }
  #cta_scroll a:before,
  #cta_scroll a:after,
  #cta_scroll_02 a::before,
  #cta_scroll_02 a::after {
    display: block;
    position: absolute;
    content: "";
  }
  #cta_scroll a:before,
  #cta_scroll_02 a::before {
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #FFFFFF;
    bottom: 15px;
    margin: 0 auto;
    left: 0px;
    right: 0px;
  }
  #cta_scroll a:after {
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #f1263e;
    bottom: 18px;
    left: 27px;
  }
  #cta_scroll_02 a::after {
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #20589d;
    bottom: 18px;
    left: 27px;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

IE Setting

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media screen\0 {}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

TABLET Setting

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body, html {
    min-width: 1280px;
  }
  .pagenavi li a {
    padding: 5px 8px;
  }
  #header .search_box #serch_area {
    padding: 0px 20px 5px 10px;
    width: 200px;
    height: 28px;
  }
  #footer .ft_nav ul.flexbox.col3 > li:first-of-type {
    flex-basis: 41.5%;
  }
  #footer .ft_nav ul.flexbox.col3 > li {
    margin: 0 0.5%;
  }
  #footer .ft_nav .second > li a {
    letter-spacing: -0.5px;
  }
  #footer .cta_box p {
    letter-spacing: 0.5px;
  }
  #footer .cta_box .tel_txt {
    letter-spacing: 1.2px;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

SP Setting

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  html.js_humburgerOpen {
    overflow: hidden;
    overflow-y: hidden;
  }
  body {
    background: none;
    position: relative;
    font-size: 4vw;
    overflow-wrap: break-word;
    line-height: 1.6;
  }
  body, html {
    min-width: 0;
  }
  .spNoDisplay {
    display: none;
  }
  a.tel_link {
    pointer-events: auto;
  }
  a:hover {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
  .tblScroll {
    white-space: nowrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    overflow: scroll;
  }
  .tblScroll::-webkit-scrollbar {
    background: #f2f2f2;
    width: 10px;
    height: 10px;
  }
  .tblScroll::-webkit-scrollbar-track {
    background: #f2f2f2;
  }
  .tblScroll::-webkit-scrollbar-thumb {
    background: #cccccc;
  }
  /* 1. img styles
================================================== */
  img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    width /***/ : auto;
    -ms-interpolation-mode: bicubic;
    width: 100%;
    height: auto;
  }
  .ie6 img {
    width: 100%;
  }
  /* 2. header styles
================================================== */
  #header {
    background-image: none;
    margin: 0 auto;
    padding: 0;
    z-index: 5000;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
  }
  #header .left_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
  }
  #header #logo {
    flex-basis: 70%;
  }
  #header #logo a {
    margin: 0px 0 0px 2.8vw;
    display: block;
  }
  #header #logo img {
    /* height: 12vw; */
    height: 9vw;
    width: auto;
  }
  #header #logo img.narrow {
    display: none;
  }
  #header .sp_btn {
    flex-basis: 15%;
    height: 15vw;
  }
  #header .sp_btn a {
    border-left: 1px solid #cccccc;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .sp_btn img {
    width: 7.5vw;
    height: auto;
  }
  #header .menu-trigger {
    position: relative;
    cursor: pointer;
    height: 15vw;
    width: 15%;
    display: block;
    background-color: #005b9f;
  }
  #header .menu-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    transition: .3s;
  }
  #header .menu-trigger span:nth-child(1) {
    top: 35%;
  }
  #header .menu-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  #header .menu-trigger span:nth-child(3) {
    bottom: 35%;
  }
  #header .menu-trigger.on span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
  }
  #header .menu-trigger.on span:nth-child(2) {
    opacity: 0;
  }
  #header .menu-trigger.on span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    bottom: 0;
  }
  #header .outer {
    display: block;
  }
  #header .language {
    display: none;
  }
  #header .link_list {
    display: none;
  }
  #header .search_box {
    padding: 10px 5%;
    background-color: #dedede;
    position: relative;
  }
  #header .search_box #serch_area {
    padding: 0 3%;
    border-radius: 8px;
    width: 94%;
    height: 10vw;
  }
  #header .search_box #search_btn {
    background-color: transparent;
    width: 10vw;
    height: 10vw;
    background-size: 5vw auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 6%;
    margin: auto 0;
  }
  /* 3. navi styles
================================================== */
  #gNavi {
    background-color: #FFFFFF;
    z-index: 5000;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    position: absolute;
    top: 15vw;
    left: 0px;
    right: 0px;
    display: none;
  }
  #gNavi > ul:after {
    width: 100%;
    height: 300px;
    display: block;
    content: "";
  }
  #gNavi > ul > li {
    border-bottom: 1px solid #bebebe;
  }
  #gNavi > ul > li > a, #gNavi .menu__multi .menu__multi_ttl span {
    padding: 15px 5%;
    display: block;
  }
  #gNavi > ul > li > a {
    position: relative;
  }
  #gNavi > ul > li > a:after {
    width: 3vw;
    height: 3vw;
    border-top: 1px solid #141414;
    border-right: 1px solid #141414;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7%;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  #gNavi ul > li .megaMenuWrap a {
    padding: 15px 8%;
    display: block;
    position: relative;
  }
  #gNavi ul > li .megaMenuWrap a:after {
    width: 3vw;
    height: 3vw;
    border-top: 1px solid #141414;
    border-right: 1px solid #141414;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7%;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  #gNavi .menu__multi .menu__multi_ttl span {
    cursor: pointer;
    position: relative;
  }
  #gNavi .menu__multi .menu__multi_ttl span:after {
    width: 3vw;
    height: 3vw;
    border-top: 1px solid #141414;
    border-right: 1px solid #141414;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -2vw;
    position: absolute;
    top: 50%;
    right: 7%;
    content: "";
    vertical-align: middle;
  }
  #gNavi .menu__multi .menu__multi_ttl.open span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 0px;
  }
  #gNavi ul > li .second > ul {
    display: block;
  }
  #gNavi ul > li .second > ul > li, #gNavi ul > li .second > ul > li > ul li + li {
    border-top: 1px solid #bebebe;
  }
  #gNavi ul > li .solo {
    border-top: 1px solid #bebebe;
  }
  #gNavi ul > li .solo a {
    padding: 15px 8%;
    display: block;
    position: relative;
  }
  #gNavi ul > li .solo a:after {
    width: 3vw;
    height: 3vw;
    border-top: 1px solid #141414;
    border-right: 1px solid #141414;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7%;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  /* 4. localnavi styles
================================================== */
  .localnavi {
    margin: 30px 6%;
  }
  .localnavi > li {
    flex-basis: 100%;
  }
  .localnavi > li > a {
    padding: 15px 4%;
    border-left: 1px solid #B1B1B1;
  }
  .localnavi > li > a:after {
    right: 4%;
    width: 2vw;
    height: 2vw;
    margin-top: -1.2vw;
  }
  .localnavi > li:first-of-type > a {
    flex-basis: 100%;
    border-top: 1px solid #B1B1B1;
  }
  /* 5. contents styles
================================================== */
  .btn a {
    padding: 15px 0;
    display: block;
  }
  .btn a:after {
    right: 15px;
    width: 2vw;
    height: 2vw;
    margin-top: -1.2vw;
  }
  .h_style01 {
    margin: 15px 0;
    font-size: 7.25vw;
  }
  .h_style01:first-of-type {
    margin-top: 0px;
  }
  .h_style02 {
    margin: 30px 0;
    font-size: 5.5vw;
  }
  .h_style02:first-child {
    margin-top: 0px;
  }
  .h_style03 {
    font-size: 5.5vw;
    padding-left: 10px;
    margin: 30px 0;
    line-height: 1.5;
  }
  .h_style04 {
    margin: 30px 0 15px;
    font-size: 5vw;
    padding-bottom: 10px;
  }
  .tbl_style01 {}
  .tbl_style01 thead {}
  .tbl_style01 thead th {
    padding: 15px 4%;
  }
  .tbl_style01 tbody {}
  .tbl_style01 tbody th, .tbl_style01 tbody td {
    padding: 15px 4%;
    width: 50%;
  }
  .tbl_style01 tbody th {}
  .tbl_style01 tbody td {}
  #visual {
    padding: 16vw 6%;
  }
  #visual:before {
    width: 54%;
  }
  #visual:after {
    width: 4px;
    left: 54%;
    border: 26vw solid transparent;
    border-left: 14vw solid rgba(0, 87, 162, 0.63);
    top: 50%;
    margin-top: -25%;
  }
  #visual h1 {
    font-size: 6vw;
  }

  /* snswrap */
  .snswrap {
    margin: 15px auto;
    max-width: 100%;
  }
  .snswrap .sns_inn {
    display: flex;
    margin: 0 6%;
    width: 60%;
    align-items: center;
  }
  .snswrap .sns_inn li {
    margin: 0 3vw 0 0;
    width: 25%;
  }

  /* topicpath */
  #topicpath {
    display: none;
  }
  #maincontainer #main {
    margin-bottom: 30px;
  }
  #maincontainer #side h2 {
    padding: 10px 0;
  }
  #maincontainer #side ul + h2 {
    margin-top: 30px;
  }
  .article_list > li {
    padding-bottom: 15px;
  }
  .article_list > li + li {
    margin-top: 15px;
  }
  .article_list .thumbnail {
    flex-basis: 33.5%;
    height: 19.5vw;
  }
  .article_list .txt {
    flex-basis: 62%;
    padding: 7vw 0 0 4.5%;
  }
  .article_list .detail {
    font-size: 3vw;
    left: 38%;
  }
  .article_list .detail .new {
    font-size: 2.8vw;
    padding: 1px 4px 3px;
  }
  .pagenavi {
    margin-top: 30px;
  }
  .pagenavi li a {
    padding: 2px 8px;
  }
  /*	6 : footer styles
================================================== */
  #footer .cta_box {
    padding: 30px 6%;
  }
  #footer .cta_box ul {
    display: block;
  }
  #footer .cta_box .btn_cta {
    margin-bottom: 15px;
  }
  #footer .cta_box .btn_cta a {
    padding: 15px 0;
    width: 100%;
  }
  #footer .cta_box .btn_cta a:before {
    width: 6vw;
    height: 4.5vw;
    margin: 0 10px -1vw 0;
  }
  #footer .cta_box .tel_txt a {
    font-size: 8vw;
  }
  #footer .cta_box .tel_txt a:before {
    width: 6vw;
    height: 6vw;
    margin-right: 5px;
  }
  #footer .cta_box .tel_txt span {
    display: block;
  }
  #footer .bnr_box {
    padding: 15px 6% 0;
  }
  #footer .bnr_box ul li {
    margin: 0 2% 15px 0;
  }
  #footer .bnr_box ul li img {
    height: 8vw;
  }
	
/* スポンサーバナー関連追記　山沢 */
  #footer .support {
    margin: 12vw auto;
  }
  #footer .support ul {
    padding-top: 16vw;
  }
  #footer .support ul li:last-child {
    margin-top: 3vw;
  }
  #footer .support p {
    top: -6vw;
    width: 100%;
  }
  #footer .support p span {
    display: block;
    width: 86%;
    margin: 0 auto;
  }
/* スポンサーバナー関連追記　上田 */
  #footer .support02 {
    margin: 12vw auto;
  }
/*  #footer .support02 ul {
    padding-top: 12vw;
  }*/
/*  #footer .support02 ul li:last-child {
    margin-top: 3vw;
  }*/
  #footer .support02 p {
    top: -6vw;
    width: 100%;
  }
  #footer .support02 p span {
    display: block;
    width: 86%;
    margin: 0 auto;
  }
  #footer .bnr_box ul li img.spwidth {
    height: 13vw;
  }
  #footer .support03 {
    margin: 12vw auto;
  }
  #footer .support03 p {
    top: -6vw;
    width: 100%;
  }
  #footer .support03 p span {
    display: block;
    width: 86%;
    margin: 0 auto;
  }
/* スポンサーバナー関連追記　山沢 */
 
	#footer .ft_nav {
    display: none;
  }
  #footer #copy {
    font-size: 2.2vw;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    letter-spacing: 0.3px;
  }
  #pagetop.absolute {
    bottom: 60px;
  }
  #pagetop a {
    width: 10vw;
    height: 7.5vw;
  }
  #pagetop a:before {
    width: 8px;
    height: 8px;
    margin-left: -4px;
  }
  #cta_scroll {
    display: none;
  }
  #cta_scroll_02 {
    display: none;
  }

#footer .support04 {
  margin-bottom: 20px;
}

}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

SP Setting(横)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media only screen and (max-width:767px) and (orientation: landscape) {}
