@charset "utf-8";
/* common.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
	font-family: "AvenirNextLTPro-Medium", "FOT-筑紫ゴシック Pr5 R", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  	color: #000;
}

* html * {
	font-family: "AvenirNextLTPro-Medium", "FOT-筑紫ゴシック Pr5 R", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p,span,li,dt,dd {
	line-height: 1.6;
}

/*　共通レイアウトスタイル　*/

html {
    font-size: 11px;
}

body {
	width: 100%;
    background: url("../images/common/bg01.png");
}

#wrapper {
    background: url("../images/common/bg02.png") left top repeat-x;
    padding-top: 155px;
    padding-bottom: env(safe-area-inset-bottom);
}

.inner {
    width: 1120px;
    margin: 0 auto;
}

.pcview {}

.spview {
    display: none !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

.cn-text-container {
    color: #fff !important;
}

.cn-buttons-container {
    display: block !important;
    text-align: center;
}

.cn-button {
    width: 150px !important;
    color: #fff !important;
    border-radius: 15px !important;
}

.cn-close-icon {
    color: #fff !important;
}

.cn-close-icon:before, .cn-close-icon:after {
    background-color: rgba(255,255,255,1) !important;
}


@media screen and (max-width: 559px) {

html {
    font-size: 2.82vw;
}


#wrapper {
    background: url("../images/common/bg02.png") left top repeat-x;
    background-size: 100% 105.13vw;
    /*padding-top: 29.23vw;*/
    padding-top: 18.67vw;
}

.inner {
    width: 90vw;
    margin: 0 auto;
}

.pcview {
    display: none;
}

.spview {
    display: inherit !important;
}

}

@media screen and (orientation: landscape) {

html.is-mobile {
    font-size: 2.82vw;
}

html.is-mobile #wrapper {
    background: url("../images/common/bg02.png") left top repeat-x;
    background-size: 100% 105.13vw;
    /*padding-top: 29.23vw;*/
    padding-top: 18.67vw;
}

html.is-mobile .inner {
    width: 90vw;
    margin: 0 auto;
}

html.is-mobile .pcview {
    display: none;
}

html.is-mobile .spview {
    display: inherit !important;
}

}


/*---------------------------------------------

header

---------------------------------------------*/

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: url("../images/common/bg02.png") left top repeat-x;
    width: 100%;
}

header .inner {
    width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

header.scroll .inner {
    padding: 13px 0;
}

header .head01 {
    padding-top: 25px;
    transition: 0.5s;
}

header.scroll .head01 {
    padding-top: 0;
}

header .head01 .logo01 img {
    width: 80px;
    transition: 0.5s;
}

header.scroll .head01 .logo01 img {
    width: 35px;
}

header .head02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 962px;
    padding-top: 35px;
    transition: 0.5s;
}

header.scroll .head02 {
    padding-top: 0;
}

header .head02 p.lead {
    font-size: 1.2rem;
    margin-bottom: 22px;
    width: 100%;
    text-align: right;
    font-family: "FOT-筑紫ゴシック Pro B";
}

header.scroll .head02 p.lead {
    display: none;
}

header .head02 p.lead span {
    font-family: "AvenirNextLTPro-Medium";
}

header .head02 ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 0 0;
}

header .head02 ul li {
    margin: 10px 0 0 40px;
    transition: 0.5s;
}

header.scroll .head02 ul li {
    margin: 0 0 0 40px;
}

header .head02 ul li:first-child {
    margin-left: 0;
}

header .head02 ul li a {
    font-size: 1.4rem;
    text-decoration: none;
    font-family: "FOT-筑紫ゴシック Pro B","AvenirNextLTPro-Medium";
    position: relative;
    display: inline-block;
}

header .head02 ul li a:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	bottom: 0;
	height: 2px;
	margin: -5px 0;
    left: 0;
	background-color: #000;
	transition: all 0.2s ease-in 0s;
}

header .head02 ul li a:hover:after {
	width: 100%;
}

header .head02 li.search {
    margin: 0 0 0 150px;
}

header.scroll .head02 ul li.search {
    margin: 0 0 0 150px;
}

header .head02 form {
    position: relative;
}

header .head02 input[name="s"] {
    border: none;
    width: 230px;
    height: 35px;
    border-radius: 17px;
    background: #fff;
    padding: 10px 40px 10px 20px;
    box-sizing: border-box;
    font-size: 1.2rem;
}

header .head02 input[name="s"]::placeholder {
    font-size: 1.2rem;
    color: #9D9D9D;
}

header .head02 input[type="submit"] {
    background: url("../images/common/icon_search.svg") no-repeat;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 6px;
    left: 200px;
    border: none;
    padding: 0;
    text-indent: -999em;
    overflow: hidden;
}

header .head02 li.btn {
    margin: 0 0 0 10px;
}

header.scroll .head02 li.btn {
    margin: 0 0 0 10px;
}

header .head02 li.btn a {
    background: #82AA42;
    width: 150px;
    height: 35px;
    border-radius: 17px;
    font-size: 1.2rem;
    font-family: "FOT-筑紫ゴシック Pro B";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;    
    box-sizing: border-box;
    padding-bottom: 4px;
    -webkit-transition: background-color .9s cubic-bezier(.4,0,0,1);
    transition: background-color .9s cubic-bezier(.4,0,0,1);
}

header .head02 li.btn a:after {
    display: none;
}

header .head02 li.btn a:hover {
    background: #768B1F;
}

header .head02 li.banner01,
header .head02 li.banner02 {
    display: none;
}

header .head02 li.footer {
    display: none;
}

header .btnMenu {
    display: none;
}



@media screen and (max-width: 559px) {

header {
    top: 0;
    left: 0;
    z-index: 100;
    background: url("../images/common/bg02.png") left top repeat-x;
    width: 100%;
    position: fixed;
}

header .inner {
    width: 90vw;
    height: 18.67vw;
    margin: 0 auto;
    padding: 0 0 2.56vw;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
}

header .head01 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
}

header .head01 .logo01 {
    margin-right: 6.15vw;
}

header .head01 .logo01 img {
    width: 14.1vw;
}

header .head02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
}

header .head02 p.lead {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 0;
    width: 100%;
    text-align: left;
}

header .head02 nav {
	display: none;
	min-width: inherit;
}

.open header .head02 nav {
	display: block;
	position: absolute;
	top: 18.72vw;
	left: -5.13vw;
	width: 100vw;
    height: 92vh;
	background: #FFE100 url("../images/common/bg02.png") left top repeat-y;
	z-index: 1002;
    overflow-y: scroll;
}

header .head02 ul {
    display: block;
    margin: 0;
}

header .head02 ul li {
    margin: 0;
    text-align: center;
}

header .head02 ul li a {
    font-size: 1.6rem;
    display: block;
    padding: 2.56vw 0;
    line-height: 1.0;
}

header .head02 ul li.search {
    margin: 7.69vw 0 0;
}

header .head02 form {
    width: 58.97vw;
    margin: 0 auto;
}

header .head02 input[name="s"] {
    border: none;
    width: 58.97vw;
    height: 8.97vw;
    border-radius: 4.49vw;
    padding: 2.6vw 10.26vw 2.6vw 5.13vw;
}

header .head02 input[type="submit"] {
    background: url("../images/common/icon_search.svg") no-repeat;
    background-size: cover;
    width: 5.38vw;
    height: 5.38vw;
    position: absolute;
    top: 1.54vw;
    left: 51.28vw;
    border: none;
    padding: 0;
    text-indent: -999em;
    overflow: hidden;
}

header .head02 li.btn {
    margin: 5.13vw 0 0;
}

header .head02 li.btn a {
    width: 58.97vw;
    height: 8.97vw;
    border-radius: 4.49vw;
    margin: 0 auto;
    padding: 0;
}

header .btnMenu {
    display: flex;
    position: absolute;
    align-items: center;
    bottom: 4.23vw;
    right: 0;
}

header .btnMenu a.search {
    background: url("../images/common/icon_search.svg") no-repeat;
    background-size: cover;
    width: 5vw;
    height: 5.13vw;
    display: block;
    text-indent: -999em;
    overflow: hidden;
    margin-right: 2vw;
}


header .head02 li.banner01,
header .head02 li.banner02 {
    display: block;
    width: 76.92vw;
    margin: 10.26vw auto 0;
    text-align: left;
    font-size: 1.4rem;
    font-family: "AvenirNextLTPro-Medium","FOT-筑紫ゴシック Pro B";
    padding: 0;
}

header .head02 li.banner02 {
    margin-top: 5.13vw;
}

header .head02 li.banner01 img,
header .head02 li.banner02 img {
    width: 100%;
}

header .head02 li.footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 89.74vw;
    margin: 7.69vw auto 0;
    padding: 7.69vw 0;
    border-top: 2px solid #000;
}

header .head02 li.footer .logo01 {
    margin: 0 7.95vw 0 !important;
    padding: 0;
}

header .head02 li.footer .logo01 img {
    width: 14.1vw;
}

header .head02 li.footer ul li {
    text-align: left;
    margin: 0 0 5.13vw;
}

header .head02 li.footer ul li a {
    font-size: 1.2rem;
    padding: 0;
    display: inline;
}

header .btnMenu a.menu {
    background: url("../images/common/btn_menu.png") no-repeat;
    background-size: cover;
    width: 6.41vw;
    height: 4.1vw;
    display: block;
    text-indent: -999em;
    overflow: hidden;
    cursor: pointer;
}

header .btnMenu.active a.menu {
    background: url("../images/common/btn_menu_open.png") center top no-repeat;
    background-size: auto 100%;
    width: 6.41vw;
    height: 5vw;
    display: block;
    text-indent: -999em;
    overflow: hidden;
    cursor: pointer;
}

}

@media screen and (orientation: landscape) {

html.is-mobile header {
    top: 0;
    left: 0;
    z-index: 100;
    background: url("../images/common/bg02.png") left top repeat-x;
    width: 100%;
    position: fixed;
}

html.is-mobile header .inner {
    width: 90vw;
    height: 18.67vw;
    margin: 0 auto;
    padding: 0 0 2.56vw;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
}

html.is-mobile header .head01 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
}

html.is-mobile header .head01 .logo01 {
    margin-right: 6.15vw;
}

html.is-mobile header .head01 .logo01 img {
    width: 14.1vw;
}

html.is-mobile header .head02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
}

html.is-mobile header .head02 p.lead {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 0;
    width: 100%;
    text-align: left;
}

html.is-mobile header .head02 nav {
	display: none;
	min-width: inherit;
}

html.is-mobile.open header .head02 nav {
	display: block;
	position: absolute;
	top: 18.50vw;
	left: -5.13vw;
	width: 100vw;
    height: 92.22vh;
	background: #FFE100 url("../images/common/bg02.png") left top repeat-y;
	z-index: 1002;
    overflow-y: scroll;
}

html.is-mobile header .head02 ul {
    display: block;
    margin: 0;
}

html.is-mobile header .head02 ul li {
    margin: 0;
    text-align: center;
}

html.is-mobile header .head02 ul li a {
    font-size: 1.6rem;
    display: block;
    padding: 2.56vw 0;
    line-height: 1.0;
}

html.is-mobile header .head02 ul li.search {
    margin: 7.69vw 0 0;
}

html.is-mobile header .head02 form {
    width: 58.97vw;
    margin: 0 auto;
}

html.is-mobile header .head02 input[name="s"] {
    border: none;
    width: 58.97vw;
    height: 8.97vw;
    border-radius: 4.49vw;
    padding: 2.6vw 10.26vw 2.6vw 5.13vw;
}

html.is-mobile header .head02 input[type="submit"] {
    background: url("../images/common/icon_search.svg") no-repeat;
    background-size: cover;
    width: 5.38vw;
    height: 5.38vw;
    position: absolute;
    top: 1.54vw;
    left: 51.28vw;
    border: none;
    padding: 0;
    text-indent: -999em;
    overflow: hidden;
}

html.is-mobile header .head02 li.btn {
    margin: 5.13vw 0 0;
}

html.is-mobile header .head02 li.btn a {
    width: 58.97vw;
    height: 8.97vw;
    border-radius: 4.49vw;
    margin: 0 auto;
    padding: 1.48vw 0 0;
}

html.is-mobile header .btnMenu {
    display: flex;
    position: absolute;
    align-items: center;
    bottom: 4.23vw;
    right: 0;
}

html.is-mobile header .btnMenu a.search {
    background: url("../images/common/icon_search.svg") no-repeat;
    background-size: cover;
    width: 5vw;
    height: 5.13vw;
    display: block;
    text-indent: -999em;
    overflow: hidden;
    margin-right: 2vw;
}


html.is-mobile header .head02 li.banner01,
html.is-mobile header .head02 li.banner02 {
    display: block;
    width: 76.92vw;
    margin: 10.26vw auto 0;
    text-align: left;
    font-size: 1.4rem;
    font-family: "AvenirNextLTPro-Medium","FOT-筑紫ゴシック Pro B";
    padding: 0;
}

html.is-mobile header .head02 li.banner02 {
    margin-top: 5.13vw;
}

html.is-mobile header .head02 li.banner01 img,
html.is-mobile header .head02 li.banner02 img {
    width: 100%;
}

html.is-mobile header .head02 li.footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 89.74vw;
    margin: 7.69vw auto 0;
    padding: 7.69vw 0;
    border-top: 2px solid #000;
}

html.is-mobile header .head02 li.footer .logo01 {
    margin: 0 7.95vw 0 !important;
    padding: 0;
}

html.is-mobile header .head02 li.footer .logo01 img {
    width: 14.1vw;
}

html.is-mobile header .head02 li.footer ul li {
    text-align: left;
    margin: 0 0 5.13vw;
}

html.is-mobile header .head02 li.footer ul li a {
    font-size: 1.2rem;
    padding: 0;
    display: inline;
}

html.is-mobile header .btnMenu a.menu {
    background: url("../images/common/btn_menu.png") no-repeat;
    background-size: cover;
    width: 6.41vw;
    height: 4.1vw;
    display: block;
    text-indent: -999em;
    overflow: hidden;
    cursor: pointer;
}

html.is-mobile header .btnMenu.active a.menu {
    background: url("../images/common/btn_menu_open.png") center top no-repeat;
    background-size: auto 100%;
    width: 6.41vw;
    height: 5vw;
    display: block;
    text-indent: -999em;
    overflow: hidden;
    cursor: pointer;
}


}


/*---------------------------------------------

mainContainer

---------------------------------------------*/

#mainContainer {
    width: 1120px;
    margin: 0 auto;
    overflow: hidden;
}

#leftArea01,
#leftArea02 {
    width: 765px;
    float: left;
}

.pageBox {
    margin-top: 45px;
}

.single .pageBox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageBox .wp-pagenavi {    
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageBox .wp-pagenavi span,
.pageBox .wp-pagenavi a,
.single .pageBox span,
.single .pageBox a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: "AvenirNextLTPro-Demi";
    margin: 0 10px;
    text-decoration: none;
    border: none;
    padding: 0;
}

.pageBox .wp-pagenavi a,
.single .pageBox a {
    color: #9D9D9D;
}

.pageBox .wp-pagenavi a:hover,
.single .pageBox a:hover {
    color: #000;
}

.pageBox .wp-pagenavi a img {
    width: 15px;
}

#rightArea {
    width: 300px;
    float: right;
}

#rightArea #financialWatch {
	margin-bottom: 70px;
}

#rightArea #financialWatch .img img {
	width: 100%;
}

#rightArea #financialWatch .tits {
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	/*background: #fff;
	color: #FFA700;*/
	height: 36px;
	box-sizing: border-box;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-family: "AvenirNextLTPro-Medium","FOT-筑紫ゴシック Pro B";
}

#rightArea #financialWatch a.link {
	display: block;
	text-decoration: none;
}

#rightArea #financialWatch .titss {
	margin: 10px 0 15px;
	font-size: 1.4rem;
  font-family: "AvenirNextLTPro-Medium","FOT-筑紫ゴシック Pro B";
  line-height: 1.45;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  transition: 0.5s;
  word-wrap: break-word;
}

#rightArea #financialWatch a.link:hover .titss {
    color: #FFA700;
}

#rightArea #financialWatch a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
	color: #fff;
  width: 210px;
  height: 36px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "FOT-筑紫ゴシック Pro B";
  letter-spacing: -0.05em;
  margin: 0 auto;
  box-sizing: border-box;
  padding-bottom: 3px;
  -webkit-transition: background-color .9s cubic-bezier(.4,0,0,1);
  transition: background-color .9s cubic-bezier(.4,0,0,1);
}

#rightArea #financialWatch a.btn img {
  margin-left: 5px;
}

#rightArea #financialWatch a.btn:hover {
    background: #666;
}


#rightArea .adbox01 {
    margin-bottom: 40px;
}

#rightArea .adbox01 img {
    max-width: 100%;
}

#rightArea .adbox02 {
    margin-bottom: 20px;
}

#rightArea .adbox02 img {
    max-width: 100%;
}

#rightArea .viewRanking dt {
    font-size: 1.5rem;
    font-family: "FOT-筑紫ゴシック Pro B";
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
}

/*#rightArea .viewRanking dd,*/
#rightArea .viewRanking li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #A3A3A3;
}

#rightArea .viewRanking dd a,
#rightArea .viewRanking li a {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#rightArea .viewRanking dd .rank,
#rightArea .viewRanking li .rank {
    font-size: 2.0rem;
    font-family: "AvenirNextLTPro-Demi";
    font-weight: 400;
    transition: 0.5s;
}

#rightArea .viewRanking dd .explain,
#rightArea .viewRanking li .explain {
    font-size: 1.4rem;
    font-family: "FOT-筑紫ゴシック Pro B";
    line-height: 1.4;
    width: 267px;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    transition: 0.5s;
    word-wrap: break-word;
}

#rightArea .viewRanking dd a:hover .rank,
#rightArea .viewRanking dd a:hover .explain,
#rightArea .viewRanking li a:hover .rank,
#rightArea .viewRanking li a:hover .explain {
    color: #FFA700;
}

#rightArea .btn01 {
    margin-bottom: 40px;
}

#rightArea .btn01 a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFEFEF;
    width: 210px;
    height: 36px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: "FOT-筑紫ゴシック Pro B";
    letter-spacing: -0.05em;
    margin: 0 auto;
    box-sizing: border-box;
    padding-bottom: 3px;
    -webkit-transition: background-color .9s cubic-bezier(.4,0,0,1);
    transition: background-color .9s cubic-bezier(.4,0,0,1);
}

#rightArea .btn01 a img {
    margin-left: 5px;
}

#rightArea .btn01 a:hover {
    background: #FFE100;
}

#rightArea .banner01,
#rightArea .banner02 {
    margin-bottom: 40px;
}

#rightArea .banner01 img,
#rightArea .banner02 img {
    width: 100%;
}

#rightArea .recommend dt {
    font-size: 1.5rem;
    font-family: "AvenirNextLTPro-Demi", "FOT-筑紫ゴシック Pro B";
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
}

#rightArea .recommend dd {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #A3A3A3;
}

#rightArea .recommend dd a {
    text-decoration: none;
    font-size: 1.4rem;
    font-family: "FOT-筑紫ゴシック Pro B";
    line-height: 1.4;
    width: 267px;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    transition: 0.5s;
}

#rightArea .recommend dd a:hover {
    color: #FFA700;
}


@media screen and (max-width: 559px) {

#mainContainer {
    width: 100%;
    margin: 0;
    display: block;
}

#leftArea01 {
    width: 90vw;
    margin: 0 auto 10.26vw;
    float: none;
}

.pageBox .wp-pagenavi,
.single .pageBox {
    width: 90vw;
    margin: 10.226vw auto 0;
}

.pageBox .wp-pagenavi span,
.pageBox .wp-pagenavi a,
.single .pageBox span,
.single .pageBox a {
    width: 5.13vw;
    height: 5.13vw;
    margin: 0 2.6vw;
}

.pageBox .wp-pagenavi a,
.single .pageBox a {
    width: 3.85vw;
}

#rightArea {
    width: 100%;
    float: none;
    margin-bottom: 10.26vw;
}


#rightArea #financialWatch {
	margin: 0 auto 10.67vw;
	width: 90%;
}

#rightArea #financialWatch .tits {
	height: auto;
	padding: 1.4vw 0;
	margin-bottom: 2.67vw;
}

#rightArea #financialWatch .titss {
	margin: 2.67vw 0 4vw;
}

#rightArea #financialWatch a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
	color: #fff;
  width: 53.85vw;
  height: 8.72vw;
  border-radius: 4.36vw;
}


#rightArea .adbox01 {
    margin-bottom: 10.26vw;
    text-align: center;
}

#rightArea .adbox01 img {
    max-width: 90%;
}

#rightArea .adbox02 {
   margin-bottom: 10.26vw;
   text-align: center;
}

#rightArea .adbox02 img {
    max-width: 90%;
}

#rightArea .adbox03 {
    text-align: center;
}

#rightArea .adbox03 img {
     max-width: 90%;    
}

#rightArea .viewRanking {
    width: 90vw;
    margin: 0 auto;
}

#rightArea .viewRanking dt {
    padding-bottom: 1.3vw;
    margin-bottom: 5.64vw;
}

#rightArea .viewRanking dd,
#rightArea .viewRanking li {
    margin-bottom: 5.13vw;
    padding-bottom: 5.13vw;
}

#rightArea .viewRanking dd .explain,
#rightArea .viewRanking li .explain {
    width: 81.28vw;
}

#rightArea .btn01 {
    margin-bottom: 7.69vw;
}

#rightArea .btn01 a {
    width: 53.85vw;
    height: 8.72vw;
    border-radius: 4.36vw;
    padding-bottom: 0;
}

#rightArea .btn01 a img {
    margin-left: 1.3vw;
    width: 3vw;
}

#rightArea .banner01,
#rightArea .banner02 {
    width: 90vw;
    margin: 0 auto 7.69vw;
}

#rightArea .banner01 img,
#rightArea .banner02 img {
    width: 100%;
}

#rightArea .recommend {
    width: 90vw;
    margin: 0 auto;
}


#rightArea .recommend dt {
    padding-bottom: 1.3vw;
    margin-bottom: 5.64vw;
}

#rightArea .recommend dd {
    margin-bottom: 5.13vw;
    padding-bottom: 5.13vw;
}

#rightArea .recommend dd a {
    width: 100%;
}

}

@media screen and (orientation: landscape) {

html.is-mobile #mainContainer {
    width: 100%;
    margin: 0;
    display: block;
}

html.is-mobile #leftArea01 {
    width: 90vw;
    margin: 0 auto 10.26vw;
    float: none;
}

html.is-mobile .pageBox .wp-pagenavi,
html.is-mobile .single .pageBox {
    width: 90vw;
    margin: 10.226vw auto 0;
}

html.is-mobile .pageBox .wp-pagenavi span,
html.is-mobile .pageBox .wp-pagenavi a,
html.is-mobile .single .pageBox span,
html.is-mobile .single .pageBox a {
    width: 5.13vw;
    height: 5.13vw;
    margin: 0 2.6vw;
}

html.is-mobile .pageBox .wp-pagenavi a,
html.is-mobile .single .pageBox a {
    width: 3.85vw;
}

html.is-mobile #rightArea {
    width: 100%;
    float: none;
    margin-bottom: 10.26vw;
}

html.is-mobile #rightArea .adbox01 {
    margin-bottom: 10.26vw;
    text-align: center;
}

html.is-mobile #rightArea .adbox01 img {
    max-width: 90%;
}

html.is-mobile #rightArea .adbox02 {
   margin-bottom: 10.26vw;
   text-align: center;
}

html.is-mobile #rightArea .adbox02 img {
    max-width: 90%;
}

html.is-mobile #rightArea .adbox03 {
    text-align: center;
}

html.is-mobile #rightArea .adbox03 img {
     max-width: 90%;    
}

html.is-mobile #rightArea .viewRanking {
    width: 90vw;
    margin: 0 auto;
}

html.is-mobile #rightArea .viewRanking dt {
    padding-bottom: 1.3vw;
    margin-bottom: 5.64vw;
}

html.is-mobile #rightArea .viewRanking dd {
    margin-bottom: 5.13vw;
    padding-bottom: 5.13vw;
}

html.is-mobile #rightArea .viewRanking dd .explain {
    width: 81.28vw;
}

html.is-mobile #rightArea .btn01 {
    margin-bottom: 7.69vw;
}

html.is-mobile #rightArea .btn01 a {
    width: 53.85vw;
    height: 8.72vw;
    border-radius: 4.36vw;
    padding-bottom: 0;
}

html.is-mobile #rightArea .btn01 a img {
    margin-left: 1.3vw;
    width: 3vw;
}

html.is-mobile #rightArea .banner01 {
    width: 90vw;
    margin: 0 auto 7.69vw;
}

html.is-mobile #rightArea .banner01 img {
    width: 100%;
}

html.is-mobile #rightArea .recommend {
    width: 90vw;
    margin: 0 auto;
}


html.is-mobile #rightArea .recommend dt {
    padding-bottom: 1.3vw;
    margin-bottom: 5.64vw;
}

html.is-mobile #rightArea .recommend dd {
    margin-bottom: 5.13vw;
    padding-bottom: 5.13vw;
}

html.is-mobile #rightArea .recommend dd a {
    width: 100%;
}

}


/*---------------------------------------------

footer

---------------------------------------------*/

p.attention02 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 80px;
}

footer {
    background: #FFE100 url("../images/common/bg02.png") repeat-x;
    margin-top: 20px;
}

footer .inner {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .inner .footer01 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .inner .footer01 img {
    width: 60px;
}

footer .inner p {
    font-size: 1.2rem;
    font-family: "AvenirNextLTPro-Medium","FOT-筑紫ゴシック Pro B";
    margin-left: 35px;
}

footer .inner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;    
}

footer .inner ul li {
    margin-left: 30px;
}

footer .inner ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    font-family: "FOT-筑紫ゴシック Pr5 R";
}

footer .inner ul li a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 559px) {

p.attention02 {
    font-size: 1.0rem;
    margin-top: 0;
}


footer {
    margin-top: 5.12vw;
}

footer .inner {
    padding: 3vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .inner .footer01 .logo01 img {
    width: 11.54vw;
}

footer .inner p {
    font-size: 1.0rem;
    margin: 2vw 0 0 10.77vw;
}

footer .inner ul {
    display: none;
}

}


@media screen and (orientation: landscape) {

html.is-mobile p.attention02 {
    font-size: 1.0rem;
    margin-top: 0;
}

html.is-mobile footer {
    margin-top: 12.82vw;
}

html.is-mobile footer .inner {
    padding: 5.9vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

html.is-mobile footer .inner .footer01 .logo01 img {
    width: 11.54vw;
}

html.is-mobile footer .inner p {
    font-size: 1.0rem;
    margin-left: 10.77vw;
}

html.is-mobile footer .inner ul {
    display: none;
}

}


table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
}

th,
td {
	padding: 10px 15px;
	border: 1px solid #c0c0c0;
	border-collapse: collapse;
	background: #fff;
}


@media screen and (max-width: 959px) {/*タブレット*/}
@media screen and (max-width: 559px) {/*スマホ*/}
