<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_YLW : #ffea00;
	--color_BLU : #005ab4;
	--color_GRN : #00b42f;
	/* --color_RED : #bb0000; */
	--fontS : clamp(16px,2.4vw,24px);
	--fontM : clamp(18px,2.8vw,28px);
	--fontL : clamp(20px,3.8vw,38px);
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	color: var(--color_BLK);
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
}
.shippori-antique-b1-regular {
	font-family: "Shippori Antique B1", sans-serif;
	font-weight: 400;
}
.arial {
	font-family: Arial;
}
.font_yusei-magic {
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.dela {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
}
.dotgothic {
	font-family: "DotGothic16", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}
.dela em,
.dotgothic em {
	font-weight: normal !important;
}

.textlink {
	color: var(--color_BLU) !important;
	text-decoration: underline !important;
}
.textlink i {
	font-size: 0.9em;
	margin-right: var(--gap_8px);
}
.textlink .ib {
	text-decoration: underline !important;
}

.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED) !important;
}
.blue {
	color: var(--color_BLU) !important;
}
.ylw {
	color: var(--color_YLW) !important;
}
.lgry {
	color: #999;
}
.line_ylw {
	background: linear-gradient(180deg,transparent 70%, #ffea00 70%, #ffea00 100%);
}

.inner_wrap {
	padding: 0 var(--gap_32px);
	margin: 0 auto;
	max-width: 1600px;
}
.inner_wrap.max {
	max-width: 100%;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 {
	column-gap: 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 3%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(94% / 3);
}
.flex.col4 {
	column-gap: 2%;
	justify-content: unset;
}
.flex.col4 .flex_item {
	width: calc(90% / 6);
}
.flex.col4 .flex_item:nth-child(n + 7) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(80%, 480px);
	}
	.flex.col3 .flex_item {
		width: min(100%, 480px);
	}
	.flex.col2 .flex_item:not(:first-of-type),
	.flex.col3 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
	.flex.col4 .flex_item {
		width: calc(94% / 4);
	}
	.flex.col4 .flex_item:nth-child(n + 5) {
        margin-top: var(--gap_48px);
    }
}
@media screen and (max-width:479px) {
	.flex.col4 .flex_item {
		width: calc(96% / 3);
	}
	.flex.col4 .flex_item:nth-child(n + 4) {
        margin-top: var(--gap_48px);
    }
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-weight: bold;
	padding: var(--gap_8px) var(--gap_16px);
	margin: 0 auto;
	line-height: 1.1;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}
#btn_pagetop,
#btn_pagetop2 {
	bottom: clamp(8px, 2vw, 16px);
    position: fixed;
    z-index: 1010;
}
#btn_pagetop {
	right: clamp(8px, 2vw, 16px);
}
#btn_pagetop2 {
	left: clamp(8px, 2vw, 16px);
}
#btn_pagetop a,
#btn_pagetop2 a {
	display: block;
}

#btn_pagetop a img {
  width: clamp(50px, 9vw, 80px);
}
#btn_pagetop2 a img {
    width: clamp(100px, 12vw, 160px);
    left: clamp(8px, 2vw, 16px);
    bottom: clamp(8px, 2vw, 16px);
}
#btn_pagetop i {
	font-size: calc(var(--fontL) * 1.5);
	color: var(--color_BLU);
	background-color: #fff;
    border: solid 1px #fff;
    border-radius: 100px;
}
#btn_pagetop2 i {
	font-size: 1.4em;
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
.hidden {
	display: none !important;
}

.mob {
	display: none;
}
@media screen and (max-width: 899px) {
	.mob {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: #000 3px solid;
    padding: 15px;
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/* ==================================
    背景fixed　safari対応
============================*/
.page_bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
    z-index: -1;
}
.page_bg:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	background: url(../images/tver/bg.jpg) center top repeat-y;
}
@media screen and (max-width: 767px) {
	.page_bg:before {
		background: url(../images/tver/bg_mob.jpg) center top repeat-y;
	}
}
/* ==================================
============================*/

/* =============================================================
    【header】ブロック　
============================================*/
.tvo-header {
	position: relative;
	z-index: 1000;
}

#header {
	background-color: rgb(255,255,255,0.9);
	box-shadow: 0 0 var(--gap_8px) rgb(0 90 180 / 50%);
	position: sticky;
	top: 0;
	z-index: 999;
}
.header_nav {
	align-items: center;
	justify-content: end;
	column-gap: var(--gap_32px);
}
.header_nav .btn {
	font-weight: normal;
	margin-top: 0;
	padding: var(--gap_8px) var(--gap_16px);
	box-shadow: calc(var(--gap_8px) / 2) calc(var(--gap_8px) / 2) 0 #ddd;
}
.header_nav .btn::after {
	content: none;
}
.header_nav a {
	font-size: clamp(14px,1.8vw,18px);
	color: var(--color_BLK);
	line-height: 1.2;
	text-align: center;
	padding-block: var(--gap_16px);
    display: block;
}
.header_nav a small {
	font-size: 0.7em;
	line-height: 1;
	display: block;
}
.header_nav a i {
	font-size: var(--fontS);
}
@media screen and (min-width: 768px) {
	.btn_menu {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	#header {
		text-align: right;
	}
	#header .inner_wrap {
		position: relative;
	}
	.btn_menu {
		color: var(--color_BLK);
		background-color: #fff;
		padding: var(--gap_8px);
		margin-block: var(--gap_16px);
		display: inline-block;
		border-radius: var(--gap_8px);
		border: solid 1px #ccc;
	}
	.header_nav {
		/* display: none; */
		text-align: center !important;
		width: calc(100% - var(--gap_48px));
		flex-direction: column;
		background-color: rgb(255,255,255,0.95);
		box-shadow: 0 0 var(--gap_8px) rgb(0 90 180 / 50%);
		position: absolute;
		top: calc(100% + var(--gap_24px));
		left: var(--gap_24px);
		transform: translateY(-150vh);
		opacity: 0;
		transition: all 0.3s;
		max-height: 80vh;
		overflow-y: scroll;
	}
	.is-opend .header_nav {
		display: block !important;
		padding: var(--gap_16px);
		transform: translateY(0);
		opacity: 1;
	}
	.header_nav &gt; div {
		width: 100%;
	}
	.header_nav &gt; div:not(:last-of-type) a {
		border-bottom: solid 1px rgb(0 90 180 / 10%);
	}
}

/* =============================================================
    【contents】ブロック　
============================================*/
.btn_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--gap_32px) var(--gap_48px);
	margin-top: var(--gap_64px);
}
.btn {
	font-size: var(--fontS);
	color: #fff !important;
	padding: var(--gap_16px) var(--gap_48px) var(--gap_16px) var(--gap_32px);
	border-radius: 100px;
	box-shadow: var(--gap_8px) var(--gap_8px) 0 #ddd;
	position: relative;
}
.btn::before {
	margin-right: var(--gap_8px);
}
.btn_downld .btn::before {
	content: "\f1c6";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
	font-weight: 400;
}
.btn_contact .btn::before {
	content: "\f0e0";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
	font-weight: 400;
}
.btn::after {
	font-size: 0.8em;
	content: "\f105";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: var(--gap_16px);
	transform: translateY(-50%);
}
.btn mark {
	font-size: clamp(10px,1.4vw,14px);
    padding: calc(var(--gap_8px) / 4) calc(var(--gap_8px) / 2);
    box-shadow: 0 0 calc(var(--gap_8px) / 2);
	position: absolute;
	top: -0.8em;
    left: -1em;
    transform: rotate(-10deg);
}
.btn i {
	margin-right: var(--gap_8px);
}
.btn_downld .btn {
	background-color: var(--color_BLU);
}
.btn_contact .btn {
	background-color: var(--color_GRN);
}
@media screen and (max-width: 479px) {
	.btn mark {
		top: calc(var(--gap_8px) * -2);
	}
}

.inner_box {
	width: min(90%,1500px);
	margin: var(--gap_80px) auto;
	padding-block: var(--gap_64px);
	border-radius: var(--gap_32px);
	background-color: rgb(255,255,255,80%);
	box-shadow: 0 0 var(--gap_16px) rgb(0 90 180 / 50%);
}
.inner_box .inner_wrap {
	max-width: 1400px;
}
.sec_title {
	font-size: var(--fontL);
	font-weight: bold;
	text-align: center;
}

.read p {
	margin-block: var(--gap_8px);
}
/* .read p:first-of-type {
	margin-top: 0;
}
.read p:last-of-type {
	margin-bottom: 0;
} */

.check_text {
	text-align: left;
	margin-inline: auto;
	padding-left: 1em;
	display: inline-block;
}
.check_text p {
	font-weight: bold;
	line-height: 1.2;
	margin-block: var(--gap_8px);
	position: relative;
}
.check_text p::before {
	position: absolute;
    content: "\f14a";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 400;
    left: -1.2em;
    font-size: 0.9em;
    line-height: 1.6;
}
.check_text i {
	font-size: 0.9em;
	margin-right: var(--gap_8px);
}

.link_tver {
	font-size: var(--fontM);
	font-weight: bold;
}

/* ==================================
============================*/
/* #kv {
	background: url(/sales_tver/images/kv_cast01.png) no-repeat,
		url(/sales_tver/images/kv_cast02.png) no-repeat;
    background-size: min(50vw, 431px), min(50vw, 496px);
	background-position: left clamp(5%,10vw,120px) bottom, right var(--gap_96px) bottom;
    padding-block: var(--gap_64px);
} */
#kv {
	text-align: center;
	overflow: hidden;
}
#kv .inner_wrap {
	padding-inline: var(--gap_64px);
}
.kv_wrap {
	margin-inline: auto;
	padding-block: var(--gap_64px) var(--gap_80px);
	display: inline-block;
	position: relative;
}
/* .kv_wrap {
	margin-inline: auto;
	display: grid;
	grid-template-columns: 0.6fr 1fr 0.7fr;
	justify-content: center;
	align-items: flex-end;
} */
.kv_center_wrap {
	text-align: center;
	position: relative;
	z-index: 100;
	/* margin-block: var(--gap_64px); */
}

.kv_title {
	font-size: var(--fontL);
	font-weight: bold;
	line-height: 1.2;
}
.kv_title em {
	font-size: 1.2em;
}
.cm {
	font-size: 1.3em;
	color: var(--color_BLU);
	margin-inline: calc(var(--gap_8px) / 2);
	transform: rotate(-5deg) translateY(calc(var(--gap_8px) / 2));
	display: inline-block;
	position: relative;
}
.cm::after {
    color: #fff;
    content: "CM";
    position: absolute;
    top: calc(var(--gap_8px) / 3);
    left: calc(var(--gap_8px) / 3);
    z-index: -1;
}
.kv_title_sub {
	font-size: 1em;
	margin-top: var(--gap_8px);
}
.kv_pr_area .check_text{
	margin-block: var(--gap_48px);
}
.kv_pr_text01 {
	font-weight: bold;
	margin-bottom: var(--gap_24px);
}
.kv_pr_text01,
.kv_pr_text02 {
	text-shadow: 0 0 0.2em #f7fdff,0 0 0.2em #f7fdff,0 0 0.2em #f7fdff,0 0 0.3em #f7fdff,0 0 0.3em #f7fdff,0 0 0.3em #f7fdff,0 0 0.3em #f7fdff;
}

.kv_cast {
	position: absolute;
	bottom: 0;
}
.kv_cast01 {
	width: min(30vw, 431px) !important;
	left: calc(min(25vw, 431px) * -1);
}
.kv_cast02 {
	width: min(35vw, 496px) !important;
	right: calc(min(30vw, 496px) * -1);
}
@media screen and (max-width: 1079px) {
	.kv_cast01 {
		left: calc(min(22vw, 220px) * -1);
	}
	.kv_cast02 {
		right: calc(min(24vw, 496px) * -1);
	}
}
@media screen and (max-width: 767px) {
	.kv_cast01 {
		left: calc(min(6vw, 120px) * -1);
	}
	.btn_area_kv {
		margin-bottom: min(30vw,250px);
	}
	.kv_cast02 {
		right: calc(min(10vw, 55px) * -1);
	}
	.kv_pr_text01,
	.kv_pr_text02 {
		text-shadow: unset;
	}
}

/* =============================================================
    【intro】ブロック　
============================================*/
#intro {
	background: #FFF;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(217, 241, 253, 1) 100%);
	box-shadow: 0 0 var(--gap_16px) rgb(0 90 180 / 50%);
	position: relative;
	overflow: hidden;
}

.sad_line {
	width: min(50%, 412px);
	position: absolute;
	top: 0;
	left: 6%;
	animation: sad_line 5s infinite ;
	animation-iteration-count: 6;
}
@keyframes sad_line {
	0% {
	transform: translateY(-100%);
   }
	20% {
	transform: translateY(0);
   }
	100% {
	transform: translateY(0);
   }
}

.intro_wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	align-items: flex-end;
}
.intro_img {
	padding-top: calc(var(--gap_64px) * 2);
	position: relative;
}
.intro_img .prtext {
	font-size: clamp(22px,4.8vw,78px);
	text-align: center;
	line-height: 1.2;
	letter-spacing: -1px;
	color: var(--color_YLW);
	position: absolute;
	bottom: var(--gap_80px);
	left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    width: 100%;
    text-shadow: 0 0 0.1em #353e47,0 0 0.1em #353e47,0 0 0.2em #353e47;
}
.sad_text {
	width: clamp(60px,24vw,436px);
	position: absolute;
	top: var(--gap_24px);
	left: 0;
}
.sad_text01 {
	width: clamp(50px,11vw,200px);
	position: absolute;
}
.sad_text01 {
	top: var(--gap_64px);
	right: 5%;
}
/* .sad_text02 {
	top: 0;
	left: 40%;
} */

.intro_pr {
	text-align: center;
	padding-block: var(--gap_48px) var(--gap_64px);
	position: relative;
	z-index: 100;
}
.intro_pr .check_text p {
	font-size: var(--fontS);
	font-weight: normal;
}
.arw {
	font-size: var(--fontL);
	color: var(--color_BLU);
	margin-block: var(--gap_16px);
}
.intro_pr_text01 p {
	font-size: var(--fontM);
	font-weight: bold;
	line-height: 1.1;
}
.intro_pr_text01 p:not(:first-of-type) {
	margin-top: var(--gap_16px);
}
.intro_pr_text01 p em {
	font-size: 1.2em;
}
.intro_pr_text02 {
	font-size: var(--fontS);
	font-weight: bold;
	margin-block: var(--gap_32px);
}
.intro_pr_text02 em {
	font-size: 1.2em;
}
@media screen and (max-width: 1079px) {
	#intro {
		background: #FFF;
		background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(217, 241, 253, 1) 50%);
	}
	.intro_wrap {
		grid-template-columns: repeat(1,1fr);
	}
	.sad_text {
		width: clamp(60px,45vw,436px);
	}
	.sad_text01 {
		width: clamp(50px, 20vw, 200px);
        right: 15%;
	}
	.sad_cast {
		width: clamp(100px,58vw,580px) !important;
		margin-inline: auto;
        display: block;
	}
	.intro_img .prtext {
		font-size: clamp(24px, 5.8vw, 78px);
		bottom: var(--gap_48px);
	}
}


/* =============================================================
    【flow】ブロック　
============================================*/
#flow {
	overflow: hidden;
}
.flow_nav_wrap {
	padding: var(--gap_32px) var(--gap_24px);
	margin-top: 245px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	background-color: #d9f1fd;
}
.flow_nav_item {
	width: 23%;
	text-align: center;
	position: relative;
}
.flow_nav_item a {
	padding-inline: var(--gap_16px);
	display: block;
}
.flow_nav_item_arw {
	font-size: var(--fontM);
	text-align: center;
	color: var(--color_BLU);
	width: calc(8% / 3);
}
.flow_cast {
	width: clamp(80px,22vw,210px) !important;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.schedule {
	font-weight: bold;
	line-height: 1.1;
	padding: calc(var(--gap_8px) / 2) var(--gap_16px);
	display: inline-block;
}
.flow_nav_wrap .schedule {
	color: var(--color_GRN);
	margin: 0 auto var(--gap_16px);
	background-color: #fff;
}
.flow_nav_wrap .flow_title {
	height: 2.4em;
}

.flow_title {
	font-size: var(--fontS);
	font-weight: bold;
	line-height: 1.2;
}
.flow_mob {
	display: none;
}
@media screen and (max-width: 1299px) {
	.flow_pc {
		display: none;
	}
	.flow_mob {
		display: block;
	}
	.flow_nav_wrap {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: clamp(80px,22vw,215px);
	}
	.flow_nav_item {
		width: 43%;
	}
	.schedule {
		font-size: clamp(12px,2.4vw,20px);
	}
	.flow_nav_item .flow_title {
		font-size: clamp(12px,2.4vw,24px);
		height: unset;
	}
	.flow_nav_item.flow01 .flow_title .ib,
	.flow_nav_item.flow02 .flow_title .ib {
		display: block;
	}
	.flow_nav_item_arw {
		width: calc(14% / 2);
	}
}
@media screen and (max-width: 479px) {
	.schedule {
		padding: calc(var(--gap_8px) / 2) var(--gap_8px);
	}
}

.flow_step {
	width: min(90%,1100px);
	margin-inline: auto;
}
.flow_step_item {
	padding-top: var(--gap_48px);
}
.flow_step_item:first-of-type {
	padding-top: var(--gap_96px);
}
.flow_step_item_inner {
	padding: var(--gap_32px) var(--gap_32px) var(--gap_24px) var(--gap_32px);
	border-radius: var(--gap_16px);
	border: solid 1px;
	position: relative;
}
.step_num {
	font-size: var(--fontM);
	font-weight: bold;
	font-style: italic;
	line-height: 1;
	color: var(--color_BLU);
	padding: calc(var(--gap_8px) / 2) var(--gap_8px);
	background: transparent;
	background: linear-gradient(180deg,transparent 50%, #f7fdff 50%, #f7fdff 100%);
	display: inline-block;
	position: absolute;
	top: -1.5em;
}
.step_num em {
	font-size: 2em;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic !important;
}
.flow_step_item .schedule {
	color: #fff;
	background-color: var(--color_GRN);
	border-radius: var(--gap_8px);
	position: absolute;
    right: var(--gap_16px);
    top: var(--gap_16px);
}
.flow_step_item .flow_title {
	clear: both;
	margin-right: var(--gap_8px);
	display: inline-block;
}
.flow_step_item .read p {
	line-height: 1.3;
	padding-left: 1em;
}

.flow_step_item_arw {
    font-size: var(--fontL);
    line-height: 1;
	text-align: center;
    color: var(--color_BLU);
    padding-top: var(--gap_16px);
}
@media screen and (max-width: 767px) {
	.flow_step_item .flow_title {
		padding-top: var(--gap_32px);
	}
}
@media screen and (max-width: 479px) {
	.flow_step_item .flow_title {
		padding-top: var(--gap_48px);
	}
}

/* =============================================================
    【contact】ブロック　
============================================*/
.contact_wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	align-items: center;
	width: min(100%, 1300px);
    margin-inline: auto;
}
.contact_cast {
	text-align: center;
}
.contact_cast img {
	width: clamp(100px, 30vw, 430px) !important;
	margin-bottom: calc(var(--gap_64px) * -1);
}
.contact_cast .prtext {
    font-size: clamp(20px,2.8vw,38px);
    text-align: center;
    line-height: 1.2;
    letter-spacing: -1px;
	margin-bottom: var(--gap_48px);
    /* color: var(--color_YLW); */
    text-shadow: 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff,0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff;
}
.contact_detail {
	text-align: center;
	margin-block: var(--gap_48px);
}

.link_list {
	text-align: left;
	display: inline-block;
}
.link_list li {
	font-size: var(--fontS);
	position: relative;
}
.link_list li::before {
    position: absolute;
    content: "\f35a";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 400;
    left: -1.2em;
    font-size: 0.9em;
    line-height: 1.6;
}
.link_list li:not(:first-of-type) {
	margin-top: var(--gap_16px);
}
.link_list li a {
    line-height: 1.2;
    display: inline-block;
}
.link_list li small {
	font-size: 0.7em;
	display: inline-block;
}

.link_list_sub {
	padding-left: 1em;
	margin-block: var(--gap_32px) var(--gap_64px);
}
.link_list_sub a {
	margin-right: 1.5em;
	position: relative;
	display: inline-block;
}
.link_list_sub a::before {
    position: absolute;
    content: "\f0da";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
    left: -0.8em;
    font-size: 0.9em;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
	.contact_wrap {
		grid-template-columns: repeat(1,1fr);
	}
	.contact_cast {
		order: 2;
		text-align: center;
	}
	.contact_detail {
		order: 1;
	}
	.link_list {
		padding-left: 1.2em;
	}
}

/* =======================================
    アニメーション
=======================*/
.fuwafuwa {
	animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(8px);
   }
	50% {
	transform: translateY(-8px);
   }
	100% {
	transform: translateY(8px);
   }
}

.pikopiko {
	animation: pikopiko 1s steps(2, start) infinite;
	animation-iteration-count: 30;
}
@keyframes pikopiko {
	0% {
		transform: rotate(1deg);
	}
	to {
		transform: rotate(-1deg);
	}
}

.poyopoyo {
    animation: poyopoyo 2s ease-out infinite 1s;
}
.poyopoyo2 {
    animation: poyopoyo 2s ease-out infinite 2s;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
}

.poyoyon2 {
    animation: poyoyon2 5s ease-in-out infinite;
}
.poyoyon3 {
    animation: poyoyon3 5s infinite;
}
@keyframes poyoyon2 {
	0%  {
	  transform: scale(1.0, 1.0) translate(0, 0);
	}
	3% {
	  transform: scale(0.98, 0.9) translate(0, 5px);
	}
	6% {
	  transform: scale(1.02, 1.0) translate(0, 8px);
	}
	10% {transform: scale(0.98, 1.05) translate(0, -8px);
	}
	14% {
	  transform: scale(1.0, 0.9) translate(0, 5px);
	}
	20% {
	  transform: scale(1.0, 1.0) translate(0, 0);
	}
	100% {
	  transform: scale(1.0, 1.0) translate(0, 0);
	}
	0%, 100% {
	  opacity: 1;
	}
  }
  @keyframes poyoyon3 {
	0%, 20% {
	  transform: skew(0deg, 0deg);
	}
	2.5% {
	  transform: skew(2.5deg, 2.5deg);
	}
	5% {
	  transform: skew(-2deg, -2deg);
	}
	7.5% {
	  transform: skew(1.5deg, 1.5deg);
	}
	10% {
	  transform: skew(-1deg, -1deg);
	}
	12.5% {
	  transform: skew(0.5deg, 0.5deg);
	}
	15% {
	  transform: skew(-0.3deg, -0.63deg);
	}
	17.5% {
	  transform: skew(0.15deg, 0.15deg);
	}
  }

.arw {
	animation: arw 1.5s infinite;
}
@keyframes arw {
	0% {
	transform: translateY(calc(var(--gap_8px) * -1));
	opacity: 1;
   }
   100% {
	transform: translateY(var(--gap_8px));
	opacity: 1;
   }
}



/* 画像の表示アニメーション*/
  .slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
  &amp;.slidein-left{
      transform: translate(-100%,0);
  }
  &amp;.slidein-right{
      transform: translate(100%,0);
  }
  &amp;.slidein-up{
      transform: translate(0,-100%);
  }
  &amp;.slidein-bottom{
      transform: translate(0,100%);
  }
  &amp;.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}






</pre></body></html>