<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*==============================================

    STYLE SHEET

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

  RESET

==============================================*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

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

  SETTING MIXIN

==============================================*/
/*==============================================
    2-1. mixins
==============================================*/
/* font family */
/*==============================================

  BASE

==============================================*/
html {
	font-size: 14px;
}
@media screen and (min-width: 769px) {
	html {
		font-size: 16px;
	}
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.06em;
	background-color: #ffffff;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
a:link, a:visited {
	color: #000000;
}

a:hover {
	opacity: 0.7;
}

a[data-rel=external]:after {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: 0.5em;
}

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

  LAYOUT

==============================================*/
/*==============================================
  LAYOUT LIMIT
==============================================*/
.l-limit {
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.l-limit {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1600px;
	}
}

/*==============================================
  LAYOUT FRAME
==============================================*/
.l-frame {
	width: 89.3333333333%;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.l-frame {
		width: 89.0625%;
	}
}

/*==============================================
  LAYOUT COLUMNS
==============================================*/
@media screen and (min-width: 769px) {
	.l-column {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.l-column-both {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.l-column--wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.l-column--reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.l-container {
	background-color: #f5f5f0;
	overflow: hidden;
}
@media screen and (min-width: 769px) {
	.l-container {
		min-width: 1080px;
	}
}

/*==============================================
  パンくず
==============================================*/
.l-breadcrumb {
	background-color: #fff;
	width: auto;
	padding: 0 12px 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (min-width: 769px) {
	.l-breadcrumb {
		padding: 140px 5% 50px;
	}
}

.l-breadcrumb__ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
}

.l-breadcrumb__list {
	padding-right: 2px;
	z-index: 1;
}
.l-breadcrumb__list:last-child {
	padding-right: 0;
}

.l-breadcrumb__list a,
.l-breadcrumb__list p {
	display: block;
	color: #808080;
	font-size: 0.7142857143rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-breadcrumb__list a,
.l-breadcrumb__list p {
		font-size: 0.6875rem;
		line-height: 2.5454545455;
	}
}

/*==============================================
  下層レイアウト
==============================================*/
.l-1stview {
	position: relative;
}

.l-h1 {
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	top: -22px;
	padding: 0 26px;
	letter-spacing: 0.08em;
	font-size: 2.8571428571rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-h1 {
		font-size: 5.625rem;
		line-height: 1;
		letter-spacing: 0.08em;
		top: -48px;
		left: 5%;
	}
}

.l-1stview__phrase {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	letter-spacing: 0.08em;
	font-size: 1.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.l-1stview__phrase {
		font-size: 3rem;
		line-height: 1.5833333333;
	}
}

body.fix {
	overflow: hidden;
}

.js-fadein {
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
	transition: opacity 1s, visibility 1s, -webkit-transform 1s;
	transition: transform 1s, opacity 1s, visibility 1s;
	transition: transform 1s, opacity 1s, visibility 1s, -webkit-transform 1s;
}
.js-fadein.is-active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.l-lead {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	font-weight: bold;
	letter-spacing: 0.08em;
	font-size: 1.0714285714rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-lead {
		font-size: 1.125rem;
		line-height: 1.7777777778;
	}
}

.l-lead-right {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	letter-spacing: 0.08em;
	text-align: center;
	font-size: 1.1428571429rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-lead-right {
		font-size: 1rem;
		line-height: 2;
	}
}

.l-caption-tag {
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.08em;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-caption-tag {
		font-size: 0.875rem;
		line-height: 2.5714285714;
	}
}

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

  HEADER

==============================================*/
.l-header {
	padding: 0 0 0px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	z-index: 9999;
	width: 100%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (min-width: 769px) {
	.l-header {
		padding: 0;
	}
}

.l-header__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: auto;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (min-width: 769px) {
	.l-header__wrap {
		padding: 0 0 0 5%;
	}
}

.l-header__logo {
	width: 50.1333%;
	margin: 16px 0 0 14px;
}
@media screen and (min-width: 769px) {
	.l-header__logo {
		width: 322px;
		margin: auto 0;
	}
}

.l-header__sns {
	display: none;
}
@media screen and (min-width: 769px) {
	.l-header__sns {
		display: block;
		position: relative;
		margin: auto 30px auto auto;
	}
}

.l-header__sns-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
}
@media screen and (min-width: 769px) {
	.l-header__sns-wrap {
		position: relative;
	}
}

.l-header__sns-list {
	width: 18px;
	margin-left: 15px;
}

.l-header__sns-text {
	font-family: "Outfit", sans-serif;
	text-align: center;
	margin: auto;
	color: #fff;
	font-size: 0.7142857143rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-header__sns-text {
		font-size: 0.625rem;
		line-height: 2;
		color: #000;
	}
}

.l-header__btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
}
@media screen and (min-width: 769px) {
	.l-header__btn {
		margin: 0;
	}
}

.l-header__entry {
	width: 68px;
	height: 60px;
	display: none;
}
@media screen and (min-width: 769px) {
	.l-header__entry {
		width: 200px;
		height: 80px;
		background-color: #f5f30a;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.l-header__entry.l-header__mypage {
	display: none;
}
@media screen and (min-width: 769px) {
	.l-header__entry.l-header__mypage {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		position: relative;
	}
}
.l-header__entry.l-header__mypage:before {
	content: "";
}
@media screen and (min-width: 769px) {
	.l-header__entry.l-header__mypage:before {
		position: absolute;
		background-color: #000;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 1px;
		height: 25px;
	}
}

.l-header__menu {
	background-color: #1e356b;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 68px;
	height: 60px;
}
@media screen and (min-width: 769px) {
	.l-header__menu {
		width: 90px;
		height: 80px;
	}
}
.l-header__menu p {
	color: #fff;
}

.l-header__btn-text {
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	font-size: 0.8571428571rem;
	line-height: 1.6666666667;
}
@media screen and (min-width: 769px) {
	.l-header__btn-text {
		font-size: 1.25rem;
		line-height: 1.6;
	}
}
.l-header__btn-text span {
	display: block;
	letter-spacing: 0;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	font-size: 0.7142857143rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-header__btn-text span {
		font-size: 0.625rem;
		line-height: 1;
	}
}

.l-header-fullnav {
	display: none;
	height: 100%;
	min-height: 100vh;
	position: absolute;
	width: 100%;
	z-index: 9999;
	top: 0;
	overflow: scroll;
	-webkit-perspective: 1000;
	perspective: 1000;
	background-color: #1c3366;
	-ms-overflow-style: none;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav {
		background: url("../../image/common/nav_bg.jpg") no-repeat center;
		background-size: cover;
		overflow: hidden;
		-ms-overflow-style: none;
	}
}
.l-header-fullnav__menu__upper {
	position: relative;
	display: block;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav__menu__upper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.l-header-fullnav__inner {
	margin-top: 50px;
	overflow: scroll;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav__inner {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		position: absolute;
		width: 100%;
		max-width: 970px;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		margin: 0;
		overflow: hidden;
		-ms-overflow-style: none;
	}
}

.l-header__menu-wrap {
	position: relative;
	display: block;
	margin: auto;
}

.l-header__menu-btn {
	position: relative;
	width: 22px;
	height: 14px;
	z-index: 999999999;
	margin: auto;
	margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
	.l-header__menu-btn {
		height: 18px;
	}
}

.l-header__menu-line {
	background: #fff;
	display: block;
	height: 2px;
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}

.l-header__menu-line-center {
	top: 6px;
}
.l-header__menu-line-center.active {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
@media screen and (min-width: 769px) {
	.l-header__menu-line-center {
		top: 8px;
	}
}

.l-header__menu-line-bottom {
	bottom: 0;
}
.l-header__menu-line-bottom.active {
	bottom: 4px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
@media screen and (min-width: 769px) {
	.l-header__menu-line-bottom.active {
		bottom: 8px;
	}
}

.l-header__menu-line-top.active {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-header-fullnav-ul {
	display: block;
	padding: 0 30px 100px;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0;
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
	}
}

.l-header-fullnav-list {
	width: 100%;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list {
		margin-bottom: 60px;
		width: auto;
		display: block;
		margin-left: 30px;
	}
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list:nth-child(1) {
		width: 250px;
		margin-left: 0;
	}
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list:nth-child(2) {
		width: 270px;
	}
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list:nth-child(3) {
		margin-right: 20%;
	}
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list:nth-child(4) {
		width: 250px;
		margin-left: 0;
	}
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list:nth-child(5) {
		width: 270px;
	}
}
.l-header-fullnav-list .l-header-fullnav-list-menu {
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	letter-spacing: 0.08em;
	font-size: 1.2857142857rem;
	line-height: 1.4444444444;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list .l-header-fullnav-list-menu {
		font-size: 1.875rem;
		line-height: 1.6;
		margin: auto;
	}
}
.l-header-fullnav-list .l-header-fullnav-list-menu span {
	display: block;
	margin-top: 5px;
	font-size: 0.7142857143rem;
	line-height: 1.1;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-list .l-header-fullnav-list-menu span {
		font-size: 0.8125rem;
		line-height: 1;
		margin-top: 16px;
	}
}

.l-header-fullnav-child-ul {
	display: block;
	margin-left: auto;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-child-ul {
		margin-top: 26px;
	}
}

@media screen and (min-width: 769px) {
	.l-header-fullnav-child-list {
		margin-top: 10px;
	}
}
.l-header-fullnav-child-list a {
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	font-size: 0.9285714286rem;
	line-height: 1;
	margin-bottom: 10px;
	position: relative;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-child-list a {
		font-size: 1rem;
		line-height: 1;
	}
}
.l-header-fullnav-child-list a:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 1px;
	top: 50%;
	left: -30px;
	background-color: #fff;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-child-list a:before {
		display: none;
	}
}

.l-header-fullnav-entry {
	margin-bottom: 50px;
	margin: 0 30px 26px;
	background-color: #f2fa00;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry {
		padding: 0;
		margin: 0;
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.l-header-fullnav-entry-button {
	position: relative;
	display: block;
	width: 100%;
	padding: 12px 0;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry-button {
		padding: 32px 0;
	}
}
.l-header-fullnav-entry-button p {
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	letter-spacing: 0.08em;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry-button p {
		font-size: 1.5rem;
		line-height: 1;
	}
}
.l-header-fullnav-entry-button p span {
	display: none;
	font-size: 0.7142857143rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry-button p span {
		display: block;
		letter-spacing: 0;
		font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
		font-size: 0.625rem;
		line-height: 2;
	}
}
.l-header-fullnav-entry-button:nth-child(2):before {
	content: "";
	position: absolute;
	width: 48px;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry-button:nth-child(2):before {
		width: 1px;
		height: 74px;
		top: 30px;
		left: 0;
	}
}

.l-header-fullnav-entry-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 10px;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry-link {
		margin-top: 0;
	}
}

.l-header-fullnav-entry-link-list {
	margin: auto;
	margin-right: 20px;
}
.l-header-fullnav-entry-link-list:nth-child(2) {
	margin-left: 20px;
	margin-right: auto;
}
.l-header-fullnav-entry-link-list a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	letter-spacing: 0.08em;
	position: relative;
	font-size: 0.9285714286rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav-entry-link-list a {
		font-size: 0.8125rem;
		line-height: 1;
	}
}
.l-header-fullnav-entry-link-list a:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 4px;
	left: -22px;
	background: url("../../image/common/icon_link_arrow.png") no-repeat center;
	background-size: cover;
}
.l-header-fullnav-entry-link-list a:after {
	content: "";
	position: absolute;
}

.l-header-fullnav__bg {
	position: absolute;
	width: 100%;
	height: 100vh;
}

@media screen and (min-width: 769px) {
	.l-header-fullnav__sns {
		display: none;
	}
}
.l-header-fullnav__sns .l-header__sns {
	display: none;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav__sns .l-header__sns {
		display: block;
		position: relative;
		margin: auto 30px auto auto;
	}
}
.l-header-fullnav__sns .l-header__sns-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 20px;
	left: 15px;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav__sns .l-header__sns-wrap {
		position: relative;
	}
}
.l-header-fullnav__sns .l-header__sns-list {
	width: 18px;
	margin-left: 15px;
}
.l-header-fullnav__sns .l-header__sns-text {
	font-family: "Outfit", sans-serif;
	text-align: center;
	margin: auto;
	color: #fff;
	font-size: 0.7142857143rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-header-fullnav__sns .l-header__sns-text {
		font-size: 0.625rem;
		line-height: 2;
		color: #000;
	}
}

.l-header__change {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	background-color: #fff;
}
@media screen and (min-width: 769px) {
	.l-header__change {
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
}

.dropdown__lists {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	position: absolute;
	top: 76px;
	left: 0;
}
.dropdown__lists .dropdown__list {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	position: relative;
	background-color: #f5f30a;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: auto;
}
.dropdown__lists .dropdown__list a {
	width: 100%;
}
.dropdown__lists .dropdown__list a:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 4px;
	left: -22px;
	background: url("../../image/common/icon_link_arrow.png") no-repeat center;
	background-size: cover;
}
.dropdown__lists .dropdown__list a:after {
	content: "";
	position: absolute;
}
.dropdown__lists .dropdown__list:nth-child(1) a {
	padding: 16px 0 10px;
}
.dropdown__lists .dropdown__list:nth-child(1) a:before {
	top: 18px;
	left: 46px;
}
.dropdown__lists .dropdown__list:nth-child(2) a {
	padding: 10px 0 16px;
}
.dropdown__lists .dropdown__list:nth-child(2) a:before {
	top: 11px;
	left: 46px;
}

.l-header__pulldown,
.l-header__mypage {
	position: relative;
}
.l-header__pulldown:hover .dropdown__lists,
.l-header__mypage:hover .dropdown__lists {
	visibility: visible;
	opacity: 1;
}

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

  FOOTER

==============================================*/
.l-footer {
	position: relative;
	background-color: #234080;
	padding: 60px 30px 30px;
}
@media screen and (min-width: 769px) {
	.l-footer {
		padding: 80px 0 50px;
	}
}

.l-footer-wrap {
	max-width: 1080px;
	margin: auto;
}

.l-footer-ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 0px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media screen and (min-width: 769px) {
	.l-footer-ul {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.l-footer-list {
	width: 50%;
	margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
	.l-footer-list {
		margin-bottom: 0;
		width: auto;
	}
}
.l-footer-list .l-footer-list-menu {
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	font-size: 1.4285714286rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-footer-list .l-footer-list-menu {
		font-size: 1.5rem;
		line-height: 2;
		text-align: center;
		margin: auto;
	}
}

.l-footer-child-ul {
	display: block;
}

.l-footer-child-list a {
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	font-size: 0.8571428571rem;
	line-height: 1;
	margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
	.l-footer-child-list a {
		font-size: 0.75rem;
		line-height: 1;
	}
}

.l-footer-copy {
	color: #a7bbe8;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	font-weight: bold;
	margin: 20px auto 0;
	font-size: 0.7142857143rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-footer-copy {
		margin-top: 10px;
		text-align: center;
		font-size: 0.75rem;
		line-height: 1.5;
	}
}
.l-footer-copy:first-of-type {
	margin-top: 0;
}
.l-footer-copy a {
	color: #a7bbe8;
}

.l-footer-entry {
	margin-bottom: 50px;
}

.l-footer-entry-button {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	background-color: #f2fa00;
}
.l-footer-entry-button p {
	padding: 25px 0;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.l-footer-entry-button p {
		font-size: 1.5rem;
		line-height: 2;
		padding: 40px 0;
	}
}

.l-footer-nav-entry {
	background-color: #f2fa00;
}
@media screen and (min-width: 769px) {
	.l-footer-nav-entry {
		padding: 0;
		margin: 0;
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.l-footer-nav-entry-button {
	position: relative;
	display: block;
	width: 100%;
	padding: 25px 0;
}
@media screen and (min-width: 769px) {
	.l-footer-nav-entry-button {
		padding: 32px 0;
	}
}
.l-footer-nav-entry-button p {
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	letter-spacing: 0.08em;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.l-footer-nav-entry-button p {
		font-size: 1.75rem;
		line-height: 1;
	}
}
.l-footer-nav-entry-button p span {
	display: none;
	font-size: 0.7142857143rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-footer-nav-entry-button p span {
		display: block;
		letter-spacing: 0;
		font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
		font-size: 0.625rem;
		line-height: 2;
	}
}
.l-footer-nav-entry-button:nth-child(2):before {
	content: "";
	position: absolute;
	width: 48px;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
	.l-footer-nav-entry-button:nth-child(2):before {
		width: 1px;
		height: 74px;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.l-footer-nav-entry-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 10px;
}

.l-footer-nav-entry-link-list {
	margin: auto;
	margin-right: 20px;
}
.l-footer-nav-entry-link-list:nth-child(2) {
	margin-left: 20px;
	margin-right: auto;
}
.l-footer-nav-entry-link-list a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	letter-spacing: 0.08em;
	position: relative;
	font-size: 0.9285714286rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.l-footer-nav-entry-link-list a {
		font-size: 0.8125rem;
		line-height: 1;
	}
}
.l-footer-nav-entry-link-list a:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 4px;
	left: -22px;
	background: url("../../image/common/icon_link_arrow.png") no-repeat center;
	background-size: cover;
}
.l-footer-nav-entry-link-list a:after {
	content: "";
	position: absolute;
}

.l-footer-text {
	padding: 26px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (min-width: 769px) {
	.l-footer-text {
		padding: 60px 0 30px;
	}
}
.l-footer-text p {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	font-weight: bold;
	text-align: center;
	margin: auto;
	letter-spacing: 0.08em;
	color: #fff;
	position: relative;
	font-size: 0.9285714286rem;
	line-height: 1.6923076923;
}
@media screen and (min-width: 769px) {
	.l-footer-text p {
		font-size: 0.8125rem;
		line-height: 1.6923076923;
	}
}
.l-footer-text .l-footer-logo {
	width: 152px;
	margin: 0 auto;
}

.l-footer-sns {
	margin-bottom: 30px;
	background-color: #1d366b;
	padding: 20px 0;
}
@media screen and (min-width: 769px) {
	.l-footer-sns {
		margin-bottom: 60px;
		padding: 40px 0;
	}
}

@media screen and (min-width: 769px) {
	.l-footer-sns-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.l-footer-sns-image {
	width: 20px;
	height: 20px;
	margin: auto;
	margin-right: 15px;
	margin-left: 80px;
}
@media screen and (min-width: 769px) {
	.l-footer-sns-image {
		width: 28px;
		height: 28px;
		margin: auto;
		margin-right: 15px;
	}
}

.l-footer-sns-text {
	margin-top: 10px;
	margin: auto 0;
}
@media screen and (min-width: 769px) {
	.l-footer-sns-text {
		margin-right: auto;
		margin-top: auto;
		margin-bottom: auto;
	}
}
.l-footer-sns-text p {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	text-align: center;
	margin: auto;
	letter-spacing: 0.08em;
	color: #fff;
	position: relative;
	font-size: 0.9285714286rem;
	line-height: 1.3846153846;
}
@media screen and (min-width: 769px) {
	.l-footer-sns-text p {
		font-size: 0.8125rem;
		line-height: 1.3846153846;
	}
}

#l-footer-page-top {
	position: fixed;
	right: 15px;
	bottom: 20px;
	z-index: 1;
}
@media screen and (min-width: 769px) {
	#l-footer-page-top {
		right: 25px;
		bottom: 15px;
	}
}

.l-footer-page-top {
	width: 40px;
	height: 40px;
}
@media screen and (min-width: 769px) {
	.l-footer-page-top {
		width: 80px;
		height: 80px;
	}
}

/*==============================================
    HOME INSTA
==============================================*/
.l-front-insta__container {
	width: 73.33%;
	max-width: 1600px;
	padding-top: 170px;
	margin: auto;
}
@media (max-width: 768px) {
	.l-front-insta__container {
		width: 84%;
		padding-top: 90px;
	}
}

.t-insta {
	width: 89.33333333%;
	margin: 0 auto;
	padding-top: 2em;
}
@media screen and (min-width: 769px) {
	.t-insta {
		width: 93.1%;
		margin: 0 0 0 auto;
		padding-top: 4em;
	}
}
.t-insta__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 91.6666%;
	margin: auto;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media screen and (min-width: 769px) {
	.t-insta__content {
		width: 91.6666%;
	}
}
.t-insta__content:after {
	content: "";
	display: block;
	width: 48.2539%;
	height: 0;
}
@media screen and (min-width: 769px) {
	.t-insta__content:after {
		width: 31.981%;
	}
}
.t-insta__content__item {
	position: relative;
	width: 48.2539%;
	overflow: hidden;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	opacity: 1;
	height: auto;
	margin: 0;
	margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
	.t-insta__content__item {
		width: 24.54%;
		margin-bottom: 0;
	}
}
.t-insta__content__item a {
	display: block;
}
@media screen and (min-width: 769px) {
	.t-insta__content__item a:hover {
		opacity: 1;
	}
	.t-insta__content__item a:hover img {
		-webkit-transform: scale(1.05) rotate(0.1deg);
		transform: scale(1.05) rotate(0.1deg);
	}
}
.t-insta__content__item img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
}
@media screen and (min-width: 769px) {
	.t-insta__content__item img {
		display: block;
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transition: -webkit-transform 0.5s ease 0s;
		transition: -webkit-transform 0.5s ease 0s;
		transition: transform 0.5s ease 0s;
		transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
		will-change: transform;
	}
}
.t-insta__content__item::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.t-insta__content__item.is-hidden {
	opacity: 0;
	height: 0;
	margin: 0;
}

@-webkit-keyframes activeBtn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes activeBtn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.t-insta__btn {
	position: relative;
	text-align: center;
	margin-top: 20px;
	background-color: #faf6f0;
}
.t-insta__btn .c-btn {
	cursor: pointer;
	background-color: #fff;
}
@media (max-width: 768px) {
	.t-insta__btn .c-btn {
		width: 274px;
	}
}
.t-insta__btn .c-btn:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	top: 45%;
}
@media (max-width: 768px) {
	.t-insta__btn .c-btn:before {
		top: 50%;
	}
}
@media screen and (min-width: 769px) {
	.t-insta__btn .c-btn:hover:before {
		position: absolute;
		right: 10px;
		top: 55%;
	}
}
.t-insta__btn.is-btn-hidden {
	display: none;
}

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

  COMPONENT

==============================================*/
/*==============================================
  COMPONENT TEXT
==============================================*/
.c-h1 {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.c-h1 {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.c-p {
	margin: 1em 0;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.c-p {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/*==============================================
  COMPONENT BUTTON
==============================================*/
/*========= テキストを滑らかに出現させるためのCSS ===============*/
.smoothText {
	overflow: hidden;
	display: block;
}

/* アニメーションで傾斜がついている文字列を水平に戻す*/
.smoothTextTrigger {
	-webkit-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	-webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
	transform: translate3d(0, 100%, 0) skewY(12deg);
	-webkit-transform-origin: left;
	transform-origin: left;
	display: block;
}

.smoothTextTrigger.smoothTextAppear {
	-webkit-transform: translate3d(0, 0, 0) skewY(0);
	transform: translate3d(0, 0, 0) skewY(0);
}

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

  UTILITY

==============================================*/
.u-hidden {
	display: none;
}

@media screen and (max-width: 768px) {
	.u-hidden-sp {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.u-hidden-pc {
		display: none;
	}
}

.u-left {
	text-align: left;
}

.u-center {
	text-align: center;
}

.u-right {
	text-align: right;
}

.u-red {
	color: red;
}

.u-bg-red {
	background-color: red;
}

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

  THEME technology

==============================================*/
.l-h1 {
	position: relative;
	z-index: 1;
	padding: 0 0 0 26px;
}
@media screen and (min-width: 769px) {
	.l-h1 {
		position: absolute;
		padding: 0 26px;
	}
}
.l-h1 span {
	color: #fff;
}

@media screen and (min-width: 769px) {
	.l-1stview {
		padding-bottom: 100px;
	}
}

.l-1stview__image {
	position: absolute;
	width: 88%;
	top: 54px;
	overflow: hidden;
	left: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
	.l-1stview__image {
		position: relative;
		width: auto;
		left: auto;
		-webkit-transform: none;
		transform: none;
		background-size: 100%;
	}
}
.l-1stview__image.l-1stview__image--sp {
	-webkit-transform: none;
	transform: none;
}
.l-breadcrumb {
	padding: 70px 12px 50px;
}
@media screen and (min-width: 769px) {
	.l-breadcrumb {
		padding: 140px 5% 50px;
	}
}

.t-contribution__slide--cap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-top: 100px;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--cap {
		padding-top: 0;
	}
}
.t-contribution__slide--cap p {
	position: relative;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	width: 80%;
	font-size: 1rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--cap p {
		font-size: 1.75rem;
		line-height: 1;
		width: 35%;
	}
}
.t-contribution__slide--cap span {
	width: 100%;
	height: 2px;
	background-color: #000;
	margin-left: auto;
	margin-top: auto;
	margin-bottom: 4px;
}

.t-contribution__slide--head {
	margin-top: 30px;
}
.t-contribution__slide--head h2 {
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	font-size: 3.1428571429rem;
	line-height: 1.0454545455;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--head h2 {
		font-size: 5.625rem;
		line-height: 1.0222222222;
	}
}

.t-contribution__slide--copy {
	position: relative;
	margin-top: 30px;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--copy {
		margin-top: 80px;
	}
}
.t-contribution__slide--copy p {
	font-weight: bold;
	font-size: 1.2857142857rem;
	line-height: 1.7777777778;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--copy p {
		font-size: 2rem;
		line-height: 1.375;
	}
}

.t-contribution__image {
	position: absolute;
	bottom: 0;
}

.t-contribution__slide--item {
	width: auto;
	max-width: 444px;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--item {
		padding-top: 0;
	}
}

.t-contribution__slide--item-box {
	background-color: #fff;
}
.t-contribution__slide--item-box p {
	padding: 12px 12px;
	font-size: 0.8571428571rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.t-contribution__slide--item-box p {
		font-size: 0.9375rem;
		line-height: 1.8666666667;
		padding: 40px 20px;
	}
}

@media screen and (min-width: 769px) {
	.l-1stview__image {
		width: 61.91%;
		margin: auto;
	}
}

.l-1stview__text {
	position: relative;
	display: block;
	width: 90%;
	margin: auto;
	margin-top: 180px;
	z-index: 1;
}
@media screen and (min-width: 769px) {
	.l-1stview__text {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 75%;
		margin: auto;
		position: absolute;
		bottom: 100px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@media screen and (min-width: 769px) {
	.l-1stview__text .t-contribution__slide--copy {
		width: 40%;
		margin-top: 0;
	}
}
.l-1stview__text .t-contribution__1stview-text {
	margin-top: 30px;
}
@media screen and (min-width: 769px) {
	.l-1stview__text .t-contribution__1stview-text {
		width: 60%;
		margin-top: 0;
	}
}
.l-1stview__text .t-contribution__1stview-text p {
	font-size: 0.8571428571rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.l-1stview__text .t-contribution__1stview-text p {
		font-size: 0.9375rem;
		line-height: 1.8666666667;
	}
}

/*==============================================
  fullPageScroll
==============================================*/
.fullPageScroll {
	width: 100%;
	height: 100vh;
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.fullPageScroll .l-footer {
	padding-top: 120px;
}
@media screen and (min-width: 769px) {
	.fullPageScroll .l-footer {
		padding: 80px 0 50px;
	}
}

.t-contribution-section {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow-y: scroll;
	/*スクロールバー非表示（IE・Edge）*/
	-ms-overflow-style: none;
	/*スクロールバー非表示（Firefox）*/
	scrollbar-width: none;
	/*スクロールバー非表示（Chrome・Safari）*/
}
.t-contribution-section::-webkit-scrollbar {
	display: none;
}

.last-slide-section {
	background-color: #f5f5f0;
	z-index: 1;
	width: 100%;
	height: 100vh;
	position: relative;
	display: block;
	min-height: auto;
}

.slide-section__inner {
	position: relative;
	z-index: 1;
	height: 100vh;
}

.pagination a.active {
	-webkit-transform: scale(1.8);
	transform: scale(1.8);
}

.slide-section__wrap {
	width: 90%;
	margin: auto;
	position: relative;
	z-index: 1;
}

.slide-section__bottom {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	width: 90%;
}
@media screen and (min-width: 769px) {
	.slide-section__bottom {
		width: 90%;
		margin: auto;
	}
}

#section1,
#section2,
#section3,
#section4 {
	height: 100vh;
	/*Google Chrome、Safariへの対応*/
}
#section1::-webkit-scrollbar,
#section2::-webkit-scrollbar,
#section3::-webkit-scrollbar,
#section4::-webkit-scrollbar {
	display: none;
}
#section1 .section1,
#section1 .section2,
#section1 .section3,
#section1 .section4,
#section2 .section1,
#section2 .section2,
#section2 .section3,
#section2 .section4,
#section3 .section1,
#section3 .section2,
#section3 .section3,
#section3 .section4,
#section4 .section1,
#section4 .section2,
#section4 .section3,
#section4 .section4 {
	height: 100vh;
}

.section0 {
	width: 100%;
	position: relative;
	background-color: #f5f5f0;
	z-index: 1;
	padding-bottom: 100px;
}
@media screen and (min-width: 769px) {
	.section0 {
		padding-bottom: 300px;
		height: auto;
	}
}

/*==============================================
  index02
==============================================*/
#fullpage .t-member__top-img:nth-of-type(2) .cd-fixed-bg {
	background: url("../../image/contribution/bg_image01_sp.jpg") no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(2) .cd-fixed-bg {
		background: url("../../image/contribution/bg_image01.jpg") no-repeat center;
		background-size: cover;
	}
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(2) .t-member__top-box {
		margin-left: auto;
		margin-right: 80px;
	}
}
#fullpage .t-member__top-img:nth-of-type(4) .cd-fixed-bg {
	background: url("../../image/contribution/bg_image02_sp.jpg") no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(4) .cd-fixed-bg {
		background: url("../../image/contribution/bg_image02.jpg") no-repeat center;
		background-size: cover;
	}
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(4) .t-member__top-box {
		margin-left: 50px;
	}
}
#fullpage .t-member__top-img:nth-of-type(6) .cd-fixed-bg {
	background: url("../../image/contribution/bg_image03_sp.jpg") no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(6) .cd-fixed-bg {
		background: url("../../image/contribution/bg_image03.jpg") no-repeat center;
		background-size: cover;
	}
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(6) .t-member__top-box {
		margin-left: 50px;
	}
}
#fullpage .t-member__top-img:nth-of-type(8) .cd-fixed-bg {
	background: url("../../image/contribution/bg_image04_sp.jpg") no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(8) .cd-fixed-bg {
		background: url("../../image/contribution/bg_image04.jpg") no-repeat center;
		background-size: cover;
	}
}
@media screen and (min-width: 769px) {
	#fullpage .t-member__top-img:nth-of-type(8) .t-member__top-box {
		margin-left: 50px;
	}
}

.t-member__top {
	position: relative;
}

.t-member__top-box {
	position: absolute;
	bottom: calc(5% + 40px);
	z-index: 1;
}
@media screen and (min-width: 769px) {
	.t-member__top-box {
		position: relative;
	}
}

.t-member__top-ttl p {
	display: inline;
	font-weight: bold;
	background-color: #BCC6F2;
	font-size: 1.4285714286rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.t-member__top-ttl p {
		font-size: 1.5rem;
		line-height: 1.8;
	}
}

.t-member__top-name {
	margin-top: 25px;
}
.t-member__top-name p {
	display: inline;
	background-color: #BCC6F2;
	font-weight: bold;
	font-size: 0.9285714286rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.t-member__top-name p {
		font-size: 0.8125rem;
		line-height: 2;
	}
}
.t-member__top-name p span {
	font-size: 0.7142857143rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.t-member__top-name p span {
		font-size: 0.625rem;
		line-height: 2;
	}
}

.t-member__top-img {
	width: 100%;
	margin: auto;
	-webkit-transition: 1.5s;
	transition: 1.5s;
	position: relative;
}
@media screen and (min-width: 769px) {
	.t-member__top-img {
		width: 100%;
	}
}
.t-member__top-img.is-active {
	opacity: 1;
}
.t-member__top-img:first-child .t-member__top-ttl p {
	font-size: 1.7142857143rem;
	line-height: 1.8;
}
@media screen and (min-width: 769px) {
	.t-member__top-img:first-child .t-member__top-ttl p {
		font-size: 1.5rem;
		line-height: 1.8;
	}
}

.t-member__qa {
	background-color: #fff;
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px;
}
@media screen and (min-width: 769px) {
	.t-member__qa {
		padding-top: 100px;
		padding-bottom: 0;
	}
}

.t-member__qa--head {
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.t-member__qa--head {
		margin: 0 auto 100px;
	}
}
.t-member__qa--head p {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: auto;
	font-weight: bold;
	border-bottom: solid 1px #000;
	padding-bottom: 40px;
	font-size: 2.1428571429rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.t-member__qa--head p {
		font-size: 2.25rem;
		line-height: 1;
		padding-bottom: 60px;
	}
}

.t-member__qa--wrap {
	display: block;
}
@media screen and (min-width: 769px) {
	.t-member__qa--wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

@media screen and (min-width: 769px) {
	.t-member__qa--image {
		position: relative;
		display: block;
		width: 50%;
	}
}

@media screen and (min-width: 769px) {
	.t-member__qa--text {
		position: relative;
		display: block;
		width: 50%;
	}
}

.t-member__qa--block {
	width: 84%;
	margin: 40px auto auto;
}
@media screen and (min-width: 769px) {
	.t-member__qa--block {
		position: relative;
		display: block;
		width: 75%;
		margin: 80px auto auto;
	}
}

.t-member__qa--no p {
	font-family: "Montserrat", sans-serif;
	font-size: 1.0714285714rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.t-member__qa--no p {
		font-size: 0.9375rem;
		line-height: 1;
	}
}

.t-member__qa--q {
	margin-top: 20px;
}
.t-member__qa--q p {
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	background-color: #BCC6F2;
	font-size: 1.5714285714rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.t-member__qa--q p {
		font-size: 1.5rem;
		line-height: 1;
	}
}

.t-member__qa--a {
	margin-top: 30px;
}
@media screen and (min-width: 769px) {
	.t-member__qa--a {
		margin-top: 40px;
	}
}
.t-member__qa--a p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.0714285714rem;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.t-member__qa--a p {
		font-size: 0.9375rem;
		line-height: 2;
	}
}

.one {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 100vh;
}
.one_txt {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 130vh;
}
.cd-fixed-bg {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	z-index: 0;
	width: 100%;
	margin: auto;
}
@media screen and (min-width: 769px) {
	.cd-fixed-bg {
		width: 100%;
		left: 0;
		right: 0;
		bottom: 0;
		height: 80%;
	}
}

.show .cd-fixed-bg {
	opacity: 1;
}

.l-footer {
	z-index: 1;
	padding-top: 120px;
	display: block;
	min-height: auto;
}
@media screen and (min-width: 769px) {
	.l-footer {
		padding: 80px 0 50px;
	}
}</pre></body></html>