@charset "utf-8";
/* =================================================================
   Foundation
   ================================================================= */
:root {
	--font-family: "Yu Gothic", "游ゴシック", yugothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif; /* stylelint-disable-line max-line-length */
	--color-primary: #0069ab;
	--color-primary-h: 203;
	--color-primary-s: 100%;
	--color-primary-l: 34%;
	--color-primary-dark: hsl(var(--color-primary-h) var(--color-primary-s) 24%);
	--color-primary-light: hsl(var(--color-primary-h) var(--color-primary-s) 44%);
	--color-secondary: #939597;
	--color-secondary-h: 210;
	--color-secondary-s: 2%;
	--color-secondary-l: 58%;
	--color-secondary-dark: hsl(var(--color-secondary-h) var(--color-secondary-s) 48%);
	--color-secondary-light: hsl(var(--color-secondary-h) var(--color-secondary-s) 68%);
	--color-error: #e00f31;
	--color-error-h: 350;
	--color-error-s: 87%;
	--color-error-l: 47%;
	--color-success: #19b557;
	--color-success-h: 144;
	--color-success-s: 76%;
	--color-success-l: 40%;
	--black: #000;
	--gray-1: #1b1b1b;
	--gray-2: #333;
	--gray-3: #4d4d4d;
	--gray-4: #666;
	--gray-5: #808080;
	--gray-6: #999;
	--gray-7: #b3b3b3;
	--gray-8: #ccc;
	--gray-9: #d9d9d9;
	--gray-10: #e5e5e5;
	--bg-gray: #e7ecec;

	/* Typography */
	--color-text: var(--gray-1);
	--color-link: var(--color-primary);
	--color-link-hover: var(--color-primary-light);

	/* Forms */
	--focusring: 0 0 0 .3rem hsl(var(--color-primary-h) var(--color-primary-s) var(--color-primary-l) / 20%);
	--focusring-error: 0 0 0 .3rem hsl(var(--color-error-h) var(--color-error-s) var(--color-error-l) / 20%);
	--focusring-success: 0 0 0 .3rem hsl(var(--color-success-h) 50% var(--color-success-l) / 20%);

	/* Space base */
	--space-1: 1em;
	--space-2: 2em;
	--space-3: 3em;
	--space-4: 4em;
	--space-5: 5em;
}
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}
/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}
/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  line-height: 1.5; /* 2 */
  cursor: default; /* 1 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}
/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}
/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 2 */
  overflow: visible; /* 3 */
  color: inherit; /* 1 */
}
/**
 * Add the correct display in IE.
 */
main {
  display: block;
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  padding: 0;
  list-style: none;
}
/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
nav li::before {
  content: "\200B";
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
pre {
  overflow: auto; /* 3 */
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
  -ms-overflow-style: scrollbar; /* 3 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}
/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
table {
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 1 */
  text-indent: 0; /* 3 */
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}
/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; /* 2 */
  border: 1px solid #a0a0a0; /* 1 */
}
/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}
/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}
/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */ /* 3 */
}
/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}
/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  padding: 1em;
  border: solid;
  background-color: white;
  color: black;
}
dialog:not([open]) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* User interaction
 * ========================================================================== */
/*
 * Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}
/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}
/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: inline;
}
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/* Base style setting */
html {
	font-size: 62.5%;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
	background-color: #fff;
	color: #1b1b1b;
	color: var(--color-text);
	font-weight: 500;
	line-height: 2;
	font-family: "Yu Gothic", "游ゴシック", yugothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
	font-family: var(--font-family);
	touch-action: manipulation;
}
body::after {
	z-index: 101;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	content: "";
	touch-action: none;
	transition: opacity .3s, visibility 0s .3s;
}
.is-loaded body::after {
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s .1s, visibility 0s .4s;
}
a {
	color: #0069ab;
	color: var(--color-link);
	-webkit-text-decoration: none;
	text-decoration: none;
}
a:hover {
		color: hsl(203, 100%, 44%);
		color: var(--color-link-hover);
	}
a:focus-visible {
		outline: 2px auto Highlight;
		outline: 5px auto -webkit-focus-ring-color;
	}
/* Typography base setting */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1em;
}
p, ul, ol, dl, blockquote, table {
	margin-top: 0;
	margin-bottom: 1em;
}
dd {
	margin-left: 0;
}
ol, ul {
	padding-left: 2em;
}
ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
nav ul {
	margin-bottom: 0;
}
nav li::before {
	content: none;
}
em {
	font-style: normal;
}
rp, rt {
	font-size: .6875em;
	line-height: 1;
}
table {
	font-size: 1em;
	empty-cells: show;
}
figure {
	margin: 0;
}
img {
	height: auto;
}
iframe {
	width: 100%;
}
img, iframe, button, input, select, textarea {
	max-width: 100%;
}
input, select, textarea {
	font-family: inherit;
}
textarea {
	height: auto;
}
::-moz-placeholder {
	font-family: inherit;
}
::placeholder {
	font-family: inherit;
}
.no-link {
	color: inherit;
	pointer-events: none;
}
/* Icons */
@font-face {
  font-style: normal;
  font-weight: normal;
  src:
    url('fonts/icomoon.ttf?n59y8i') format('truetype'),
    url('fonts/icomoon.woff?n59y8i') format('woff'),
    url('fonts/icomoon.svg?n59y8i#icomoon') format('svg');
  font-family: icomoon;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: icomoon!important; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
  speak: never;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-feature-settings: normal;
  text-transform: none;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow-right::before {
  content: "\e905";
}
.icon-arrow-left::before {
  content: "\e906";
}
.icon-access::before {
  content: "\e901";
}
.icon-global::before {
  content: "\e902";
}
.icon-mail::before {
  content: "\e903";
}
.icon-privacy::before {
  content: "\e900";
}
/* =================================================================
   Layout
   ================================================================= */
/* -------------------------------- *\
    Header
\* -------------------------------- */
.header {
	display: flex;
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 16px;
	background: #fff;
	box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.08);
}
.header__title {
	width: 260px;
	font-size: 1em;
}
.header__title img {
		display: block;
	}
/* -------------------------------- *\
    Global navigation
\* -------------------------------- */
/* 開閉ボタン */
.gnav-open-btn,
.gnav-close-btn {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	padding: 0;
	border: none;
	background-color: transparent;
	text-align: center;
}
.gnav-open-btn {
	color: #000;
}
.gnav-close-btn {
	color: #fff;
}
/* 開閉パネル */
.gnav {
	z-index: 1;
	position: fixed;
	top: 0;
	right: 0;
	width: 90%;
	max-width: 400px;
	height: 100%;
	padding-top: 50px;
	overflow-y: auto;
}
.gnav::before {
		position: fixed;
		top: 0;
		right: 0;
		width: 90%;
		max-width: 400px;
		height: 100%;
		transform-origin: right top;
		background-color: #0069ab;
		background-color: var(--color-primary);
		content: "";
		transition: transform .3s;
	}
.gnav__inner {
	padding: 0 8%;
	transition: .4s .2s ease-out;
}
.gnav[aria-hidden="true"] {
	opacity: 0;
	pointer-events: none;
}
.gnav[aria-hidden="true"]::before {
	transform: scaleX(0);
	transition: none;
}
.gnav-list li {
		margin: 1.5em 0;
	}
.gnav-list a {
		display: inline-block;
		color: #fff;
		font-weight: bold;
		font-size: 1.3rem;
		font-size: max(1.4rem, min(3.5vw, 1.8rem));
		line-height: 1.5;
	}
.gnav-list a span {
		display: block;
	}
.gnav-list a img {
		display: block;
		width: auto;
		height: 2.4em;
		margin-bottom: 0.5em;
	}
/* パネル展開時の画面表示 */
.outer {
	position: relative;
	overflow-x: hidden;
	transition: z-index 0s .3s;
}
.overlay {
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	touch-action: none;
	transition: opacity .3s, visibility 0s .3s;
}
.nav-opened body {
		position: fixed;
		right: 0;
		left: 0;
	}
.nav-opened .outer {
		z-index: -100;
		overflow: auto;
		scrollbar-gutter: stable;
		transition: none;
	}
.nav-opened .overlay {
		visibility: visible;
		opacity: .8;
		transition-delay: 0s, 0s;
	}
/* アニメーション設定 */
.js .gnav-list a {
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: -webkit-clip-path 0s 0.3s;
	transition: clip-path 0s 0.3s;
	transition: clip-path 0s 0.3s, -webkit-clip-path 0s 0.3s;
}
.js.nav-opened .gnav-list a {
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	transition: -webkit-clip-path .4s cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: clip-path .4s cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: clip-path .4s cubic-bezier(0.25, 1, 0.5, 1) var(--delay), -webkit-clip-path .4s cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
}
/* -------------------------------- *\
    Contents
\* -------------------------------- */
.wrapper {
	position: relative;
	width: 100%;
	max-width: 1056px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 16px;
	padding-left: 16px;
}
.wrapper--wide {
	max-width: 1232px;
}
.wrapper--narrow {
	max-width: 940px;
}
.wrapper .wrapper--narrow {
	max-width: 900px;
	padding-right: 0;
	padding-left: 0;
}
.content {
	padding-top: 60px;
}
.content-header {
	position: relative;
}
.content-header__image {
	height: 100vw;
}
.content-header__image img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
.content-header__logo {
	position: absolute;
	top: 20px;
	right: 3.125%;
	width: 60%;
}
.content-header__title {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: calc(100% - 32px);
	max-width: 1024px;
	margin: 0;
	transform: translate(-50%, 50%);
	font-size: 1.5em;
	line-height: 1;
}
.content-header__title .en-title {
		display: inline-block;
	}
.content-header__title .en-title img {
			width: auto;
			height: 3.33em;
		}
.content-header__title .sub-title {
		display: inline-block;
	}
.content-title {
	position: absolute;
	top: 0;
	right: 16px;
	left: 16px;
	margin-top: -1.6em;
	font-size: 1em;
	line-height: 1;
}
.content-title__main img {
		width: auto; /* stylelint-disable-line no-descending-specificity */
		height: 4em;
	}
.content-title__text {
	margin-top: 0.5em;
	color: #0069ab;
	color: var(--color-primary);
	font-weight: bold;
	font-size: 1.2em;
}
.content-main {
	padding-top: 6em;
}
/* -------------------------------- *\
    Footer
\* -------------------------------- */
.footer {
	padding-top: 80px;
}
.footer__logo {
	margin-bottom: 1.5em;
}
.footer__logo img {
		margin-right: 1em;
		vertical-align: top;
	}
.footer__content {
	position: relative;
	padding-bottom: 60px;
}
.footer__illust {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20%;
	max-width: 105px;
	transform: translateX(-50%);
}
.copyright {
	padding: 1.5em 1em;
	border-top: 1px solid #666;
	font-size: 0.6em;
	text-align: center;
}
.pagetop {
	display: block;
	z-index: 100;
	position: fixed;
	right: 0;
	bottom: 0;
	width: 62px;
	height: 0;
	padding-top: 62px;
	overflow: hidden;
	background: #0069ab;
	background: var(--color-primary);
	color: #fff;
	transition: background 0.3s;
}
.pagetop:hover {
		background: hsl(203, 100%, 44%);
		background: var(--color-primary-light);
	}
.pagetop::before {
		position: absolute;
		top: 20px;
		left: 50%;
		width: 30px;
		height: 0;
		margin-left: -15px;
		border-top: 1px solid #fff;
		content: "";
	}
.pagetop::after {
		position: absolute;
		top: 35%;
		left: 50%;
		width: 20px;
		height: 20px;
		transform: translate(-50%, 50%) rotate(-45deg);
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		content: "";
	}
/* =================================================================
   Object
   ================================================================= */
/* Component
   ----------------------------------------------------------------- */
/* -------------------------------- *\
    Buttons
\* -------------------------------- */
.btn {
	display: inline-flex;
	z-index: 0;
	position: relative;
	align-items: center;
	justify-content: space-between;
	width: 20em;
	max-width: 100%;
	margin-top: 0.8rem;
	margin-bottom: 0.8rem;
	padding: .7rem 1.6rem;
	overflow: hidden;
	border: 1px solid #0069ab;
	border: 1px solid var(--color-primary);
	border-radius: 3em;
	background: #fff;
	color: #000;
	font-size: 0.8em;
	-webkit-text-decoration: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-decoration: none !important;
	cursor: pointer;
	transition: all .3s;
}
.btn:disabled,
	.btn[aria-disabled="true"] {
		opacity: .5;
	}
.btn:focus-visible {
		outline: 2px auto Highlight;
		outline: 5px auto -webkit-focus-ring-color;
		transition: outline 0s;
	}
.btn::before {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 0;
		left: auto;
		width: 0;
		height: 100%;
		background: #0069ab;
		background: var(--color-primary);
		content: "";
		transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	}
.btn__arrow {
	display: flex;
	align-items: center;
	width: 1.5em;
	height: 1.5em;
}
.btn__arrow::before {
		display: block;
		width: 0.5em;
		height: 0.5em;
		transform: rotate(45deg);
		border-top: 1px solid #0069ab;
		border-top: 1px solid var(--color-primary);
		border-right: 1px solid #0069ab;
		border-right: 1px solid var(--color-primary);
		content: "";
		transition: all 0.3s;
	}
.btn__arrow--reverse::before {
		transform: scale(-1) rotate(45deg);
	}
.btn__icon {
	display: block;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	margin: -0.2rem 0;
	color: #0069ab;
	color: var(--color-primary);
	font-size: 28px;
	transition: color 0.3s;
}
.btn__text {
	display: inline-block;
	position: relative;
	flex: 1 1 auto;
	padding: 0.05em 1em 0;
	color: inherit;
	font-weight: bold;
	font-size: inherit;
	line-height: 1.5;
	font-family: inherit !important;
	text-align: center;
}
.btn__arrow + .btn__text,
.btn__icon + .btn__text {
	margin-left: -0.8rem;
}
/* hover */
/* Sizes */
.btn--size-l {
	padding: 1rem 1.6rem;
	border-radius: 0.5em;
	font-size: 1.2em;
}
/* Themes */
.btn--primary {
	background: #0069ab;
	background: var(--color-primary);
	color: #fff;
}
.btn--primary::before {
		background: hsl(203, 100%, 44%);
		background: var(--color-primary-light);
	}
.btn--primary .btn__arrow::before {
		border-color: #fff;
	}
.btn--primary .btn__icon {
		color: #fff;
	}
/* Project
   ----------------------------------------------------------------- */
/* -------------------------------- *\
	共通
\* -------------------------------- */
/* アニメーション設定 */
.js .anim-mask {
	display: inline-block;
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.js .anim-mask.animated {
	--duration: 0.7s;
	--delay: 0.4s;

	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	transition: -webkit-clip-path 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
	transition: clip-path 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
	transition: clip-path 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, -webkit-clip-path 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
	transition: -webkit-clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay), -webkit-clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
}
.js .anim-fade-in {
	opacity: 0;
}
.js .anim-fade-in.animated {
	--duration: 0.7s;
	--delay: 0.4s;

	opacity: 1;
	transition: opacity 0.7s 0.4s;
	transition: opacity var(--duration) var(--delay);
}
.js .anim-fade-in-up {
	transform: translateY(20px);
	opacity: 0;
}
.js .anim-fade-in-up.animated {
	--duration: 0.7s;
	--delay: 0.4s;
	transform: translateY(0);

	opacity: 1;
	transition: all 0.7s 0.4s;
	transition: all var(--duration) var(--delay);
}
@keyframes pulse {
	0% {
		transform: scaleX(1)
	}
	50% {
		transform: scale3d(1.1,1.1,1.1)
	}
	100% {
		transform: scaleX(1)
	}
}
/* 欧文見出し */
.heading {
	margin-bottom: 0.5em;
	font-size: 3.5em;
	line-height: 1;
}
.heading img {
		display: block;
		width: auto;
		height: 1em;
		vertical-align: top;
	}
.heading--large {
	margin-bottom: 0.25em;
	font-size: 5em;
}
/* 道路＋車イラスト */
.divider {
	position: relative;
	width: 100%;
	height: 40px;
	margin-top: 120px;
	background: #ccc url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgMTAwIDQwIiB3aWR0aD0iMTAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Im0wIDBoMTAwdjQwaC0xMDB6IiBmaWxsPSIjY2NjIi8+PHBhdGggZD0ibTg3LjUgMThoLTI1di0yaDI1em0tNTAgMGgtMjV2LTJoMjV6IiBmaWxsPSIjZmZmIi8+PC9zdmc+") repeat-x center center;
	text-align: center;
}
.divider__illust {
	position: absolute;
	bottom: 50%;
	width: 30%;
	max-width: 180px;
}
.divider__illust--left {
	left: 20vw;
}
.divider__illust--left img {
		transform: translateX(-50%);
	}
.divider__illust--right {
	right: 20vw;
}
.divider__illust--right img {
		transform: translateX(50%) scaleX(-1);
	}
/* 色 */
.bg-gray {
	background: #e7ecec;
	background: var(--bg-gray);
}
.bg-dot {
  background-image:
    radial-gradient(#7ecef4 12%, transparent 13%),
    radial-gradient(#7ecef4 12%, transparent 13%);
  background-position: 0 0, 7px 7px;
  background-size: 14px 14px;
}
.color-white {
	color: #fff;
}
.color-primary {
	color: #0069ab;
	color: var(--color-primary);
}
/* 導入ブロック */
.mod-intro__image {
	overflow: hidden;
}
.mod-intro__image img {
		width: 100%;
		-webkit-clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
		clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
	}
/* 紹介動画ブロック */
.mod-movie {
	max-width: 850px;
	margin: 0 auto;
}
.mod-movie__heading {
	margin-bottom: 0.25em;
	font-weight: bold;
	font-size: 1.2em;
	text-align: right;
}
.mod-movie__media {
	display: block;
	z-index: 0;
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 1em;
}
.mod-movie__media::before {
		z-index: 1;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 15vw;
		max-width: 120px;
		height: 15vw;
		max-height: 120px;
		transform: translate(-50%, -50%);
		background: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjEyOCIgdmlld0JveD0iMCAwIDEyOCAxMjgiIHdpZHRoPSIxMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMS41Ij48Y2lyY2xlIGN4PSI2NCIgY3k9IjY0IiByPSI2My4yMyIvPjxwYXRoIGQ9Im00OS43NCAzOS44MiA0MC45MiAyNC4xOC00MC45MiAyNC4xOHoiLz48L2c+PC9zdmc+") no-repeat center center / contain;
		content: "";
		pointer-events: none;
	}
.mod-movie__media figcaption {
		z-index: 1;
		position: absolute;
		top: 80%;
		left: 0;
		width: 100%;
		color: #fff;
		text-align: center;
		pointer-events: none;
	}
/* -------------------------------- *\
	トップページ
\* -------------------------------- */
.hero {
	z-index: 0;
	position: relative;
	margin-bottom: 30vw;
	padding-top: 80px;
	background: #0069ab;
	background: var(--color-primary);
	color: #fff;
}
.hero__road {
	position: absolute;
	top: 0;
	bottom: -20vw;
	left: 21%;
	width: 16%;
	max-width: 100px;
	background: #ccc url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE1MCIgd2lkdGg9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDEwMHYxNTBIMHoiIGZpbGw9IiNjY2MiLz48cGF0aCBkPSJNNTEgMTM3LjUyaC0ydi0yNS4wMWgyem0wLTUwLjAxaC0yVjYyLjVoMnptMC01MC4wMWgtMlYxMi40OGgydjI1LjAxeiIgZmlsbD0iI2U2ZTZlNiIvPjwvc3ZnPg==") repeat-y left top / contain;
}
.hero__road::before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 20vw;
		background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
		content: "";
	}
.hero__baloon {
	position: absolute;
	top: 62vw;
	left: 17%;
	width: 24%;
	animation: 2s ease-in-out infinite alternate pulse;
}
.hero__illust {
	position: absolute;
	top: 80vw;
	left: 0;
	width: 100%;
}
.hero__inner {
	z-index: 1;
	position: relative;
	width: 90%;
	max-width: 1024px;
	margin: 0 auto;
}
.hero__title {
	margin-bottom: 20vw;
	font-weight: bold;
	font-size: 1.8rem;
	font-size: max(1.8rem, min(5vw, 2.8rem));
	line-height: 1.65;
}
.hero__title small {
		display: inline-block;
		margin-top: 1em;
		font-weight: 400;
		font-size: 0.66em;
	}
.hero__title-en {
	margin-bottom: 1em;
}
.hero__title-en div {
		display: inline-block;
	}
.hero__title-en img {
		width: auto;
		height: 2.5em;
		margin-right: 0.33em;
	}
.hero__content {
	padding-bottom: 15vw;
}
.hero__content ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
.hero__content li {
		position: relative;
		padding-top: 6vw;
	}
.hero__image {
	width: 60%;
	margin-left: auto;
}
.hero__image img {
		width: 100%;
		border-radius: 20px;
	}
.hero__desc {
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 51.4%;
}
.js .hero__desc {
	transform: translateX(-10px);
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.js .hero__content .animated .hero__desc {
	--delay: 0.2s;

	transform: translateX(0);
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	transition: transform 0.4s 0.2s, -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
	transition: transform 0.4s 0.2s, clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
	transition: transform 0.4s 0.2s, clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
	transition: transform 0.4s var(--delay), -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: transform 0.4s var(--delay), clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: transform 0.4s var(--delay), clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) var(--delay), -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
}
/* MESSAGE */
.top-message {
	padding-bottom: 15vw;
}
.top-message__lead {
	margin-top: 2.5em;
	margin-bottom: 1.5em;
	color: #0069ab;
	color: var(--color-primary);
	font-weight: bold;
	font-size: 2em;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.1em;
	text-align: center;
}
/* MOVIE */
.top-movie {
	position: relative;
	margin-bottom: 20vw;
	padding-top: 6vw;
}
.top-movie__bg {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	width: 68.75%;
	height: 85%;
}
/* TALK */
.top-talk {
	position: relative;
	padding-top: 4vw;
	padding-bottom: 20vw;
}
.top-talk__bg {
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 75%;
}
.top-talk__content {
	padding-bottom: 3vw;
}
.top-talk__content .heading {
		margin-bottom: 0.25em;
	}
.top-talk__subtitle {
	width: 35%;
	margin-bottom: 1em;
}
.top-talk__link {
	display: block !important;
	position: relative;
	overflow: hidden;
}
.top-talk__link img {
		width: 100%;
	}
.top-talk__link span {
		display: block;
		position: absolute;
		bottom: 10%;
		left: -1.5em;
		padding: 0 1em 0 2em;
		transform: rotate(-5deg);
		background: #0069ab;
		background: var(--color-primary);
		color: #fff;
		font-weight: bold;
		font-size: max(2rem, min(4vw, 2.8rem));
	}
.top-job {
	position: relative;
}
.top-job__bg {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}
.top-job__image img {
		width: 100%;
	}
.top-job .heading {
	margin-top: -0.5em;
}
.top-block-wrapper {
	padding: 15vw 0;
	background: #e7ecec;
}
.top-block__image img {
		display: block;
		width: 100%;
	}
.top-block__heading {
	margin-bottom: 1em;
}
/* Utility
   ----------------------------------------------------------------- */
/* -------------------------------- *\
    Sizes
\* -------------------------------- */
.w-10 { width: 10%; }
.w-20 { width: 20%; }
.w-25 { width: 25%; }
.w-30 { width: 30%; }
.w-33 { width: 33%; }
.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-66 { width: 66%; }
.w-70 { width: 70%; }
.w-75 { width: 75%; }
.w-80 { width: 80%; }
.w-90 { width: 90%; }
.w-100 { width: 100%; }
.w-auto { width: auto; }
/* -------------------------------- *\
    Spaces
\* -------------------------------- */
.mx-auto, .mr-auto { margin-right: auto !important; }
.mx-auto, .ml-auto { margin-left: auto !important; }
/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1em !important; margin-top: var(--space-1) !important; }
.mt-2 { margin-top: 2em !important; margin-top: var(--space-2) !important; }
.mt-3 { margin-top: 3em !important; margin-top: var(--space-3) !important; }
.mt-4 { margin-top: 4em !important; margin-top: var(--space-4) !important; }
.mt-5 { margin-top: 5em !important; margin-top: var(--space-5) !important; }
/* Margin Right */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 1em !important; margin-right: var(--space-1) !important; }
.mr-2 { margin-right: 2em !important; margin-right: var(--space-2) !important; }
.mr-3 { margin-right: 3em !important; margin-right: var(--space-3) !important; }
.mr-4 { margin-right: 4em !important; margin-right: var(--space-4) !important; }
.mr-5 { margin-right: 5em !important; margin-right: var(--space-5) !important; }
/* Margin bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1em !important; margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: 2em !important; margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: 3em !important; margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: 4em !important; margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: 5em !important; margin-bottom: var(--space-5) !important; }
/* Margin left */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 1em !important; margin-left: var(--space-1) !important; }
.ml-2 { margin-left: 2em !important; margin-left: var(--space-2) !important; }
.ml-3 { margin-left: 3em !important; margin-left: var(--space-3) !important; }
.ml-4 { margin-left: 4em !important; margin-left: var(--space-4) !important; }
.ml-5 { margin-left: 5em !important; margin-left: var(--space-5) !important; }
/* Padding top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 1em !important; padding-top: var(--space-1) !important; }
.pt-2 { padding-top: 2em !important; padding-top: var(--space-2) !important; }
.pt-3 { padding-top: 3em !important; padding-top: var(--space-3) !important; }
.pt-4 { padding-top: 4em !important; padding-top: var(--space-4) !important; }
.pt-5 { padding-top: 5em !important; padding-top: var(--space-5) !important; }
/* Padding bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 1em !important; padding-bottom: var(--space-1) !important; }
.pb-2 { padding-bottom: 2em !important; padding-bottom: var(--space-2) !important; }
.pb-3 { padding-bottom: 3em !important; padding-bottom: var(--space-3) !important; }
.pb-4 { padding-bottom: 4em !important; padding-bottom: var(--space-4) !important; }
.pb-5 { padding-bottom: 5em !important; padding-bottom: var(--space-5) !important; }
/* -------------------------------- *\
    Text
\* -------------------------------- */
/*
 * テキストのスタイルを指定する汎用クラス
 */
/* Font weight */
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
/* Font size */
.font-size-xl {
	font-size: 2em;
	line-height: 1.33;
}
.font-size-l {
	font-size: 1.2em;
}
.font-size-s {
	font-size: .8em;
}
.font-size-xs {
	font-size: .7em;
}
/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
/* Hanging indents */
.text-hanging-indent-1,
li.text-hanging-indent-1,
ul.text-hanging-indent-1 > li {
	padding-left: 1em;
	text-indent: -1em;
}
ul[class*="text-hanging-indent-"] {
	padding-left: 0;
	list-style: none;
	text-indent: 0;
}
@media (min-width: 35.001em){
	.text-left-sm { text-align: left; }
	.text-center-sm { text-align: center; }
	.text-right-sm { text-align: right; }
}
@media (min-width: 45.001em){
	body {
		font-size: 2em;
		font-size: max(1.6em, min(calc(0.4em + 1.67vw), 2em));
	}
	.gnav {
		padding-top: 120px;
	}
	.content-header__image {
		height: 42vw;
	}
	.content-header__logo {
		width: 130px;
	}

	/* .content-header__title {
		& .en-title {
		}
	} */
	.content-title {
		display: flex;
	}
	.content-title__text {
		align-self: flex-end;
		padding-left: 1.2em;
	}
	.content-main {
		padding-top: 4em;
	}
	.footer__content {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.footer__logo {
		flex: 100%;
	}
	.footer__address {
		flex: 1 0 auto;
	}
	.footer__nav {
		margin-left: auto;
	}
	.mod-intro {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.mod-intro__column {
		flex: 1;
		max-width: calc(50% - 16px);
	}
	.mod-intro__content {
		max-width: 502px;
		margin-left: auto;
		padding-left: 16px;
	}
	.mod-intro--reverse {
		flex-direction: row-reverse;
	}

		.mod-intro--reverse .mod-intro__content {
			margin-left: 0;
			padding-right: 16px;
			padding-left: 0;
		}
	.mod-movie__heading {
		font-size: 1.4em;
	}
	.hero {
		padding-top: 100px;
	}
	.hero__road {
		left: 50%;
		width: 7.8125%;
		transform: translateX(-50%);
	}
	.hero__baloon {
		top: 10vw;
		left: 41%;
		width: 15.625%;
	}
	.hero__illust {
		top: 20vw;
	}
	.hero__title {
		position: absolute;
		top: 0;
		left: 0;
		font-size: max(2rem, min(2.5vw, 2.8rem));
		pointer-events: none;
	}
	.hero__title-en {
		margin-bottom: 0.5em;
	}

		.hero__title-en div {
			display: block;
		}
		.hero__title-en img {
			height: 4.428em;
			margin-right: 0;
			margin-bottom: 0.75em;
		}
	.hero__content {
		width: 66.8%;
		margin-left: auto;
	}
	.top-talk {
		padding-bottom: 120px;
	}
	.top-talk__bg {
		width: 48%;
		height: 100%;
	}
	.top-talk__inner {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-end;
	}
	.top-talk__content {
		width: 48%;
		margin-left: auto;
	}
	.top-talk__subtitle {
		position: absolute;
		bottom: 10%;
		left: 5%;
		width: 28.32%;
	}
	.top-talk__links {
		display: flex;
	}
	.top-talk__column {
		flex: 1;
	}
		.top-talk__link span {
			font-size: 1.4em;
			font-size: max(2rem, min(2.2vw, 2.8rem));
		}
	.top-job__content {
		width: 16em;
	}
	.text-left-md { text-align: left; }
	.text-center-md { text-align: center; }
	.text-right-md { text-align: right; }
}
@media (min-width: 60.001em){
	.header {
		height: 100px;
		box-shadow: 0 3px 15px 5px rgba(0, 0, 0, 0.08);
	}
	.header__title {
		width: 310px;
	}
	.gnav-open-btn,
	.gnav-close-btn {
		top: 20px;
	}
	.content {
		padding-top: 100px;
	}
	.content-header__image {
		height: 500px;
	}
	.content-title {
		margin-top: -2em;
	}
		.content-title__main img {
			height: 5em;
		}
	.content-title__text {
		font-size: 1.5em;
	}
	.heading {
		font-size: 3.5em;
	}
	.heading--large {
		font-size: 8.8em;
	}
	.heading--small {
		font-size: 3.2em;
	}
	.divider {
		margin-top: 170px;
	}
	.mod-intro__column {
		max-width: 48%;
	}
	.mod-intro__image {
		max-width: 800px;
	}
		.mod-intro--reverse .mod-intro__image {
			margin-left: auto;
		}
	.hero {
		margin-bottom: 220px;
	}
	.hero__baloon {
		top: 90px;
	}
	.hero__illust {
		top: 220px;
	}
		.hero__content li {
			padding-top: 60px;
		}
	.top-message {
		padding-bottom: 160px;
	}
	.top-message__lead {
		font-size: 2.55em;
	}
	.top-movie {
		margin-bottom: 160px;
	}
	.top-block-wrapper {
		padding: 150px 0;
	}
	.top-block {
		display: flex;
		justify-content: space-between;
	}
	.top-block + .top-block {
		align-items: flex-end;
		margin-top: -5vw;
	}
	.top-block__image,
	.top-block__body {
		width: 48.75%;
	}
		.top-block__image img {
			max-width: 700px;
			margin-left: auto;
		}
	.top-block__content {
		width: 45vw;
		max-width: 495px;
	}
	.top-block--reverse {
		flex-direction: row-reverse;
	}

		.top-block--reverse .top-block__image img {
			margin-left: 0;
		}
		.top-block--reverse .top-block__content {
			margin-left: auto;
		}
	.text-left-lg { text-align: left; }
	.text-center-lg { text-align: center; }
	.text-right-lg { text-align: right; }
}
@media (max-width: 60em){
	.top-block__content {
		margin-top: -5vw;
		padding: 0 5% 10vw;
	}
}
@media (max-width: 45em){
	body {
		font-size: 1.6em;
		font-size: max(1.6em, min(calc(1.2em + 1.1vw), 2em));
	}
		.footer__logo img {
			display: block;
			margin: 0 auto;
		}
	.footer__content {
		text-align: center;
	}
	.mod-intro__content {
		padding: 0 10%;
	}
}
@media (hover:hover){
	.gnav-list li {
		transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.gnav-list li:hover {
		transform: translateX(10px);
	}
	.btn:hover {
		color: #fff;
	}

		.btn:hover::before {
			right: 0;
			left: 0;
			width: 100%;
		}
		.btn:hover .btn__icon {
			color: #fff;
		}
		.btn:hover .btn__arrow::before {
			border-color: #fff;
		}
		.mod-movie__media img {
			transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
		}
		.mod-movie__media:hover img {
			transform: scale(1.1)
		}
		.top-talk__link img {
			transform: rotate(0.01deg);
			transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
		}
		.top-talk__link span {
			transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
		}
		.top-talk__link:hover img {
			transform: scale(1.1);
			filter: brightness(0.7)
		}
		.top-talk__link:hover span {
			left: -0.5em;
		}
}
/*# sourceMappingURL=maps/index.css.map */
