@charset "UTF-8";
/* CSS Document */

:root {
	--default: #222;
	--blue1: #4e4e88;
	--blue2: #1c86b4;
	--lightblue1: #eceef5;
	--lightgray: #ededed;
	--gradient1: linear-gradient(120deg,rgba(78, 78, 136, 1) 0%, rgba(108, 124, 174, 1) 100%);
	--ja1: "Noto Sans JP","Hiragino Sans", sans-serif;
	--orange: #f5c045;
}


ul,ol {
	margin-left: 0;
	padding: 0;
}
ul li{
	list-style:none;
}
img {
    outline: none;
    border: none;
    max-width: 100%;
    height: auto;
}
figure img {
	width: auto;
    max-width: 100%;
    height: auto;
}
.grecaptcha-badge { visibility: hidden; }

/********************************************** 
	Typography
********************************************* */
html {
  	width: 100%;
    height: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    font-size: 10px;
    scroll-behavior: smooth;
}
body {
	position: relative;
	color: #222;
	font-size: 1.6rem;
	font-weight: 500;
	font-style: normal;
    font-family: YakuHanJP, "Noto Sans JP",'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Verdana, sans-serif;
	line-height: 2;
	letter-spacing: .05em;
	background: #fff;
	overflow-x: hidden;
}
h2,h3 {
	margin-top: 0;
	margin-bottom: 1em;
	line-height: 1.5;
	
}
h2.en {
	font-size: 3.6rem;
	margin-bottom: 1em;
}
h2.en small {
	font-size: 1.7rem;
	display: block;
	font-weight: normal;
}
h2.box {
	font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    padding: 2rem 1em;
    border-left: 5px solid var(--blue1);
    margin-bottom: 4rem;
    background: #f7f7f7;
}
h2.line {
	position: relative;
	padding: 0 2rem;
	text-align: center;
	line-height: 1.35;
	font-size: 3rem;
}

h2.line:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background: rgba(30, 21, 16, .8);
}
h2.line small {
	display: block;
	font-weight: normal;
	font-size: 1.6rem;
}
h2.line span {
	display: inline-block;
	position: relative;
	padding: 0 2em;
	background: #f8f6f4
}
h2.border {
	position: relative;
	font-size: 3.2rem;
	line-height: 1.35;
	margin-bottom: 1.5em;
}
h2.border::before {
	content: url(images/border.svg);
	position: absolute;
	bottom: 5px;
	left: calc(50% - 120px);
	width: 240px;
	height: 10px;
}
h2.bar {
	text-align: center;
	position: relative;
    line-height: 1.4;
    color: #4e4e88;
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: 0.05em;
    padding-bottom: 2rem;
}
h2.bar::before {
	content: "";
	display: block;
	position: absolute;
    bottom: 0;
    left: calc(50% - 20px);
    width: 40px;
    height: 3px;
    background-color: #4e4e88;
}
h2.ja-en {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.4;
	padding-left: 1em;
	border-left: 5px solid #4e4e88;
	margin-bottom: 5rem;
}
h2.ja-en small {
	display: block;
	font-size: 1.8rem;
	color: #aaa;
}
h2.fukidashi {
    position: relative;
    background-color: #fff;
    border: solid 2px #4e4e88;
    padding: 16px;
    min-width: 240px;
    max-width: 100%;
    text-align: center;
    border-radius: 24px;
    padding: .75em;
    color: #4e4e88;
    margin-bottom: 4rem;
    font-weight: bold;
    font-size: 2.7rem;
}
h2.fukidashi:before, h2.fukidashi:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
h2.fukidashi:before {
    border: solid 16px transparent;
    border-top: solid 16px #4e4e88;
}
h2.fukidashi:after {
    border: solid 18px transparent;
    border-top: solid 18px #fff;
    margin-top: -5px;
}
h3 {
	font-size: 2.4rem;
	font-weight: 600;
}
h3.border {
	border-bottom: 3px solid #4e4e88;
	padding-bottom: 5px;
}
h3.border-center {
	display: flex;
    align-items: center;
}
h3.border-center::before, h3.border-center::after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: var(--blue1);
}
h3.border-center span {
	display: inline-block;
	padding: 0 .75em;
}
h4.color {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: .5em;
}
h4.fukidashi {
	display: inline-block;
    position: relative;
    padding: 1rem 2em;
    background: #f0f3f8;
    border-radius: 300px;
    color: #4e4e88;
    line-height: 1.65;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1em;
}
h4.fukidashi::after {
    content: "";
    position: absolute;
    margin: 0;
    bottom: -15px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-top: 30px solid #f0f3f8;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    transform: rotate(-30deg);
    z-index: -1;
}
h4.bg {
	padding: 1rem 2em;
    background: #f0f3f8;
    border-radius: 300px;
    color: #4e4e88;
    line-height: 1.65;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1em;
    margin-top: 1.65em;}
h4.bg-pink {
    padding: 1rem 2em;
    background: #f0f3f8;
    border-radius: 300px;
    color: #4e4e88;
    line-height: 1.65;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1em;
}

.ja {
	font-family: 'Noto Sans JP', sans-serif;
}
.en {
	font-family: 'Roboto', sans-serif;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
}
.mincho {
	font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
span.material-icons {
    font-size: inherit;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    vertical-align: middle;
}
/********************************************** 
	Layout
********************************************* */
.container {
	--bs-gutter-x: 3rem;
}
.container.container-s {
	max-width: 1100px;
}
/********************************************** 
	Link
********************************************* */
a,a:visited {
	text-decoration: none;
    outline: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: all ease-in-out .3s;
	color: #4e4e88;
	
}
a:hover {
	text-decoration: none;
	color: #4e4e88;
}
a.link-txt {
	display: inline-block;
	position: relative;
	padding-right: 3.2rem;
	color: inherit;
	font-size: 1.4rem;
}
a.link-txt.en-b {
	font-size: 1.4rem;
}
a.link-txt::before {
	content: "";
	display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #555;
    width: 100%;
    height: 1px;
    transform-origin: right top;
    transition: transform .25s ease-out;
}
a.link-txt:hover::before {
	transform: scale(0,1);
}
a.link-txt span.arrow {
	content: "";
    display: inline-block;
    position: absolute;
    width: 21px;
    height: 7px;
    background: url(images/arrow_black.svg) center center/cover no-repeat;
    z-index: 121;
    right: 0;
    top: .75em;
    transition: transform .25s ease-out;
}
a.link-txt:hover {
	color: #666;
}
a.link-txt:hover span.arrow {
	transform: translateX(6px);
}
a.arrow-link {
	display: inline-block;
	color: #555;
}
a.arrow-link i {
	margin-right: .5em;
	color: #4e4e88;
	transition: all ease-in-out .25s;
}
a.arrow-link:hover {
	color: #4e4e88;
}
a.arrow-link:hover i {
	transform: translateX(5px);
}

/********************************************** 
	Misc
********************************************* */
.w-100 {
	width: 100%;
}
.mb-0 {
	margin-bottom: 0;
}
.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30,.mb20-30 {
	margin-bottom: 30px;
}
.mb-40,.mb20-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-60,.mb30-60 {
	margin-bottom: 60px;
}
.mb30-80 {
	margin-bottom: 80px;
}
.ptb40,.ptb20-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.ptb50,.ptb30-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.ptb30-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.ptb30-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.pt40 {
	padding-top: 40px;
}
.ptb30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.ptb50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.ptb20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.pt30 {
	padding-top: 30px;
}
.pb0-20 {
	padding-bottom: 20px;
}
.f-left{
	float:left;
}
.f-right{
	float:right;
}
.box-link:hover {
	cursor: pointer;
}
.nowrap {
	white-space: nowrap;
}
.bg-gray {
	background: #ededed;
}
.bg-lightblue {
	background: var(--lightblue1)
}
.bg-pink {
	background: #f0f3f8;
}
.bg-gray-box {
	background: #ededed;
	padding: 1em 1.5em;
	border-radius: 7px;
}
.color {
	color: #4e4e88;
}
.color-blue {
	color: #1c86b4;
}
.color-red {
	color: #fb5357;
}
.color-white {
	color: #fff;
}
.text-right {
	text-align: right;
}
.text-center,.text-left-center {
	text-align: center;
}
.kakko {
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 60px;
    padding: 3rem 6rem;
}
.kakko::before, .kakko::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
}
.kakko::before {
    border-left: solid 1px #222;
    border-top: solid 1px #222;
    top: 0;
    left: 0;
}
.kakko::after {
    border-right: solid 1px #222;
    border-bottom: solid 1px #222;
    bottom: 0;
    right: 0;
}
ol.numbering {
	margin-left: 0;
	padding: 0
}
ol.numbering li {
	list-style: none;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.bg-yellow {
	background: linear-gradient(transparent 0%,#f9ff52 0%);
	font-weight: 600;
}
/*-----------------------------------------------------------------------------
	ボタン
-----------------------------------------------------------------------------*/
a.btn {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	width: 270px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #4e4e88;
	position: relative;
	z-index: 1;
	border-radius: 5px;
	overflow: hidden;
}
a.btn.btn-w100 {
	width: 100%;
}
a.btn:hover {
/* 	color: #22201f; */
}
a.btn:before {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: #818285;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
a.btn:hover:before {
	-webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
a.btn .bar {
	display: block;
	width: 2.4rem;
	height: 1px;
	background-color: transparent;
	position: absolute;
	top: 50%;
	right: -12px;
	overflow: hidden;
	z-index: 2
}
a.btn .bar:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0%;
    bottom: 0;
    z-index: 0;
    content: '';
    background: #fff;
    width: 100%;
    height: 2px;
}
a.btn:hover .bar:before {
	background: #22201f;
	-webkit-animation: link 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    animation: link 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}
a.btn.btn-small {
	width: 200px;
	height: 46px;
	line-height: 46px;
	font-size: 1.3rem;
}
a.btn::after {
	content: '';
	display: block;
	width: 70%;
	height: 100%;
	background: rgba(255,255,255,.1);
	position: absolute;
	left: -20%;
	top: 0;
	transform: skewX(-45deg);
}

/*-----------------------------------------------------------------------------
	フッター
-----------------------------------------------------------------------------*/
/* =Footer-contact
-----------------------------------------------------------------------------*/
#footer-contact {
	position: relative;
	overflow: hidden;
}
#footer-contact:before {
	content: "";
	display: block;
	width: 100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/visual_contact.jpg) center center/cover no-repeat;
    z-index: -1;
    -ms-filter: blur(6px);
	filter: blur(1rem);
	opacity: .4;
}
#footer-contact .footer-contact-wrap {
	background-color: rgba(255,255,255,.8);
	box-shadow: 11px 13px 27px 6px rgba(0, 0, 0, 0.08);
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.footer-contact-inner {
	padding: 3rem;
	height: 100%;
	text-align: center;
}
.footer-contact-inner.border-r {
	border-right: 1px solid #ccc;
}
.footer-contact-inner h4 {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 1em;
}
.footer-contact-inner .tel-num,.footer-contact-inner .tel-num a {
	font-size: 3.6rem;
	line-height: 1.5;
	font-weight: bold;
	letter-spacing: 0;
	color: #4e4e88;
}
.footer-contact-inner .tel-num,.footer-contact-inner .tel-num a i {
	font-size: 3rem;
}
.footer-contact-inner a.btn.btn-w100 {
	height: 46px;
    line-height: 46px;
}
/* =Footer
-----------------------------------------------------------------------------*/
#footer {
	border-top: 4px solid #4e4e88;
}
#footer > .container {
	padding: 5rem 0 4rem;
}
.footer-top {
	text-align: center;
}
.footer-logo {
	margin-bottom: 2rem;
}
.footer-top ul {
	margin-top: 4rem;
}
.footer-top ul li {
	display: inline-block;
}
.footer-top ul li a {
	display: block;
	padding: 0 1em;
	color: inherit;
	font-size: 1.4rem;
	font-weight: bold;
}
.footer-top ul li a i {
	padding-right: .5em;
	color: #4e4e88;
}
.footer-top ul li a:hover {
	color: #4e4e88;
}


.copyright {
	color: #fff;
	padding: 1em;
	background: #4e4e88;
	font-size: 1.3rem;
}

/*-----------------------------------------------------------------------------
	シングルページ共通
-----------------------------------------------------------------------------*/
.ez-toc-section {
	padding-top: 70px;
    margin-top: -70px;
}
.single-post-area h2 {
	font-size: 2.4rem;
    font-weight: bold;
	padding: .5em .5em .5em 1em;
    background: #f7f7f7;
    border-left: 5px solid #4e4e88;
    margin: 0 0 30px;
    margin-top: 1.65em;
}
.single-post-area h3 {
	border-bottom: 3px solid #4e4e88;
    padding-bottom: 5px;
    margin-top: 1.65em;
}
.single-post-area h4 {
	padding: 1rem 2em;
    background: #f0f3f8;
    border-radius: 300px;
    color: #4e4e88;
    line-height: 1.65;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1em;
    margin-top: 1.65em;
}
.single-post-area p {
	margin-bottom: 1em;
}
.single-title-box .date {
	color: #c3a264;
}
.single-post-area,.single-post-area p {
	line-height: 2em;
}
.single-post-area table {
	width: 100% !important;
}
.single-post-area table td,.single-post-area table th {
	padding: .75em;
}
.single-post-area .post-date {
	background: #f7f7f7;
	padding: 7px 0 4px 1.5em;
	border-radius: 4px;
	margin-bottom: 1.5em;
}
.pageNav {
	padding: 3rem 0;
	border-top: 1px solid #4e4e88;
	border-bottom: 1px solid #4e4e88;
}
.pageNav a {
	display: inline-block;
	color: #fff;
	background-color: #4e4e88;
	padding: 4px 1.25em;
	font-size: 13px;font-size: 1.2rem;
	border-radius: 50px;
	font-weight: bold;
}
.pageNav a .material-icons {
	font-size: 2.4rem;
	margin-top: -2px;
}
.pageNav a:hover {
	background-color: #818285;
}
.pageNav span.prev {
	float: right;
}
.pageNav span.prev,.pageNav span.next {
	display: inline-block;
}

.single-post-area a:link,.single-post-area a:visited {
	color: #999;
	text-decoration: underline;
}
.single-post-area a:hover {
	text-decoration: none;
}
.single-post-area table {
	max-width: 100% !important;
}
.single-post-area table td,.single-post-area table th {
	border: 1px solid #eee;
}
.single-post-area ul li {
	list-style: disc;
	list-style-position: inside;
}
.single-post-area ol li {
	list-style: decimal;
	list-style-position: inside;
}
.single-post-area blockquote {
	border-left: 4px solid #f7f7f7;
	margin-left: 0;
	padding-left: 2em;
}
.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}
.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

/********************************************** 
	Footer
********************************************* */
a.topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    background: #4e4e88;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    padding-top: 0;
    box-sizing: border-box;
    transition: step-start;
    z-index: 99999;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
a.topBtn i {
	line-height: 60px;
}
a.topBtn:hover {
	background-color: #818285;
}


/********************************************** 
	下層ページメインビジュアル
********************************************* */
.visual {
	width: 100%;
    height: 360px;
    background: url(images/visual/main_visual.jpg) center center/cover no-repeat;
    position: relative;
    color: #fff;
}
.visual:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(136,37,73,.4);
}
.visual h2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    padding-top: 2rem;
    text-align: center;
    z-index: 2;
    font-size: 4.2rem;
    font-weight: bold;
    letter-spacing: .075em;
}


/********************************************** 
	Breadcrumb
********************************************* */	
.breadcrumb {
	background: #eee;
	font-size: 1.3rem;
	overflow: hidden;
	color: #777;
}
.breadcrumb > .container {
	width: 100%;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
	padding: 1rem 15px;
}
.breadcrumb a {
	color: #555;
}
.breadcrumb span {
	padding: 0 .2rem;
}
.breadcrumb span.current-item,.breadcrumb a:hover,.breadcrumb a:hover span {
	color: #4e4e88;
}
/********************************************** 
	Tables
********************************************* */	
table.table-simple th,table.table-simple td {
	vertical-align: top;
}
table.table-simple th {
	font-weight: normal;
	padding-right: 1.5em;
}
table.table-color {
	width: 100%;
}
table.table-color th {
	color: #fff;
	border: 3px solid #fff;
    padding: 1em 2em;
    background: #4e4e88;
    white-space: nowrap;
}
table.table-color.wrap th {
	white-space: normal;
}
table.v-top td {
	vertical-align: top;
}
table.table-color td {
	border: 3px solid #fff;
	padding: 1em 2em;
	background: #f0f3f8;
}
.w-20 {
	width: 20%;
}
.w-30 {
	width: 30%;
}
.w-40 {
	width: 40%;
}
table.table {
	border-bottom: 1px solid #ddd;
	width: 100%;
}
table.table th {
	padding: 1em;
    border-top: 1px solid #ddd;
    vertical-align: top;
}
table.table td {
    padding: 1em;
    border-top: 1px solid #ddd;
    vertical-align: top;
}


/********************************************** 
	お知らせ
********************************************* */
.single-title-box {
	border-left: 5px solid #4e4e88;
	padding-left: 1.5em;
}
.single-title-box h2 {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.65;
	margin-bottom: 0;
}
.single-title-box p.date {
	color: #aaa;
	font-weight: bold; 
}
/********************************************** 
	執筆者コンテンツ
********************************************* */
.writer-top {
	background-color: #f7f7f7;
	padding: .5em 1em;
	border-radius: 8px;
	width: 100%;
}
.writer-top-inner {
	display: table;
}
.writer-top-inner p {
	line-height: 1.75 !important;
}
.writer-top-inner > div {
	display: table-cell;
	vertical-align: middle;
}
.writer-top-img img {
	border-radius: 50%;
	width: 80px;
	display: inline-block;
	margin-right: 20px;
}
.writer-top p b {
	font-size: 1.1em;
}

.writer-bottom {
	background-color: #f7f7f7;
	padding: 1.5em;
	border-radius: 8px;
	width: 100%;
}
.writer-bottom-inner-1 {
	display: table;
	width: 100%;
}
.writer-bottom-inner-1 .col {
	display: table-cell;
	vertical-align: middle;
}
.writer-bottom-inner-1 img {
	width: 120px;
	border-radius: 50%;
	margin-right: 30px;
}
.writer-bottom-inner-1 .col p {
	margin-bottom: 0;
	white-space: nowrap;
	line-height: 1.75 !important;
}
.writer-bottom-inner-1 .col:first-child {
	width: 150px;
}
.writer-bottom-inner-1 .col:last-child {
	text-align: right;
	vertical-align: bottom;
}
.writer-head span {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	background: #f5c045;
	border-radius: 100px;
	padding: 0 1em;
	margin-bottom: 5px;
}
.writer-name {
	font-size: 1.2em;
}
.writer-name span {
	font-size: 1.35em;
}
.writer-bottom-inner-1 a {
	font-weight: bold;
}
.writer-bottom-inner-1 a:hover {
	color: #f5c045;
}
.visible-xs-block {
	display: none;
}
.row-0 {
	display: flex;
	flex-wrap: wrap;
}
.row-0 .col-xs-6 {
	width: 50%;
}
.row-0 .col-xs-6 img {
	width: 100%;
}
.sp {
	display: none;
}
.pc {
	display: block;
}

.writer-top .row-0 {
	margin-top: 1rem;
}


/********************************************** 
	その他のQ&A
********************************************* */
.term-area .row-10 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
    margin-bottom: 1em;
}
.term-area .row-10 .col-sm-4.col-xs-6 {
	flex: 0 0 auto;
    width: 33.33333333%;
}

/* 991px以下 */
@media (max-width: 991px) {
	
/********************************************** 
	Footer
********************************************* */	
}


/* 767px以下 */
@media (max-width: 767px) {
/********************************************** 
	Typography
********************************************* */
	body {
		font-size: 1.5rem;
	}
	h2.en {
	    font-size: 2rem;
	    margin-bottom: 1em;
	}
	h2.en small {
	    font-size: 1.3rem;
	    margin-top: 0;
	}
	h2.border {
	    font-size: 2rem;
	    margin-bottom: 1em;
	}
	h2.border::before {
	    bottom: 0;
	    left: calc(50% - 90px);
	    width: 180px;
	    height: 8px;
	}
	h2.ja-en {
	    font-size: 2rem;
	    padding-left: .65em;
	    margin-bottom: 1.25em;
	}
	h2.ja-en small {
	    font-size: 1.4rem;
	}
	h2.bar {
	    font-size: 2.2rem;
	    padding-bottom: 1.5rem;
	}
	h2.fukidashi {
		font-size: 2rem;
		margin-bottom: 2.4rem;
		padding: .25em .5em;
	}
	h2.box {
	    font-size: 2.2rem;
	    padding: 1rem 1em;
	    border-left: 4px solid var(--blue1);
	    margin-bottom: 2rem;
	}
	h3 {
		margin-bottom: .65em;
		font-size: 1.8rem;
	}
	h4.fukidashi,h4.bg-pink {
	    padding: .8rem 2rem;
	    font-size: 1.5rem;
	    margin-bottom: 12px;
	}
	h4.fukidashi::after {
	    bottom: -13px;
	}
	h4.bg {
		padding: 0.8rem 2rem;
        font-size: 1.5rem;
        margin-bottom: 12px;
        margin-top: 1.65em;
	}

/********************************************** 
	Misc
********************************************* */	
	.pb0-20 {
		padding-bottom: 0;
	}
	.mb20-40,.mb20-30 {
		margin-bottom: 20px;
	}
	.mb30-60,.mb30-80 {
		margin-bottom: 30px;
	}
	.ptb20-40 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.ptb30-80,.ptb30-60 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.ptb50,.ptb30-50 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.text-left-center {
		text-align: left;
	}
	.sp {
		display: block;
	}
	.row-0.sp {
		display: flex;
	}
	.pc {
		display: none;
	}
	a.btn {
	    display: inline-block;
	    font-size: 1.3rem;
	    width: 270px;
	    height: 44px;
	    line-height: 44px;
	}
	a.btn.small-btn {
		width: 180px;
		height: 36px;
		line-height: 36px;
	}
	.kakko {
	    font-size: 1.5rem;
	    margin-bottom: 30px;
	    padding: 3rem;
	}
	.kakko::before, .kakko::after {
	    content: '';
	    width: 40px;
	    height: 40px;
	    position: absolute;
	}
	.kakko::before {
	    border-left: solid 1px #222;
	    border-top: solid 1px #222;
	    top: 0;
	    left: 0;
	}
	.kakko::after {
	    border-right: solid 1px #222;
	    border-bottom: solid 1px #222;
	    bottom: 0;
	    right: 0;
	}
	a.link-txt {
	    padding-right: 3rem;
	    font-size: 1.3rem;
	}
	.bg-gray-box {
		padding: 1rem 1.5rem;
	}
/********************************************** 
	Footer-contact
********************************************* */
  	#footer-contact .footer-contact-wrap {
	    padding: 2rem 1.5rem 1rem;
	}
	.footer-contact-inner.border-r {
	    border-right: none;
	   position: relative;
	}
	.footer-contact-inner.border-r::before {
		content: "";
		display: block;
		height: 1px;
		width: calc(100% - 30px);
		position: absolute;
		left: 15px;
		top: 0;
		background-color: #ccc;
	}
	.footer-contact-inner.border-r::after {
		content: "";
		display: block;
		height: 1px;
		width: calc(100% - 30px);
		position: absolute;
		left: 15px;
		bottom: 0;
		background-color: #ccc;
	}
	#footer-contact p.mb-30 {
		margin-bottom: 1rem;
	}
	.footer-contact-inner {
		padding: 2rem;
	}
	.footer-contact-inner .tel-num,.footer-contact-inner .tel-num a {
	    font-size: 2.7rem;
	}

/********************************************** 
	Footer
********************************************* */
	a.topBtn {
	    bottom: 20px;
	    right: 10px;
	    width: 30px;
	    height: 30px;
	    padding-top: 0;
	    background-size: 10px;
	    margin-bottom: 10px;
   }
   a.topBtn i {
	   line-height: 30px;
   }
   #footer > .container {
	    padding: 4rem 1rem 2rem;
	}
   .footer-top ul {
	    margin-top: 2rem;
	}
   .copyright {
	    padding: .75em 1em;
	    background: #4e4e88;
	    font-size: 1.2rem;
	}


/********************************************** 
	ページナビ
********************************************* */
	.pagenavi {
		margin-top: 1rem;
	}
	.pagenavi .wp-pagenavi {
		font-size: 2rem;
	}
	.pagenavi .wp-pagenavi a,.pagenavi .wp-pagenavi span {
		margin: 0 4px;
		padding: 2px 4px;
	}
	.pageNav {
		padding: 1.5rem 0;
	}
	.pageNav a {
		padding: 3px 1em;
		font-size: 1.1rem;
	}
/********************************************** 
	Tables
********************************************* */	
	table.table-color th {
		border: 2px solid #fff;
	    padding: .5em .75em;
	}
	table.table-color td {
		border: 2px solid #fff;
		 padding: .5em .75em;
	}

/********************************************** 
	下層ページメインビジュアル
********************************************* */
	.visual {
	    height: 240px;
	}
	.visual h2 {
	    font-size: 2.7rem;
	    width: 100%;
	    margin-top: 2rem;
	}
/********************************************** 
	Breadcrumb
********************************************* */	
	.breadcrumb {
		font-size: 1.2rem;
	}
	.breadcrumb > .container {
		padding: .5rem 15px;
	}
	.breadcrumb span {
		padding: 0 .2rem;
	}
/********************************************** 
	お知らせ
********************************************* */
	.single-title-box {
		padding-left: 1em;
	}
	.single-title-box h2 {
		font-size: 1.8rem;
	}
/********************************************** 
	シングルページ共通
********************************************* */
	.ez-toc-section {
		padding-top: 10px;
	    margin-top: -10px;
	}
	.single-post-area h2 {
		font-size: 1.8rem;
		 margin-top: 1.65em;
	}
	.single-post-area h3 {
		font-size: 1.6rem;
		 margin-top: 1.65em;
	}
	.single-post-area h4 {
	    padding: 0.8rem 2rem;
	    font-size: 1.5rem;
	    margin-bottom: 12px;
	    margin-top: 1.65em;
	}
	.single-post-area .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-x: scroll;
        overflow-y: hidden;
        border: 1px solid #ddd;
    }
    .single-post-area .table-responsive th,.single-post-area .table-responsive td {
	    white-space: nowrap;
	}
	.single-post-area .col-xs-4 {
		width: 33.33333%;
	}
	.single-post-area .col-xs-8 {
		width: 66.66666%;
	}
/********************************************** 
	その他のQ&A
********************************************* */
	.term-area .row-10 .col-sm-4.col-xs-6 {
	    width: calc(50% - .5rem);
	}


/********************************************** 
	執筆者コンテンツ
********************************************* */
	.writer-top .row-0 {
		margin-top: 1rem;
		margin-bottom: 5px;
	}
	.writer-top .row-0 p {
		margin: 0;
	}
	.writer-top-img img {
		width: 60px;
		margin-right: 15px;
	}
	.writer-bottom {
		padding: 1em;
	}
	.writer-bottom-inner-1 img {
		width: 100px;
		margin-right: 20px;
	}
	.writer-bottom-inner-1 .col p.writer-name {
		margin-bottom: 5px;
	}
	.writer-bottom-inner-1 .col:first-child {
		width: 120px;
	}
	.writer-bottom-inner-1 .col:last-child {
		display: none;
	}
	.visible-xs-block {
		display: block;
	}
	
}


/* 575px以下 */
@media (max-width: 575px) {
}