@charset "UTF-8";


/*---------------------------------------------------------------*\
$design tokens
\*---------------------------------------------------------------*/

:root {
	/* Colors — Primary */
	--color_primary: #00CEF0;
	--color_primary_trans: rgba(0, 204, 240, .8);
	--color_black: #2f2f2f;
	--color_white: #fff;
	--color_gray: #aaa;
	--color_text: #2a2a2a;
	--color_bg_gray: #fafafa;

	/* Colors — Brand */
	--color_gold: #d4c6af;
	--color_coral: #FF9EA2;
	--color_light_blue: #D1F5FF;
	--color_yellow: #FFCF3B;
	--color_green: #DBFDF3;
	--color_beige: #FEF7F1;
	--color_purple_bg: #ECEEFF;
	--color_autumn: #f1bead;

	/* Season Colors */
	--color_winter: #aedfee;
	--color_spring: #ffebf9;
	--color_summer: #B7F0E2;
	--font_winter: #488ea4;
	--font_spring: #d699c4;
	--font_summer: #46ab91;
	--font_autumn: #a15b43;
	--color_avex: #004CAC;

	/* Gradients */
	--gradient_blue: linear-gradient(206.57deg, #00CEF0 0%, #CDF6FF 83.33%);
	--gradient_magic: linear-gradient(222deg, #D1F5FF 0%, #ECEEFF 51.56%, #FEF7F1 100%);

	/* Shadows */
	--shadow_default: 0px 0px 32px rgba(0, 0, 0, 0.08);
	--shadow_s: 0px 10px 20px rgba(0, 0, 0, .1);
	--shadow_m: 0px 10px 20px rgba(0, 0, 0, .3);

	/* Animation */
	--duration_fast: .2s;
	--duration_base: .3s;
	--duration_slow: .5s;
	--ease_out: cubic-bezier(.2, 0, .2, 1);

	/* Borders */
	--border_subtle: rgba(0, 0, 0, .08);
	--border_light: rgba(0, 0, 0, .1);

	/* Border Radius */
	--radius: 10px;
	--radius_m: 20px;
	--radius_l: 60px;
	--radius_round: 50%;
	--radius_button: 80px;
}


/*---------------------------------------------------------------*\
$floating CV
\*---------------------------------------------------------------*/

#floating_cv {
	display: none;
	width: 240px;
	height: 64px;
	border-radius: 16px;
	position: fixed;
	bottom: 56px;
	left: 56px;
	z-index: 15;
	background-color: var(--color_primary);
	box-shadow: inset 0px 0px 20px rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

#floating_cv .inner_floating_banner {
	background-image: url('../img/floating_banner_sp.png');
	background-position: 16px;
	background-repeat: no-repeat;
	background-size: 180px;
	width: 100%;
	height: 100%;
}

#floating_cv .inner_floating_banner {
	position: relative;
}

#floating_cv .icon_floating_banner_close {
	background-image: url('../img/icon_floating_banner_close.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	z-index: 16;
	top: -5px;
	right: -5px;
	cursor: pointer;
}

#floating_cv .link_floating_cv {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


@media screen and (max-width: 760px) {

	#floating_cv {
		visibility: hidden;
	}
}


@media screen and (max-width: 640px) {

	#floating_cv {
		visibility: visible;
		background-position: center;
		background-size: cover;
		width: 100%;
		height: 54px;
		bottom: 0;
		left: 0;
		border-radius: 0px;
		border-top: solid 1px #78e6ff;
		background-color: rgb(0, 204, 240, .8);
		box-shadow: inherit;
	}

	#floating_cv .inner_floating_banner {
		background-image: url(../img/floating_banner_sp.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 190px;
		width: 100%;
	}

	#floating_cv .icon_floating_banner_close {
		top: 0;
		right: 12px;
		margin: auto;
		bottom: 0;
	}
}



/*---------------------------------------------------------------*\
$wrapper
\*---------------------------------------------------------------*/

.wrapper {
	display: flex;
	margin-top: -60px;
	border-radius: var(--radius_l);
	background-color: var(--color_white);
	position: relative;
	box-shadow: var(--shadow_default);
	z-index: 2;
}

@media screen and (max-width: 600px) {

	.wrapper {
		border-radius: 40px;
	}
}



/*---------------------------------------------------------------*\
$lower page top
\*---------------------------------------------------------------*/

#lower_page_top {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 540px;
	z-index: 0;
	background-color: hsla(200, 100%, 86%, 1);
	background-image:
		radial-gradient(at 88% 98%, hsla(0, 100%, 96%, 1) 0px, transparent 50%),
		radial-gradient(at 100% 38%, hsla(184, 75%, 66%, 1) 0px, transparent 50%),
		radial-gradient(at 0% 100%, hsla(184, 75%, 66%, 1) 0px, transparent 50%);
}

#lower_page_top .wrap_titles_lpt {
	margin: 0 0 0 5%;
}

#lower_page_top .sub_headline {
	font-size: 20px;
}

#lower_page_top .headline {
	font-weight: 700;
	font-size: 100px;
	letter-spacing: -2px;
}


@media screen and (max-width: 860px) {

	#lower_page_top .headline {
		font-size: 90px;
	}
}


@media screen and (max-width: 600px) {

	#lower_page_top {
		height: 400px;
	}

	#lower_page_top .dot {
		width: 6px;
		height: 6px;
		margin: 17% 4px 0 0;
	}

	#lower_page_top .sub_headline {
		font-size: 17px;
	}

	#lower_page_top .headline {
		font-size: 54px;
	}
}


/*---------------------------------------------------------------*\
$styles
\*---------------------------------------------------------------*/

/* reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, input, select, textarea, button {
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, li {
	list-style: none;
}

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

caption, th {
	text-align: left;
}

figure {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
}


/* fonts */
.arboria_500 {
	font-family: "arboria", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.arboria_700 {
	font-family: "arboria", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.noto_500 {
	font-family: 'noto-sans-cjk-jp', sans-serif;
	font-weight: 500;
	font-style: normal;
}

.noto_700 {
	font-family: 'noto-sans-cjk-jp', sans-serif;
	font-weight: 700;
	font-style: normal;
}

.font_bold {
	font-weight: 500;
	font-style: normal;
}


/* selection color */
::selection {
	background: var(--color_light_blue);
}


/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}


/* block content */
.block {
	display: block;
}


/* all,html,body,layout */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	margin: 0 !important;
}

body {
	color: var(--color_text);
	font-size: 100%;
	letter-spacing: 0;
	line-height: 1;
	font-weight: 500;
	font-feature-settings: "palt";
	font-family: "arboria", 'noto-sans-cjk-jp', -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI", Meiryo, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--color_white);
}


/* images and movies */
img, canvas, iframe, video, svg {
	border: 0;
	max-width: 100%;
	height: auto;
	display: block;
}


/* text align */
.align_center {
	text-align: center;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}


/* flex */
.flex {
	display: flex;
}

.flex_col {
	flex-direction: column;
}

.flex_col_reverse {
	flex-direction: column-reverse;
}

.flex_wrap {
	flex-wrap: wrap;
}

.justify_between {
	justify-content: space-between;
}

.justify_center {
	justify-content: center;
}

.justify_start {
	justify-content: flex-start;
}

.justify_end {
	justify-content: flex-end;
}

.items_center {
	align-items: center;
}

.items_start {
	align-items: flex-start;
}

.items_end {
	align-items: flex-end;
}

.items_baseline {
	align-items: baseline;
}


/* grid */
.grid {
	display: grid;
}

.grid_1fr {
	grid-template-columns: 1fr;
}

.grid_2fr {
	grid-template-columns: repeat(2, 1fr);
}

.grid_3fr {
	grid-template-columns: repeat(3, 1fr);
}

.grid_4fr {
	grid-template-columns: repeat(4, 1fr);
}


@media screen and (max-width: 1280px) {

	.grid_3fr {
		grid-template-columns: repeat(2, 1fr);
	}
}


@media screen and (max-width: 960px) {

	.grid_2fr,
	.grid_3fr {
		grid-template-columns: 1fr;
	}
}


/* line height */
.line_mini {
	line-height: 1.3;
}

.line_p {
	line-height: 1.8;
}

.line_ex {
	line-height: 2;
}

.line_max {
	line-height: 3;
}


/*---------------------------------------------------------------*\
$text break
\*---------------------------------------------------------------*/

.break_on_sp {
	display: none;
}

@media screen and (max-width: 600px) {

	.break_on_sp {
		display: block;
	}
}


/* icon */
.fab {
	font-size: 20px;
}

.fa-youtube {
	color: #cd201f
}

.fa-twitter {
	color: #55acee;
}

.fa-instagram {
	background: -webkit-radial-gradient(33% 100% circle, #FED373 4%, #F15245 30%, #D92E7F 62%, #9B36B7 85%, #515ECF);
	background: radial-gradient(circle at 33% 100%, #FED373 4%, #F15245 30%, #D92E7F 62%, #9B36B7 85%, #515ECF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* colors */
.primary_blue {
	background-color: var(--color_primary);
}

.primary_blue_trans {
	background-color: var(--color_primary_trans);
}

.primary_black,
.primary_dark {
	background-color: var(--color_black);
}

.primary_white {
	background-color: var(--color_white);
}

.linear_blue {
	background: var(--gradient_blue);
}

.linear_extra {
	background-color: hsla(188, 78%, 74%, 1);
	background-image:
		radial-gradient(at 88% 98%, hsla(0, 100%, 96%, .7) 0px, transparent 50%),
		radial-gradient(at 100% 38%, hsla(201, 97%, 87%, 1) 0px, transparent 50%),
		radial-gradient(at 0% 100%, hsla(201, 97%, 87%, 1) 0px, transparent 50%);
}

.linear_magic,
.linear_purple {
	background: var(--gradient_magic);
}

.counter_gold {
	background-color: var(--color_gold);
}

.counter_coral {
	background-color: var(--color_coral);
}

.counter_light_blue {
	background-color: var(--color_light_blue);
}

.counter_yellow {
	background-color: var(--color_yellow);
}

.background_green {
	background-color: var(--color_green);
}

.background_beige {
	background-color: var(--color_beige);
}

.background_purple {
	background-color: var(--color_purple_bg);
}

/* season colors */
.background_winter {
	background-color: var(--color_winter);
}

.background_spring {
	background-color: var(--color_spring);
}

.background_summer {
	background-color: var(--color_summer);
}

.background_autumn {
	background-color: var(--color_autumn);
}

.font_winter {
	color: var(--font_winter);
}

.font_spring {
	color: var(--font_spring);
}

.font_summer {
	color: var(--font_summer);
}

.font_autumn {
	color: var(--font_autumn);
}

.primary_gray,
.background_gray {
	background-color: var(--color_bg_gray);
}

.primary_avex {
	background-color: var(--color_avex);
}


/* font colors */
.font_white {
	color: var(--color_white);
}

.font_blue {
	color: var(--color_primary);
}

.font_black {
	color: var(--color_text);
}

.font_trans {
	color: transparent;
}

.font_gray {
	color: var(--color_gray);
}


/*---------------------------------------------------------------*\
$radius
\*---------------------------------------------------------------*/

.radius {
	border-radius: 20px;
	overflow: hidden;
}

.radius_s,
.radius_thumbnail {
	border-radius: 10px;
	overflow: hidden;
}

.radius_round {
	border-radius: 50%;
	overflow: hidden;
}

.radius_button {
	border-radius: 80px;
	overflow: hidden;
}


@media screen and (max-width: 600px) {

	/* radius */
	.radius_s,
	.radius_thumbnail {
		border-radius: 10px;
	}
}


/* shadow */
.shadow {
	box-shadow: var(--shadow_m);
}

.shadow_s {
	box-shadow: var(--shadow_s);
}


/* table */
table {
	margin-top: 40px;
}

table tbody {
	margin-top: 40px;
}

table td {
	width: 100%;
	table-layout: fixed !important;
}

table tbody tr, td {
	padding: 12px;
	text-align: center;
}

table tbody tr td {
	border-right: solid 2px #fff;
}

table tbody tr td:last-child {
	border-right: none;
}

table tbody tr:first-of-type td {
	background-color: #FFCB46;
}

table tbody tr:nth-of-type(odd) {
	background-color: #FFE8CD;
}

table tbody tr:nth-of-type(even) {
	background-color: #FFF4E8;
}


/* font size */
.font_80 {
	font-size: 80px;
}

.font_72 {
	font-size: 72px;
}

.font_64 {
	font-size: 64px;
}

.font_56 {
	font-size: 56px;
}

.font_48 {
	font-size: 48px;
}

.font_40 {
	font-size: 40px;
}

.font_32 {
	font-size: 32px;
}

.font_30 {
	font-size: 30px;
}

.font_28 {
	font-size: 28px;
}

.font_26 {
	font-size: 26px;
}

.font_24 {
	font-size: 24px;
}

.font_22 {
	font-size: 22px;
}

.font_20 {
	font-size: 20px;
}

.font_18 {
	font-size: 18px;
}

.font_16 {
	font-size: 16px;
}

.font_15 {
	font-size: 15px;
}

.font_14 {
	font-size: 14px;
}

.font_13 {
	font-size: 13px;
}

.font_12 {
	font-size: 12px;
}

.font_11 {
	font-size: 11px;
}

.font_10 {
	font-size: 10px;
}

.secondary_dark,
.contrast_dark,
.contrast_black {
	background-color: #2a2a2a;
}


/* font colors - old*/
.font_purple {
	color: #495BFF;
}

.font_yellow {
	color: #FFCB46;
}

.font_gray {
	color: #747474;
}

.font_secondary_dark {
	color: #444;
}


/* strokes - old*/
.stroke {
	border: solid 2px #1d1d1d;
}

.stroke_gray {
	border: solid 2px #eee;
}


/*---------------------------------------------------------------*\
$button
\*---------------------------------------------------------------*/

.button_common {
	width: 320px;
	height: 72px;
	text-align: center;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 80px;
	border: solid 2px #2a2a2a;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.button_common:hover {
	border: solid 2px #2a2a2a;
	background-color: #2a2a2a;
}


@media screen and (max-width: 600px) {

	/* buttons */
	.button_common {
		width: 240px;
		height: 56px;
		font-size: 13px;
		padding: 14px 0;
	}
}


/* form */
input::placeholder,
textarea::placeholder {
	color: #aaa;
}

/* form - IE */
input:-ms-input-placeholder,
input:-ms-textarea-placeholder {
	color: #aaa;
}

/* form - Edge */
input::-ms-input-placeholder,
input:-ms-textarea-placeholder {
	color: #aaa;
}


/* input */
input[type="search"],
input[type="button"],
input[type="submit"],
input[type="reset"] select,
textarea,
button {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input, select, textarea, button {
	font-family: inherit;
	font-weight: inherit;
	border: 1px solid var(--color_text);
	border-radius: 0;
	background-color: var(--color_white);
}

input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="file"],
input[type="image"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
select,
textarea {
	display: block;
}

input[type="color"],
input[type="file"],
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
	cursor: pointer;
}

input[type="color"],
input[type="file"],
input[type="image"] {
	border: none;
	background-color: transparent;
}

select {
	text-indent: 0.01px;
	text-overflow: '';
	background-image: url(./under_arrow.svg);
	background-position: 100% center;
	background-repeat: no-repeat;
	padding: 0 20px 0 10px;
}

select::-ms-expand {
	display: none;
}

textarea {
	overflow: auto;
	display: block;
	resize: vertical;
}


/*---------------------------------------------------------------*\
$accessibility
\*---------------------------------------------------------------*/

:focus-visible {
	outline: 2px solid var(--color_primary);
	outline-offset: 2px;
}

.sr_only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}