@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


/*====================================================
root
====================================================*/

:root {
	--swl-font_family: "Lato", "Hiragino Kaku Gothic ProN", 'Noto Sans JP', "Hiragino Sans", "メイリオ",  sans-serif;
	--swl-sidebar_width: 280px;

	--color_main: #FFFFFF;
	--color_base: #F7FAFC;
	--color_accent: #245D9E;
	--color_dark: #2F3942;
	--color_dark_base: rgba(255, 255, 255, .1);
	--color_text_main: #333333;
	--color_text_sub: rgba(51, 51, 51, .4);
	--color_text_accent: #19507B;
	--color_text_dark: #FFFFFF;
	--color_text_dark_sub: rgba(255, 255, 255, .6);
	--color_border_main: #333333;
	--color_border_sub: rgba(0, 0, 0, .2);
	--color_border_accent: #CDDCE9;
	--color_border_dark_regular: rgba(255, 255, 255, .2);
	--color_border_dark_lighter: rgba(255, 255, 255, .1);


	--font_family_en: 'Lato', sans-serif;
	--font_family_ja: 'Noto Sans JP', sans-serif;
	--text_xxsmall: 1.1rem;
	--text_xsmall: 1.2rem;
	--text_small: 1.3rem;
	--text_regular: 1.4rem;
	--text_medium: 1.5rem;
	--text_semimedium: 1.6rem;
	--text_semilarge: 1.8rem;
	--text_large: 2.0rem;
	--text_medium-large: 2.4rem;
	--text_xlarge: 3.6rem;

	--header_pc_width: 162px;
}


/*====================================================
reset.css
====================================================*/

*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}


/*====================================================
common.css
====================================================*/

html {
	font-size: 62.5%;
	color: var(--color_text_main);
	overflow-x: hidden;
	font-weight: 400;
	letter-spacing: 0.1rem;
}
body {
	background-color: var(--color_main);
	font-family: var(--swl-font_family);
	height: auto;
}
ul {
	list-style-type: none;
	padding-left: 0px;
}
a {
	color: var(--color_text);
	text-decoration: none;
}
#content {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.wrapper {
	width: 100%;
}
.contents-wrapper {
	width: calc(100% - var(--header_pc_width));
	margin-left: var(--header_pc_width);
}
.top #content {
	padding: 0;
}

@media screen and (max-width:768px) {

	.contents-wrapper {
		width: 100%;
		margin-left: 0;
		margin-top: 110px;
	}

}



/*====================================================
header.css
====================================================*/

.contents-header {
	width: 162px;
	height: 100vh;
	position: fixed;
	z-index: 99;
	display: flex;
	align-items: center;
	flex-flow: column;
	border-right: 1px solid var(--color_border_sub);
	background-color: var(--color_main);
}
.contents-header h1 {
	width: 100%;
	height: 120px;
	border-bottom: 1px solid var(--color_border_sub);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 0 1rem;
}
.contents-header .nav_menu_box {
	width: 100%;
	height: 160px;
	border-top: 1px solid var(--color_border_sub);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.contents-header #nav_menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.contents-header #nav_menu .menu-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.contents-header #nav_menu.menu-open {
	transition: all 0.25s;
}
.contents-header #nav_menu.menu-open .menu-button {
	top: 8%;
	left: auto;
	right: 5%;
	transform: none;
}
.contents-header .nav_menu_box #nav_menu nav {
	display: none;
}
.contents-header .nav_menu_box #nav_menu.menu-open nav {
	display: block;
	padding: 12rem;
}
.contents-header #nav_menu.menu-open {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: #FFFFFF;
	opacity: 1;
}
.contents-header #nav_menu.menu-open ul {
	display: flex;
  justify-content: center;
  flex-direction: column;
}
.contents-header #nav_menu.menu-open ul li {
	border-bottom: 1px solid #f0f0f0;
}
.contents-header #nav_menu.menu-open ul li a
 {
	display: block;
	padding: 1.6rem 0;
}
.contents-header-yt {
	display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
	content: '';
	display: block;
	height: 2px;
	width: 36px;
	border-radius: 1px;
	background-color: var(--color_border_main);
	position: absolute;
}
.menu-button::before {
	bottom: 16px;
}
.menu-button::after {
	bottom: 8px;
}
.contents-header #nav_menu.menu-open .menu-button {
	transform: rotate(45deg);
}
.contents-header #nav_menu.menu-open .menu-button::before,
.contents-header #nav_menu.menu-open .menu-button::after {
	bottom: 0;
}
.contents-header #nav_menu.menu-open .menu-button::after {
	transform: rotate(90deg);
}
.contents-header #nav_menu.menu-open .contents-header-navigation-box {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	font-size: var(--text_semimedium);
}
.menu-cat-title {
	font-size: 3.6rem;
	padding-bottom: 1.6rem;
}
.menu-feature-title {
	font-size: 3.6rem;
	padding: 3.6rem 0 1.6rem;
}
.contents-header-catch {
	display: flex;
	flex: 1;
}

@media screen and (max-width:768px) {

	.contents-header{
		width: 100%;
		height: auto;
		padding: 2.4rem 2rem;
		flex-flow: row;
		top: 0;
		border-bottom: 1px solid #f0f0f0;
		transition: 0.5s all;
	}
	.contents-header.is-hide {
		top: -110px;
		transition: 0.5s all;
	}
	.contents-header h1 {
		border: none;
		height: 60px;
	}
	.contents-header h1 img {
		width: 100%;
		height: 100%;
	}
	.contents-header-catch {
		display: none;
	}
	.contents-header .nav_menu_box {
		width: 16%;
		height: 40px;
		border: none;
		position: relative;
	}
	.contents-header #nav_menu .menu-button {
		top: 60%;
	}
	.menu-button,
	.menu-button::before,
	.menu-button::after {
		width: 28px;
	}
	.menu-button::before {
		bottom: 14px;
	}
	.menu-button::after {
		bottom: 7px;
	}
	.contents-header-yt {
		display: block;
		width: 10%;
		text-align: center;
	}
	.contents-header-yt .fa-youtube:before {
		font-size: 2.6rem;
	}
	.contents-header .nav_menu_box #nav_menu.menu-open nav {
		padding: 8rem 4rem 4rem 4rem;
	}
	.contents-header #nav_menu.menu-open ul {
		display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
		text-align: left;
	}
	.contents-header #nav_menu.menu-open ul li {
		width: 40%;
		padding-left: 1.2rem;
	}
	#nav_menu.menu-open .contents-header-navigation-box.features li {
		width: 100%;
		text-align: left;
	}
	.menu-cat-title,
	.menu-feature-title {
		font-size: 3rem;
	}
}

@media screen and (max-width:540px) {
	.contents-header .nav_menu_box #nav_menu.menu-open nav {
		padding: 6rem 2.4rem 2.4rem 2.4rem;
	}
}


/*====================================================
pickup.css
====================================================*/

.article-pickup-wrapper.swiper {
	margin: 4rem;
	padding-bottom: 12rem;
}
.article-contents {
	position: relative;
	display: flex;
	align-items: center;
	opacity: .3;
}
.article-contents-box {
	width: 100%;
}
.article-contents .article-image {
	width: 100%;
	height: 619px;
	overflow: hidden;
}
.article-contents .article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-contents-detail-box {
	max-width: 660px;
	min-height: 272px;
	background-color: var(--color_main);
	position: absolute;
	bottom: -14em;
	padding: 4em 6em 0 3em;
	opacity: 0;
	transition: 0.5s all;
}
.article-contents-detail-box-block {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}
.article-categories-box {
	display: flex;
}
.article-categories-box::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: var(--color_accent);
	border-radius: 50%;
	margin-right: 0.6em;
	margin-top: 0.4rem;
}
.article-categories {
	font-size: var(--text_xsmall);
	font-weight: 600;
}
.article-categories::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 16px;
	background-color: #e0e0e0;
	margin: 0 0.8rem;
	vertical-align: middle;
}
.article-categories:last-of-type::after {
	display: none;
}
.article-categories:nth-child(n+3) {
	display: none;
}
.article-published-time {
	display: inline-block;
	font-size: var(--text_xsmall);
	font-weight: 400;
	letter-spacing: 0.1rem;
}
.article-title {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.8;
	padding: 1em 0 1.5em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.button-more {
	font-size: var(--text_medium);
}
.button-back::before {
	content: '';
	width: 20px;
	height: 5px;
	border-bottom: 1px solid var(--color_text);
	border-left: 1px solid var(--color_text);
	transform: skew(-45deg);
	display: inline-block;
	vertical-align: 4px;
	margin-right: 12px;
}
.button-more::after {
	content: '';
	width: 30px;
	height: 5px;
	border-bottom: 1px solid var(--color_text);
	border-right: 1px solid var(--color_text);
	transform: skew(45deg);
	display: inline-block;
	vertical-align: 3px;
	margin-left: 8px;
}
.article-contents.swiper-slide-active {
	opacity: 1;
}
.swiper-slide-active .article-contents-detail-box {
	opacity: 1;
}
.article-front-block {
	position: relative;
}
.article-front-block li::before {
	content: "";
	display: block;
	max-width: 660px;
	width: 100%;
  min-height: 272px;
  background-color: var(--color_main);
  position: absolute;
  bottom: -14em;
  padding: 4em 6em 0 3em;
	z-index: 0;
}

@media screen and (max-width:768px) {
	.article-contents-detail-box {
		width: 100%;
		max-width: 100%;
		min-height: 330px;
		padding: 5em 0;
		bottom: -20rem;
	}
	.article-front-block li::before {
		width: 100%;
		min-height: 330px;
    max-width: 100%;
    padding: 5em 0;
    bottom: -20rem;
	}
	.article-pickup-wrapper.swiper {
		margin: 3.2rem;
    padding-bottom: 20rem;
	}
}

@media screen and (max-width:540px) {

	.article-pickup-wrapper {
		margin: 0;
	}
	.article-contents {
		width: 100% !important;
	}
	.article-contents .article-image {
		height: 50vh;
		padding: 0;
	}
	.article-contents-detail-box {
		position: absolute;
		padding: 2.4rem 1.6rem;
		min-height: 180px;
		bottom: -16rem;
		z-index: 1;
	}
	.article-front-block li::before {
		padding: 2.4rem 1.6rem;
		min-height: 190px;
		bottom: -16rem;
		z-index: 0;
	}
	.article-title {
		font-size: var(--text_large);
		display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
		padding: 0;
		margin: 1.6rem 0;
		font-weight: 600;
	}
	.article-categories,
	.article-published-time,
	.button-more {
		font-size: var(--text_xsmall);
	}
	.button-more::after {
		width: 24px;
	}
	.article-pickup-wrapper {
		padding-bottom: 16rem;
	}
	.article-pickup-wrapper.swiper {
		margin: 1.6rem;
    padding-bottom: 18rem;
	}
}



/*====================================================
tags.css
====================================================*/

.section-tags {
	background-color: var(--color_base);
	padding: 6em;
	margin-bottom: 10em;
}
.section-tags h2 {
	width: 160px;
	padding-bottom: 4em;
}
.tag-box .tags {
	font-size: var(--text_medium);
	font-weight: 500;
	background-color: var(--color_main);
	display: inline-block;
	padding: 0.4em 0.8em;
	border-radius: 50px;
	margin-right: 0.4em;
	margin-bottom: 1em;
	border: 1px solid var(--color_border_accent);
}
.tag-box .tags a {
	color: var(--color_accent);
}
.tag-box .tags:hover {
	background-color: var(--color_accent);
	border: 1px solid var(--color_accent);
	transition: 0.3s;
}
.tag-box .tags a:hover {
	color: var(--color_main);
}

@media screen and (max-width:768px) {
	.section-tags {
		padding: 4rem;
	}
}


@media screen and (max-width:540px) {

	.section-tags {
		padding: 6rem 2.4rem;
		margin-bottom: 6rem;
	}
	.section-tags h2 {
		width: 140px;
	}
	.tag-box .tags {
		font-size: var(--text_small);
		font-weight: 600;
	}

}



/*====================================================
article-cards.css
====================================================*/

.section-wrapper {
	margin-left: 6em;
}
.section-categories {
	margin-bottom: 10em;
}
.section-categories h2 {
	margin-bottom: 2.4rem;
	font-size: var(--text_medium-large);
}
.section-categories h2 span {
	font-size: var(--text_semimedium);
	opacity: .4;
	text-transform: capitalize;
	vertical-align: middle;
	padding-left: 2.4rem;
	font-weight: 400;
}
.categories-box	{
	width: 100%;
	display: flex;
	gap: 2.4em;
	overflow-x: scroll;
	overflow-y: hidden;
	padding-bottom: 1.6em;
	scrollbar-width: none;
}
.categories-box::-webkit-scrollbar {
  display: none;
}
.article-cards {
	flex: 0 0 20%;
	text-align: left;
	position: relative;
}
.article-cards .p-postList__link {
	height: 100%;
}
.article-cards .article-image {
	padding-top: 56.25%;
	position: relative;
	overflow: hidden;
}
.article-cards .article-image img {
	width: 100%;
  height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
}
.article-cards .article-image img,
.c-postThumb__img {
	-webkit-transform: scale(1.01) perspective(0);
  transform: scale(1.01) perspective(0);
  transition: -webkit-transform .9s;
  transition: transform .9s;
  transition: transform .9s,-webkit-transform .9s;
}
.aricle-cards-detail-box {
	display: flex;
	flex-direction: column;
	position: static;
}
.aricle-cards-detail-box .article-title {
	font-size: var(--text_semimedium);
	line-height: 1.6;
	margin: 1em 0;
	padding: 0;
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 500;
}
.aricle-cards-detail-box .article-info {
	display: inline-flex;
	align-items: center;
	gap: 1.6em;
	font-size: var(--text_xsmall);
	position: absolute;
	bottom: -1.6em;
}

@media screen and (max-width:1440px) {
	.article-cards {
		flex: 0 0 36%;
	}
}
@media screen and (max-width:1024px) {
	.article-cards {
		flex: 0 0 30%;
	}
	.section-categories h2 {
		margin-left: 4rem;
	}
	.categories-box li:first-child {
		margin-left: 4rem;
	}
	.categories-box li:last-child {
		margin-right: 4rem;
	}
	.section-wrapper {
		margin-left: 0;
	}
}
@media screen and (max-width:860px) {
	.article-cards {
		flex: 0 0 40%;
	}
}
@media screen and (max-width:540px) {

	.article-cards {
		flex: 0 0 280px;
	}
	.section-categories h2 {
		margin-left: 2.4rem;
		font-size: var(--text_large);
	}
	.section-categories h2 span {
		font-size: var(--text_regular);
		padding-left: 1.2rem;
		vertical-align: 2px;
	}
	.categories-box li:first-child {
		margin-left: 2.4rem;
	}
	.categories-box li:last-child {
		margin-right: 2.4rem;
	}
	.aricle-cards-detail-box .article-title {
		font-size: var(--text_medium);
		display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
		font-weight: 600;
	}
	.aricle-cards-detail-box .article-info {
		position: static;
	}
	.aricle-cards-detail-box .article-title {
		margin: 1em 0;
	}
	.categories-box.features-box::before,
	.categories-box.features-box::after {
		display: none !important;
	}

}



/*====================================================
section-features.css
====================================================*/

.section-to-features {
	padding: 4rem;
	border: 1px solid var(--color_border_main);
	position: relative;
	margin: 0 6em 10em 0;
}
.section-to-features h2 {
	font-size: 4rem;
  font-weight: 500;
	letter-spacing: 0.05em;
	padding-right: 4rem;
	padding-bottom: 2rem;
	display: inline-block;
	position: absolute;
	top: -4rem;
	left: -0.6rem;
	background-color: var(--color_main);
}
.section-to-features h2 span {
	font-size: var(--text_semimedium);
  font-weight: 500;
  vertical-align: middle;
  display: inline-block;
  padding-left: 2.8rem;
}
.section-to-features-box-list {
	position: relative;
	overflow: hidden;
}
.section-to-features-box-list a {
	display: block;
}
.section-to-features-box-list-thumbnail {
	width: 100%;
	height: 400px;
}
.section-to-features-box-list-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-to-features-box-list-details {
	position: absolute;
	bottom: 0;
	padding: 0 4rem 4rem;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
	width: 100%;
  height: 60%;
	display: flex;
  flex-direction: column;
  justify-content: flex-end;
	color: var(--color_text_dark);
}
.section-to-features-box-list-details-meta {
	padding-bottom: 1.4rem;
	font-size: var(--text_small);
	letter-spacing: 0.15em;
}
.section-to-features-box-list-details-titles {
	font-size: var(--text_large);
	font-weight: 600;
	display: flex;
}
.section-to-features-box-list-details-title::before {
	content: '-';
	margin: 0 1.4rem;
}

@media screen and (max-width:1140px) {
	.section-to-features {
		margin: 0 4rem 6rem 4rem;
	}
	.section-to-features-box-list-details-titles {
		flex-direction: column;
		gap: 0.8rem;
	}
	.section-to-features-box-list-details-title::before {
		margin-left: 0;
	}
}

@media screen and (max-width:768px) {
	.section-to-features {
		margin: 0 4rem 8rem;
		padding: 3.2rem 2.4rem 2.4rem;
	}
	.section-to-features h2 {
		font-size: 3.6rem;
	}
	.section-to-features h2 span {
		padding-left: 1.6rem;
	}
	.section-to-features-box-list-details {
		padding: 0 2.4rem 3.2rem;
	}
}

@media screen and (max-width:540px) {
	.section-to-features-box-list-details-titles {
		font-size: var(--text_semimedium);
	}
	.section-to-features {
		margin: 0 1.6rem 8rem;
    padding: 3.2rem 1.6rem 1.6rem;
	}
	.section-to-features h2 {
    font-size: 2.8rem;
		top: -2.5rem;
		padding: 0 1.6rem;
	}
	.section-to-features h2 span {
    padding-left: 1.6rem;
		font-size: var(--text_xsmall);
	}
	.section-to-features-box-list-details {
		padding: 0 2.4rem 2.4rem;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    height: 80%;
	}
	.section-to-features-box-list-details-pages {
		font-size: var(--text_xsmall);
	}
	.section-to-features-box-list-details-titles {
		display: inline;
    line-height: 1.8;
	}
	.section-to-features-box-list-thumbnail {
		height: 360px;
	}
	.section-to-features-box-list-details-subtitle,
	.section-to-features-box-list-details-title {
		display: inline;
	}
}



/*====================================================
about.css
====================================================*/

.section-about {
	width: 100%;
	background-image: url(/wp-content/themes/swell_child/assets/images/about-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 6em;
	padding: 8em 4em 4em;
	text-align: center;
}
.about-message-box {
	max-width: 1100px;
	width: 100%;
	background-image: url(/wp-content/themes/swell_child/assets/images/about-illust-birds.png),
					  url(/wp-content/themes/swell_child/assets/images/about-illust-sun.png),
					  url(/wp-content/themes/swell_child/assets/images/about-illust-girl.png),
					  url(/wp-content/themes/swell_child/assets/images/about-illust-mountain.png);
	background-position: 60px 20px,
						 right 30px top,
						 left 20px bottom 10px,
						 right bottom 25px;
	background-size: 60px,
					 130px,
					 140px,
					 210px;
	background-repeat: no-repeat;
	margin: 0 auto;
	padding: 6em 0 12em;
}
.about-message-box .about-message-box-lead {
	display: flex;
	justify-content: center;
	margin-bottom: 6em;
}
.about-message-box .about-message-box-lead img {
	width: 300px;
}
.about-message-box .about-message-box-text {
	text-align: center;
	font-size: var(--text_regular);
	letter-spacing: 0.15em;
	color: #fff;
	line-height: 2.8;
	font-weight: 400;
}
.about-message-box-text span.br {
	display: block;
}

@media screen and (max-width:1100px) {
	.about-message-box {
		padding: 6em 0 16em;
		background-position: 60px 20px, right 30px top, left 0px bottom 0px, right bottom 25px;
	}
}

@media screen and (max-width:768px) {
	.section-about {
		padding: 60px 20px 40px;
	}
	.about-message-box {
		background-size: 60px, 150px, 140px, 200px;
    background-position: 60px 40px, right 30px top, left 20px bottom, right 20px bottom 15px;
    padding: 90px 0 160px;
	}
	.about-message-box .about-message-box-lead {
		margin-bottom: 24px;
	}
	.about-message-box .about-message-box-lead img {
		width: 280px;
	}
}
@media screen and (max-width:540px) {
	.section-about {
		padding: 20px 0;
		background-position: center bottom;
	}
	.about-message-box {
		background-size: 40px, 110px, 109px, 150px;
		background-position: left 40px top 45px, right 38px top 20px, left 20px bottom 10px, right 20px bottom 35px;
		padding: 130px 0 150px;
	}
	.about-message-box .about-message-box-lead img {
		width: 240px;
	}
	.about-message-box .about-message-box-text  {
		text-align: left;
		font-size: 1.4rem;
		max-width: 280px;
		margin: 0 auto;
		padding-bottom: 2.4rem;
		line-height: 2.4;
	}
	.about-message-box .about-message-box-lead {
		margin-bottom: 5rem;
	}
	.about-message-box-text span.br {
		display: inline;
	}
}



/*====================================================
Footer.css
====================================================*/

.setouchi-footer {
	background-color: #34383A;
	color: #fff;
	margin-top: auto;
}
.setouchi-footer li a {
	color: #fff;
}
.footer-ul-group1 {
	display: flex;
	padding: 40px 80px 0;
}
.footer-ul-title {
	font-size: 1.4rem;
	font-weight: 700;
	padding-bottom: 20px;
}
.footer-sns-box {
	flex: 1;
}
.footer-sns-box .footer-sns {
	display: flex;
}
.footer-sns-box .footer-sns .footer-sns-icon {
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
	overflow: hidden;
}
.footer-sns-box .footer-sns .footer-sns-icon_01 {
	background-image: url(/wp-content/themes/swell_child/assets/images/icon-youtube.svg);
	margin-right: 32px;
}
.footer-sns-box .footer-sns .footer-sns-icon_02 {
	background-image: url(/wp-content/themes/swell_child/assets/images/icon-twitter.svg);
}
.footer-sns-box .footer-sns .footer-sns-icon a {
	color: rgb(255,255,255,0);
}
.footer-categories-box {
	flex: 1;
	padding-right: 80px;
}
.footer-categories-box .footer-ul-categories a {
	display: block;
	font-size: 1.3rem;
	padding-bottom: 12px;
	border-bottom: 1px solid rgb(255, 255, 255, 0.2);
	margin-bottom: 12px;
	position: relative;
}
.footer-categories-box .footer-ul-categories a::after {
	content: '';
	position: absolute;
	right: 0;
	top: 4px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.footer-categories-box .footer-ul-categories:last-child {
	margin-bottom: 0;
}
.footer-tags-box {
	flex: 2;
}
.footer-tags-box .footer-tags li {
	font-size: 1.2rem;
	display: inline-block;
	background-color: rgb(255, 255, 255, 0.2);
	border-radius: 50px;
	margin-right: 4px;
	margin-bottom: 10px;
}
.footer-tags-box .footer-tags li a {
	color: rgb(255, 255, 255, 0.8);
	padding: 3px 6px;
	display: block;
}

.footer-ul-group2 {
	border-top: 1px solid rgb(255, 255, 255, 0.1);
	margin-top: 40px;
	padding: 16px 0;
	display: flex;
	justify-content: space-between;
}
.footer-ul-group2 .footer-company {
	padding-left: 80px;
}
.footer-ul-group2 .footer-company li {
	display: inline-block;
	font-size: 1.3rem;
	margin-right: 32px;
}
.footer-ul-group2 small {
	color: rgb(255, 255, 255, 0.5);
	font-size: 1.2rem;
	padding-right: 80px;
}
@media screen and (max-width:1024px) {
	.footer-tags-box {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.footer-ul-group1 {
		padding: 40px 32px 0;
	}
	.footer-ul-group2 .footer-company {
		padding-left: 32px;
	}
	.footer-ul-group2 small {
		padding-right: 32px;
	}
}
@media screen and (max-width:540px) {
	.footer-ul-group1 {
		display: block;
		padding: 50px 24px 0;
	}
	.footer-ul-group1 .footer-sns-box .footer-ul-title {
		display: none;
	}
	.footer-sns-box .footer-sns {
		justify-content: center;
		margin-bottom: 40px;
	}
	.footer-sns-box .footer-sns .footer-sns-icon {
		margin-right: 60px;
	}
	.footer-sns-box .footer-sns .footer-sns-icon:last-of-type {
		margin-right: 0;
	}
	.footer-categories-box {
		padding-right: 0;
		margin-bottom: 32px;
	}
	.footer-categories-box .footer-categories {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.footer-categories-box .footer-ul-categories {
		width: 100%;
	}
	.footer-ul-group2 {
		justify-content: center;
		flex-wrap: wrap;
		padding: 0 0 8px;
		margin-top: 0;
		border: none;
	}
	.footer-ul-group2 .footer-company {
		padding-left: 0;
		width: 100%;
		display: flex;
	}
	.footer-ul-group2 .footer-company li {
		margin-right: 0;
		flex: 1;
		text-align: center;
	}
	.footer-ul-group2 small {
		padding-right: 0;
		margin-top: 16px;
		font-size: 1.1rem;
	}
}



/*====================================================
Features.css
====================================================*/

.features-heading-section {
	height: 120px;
	padding: 0 4em;
	display: flex;
	justify-content: right;
	align-items: center;
	font-size: var(--text_medium);
}
.features-heading-section.articles {
	justify-content: space-between;
	position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  background-color: var(--color_main);
  z-index: 2;
  border-bottom: 1px solid var(--color_border_sub);
}
.features-heading-section-titles {
	display: inline-flex;
}
.features-heading-section h2 {
	font-weight: 400;
}
.features-heading-section h2::before {
	content: '';
	display: inline-block;
	width: 1px;
	height: 20px;
	background-color: var(--color_border_sub);
	margin: -4px 2em;
}
.features-about-section,
.features-article-section{
	margin: 0 6em;
}
.features-about-section {
	display: flex;
	align-items: center;
	margin-top: 12em;
	margin-bottom: 12em;
}
.features-about-section-details {
	padding-left: 12em;
	max-width: 700px;
	width: 100%;
}
.features-about-section-details-introduction {
	display: inline-block;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	padding-bottom: 1.4rem;
	border-bottom: 2px solid var(--color_border_main);
	margin-bottom: 3em;
}
.features-about-section-details-heading {
	font-size: 2.6rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 2em;
}
.features-about-section-details-text {
	font-size: var(--text_regular);
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2;
}
.features-article-section {
	background-color: var(--color_base);
	position: relative;
	padding: 3rem 0 6rem;
	margin-right: -6rem;
	padding-right: 6rem;
	margin-bottom: 10rem;
	text-align: center;
}
.features-article-section h3 {
	font-size: 4.4rem;
	font-weight: 400;
	position: absolute;
	top: -3.6rem;
}
.features-article-section span {
	font-size: var(--text_semimedium);
	font-weight: 500;
	vertical-align: middle;
	display: inline-block;
	padding-left: 2.8rem;
}
.categories-box.features-box {
	padding: 3rem 6rem 3rem 6rem;
	flex-wrap: wrap;
	margin-right: 0;
}
.categories-box.features-box::before,
.categories-box.features-box::after {
	display: block;
	content:"";
	width: 23.19%;
}
.categories-box.features-box::before {
	order: 1;
}
.features-box {
	gap: 6rem 0;
	justify-content: space-between;
}
.features-cards {
	flex-basis: 23.19%;
}
.features-cards .article-image {
	padding-top: 75%;
}
.futures-articles-more {
	display: inline-flex;
	align-items: center;
	padding: 1.2rem 3.6rem 1.2rem 4rem;
	border: 1px solid var(--color_border_main);
}
.features-footer {
	text-align: center;
}
.features-footer-logo {
	display: inline-flex;
	justify-content: center;
	margin-bottom: 4rem;
}
.features-footer-logo img {
	width: 180px;
}
.features-footer-sns {
	font-size: 2.4rem;
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-bottom: 6rem;
}
.features-footer-details {
	display: flex;
	justify-content: space-between;
	padding: 0 6rem 4rem;
}
.features-footer-details-others {
	width: 50%;
	text-align: left;
}
.features-footer-details-logo {
	width: 140px;
	height: max-content;
}
.features-cover-section img,
.features-cover-section.articles img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.features-cover-section img {
	max-height: 360px;
}
.features-cover-section.articles img {
	max-height: 280px;
}
.features-article-section.articles {
	margin-right: 0;
	padding-top: 6rem;
	background-color: var(--color_main);
}
.categories-box.features-box.articles {
	padding: 0;
	padding-bottom: 4rem;
}
.features-article-section.articles h3 {
	position: static;
	text-align: left;
	margin-bottom: 4rem;
}
.category-sort {
	display: flex;
	justify-content: flex-start;
	font-size: var(--text_regular);
	margin-bottom: 6rem;
}
.category-sort li {
	padding: 0.6rem 1.6rem;
	border: 1px solid var(--color_border_accent);
	border-radius: 99px;
	margin-right: 0.8rem;
}
.category-sort li.current {
	background-color: var(--color_accent);
	border: 1px solid var(--color_accent);
}
.category-sort li.current a {
	color: var(--color_text_dark);
}
.category-sort.top {
	margin: 3rem 6rem;
}
.features-pagenation {
	display: inline-flex;
	padding-top: 4rem;
}
.features-pagenation [class*=page-numbers].current {
	color: var(--color_text_dark);
	background-color: var(--color_accent);
	padding-left: 0;
}
.features-pagenation [class*="page-numbers"] {
	border: 1px solid var(--color_accent);
	color: var(--color_text_accent);
	background-color: var(--color_main);
}
.features-footer.top {
	margin-top: 0;
}
@media screen and (max-width:1336px) {
	.features-article-section {
		margin: 6rem 0 6rem;
		padding: 6rem 0 6rem;
	}
	.features-article-section .categories-box li:first-child,
	.features-article-section .categories-box li:last-child {
		margin: 0;
	}
	.features-cards {
		flex-basis: 31.5%;
	}
	.categories-box.features-box::before,
	.categories-box.features-box::after {
		width: 30%;
	}
	.features-article-section h3 {
		margin-left: 4rem;

	}
	.category-sort {
		margin-left: 4rem;
		margin-bottom: 2rem;
	}
	.category-sort.top {
		margin: 1.2rem 6rem 2rem;
	}
	.categories-box.features-box.articles {
		padding: 4rem;
	}
	.features-article-section.articles {
		margin: 0;
	}
	.features-article-section.articles h3{
		margin-bottom: 3rem;
	}
}
@media screen and (max-width:1140px) {
	.features-about-section-images {
		width: 80%;
	}
	.features-about-section-details {
		padding-left: 8rem;
	}
}
@media screen and (max-width:1024px) {
	.features-box {
		gap: 6rem 0;
	}
	.features-about-section {
		flex-direction: column-reverse;
	}
	.features-about-section-details {
		padding: 0;
		margin: 0 auto;
	}
	.features-about-section-images {
		padding: 0;
		width: 100%;
		margin-top: 8rem;
	}
	.features-cards {
		flex-basis: 48%;
	}
}
@media screen and (max-width:768px) {
	.categories-box.features-box {
		padding: 2rem 4rem 2rem 4rem;
	}
	.features-article-section h3 {
		margin-left: 4rem;
	}
	.features-cover-section img {
		height: 320px;
	}
	.features-cover-section.articles img {
		height: 200px;
	}
	.features-about-section {
		margin-top: 8em;
	}
	.features-heading-section {
		justify-content: center;
	}
	.features-heading-section {
		height: 80px;
		padding: 0 2em;
	}
	.features-article-section.articles h3 {
		margin-bottom: 2rem;
	}
	.category-sort.top {
		margin: 0 4rem 2rem;
	}
}
@media screen and (max-width:540px) {
	.features-heading-section {
		padding: 0 1.6rem;
		font-size: var(--text_small);
		height: 6rem;
		justify-content: center;
	}
	.features-heading-section.articles .button-back.sp {
		position: fixed;
		bottom: 2rem;
		right: 2rem;
		width: 120px;
		background-color: var(--color_main);
		color: var(--color_dark);
		padding: 1.2rem 1.2rem 1.2rem 3rem;
		border-radius: 120px;
    text-align: center;
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
		font-weight: 600;
		font-size: var(--text_xsmall);
		transition: 0.5s all;
	}
	.features-heading-section.articles .button-back.sp::before {
		position: absolute;
		bottom: 1rem;
		width: 14px;
		border-bottom: 1px solid var(--color_dark);
    border-left: 1px solid var(--color_dark);
		left: 1.6rem;
    top: 43%;
	}
	.features-heading-section.articles .button-back.sp.is-floating-hide {
		bottom: -5rem;
		transition: 0.5s all;
	}
	.features-heading-section-titles {
		display: flex;
    width: 100%;
		justify-content: center;
	}
	.features-about-section {
		margin: 4rem 0;
	}
	.features-about-section-details-text {
		font-size: var(--text_small);
	}
	.features-about-section-details-introduction {
		margin-bottom: 2.6em;
		padding-bottom: 1rem;
	}
	.features-about-section-details {
		padding: 2.4rem 4rem 0;
	}
	.features-about-section-details-heading {
		font-size: 2.2rem;
		margin-bottom: 1.6em;
	}
	.features-about-section-images {
		padding: 0 2.4rem 6rem;
	}
	.features-article-section {
		margin-left: 0;
		margin-bottom: 0;
	}
	.features-article-section h3 {
		font-size: 3.4rem;
		top: -2.8rem;
		margin-left: 2.4rem;
	}
	.features-article-section span {
		font-size: var(--text_small);
	}
	.categories-box.features-box {
		padding: 0 2.8rem 6rem;
		flex-direction: column;
	}
	.features-box .article-cards {
		width: 100%;
		flex: 0 0 100%;
	}
	.features-box li:first-child {
		margin-left: 0;
	}
	.features-footer {
		margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid #f0f0f0;
	}
	.features-footer-details {
		flex-direction: column-reverse;
		padding: 0 2.4rem 4rem;
		align-items: center;
		gap: 2rem;
	}
	.features-footer-details-logo {
		width: 100px;
	}
	.features-footer-details-others {
		width: 100%;
		text-align: center;
	}
	.features-article-section.articles {
		margin: 0;
		padding: 0;
	}
	.features-article-section.articles h3 {
		margin: 4rem 2.4rem 2.4rem;
	}
	.features-article-section.articles .category-sort {
		overflow-x: scroll;
		margin-bottom: 2rem;
		margin-left: 2.4rem;
	}
	.features-article-section.articles .category-sort li {
		white-space: nowrap;
		font-size: var(--text_small);
	}
	.categories-box.features-box.articles {
		padding: 2.4rem;
	}
	.category-sort.top {
		overflow-x: scroll;
    margin: 0 0 4rem;
    margin-left: 2.4rem;
	}
	.category-sort.top li {
		white-space: nowrap;
    font-size: var(--text_small);
	}
}




/*====================================================
single.css
====================================================*/

/* style_reset */
.contents-article-inner .post_content > h2 {
	margin-left: 0;
	margin-right: 0;
}
.contents-article-inner .post_content > *,
.contents-article-inner .wp-block-image {
	margin-bottom: 0;
}
.contents-article-inner .post_content h2,
.contents-article-inner .post_content h3,
.contents-article-inner .post_content h4 {
	margin: 0;
}
.contents-article-inner .c-categoryList__link:last-of-type::after {
	content: "";
}
.contents-article-inner .p-articleThumb__img, .p-articleThumb__youtube {
	box-shadow: none;
}
.contents-article-inner .c-categoryList__link {
	background: none;
}
.contents-article-inner .p-articleFoot .c-tagList__link {
	background: none;
	margin: 0;
	padding: 0;
}
.contents-article-inner .l-articleBottom__section {
	margin-top: 0;
}
.contents-article-inner .l-articleBottom .p-postList.-type-card {
	margin: 0;
}
.contents-article-inner .l-articleBottom .p-postList__thumb {
	box-shadow: none;
}
.hov-flash-up:hover,
.p-blogCard:hover {
	box-shadow: none;
	animation: none;
}
.contents-article-inner [data-type=type3] .p-blogCard__caption {
	display: none;
}
.contents-article-inner .c-secTitle {
	border: none;
	padding: 0;
}
.contents-article-inner .l-articleBottom .-type-card .p-postList__item {
	padding: 0;
}
.contents-article-inner .l-articleBottom .p-relatedPosts .p-postList__item {
	margin-bottom: 0;
}
.contents-article-inner .l-articleBottom .p-postList__title+.p-postList__meta {
	margin-top: 0;
}
.contents-article-inner .l-articleBottom .p-postList__body {
	position: static;
}
.contents-article-inner .l-articleBottom .c-postThumb__figure:before {
	padding-top: 0;
}
/* style_reset-end */


.contents-article-inner {
	margin-top: 10rem;
}
.contents-article-inner .c-postTitle,
.contents-article-inner .p-articleMetas {
	max-width: 800px;
	margin: 0 auto;
	gap: 2rem 6rem;
}
.contents-wrapper .contents-article-inner .c-categoryList:before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--color_accent);
	border-radius: 50%;
	margin-right: 0.8rem;
}
.contents-article-inner .c-postTitle__ttl {
	font-size: 2.7vw;
	font-weight: 400;
	margin-bottom: 6rem;
	line-height: 1.8;
}
.contents-article-inner .c-categoryList__link {
	color: var(--color_text_main);
	font-size: 1.4em;
	margin: 0;
	padding: 0;
}
.contents-article-inner .c-categoryList__link::after {
	content: "|";
	margin: 0 0.8rem 0 0.2rem;
	opacity: .3;
}
.contents-article-inner .p-articleMetas {
	margin-bottom: 8rem;
	font-size: 1.4em;
}
.contents-article-inner .c-postTimes {
	gap: 1rem;
}
.contents-article-inner .c-postTimes__modified,
.contents-article-inner .c-postTimes__posted {
	vertical-align: 1px;
}
.contents-article-inner .c-postTimes__posted::before {
	content: '投稿:';
	opacity: .6;
}
.contents-article-inner .c-postTimes__modified::before {
	content: '更新:';
	opacity: .6;
}
.contents-article-inner .p-articleThumb {
	margin-bottom: 12rem;
}
.contents-article-inner .post_content {
	max-width: 800px;
	margin: 0 auto;
}
.contents-article-inner .wp-block-image,
.contents-article-inner figure.wp-block-gallery.has-nested-images {
	margin: 6rem 0;
}
.contents-article-inner .post_content h2 {
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin: 8rem 0 4rem;
}
.contents-article-inner .post_content h3 {
	font-size: 2rem;
	font-weight: 600;
	margin: 3.2rem 0;
	padding-left: 1.4rem;
}
.contents-article-inner .post_content h3::before {
	content: '';
	border-left: 3px solid #444;
	height: 100%;
}
.contents-article-inner .post_content h4,
.contents-article-inner .post_content h5,
.contents-article-inner .post_content h6 {
	font-size: 1.8rem;
	margin: 2.4rem 0;
}
.contents-article-inner .post_content p {
	padding-bottom: 0.2rem;
}
.contents-article-inner .p-articleFoot {
	border: none;
	margin: 8rem 0 12rem;
	padding: 6rem 0;
	background: var(--color_base);
}
.contents-article-inner .p-articleFoot .c-categoryList::before {
	content: 'Categories';
	display: block;
	width: 100%;
  height: auto;
  background: none;
  color: var(--color_text_main);
	opacity: .4;
  font-size: 1.6rem;
  padding-bottom: 2rem;
  line-height: 1.5;
	font-weight: 600;
	font-family: "lato" !important;
}
.contents-article-inner .p-articleFoot .c-categoryList .c-categoryList__link {
	font-size: 1.4rem;
}
.contents-article-inner .p-articleFoot .c-categoryList .c-categoryList__link:first-of-type  {
	font-weight: 700;
}
.contents-article-inner .p-articleFoot .c-tagList::before {
	content: 'Tags';
	display: block;
	width: 100%;
  height: auto;
  background: none;
  color: var(--color_text_main);
	opacity: .4;
  font-size: 1.6rem;
  padding-bottom: 2rem;
  line-height: 1.5;
	font-weight: 600;
	font-family: "lato" !important;
}
.contents-article-inner .p-articleFoot .p-articleMetas {
	margin-bottom: 0;
}
.contents-article-inner .p-articleFoot .p-articleMetas {
	gap: 4rem;
}
.contents-article-inner .p-articleFoot .c-tagList__link {
	border: 1px solid var(--color_border_accent);
	padding: 0.8rem 1.2rem;
	color: var(--color_accent);
	background-color: var(--color_main);
	border-radius: 99px;
	margin-right: 0.8rem;
	font-weight: 600;
	font-size: 1.2rem;
}
.contents-article-inner .l-articleBottom {
	padding: 0 6rem 12rem 6rem;
}
.contents-article-inner .p-postList.-type-card,
.contents-article-inner .p-postList.-type-thumb {
	flex-wrap: nowrap;
	overflow-x: scroll;
}
.contents-article-inner .p-relatedPosts .p-postList__item {
	min-width: 300px;
}
.contents-article-inner [data-type=type3] .p-blogCard__inner {
	box-shadow: none;
	border: 1px solid var(--color_border_sub);
}
.contents-article-inner .l-articleBottom .c-postTimes__posted::before {
	content: '';
}
.contents-article-inner .swell-block-postLink .p-blogCard {
	margin: 4rem 0 !important;
}
.shop-info {
	border: 1px solid var(--color_border_sub);
	padding: 4rem;
	margin-top: 10rem;
	align-items: center;
}
.shop-info.wp-block-columns {
	align-items: center !important;
	gap: 4rem;
}

.shop-info .wp-block-column pre {
	padding: 0;
	margin: 0;
	font-size: var(--text_semimedium);
	font-weight: 600;
}
.shop-info .wp-block-column p {
	padding: 0;
	margin: 1.6rem 0;
	font-size: var(--text_small);
}
.shop-info-map .wp-block-column p {
	display: flex;
	position: relative;
}
.shop-info-map .wp-block-column p a {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	padding-left: 1.8rem;
	font-size: var(--text_regular);
	font-weight: 600;
	color: var(--color_text_accent);
}
.shop-info-map .wp-block-column p img {
	object-fit: contain;
	margin-right: 0.4rem;
	margin-top: 0.3rem;
}
#content .post_content .c-tabList {
	border-top: none;
}
.contents-article-inner .p-articleMetas__termList {
	gap: 1rem 0;
}

@media screen and (max-width:1024px) {
	.contents-article-inner {
		margin-top: 6rem;
	}
	.contents-article-inner .c-postTitle,
	.contents-article-inner .p-articleMetas {
		padding: 0 4rem;
		gap: 1rem 6rem;
	}
	.contents-article-inner .c-postTitle__ttl {
		margin-bottom: 4rem;
		font-size: 3.2vw;
		line-height: 1.6;
	}
	.contents-article-inner .p-articleThumb {
		margin-bottom: 6rem;
	}
	.contents-article-inner .post_content {
		padding: 0 4rem;
	}
	.contents-article-inner .p-articleFoot {
		margin: 8rem 0 8rem;
	}
	.contents-article-inner .l-articleBottom {
		padding: 0 0 8rem 0;
	}
	.contents-article-inner .c-secTitle {
		margin-left: 4rem;
	}
	.shop-info .wp-block-column {
		width: 100%;
	}
}
@media screen and (max-width:540px) {

	.contents-article-inner {
		margin-top: 0;
	}
	.contents-article-inner .c-postTitle__ttl {
    font-size: 6.8vw;
		margin: 4rem 2.4rem 4rem;
		line-height: 1.5;
		font-weight: 600;
	}
	.contents-article-inner .p-articleMetas {
		margin: 0 2.4rem 4rem;
		gap: 1rem;
	}
	.p-articleMetas.-top .p-articleMetas__termList {
		gap: 1rem 0;
	}
	.contents-article-inner .c-categoryList__link,
	.contents-article-inner .c-postTimes {
		font-size: var(--text_small);
	}
	.contents-article-inner .post_content {
		margin: 0 2.4rem;
		padding: 0;
	}
	.contents-article-inner .post_content h2 {
		font-size: 2.4rem;
		font-weight: 600;
	}
	.contents-article-inner .post_content h3 {
		font-size: 1.8rem;
	}
	.contents-article-inner .c-postTitle,
	.contents-article-inner .p-articleMetas {
		padding: 0;
	}
	.contents-wrapper .p-articleMetas .c-categoryList:before {
		margin-right: 0.8rem;
		padding-bottom: 1rem;
	}
	.contents-article-inner .p-articleFoot .c-tagList::before {
		padding-bottom: 1rem;
	}
	.shop-info.wp-block-columns {
		flex-direction: column;
	}
	.contents-article-inner .p-articleFoot {
		margin: 8rem 0;
	}
	.contents-article-inner .c-secTitle {
		margin-left: 2.4rem;
	}
	.contents-article-inner .p-articleThumb {
		margin-bottom: 6rem;
	}
}



/*====================================================
archive.css
====================================================*/

.contents-wrapper .c-pageTitle {
	margin: 6rem 6rem 0 6rem;
  font-size: var(--text_medium-large);
}
.contents-wrapper .c-pageTitle__subTitle {
	display: none;
}
.contents-wrapper .c-pageTitle__inner {
	padding: 0;
}
.contents-wrapper .-type-card .p-postList__item {
	padding: 0;
}
.contents-wrapper .categories-box .c-postThumb__figure:before {
	padding-top: 0;
}
.contents-wrapper .categories-box .p-postList__body {
	position: static;
}
.contents-wrapper .c-pagination {
	margin: 6rem 0 12rem 0;
}
.contents-wrapper [class*=page-numbers].current {
	color: var(--color_text_dark);
	background-color: var(--color_accent);
	padding-left: 0;
}
.contents-wrapper [class*="page-numbers"] {
	border: 1px solid var(--color_accent);
	color: var(--color_text_accent);
	background-color: var(--color_main);
}
.contents-wrapper .p-pickupBanners__item .c-bannerLink,
.contents-wrapper .p-postList__thumb {
	box-shadow: none;
}
#post_list_tab_2 {
	margin-bottom: 12rem;
}
.contents-wrapper .c-categoryList.p-termNavigation,
.contents-wrapper .c-categoryList.p-termNavigation .c-categoryList__link {
	color: var(--color_text_accent);
}
.contents-wrapper .p-termNavigation {
	margin-left: 6rem;
	padding: 0;
	margin-top: 2.4rem;
	flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
}
.contents-wrapper .c-categoryList:before {
	content: '';
	margin-right: 0;
}
.c-categoryList__separation {
	display: none;
}
.contents-wrapper .c-categoryList.p-termNavigation .c-categoryList__link {
	font-size: var(--text_medium);
	font-weight: 500;
	background-color: var(--color_main);
	display: inline-block;
	padding: 0.8em 1em;
	border-radius: 50px;
	margin-right: 0.8em;
	border: 1px solid var(--color_border_accent);
}
.contents-wrapper .c-categoryList.p-termNavigation .c-categoryList__link.-current {
	background-color: var(--color_accent);
  border: 1px solid var(--color_accent);
	color: var(--color_text_dark);

}
.p-termHead {
	display: none;
}
#content .c-tabList {
	justify-content: flex-start;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
}
.c-shareBtns__btn,
.is-style-balloon > .c-tabList .c-tabList__button,
.p-snsCta,
[class*=page-numbers] {
	box-shadow: none;
}
.is-style-balloon .c-tabList__button[aria-selected=true] {
	color: var(--color_text_accent);
	border-bottom: 2px solid var(--color_accent);
	padding: 2rem 0;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.is-style-balloon .c-tabList__button:before {
	display: none;
}
.p-postListTab {
	margin: 6rem;
	width: auto;
}
.is-style-balloon .c-tabList__item {
	margin: 0;
	padding: 0;
}
.is-style-balloon .c-tabList__button {
	background: none;
}
.is-style-balloon .c-tabList__button:hover {
	color: var(--color_text_accent);
}
.p-termContent {
	margin-top: 6rem;
}
.-type-card .p-postList__excerpt {
	display: none;
}
.p-termContent .categories-box {
	gap: 2.4rem 0;
	justify-content: space-between;
	margin: 0;
	padding: 0 6rem;
}
.-sidebar-on .-type-card.-pc-col3 .p-postList__item {
	padding: 0;
}
.p-termContent .categories-box li:last-child {
	margin-right: 0;
}
.p-termContent .categories-box::before,
.p-termContent .categories-box::after {
	content: "";
	display: block;
}
.p-termContent .categories-box::before {
	order: 1;
}


@media screen and (min-width:1436px) {
	.p-termContent .categories-box::before,
	.p-termContent .categories-box::after {
		width: 23.5%;
		flex: 0 0 23.5%;
	}
	.p-termContent .categories-box li {
		flex: 0 0 23.5%;
	}
}
@media screen and (max-width:1436px) {
	.p-termContent .categories-box::before,
	.p-termContent .categories-box::after {
		width: 23.5%;
		flex: 0 0 23.5%;
	}
	.p-termContent .categories-box li {
		flex: 0 0 23.5%;
	}
}
@media screen and (max-width:1336px) {
	.p-termContent .categories-box::before,
	.p-termContent .categories-box::after {
		width: 31.5%;
		flex: 0 0 31.5%;
	}
	.p-termContent .categories-box li {
		flex: 0 0 31.5%;
	}
}
@media screen and (max-width:1024px) {
	.p-termContent .categories-box li:first-child {
		margin-left: 0;
	}
	.contents-wrapper .c-pageTitle {
		margin: 6rem 4rem 0 4rem;
	}
	.contents-wrapper .p-termNavigation {
    margin-left: 4rem;
	}
	.p-postListTab {
		margin: 4rem;
	}
	.p-termContent .categories-box {
		padding: 0 4rem;
	}
}
@media screen and (max-width:890px) {
	.p-termContent .categories-box li {
		flex: 0 0 48%;
	}
}
@media screen and (max-width:768px) {

	.contents-wrapper .c-pageTitle {
		margin: 4rem 2.4rem 0 2.4rem;
	}
	.contents-wrapper .p-termNavigation {
		margin-left: 2.4rem;
		margin-top: 1.6rem;
	}
	.contents-wrapper .c-categoryList.p-termNavigation .c-categoryList__link {
		font-size: var(--text_xsmall);
	}
	.p-termContent {
		margin-top: 4rem;
	}
	.p-termContent .p-postListTab {
		margin: 0;
	}
	.p-termContent .categories-box {
		gap: 6rem;
	}
	.contents-wrapper .p-termContent .p-postList.-type-card,
	.contents-wrapper .p-termContent .p-postList.-type-thumb {
		padding: 0 2.4rem 6rem;
    margin: 0;
		flex-direction: column;
	}
	.p-termContent .-type-card .p-postList__item {
		margin: 0;
	}
	.p-termContent .-type-card .p-postList__item.article-cards {
		flex: 0 0 100%;
	}
	.contents-wrapper .p-termContent .c-pagination {
		margin: 0 0 6rem 0;
	}
	.is-style-balloon .c-tabList, .is-style-bb .c-tabList,
	.is-style-simple .c-tabList {
		margin: 0 0 2.4rem;
	}
	.-type-card.-sp-col1 .p-postList__item,
	.-type-thumb.-sp-col1 .p-postList__item {
		width: 100%;
	}
}



/*====================================================
404.css
====================================================*/

.not_found {
	text-align: center;
  font-size: var(--text_semimedium);
	position: relative;
	margin-bottom: 12rem;
}
.not_found::before {
	content: "";
	display: block;
	background-image: url(/wp-content/themes/swell_child/assets/images/404_illustration.png);
	background-repeat: no-repeat;
	background-position: top left -20px;
	background-size: contain;
	width: 100%;
	max-width: 240px;
	height: 160px;
	margin: 0 auto;
	margin-bottom: 4rem;
}
.not_found::after {
	content: "SORRY...";
	display: block;
	font-size: var(--text_large);
	font-weight: 600;
	letter-spacing: 0.05em;
	position: absolute;
  left: 50%;
	bottom: 4rem;
  transform: translateX(-50%);
}
.contents-404 {
	padding: 8rem 0 16rem;
}
.contents-404 .l-mainContent__inner {
	padding: 0 4rem;
}
h1.not_found {
	font-size: var(--text_large);
	margin-bottom: 0;
}
h1.not_found::before {
	height: 91px;
}
h1.not_found::after {
	content: "";
}
.contents-404 .post_content {
	margin-top: 3rem;
}
.contents-404 .is-style-more_btn a {
	min-width: 20%;
	border: 1px solid var(--color_border_main);
	box-shadow: none;
	color: var(--color_dark);
}
.contents-404 .is-style-more_btn a::after {
	content: none;
}
