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


@media only screen and (max-width: 768px) {
#page_ttl .ttl_wrap h1.ttl .jp img {
    width: 10.71rem;
}
}


/* #post_catlist_wrap
----------------------------------------- */
#post_catlist_wrap {
	overflow: hidden;
}

#post_catlist_wrap .post_catlist {
    align-items: center;
	justify-content: center;
    gap: 2rem;
}
#post_catlist_wrap .post_catlist > li a { 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    position: relative;
    z-index: 1;
}
#post_catlist_wrap .post_catlist > li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #0A4F7F;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 10rem;
    transition: transform .2s cubic-bezier(0.51, 0.61, 0.465, 1.65) 0s;
}

#post_catlist_wrap .post_catlist > li a span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #0A4F7F;
    margin-top: -0.1em;
    transition: all .6s;
}
#post_catlist_wrap .post_catlist > li a:hover {
    opacity: 1
}
#post_catlist_wrap .post_catlist > li a:hover span {
    color: #FFFFFF;
}
#post_catlist_wrap .post_catlist > li a:hover::after {
    background-color: #0A4F7F;
}
#post_catlist_wrap .post_catlist > li.current a span {
	color: #FFFFFF;
}
#post_catlist_wrap .post_catlist > li.current a::after {
    background-color: #0A4F7F;
}

@media screen and (max-width: 768px) {
#post_catlist_wrap {
}

#post_catlist_wrap .post_catlist {
    gap: 1.5rem 1rem;
}
#post_catlist_wrap .post_catlist > li a {
    min-width: 15rem;
}
}



/* #post_list_wrap
----------------------------------------- */
#post_list_wrap {
}

#post_list_wrap .inner {
    padding-top: 7rem;
    padding-bottom: 10rem;
}

#post_list_wrap .post_list {
    width: 100%;
    max-width: 93rem;
    margin: auto;
    padding-top: 9rem;
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem 6rem;
}
#post_list_wrap .post_list > li {
    width: 100%;
    max-width: 26.6rem;
}
#post_list_wrap .post_list > li a:hover {
    opacity: 1;
}
#post_list_wrap .post_list > li .thumbnail {
    position: relative;
    z-index: 1;
}
#post_list_wrap .post_list > li .thumbnail::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #446379;
    border-radius: 1.2rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .6s;
}
#post_list_wrap .post_list > li .thumbnail img {
    border-radius: 1.2rem;
}
#post_list_wrap .post_list > li .thumbnail .arrow {
    position: absolute;
    bottom: -0.8rem;
    right: -0.5rem;
    z-index: 2;
}
#post_list_wrap .post_list > li .thumbnail .icon {
    position: absolute;
    top: -0.8rem;
    left: -1.5rem;
    z-index: 2;
    
    width: 5rem;
    height: 5rem;
    background: url(../images/circle_bg.svg) no-repeat center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* letter-spacing: 0.1em; */
    color: #FFFFFF;
    font-weight: 700;
}
#post_list_wrap .post_list > li a:hover .thumbnail::after {
    transform: rotate(-2deg) translate(0, 1rem);
    transform-origin: 0 0;
}
#post_list_wrap .post_list > li:nth-child(odd) a:hover .thumbnail::after {
    transform: rotate(2deg) translate(1rem, 0);
    transform-origin: 0 0;
}

#post_list_wrap .post_list > li .info_con_wrap {
    margin-top: 2.5rem;
}
#post_list_wrap .post_list > li .info_con_wrap .info_con {
    /*display: inline-flex;*/
    display: flex;
    justify-content: flex-start;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1;
}
#post_list_wrap .post_list > li .info_con_wrap .info_con .date {
}
#post_list_wrap .post_list > li .info_con_wrap .info_con .category {
    margin-right: 1rem;
}
#post_list_wrap .post_list > li .info_con_wrap .info_con .category .cat_list {
    justify-content: flex-start
}
#post_list_wrap .post_list > li .info_con_wrap .ttl {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: calc(25/15);
    margin-top: 1rem;
    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media screen and (max-width: 768px) {
#post_list_wrap {
}

#post_list_wrap .inner {
    width: 31.5rem;
    padding-top: 6rem;
    padding-bottom: 8rem;
}
    
#post_list_wrap .post_list {
    width: 100%;
    max-width: none;
    margin: auto;
    padding-top: 8rem;
    
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 5rem 0;
}
#post_list_wrap .post_list > li {
    max-width: 31.5rem;
}
    
}




/* #post_single_wrap
----------------------------------------- */
#post_single_wrap {
}
#post_single_wrap .inner {
    width: 100%;
    max-width: 70rem;
    margin: auto;
    padding-top: 26rem;
    padding-bottom: 12rem;
}

#post_single_wrap .post_ttl_wrap {
    padding-bottom: 4rem;
    border-bottom: 1px solid #0A4F7F;
}

#post_single_wrap .post_ttl_wrap .ttl_wrap {
    width: 100%;
    margin: auto;
}

#post_single_wrap .post_ttl_wrap h1 {
    position: relative;
}
#post_single_wrap .post_ttl_wrap h1 .ttl {
    font-size: 2.8rem;
    font-weight: 600;
	line-height: calc(48/28);
    letter-spacing: 0;
    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#post_single_wrap .post_ttl_wrap .info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
#post_single_wrap .post_ttl_wrap .info .date {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 500;
}
#post_single_wrap .post_ttl_wrap .info .tag {
}
#post_single_wrap .post_ttl_wrap .info .tag .list {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}
#post_single_wrap .post_ttl_wrap .info .tag .list > li {
    display: flex;
}
#post_single_wrap .post_ttl_wrap .info .tag .list > li span {
    ffont-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 600;
}

#post_single_wrap .inner > .btn_wrap {
    justify-content: center;
    margin-top: 8rem;
}


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

#post_single_wrap .inner {
    width: 31.5rem;
    max-width: none;
    padding-top: 12rem;
    padding-bottom: 10rem;
}
#post_single_wrap .post_ttl_wrap {
    padding-bottom: 3rem;
}
#post_single_wrap .post_ttl_wrap .ttl_wrap {
    width: 31.5rem;
}
#post_single_wrap .post_ttl_wrap .info {
    margin-bottom: 1.5rem;
}
#post_single_wrap .post_ttl_wrap .info .date {
    font-size: 1.5rem;
}
#post_single_wrap .post_ttl_wrap h1 .ttl {
    font-size: 2.0rem;
    line-height: calc(36 / 20);
    letter-spacing: 0.06em;
}
    
#post_single_wrap .inner > .btn_wrap {
    justify-content: center;
    margin-top: 5rem;
}
}



/* #post_single_wrap .post_con
----------------------------------------- */
#post_single_wrap .post_con {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 8rem;
    font-size: 1.5rem;
    line-height: calc(35/15);
    letter-spacing: 0.05em;
    font-weight: 600;
    
    border-bottom: 1px solid #0A4F7F;
}

#post_single_wrap .post_con h2 {
	font-size: 2.4rem;
    line-height: calc(38/24);
    font-weight: 600;
	margin-top: 8rem;
	margin-bottom: 4rem;
    position: relative;
}
#post_single_wrap .post_con .inner h2:first-child {
    margin-top: 0;
}
#post_single_wrap .post_con h2::before {
	content: '';
    display: block;
    width: 6rem;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 0.9em;
    left: -4rem;
    transform: translate(-100%,-50%);
}

#post_single_wrap .post_con h3 {
    font-size: 2.0rem;
    line-height: calc(28/20);
    font-weight: 600;
	margin-top: 6rem;
	margin-bottom: 2rem;
    position: relative;
}

#post_single_wrap .post_con h4 {
    font-size: 1.8rem;
    line-height: calc(26/18);
    font-weight: 600;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
    position: relative;
}

#post_single_wrap .post_con img {
    overflow: hidden;
    border-radius: 1rem;
}

#post_single_wrap .post_con ul {
}
#post_single_wrap .post_con ul li {
    padding-left: 1.2em;
    position: relative;
}
#post_single_wrap .post_con ul li::before {
    content: '';
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background-color: #000000;
    position: absolute;
    top: calc(1em - 0.2rem);
    left: 0.2rem;
}

#post_single_wrap .post_con ol {
    padding-left: 1.2em;
}
#post_single_wrap .post_con ol li {
    list-style: decimal;
    padding-left: 0.1em;
}

#post_single_wrap .post_con a {
    text-decoration: underline;
}

#post_single_wrap .post_con a.btn {
    text-decoration: none;
}

#post_single_wrap .post_con > p {
    /*text-indent: 1em;*/
}

#post_single_wrap .post_con table {
    width: 100%;
    border-top: 1px solid #FFFFFF;
    /*border-collapse: inherit;
    border-radius: 0.5rem;
    background-color: #FFFFFF;*/
}
#post_single_wrap .post_con table th,
#post_single_wrap .post_con table td {
    padding: 2rem 0;
    border-bottom: 1px solid #FFFFFF;
    vertical-align: middle;
}
/*.info_table tbody > tr th:last-child,
.info_table tbody > tr td:last-child {
    border-right: none;
}
.info_table tbody > tr:last-child th,
.info_table tbody > tr:last-child td {
    border-bottom: none;
}*/
#post_single_wrap .post_con table th {
    white-space: nowrap;
    font-weight: 500;
    padding-right: 4rem;
}
#post_single_wrap .post_con table td {
    width: 100%;
}
#post_single_wrap .post_con table th a,
#post_single_wrap .post_con table td a {
    text-decoration: underline;
    font-weight: 600;
}

#post_single_wrap .post_con .wp-caption {
    width: auto !important;
    max-width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
#post_single_wrap .post_con .wp-caption img {
    overflow: hidden;
    margin-bottom: 1rem;
}
#post_single_wrap .post_con .wp-caption .wp-caption-text {
    margin: 0;
    font-size: 1.2rem;
    line-height: calc(24/12);
    color: #666666;
}

#post_single_wrap .post_con p:not(:first-child)  {
    /*margin-bottom: 3rem;*/
    margin-top: 2em;
}

#post_single_wrap .post_con blockquote {
    font-size: 1.4rem;
    line-height: calc(28/14);
    border: 1px solid #000000;
    border-radius: 0.5rem;
    padding: 3rem;
    padding-bottom: 2.5rem;
}


#post_single_wrap .post_con .wp-caption {
	width: auto !important;
    max-width: 100%;
}


#post_single_wrap .swiper-container,
#post_single_wrap .swiper-wrapper,
#post_single_wrap .swiper-slide {
	width: 100%;
}

#post_single_wrap .swiper-container {
	width: 100%;
    max-width: calc(502/550*100%);
    margin-left: auto;
    position: relative;
}

#post_single_wrap .slide_wrap {
    width: 100%;
    position: relative;
}
#post_single_wrap .slide_wrap img {
}

#post_single_wrap .caption {
    font-size: 1.2rem;
    line-height: calc(19/12);
    font-weight: 500;
    margin-top: 0.6em;
}

:root {
    --swiper-navigation-size: 6rem;
}

#post_single_wrap .swiper-pagination {
    bottom: -3rem;
}
#post_single_wrap .swiper-pagination .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
    opacity: 1;
    background-color: #c8c8c8;
}
#post_single_wrap .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #a0a0a0;
}

#post_single_wrap .swiper-button-prev,
#post_single_wrap .swiper-button-next {
}
#post_single_wrap .swiper-button-prev {
    left: 0;
    right: auto;
    transform: translateX(-100%);
}
#post_single_wrap .swiper-button-next {
    left: auto;
    right: 0;
    transform: translateX(100%);
}
#post_single_wrap .swiper-button-prev::after,
#post_single_wrap .swiper-button-next::after {
    display: none;
}

#post_single_wrap .slider_none .swiper-button-prev,
#post_single_wrap .slider_none .swiper-button-next {
    display: none;
}

#post_single_wrap .foot_wrap {
    width: 100%;
    padding-top: 5rem;
    margin-top: 15rem;
    border-top: 1px solid #0A4F7F;
}
#post_single_wrap .foot_wrap .pagenavi {
    align-items: center;
}
#post_single_wrap .foot_wrap .pagenavi > li {
    display: flex;
    flex-flow: column;
}
#post_single_wrap .foot_wrap .pagenavi > li.prev {
    width: 25%;
    align-items: flex-start;
}
#post_single_wrap .foot_wrap .pagenavi > li.all {
    width: 50%;
    align-items: center;
}
#post_single_wrap .foot_wrap .pagenavi > li.next {
    width: 25%;
    align-items: flex-end;
}

#post_single_wrap .foot_wrap .pagenavi .btn {
    display: flex;
    align-items: center;
}

#post_single_wrap .foot_wrap .pagenavi .btn .arrow {
    /*width: 1rem;*/
    display: flex;
    margin-bottom: 0.2em;
    transition: all .6s;
}
#post_single_wrap .foot_wrap .pagenavi .btn .arrow img {
    width: 100%;
    height: auto;
}
#post_single_wrap .foot_wrap .pagenavi .next .btn .arrow {
    margin-left: 1rem;
}
#post_single_wrap .foot_wrap .pagenavi .prev .btn .arrow {
    transform: scale(-1,1);
    margin-right: 1rem;
}
#post_single_wrap .foot_wrap .pagenavi .next .btn:hover .arrow {
    transform: translateX(0.5rem);
}
#post_single_wrap .foot_wrap .pagenavi .prev .btn:hover .arrow {
    transform: scale(-1,1) translateX(0.5rem);
}

#post_single_wrap .foot_wrap .pagenavi .btn span {
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #32514C;
    position: relative;
}
/*#post_single_wrap .foot_wrap .pagenavi .btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translate(-50%,0);
}*/


#post_single_wrap .img_layout.column2 {
    display: grid;
    grid-template-columns: repeat(2,calc(50% - 0.5rem));
    grid-gap: 1rem 1rem;
}

#post_single_wrap .post_con .info_table_wrap {
    margin-top: 10rem;
}


@media screen and (max-width: 768px) {
#post_single_wrap .post_con {
    width: 31.5rem;
    margin: auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
    font-size: 1.4rem;
    line-height: calc(28/14);
    letter-spacing: 0.06em;
}

#post_single_wrap .post_con h2 {
	font-size: 2.2rem;
    line-height: calc(36/22);
    font-weight: 600;
	margin-top: 8rem;
	margin-bottom: 4rem;
    position: relative;
}
#post_single_wrap .post_con .inner h2:first-child {
    margin-top: 0;
}
#post_single_wrap .post_con h2::before {
	content: '';
    display: block;
    width: 6rem;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 0.9em;
    left: -4rem;
    transform: translate(-100%,-50%);
}

#post_single_wrap .post_con h3 {
    font-size: 1.8rem;
    line-height: calc(28/18);
    font-weight: 600;
	margin-top: 6rem;
	margin-bottom: 2rem;
    position: relative;
}

#post_single_wrap .post_con h4 {
    font-size: 1.6rem;
    line-height: calc(26/16);
    font-weight: 600;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
    position: relative;
}

#post_single_wrap .post_con img {
    overflow: hidden;
}

#post_single_wrap .post_con ul {
}
#post_single_wrap .post_con ul li {
    padding-left: 1.2em;
    position: relative;
}
#post_single_wrap .post_con ul li::before {
    content: '';
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background-color: #000000;
    position: absolute;
    top: calc(1em - 0.2rem);
    left: 0.2rem;
}

#post_single_wrap .post_con ol {
    padding-left: 1.2em;
}
#post_single_wrap .post_con ol li {
    list-style: decimal;
    padding-left: 0.1em;
}

#post_single_wrap .post_con a {
    text-decoration: underline;
}

#post_single_wrap .post_con a.btn {
    text-decoration: none;
}

#post_single_wrap .post_con > p {
    /*text-indent: 1em;*/
}

#post_single_wrap .post_con table {
    width: 100%;
    border-top: 1px solid #FFFFFF;
    /*border-collapse: inherit;
    border-radius: 0.5rem;
    background-color: #FFFFFF;*/
}
#post_single_wrap .post_con table th,
#post_single_wrap .post_con table td {
    padding: 2rem 0;
    border-bottom: 1px solid #FFFFFF;
    vertical-align: middle;
}
/*.info_table tbody > tr th:last-child,
.info_table tbody > tr td:last-child {
    border-right: none;
}
.info_table tbody > tr:last-child th,
.info_table tbody > tr:last-child td {
    border-bottom: none;
}*/
#post_single_wrap .post_con table th {
    white-space: nowrap;
    font-weight: 500;
    padding-right: 4rem;
}
#post_single_wrap .post_con table td {
    width: 100%;
}
#post_single_wrap .post_con table th a,
#post_single_wrap .post_con table td a {
    text-decoration: underline;
    font-weight: 600;
}

#post_single_wrap .post_con .wp-caption {
    width: auto !important;
    max-width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
#post_single_wrap .post_con .wp-caption img {
    overflow: hidden;
    margin-bottom: 1rem;
}
#post_single_wrap .post_con .wp-caption .wp-caption-text {
    margin: 0;
    font-size: 1.2rem;
    line-height: calc(24/12);
    color: #666666;
}

#post_single_wrap .post_con p:not(:first-child)  {
    /*margin-bottom: 3rem;*/
    margin-top: 2em;
}

#post_single_wrap .post_con blockquote {
    font-size: 1.4rem;
    line-height: calc(28/14);
    border: 1px solid #000000;
    border-radius: 0.5rem;
    padding: 3rem;
    padding-bottom: 2.5rem;
}


#post_single_wrap .post_con .wp-caption {
	width: auto !important;
    max-width: 100%;
}


#post_single_wrap .swiper-container,
#post_single_wrap .swiper-wrapper,
#post_single_wrap .swiper-slide {
	width: 100%;
}

#post_single_wrap .swiper-container {
	width: 100%;
    max-width: calc(502/550*100%);
    margin-left: auto;
    position: relative;
}

#post_single_wrap .slide_wrap {
    width: 100%;
    position: relative;
}
#post_single_wrap .slide_wrap img {
}

#post_single_wrap .caption {
    font-size: 1.2rem;
    line-height: calc(19/12);
    font-weight: 500;
    margin-top: 0.6em;
}

:root {
    --swiper-navigation-size: 6rem;
}

#post_single_wrap .swiper-pagination {
    bottom: -3rem;
}
#post_single_wrap .swiper-pagination .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
    opacity: 1;
    background-color: #c8c8c8;
}
#post_single_wrap .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #a0a0a0;
}

#post_single_wrap .swiper-button-prev,
#post_single_wrap .swiper-button-next {
}
#post_single_wrap .swiper-button-prev {
    left: 0;
    right: auto;
    transform: translateX(-100%);
}
#post_single_wrap .swiper-button-next {
    left: auto;
    right: 0;
    transform: translateX(100%);
}
#post_single_wrap .swiper-button-prev::after,
#post_single_wrap .swiper-button-next::after {
    display: none;
}

#post_single_wrap .slider_none .swiper-button-prev,
#post_single_wrap .slider_none .swiper-button-next {
    display: none;
}

#post_single_wrap .foot_wrap {
    width: 100%;
    padding-top: 4rem;
    margin-top: 8rem;
}
#post_single_wrap .foot_wrap .pagenavi {
    width: 31.5rem;
    margin: auto;
    align-items: center;
}
#post_single_wrap .foot_wrap .pagenavi > li {
    display: flex;
    flex-flow: column;
}
#post_single_wrap .foot_wrap .pagenavi > li.prev {
    width: 25%;
    align-items: flex-start;
}
#post_single_wrap .foot_wrap .pagenavi > li.all {
    width: 50%;
    align-items: center;
}
#post_single_wrap .foot_wrap .pagenavi > li.next {
    width: 25%;
    align-items: flex-end;
}

#post_single_wrap .foot_wrap .pagenavi .btn {
    display: flex;
    align-items: center;
}

#post_single_wrap .foot_wrap .pagenavi .btn .arrow {
    /*width: 1rem;*/
    display: flex;
}
#post_single_wrap .foot_wrap .pagenavi .btn .arrow img {
    width: 100%;
    height: auto;
}
#post_single_wrap .foot_wrap .pagenavi .next .btn .arrow {
    margin-left: 2rem;
}
#post_single_wrap .foot_wrap .pagenavi .prev .btn .arrow {
    margin-right: 2rem;
}
#post_single_wrap .foot_wrap .pagenavi .btn span {
    font-size: 1.4rem;
}
    
#post_single_wrap .foot_wrap .pagenavi .next .btn span {
    display: none;
}
#post_single_wrap .foot_wrap .pagenavi .prev .btn span {
    display: none;
}
/*#post_single_wrap .foot_wrap .pagenavi .btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translate(-50%,0);
}*/


#post_single_wrap .img_layout.column2 {
    display: grid;
    grid-template-columns: repeat(2,calc(50% - 0.5rem));
    grid-gap: 1rem 1rem;
}

#post_single_wrap .post_con .info_table_wrap {
    margin-top: 10rem;
}
  
}
