@charset "utf-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0;
}
a {
	color: #333;
	text-decoration: none;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #333;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

.sp {
	display: none;
}
.pc {
	display: block;
}
.gn {
	color: #116066;
}
.wt {
	color: #ffffff;
}


.text-s {
	font-size: 0.8rem;
}
.text-r {
	font-size: 1rem;
}
.title01wt {
	color: #fff;
	font-size: min(4.2vw, 40px);
	font-family: "Jost", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
	letter-spacing: 8px;
}
.tit-plane {
	font-size: min(5.2vw, 40px);
	font-family: "Jost", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
	letter-spacing: 6px;
	text-indent: 6px;
}

.tit-gn {
    display: flex;
    align-items: center;
	width: 80%;
	max-width: 990px;
	margin: 0 auto;
}

.tit-gn:before,
.tit-gn:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #116066;
}

.tit-gn:before {
    margin-right: 1rem;
}

.tit-gn:after {
    margin-left: 1rem;
}
.tit-jp {
	text-align: center;
}

.pad-bottom {
	padding: 0 0 200px 0;
}
#header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 10;
	display: flex;
	background-color: #fff;
	margin: 0;
	padding: 0;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
}
#logo {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 30%;
	background-color: #116066;
	padding: 2%;
	margin: 0 0 -20px 0;
	line-height: 0;
	border-radius: 0 0 10px 0 ;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
}
#logo img {
	max-width: 447px;
}
#gnav {
	background-color: #fff;
	margin: 0 0 0 auto;
	padding: 1vw 1vw 1vw 0;
}
.head-tel {
	font-size: 0.9rem;
	color: #116066;
	text-align: right;
	margin: 0 0 10px 0;
}
.head-tel a {
	color: #116066;
	font-size: 1.6rem;
	font-weight: 700;
	text-decoration: none;
	margin: 0 10px 0 5px;
}
.gnavi{
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    margin:0 ;
    list-style: none;
	border-left: 1px solid #ebebeb;
}

.gnavi li a{
	color: #116066;
	font-size: 16px;
	font-size: clamp(14px, 1vw, 16px);
	font-weight:bolder;
    display: flex;
	justify-content: center;
	align-items: center;
    text-decoration: none;
	padding: 0.5vw 1vw;
	letter-spacing: 0.5px;
}

.gnavi li a span, .foot-contact-link a span, .text-link01 a span {
	display: inline-block;
}
.gnavi li a:hover span, .foot-contact-link a:hover span, .text-link01 a:hover span {
	color: #ddc537;
	transition: .5s;
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.gnavi li{
	line-height: 0;
	text-align: left;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #ebebeb;
    /*margin-bottom:20px;*/
}

.gnavi li img {
	line-height: 0;
	width: 30%;
	margin: 0 10px 0 0 ;
}

/*sp-nav*/
/*========= ぼかしのためのCSS ===============*/

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#116066;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 0.95;
	top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
	width: 100%;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	width: 100%;
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.sp-nav-logo {
	width: 50vw;
	max-width: 200px;
	margin:  10vw 0 5vw 0;
}
.sp-nav-info {
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 0.9rem;
	line-height: 200%;
}
.sp-nav-tel {
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:relative;
    z-index: 9999;/*ボタンを最前面に*/
	top:20px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
	padding: 20px 0;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #116066;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
	background-color: #fff;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
	background-color: #fff;
}

/*footer*/
#footer {
	position: relative;
	width: 100%;
	background-color: #f5f5f5;
	padding: 0;
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}
.foot-contact {
	position: absolute;
	top: -50px;
	left:50%;
    transform: translate(-50%,-50%);
	display: flex;
	justify-content:center;
	align-items:center;
	color: #fff;
	text-align: center;
	width: 90%;
	max-width: 1240px;
	background-color: #116066;
	margin: 0 auto ;
	padding: 5% 0 ;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}
.foot-contact .middle {
	border:solid #4c888c ;
	border-width: 0px 1px 0px 1px;
}
.contactBox {
	width: 30%;
	display: flex;
	flex-direction: column;
    align-items: center;
	/*justify-content: center;*/
}
.contactBox .midashi {
	color: #88b0b2;
}
.w35 {
	width: 35%;
}

.foot-contact-link {
	width: 100%;
	color: #fff;
	display: flex;
	justify-content:center;
	align-items:center;
	height: 30px;
	line-height: 0;
	margin: 20px 0;
}
.foot-contact-link a {
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content:center;
	align-items:center;
	height: 30px;
	line-height: 0;
}
.foot-contact-link img {
	margin: 0 10px 0 0;
}

#footer-conts {
	color: #116066;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 10% 0 0 0;
}
.foot-logo {
	max-width: 528px;
	width: 50%;
}
.foot-box {
	display: flex;
	margin: 5% 0;
}
.foot-box a {
	color: #116066;
}
.foot-company {
	width: 65%;
}
.foot-company .foot-info {
	display: flex;
}
.foot-company dt, .foot-company dd {
	padding: 2% 0 2% 0;
}
.foot-company dt {
	width: 15%;
}
.foot-link {
	width: 35%;
}
.foot-link ul {
	list-style-position:inside;
	display: block;
	margin: 0;
	padding: 0;
}
.foot-link ul li {
	margin: 3% 0 3% 7px;
	padding: 0;
}
.insta-link {
	display: flex;
	align-items:center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.insta-link img {
	margin: 0 10px -5px 0;
}
.insta-link a {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.copy-top {
	display: flex;
	justify-content: space-between;
	padding: 0 0 10% 0;
}
.arrow_o {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow_o:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #116066;
  border-right: solid 2px #116066;
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 0;
  margin: auto;
}
.copy-top a {
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	color: #116066;
	letter-spacing: 1px;
}

.copyright {
	font-size: 0.8rem;
}


/*page*/
#main {
	background-color: #fff;
}
.page-header {
	width: 100%;
	margin: 5% 0;
	padding: 5% 0 0 0;
}
.page-title {
	display: block;
	color: #fff;
	font-size: min(6.2vw, 80px);
	font-family: "Jost", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
	letter-spacing: 8px;
	line-height: 90%;
	padding: 10% 10%;
	background-image: url("../images/common/head_wave.svg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: bottom -1px center;          /* 背景の位置指定 */
	background-size: 100% auto;
}
.head-teavel {
	background-image: url("../images/travel/head_image.jpg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: center;          /* 背景の位置指定 */
	background-size:cover;
}
.head-housing {
	background-image: url("../images/housing/head_image.jpg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: center;          /* 背景の位置指定 */
	background-size:cover;
}
.head-privacy {
	background-image: url("../images/privacy/head_image.jpg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: center;          /* 背景の位置指定 */
	background-size:cover;
}
.head-contact {
	background-image: url("../images/contact/head_image.jpg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: center;          /* 背景の位置指定 */
	background-size:cover;
}
.head-news {
	background-image: url("../images/news/head_image.jpg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: center;          /* 背景の位置指定 */
	background-size:cover;
}
.head-notfound {
	background-image: url("../images/notfound/head_image.jpg");     /* 背景画像指定 */
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: center;          /* 背景の位置指定 */
	background-size:cover;
}


.th-tit02 {
	text-align: center;
	max-width: 980px;
	width: 80%;
	position: relative;
  	color: #116066;
  	background-color: #fff;/*背景色と合わせる*/
 background-image:
    linear-gradient(-45deg,#ddc537 25%, transparent 25%,transparent 50%, #ddc537 50%,#ddc537 75%, transparent 75%,transparent);
  	background-size: 10px 10px;
  	height: 0.5em;
	margin: 2% auto 0 auto;
}
.th-tit02 span {
	text-align: center;
	font-size: min(4.2vw, 30px);
	font-family: "Jost", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
	letter-spacing: 4px;
	text-indent: 4px;
	position: absolute;
  	display: inline-block;
  	margin: -0.5em auto 0 -2.6em;
  	background: #fff;/*背景色と合わせる*/
  	padding: 0 10px;
}
.th-tit01 {
	text-align: center;
	max-width: 980px;
	width: 80%;
	position: relative;
  	color: #116066;
  	background-color: #fff;/*背景色と合わせる*/
 background-image:
    linear-gradient(-45deg,#ddc537 25%, transparent 25%,transparent 50%, #ddc537 50%,#ddc537 75%, transparent 75%,transparent);
  	background-size: 10px 10px;
  	height: 0.5em;
	margin: 2% auto 0 auto;
}
.th-tit01 span {
	text-align: center;
	font-size: min(4.2vw, 30px);
	font-family: "Jost", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
	letter-spacing: 4px;
	text-indent: 4px;
	position: absolute;
  	display: inline-block;
  	margin: -0.5em auto 0 -3.2em;
  	background: #fff;/*背景色と合わせる*/
  	padding: 0 10px;
}
.th-tit-jp {
	text-align: center;
	display: block;
	margin: 20px auto 0 auto;
}

/*travel-housing*/
.th-box {
	width: 90%;
	max-width: 1250px;
	margin: 0 auto;
	text-align: center;
}
.th-flex {
	text-align: left;
	display: flex;
	justify-content: center;
  	align-items: center;
	line-height: 200%;
	margin: 7% 0;
}
.th-copy {
	font-size: 1.4rem;
	letter-spacing: 2px;
	color: #116066;
	margin: 0 0 3% 0;
}
.th-text {
	width: 60%;
}
.th-flex .th-illust {
	max-width: 310px;
	width: 35%;
	margin: 0 auto;
}
.th-products {
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	background-color: #116066;
	padding: 5%;
	margin: 0 0 10% 0;
	border-radius: 10px;
}
.th-products-title {
	color: #ddc537;
	margin: 0 0 10px 0;
}

/*scroll-image*/
.scroll-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
	margin: 0 0 3% 0;
}

.scroll-content {
    display: flex;
    animation: scroll 50s linear infinite;
}

.item {
    flex: 0 0 auto;
    width: 400px;/*お好みの幅に調整*/
    height: 280px;/*お好みの高さに調整*/
    background-color: none;
    margin: 0 10px;/*左右の余白はここを調整*/
    text-align: center;
    line-height: 280px;
}
.item img {
	border-radius: 10px;
}

/*loop*/
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
	margin: 0 0 5% 0;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 0.8);
	margin: 0 5% 0 0;
}
.scroll-infinity__item>img {
  width: 100%;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.th-news {
	margin: 5% 0 10% 0;
}

.media_list {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items:stretch;
}
.media_list_flex {
	width: 27%;
	margin: 3%;
}
.media_list_flex .txt_area {
	margin: auto 0 0 0;
}

/*privacy*/
.privacy {
	width: 90%;
	max-width: 900px;
	margin: 5% auto;
	line-height: 200%;
}
.privacy-list {
	display: block;
	margin: 0;
	padding: 3% 0 0 0;
	list-style: none;
}
.privacy-list li {
	border-bottom: 1px solid #e5e5e5;
	padding: 3% 0;
}

/*notfound*/
.notfound {
	width: 90%;
	max-width: 900px;
	line-height: 200%;
	margin: 7% auto 15% auto;
}

.inner {
  max-width: calc(1280px + 8%);
  padding-right: 4%;
  padding-left: 4%;
  margin: 0 auto;
}
.inner.is-small {
  max-width: calc(1160px + 8%);
}

/*recaptcha*/
.grecaptcha-badge {
	visibility: hidden;
}


@media screen and (max-width: 1020px) {
.sp {
	display: block;
}
.pc {
	display: none;
}

#logo {
	max-width: 45%;
}
	
/*footer*/
.foot-contact {
	display: block;
	position: absolute;
	/*z-index: -1;*/
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	color: #fff;
	text-align: center;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto ;
	padding: 3% 0 ;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.foot-contact .contactBox {
	width: 80%;
	margin: 0 auto;
	padding: 3% 0;
}
.foot-contact .middle {
	border:solid #4c888c ;
	border-width: 1px 0px 1px 0px ;
}
#footer-conts {
	padding: 40% 0 0 0;
}
.foot-box {
	font-size: 0.8rem;
}

/*page*/
.page-header {
	margin: 7% 0;
}
.page-title {
	padding: 15% 10% 10% 10%;
}
	
}


@media screen and (max-width: 728px) {
#logo {
	max-width: 60%;
	padding: 0 4%;
}
#footer-conts {
	text-align: center;
}
.foot-contact {
	top: -220px;
}
.foot-logo {
	width: 90%;
}
.foot-box {
	display: block;
	border-top: 1px solid #ededed;
	padding: 5% 0 0 0;
}
.foot-company {
	text-align: left;
	width: 100%;
	margin: 0 auto;
}
.foot-link {
	text-align: left;
	width: 100%;
	margin: 5% auto 0 auto;
}
.foot-link a {
	width: 100%;
	display: block;
	font-weight: bold;
	margin: 0;
	padding: 3% 0;
	border-bottom: 1px solid #ededed;
}
.foot-link ul {
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
	border-top: 1px solid #ededed;
}
.foot-link ul li {
	margin: 0;
}
.insta-link a {
	display: flex;
	align-items:center;
	margin: 0;
	padding: 3% 0;
	list-style-type: none;
	border-bottom: 1px solid #ededed;
}

.pad-bottom {
	padding: 0 0 250px 0;
}
	
/*page*/
.page-header {
	margin: 9% 0;
}
.page-title {
	padding: 20% 10% 15% 10%;
}

/*travel-housing*/
.th-flex {
	display: block;
	margin: 7% 0;
}
.th-tit02 span {
	font-size: min(5.2vw, 30px);
	letter-spacing: 6px;
	text-indent: 6px;
  	margin: -0.5em auto 0 -3.2em;
}
	
.th-tit01 span {
	font-size: min(5.2vw, 30px);
	letter-spacing: 6px;
	text-indent: 6px;
  	margin: -0.5em auto 0 -3.7em;
}
	
.th-copy {
	text-align: center;
	margin: 0 0 5% 0;
}
.th-text {
	width: 100%;
	margin: 10% 0 10% 0;
}
.th-flex .th-illust {
	max-width: 210px;
	width: 80%;
	margin: 0 auto;
}
	
/*scroll-image*/
.scroll-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
	margin: 0 0 3% 0;
}

.scroll-content {
    display: flex;
    animation: scroll 50s linear infinite;
}

.item {
    flex: 0 0 auto;
    width: 250px;/*お好みの幅に調整*/
    height: 175px;/*お好みの高さに調整*/
    background-color: none;
    margin: 0 10px;/*左右の余白はここを調整*/
    text-align: center;
    line-height: 175px;
}
.item img {
	border-radius: 10px;
}
	
.media_list_flex {
	width: 44%;
	margin: 3%;
}
	
}





/*news*/
.cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8125rem;font-weight: bold;
  color: #fff;
}
.cat-list > li {
  min-width: 40px;
  padding: 5px;
  margin-bottom: 0.5em;
  background-color: #116066;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
}
.cat-list > li:not(:last-of-type) {
  margin-right: 0.923em;
}

.news-list {
	width: 100%;
	margin: 0;
}
.news-list > li {
  padding-bottom: 18px;
  border-bottom: 1px solid #BABABA;
}
.news-list > li:not(:last-of-type) {
  margin-bottom: 16px;
}
.news-list a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  position: relative;
}
.news-list a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #ededed transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.news-list .thumbnail {
  width: 17.288%;
  margin-right: 6.101%;
  line-height: 1;
}
.news-list .text {
  flex: 1 1 0;
  line-height: 1.687;
}
.news-list .date {
  font-size: 0.8125rem;
  color: #808080;
}

/*single-page*/
.news-wrapper {
	max-width: 1100px;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 10% auto 0 auto;
}

.news-wrapper .main-content {
	width: 70%;
	margin: 0 0 10% 0;
}
.news-wrapper .sidebar {
	display: block;
	width: 25%;
	text-align: left;
}

.news-title {
  margin-bottom: 1em;
  font-size: 1.25rem;
  line-height: 2.25;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wp-pagenavi {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}
.wp-pagenavi span, .wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #444444;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}
.wp-pagenavi span:not(:last-child), .wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}

.wp-pagenavi span:hover, .wp-pagenavi a:hover {
  background-color: #116066;
  color: #FFFFFF;
}
.wp-pagenavi span.current {
  background-color: #116066;
  color: #FFFFFF;
}
.wp-pagenavi a {
  color: #666666;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
	height: 30px;
}

.sidebar .side-item {
  padding: 0 4% 5% 4%;
}
.sidebar .side-item:not(:last-of-type) {
  border-bottom: 1px solid #BABABA;
  margin-bottom: 42px;
}
.sidebar-list {
  padding: 0 8;
  font-weight: 500;
}
.sidebar-list a {
	color: #116066;
  display: inline-block;
  padding-right: 1em;
  line-height: 2.562;
}
.sidebar-list a::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}

.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  font-size: 0.875rem;
  color: #555555;
}
.post-header time {
  margin-bottom: 0.5em;
}
.post-header .cat-list {
  font-size: 0.875rem;
}
.post-header .cat-list > li {
  padding-right: 18px;
  padding-left: 18px;
}
.post-title {
  margin-bottom: 0.718em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.468;
}

.post-wrapper {
  line-height: 1.75;
  letter-spacing: 0.11em;
}
.post-wrapper > * {
  margin-bottom: 36px;
}
.post-wrapper h2 {
  padding-left: 1.166em;
  margin-bottom: 1.5em;
  border-left: 3px solid #333;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.post-wrapper h3 {
  padding: 10px 4.444%;
  margin-bottom: 1.318em;
  background-color: #E2EBEF;
  border-radius: 10px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}

.post-wrapper .images-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.post-wrapper .images-wrapper.col2 {
  margin-bottom: 0;
}
.post-wrapper .images-wrapper.col2 > a {
  width: 47.46%;
  margin-bottom: 36px;
}
.post .eyecatch {
  height: 0;
  padding-top: 59.841%;
  position: relative;
  overflow: hidden;
}
.post .eyecatch img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lb-outerContainer {
  background-color: transparent;
}

.lightbox .lb-image {
  border: none;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin: 5% 0 10% 0;
  border-top: 1px dashed #666666;
  border-bottom: 1px dashed #666666;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
}

.page-nav > li {
  min-width: 5em;
}
.page-nav > li:first-of-type a::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.page-nav a {
  display: inline-block;
  min-width: 5em;
  padding: 5px 14px;
  position: relative;
}
.page-nav a.to-archive {
  font-weight: bold;
  color: #333;
}
.page-nav a.to-archive::after {
  content: none;
}
.page-nav a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}


/*=======================================================
  TBサイズ以下の設定
=======================================================*/
@media screen and (max-width: 768px) {
.gnavi li a:hover span, .foot-contact-link a:hover span, .text-link01 a:hover span {
	transition: none;
}
	
.news-title {
    font-size: 1.125rem;
}
.wp-pagenavi span, .wp-pagenavi a {
    font-size: 0.875rem;
}

.post-header .cat-list {
    font-size: 0.8125rem;
}
.post-title {
    font-size: 1.375rem;
}
.post-wrapper h2 {
    font-size: 1.125rem;
}
.post-wrapper h3 {
    font-size: 1rem;
}
.page-nav {
    font-size: 0.8125rem;
}
	
.news-list {
    width: 100%;
    margin-left: -7.339%;
  }
  .news-list a {
    padding:0;
  }
  .news-list a::after {
    right: 0;
  }
  .news-list .thumbnail {
    width: 31%;
  }
  .news-wrapper .main-content, .news-wrapper .sidebar {
    width: 100%;
  }
  .news-list {
    width: 100%;
    margin-left: 0;
  }
  .page-nav {
    width: 100%;
    padding: 10px 0;
    margin-left: 0;
  }
  .page-nav a {
    padding: 5px 8px;
  }
  .page-nav a.to-archive {
    padding: 5px 0;
  }
}