@charset "UTF-8";


* {
	font-feature-settings: "palt" 1;
}
html {
	/*overflow-y: scroll;
	overflow-x: hidden;*/
}
body {
	/*font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
	/*font-family: 'Noto Sans JP', sans-serif;*/
	/*font-family: "Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;*/
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
	word-break: normal; /* 単語の分割はデフォルトに依存 */
	line-break: strict; /* 禁則処理を厳格に適用 */
	position: relative;
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
body {
	font-size: 2vw;
}
}
/* screens smaller than 690---------------------------------------------------------- */
@media only screen and (max-width:690px) {
body {
	font-size: 2.4vw;
}
}

a.txtLink {
	color: #004ac9;
	transition: .3s;
}
a.txtLink:hover {
	color: #008bfc;
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
img.txt__link__icon {
	width: auto;
	height: 1em;
}
img.vertical {
	width: auto;
	height: 100%;
}

figure {
	margin: 0;
	padding: 0;
}

strong {
	font-weight: 700;
}

#topcontrol {
	bottom: 10px!important;
	right: 10px!important;
}
#pagetop {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #e4006e;
	border-radius: 5px;
	position: relative;
}
#pagetop::before {
	content: "";
	width: 44%;
	height: 44%;
	background: url(../images/icon_arr01_W_top.png) no-repeat center center / cover;
}
/* screens smaller than 1366---------------------------------------------------------- */
@media only screen and (max-width:1366px) {
#pagetop {
	width: 35px;
	height: 35px;
}
}

.pc {
display: block!important;
}
.sp {
display: none!important;
}
/* screens smaller than 690---------------------------------------------------------- */
@media only screen and (max-width:690px) {
.pc {
display: none!important;
}
.sp {
display: block!important;
}
}

.noLink {
	pointer-events: none;
}

.styleRE {
	-webkit-appearance: none;
	font-size: 1em;
	text-decoration: none;
	line-height: 1.1;
	background: none;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.input__text {
	display: block;
	width: 100%;
	background-color: #fff;
	border: 2px solid #333;
}
.input__text:focus {
	background-color: #e1efff;
}

.table__type01 {
	border: 1px solid #ccc;
}
.table__type01 th,
.table__type01 td {
	border: 1px solid #ccc;
	padding: .5em;
}
.table__type01 th {
	font-weight: 600;
	background-color: #f6f6f6;
}

.txt__L {
	text-align: left;
}
.txt__C {
	text-align: center;
}
.txt__R {
	text-align: right;
}


.paragraph+.paragraph {
	margin-top: .5em;
}
.list__disc {
	list-style-type: disc;
	padding-left: 1em;
}


/* ================================================= */
/* header */
/* ================================================= */
.header {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 50px;
	background-color: #d31168;
	padding: 0 10px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
}

.header .header__main {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 480px;
	height: 100%;
	padding: 10px;
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
.header {
	z-index: 1000;
}
.header .header__main {
	max-width: 100%;
}
}

.header .sns__block {
	display: flex;
	gap: 15px;
	height: 100%;
}
.header .sns__block .sns {
	display: flex;
	height: 100%
}
.header .sns__block .sns .sns__link {
	display: flex;
	height: 100%;
	transition: .3s;
}
.header .sns__block .sns .sns__link:hover {
	opacity: .7;
}
.header .sns__block .sns .sns__link img {
	width: auto;
	height: 100%;
}


.header .nav__blcok {
	width: 3em;
	padding: .2em 0;
	position: relative;
}
.header .nav__blcok .sp__nav {
	display: flex;
	display: none;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: relative;
}
.header .nav__blcok .sp__nav .bar {
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: .3s;
}
.header .nav__blcok .sp__nav .bar:nth-of-type(1) {
	top: 0;
}
.header .nav__blcok .sp__nav .bar:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.header .nav__blcok .sp__nav .bar:nth-of-type(3) {
	bottom: 0;
}

.header .nav__blcok .sp__nav.active .bar:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-135deg);
}
.header .nav__blcok .sp__nav.active .bar:nth-of-type(2) {
	opacity: 0;
}
.header .nav__blcok .sp__nav.active .bar:nth-of-type(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(135deg);
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
.header .nav__blcok .sp__nav {
	display: flex;
}
}
/* screens smaller than 690---------------------------------------------------------- */
@media only screen and (max-width:690px) {
.header .nav__blcok {
	width: 3.2em;
	padding: .4em 0;
}
}


/*.header .sns__block .nav {
	display: flex;
	width: 3.2em;
	padding: .2em 0;
}
.header .sns__block .sp__nav {
	display: flex;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: relative;
}
.header .sns__block .sp__nav .bar {
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: .3s;
}
.header .sns__block .sp__nav .bar:nth-of-type(1) {
	top: 0;
}
.header .sns__block .sp__nav .bar:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.header .sns__block .sp__nav .bar:nth-of-type(3) {
	bottom: 0;
}

.header .sns__block .sp__nav.active .bar:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-135deg);
}
.header .sns__block .sp__nav.active .bar:nth-of-type(2) {
	opacity: 0;
}
.header .sns__block .sp__nav.active .bar:nth-of-type(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(135deg);
}*/




/* PCモード */
.header .header__main .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 480px) / 2);
	height: calc(100vh - 50px);
	position: fixed;
	bottom: 0;
	left: 0;
}
.header .header__main .logo img {
	width: 60%;
}

.header .header__main .nav__contents {
	display: block;
	width: calc((100% - 480px) / 2);
	height: calc(100vh - 50px);
	position: fixed;
	bottom: 0;
	right: 0;
}
.header .header__main .nav__main {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.header .header__main .nav__contents .nav__list {
	/*display: grid;
	grid-template-rows: repeat(5, 1fr);*/
	display: flex;
	flex-direction: column;
	width: 60%;
}
.header .header__main .nav__contents .nav__list .item {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*.header .header__main .nav__contents .nav__list .item:nth-of-type(even) {
	padding-left: 25%;
}
.header .header__main .nav__contents .nav__list .item:nth-of-type(odd) {
	padding-right: 25%;
}*/
.header .header__main .nav__contents .nav__list .item a {
	display: flex;
	transition: .2s;
}
.header .header__main .nav__contents .nav__list .item a:hover {
	transform: scale(1.1);
}
.header .header__main .nav__contents .nav__list .item a.noLink {
	opacity: .6;
}
/* screens smaller than 1366---------------------------------------------------------- */
@media only screen and (max-width:1366px) {
.header .header__main .logo img {
	width: 70%;
}
.header .header__main .nav__contents .nav__list {
	width: 65%;
}
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
.header .header__main .logo {
	display: none;
}
.header .header__main .nav__contents {
	display: none;
	width: 100%;
	height: calc(100dvh - 50px);
	background-color: #ffeef5;
}
.header .header__main .nav__contents .nav__list {
	width: 60%;
}
.header .header__main .nav__contents .nav__list .item a:hover {
	transform: scale(1);
}
}





/* ================================================= */
/* footer */
/* ================================================= */
.footer {
	width: 100%;
	max-width: 480px;
	background-color: #5c1a85;
	padding: 10% 20px;
}
.footer .footer__main {
/*	padding: 10% 0;*/
}
.footer .footer__contents {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer .footer__contents+.footer__contents {
	margin-top: 8%;
}
.footer .footer__contents .footer__contents__title {
	font-size: 2.2em;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1em;
}
.footer .footer__contents .sns__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 16%;
	grid-gap: 2em;
}

.footer .footer__contents.contents__contact .office {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.5em;
}
.footer .footer__contents.contents__contact .office {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer .footer__contents.contents__contact .office .office__name {
	font-weight: 700;
	color: #fff;
}
.footer .footer__contents.contents__contact .office .office__email a {
	color: #fff;
}

.footer .footer__contents.contents__connection {
	margin-top: 13%;
}
.footer .footer__contents.contents__connection .connection__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.3em;
	color: #fff;
	text-align: center;
}
.footer .footer__contents.contents__connection .connection__block+.connection__block {
	margin-top: 1em;
}
.footer .footer__contents.contents__connection .connection__block .title {
	font-size: 1.1em;
	font-weight: 700;
	margin-bottom: .5em;
}

.footer .copylight {
	color: #fff;
	text-align: center;
	margin-top: 5%;
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
.footer {
	max-width: 100%;
}
}





.wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-color: #fff;
	padding-top: 50px;
	position: relative;
}
.wrapper::before {
/*	content: "";*/
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(180deg, rgba(16, 190, 252, 1) 4%, rgba(129, 188, 243, 1) 13%, rgba(230, 177, 225, 1) 28%, rgba(250, 127, 229, 1) 49%, rgba(255, 125, 125, 1) 67%, rgba(247, 152, 102, 1) 78%, rgba(255, 212, 189, 1) 95%);
	position: fixed;
	top: 0;
	left: 0;
	opacity: .2;
}
.wrapper::after {
	content: "";
	width: 100%;
	height: 100vh;
	background: url(../images/bodybg.png) no-repeat bottom center / cover;
	position: fixed;
	top: 0;
	left: 0;
	opacity: .8;
}

.container {
	/*display: grid;
	grid-template-columns: 1fr 480px 1fr;*/
	/*display: flex;
	justify-content: center;*/
/*	width: 100%;*/
	position: relative;
	z-index: 5;
}
.container::before,
.container::after {
/*	content: "";*/
/*	height: 100vh;*/
}
/*.container::before {
	background: url(../images/logo.png) no-repeat center center / 50%;
}*/

.contents {
	width: 100%;
	max-width: 480px;
/*	height: 2000px;*/
/*	background-color: #d1db7e;*/
/*	background-color: #efee8e;*/
	background-color: #fff;
	border: 10px solid #fff;
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
.contents {
	max-width: 100%;
}
}



.contents__section .section__inner {
	font-size: 1.7em;
	padding: 10% 20px;
	position: relative;
}
.contents__section+.contents__section::before {
	content: "";
	display: block;
	width: 100%;
	background: url(../images/line01.png) no-repeat top center / cover;
	margin-bottom: 5%;
	padding-top: 6.328125%;
}
.section__title {
	padding:0 5%;
}
.section__title+.section__main {
	margin-top: 8%;
}





/* About */
/* ================================================= */
.section__about {
	background-color: #fff;
}
.section__about .about__contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
}
.section__about .about__contents+.about__contents {
	margin-top: 2em;
}
.section__about .about__contents .contents__title {
	display: flex;
	justify-content: center;
}
.section__about .about__contents .contents__title > span {
	font-size: 1.1em;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	background-color: #d31268;
	border-radius: 100vh;
	padding: .2em 1em;
}
.section__about .about__contents .contents__title+.contents__block {
	margin-top: 1em;
}
.section__about .about__contents .contents__block {
	font-size: 1.2em;
}





/* Access */
/* ================================================= */
.section__access .section__inner {
	background-color: #efee8e;
}
.section__access .gmap {
	position: relative;
	width: 100%;
	margin-bottom: 1em;
	padding-top: 70%;
	height: 0;
}
.section__access .gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section__access .access__contents {
	font-size: .9em;
}
.section__access .access__contents+.access__contents {
	margin-top: 1.5em;
}
.section__access .access__contents .contents__title {
	display: flex;
	font-size: .9em;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: .5em;
}
.section__access .access__contents .contents__title > span {
	background-color: #333;
	padding: .2em .6em;
}

.section__access .access__contents .dl__list .list__block+.list__block {
	margin-top: .5em;
}
.section__access .access__contents .dl__list .title {
	font-weight: 700;
}





/* screens smaller than 1240---------------------------------------------------------- */
@media only screen and (max-width:1240px) {
}
/* screens smaller than 1080---------------------------------------------------------- */
@media only screen and (max-width:1080px) {
}
/* screens smaller than 768---------------------------------------------------------- */
@media only screen and (max-width:768px) {
}
/* screens smaller than 690---------------------------------------------------------- */
@media only screen and (max-width:690px) {
}


