@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');
/*base*/
*{
	margin: 0px;
	padding: 0px;
  box-sizing: border-box;
}

header, footer, nav, section, article {
	display:block;
}

html{
	font-size: 62.5%;
	overflow-y: scroll;
}

body{
	overflow: hidden;
	font-size: 1.4rem;
	color: #303033;
	background: #ffffff;
	font-family: 'M PLUS Rounded 1c','Helvetica','Helvetica Neue','Avenir','Arial','メイリオ',sans-serif;
}
figure {
  display: inline-block;
}
/*float*/
.alignleft{
	float: left;
}

.alignright{
	float: right;
}

.cl{
	clear: both;
}

.clearfix{
	overflow: hidden;
}
* html .clearfix { zoom: 1; }  /* IE6 */
*:first-child+html .clearfix{ zoom: 1; }  /* IE7 */

/*text-align*/

.txt_alignleft{
	text-align: left !important;
}
.txt_alignright{
	text-align: right !important;
}
.txt_aligncenter{
	text-align: center !important;
}

/*vertical-align*/

.txt_aligntop{
	vertical-align: top !important;
}
.txt_alignmiddle{
	vertical-align: middle !important;
}
.txt_alignbottom{
	vertical-align: bottom !important;
}

/*link*/
a img {
    border-style: none;
  }

a:link{
	color: #222222;
	text-decoration: none;
}

a:active{
	text-decoration: none;
	}

a:visited{
	color: #222222;
	}

a:hover{
	text-decoration: none;
}

a.btn_join{
	display: block;
	background: #dd0034;
	color: #ffffff;
	text-align: center;
	border-radius: 5px;
}

a img:hover,a.btn_join:hover{
	opacity: 0.8;
}


/*header*/
header {
  width: 100%;
  background-color: #E1E9F9;
	text-align: center;
}
section {
  min-height: 200px;
}
.top_header_logo {
	position: relative;
	width: 1020px;
	margin: 0 auto;
	z-index: 2
}
.top_header_logo .top_logo {
	position: absolute;
	width: 300px;
	left: 0;
	top: 20px;
}
.top_header_logo .single_logo {
	position: absolute;
	width: 400px;
	left: 0;
	top: 20px;
}
.top_visual {
	display: flex;
	max-width: 1000px;
	height: 400px;
	margin: 0 auto;
}
.top_visual .top_visual_illust {
	position: relative;
  flex: 1;
}
.top_visual .top_visual_illust img {
	position: absolute;
  max-width: 230px;
  bottom: 0;
  z-index: 1;
}
.top_visual .top_visual_illust .top_visual_illust01 {
	left: 26%;
  max-width: 210px;
}
.top_visual .top_visual_illust .top_visual_illust02 {
	right: -3%;
}
.top_visual_bg01 {
	position: absolute;
  right: 15px;
  top: 150px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
	background-color: #F3FE60;
	z-index: 0;
	animation: top_visual_bg01_ani 1100ms ease-out;
}
 @keyframes top_visual_bg01_ani {
	 0% {
		 opacity: 0;
	 }
	 70% {
		 opacity: 0;
		 transform: scale(0);
	 }
	 100% {
		 opacity: 1;
		 transform: scale(1);
	  }
 }
 .top_visual_bg02 {
	position: absolute;
	left: 165px;
	top: 200px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
 	background-color: #F3FE60;
 	z-index: 0;
 	animation: top_visual_bg02_ani 1300ms ease-out;
 }
  @keyframes top_visual_bg02_ani {
 	 0% {
 		 opacity: 0;
 	 }
 	 70% {
 		 opacity: 0;
 		 transform: scale(0);
 	 }
 	 98% {
 		 opacity: 1;
 		 transform: scale(1);
 	  }
	 99% {
		 opacity: 1;
		 transform: scale(1.01);
	  }
 	 100% {
 		 opacity: 1;
 		 transform: scale(1);
 	  }
  }
.top_visual .top_visual_illust div img {
	position: relative;
  max-width: none;
  bottom: auto;
}
.top_visual_illust_sub01 {
	position: absolute;
  width: 70px;
  height: 50px;
  right: 120px;
  top: 50px;
  z-index: 2;
}
.top_visual_illust_sub02 {
	position: absolute;
  width: 50px;
  height: 40px;
  right: 170px;
  top: 125px;
  z-index: 2;
}
.top_visual_illust_sub03 {
	position: absolute;
  display: grid;
  width: 55px;
  height: 65px;
  left: 30px;
  bottom: 125px;
  z-index: 2;
}
.top_visual_illust_sub04 {
	position: absolute;
  width: 55px;
  height: 65px;
  left: 70px;
  bottom: 20px;
  z-index: 2;
}
.top_catch_txt {
	width: 450px;
  padding: 45px;
  background-color: #70A0ED;
  color: #fff;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top_catch_txt p {
  font-size: 1.5rem;
}
.top_catch_txt h2 {
	margin-bottom: 10px;
  padding: 0;
  text-align: left;
}
.top_catch_txt p a {
	display: block;
	margin-top: 15px;
  font-weight: 500;
  text-decoration: underline;
  color: #fff;
	transition: all .2s linear;
}
.top_catch_txt p a:hover {
	color: #f2ff60;
}

/* content */
.story_content {
	margin: 20px auto;
}
.content__wrapper {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.plaid_pattern {
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216.9px%22%20height%3D%2216.9px%22%20viewBox%3D%220%200%2016.9%2016.9%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2016.9%2016.9%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23E5EDFA%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cline%20id%3D%22%E7%B7%9A_209_1_%22%20class%3D%22st0%22%20x1%3D%228.4%22%20y1%3D%220%22%20x2%3D%228.4%22%20y2%3D%2216.9%22%2F%3E%3Cline%20id%3D%22%E7%B7%9A_210_1_%22%20class%3D%22st0%22%20x1%3D%220%22%20y1%3D%228.4%22%20x2%3D%2216.9%22%20y2%3D%228.4%22%2F%3E%3C%2Fsvg%3E');
}
h2 {
  padding: 50px 10px 20px 10px;
  width: 100%;
  text-align: center;
}
h2 img {
	max-height: 100px;
}
.top_slick {
	max-height: 450px;
	padding-bottom: 80px;
	overflow: hidden;
	border-bottom: 1px solid #e9f0fb;
}
.top_slick li {
	margin: 10px;
}
.story_page .slick-dots {
  bottom: 30px;
}
.story_page .slick-dots li button:hover:before,
.story_page .slick-dots li button:focus:before {
    opacity: 1;
    color: green; /* hover時の色を変更 */
}
.story_page .slick-dots li {
	width: 13px;
	height: 13px;
}
.story_page .slick-dots li button {
	width: 13px;
	height: 13px;
}
.story_page .slick-dots li button:before
{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    text-align: center;
    background-color: #F3FE60;
    border: 1px solid #70a0ed;
    border-radius: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
		transition: all .1s linear;
}
.story_page .slick-dots li.slick-active button:before
{
    width: 13px;
    height: 13px;
		transform: rotate(45deg);
    text-align: center;
    background-color: #70a0ed;
    border: 1px solid #70a0ed;
    border-radius: 2px;
		opacity: 1;
}
/* filter */
/*ボタンのリスト*/
ul#filterBtnList{
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
		text-align: center;
}
ul#filterBtnList li{
	display: inline-block;
  padding: 5px 25px;
  margin: 3px;
  font-size: 1.5rem;
  border-radius: 50px;
  border: solid 2px #83D8C1;
  color: #4acaa7;
  cursor: pointer;
  font-weight: 500;
  transition: all .2s linear;
}
ul#filterBtnList li:hover{
    background-color: #83D8C1;
    color: #fff;
}
ul#filterBtnList li.is_active {
    background-color: #83D8C1;
    color: #fff;
}
ul#filterBtnList li:nth-child(-n+3) {
	  border: solid 2px #70a1ed;
		color: #70a1ed;
}
ul#filterBtnList li.is_active:nth-child(-n+3),
ul#filterBtnList li:nth-child(-n+3):hover {
    background-color: #70a1ed;
		color: #fff;
}

/*コンテンツのリスト*/
ul.test_list{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.test_list li{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 5px 5px 0;
    color: #fff;
    font-size: 10px;
    text-align: center;
}
/* ul#filterBtnList li#filterbunnkei {
  border: solid 2px #83D8C1;
	background-color: #fff;
}
ul#filterBtnList li#filterrikei {
  border: solid 2px #d58df6;
	background-color: #fff;
}
ul#filterBtnList li#filterothers {
  border: solid 2px #b0b0b6;
	background-color: #fff;
}
.filter_icon p.filter_icon_bunnkei {
	background-color: #83D8C1;
}
.filter_icon p.filter_icon_rikei {
	background-color: #d58df6;
}
.filter_icon p.filter_icon_others {
	background-color: #b0b0b6;
} */

.content_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.content_list::before{
	content: "";
	display:block;
	width:24%;
	max-width: 260px;
	order: 1;
}
.content_list::after {
	content: "";
	display:block;
	width:24%;
	max-width: 260px;
}

.content_list article {
	width: 24%;
	max-width: 260px !important;
}
.post {
	position: relative;
	max-width: 260px !important;
	margin-bottom: 35px;
	padding: 13px 13px 20px 13px;
	border:1px solid #9497a2;
	background-color: #fff;
	transition: all .2s ease-in-out;
}
.post::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	bottom: -1px;
	left: 0;
	right: 0;
	transition: all .2s ease-in-out;
}
.post:hover {
	transform: translateY(-3px);
}
.post:hover::after {
	height: 3px;
	background-color: #83D8C1;
}

/* .post:hover {
	border-bottom: 3px solid #83D8C1;
} */
.top_slick .post {
	max-width: 320px !important;
}
.post h3 {
	margin-top: 5px;
	font-size: 1.6rem;
}
.post > a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
  top: 0;
}
.post p {
	font-size: 1.3rem;
}
.post figure img {
	width: 100%;
  height: auto;
}
.post .filter_icon {
	position: relative;
  display: flex;
  flex-wrap: wrap;
	margin-top: 5px;
}
.post .filter_icon p {
	width: fit-content;
	padding: 2px 15px;
	margin: 2px 5px 2px 0;
	font-weight: 500;
	color: #fff;
	text-align: center;
	border-radius: 30px;
	background-color: #83D8C1;
	font-size: 1.2rem;
}
.post .filter_icon p.bunnkei,
.post .filter_icon p.rikei {
	background-color: #70a1ed;
}

/* Event */
.centent_event ul {
	display: flex;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
  justify-content: space-evenly;
}
.centent_event ul li {
	width: auto;
  padding: 10px;
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.btn {
	position: relative;
	display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 15px auto;
  width: 180px;
  height: 50px;
  border: 1.5px solid #61636C;
  font-family: 'Kiwi Maru', serif;
	font-weight: bold;
  font-size: 1.5rem;
  box-sizing: border-box;
}
.btn::after {
	content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 48px;
  right:-1px;
  top: 0;
  bottom: 0;
  background-color: #80AAEE;
	z-index: -1;
	transition: all .2s linear;
}
.btn::before {
	content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 48px;
  right:0;
  top: 0;
  bottom: 0;
	transition: all .2s .2s ease-out;
}
.story-single .btn::after,
.story-single .btn::before {
	top: -1px;
}
.btn:hover {
	color: #fff;
}
.btn:hover::after {
	width: 178px;
}
.btn:hover::before {
	width: 7px;
  background-color: #F3FE60;
}


/* service */
.centent_service_text{
	position: relative;
	z-index: 100;
	margin: 80px auto 30px;
	text-align: center;
	font-size: 23px;
	font-weight: bold;
	color: #73A7FC;
}

.centent_service_text::after{
	content: ' ';
	display: block;
	position: absolute;
	width: 1px;
	height: 50px;
	top: calc(100% + 8px);
	left: 50%;
	background: #70a0ed;
}

.centent_service {
	margin: 0 auto 30px
}

.centent_service {
	position: relative;
	padding: 50px 10px 150px 10px;
	margin: 0px auto 30px;
	background-color: #E1EAF9;
	line-height: normal !important;
}
.centent_service__warp {
	position: relative;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}
.centent_service .service_txt {
	position: relative;
	right: 0;
	margin: 0 0 0 auto;
	padding: 10px 30px 0 30px;
	display: block;
	width: 50%;
	text-align: left;
}
.centent_service .service_txt h2 {
	margin-top: 0;
	padding: 0 0 10px;
	text-align: left;
	font-family: 'Kiwi Maru', 'M PLUS Rounded 1c','Helvetica', serif;
}
.centent_service .service_txt small {
	color: #81889c;
  line-height: 2rem;
  font-size: 1.1rem;
}
.centent_service .service_img {
	position: absolute;
  width: 50%;
  left: 0;
  top: calc(50% + 50px);
  transform: translateY(-50%);
}
.centent_service .service_img img {
	width: 100%;
}
.centent_service .service_icon {
	position: absolute;
	top: -80px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #fff;
	color: #70A0ED;
	font-size: 2rem;
	border: dotted 5px #70A0ED;
}
.centent_service .service_btn {
	position: absolute;
  display: inline-flex;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.centent_service .service_btn a {
	padding: 15px 20px;
  width: 50%;
  min-width: 250px;
  margin: 0 10px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Kiwi Maru', 'M PLUS Rounded 1c','Helvetica', serif;
  background-color: #fff;
  border: 3px solid #70A0ED;
  color: #70A0ED;
  transition: all .2s linear;
  text-align: center;
}
.centent_service .service_btn a.color,
.centent_service .service_btn a:hover {
	color: #fff;
	background-color: #70A0ED;
}
.centent_service .service_btn a.color:hover {
	color: #70A0ED;
	background-color: #fff;
	border: 3px solid #70A0ED;
}
.centent_service .service_btn a:hover {
	transform: translateY(-3px);
}

/* コンテンツ　紹介 */
.content_link .link_list {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto 30px;
  justify-content: flex-start;
}
.content_link .link_list li {
	position: relative;
	width: 32%;
	margin: 0 5px;
	padding: 20px 20px 20px 45px;
	border-top: 1px solid #C9CAD0;
	list-style: none;
}
.content_link .link_list li::before {
	content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
	background-position: center center;
	background-repeat: no-repeat;
}
.content_link .link_list li a{
	font-weight: 500;
  color: #313a59;
	transition: all .2s linear;
}
.content_link .link_list li:hover a {
	color: #70A0ED;
}
.content_link .link_list li.link_shukatsunohen::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2210.7px%22%20height%3D%2227.8px%22%20viewBox%3D%220%200%2010.7%2027.8%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2010.7%2027.8%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23ED288D%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_99_1_%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0L1%2C10.8L5%2C13L0%2C26.2l0.5%2C1.6l10.2-15.6L6.4%2C9.3L10.7%2C0z%22%2F%3E%3C%2Fsvg%3E');
}
.content_link .link_list li.link_data::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2219px%22%20height%3D%2219px%22%20viewBox%3D%220%200%2019%2019%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2019%2019%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%2370A0ED%3B%7D%20.st1%7Bfill%3A%23A5E8D6%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1431_1_%22%20transform%3D%22translate(-533%20-3717)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_152_1_%22%20x%3D%22533%22%20y%3D%223723%22%20class%3D%22st0%22%20width%3D%228%22%20height%3D%2213%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_153_1_%22%20x%3D%22544%22%20y%3D%223717%22%20class%3D%22st1%22%20width%3D%228%22%20height%3D%2219%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.content_link .link_list li.link_event::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2225px%22%20height%3D%2223px%22%20viewBox%3D%220%200%2025%2023%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2025%2023%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%20.st1%7Bfill%3Anone%3Bstroke%3A%2370A0ED%3Bstroke-width%3A2%3B%7D%20.st2%7Bfill%3A%2370A0ED%3B%7D%20.st3%7Bfill%3A%23A5E8D6%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1432_1_%22%20transform%3D%22translate(-881.647%20-3712.81)%22%3E%20%3Cg%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_155_1_%22%20transform%3D%22translate(881.647%203715.81)%22%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M5%2C0h15c2.8%2C0%2C5%2C2.2%2C5%2C5v10c0%2C2.8-2.2%2C5-5%2C5H5c-2.8%2C0-5-2.2-5-5V5C0%2C2.2%2C2.2%2C0%2C5%2C0z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M5%2C1h15c2.2%2C0%2C4%2C1.8%2C4%2C4v10c0%2C2.2-1.8%2C4-4%2C4H5c-2.2%2C0-4-1.8-4-4V5C1%2C2.8%2C2.8%2C1%2C5%2C1z%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_156_1_%22%20class%3D%22st2%22%20d%3D%22M888.1%2C3712.8L888.1%2C3712.8c0.8%2C0%2C1.5%2C0.7%2C1.5%2C1.5v3c0%2C0.8-0.7%2C1.5-1.5%2C1.5l0%2C0%20c-0.8%2C0-1.5-0.7-1.5-1.5v-3C886.6%2C3713.5%2C887.3%2C3712.8%2C888.1%2C3712.8z%22%2F%3E%20%3Cpath%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_157_1_%22%20class%3D%22st2%22%20d%3D%22M900.1%2C3712.8L900.1%2C3712.8c0.8%2C0%2C1.5%2C0.7%2C1.5%2C1.5v3c0%2C0.8-0.7%2C1.5-1.5%2C1.5l0%2C0%20c-0.8%2C0-1.5-0.7-1.5-1.5v-3C898.6%2C3713.5%2C899.3%2C3712.8%2C900.1%2C3712.8z%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_32_1_%22%20class%3D%22st3%22%20cx%3D%22888.1%22%20cy%3D%223723.3%22%20r%3D%221.5%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_37_1_%22%20class%3D%22st3%22%20cx%3D%22888.1%22%20cy%3D%223728.3%22%20r%3D%221.5%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_33_1_%22%20class%3D%22st3%22%20cx%3D%22894.1%22%20cy%3D%223723.3%22%20r%3D%221.5%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_36_1_%22%20class%3D%22st3%22%20cx%3D%22894.1%22%20cy%3D%223728.3%22%20r%3D%221.5%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_34_1_%22%20class%3D%22st3%22%20cx%3D%22900.1%22%20cy%3D%223723.3%22%20r%3D%221.5%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_35_1_%22%20class%3D%22st3%22%20cx%3D%22900.1%22%20cy%3D%223728.3%22%20r%3D%221.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.content_link .link_list li.link_knowhow::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2215.2px%22%20height%3D%2225.2px%22%20viewBox%3D%220%200%2015.2%2025.2%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2015.2%2025.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23A5E8D6%3B%7D%20.st1%7Bfill%3Anone%3Bstroke%3A%23FFFFFF%3Bstroke-width%3A2%3Bstroke-linecap%3Around%3B%7D%20.st2%7Bfill%3Anone%3Bstroke%3A%2370A0ED%3Bstroke-width%3A2%3Bstroke-linecap%3Around%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1434_1_%22%20transform%3D%22translate(-168.511%20-3768.768)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1433_1_%22%20transform%3D%22translate(0.85%201)%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_8_1_%22%20class%3D%22st0%22%20d%3D%22M174.8%2C3793c-1.1%2C0-2-0.9-2-2v-0.7c-3.1-1.2-5-4.2-5-7.4c-0.1-4.2%2C3.3-7.8%2C7.5-7.9%20c4.2%2C0.1%2C7.6%2C3.6%2C7.5%2C7.9c0%2C3.3-1.9%2C6.2-5%2C7.4v0.7c0%2C1.1-0.9%2C2-2%2C2H174.8z%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_245_1_%22%20class%3D%22st1%22%20d%3D%22M177.6%2C3778.9c1.4%2C0.3%2C2.4%2C1.6%2C2.4%2C3%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_246_1_%22%20class%3D%22st2%22%20d%3D%22M176.2%2C3769.8v2.8%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_247_1_%22%20class%3D%22st2%22%20d%3D%22M182.8%2C3772.3l-1.4%2C2.4%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_248_1_%22%20class%3D%22st2%22%20d%3D%22M169.5%2C3772.5l1.2%2C2.1%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.content_link .link_list li.link_howto::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2227.7px%22%20height%3D%2215.8px%22%20viewBox%3D%220%200%2027.7%2015.8%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2027.7%2015.8%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23A5E8D6%3Bstroke-width%3A2%3Bstroke-linecap%3Around%3B%7D%20.st1%7Bfill%3A%2370A0ED%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1435_1_%22%20transform%3D%22translate(-527.114%20-3776.188)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_249_1_%22%20class%3D%22st0%22%20d%3D%22M528.1%2C3790.9h13.7%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_250_1_%22%20class%3D%22st1%22%20d%3D%22M551.1%2C3776.2l3.8%2C2.2l-7.1%2C12.4l-3.1%2C0.9l-0.7-3.1L551.1%2C3776.2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.content_link .link_list li.link_selfanalysis::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2217px%22%20height%3D%2221px%22%20viewBox%3D%220%200%2017%2021%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2017%2021%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%2370A0ED%3B%7D%20.st1%7Bfill%3A%23A5E8D6%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1436_1_%22%20transform%3D%22translate(-894%20-3779)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_251_1_%22%20class%3D%22st0%22%20d%3D%22M902.5%2C3779c2.5%2C0%2C4.5%2C2%2C4.5%2C4.5s-2%2C4.5-4.5%2C4.5s-4.5-2-4.5-4.5S900%2C3779%2C902.5%2C3779z%22%2F%3E%20%3Cpath%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_159_1_%22%20class%3D%22st1%22%20d%3D%22M902.5%2C3789L902.5%2C3789c4.7%2C0%2C8.5%2C3.8%2C8.5%2C8.5v0.8c0%2C0.9-0.8%2C1.7-1.7%2C1.7h-13.6%20c-0.9%2C0-1.7-0.8-1.7-1.7v-0.8C894%2C3792.8%2C897.8%2C3789%2C902.5%2C3789z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.content_link .link_list li.link_knowhow,
.content_link .link_list li.link_howto,
.content_link .link_list li.link_selfanalysis {
	border-bottom: 1px solid #C9CAD0;
}

footer .footer_sns {
	width: 250px;
	margin: 50px auto 20px;
	display: flex;
	justify-content: space-evenly;
}
footer .footer_sns li {
	list-style: none;
	max-width: 36px;
}
footer .footer_sns li img {
	width: 100%;
}
footer .footer__copy {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.2rem;
}

/* single */
.story-single .contents-full {
	position: relative;
	z-index: 1;
}
.story-single .ofb_story {
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #343131;
}
.ofb_story ul li {
  list-style: none;
}
.ofb_story h2 {
	margin-top: 40px;
  padding: 0;
  border-left: 0;
  line-height: normal;
  background-color: transparent;
  font-size: 2rem;
}
.story-single .contents .story_header_wrap {
	position: relative;
	padding: 100px 20px 40px 20px;
	z-index: 1;
}
.story-single .contents .story_header_wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50%;
	background-color: #E1E9F9;
	z-index: 0;
}
.story-single .contents .story_header_wrap::after {
	content: "";
	position: absolute;
	height: 50%;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216.9px%22%20height%3D%2216.9px%22%20viewBox%3D%220%200%2016.9%2016.9%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2016.9%2016.9%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23E5EDFA%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cline%20id%3D%22%E7%B7%9A_209_1_%22%20class%3D%22st0%22%20x1%3D%228.4%22%20y1%3D%220%22%20x2%3D%228.4%22%20y2%3D%2216.9%22%2F%3E%3Cline%20id%3D%22%E7%B7%9A_210_1_%22%20class%3D%22st0%22%20x1%3D%220%22%20y1%3D%228.4%22%20x2%3D%2216.9%22%20y2%3D%228.4%22%2F%3E%3C%2Fsvg%3E');
	border-bottom: 1px solid #e9f0fb;
	z-index: -1;
}
.ofb_story .story_header {
	position: relative;
  display: flex;
	max-width: 1050px;
  min-height: 450px;
	margin: 0 auto;
  margin-bottom: 30px;
  background-color: #fff;
  color: #323645;
	border:2px solid #61636C;
  box-shadow: 20px 20px 0 #f3fe60;
	z-index: 1;
}
.ofb_story .story_header .top_photo {
	width: 50%;
	background-position: center center;
	background-size: cover;
}
.ofb_story .story_header .story_header_content {
  padding: 50px 0;
  font-size: 1.3rem;
  flex: 1;
}
.ofb_story .story_header .story_header_content h2 {
	position: relative;
  padding: 8px;
  margin-bottom: 15px;
  display: block;
  width: fit-content;
  margin-top: 20px;
  font-size: 2rem;
  color: #323645;
  text-align: left;
}
.ofb_story .story_header .story_header_content h2::after {
	content: "";
	position:absolute;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: 0;
	background-color: #A5E8D6;
}
.ofb_story .story_header .story_header_content .story_profile01,
.ofb_story .story_header .story_header_content .story_profile02 {
	position: relative;
  left: -25px;
	font-size:2rem;
  line-height: 2.7rem;
	font-weight: 500;
}
.ofb_story .story_header .story_header_content .story_profile01 {
	display: flex;
}
.ofb_story .story_header .story_header_content .story_profile02 {
  display: inline-flex;
	padding: 7px 25px;
	margin-top: -2px;
	border: 2px solid #61636C;
	font-size: 1.7rem;
	background-color: #fff;
}
.ofb_story .story_header .story_header_content .story_profile01 p {
	padding: 10px 25px;
	background-color: #fff;
	border: 2px solid #61636C;
}
.ofb_story .story_header .story_header_content .story_profile01 p.year {
	border-left: 0;
	color: #fff;
	background-color: #80AAEE;
}
.ofb_story .story_header .story_header_content .story_header_content {
  display: flex;
}
.ofb_story .story_header .story_header_content .story_header_content p {
  padding: 5px 20px;
  margin: 10px 10px 0 0;
  border-radius: 30px;
  background-color: #fff;
  color: #649FF0;
}
.story_header .story_header_txt {
	margin-top: 20px;
	padding: 0 50px;
}
.ofb_story .story_header .story_header_icon {
  position: absolute;
  bottom: 10px;
  left: -30px;
}
.ofb_story .story_content {
	width: 100%;
	max-width: 1000px;
}
.ofb_story .story_content dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.ofb_story .story_content dl {
  width: 100%;
  padding: 0 35px;
}
.ofb_story .story_content dl dt {
	position: relative;
  padding: 10px 0 0 10px;
	margin: 40px 0 20px;
  line-height: normal;
  font-size: 2rem;
	font-weight: 600;
  color: #1e2229;
  z-index: 0;
  text-align: left;
}
.ofb_story .story_content dl dd {
	width: 100%;
}
.ofb_story .story_content dl dt:before {
	content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: -5px;
  left: -10px;
  border-radius: 50px;
  background-color: #F3FE60;
  z-index: -1;
}
.ofb_story .story_content dl dt:nth-of-type(even):before,
.ofb_story .story_content dl dt.green:before {
  background-color: #c9f1e6;
}
.ofb_story .story_content dl dt.yellow:before {
	background-color: #F3FE60;
}
.ofb_story .story_content dl .story_howto, .ofb_story .story_content ul li:last-child {
  width: 100%;
}
.ofb_story .story_content dl .top_photo02 {
  height: 100%;
  width: 100%;
}
.ofb_story .story_content dl .story_howto_img {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.ofb_story .story_content dl .story_howto_photo_txt {
  width: 100%;
}
.ofb_story .story_content dl .story_howto_photo_txt p {
  color: #fff;
  display: inline-block;
}
.ofb_story .story_content dl .story_howto_img h2, .ofb_story .story_content ul .story_howto .story_howto_photo_txt h2 {
  width: fit-content;
  margin: 0;
  padding: 0 7px;
  line-height: 4.5rem;
  font-size: 1.8rem;
  text-align: right;
  background: linear-gradient(transparent 88%, #A4E8D6 12%);
}
.ofb_story .story_content dl .story_howto_txt {
  position: relative;
  width: 50%;
  padding: 50px 50px 50px 10px;
  color: #fff;
  flex: 1;
}

.ofb_story .story_content_photo_wrap {
	width: 100%;
	display: flex;
}
.ofb_story .story_content_photo_wrap .story_content_left {
	width: 50%;
	margin-right: 50px;
}
.ofb_story .story_content_photo_wrap .story_content_photo {
	position: relative;
	width: 45%;
	height: 100%;
	max-height: 500px;
	padding: 15px 15px 50px 15px;
	margin-top: 70px;
	border: 2px solid #61636C;
	border-bottom: 5px solid #A5E8D6;
	background-color: #fff;
}
.ofb_story .story_content_photo_wrap .story_content_photo .top_photo02 {
	position: relative;
	height: 100%;
  width: 100%;
  max-height: 420px;
  margin: 0;
	background-position: center center;
  background-size: cover;
}
.ofb_story .story_content_photo_wrap .story_content_photo .top_photo02::before {
	content: "";
  position: absolute;
  top: -65px;
  right: -70px;
  width: 200px;
  height: 100px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22176.8px%22%20height%3D%2293.3px%22%20viewBox%3D%220%200%20176.8%2093.3%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%20176.8%2093.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bopacity%3A0.852%3Bfill%3A%23F3FE60%3Benable-background%3Anew%20%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_99_1_%22%20x%3D%2255.9%22%20y%3D%22-37.4%22%20transform%3D%22matrix(0.174%20-0.9848%200.9848%200.174%2027.1006%20125.5644)%22%20class%3D%22st0%22%20width%3D%2265%22%20height%3D%22168%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
  z-index: 2;
}

.ofb_story .story_content_photo_wrap .story_content_photo::after {
	content: "";
  position: absolute;
  width: 100%;
  border: 1px solid #e5eefa;
  height: 100%;
  left: 35px;
  top: 35px;
  z-index: -1;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216.9px%22%20height%3D%2216.9px%22%20viewBox%3D%220%200%2016.9%2016.9%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%2016.9%2016.9%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23E5EDFA%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cline%20id%3D%22%E7%B7%9A_209_1_%22%20class%3D%22st0%22%20x1%3D%228.4%22%20y1%3D%220%22%20x2%3D%228.4%22%20y2%3D%2216.9%22%2F%3E%3Cline%20id%3D%22%E7%B7%9A_210_1_%22%20class%3D%22st0%22%20x1%3D%220%22%20y1%3D%228.4%22%20x2%3D%2216.9%22%20y2%3D%228.4%22%2F%3E%3C%2Fsvg%3E');
}
.ofb_story .story_content_photo_wrap .story_content_photo p {
	margin-top: 10px;
}
.other_story {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.other_story .story_slider_header {
	margin-top: 30px;
}
.other_story .story_slider {
	padding-bottom: 80px;
}
.other_story .story_slider li {
	margin: 0 5px;
	max-width: 400px !important;
}
.other_story .story_slider li figure {
	width: 100%;
}
.other_story .story_slider .slick-track {
	padding-top: 5px;
}
.other_story .other_story_link {
	position: relative;
	display: block;
  margin: 0 auto 30px;
  padding: 0 10px 7px 0;
  width: 190px;
  text-align: center;
  color: #73A7FC;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 3rem;
  background: linear-gradient(transparent 85%, #f2ff60 0%);
	transition: all .2s linear;
}
.other_story .other_story_link:after {
	content: '\f105';
  position: absolute;
  display: block;
  top: 15px;
  right: 5px;
  font-family: 'FontAwesome';
  font-size: 1.5rem;
  line-height: 0;
	transition: all .2s linear;
}
.other_story .other_story_link:hover {
	color: #64d6c0;
}
.other_story .other_story_link:hover:after {
	right: 3px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
	z-index: 9;
}
#page-top a {
  height: 60px;
  width: 60px;
  background: rgba(0, 0, 0, 0.1);
  display: block;
  transition: 0.2s ease-in-out;
}
#page-top a:before {
  font-family: 'FontAwesome';
  content: '\f106';
  font-size: 3rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 200%;
  transition: 0.2s ease-in-out;
}
#page-top a:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
}
#page-top a:hover:before {
  transform: translateY(-2px);
}
.footer__nav {
	max-width: 850px;
	margin: 20px auto;
}
.footer__nav ul {
	display: flex;
  justify-content: space-evenly;
  max-width: 550px;
  margin: 30px auto 15px;
}
.footer__nav ul li {
	display: block;
  height: 18px;
  padding: 0 15px;
  border-left: 1px solid #022454;
	line-height: 18px;
  text-align: center;
}
.footer__nav ul li:last-child {
	border-right: 1px solid #022454;
}
.footer__nav a {
	font-size: 1.3rem;
	color: #012554;
}
.footer__nav a:hover {
	color: #2f90f7;
}
@media screen and (max-width:760px) {
	.top_visual .top_visual_illust .top_visual_illust01 {
		left: 0;
		width: 60vw;
    max-width: 210px;
	}
	.top_visual .top_visual_illust .top_visual_illust02 {
		right: -3%;
		width: 65vw;
		max-width: 230px;
	}
	.top_visual_illust_sub01 {
    right: 31%;
    top: 11%;
	}
	.top_visual_illust_sub01 img {
		width: 16vw;
    max-width: 55px !important;
	}
	.top_visual_illust_sub02{
		left: 33%;
    top: 5%;
	}
	.top_visual_illust_sub02 img {
		width: 15vw;
    max-width: 50px !important;
	}
	.top_visual_illust_sub03 {
		top: 10%;
    left: 9%;
	}
	.top_visual_illust_sub03 img {
		width: 15vw;
		max-width: 60px !important;
	}
	.top_visual_illust_sub04 {
		top: 30%;
    left: 2%;
	}
	.top_visual_bg01 {
		top: 100px;
	}
	.top_visual_bg02 {
    left: 50px;
    top: 140px;
	}
	h2 img {
		width: 100%;
	}
	.top_header_logo .top_logo {
    position: relative;
    width: 270px;
    left: 15px;
    top: 15px;
	}
	.top_visual {
		height: auto;
		flex-direction: column;
	}
	.top_visual .top_visual_illust {
		position: relative;
    height: 350px;
    width: 100%;
    flex: none;
	}
	.top_catch_txt {
		width: 100%;
		padding: 40px 30px;
	}
	.content_list {
		padding: 0 5px;
		justify-content: space-around;
	}
	.content_list::before {
    content: none;
	}
	.content_list::after {
    width: 48%;
    max-width: 350px !important;
	}
	.story_content h2 {
		padding: 50px 10px 10px 10px;
	}
	ul#filterBtnList {
		padding: 0 5px;
    margin-bottom: 20px;
	}
	.story_content ul#filterBtnList li {
		padding: 3px 5px;
    margin: 0 0 2px 0;
    font-size: 1.4rem;
    border: 0;
	}
	ul#filterBtnList li.is_active,
	.story_content ul#filterBtnList li:hover {
    padding: 3px 15px;
	}
	.story_content ul#filterBtnList li::before {
		content: "#";
	}
	.content_list article {
		width: 48%;
	}
	.content_list article.post {
    max-width: 350px !important;
		margin-bottom: 15px;
    padding: 7px 7px 15px 7px;
	}
	.content_list article.post h3 {
    font-size: 1.4rem;
	}
	.content_list article.post p {
		font-size: 1.2rem;
		line-height: 2rem;
	}
	.post .filter_icon p {
		font-size: 1.2rem;
	}
	.centent_event ul {
		flex-direction: column;
	}
	.centent_event ul li {
		width: 100%;
	}
	.centent_event ul li figure {
		width: 100%;
	}
	.content_link .link_list {
		padding: 0 20px;
	}
	.content_link .link_list li {
		width: 100%;
	}
	.content_link .link_list li.link_knowhow, .content_link .link_list li.link_howto {
		border-bottom: 0;
	}

	.centent_service_text{
		margin: 30px auto 20px;
		font-size: 18px;
	}

	.centent_service {
		padding: 50px 0 0;
	}
	.centent_service__warp {
		display: flex;
		flex-direction: column;
	}
	.centent_service__warp .service_txt {
		order: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
	}
	.centent_service__warp .service_img {
    position: relative;
		width: 120%;
    top: auto;
		left: 50%;
    transform: none;
		order: 2;
		transform: translateX(-50%);
	}
	.centent_service__warp .service_icon {
		width: 110px;
    height: 110px;
    bottom: 65vw;
    left: 5vw;
    top: auto;
    order: 3;
    font-size: 1.5rem;
	}
	.centent_service .service_btn {
    position: relative;
    display: inline-flex;
    bottom: auto;
    left: 50%;
		top: -50px;
    width: 100%;
    flex-direction: column;
	}
	.centent_service .service_btn a {
		margin: 5px auto;
	}
	.ofb_story .story_content_photo_wrap {
		flex-direction: column;
	}
	.ofb_story .story_content_photo_wrap .story_content_left {
		width: 100%;
		order: 2;
	}
	.ofb_story .story_content_photo_wrap .story_content_photo {
		order: 1;
		width: 100%;
		height: 100%;
		min-height: 100vw;
    margin: 50px auto 30px;
	}
	.ofb_story .story_content_photo_wrap .story_content_photo .top_photo02 {
		height: calc(100% - 50px);
	}
	.ofb_story .story_content dl {
    padding: 0 30px;
	}
	.story-single .contents .story_header_wrap {
		padding: 20vw 15px 40px 15px;
		padding-top: max(10vh, 21vw);
	}
	.top_header_logo .single_logo {
		width: 100%;
		max-width: 400px;
    padding: 0 20px;
		top: 10px;
	}
	.top_header_logo {
		width: 100%;
	}
	.top_header_logo .single_logo img {
		width: 100%;
	}
	.story-single .story_header {
    flex-direction: column;
	}
	.ofb_story .story_header .top_photo {
		width: 100%;
		min-height: 330px;
		max-width: 420px;
		height: 52vh;
	}
	.ofb_story .story_header p {
		font-size: 1.4rem;
	}
	.ofb_story .story_header .story_header_content .story_profile01, .ofb_story .story_header .story_header_content .story_profile02 {
		left: -2px;
    top: -20px;
	}
	.ofb_story .story_header .story_header_content .story_profile01 p {
		padding: 10px 20px;
		font-size: clamp(13px, 4.5vw, 20px);
	}
	.ofb_story .story_header .story_header_content .story_profile02 {
		padding: 7px 20px;
	}
	.ofb_story .story_header .story_header_content .story_profile02 .story_univ {
		font-size: 4vw;
	}
	.ofb_story .story_header .story_header_content h2 {
		font-size: clamp(15px, 4.5vw, 18px);
	}
	.story_header .story_header_txt {
		margin: -15px 0 0px;
		padding: 0 35px;
	}
	.ofb_story .story_header .story_header_icon {
		display: none;
	}
	.ofb_story .story_header .story_header_content {
		padding: 0 0 50px;
	}
  .footer__nav {
    text-align: center;
  }
  .footer__nav ul, .footer__nav ul li {
    display: inline-flex;
    flex-direction: column;
    margin: 0;
  }
  .footer__nav ul li {
    padding: 0px 10px;
    height: 20px;
    border: 0;
  }
  .footer__nav ul li:last-child {
    border: 0;
  }
  .footer__nav a {
    font-size: 1.1rem;
  }
}
	@media screen and (max-width: 786px) and (min-width: 481px) and (orientation: portrait) {
		.top_catch_txt {
			width: 350px;
		}
		.top_visual .top_visual_illust .top_visual_illust01 {
			max-width: 180px;
			left: 15%;
		}
		.top_visual .top_visual_illust .top_visual_illust02 {
	    width: 200px;
		}
		.top_visual_illust_sub01 {
	    right: 23%;
	    top: 28%;
		}
		.top_visual_illust_sub02 {
	    top: 43%;
	    left: 52%;
		}
		.top_visual_illust_sub04 {
    left: 5%;
		}
	}
