@charset 'UTF-8';

/*
css
　 ├ reset.css--------：リセット用
　 ├ style.css--------：WEB 1,280px以上
　 ├ pc.css-----------：WEB 1,279px以下、1,025以上
　 ├ tablet.css-------：WEB 1,024以下、601px以上
　 └ smart.css--------：WEB 600px以下
*/

/* css記載順序
A. reset.css
B. style.css
C. pc.css
D. tablet.css
E. smart.css

B-01. 枠組共通
B-02. header
B-03. nav
B-04. main共通
B-05. h1,h2見出し
B-06. breadcrumb
B-07. pager
B-08. aside
B-09. footer
B-10. toppage
B-11. form
B-12. レギュレーション
B-13. 検索結果
B-14. 内部ページ
end css記載順序*/

/*************************** B-01. 枠組共通 ***********************/
html{font-size:62.5%;}
@media screen and (max-width:1279px){
html{font-size:56.25%;}
}
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body{
	font-family: Lato, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
	font-size:1.6rem;
	color: #444;
}

#wrapper{
	margin: 0 auto;
	padding:74px 0 70px;
}
.front-page #wrapper{
	padding-bottom: 0;
} 
.fixbox{
	max-width:1280px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}
.fixbox.fixbox-wide{
	max-width: 1340px;
}

main{
	display: flex;
}
main.column2{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
	padding: 0 4%;
}
main article{
	width:calc(100% - 220px);
	flex-grow: 1;
}
main article#top{
    margin-top:0;
}
main.column2 article{
    width: 72%;
    flex-grow: initial;
}
main article section{
	/*h2*/
	margin-top: 80px;
	padding-bottom: 3rem;
}
main article section section{
	/*h3*/
	margin-top: 60px;
}
main article section section section{
	/*h4*/
	margin-top: 40px;
}
main article section section section section{
	/*h5 h6*/
	margin-top: 30px;
}

/*************************** B-02. header ************************/

header {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	-webkit-transition: none;
	transition: none;
	z-index: 100;
    background-color: #fff;
    height: 74px;
}
header .header-inner {
	margin: auto;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1920px;
	width: 90%;
}
header .toggle-menu {
	display: none;
	z-index: 150;
}
header .logo {
	width: 240px;
	line-height: 1;
	z-index: 150;
}
header .logo .main-logo {
	display: block;
}
header .logo .fixed-logo {
	display: none;
}

header .search-form {
	margin-left: 13px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

header.standby {
	position: fixed;
	background-color: #fff;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
header.fixed {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
}
header.fixed .logo .main-logo {
	display: none;
}
header.fixed .logo .fixed-logo {
	display: block;
}




/*************************** B-03. nav ***************************/

header .header-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}
header nav .menu {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

header nav .menu-item a{
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	height: 100%;
	padding: 0 2.8rem;
	transition: ease .4s;
}
header nav .menu-item a:hover{
	background: #2DAC7A;
	color: #fff;
	opacity:1;
}

header nav .menu-item .nav-link {
	padding-bottom: 8px;
	font-size: 1.4rem;
	color: #000;
	position: relative;
}
header nav .menu-item .nav-link.active::after {
	opacity: 1;
}
header nav .menu-item .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}
header nav .menu-item .nav-link:hover::after {
	opacity: 1;
}
header.fixed nav .menu-item .nav-link {
	color: #343434;
}
header.fixed nav .menu-item .nav-link::after {
	content: '';
	background: -webkit-linear-gradient(left, #127dd6, #4ec9e5);
	background: linear-gradient(to right, #127dd6, #4ec9e5);
}
.header-conversion{
	margin-left: 4rem;
}
.header-conversion a{
	display:block;
	height: 100%;
	padding: 0 3rem;
	background:#E18700;
	color: #fff;
	font-size: 1.6rem;
	letter-spacing: 1px;
	border-radius: 10000px;
	padding:0.9rem 4rem;
}

/*************************** B-04. main共通パーツ ***********************/
.sp{
	display:none;
}
a {
	text-decoration: none;
	color: #237cd5;
	transition: color .3s, background .3s, opacity .3s, border .3s;
}
a:hover {
	opacity: .5;
}

.more {
	text-align: center;
	margin-top: 40px;
}
.more a {
	border: 1px solid #ddd;
	display: inline-block;
	width: 100%;
	max-width: 300px;
	font-size: 2rem;
	padding: 1.4rem 0;
	color: #fff;
	font-weight: bold;
	background:#2DAC7A;
	position: relative;
}
.more a:hover {
	background:#eee;
	color: #333;
}
.more a:after{
	content: "";
	width:16px;
	height: 16px;
	background: url(../images/img/more-triangle.png) no-repeat center;
	position: absolute;
	right: 5px;
	bottom: 5px;
}

a.pdf::after{
	content: "\f1c1";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	padding-left:6px;
}

p {
	font-size: 1.8rem;
	line-height: 2;
	margin-bottom: 1.8rem;
	overflow-wrap: anywhere;
}
p strong{
	color:#000;
	font-size:2.5rem;
	font-weight:bold;
	background:linear-gradient(transparent 80%, #2DAC7A 80%);
}
p.lead {
	font-size: 2.2rem;
}
.page-head-tit{
	font-size: 3.2rem;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 2px;
    color: #fff;
    font-weight: bold;
}
.page-head-tit span {
    display: block;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: normal;
}

mark{
	background:linear-gradient(transparent 80%, #6cf 80%);
	font-weight: bold;
}

.const{
	padding: 100px 0;
	text-align: center;
	background: #f0f0f0;
	border: 10px solid #ddd;
	font-size: 2.4rem;
}

.chat {
	margin-bottom: 20px;
    position: relative;
}
.chat:before,
.chat:after{
    clear: both;
    content: "";
    display: block;
}
.chat.left p.img {
    float: left;
    margin-right: 20px;
    width: 60px;
    height: 60px;
}
.chat.right p.img {
    float: right;
    margin-left: 20px;
    width: 60px;
    height: 60px;
}
.chat p.img img{
    width: 100%;
    height: 100%;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin: 0;
}
.chat p.img span{
    margin-top:-4px;
    font-size: 1.1rem;
    text-align: center;
    display: block;
}
.chat div.txt {
    position: relative;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    max-width: -webkit-calc(100% - 120px);
    max-width: calc(100% - 120px);
    display: inline-block;
}
.chat.left div.txt {
    float: left;
    border-color: #aaa;
    background: #f0f2f4;
}
.chat.right div.txt {
    border-color: #aaa;
    background: #c3f69d;
    float: right;
}
main .chat p{
    margin: 0 0 10px;
    line-height: 1.8;
}
.chat p:last-child {
    margin-bottom: 0;
}

.chat div.txt::before,
.chat div.txt::after {
	position: absolute;
	content: '';
	border: 10px solid transparent;
	top: 15px;
}
.chat.left div.txt::before {
    border-right: 10px solid #aaa;
    left: -20px;
}
.chat.left div.txt::after {
    border-right: 10px solid #f0f2f4;
    left: -19px;
}
.chat.right div.txt::before {
    border-left: 10px solid #aaa;
    right: -20px;
}
.chat.right div.txt::after {
    border-left: 10px solid #c3f69d;
    right: -19px;
}


dl.faq dt {
    font-size: 2.2rem;
    line-height: 1.6;
    padding: 0 3px;
    display: flex;
    margin-bottom: 3px;
}
dl.faq dt span {
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background: #f0f2f4;
    width: 80%;
}

dl.faq dt span::before {
    position: absolute;
    content: '';
    border-right: 15px solid #f0f2f4;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 30px;
    left: -15px;
    transform: translateY(-50%);
}
dl.faq dt::before {
    content: "Q";
    font-size: 3.6rem;
    background: #171d63;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}
dl.faq dd {
    margin-bottom: 5rem;
    line-height: 1.4;
    padding: 0 3px;
    display: flex;
    justify-content: flex-end;
}
dl.faq dd span {
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background: #eee;
    width: 80%;
}
dl.faq dd span::before {
    position: absolute;
    content: '';
    border-left: 15px solid #eee;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 30px;
    right: -15px;
    transform: translateY(-50%);
}
dl.faq dd::after {
    content: "A";
    font-size: 3.6rem;
    background: #999;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}
dl.faq img{
	display: block;
}

blockquote{
	padding:30px 40px 20px;
	background: #f9f9f9;
	color:#666;
	position: relative;
}
blockquote::before{
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	position: absolute;
	top:10px;
	left:10px;
}
blockquote::after{
	content: "\f10e";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	position: absolute;
	bottom:10px;
	right:10px;
}
blockquote p.cite{
	text-align: right;
}

.conversion{
	margin:25px auto;
	width: 100%;
	text-align:center;
}
.conversion a{
	background:#f3981c;
	color: #fff;
	padding:3.6rem;
	font-size:3.6rem;
	font-weight: bold;
	display:block;
	text-decoration:none;
}

.miniConversion{
	margin:25px auto;
	width: 80%;
	max-width: 500px;
	text-align:center;
}
.miniConversion a{
	background:#ddd;
	color: #333;
	padding:2.4rem;
	font-size:2.4rem;
	display:block;
	text-decoration:none;
}

a.blank::after{
	content: "\f24d";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	padding-left:6px;
}

p.annotation {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #999;
}

ul.listing {
	margin-left: 30px;
	margin-bottom: 26px;
}
ul.listing li {
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 10px;
	list-style: initial;
}

ol.listing {
	margin-left: 30px;
	margin-bottom: 26px;
}
ol.listing li {
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 10px;
}

ul.twoColumns,
ul.threeColumns,
ul.fourColumns,
ul.fiveColumns,
ul.sixColumns{
	display: flex;
	flex-wrap: wrap;
	margin:0 -1%;
	list-style: none;
}
ul.twoColumns li{
	width: 48%;
	margin:1%;
}
ul.threeColumns li{
	width: 31.3333%;
	margin:1%;
}
ul.fourColumns li{
	width: 23%;
	margin:1%;
}
ul.fiveColumns li{
	width: 18%;
	margin:1%;
}
ul.sixColumns li{
	width: 14.6666%;
	margin:1%;
}
ul.twoColumns li img,
ul.threeColumns li img,
ul.fourColumns li img,
ul.fiveColumns li img,
ul.sixColumns li img{
	width: 100%;
	height: auto;
	display: block;
}

.flex-container-two,
.flex-container-three,
.flex-container-four{
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
}
.flex-container-two > *{
	width: 48%;
	margin: 0 1% 3%;
}
.flex-container-three > *{
	width: 31.3333%;
	margin: 0 1% 3%;
}
.flex-container-four > *{
	width: 23%;
	margin: 0 1% 3%;
}
.flex-container-three p,
.flex-container-four p{
	font-size: 1.6rem;
	line-height: 2.8rem;
}


td,th{
	line-height: 1.4;
}
div.data{
	overflow: auto;
	white-space: nowrap;
}
div.data::-webkit-scrollbar{
	height: 5px;
}
div.data::-webkit-scrollbar-track{
	background: #F1F1F1;
}
div.data::-webkit-scrollbar-thumb {
	background: #BCBCBC;
}


div.data table {
	width: 100%;
	margin-bottom:10px;
}
div.data table caption{
	margin-bottom: 5px;
	font-size: 80%;
	color:#666;
}
div.data table thead th {
	padding: 15px 5px;
	background: #f0f2f4;
	font-weight: bold;
	border-bottom:1px solid #ccc;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
div.data table tbody th {
	white-space: nowrap;
}
div.data table tbody td {
	padding: 12px 5px;
	text-align: center;
}
div.data table tbody tr {
	background: #f7f7f7;
}
div.data table tbody tr:nth-child(2n+1) {
	background: #fff;
}
div.data table tr:hover {
	background: #eee;
}

.chart table{
	border-spacing: 0;
	width:auto;
	min-width: 400px;
	table-layout: fixed;
	margin-bottom:10px;
}
.chart table caption{
	margin-bottom: 5px;
}
.chart table thead th{
	background: #f0f2f4;
	border-bottom: 1px solid #ccc;
	padding:15px 5px;
	text-align: left;
}
.chart table tbody th{
	padding: 12px 5px;
	text-align: left;
}
.chart table tbody td{
	padding: 12px 5px;
}
.chart table tbody tr {
	background: #f7f7f7;
}
.chart table tbody tr:nth-child(2n+1) {
	background: #fff;
}
.chart table tbody tr:hover {
  background: #eee;
}


div.scroll table{
    word-break: break-all;
    table-layout: fixed;
    display:block;
    max-height: 80vh;
    margin-bottom: 10px;
}
div.scroll table caption{
	margin-bottom: 5px;
}
div.scroll thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    padding:15px 5px;
    background:#f0f2f4;
}
div.scroll thead th:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background: #f0f2f4;
}
div.scroll tbody tr{
	background:#f7f7f7;
}
div.scroll tbody tr:nth-child(2n+1) {
	background: #fff;
}
div.scroll tbody tr:hover {
  background: #eee;
}
div.scroll tbody th{
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    border:none;
    white-space: normal;
    min-width: 80px;
    padding:12px 5px;
    text-align: left;
}
div.scroll tbody td{
    padding:12px 5px;
    text-align: center;
}

div.scroll th,
div.scroll td {
    position: relative;
    border: none;
    z-index: 0;
    vertical-align: middle;
    line-height: 1.2;
    white-space: nowrap;
}
div.scroll th::before,
div.scroll td::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    z-index: -1;
}
div.scroll thead th::before{
    border-top: 1px solid #dedede;
    z-index: -1;
}
div.scroll thead tr th:first-child::before,
div.scroll tbody tr th:first-child::before{
    border-left: 1px solid #dedede;
    z-index: -1;
}
div.scroll tbody tr th{
	background:#f7f7f7;
}
div.scroll tbody tr:nth-child(2n+1) th {
	background: #fff;
}

dl.table{
	margin:0px 0 15px;
	list-style:none;
	overflow:auto;
}
dl.table dt{
	clear:both;
	width:200px;
	float:left;
	padding:15px 0;
	line-height: 1.6;
}
dl.table dd{
	border-bottom: 1px solid #ddd;
	padding:15px 0 15px 200px;
	line-height: 1.6;
}
dl.table dd ul{
	margin-left: 20px;
	margin-bottom: 0;
}
dl.table dd ul li{
	margin-bottom: 5px;
	font-size: 1.6rem;
}


dl.table.table-300 dt{
	width:300px;
}
dl.table.table-300 dd{
	padding:15px 0 15px 200px;
}
div.flow-ol-container ol{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: linear-gradient(to right, #f0f2f4, #999);
	counter-reset: flow-list;
}
div.flow-ol-container ol li{
	list-style: none;
	width: calc(100% / 6);
	text-align: center;
	padding: 100px 0;
	background:url(../images/icons/flow-start.svg) no-repeat right center, url(../images/icons/flow-right-end.svg) no-repeat left center;
	background-size: auto 60%;
}
div.flow-ol-container ol li:last-child{
	background: url(../images/icons/flow-right-end.svg) no-repeat left center;
	background-size: auto 60%;
}
div.flow-ol-container ol li:first-child{
	background: url(../images/icons/flow-right-start.svg) no-repeat right center;
	background-size: auto 60%;
}
div.flow-ol-container ol li::before{
	counter-increment: flow-list;
    content: counter(flow-list);
    display: block;
    font-size: 4.8rem;
    padding-bottom: 1rem;
}

.iframe-content{
    position: relative;
    width: 100%;
    padding: 56.25% 0 0 0;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.leftImg .img{
	float: left;
	margin-right: 30px;
	width: 35%;
}
div.leftImg img{
	width: 100%;
	height: auto;
}
div.rightImg .img{
	float: right;
	margin-left: 30px;
	width: 35%;
}
div.rightImg img{
	width: 100%;
	height: auto;
}

video{
	width: 100%;
}

ul.updateDate li{
	list-style:none;
	margin-bottom:10px;
}
ul.updateDate li span{
	background:#FF0;
	font-size:1rem;
	padding:1px 4px;
	border:1px solid #ccc;
	margin-right:5px;
}

.lazyload-box img {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 2s;
}
.lazyload-box img.lazyloaded {
  transform: translate(0, 0);
  opacity: 1;
}

/* ページナビゲーション */
.page_navi {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;	
}
.page_navi li {
    margin: 0 6.5px;
    width: 36px;
    height: 36px;
    border: 1px solid #d0d0d0;
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    cursor: pointer;
}
.page_navi li a {
    width: 36px;
    height: 36px;
    text-align: center;
    position: relative;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
    cursor: pointer;
}
.page_navi li.current {
    color: #fff;
    font-weight: bold;
    padding: 3px 7px;
    background: #127dd6;
    border: solid 1px #127dd6;
}
.page_navi li:hover {
	opacity: 0.8;
}
.page_navi li.page_nums span {
    color: #fff;
    padding: 3px 7px;
    background: #666;
    display: inline-block;
    border: solid 1px #333;
}

.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  width: 100%;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  border-radius: 10px;
  background: #eae2d6;
}

.balloon1-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #eae2d6;
}

.balloon1-left p {
  margin: 0;
  padding: 0;
}

.btn-line{
    text-align: center;
}
.btn-line a{
    width: 60%;
    max-width: 200px;
}

div.lightbg{
    max-width:800px;
    width: 90%;
    margin: 0 auto 4rem;
    background: #eee;
    padding: 12px 26px 16px;
    border-radius: 8px;
}
div.lightbg p{
    font-size: 1.6rem;
    margin-bottom: 0;
    text-align: left;
}
ul.parent-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.parent-list li{
    width: 49%;
    margin-bottom: 20px
}
ul.parent-list li a{
    padding: 3rem;
    background: #eee;
    display: block;
    width: 100%;
    color: #222;
    position: relative;
}
ul.parent-list li a i{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.coming-soon{
  max-width:720px ;
  margin: 0 auto;
  width: 90%; 
  margin-top: 30px; 
}


/***ステップバーデザイン3***/
.step {
 	counter-reset: count;
 	margin: 2em 0;
 	position: relative;
 	max-width: 980px;
    margin: 0 auto;
}
.step-content {
 	padding: 1.3em 0 .3em 1em;
 	margin: 0 0 1em 1em;
 	position: relative;
 	border-top: solid 2px #ddd;
}
.step-content::before {
 	content: "";
 	display: block;
 	position: absolute;
 	bottom: 0;
 	left: -10px;
 	border-style: solid;
 	border-width: 17px 8px 0 8px;
 	border-color: #ddd transparent transparent transparent;
}
.step-content::after {
 	content: "";
 	display: block;
 	height: calc(100% - 36px);
 	border-left: dashed 4px #ddd;
 	position: absolute;
 	top: 16px;
 	left: -4px;
}
.step-label {
    padding: 3px 20px 3px 15px;
    color: #0E3777;
    font-weight: bold;
    position: absolute;
    top: -18px;
    left: -20px;
    background: #fff;
    border-radius: 20px;
    z-index: 1;
}
.step-label::after {
 	counter-increment: count;
 	content: counter(count);
 	position: relative;
 	left: .3em;
}
.step-title {
 	font-weight: bold;
 	font-size: 120%;
}
.step-body {
 	margin-top: .5em;
 	padding: 0 0 1em;
}
.step > :last-child {
 	box-shadow: 5px 7px 0 -5px #ddd;
}
.step > :last-child::before, .step > :last-of-type::after {
 	display: none;
}
/***ステップバーデザイン3***/


/* アコーディオン */
.accordion-container {
	margin: 50px auto 0;
	width: 100%;
	padding-bottom: 100px;
}

.accordion-list:not(:first-child) {
	margin-top: 10px;
}
.accordion-list{
	position:relative;
}
.accordion-list:before {
    content: 'Q';
    color: #F39A00;
    font-size: 3.6rem;
    font-weight: bold;
    position: absolute;
    top: -2px;
    left: 1rem;
    z-index: 2;
}


.accordion-title {
	background: #fff;
	border: 2px solid #fff;
	border-radius:8px;
	font-size: 16px;
	padding: 20px 44px;
	cursor: pointer;
	position: relative;
}

.accordion-title:before {
	position: absolute;
	content: '';
	top: 50%;
	right: 25px;
	height: 2px;
	width: 15px;
	background: #333;
	transform: rotate(90deg);
	transition: all .3s ease-in-out;
}
.accordion-title:after {
	position: absolute;
	content: '';
	top: 50%;
	right: 25px;
	height: 2px;
	width: 15px;
	background: #333;
	transition: all .3s ease-in-out;
}

.accordion-title.open:before {
  	transform: rotate(180deg);
}
.accordion-title.open:after {
  	opacity: 0;
}

.accordion-text {
	background: #fff;
	display: none;
	padding: 20px 44px;
	margin-top:-8px;
	position: relative;
}
.accordion-text:before {
    content: 'A';
    color: #0D3780;
    font-size: 3.6rem;
    font-weight: bold;
    position: absolute;
    top: -2px;
    left: 1rem;
    z-index: 2;
}
.accordion {
margin: 3em auto;
max-width: 60vw;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
padding: 1em;
display: block;
color: #333;
font-weight: bold;
font-size:2.2rem;
box-shadow: 0px 4px 8px 4px rgba(58, 58, 58, 0.12);
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: #999;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
margin: 0;
padding: 0.5em 1em 1em;
font-size: 2rem;
line-height: 1.5;
}
.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}

hr.anchor{
	border: 0;
	margin: 0;
}

/*************************** B-05. h1,h2見出し *******************/
h1 {
	font-size: 5.2rem;
	line-height: 1.6;
	letter-spacing: 2px;
	color: #444;
}
.page-head h1{
	color:#fff;
}

h1 span{
	display: block;
	font-size: 2.2rem;
    font-style: italic;
    font-weight: normal;
}
.front-page h1{
	font-size: 4.0rem;
	line-height: 5.4rem;
	margin-bottom: 2.0rem;
	color: #444;
	text-align: center;
}

.front-page h2 {
    color: #444;
    letter-spacing: 3px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 4rem;
    padding-top: 4rem;
    font-size: 5rem;
    line-height: 1;
    font-weight: normal;
    position: relative;
}
h2{
	color: #444;
    letter-spacing: 3px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 4rem;
    padding-top: 4rem;
    font-size: 4rem;
    line-height: 1;
    font-weight: normal;
    position: relative;
}
h2.center{
	text-align: center;
}

.front-page h2 > span{
	display:block;
	font-size:1.6rem;
	margin-bottom:1rem;
	color: #2DAC7A;
}

h3 {
	font-size: 2.2rem;
	margin-bottom: 2.6rem;
	font-weight: bold;
	margin-bottom: 2.0rem;
}
h4 {
	font-size: 2.2rem;
	margin-bottom: 2.2rem;
	padding-left: 5.6rem;
	position: relative;
	font-weight: bold;
	border-left: 0.8rem solid #aaa;
    padding-left: 0.8rem;
    margin-bottom: 1.0rem;
}
h5 {
	font-size: 2.0rem;
	margin-bottom: 2.0rem;
	border-left: 6px solid #bbb;
    padding-left: 6px;
    margin-bottom: 10px;
}
h6 {
	font-size: 1.8rem;
	margin-bottom: 1.8rem;
	border-left: 0.4rem solid #ccc;
    padding-left: 0.4rem;
    margin-bottom: 1.0rem;
}
/*************************** B-06. breadcrumb ********************/
div#breadcrumb {
	margin:10px 0 30px 0;
	font-size: 1.4rem;
}
div#breadcrumb  ul li{
	display:inline;
	line-height:20px;
	color:#999;
}
div#breadcrumb  ul li a{
	color:#999;
}
/***************************B-08. aside ********************/

.sidebar {
    width: 21%;
    margin-top: 3.8rem;
}

.sidebar .tit {
    background: #0d3780;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2.2rem;
}
ul.side-list li{
	border-bottom: solid 1px #ccc;
}
ul.side-list li a {
    -moz-transition: ease .4s;
    -o-transition: ease .4s;
    -webkit-transition: ease .4s;
    transition: ease .4s;
    position: relative;
    display: block;
    text-decoration: none;
    color: #333;
    padding: 14px 40px 14px 10px;
}
ul.side-list li a:hover{
	color: #3469c4;
	opacity:1;
}

/*************************** B-09. footer ********************/
footer {
	padding: 90px 0 50px;
	color: #000;
	background-color: #2DAC7A;
}
.footer-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width:98%;
	max-width: 1022px;
	margin:0 auto;
}
.footer-container-right{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo{
	width:242px;
}
.footer-logo img{
	width: 100%;
}
.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:4rem;
}
.footer-nav ul li {
    color: #fff;
    font-size: 1.4rem;
    color: #fff;
}
.footer-nav ul li a{
	color: #fff;
}
.copyright-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width:98%;
	max-width: 1022px;
	margin:6rem auto 0;
}
.copyright-box .footer-privacy a{
	color: #fff;
	font-size: 1.2rem;
}
.copyright {
	text-align: center;
	font-size: 1.4rem;
	color: #fff;
}
/*************************** B-10. toppage ***********************/
.mv{
	position:relative;
	background-color:#2DAC7A;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.mv:after{
	content: "";
	width:712px;
	height: 417px;
	background: url(/wp-content/themes/proximo/assets/images/img/mv-bg-left.png) no-repeat;
	position: absolute;
	left: 0;
	bottom: 2rem;
}
.mv:before{
	content: "";
	width:248px;
	height: 292px;
	background: url(/wp-content/themes/proximo/assets/images/img/mv-bg-right.png) no-repeat;
	position: absolute;
	right: 0;
	top: 0;
}
.mv-img{
	position: absolute;
	top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.mv-box{
	display: flex;
	align-items: center;
	width: 98%;
	max-width:1022px;
	margin: 0 auto;
	position: relative;
}
.mv-box .mv-copy{
	font-size: 5rem;
	font-weight: 600;
	max-width:728px;
	z-index: 2;
}
.top-01{
	padding-top:10rem;
	padding-bottom: 8rem;
	position: relative;
}
.top-01::after{
	content:"";
	background:url(../images/img/top-01-bg.png) no-repeat center;
	width: 507px;
	height: 325px;
	position: absolute;
	right: 0;
	bottom: 0;
}
p.top-01-copy{
	font-size: 3.2rem;
	color: #2DAC7A;
	text-align: center;
	font-weight: bold;
}
.top-01-text{
	max-width: 720px;
	width: 100%;
	margin: 0 auto;
	font-size: 1.6rem;
}
.top-01-text p{
	font-size: 1.6rem;
}
.top-02{
	background-color: #2DAC7A;
	position: relative;
	padding-top: 8rem;
	padding-bottom: 20rem;
}
.top-02-container{
	position: relative;
}
.top-02-textbox {
    width: 44%;
    background: #fff;
    padding: 3rem 7rem;
    z-index: 2;
    box-shadow: 2px 2px  4px #ccc;
    position: relative;
    transform: translateY(7rem);
}
.top-02-img{
	position: absolute;
	right: 0;
	top: 0;
}
.top-03{
	position: relative;
	padding-top: 3rem;
	padding-bottom: 16rem;
}
.top-03::after{
	content:"";
	background:url(../images/img/top-03-bg.png) no-repeat center;
	width: 507px;
	height: 325px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.top-03-textbox {
    width: 44%;
    background: #fff;
    padding: 7rem 7rem 5rem;
    z-index: 2;
    margin-left:auto;
    margin-right: 0;
    box-shadow: 2px 2px  4px #ccc;
    position: relative;
    transform: translateY(7rem);
}
.top-03-textbox p.top-03-textbox-copy{
	font-size: 2.8rem;
	color:#2DAC7A;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 4rem;
}
.top-03-container{
	position: relative;
	margin-bottom: 22rem;
}
.top-03-textbox p{
	font-size: 1.6rem;
}
.top-03-img{
	position: absolute;
	left: 0;
	top: 0;
}
.top-03-list{
	width:100%;
	max-width: 1022px;
	margin:0 auto!important;
	position: relative;
	z-index: 2;
}
.top-03-list li{
	box-shadow: 2px 2px  4px #ccc;
	border-radius: 8px;
	overflow: hidden;
}
.top-03-list li span{
	padding:2rem;
	display: block;
	font-weight: bold;
	font-size:1.8rem;
	color:#444;
	background:#fff;
	position: relative;
}
.top-03-list li span:after{
	content: "";
	width:30px;
	height: 28px;
	background: url(../images/img/top-03-triangle.png) no-repeat center;
	position: absolute;
	right: 0;
	bottom: 0;
}
/*************************** B-11. form  ***********************/
.inquiry-box {
    text-align: center;
}
.inquiry-box .form-inner {
    margin: 5% auto;
    width: 75%;
}
.inquiry-box .form-inner .contact-form {
    margin: auto;
    background: #F7F7F7;
    padding: 5%;
}
.inquiry-box .form-inner .contact-form .input-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
}
.inquiry-box .form-inner .contact-form .input-box:not(:first-child) {
    margin-top: 6.7%;
}
.inquiry-box .form-inner .contact-form .input-box .label-area {
    padding: 6px 0;
    width: 25%;
    font-size: 1.6rem;
    position: relative;
}

.inquiry-box .form-inner .contact-form .input-box .label-area span.required,
.inquiry-box .form-inner .contact-form .input-box .label-area span.will{
    margin-right:15px;
    background:#2DAC7A;
    color:#fff;
    padding:8px 12px;
    text-decoration: none;
    border-bottom:none;
    font-size: 1.4rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.inquiry-box .form-inner .contact-form .input-box .label-area span.will{
    background:#999;
    color:#fff;
}

.inquiry-box .form-inner .contact-form .input-box .input-area {
    width: 75%;
    color: #d0d0d0;
    position: relative;
}
.inquiry-box .form-inner .contact-form .input-box .input-area input {
    padding: 9px 12px;
    width: 100%;
    font-size: 1.8rem;
    color: #d0d0d0;
    border: 1px solid #d0d0d0;
}
.inquiry-box .form-inner .contact-form .input-box .input-area select{
	padding: 9px 12px;
    width: 100%;
    font-size: 1.8rem;
    color: #000;
    border: 1px solid #d0d0d0;
}
.inquiry-box .form-inner .contact-form .input-box .input-area textarea {
    resize: none;
    padding: 9px 12px;
    width: 100%;
    height: 243px;
    font-size: 1.8rem;
    color: #d0d0d0;
    border: 1px solid #d0d0d0;
}
.inquiry-box .form-inner .contact-form .input-box .input-area input:focus, .inquiry-box .form-inner .contact-form .input-box .input-area textarea:focus {
    outline: none;
    color: #343434;
    border: 1px solid #127dd6;
    box-shadow: 0 0 1px 0 rgba(18, 125, 214, 0.45);
}
.inquiry-box .form-inner .contact-form .input-box .input-area .input-error {
    display: none;
    position: absolute;
    bottom: -30px;
    left: 0;
    color: #c00;
}
.inquiry-box .form-inner .contact-form .input-box .input-area .input-error.wpcf7-not-valid-tip {
    display: block;
}
.inquiry-box .form-inner .contact-form .action-box {
    margin-top: 7%;
}
.inquiry-box .form-inner .note {
    margin-top: 4%;
}
.inquiry-box .form-inner .note small {
    font-size: 1.4rem;
    line-height: 2.4;
    letter-spacing: 0.2em;
}

input[type="submit"] {
    transition: all 0.3s ease 0.2s;
    border: none;
    background: #E18700;
    color: #fff;
    -webkit-transition: all 0.3s ease 0.2s;
    z-index: 1;
    padding: 17px 0;
    width: 260px;
    font-size: 1.6rem;
    font-family: 'Noto Sans Japanese', sans-serif;
    letter-spacing: 0.18em;
    overflow: hidden;
    position: relative;
}
input[type="submit"]:hover {
    opacity: 0.7;
    transition: all 0.3s ease 0.2s;
    color: #fff;
    border: none;
}
input[type="submit"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-linear-gradient(left, #127dd6, #4ec9e5);
    background: linear-gradient(to right, #127dd6, #4ec9e5);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
}
.wpcf7-spinner{
    display: none;
}
/*************************** B-12. レギュレーション  ***********************/
/*************************** B-13. 検索結果  ***********************/
/*************************** B-14. 内部ページ  ***********************/
.page-head{
	background: url(/wp-content/themes/proximo/assets/images/demo2.jpg) top center no-repeat;
    background-size: cover;
    padding: 50px 0 50px;
    overflow: hidden;
}

.page-contents{
	margin-top: 6rem;
}
.bg-logo{
	position: relative;
}
.bg-logo::after{
	content:"";
	background:url(../images/img/top-01-bg.png) no-repeat center;
	width: 507px;
	height: 325px;
	position: absolute;
	right: 0;
}

/*************************** B-15. single（投稿）  ***********************/
.column2 .single-header {
    border-left: solid 4px #0d3780;
    padding: 15px 0 15px 28px;
    margin-bottom: 20px;
}
.column2 .single-header h1 {
    font-weight: bold;
    color: #0d3780;
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 5px;
    text-align:left;
}
.column2 .single-header .info{
	font-size: 1.5rem;
	margin-bottom:0;
}
.column2 .single-header .info time {
    font-weight: bold;
}
.related_post h2{
    background: #0d3780;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 1.6rem;
    line-height:1.6;
    font-weight:normal;
}
ul.single_pager {
    font-size: 14px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin: 80px 0 40px;
}
ul.single_pager li {
    width: 50%;
    position: relative;
}
ul.single_pager li.prev{
	border-right: solid 1px #0d3780;
}
ul.single_pager a{
	border-top: solid 1px #0d3780;
    border-bottom: solid 1px #0d3780;
    display: block;
    overflow: hidden;
    color: #333;
    text-decoration: none;
    padding: 10px;
    line-height: 1.6;
    font-weight: bold;
    -moz-transition: ease .2s;
    -o-transition: ease .2s;
    -webkit-transition: ease .2s;
    transition: ease .2s;
}
ul.single_pager figure{
	width: 80px;
    line-height: 1;
    font-size: 0;
}
ul.single_pager figure img{
	aspect-ratio: 5/4;

}
ul.single_pager li.prev figure{
	float: left;
    margin-right: 10px;
}
ul.single_pager li.next figure{
	float: right;
    margin-left: 10px;
}
ul.single_pager li.prev a{
	padding-left: 0;
}
ul.single_pager li.next a{
	padding-right: 0;
}

ul.single_pager .prev_name,
ul.single_pager .next_name{
	position: absolute;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    background: #0d3780;
    padding: 4px 8px;
    height: 28px;
    top: -28px;
}
ul.single_pager .next_name{
	right: 0;
}
/*************************** B-16. archive（投稿一覧）  ***********************/
main.archive .fixbox{
	padding: 0 4%;
}

/*ページャー*/
.pagination{
   margin:40px 0 0;
}
.nav-links{
   display:flex;
   justify-content:center;
   flex-wrap: wrap;
}
.pagination .page-numbers{
   display:inline-block;
   margin-right:20px;
   padding:20px 25px;
   color:#333;
   border-radius:3px;
   box-shadow:0 3px 3px #999;
   background:#fff;
}
.pagination .current{
   padding:20px 25px;
   background:#0D3780;
   color:#fff;
}
.pagination .prev,
.pagination .next {
    background: transparent;
    box-shadow: none;
    padding: 0px 25px;
    font-size: 4rem;
    height: 30px;
    color: #0D3780;
}
.pagination .dots{
   background:transparent;
   box-shadow:none;
}

ul.post-box{
	display: flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
ul.post-box li{
    width: 31.5%;
    margin-bottom: 20px;
}
ul.post-box li > a {
    -moz-transition: ease .3s;
    -o-transition: ease .3s;
    -webkit-transition: ease .3s;
    transition: ease .3s;
    display: block;
    color: #333;
    text-decoration: none;
    background: #f8f8f8;
    height: 100%;
}
ul.post-box li > a:hover{
	box-shadow: 3px 3px 8px 2px rgba(0,0,0,0.2);
	opacity:1;
}
ul.post-box li > a:hover figure:before{
    opacity: 1;
    bottom: 0;
}
ul.post-box li figure{
	font-size: 0;
    overflow: hidden;
    line-height: 1;
    position: relative;
}
ul.post-box li figure img{
	aspect-ratio: 4.8/3;
}
ul.post-box li figure:before{
	font-weight: bold;
    -moz-transition: ease .3s;
    -o-transition: ease .3s;
    -webkit-transition: ease .3s;
    transition: ease .3s;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    opacity: 0;
    bottom: -100%;
    text-align: center;
    content: 'more»';
    color: #fff;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    padding-top: 32%;
    letter-spacing: 0.2em;
}
.post-box .inner {
    padding: 15px 15px 20px;
}

.post_title{
	font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.post-box time{
	font-size: 1.2rem;
	color: #5a5a5a;
}
.post_excerpt p{
	font-size: 1.4rem;
	color: #5a5a5a;
	margin-bottom: 0;
}
.post-box:before,
.post-box:after {
    content: '';
    display: block;
    width: 31.5%;
}
.post-box:before {
    order: 1;
}

/*B-16-1.制作事例*/
.works-tag a{
	margin-right: 1.8rem;
}

/*エリア*/
.area-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}
.area-table table th {
	padding:20px 0;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
    border-bottom: 1px solid #ddd;
}
.area-table table td{
	padding:20px 0;
	border-bottom: 1px solid #ddd;
}
.area-table table td a {
    margin-right: 0.5em;
    display: inline-block;
}
.city-list{
	display: flex;
	flex-wrap: wrap;
	gap:6px;
}
.city-list li{
	width:max-content;
	padding:8px 8px;
	font-size:14px;
	background:#f5f5f5;
}