/* -----

	
	Reset

	
------------------------------ */

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

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

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

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

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* -----

	
	Font Setting

	
------------------------------ */

/* -----
	@import
------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Noto+Sans+JP&display=swap');

/* -----
	Font Face
------------------------------ */

body {
	font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::selection {
	background: #ccc;
}

::-moz-selection{
	background: #ccc;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

/* -----
	Font Basic Style
------------------------------ */

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
}

body {
	color: var(--text_color);
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
}

p {
	font-size: 1.4rem;
	line-height: 1.75;
}

a,
a img {
	color: #167ac6;
	text-decoration: none;
	opacity: 1;
	transition: all .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
}

i {
	font-style: italic; 
}

b, em, strong {
	font-weight: 700;
}

ul, ol {
	list-style: none;
	font-size: 0;
}

li {
	font-size: 1.4rem;
}

table {
    width: 100%;
	box-sizing: border-box;
    border-spacing: 0;
	overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 768px) {
	
}

/* -----

	
	:root

	
------------------------------ */

:root {

	/* Font */
	--ja: 'Noto Sans JP', sans-serif;
	--en: 'Bebas Neue', sans-serif;

	/* Color */
	--white: #fff;
	--black: #141414;
	--gray: #F4F4F4;
	--green: #06C755;
	--blue: #005A98;
	--red: #D5251B;
	
	/* Color Style */
	--text_color: var(--black);
	--line_color: var(--gray);
	
	/* Gradient */
	--gradient_01: linear-gradient(135deg, rgba(213,37,27,1) 0%, rgba(0,90,153,1) 100%);
	
}

@media screen and (min-width: 768px) {
	
:root {}
	
}

/* -----

	
	Initial Setting

	
------------------------------ */

html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: auto;
	position: relative;
}

#wrap {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 0;
}

.clearfix:after {
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
	zoom:1;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
}

img {
	display:block;
	max-width:100%;
	height: auto;
	border:none;
	line-height: 1;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* -----


	Media Queries


------------------------------ */

.sp {
	display: block;
}

.pc {
	display: none!important;
}

/* -----
	781px 以上
------------------------------ */

@media screen and (min-width: 781px) {
	
.sp {
	display: none;
}
	
.pc {
	display: block!important;
}
	
}

/* -----

	
	Loading

	
------------------------------ */

.l-loading {
	position: fixed;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	backface-visibility: hidden;
	pointer-events: none;
}

.l-loading__logo {
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	opacity: 1;
	transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is_loaded .l-loading__logo {
	opacity: 0;
}

.l-loading__logo img {
	width: 40vw;
	max-width: 400px;
}

.l-loading__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
}

.l-loading__bg__row {
	width: 50vw;
	height: 100vh;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s;
}

.is_loaded .l-loading__bg__row {
    transform: translateY(100%);
}

.is_loaded .l-loading__bg__row:last-child {
    transform: translateY(-100%);
}

/* -----

	
	Noise

	
------------------------------ */

#noise {
	position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .075;
	background: url(../img/lp/rohto-internship-2023/noise.gif);
	top: 0;
	left: 0;
	z-index: 10000;
}

/* -----

	
	Animation

	
------------------------------ */

.c-bg-gradient__animation {
    background: linear-gradient(315deg, #d5251b, #005a98);
    background-size: 400% 400%;
    -webkit-animation: gradient-animation 7s ease infinite;
    -moz-animation: gradient-animation 7s ease infinite;
    animation: gradient-animation 7s ease infinite;
}

@-webkit-keyframes gradient-animation {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}

@-moz-keyframes gradient-animation {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}

@keyframes gradient-animation {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}

/* -----


	Main


------------------------------ */

/* -----
	Common Setting
------------------------------ */

.l-container {
	background: var(--white);
}

.l-container__bg {
	display: none;
}

.l-section__head {
	position: relative;
	margin-bottom: 100px;
	z-index: 1;
}

.l-section__head__en {
	font-family: var(--en);
	font-size: 10rem;
	line-height: 1;
	letter-spacing: .05em;
}

.l-section__head__ja {
	font-family: var(--ja);
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.c-section__text {
	font-size: 1.5rem;
	line-height: 1.75;
	margin-bottom: 20px;
}

.c-section__text:last-child {
	margin-bottom: 0;
}

.c-section__text__note {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 7px;
}

.c-section__text__note:last-child {
	margin-bottom: 0;
}

.c-link__btn {
	position: relative;
	width: 100%;
}

.c-link__btn a {
	position: relative;
	display: block;
	width: 240px;
	height: 45px;
	color: var(--white);
	font-size: 1.2rem;
	text-align: center;
	line-height: 45px;
	margin: 0 auto;
}

.c-link__btn a::before {
	position: absolute;
	content: '\f35d';
	color: var(--white);
	font-size: 1rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	line-height: normal;
	right: 5px;
	bottom: 5px;
}

.c-link__btn.gradient a {
	background: var(--gradient_01);
}

.c-link__btn.green a {
	background: var(--green);
}

.c-link__btn.black a {
	background: var(--text_color);
}

.c-link__btn.white a {
	color: var(--text_color);
	background: var(--white);
}

.c-link__btn.white a::before {
	color: var(--text_color);
}

.c-hr {
	position: absolute;
	display: block;
	height: 100px;
	width: 2px;
	border: none;
	background: var(--black);
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.c-text__clip {
	background: var(--gradient_main);
    -webkit-background-clip: text;
    color: rgba(0,0,0,0);
	background: url(../img/lp/rohto-internship-2023/visual/visual_1.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
}

@media screen and (min-width: 781px) {

	.l-wrap {
		position: relative;
		width: 100%;
		height: 100%;
	}
	
	.l-container {
		position: fixed;
		width: 420px;
		max-width: 420px;
		height: 100%;
		overflow: hidden;
		overflow-y: scroll;
		left: 50%;
		transform: translateX(-50%);
		z-index: 999;
	}

	.l-container__bg {
		position: fixed;
		top: 0;
		left: 0;
		display: grid;
		grid-template-columns: 1fr 420px 1fr;
		width: 100%;
		height: 100%;
		background-color: #f2f2f2;
	}

	.l-container__bg__left {
		position: relative;
		height: 100%;
	}

	.l-container__bg__right {
		position: relative;
		height: 100%;
	}
	
		
}
	
/* -----

	Header

------------------------------ */

.l-header {
	position: relative;
}

.l-header__logo {
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 10;
}

.l-header__logo img {
	height: 20px;
}

/* -----

	Main Visual

------------------------------ */

.l-mv {
	position: relative;
	padding-bottom: 500px;
}

.l-mv::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 320px;
	bottom: -80px;
	left: 0;
	right: 0;
	background: var(--gradient_01);
	z-index: 0;
}

.l-mv__info {
	position: absolute;
	color: var(--white);
	font-family: var(--en);
	font-size: 1.2rem;
	letter-spacing: .25em;
	left: 25px;
	bottom: -40px;
	z-index: 10;
}

/* -----
	Company Link
------------------------------ */

.l-mv__link {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	z-index: 10;
}

.l-mv__link__btn a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	background: var(--main_color);
}

.l-mv__link__btn a::before {
	position: absolute;
	content: '\f35d';
	color: #fff;
	font-size: 1rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	right: 5px;
	bottom: 5px;
}

.l-mv__link__btn.atteme a {
	background: var(--red);
}

.l-mv__link__btn.rohto a {
	background: var(--blue);
}

.l-mv__link__btn.handai a {
	background: var(--white);
}

.l-mv__link__btn.handai a::before {
	color: #2d287f;
}

.l-mv__link__btn a img {
	position: absolute;
	width: 40px;
	margin: 0 auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.l-mv__link__btn a span {
	position: absolute;
	display: block;
	width: 100%;
	color: #2d287f;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/* -----
	Backgroud Movie
------------------------------ */

.l-mv__movie {
	position: absolute;
	width: 80.95%;
	height: 500px;
	overflow: hidden;
	top: 0;
	right: 0;
	z-index: -1;
}

.l-mv__movie::before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--gradient_01);
    mix-blend-mode: screen;
	opacity: .75;
    z-index: 1;
}

.l-mv__movie__copy {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
}

.l-mv__movie__copy {
	font-family: var(--en);
	font-size: 20rem;
	color: var(--white);
	text-align: center;
	transform: translate(-50%,-50%);
	mix-blend-mode: soft-light;
}

.l-mv__movie__copy__row:first-child {
	transform: translateX(-25%);
}

.l-mv__movie__copy__row:last-child {
	transform: translateX(25%);
}
      
#youtube-area {
	position: absolute;
	z-index: 1;/*最背面に設定*/
	top: 0;
	right:0;
	left:auto;
	bottom:0;
	overflow: hidden;
	opacity: 0;
}
  
#youtube-area.appear {
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}
  
@keyframes PageAnimeAppear{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
  
#youtube {
	/*天地中央配置*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.4);
	/*縦横幅指定*/
	width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
}
  
#youtube-mask {
	position: absolute;
	z-index: 2;/*下から2番目に表示*/
	top: 0;
	width:100%;
	height: 100%;
	background: var(--white);
	opacity: 0;
}
  
/* -----
	Main Visual Text
------------------------------ */

.l-mv__head {
	position: absolute;
	top: 70px;
	left: 20px;
	z-index: 10;
}

.l-mv__head__logo {
	width: 100%;
	
}

.l-mv__head__logo img {
	height: 380px;
}

/* -----

	Notice Section

------------------------------ */

.l-notice {
	padding: 60px 20px;
	margin-top: 80px;
}

.l-notice__inner {}

.l-notice__head {}

.l-notice__text {
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	line-height: 2;
	margin-bottom: 40px;
}

.l-notice__logo svg {
	display: block;
	width: 300px;
	margin: 0 auto 40px;
}

.l-notice__movie {
	text-align: center;
	margin-bottom: 10px;
}

.l-notice__movie__head {
	font-size: 2.4rem;
	font-weight: 900;
}
.l-notice__movie__head__sub {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 10px 0 15px;
}

.l-notice__movie__youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 30px;
}

.l-notice__movie__youtube iframe {
	width: 100%;
	height: 100%;
}

/* -----

	Rohto Section

------------------------------ */

.l-rohto {
	position: relative;
	padding: 0 40px 100px;
	z-index: 1;
}

.l-rohto .c-text__clip {
	background-image: url(../img/lp/rohto-internship-2023/visual/visual_1.jpg);
}

.l-rohto::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--blue);
	top: 0;
	left: 0;
	clip-path: polygon(0 calc(0% + 300px), 100% 0, 100% 100%, 0 100%);
	z-index: -1;
}

.l-rohto::after {
	content: '';
	position: absolute;
	width: 200%;
	height: 2px;
	background: var(--red);
	top: 500px;
	left: 0;
	transform: rotate(45deg) translateX(-50%);
	z-index: -1;
}

.l-rohto__logo svg {
	display: block;
	width: 240px;
	margin: 0 auto 60px;
}

.l-rohto .c-section__text {
	color: var(--white);
	padding: 0 20px;
}

.l-rohto__message {
	text-align: center;
}

.l-rohto__message__vertical {
	display: inline-block;
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2.25;
	text-align: left;
	writing-mode: vertical-lr;
	white-space: nowrap;
	margin: 60px 0;
}

.l-rohto__message__copy {
	color: var(--white);
}

.l-rohto__message__copy__en {
	font-family: var(--en);
    font-size: 9rem;
    line-height: 1;
	letter-spacing: 1.25rem;
    text-align: center;
    margin-bottom: 10px;
}

.l-rohto__message__copy__ja  {
	font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: .5rem;
    margin-right: -0.5rem;
}

.l-rohto .c-hr {
	background: var(--red);
}

/* -----

	Feature Section

------------------------------ */

.l-feature {
	position: relative;
	padding: 100px 40px;
	background: var(--gray);
}

.l-feature .c-text__clip {
	background-image: url(../img/lp/rohto-internship-2023/visual/visual_4.jpg);
}

.l-feature__list {}

.l-feature__list-item:last-child {
	margin-top: 40px;
}

.l-feature__list-item__num {
	font-family: var(--en);
	font-size: 7.2rem;
	text-align: center;
	margin-bottom: 20px;
}

.l-feature__list-item__head {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 20px;
}

.l-feature__list-item__point {
	padding: 0 10px;
	position: relative;
}

.l-feature__list-item__point .l-feature__list-item__point-item {
	line-height: 1.75;
	list-style-type: none!important;
}

.l-feature__list-item__point .l-feature__list-item__point-item i {
	color: var(--red);
	margin-right: 7px;
}


/* -----

	Information Section

------------------------------ */

.l-information {
	position: relative;
	padding: 100px 40px;
}

.l-information  .c-text__clip {
	background-image: url(../img/lp/rohto-internship-2023/visual/visual_4.jpg);
}

.l-information::before, .l-information::after {
	position: absolute;
	content: '';
	width: 240px;
	height: 600px;
	mix-blend-mode: multiply;
	pointer-events: none;

}

.l-information::before {
	background: url(../img/lp/rohto-internship-2023/visual/visual_6.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	top: 180px;
	left: 0;
	opacity: .5;
	z-index: 0;
}

.l-information::after {
	background: var(--gradient_01);
	top: 320px;
	right: 0;
	opacity: .1;
	z-index: 0;
}

.l-information__list {
}

.l-information__list-item {
	position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.l-information__list-item:last-child {
    padding-bottom: 0;
}

.l-information__list-item::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--text_color);
    top: 0;
    left: 0;
}

.l-information__list-item:last-child:before {
    content: none;
}

.l-information__list-item__num {
	position: absolute;
    width: 40px;
    height: 40px;
	color: var(--white);
	font-family: var(--en);
	font-size: 2rem;
	text-align: center;
	line-height: 40px;
    background: var(--text_color);
    border: solid 2px var(--white);
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translateX(-50%);
}

.l-information__list-item__num.active {
    background: var(--gradient_01);
}

.l-information__list-item__content {
	padding-top: 10px;
}

.l-information__list-item__label {
	width: 80px;
	height: 20px;
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	margin-bottom: 7px;
}

.l-information__list-item__label.blue {
	background: var(--blue);
}

.l-information__list-item__label.red {
	background: var(--red);
}

.l-information__list-item__label.gradient {
	background: var(--gradient_01);
}

.l-information__list-item__head {
	font-size: 2rem;
    font-weight: 700;
	margin-bottom: 20px;
}

.l-information__list-item__schedule {
	font-family: var(--en);
	font-size: 3.6rem;
	margin-bottom: 10px;
}

.l-information__list-item__schedule__week {
	font-family: var(--en);
	font-size: 2.4rem;
	margin: 0 5px;
}

.l-information__list-item__schedule__ja {
	font-family: var(--ja);
	font-size: 2rem;
    font-weight: 700;
    margin-left: 5px;
}

.l-information__list-item__place {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
    font-weight: 700;
	margin-bottom: 20px;
}

.l-information__list-item__place i {
	font-size: 2.8rem;
	color: var(--red);
    margin-right: 7px;
}

/* -----

	Application Section

------------------------------ */

.l-application {
	position: relative;
	padding: 100px 40px;
	background: var(--gray);
}

.l-application .c-text__clip {
	background-image: url(../img/lp/rohto-internship-2023/visual/visual_3.jpg);
}

.l-application::before, .l-application::after {
	position: absolute;
	content: '';
	width: 240px;
	height: 600px;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.l-application::before {
	background: url(../img/lp/rohto-internship-2023/visual/visual_5.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	top: 180px;
	right: 0;
	opacity: .25;
	z-index: 0;
}

.l-application::after {
	background: var(--gradient_01);
	top: 320px;
	left: 0;
	opacity: .1;
	z-index: 0;
}

.l-application__list-item {
	display: flex;
	gap: 10px;
}

.l-application__list-item:not(:last-child) {
	margin-bottom: 30px;
}

.l-application__list-item__head {
	width: 80px;
	height: 30px;
	color: var(--white);
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	line-height: 30px;
	background: var(--black);
}

.l-application__list-item__detail {
	padding-top: 5px;
}

.l-application__list-item__detail__text {
	font-size: 1.8rem;
	font-weight: 700;
}

.l-application__list-item__detail__text span {
	font-size: 1.2rem;
}

.l-application__list-item__detail__text:not(:last-child) {
	margin-bottom: 10px;
}

.l-application__info {}

.l-application__info__head {
	width: 100%;
	height: 40px;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
	background: var(--gradient_01);
	margin-bottom: 20px;
}

.l-application__info__note {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
}

.l-application__info {
	margin-top: 60px;
}

.l-application__info__list {
	margin-top: 30px;
}

.l-application__info__list-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.l-application__info__list-item__num {
    width: 40px;
    height: 40px;
    color: var(--white);
    font-family: var(--en);
    font-size: 2rem;
    text-align: center;
    line-height: 40px;
	background: var(--gradient_01);
    border-radius: 50%;
}

.l-application__info__message {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin-top: 60px;
}

.l-application .c-link__btn {
	margin-top: 40px;
}

/* -----

	Infosession Section

------------------------------ */

.l-infosession {
	position: relative;
	padding: 100px 40px;
}

.l-infosession .c-text__clip {
	background-image: url(../img/lp/rohto-internship-2023/visual/visual_2.jpg);
}

.l-infosession__desc {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.75;
	margin-bottom: 40px;
}

.l-infosession__how-to {
	margin-top: 60px;
}

.l-infosession__how-to__head {
	width: 100%;
	height: 40px;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
	border: solid 2px var(--text_color);
	margin-bottom: 20px;
}

.l-infosession .c-link__btn {
	margin-top: 40px;
}

/* -----

	Company Link

------------------------------ */

.l-company__link {
	display: flex;
    background: var(--gray);
}

.l-company__link-item {
	width: 50%;
    padding: 40px 0;
}

.l-company__link-item:first-child {
	border-right: solid 2px var(--white);
}

.l-company__link__by {
	font-family: var(--en);
    font-size: 1rem;
	letter-spacing: .25em;
    text-align: center;
    margin-bottom: 10px;
}

.l-company__link__head img {
	height: 35px;
    margin: 0 auto;
}

.l-company__link__btn {
	text-align: center;
    margin-top: 15px;
}

.l-company__link__btn a {
	position: relative;
    display: inline-block;
    height: 25px;
    color: var(--text_color);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 25px;
    padding: 0 20px;
    background: #fff;
    border-radius: 15px;
}

.l-company__link-item.rohto a {
	color: var(--blue);
}

.l-company__link-item.atteme a {
	color: var(--red);
}

/* -----

	Background Contents

------------------------------ */

.l-bg__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);	
}

.l-bg__logo {}

.l-bg__logo img {
	width: 400px;
	max-width: 400px;
}

.l-container__bg__center {}

.l-container__bg__right {}

.l-bg__info {}

.l-bg__info__notice {}

.l-bg__info__notice img {
	width: 300px;
	max-width: 300px;
}

.l-bg__info__notice .c-link__btn {
	margin-top: 60px;
}

.l-bg__info .l-company__link {
	margin-top: 60px;
	background: none;
	justify-content: center;
	gap: 20px;
}

.l-bg__info .l-company__link-item {
	width: 150px;
	padding: 0;
	border: none;
}

.l-bg__info .l-company__link-item .l-company__link__by {
	color: var(--white);
}

.l-bg__info .l-company__link-item .l-company__link__btn a {
	color: var(--white);
	background: none;
	border: solid 1px var(--white);
}

.l-bg__copyright {
	position: absolute;
	bottom: 40px;
	right: 40px;
}

.l-bg__copyright {
	display: block;
	color: var(--white);
	font-family: var(--en);
    font-size: 1rem;
	letter-spacing: .25em;
    text-align: center;
    margin-top: 100px;

}

/* -----


	Footer


------------------------------ */

.l-footer {
	color: var(--white);
	text-align: center;
	background: var(--gradient_01);
	padding: 100px 0 60px;
}

.l-footer__inner {}

.l-footer__logo img {
	width: 300px;
	margin: 0 auto;
}

.l-footer__navigation {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 60px;
}

.l-footer__navigation a {
	color: var(--white);
	font-family: var(--en);
    font-size: 1.2rem;
    text-align: center;
	text-decoration: underline;
}

.l-footer__navigation__link {}

.l-footer__sponsored {
	margin-top: 60px;
}

.l-footer__sponsored__list {
	color: var(--white);
	font-family: var(--en);
	font-size: 1.2rem;
	margin-bottom: 10px;
}


.l-footer__copy small {
	display: block;
	font-family: var(--en);
    font-size: 1rem;
	letter-spacing: .25em;
    text-align: center;
    margin-top: 100px;
}
