@charset "utf-8";

/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. 基本
　02. モジュール

******************************************************************************* */
/* ==

　01. 基本

=============================================================================== */
body {
	position: relative;
	min-width: 950px;
	font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Arial, Helvetica, sans-serif;
	font-weight: 400;
}

h1,h2,h3,h4 {
	margin: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	font-weight: 500;
	color: #222;
}

.sMain {
	min-width: 930px;
	padding: 90px 10px 0;
}
.sMain p,
.sMain a,
.sMain ul {
	color: #222;
}
.sMain .sNote01,
.sMain .sNotes01 {
	margin: 30px 0;
	font-size: 11px;
	color: #777777;
	line-height: 1.55;
}
.sMain .sNote01 {
}
.sNotes01 li + li {
	margin-top: 10px;
}
/* ==

　02. モジュール

=============================================================================== */
/* 見出し、テキスト
------------------------ */
.sHeading01 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.35;
}
.sHeading02 {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.35;
	letter-spacing: 1.2px;
}
.sHeading02 .sHeading02_sub {
	font-size: 20px;
	font-weight: normal;
	display: block;
	margin-top: 10px;
}
.sHeading03 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 45px;
	line-height: 1.35;
	letter-spacing: 0.7px;
}
.sHeading04 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 40px;
	line-height: 1.35;
}
.sHeading05 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 60px;
	line-height: 1.35;
}
.sHeading06 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 40px;
	line-height: 1.35;
	letter-spacing: 0.3px;
}
.sSection_in .sHeading07 {
	font-size: 20px;
	font-weight: bold;
}
.sSection_in .sHeading07::before {
	content: "";
	width: 12px;
	height: 12px;
	border: 4px solid #333;
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: 2px;
	left: 0;
}
.sSection_in .sHeading07-v1 {
	color: #45A9C7;
}
.sSection_in .sHeading07-v1::before {
	display: none;
}
.sSection_in .sHeading07-v2 {
	margin-bottom: 15px;
}
.sSection_in .sHeading07-v2::before {
	display: none;
}
.sEmphasis01 {
	background-image: radial-gradient(circle at center, #000 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: .2em;
}

/* ヘッダーナビ
------------------------ */
.sHead {
	height: 97px;
	margin-bottom: 15px;
}
.sHead nav {
	background-color: #fff;
}
.sHead_in {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sHead_tit .sHeading01 a {
	text-decoration: none;
}
.sHead_tit p {
	font-size: 18px;
}
.sHead_nav {
	width: 320px;
	display: flex;
	justify-content: space-between;
}
.sHead_nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
}
.sHead_nav ul li {
	margin: 0 10px;
}
.sHead_nav ul li a {
	text-decoration: none;
}
.sHead_nav ul li a:hover {
	text-decoration: underline;
}
.sHead-fixed nav,
.isPcTbl .sHead-fixed nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0 20px;
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  animation: sHeadFix .4s both;
}
@keyframes sHeadFix {
	0% {
		top: 0px;
	}
	100% {
		top: 60px;
	}
}
.isTbl .sHead-fixed nav {
  animation: sHeadFixTbl .4s both;
}
@keyframes sHeadFixTbl {
	0% {
		top: 0px;
	}
	100% {
		top: 45px;
	}
}
.sHead-fixed .sHead_tit {
	display: flex;
	align-items: center;
}
.sHead-fixed .sHead_tit h1 {
	font-size: 22px;
	margin-right: 20px;
	font-weight: 500;
}
.sHead-fixed .sHead_tit p {
	font-size: 13px;
	margin-right: 20px;
}
.sHead-fixed .sHead_tit .sHeading01 a img {
	width: 195px;
	height: auto;
}
.sHead-fixed .sHead_nav ul {
	font-size: 14px;
}
.sHead_menu {
	position: relative;
	width: 90px;
	height: 60px;
	cursor: pointer;
}
.sHead_menu span{
	display: inline-block;
	transition: all .3s;
	position: absolute;
	left: calc(50% - 15px);
	height: 1px;
	background: #000;
	width: 30px;
}
.sHead_menu span:nth-of-type(1) {
  top:20px; 
}
.sHead_menu span:nth-of-type(2) {
  top:28px;
}
.sHead_menu span:nth-of-type(3) {
  top:36px;
}
.sHead_fixBg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	z-index: 1111;
	opacity: 0;
	pointer-events: none;
	transition: all .2s linear;
}
.sHead_fixBg-open {
	opacity: 1;
	pointer-events: all;
}
.sHead_fixMenu {
	width: 600px;
	min-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fff;
	z-index: 1111;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s linear;
}
.sHead_fixMenu-open {
	opacity: 1;
	pointer-events: all;
}
.sHead_fixMenu_in {
	padding: 90px 50px 300px;
}
.sHead_fixMenu_btn {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.sHead_fixMenu_btn::before,
.sHead_fixMenu_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 55px;
  background: #000;
}
.sHead_fixMenu_btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.sHead_fixMenu_btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.sHead_fixMenu_tit {
	color: #FA0046;
	font-size: 15px;
	margin-bottom: 20px;
}
.sHead_fixMenu_item {
	display: block;
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, .15);
	font-size: 24px;
	font-weight: 500;
	padding: 13px 0;
	cursor: pointer;
	text-decoration: none;
}
.sHead_fixMenu_item:hover {
	opacity: 0.8;
}
.sHead_fixMenu_item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}
.sHead_fixMenu_item.fnMenu::before,
.sHead_fixMenu_item.fnMenu::after {
	content: "";
	width: 13px;
	height: 1px;
	background-color: #FA0046;
	position: absolute;
	top: 35px;
	right: 0;
}
.sHead_fixMenu_item.fnMenu::after {
	transform: rotateZ(90deg);
}
.sHead_fixMenu_list {
	display: none;
}
.sHead_fixMenu_list li:last-child {
	text-align: right;
}

.sHead_fixMenu_list li:last-child a:hover {
	text-decoration: none;
}
.sHead_fixMenu_item-open::after {
	display: none;
}
.sHead_fixMenu_item-open + .sHead_fixMenu_list {
	display: block;
}
.sHead_fixMenu_list {
	margin-bottom: 20px;
}
.sHead_fixMenu_list li {
	margin-bottom: 10px;
}
.sHead_fixMenu_list a {
	position: relative;
	display: block;
	padding: 20px 80px 20px 20px;
	font-size: 15px;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
}
.sHead_fixMenu_list a:before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #EDE6D7;
	position: absolute;
	top: calc(50% - 12px);
	right: 20px;	
}
.sHead_fixMenu_list a:after {
	content: "";
	width: 5px;
	height: 5px;
	border: 1px solid;
	border-color: #FA0046 #FA0046 transparent transparent;
	transform: rotate(45deg);
	position: absolute;
    top: calc(50% - 4px);
    right: 30px;
}
.sHead_fixMenu_list li:last-child a {
	text-decoration: underline;
	border: none;
	padding: 20px 0;
}
.sHead_fixMenu_list li:last-child a::before,
.sHead_fixMenu_list li:last-child a::after {
	display: none;
}
.sHead_fixMenu_list a:hover {
	text-decoration: underline;
}
.sHead_fixMenu .sBeforeLink {
	position: absolute;
  bottom: 50px;
  left: 50px;
  padding: 0;
  text-align: left;
  border-top: none;
}
.sHead_fixMenu .sBeforeLink a {
	border: 1px solid #000;
}
.sMain .sHead_fixMenu .sBeforeLink p {
	font-size: 13px;
	margin-bottom: 10px;
}

/* MV
------------------------ */
.sMV {
	max-width: 1280px;
	margin: 0 auto 80px;
}
.sMV img {
	width: 100%;
	height: auto;
}

/* 記事タイトルエリア
------------------------ */
.sIntro {
	margin-top: 100px;
}
.sIntro_in {
	max-width: 720px;
	margin: 0 auto 80px;
}
.sIntro_tit {
	margin-bottom: 50px;
}
.sIntro_tit .sIntro_cat {
	color: #FF5383;
	font-size: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}
.sIntro_tit .sIntro_col {
	display: flex;
	align-items: center;
}
.sIntro_tit .sIntro_col .sIntro_date {
	font-size: 10px;
	color: #777;
	margin-right: 20px;
}
.sIntro .sRelation {
	padding: 0 0 40px;
	border: none;
}
.sIntro .sRelation .sRelation_tit {
	margin-bottom: 30px;
}
.sIntro_lead {
	margin-bottom: 40px;
}
.sIntro_lead p {
	font-size: 15px;
	margin-bottom: 15px;
	line-height: 1.95;
}
.sIntro_lead p:last-child {
	margin-bottom: 0;
}
.sIntro_img {
	margin: 45px auto;
	text-align: center;
}
.sIntro_img_cap {
	font-size: 11px;
	color: #777;
	line-height: 1.55;
	margin-top: 30px;
	text-align: left;
}
.sIntro_img_cap-copy {
	text-align: right;
}
.sIntro_lead-col {
	display: flex;
	justify-content: space-between;
}
.sIntro_lead_txt {
	width: 65%;
}
.sIntro_lead_img {
	width: 30%;
}
.sIntro_lead_img img {
	width: 100%;
	height: auto;
}

.sIntro_country {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 16px;
	color: #000;
}
.sIntro_country-v1 img {
	border: 1px solid #ccc;
}
.sIntro_country span {
	margin-left: 10px;
	font-weight: bold;
}

/* 目次
------------------------ */
.sIndex {
	padding: 25px 35px;
	border: 1px solid #000;
}
.sIndex .sIndex_tit {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: bold;
}
.sIndex .sIndex_list {
	font-size: 15px;
}
.sIndex .sIndex_list a {
	text-decoration: none;
}
.sIndex .sIndex_list a:hover {
	text-decoration: underline;
}
.sIndex .sIndex_list li {
	margin-bottom: 3px;
	text-indent: -13px;
	padding-left: 26px;
}
.sIndex .sIndex_list li::before {
	color: #FA0046;
	display: inline-block;
	margin-right: 10px;
}
.sIndex .sIndex_list li:nth-child(1)::before {
	content: "01";
}
.sIndex .sIndex_list li:nth-child(2)::before {
	content: "02";
}
.sIndex .sIndex_list li:nth-child(3)::before {
	content: "03";
}
.sIndex .sIndex_list li:nth-child(4)::before {
	content: "04";
}
.sIndex .sIndex_list li:nth-child(5)::before {
	content: "05";
}
.sIndex .sIndex_list li:nth-child(6)::before {
	content: "06";
}

/* 記事エリア
------------------------ */
.sSection {
	
}
.sSection-related {
	margin: 50px -10px 0;
	padding: 60px 0;
	background-color: #F2EFE1;
}
.sSection-related .sSection_in {
	margin: 0 auto;
}
.sSection-related .sSection_in .sRelated .sArticle:last-child {
	margin-bottom: 0;
}
.sSection-v1 .sSection_in {
	border-top: 1px solid #DFDFDF;
	padding-top: 80px;
}
.sSection_mv {
	margin: 0 -10px 120px;
}
.sSection_mv img {
	width: 100%;
	height: auto;
}
.sSection_in {
	max-width: 720px;
	margin: 0 auto 80px;
}
.sSection_in p {
	font-size: 15px;
	line-height: 1.95;
	margin-bottom: 15px;
}
.sSection_in .sSection_img {
	margin: 45px auto;
	text-align: center;
}
.sSection_in .sSection_img-vt {
	max-width: 500px;
}
.sSection_in .sSection_img img {
	width: 100%;
	height: auto;
}
.sSection_in .sSection_img_cap {
	font-size: 11px;
	color: #777;
	line-height: 1.55;
	margin-top: 30px;
	text-align: left;
}
.sSection_in .sSection_img_cap-copy {
	text-align: right;
}
.sIntro .sSection_col,
.sSection_in .sSection_col {
	display: flex;
	justify-content: space-between;
	margin: 45px auto;
	flex-wrap: wrap;
}
.sIntro .sSection_col .sSection_item,
.sSection_in .sSection_col .sSection_item {
	width: calc(50% - 10px);
	margin-bottom: 20px;
}
.sIntro .sSection_col .sSection_item img,
.sSection_in .sSection_col .sSection_item img {
	width: 100%;
	height: auto;
}
.sIntro .sSection_col .sSection_item .sSection_item_cap,
.sSection_in .sSection_col .sSection_item .sSection_item_cap {
	font-size: 11px;
  color: #777;
  line-height: 1.55;
  margin-top: 15px;
  text-align: left;
}
.sSection_in .sQuestion {
	position: relative;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.95;
	margin-bottom: 30px;
	text-indent: -55px;
	margin-left: 55px;
}
.sSection_in p + .sQuestion {
	margin-top: 45px;
}
.sSection_in .sQuestion::before {
	content: "";
	width: 40px;
	height: 1px;
	background-color: #000;
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
}

.sBlock01 {
	border: 1px solid rgba(250, 0 ,70, .25);
	margin: 40px auto;
	padding: 25px 35px;
}
.sBlock01-v1 {
	border: 1px solid #C7E5EE;
}
.sBlock01-v1 ul {
	font-size: 15px;
}
.sBlock01-v1 ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 5px;
}
.sBlock01-v1 ul li::before {
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #45A9C7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 12px;
}

.sBlock01-v1 ul li:nth-child(1)::before { content: "1"; }
.sBlock01-v1 ul li:nth-child(2)::before { content: "2"; }
.sBlock01-v1 ul li:nth-child(3)::before { content: "3"; }
.sBlock01-v1 ul li:nth-child(4)::before { content: "4"; }
.sBlock01-v1 ul li:nth-child(5)::before { content: "5"; }

.sBlock02 {
	background-color: #e7e9f6;
	margin: 40px auto;
	padding: 25px 35px;
}
.sBlock03 {
	margin: 40px auto;
}
.sBlock03 .sBlock03_in {
	background-color: #ecf1f8;
	padding: 25px 35px;
}
.sBlock03 .sBlock03_tit {
    background-color: #4379b6;
    margin: 0;
    padding: 15px;
}
.sBlock03 .sBlock03_tit h3 {
    color: #fff;
	font-size: 20px;
	text-align: center;
}
.sBlock03 a {
	position: relative;
	font-size: 14px;
	font-weight: bold;
}
.sBlock03 a .sIconBlank {
    margin-left: 10px;
    position: relative;
    top: -3px;
}

.sBlock03 .sBlock03_col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}
.sBlock03 .sBlock03_col .sBlock03_img {
	margin-right: 30px;
}
.sBlock03 .sBlock03_col .sBlock03_txt p {
	margin-bottom: 5px;
}

.sList01 {
	font-size: 15px;
	line-height: 1.95;
	margin-bottom: 15px;
}
.sList02 {
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 15px;
}
.sList01 li {
	margin-bottom: 10px;
}
.sList01 li::before {
	content: "・";
	display: inline-block;
}
.sList02 li {
	text-indent: -17px;
	margin-left: 17px;
}
.sList02 li::before {
	content: "";
	position: relative;
	top: -2px;
	display: inline-block;
	width: 7px;
	height: 7px;
	background-color: #FA0046;
	margin-right: 10px;
}
.sList01 li:last-child,
.sList02 li:last-child {
	margin-bottom: 0;
}
.sList03 {
	font-size: 15px;
	line-height: 1.95;
}
.sList03 li {
	margin-bottom: 10px;
}
.sList03 li:last-child {
	margin-bottom: 0;
}
.sList03 li dt {
	font-weight: 500;
	font-size: 16px;
}
.sList03-v1 {
	margin: 30px 0;
}
.sList03-v1 li {
	margin-bottom: 30px;
}
.sList03-v1 li dt {
	font-size: 20px;
	margin-bottom: 10px;
}
.aFrame01 {
	margin: 30px 0;
	padding: 25px 35px;
	border: 1px solid #000;
}



/* プロフィール
------------------------ */
.sProfile {
	margin: 140px auto 80px;
}
.sProfile-v1 {
	margin: 30px auto 50px;
}
.sRelation .sProfile {
	margin: 70px auto 0;
}
.sProfile_tit {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 60px;
}
.sProfile_item {
	display: flex;
	justify-content: space-between;
	
	margin-bottom: 30px;
}
.sProfile-v1 .sProfile_item {
	align-items: flex-start;
}
.sProfile-v1 .sProfile_tit {
	margin-bottom: 30px;
}
.sProfile_item:last-child {
	margin-bottom: 0;
}
.sProfile_img img {
	border-radius: 5px;
	overflow: hidden;
}
.sProfile_img .sNote01 {
	display: block;
	margin: 5px 0 0;
}
.sProfile_txt {
	width: 66.67%;
	max-width: 480px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.sProfile-v1 .sProfile_txt,
.sProfile_txt-v1 {
	width: 75%;
	max-width: 540px;
}
.sProfile_txt .sProfile_label {
	padding: 2px 10px;
	font-size: 11px;
	color: #FA0046;
	border: 1px solid rgba(250, 0, 70, 0.4);
	border-radius: 2px;
	display: inline-block;
	margin-bottom: 10px;
}
.sProfile_txt .sProfile_name {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}
.sProfile_txt .sProfile_name span {
	font-size: 10px;
	font-weight: normal;
	margin-left: 10px;
}
.sProfile_txt p {
	font-size: 12px;
	line-height: 1.7;
}
.sProfile_txt p:last-child {
	margin-bottom: 0;
}
.sProfile .sProfile_col {
	display: flex;
	justify-content: space-between;
}
.sProfile .sProfile_col .sProfile_item {
	width: 180px;
}
.sProfile .sProfile_col .sProfile_item,
.sProfile .sProfile_col .sProfile_txt .sProfile_name {
	display: block;
}
.sProfile .sProfile_col .sProfile_img {
	margin-bottom: 10px;
}
.sProfile .sProfile_col .sProfile_img img {
	width: 100%;
	height: auto;
}
.sProfile .sProfile_col .sProfile_txt {
	width: 100%;
}
.sProfile .sProfile_col .sProfile_txt p {
	font-size: 14px;
}
.sProfile .sProfile_col .sProfile_txt .sProfile_name span {
	display: block;
	margin-left: 0;
	font-size: 12px;;
}

/* 関連記事
------------------------ */
.sRelation {
	padding: 70px 0 80px;
	border: 1px solid #DFDFDF;
	border-left: none;
	border-right: none;
}
.sRelation-v1 {
	padding-top: 30px;
	border-top: none;
}
.sRelation-v2 {
	padding: 30px 0;
	border: none;
}
.sRelation_in {
	margin-bottom: 40px;
}
.sRelation_tit {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	letter-spacing: 0.55px;
	line-height: 1.35;
}
.sRelation-v2 .sRelation_tit {
	margin-bottom: 30px;
}
.sRelation_item {
	overflow: hidden;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	margin-bottom: 30px;
}
.sRelation_item + .sRelation_tit {
	margin-top: 70px;
}
.sRelation_item:last-child {
	margin-bottom: 0;
}
.sRelation_img {
	width: 240px;
}
.sRelation_img-border01 {
	border: 1px solid #EFEFEF;
}
.sRelation_txt {
	padding: 10px 35px;
	width: calc(100% - 240px);
	background-color: #EFEFEF;
	display: flex;
	align-items: center;
}
.sRelation_txt .sRelation_txt_tit {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 500;
	line-height: 1.6;
}
.sRelation_item-kotehashi {
	padding: 20px;
	background-color: #edf6fa;
}
.sRelation_item-kotehashi .sRelation_txt {
	background-color: transparent;
	padding: 0 0 0 30px;
}
.sRelation_item-kotehashi .sRelation_txt .sRelation_txt_tit {
	padding-left: 25px;
	background: url(/sustainable/sustainable_journey/column/kotehashi-pool/images/index_icon06.gif) no-repeat 0 2px;
	background-size: 12px;
	line-height: 1.4;
}
.sRelation_item-kotehashi .sRelation_txt .sRelation_txt_add {
	font-size: 12px;
}
.sRelation_item-kotehashi .sRelation_txt .sIconBlank {
	margin-left: 10px;
	position: relative;
	top: -3px;
}
.sMain .sRelation_btn {
	color: #777;
	font-size: 13px;
}

.sSection-relation {
	margin-top: 200px;
}
.sSection-relation .sRelation {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	padding-top: 230px;
}
.sSection-relation .sSection_in {
	max-width: 920px;
	background-color: #EEE9D6;
	border-radius: 100px;
	margin-bottom: 30px;
}
.sSection-relation .sRelation_head {
	position: absolute;
	top: -90px;
	left: -160px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding: 25px 40px 25px 80px;
	background-color: #fcfbf7;
	border-radius: 150px;
	max-width: 710px;
}
.sSection-relation .sRelation_head_in {
	width: calc(100% - 165px);
}
.sSection-relation .sRelation_head::before {
  content: "";
  background: url(/sustainable/sustainable_journey/common/images/rn01/icon02.png) no-repeat 0 0;
  background-size: cover;
  width: 162px;
  height: 207px;
  display: inline-block;
  mix-blend-mode: multiply;
}
.sSection-relation .sRelation_head h3 {
	font-size: 42px;
	font-weight: bold;
	letter-spacing: 4px;
	margin-bottom: 10px;
}
.sSection-relation .sRelation_head p {
	font-size: 16px;
	font-weight: 500;
}
.sSection-relation .sRelation_tit {
	position: relative;
	margin-bottom: 25px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.01px;
}
.sSection-relation .sRelation_tit-v1,
.sSection-relation .sRelation_bdr {
	position: relative;
  margin-top: 70px;
}
.sSection-relation .sRelation_txt {
	background-color: #fff;
}

.sSection-relation .sRelation_item + .sRelation_tit,
.sSection-relation .sRelation_bdr {
	border-top: 1px solid #C0BCAD;
	margin-top: 60px;
	padding-top: 50px;
}


/* ハッシュタグ
------------------------ */
.sHashTag {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
}
.sHashTag li {
	margin-right: 10px;
}
.sHashTag a {
	position: relative;
	text-decoration: none;
}
.sHashTag a:hover {
	text-decoration: underline;
}
.sHashTag a::before {
	content: "#";
	display: inline-block;
	color: #FA0046;
}
h1.sHashTag,
h2.sHashTag {
	margin: 0 auto 90px;
	display: block;
}
h1.sHashTag::before,
h2.sHashTag::before {
	content: "#";
	display: inline-block;
	color: #FA0046;
}

/* ボタン
------------------------ */
.sBtn01 {
	display: inline-block;
	border-bottom: 1px solid #FF5383;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
	padding-bottom: 8px;
}
.sBtn01:hover {
	border-bottom: 1px solid transparent;
}
.sBtn02 {
	display: inline-block;
	border: 1px solid #000;
	text-decoration: none;
	font-size: 15px;
	padding: 10px 20px;
	border-radius: 4px;
}
.sBtn02:hover {
	text-decoration: underline;
}

/* 記事一覧
------------------------ */
.sArticles {
	margin-bottom: 160px;
}
.sArticles_in {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	border-top: 1px solid rgba(0, 0, 0, .15);
	padding-top: 100px;
}
.sArticles_in-btn {
	border-top: none;
}
.sArticles_tit {
	font-size: 36px;
	text-align: center;
	margin-bottom: 100px;
}
.sArticles_tit span {
	color: #FF5383;
	margin: 0 5px;
}
.sArticle {
	max-width: 960px;
	margin: 0 auto 80px;
}
.sArticle a {
	text-decoration: none;
	transition: opacity .2s;
}
.sArticle a:hover {
	opacity: 0.7;
}
.sArticle_img {
	display: block;
	overflow: hidden;
}
.sSection-related .sArticle_img {
	border-radius: 22px 22px 0 0;
}
.sArticle_img img {
	width: 100%;
	height: auto;
}
.sArticle_tit {
	font-size: 18px;
	font-weight: 500;
	margin: 20px 0 15px;
}
.sMain p.sArticle_txt {
	font-size: 13px;
	color: #8F8F8F;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.sArticle_in {
	padding: 50px 80px 80px;
	overflow: hidden;
	background-color: #EEE9D6;
	border-radius: 40px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.sArticle_in .sArticle_txt {
	margin-bottom: 60px;
}
.sArticle_in .sArticle_txt p {
	margin-bottom: 20px;
	color: #000;
	font-size: 14px;
}
.sArticle_col {
	display: flex;
	justify-content: space-between;
}
.sArticle_col-hide {
	display: none;
}
.sArticle_col + .sArticle_col {
	margin-top: 40px;
}
.sArticle_col_img {
	overflow: hidden;
	border-radius: 10px;
	width: 45%;
}
.sArticle_col_img img {
	width: 100%;
	height: auto;
}
.sArticle_col_txt {
	width: 50%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.sMain .sArticle_col_tit {
	font-size: 20px;
	margin-bottom: 15px;
	line-height: 1.55;
}
.sArticle_col .sBtn01 {
	margin-top: 25px;
	font-size: 14px;
}
.sArticle_more {
	text-align: center;
	margin-top: 60px;
}
.sArticle_more .sBtn01 {
	font-size: 16px;
}

/* コンセプト
------------------------ */
.sConcept {
	overflow: hidden;
	border-radius: 160px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-color: #EEE9D6;
	padding: 100px 0 170px;
}
.sConcept_in {
	position: relative;
	width: 780px;
	margin: 0 auto;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
.sConcept_in .sConcept_tit {
	font-size: 30px;
	margin-left: 40px;
}
.sConcept_in p {
	font-size: 15px;
	margin: 40px 0 0 20px;
	line-height: 2.2;
}
.sConcept_in::after {
	content: "";
	background: url(/sustainable/sustainable_journey/common/images/rn01/icon01.png) no-repeat 0 0;
	background-size: cover;
	width: 231px;
	height: 294px;
	display: inline-block;
	position: absolute;
	top: 200px;
	left: 0;
}

/* リニューアル前リンクエリア
------------------------ */
.sBeforeLink {
/* 	border-top: 1px solid rgba(0, 0, 0, .15); */
	padding: 45px;
	text-align: center;
}
.sConcept + .sBeforeLink {
	border-top: none;
}
.sBeforeLink p {
	font-size: 13px;
}
.sBeforeLink a {
	position: relative;
	display: inline-block;
	padding: 10px 60px 10px 20px;
	border: 1px solid #DFDFDF;
	text-decoration: none;
	border-radius: 4px;
	margin-top: 15px;
	font-size: 15px;
}
.sBeforeLink a:hover {
	text-decoration: underline;
}
.sBeforeLink a::before {
  content:  '';
  width: 5px;
  height: 5px;
  display:  block;
  border-top: solid 1px #777777;
  border-right: solid 1px #777777;
  transform: rotate(45deg);
  position:  absolute;
  top: calc(50% - 3px);
  right:  20px;
}


/* シェアボタンエリア
------------------------ */
.sSection-sns {
	margin: 0;
	padding: 0;
}
.sSection-sns .sSection_in {
	margin-bottom: 0;
}
.sSns {
	padding: 30px;
	text-align: center;
}
.sSection_in .sSns_txt {
	position: relative;
	display: inline-block;
	font-size: 18px;
	margin-bottom: 30px;
	font-weight: 500;
}
.sSns_txt::before {
	content: "";
	width: 2px;
	height: 30px;
	background-color: #000;
	display: block;
	position: absolute;
	left: -30px;
	top: 5px;
	transform: rotate(-30deg);
}
.sSns_txt::after {
	content: "";
	width: 2px;
	height: 30px;
	background-color: #000;
	display: block;
	position: absolute;
	right: -30px;
	top: 5px;
	transform: rotate(30deg);
}
.sSns_list {
	display: flex;
	justify-content: space-between;
	max-width: 200px;
	margin: 0 auto;
}
.sSns_list a {
	transition: opacity .2s;
}
.sSns_list a:hover {
	opacity: 0.7;
}


