/* -----
	
	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
	
------------------------------ */
	
/* -----
	Font Face
------------------------------ */

body {
	font-family: var(--ja);
}

::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;
	font-feature-settings: 'palt';
}

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

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

p {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.75;
}

a, a img {
	color: var(--link_color);
	text-decoration: none;
	opacity: 1;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

a:hover,
a:hover img {
	opacity: .75;
}

i {
	font-style: italic; 
}

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

small {
	font-size: 1.2rem;
}

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

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

@media screen and (min-width: 768px) {
	
p {
	font-size: 1.5rem;
}
	
}

/* -----
	
	:root
	
------------------------------ */

:root {

    /* Font Style */
    --ja: 'Noto Sans JP', YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    --en: 'Josefin Sans', sans-serif;
	
	/* Color */
	--black: #000;
	--gray_1: #f4f4f4;
	--gray_2: #ddd;
	--red_1: #e1251b;
	--red_2: #e8756e;
    --blue_1: #005a98;
    --blue_2: #1596ff;
	
	/* Color Style */
	--main_color: var(--blue_1);
    --second_color: var(--red_1);
	--text_color: var(--black);
	--line_color: var(--gray_2);
	--link_color: var(--blue_2);
	--bg_color_gray: var(--gray_1);
	
	/* Gradation */
	--gradient_main: linear-gradient(-45deg, rgba(213,37,27,1) 0%, rgba(0,90,152,1) 100%);
	--gradient_main_vartical_1: linear-gradient(rgba(0,90,152,1) 0%, rgba(213,37,27,1) 100%);
	--gradient_main_vartical_2: linear-gradient(rgba(213,37,27,1) 0%, rgba(0,90,152,1) 100%);
	--gradient_blue: linear-gradient(45deg, rgba(0,90,152,1) 0%, rgba(21,150,255,1) 100%);
	--gradient_red: linear-gradient(45deg, rgba(213,37,27,1) 0%, rgba(232,117,110,1) 100%);

	/* Drop Shadow */
	--drop_shadow: drop-shadow(10px 10px 10px rgba(0,0,0,.1));

}

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

/* -----
	
	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-rohto-internship__loading {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background: #fff;
	overflow: hidden;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	backface-visibility: hidden;
}

/* -----

	Header

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

	Main

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

.l-main {}

.l-container {}

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

.c-section__head {
	margin-bottom: 40px;
}

.c-section__head .en {
	font-family: var(--en);
    font-size: 6.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.c-section__head .ja {
    font-size: 1.8rem;
    font-weight: 900;
}

.c-text__gradient {
	font-family: var(--en);
	background: var(--gradient_main);
	-webkit-background-clip: text;
	color: rgba(0,0,0,0);
}

.c-more-btn__w {}

.c-more-btn__w a {
	position: relative;
	display: inline-block;
	height: 40px;
	color: var(--text_color);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 40px;
	padding: 0 40px;
	background: #fff;
}

.c-more-btn__w a i {
	margin-left: 10px;
}

.c-more-btn__middle {}

.c-more-btn__middle a {
	position: relative;
	display: inline-block;
	width: 250px;
	height: 65px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 65px;
	padding: 0 20px;
	background: var(--gradient_main);
}

.c-more-btn__middle a i {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.c-entry__btn {}

.c-entry__btn a {
	position: relative;
    display: inline-block;
    width: 100%;
    color: #fff;
	font-family: var(--en);
    font-size: 3.2rem;
    font-weight: 700;
	letter-spacing: .15em;
    padding: 30px 20px;
    background: var(--gradient_main);
}

.c-entry__btn a span {
	display: block;
	font-family: var(--ja);
    font-size: 1.3rem;
    font-weight: 900;
}

.c-entry__btn a i {
	position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

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

	.c-section__head .en {
		font-size: 9rem;
	}
	
	.c-section__head .ja {
		font-size: 2rem;
	}	

	.c-entry__btn {}

	.c-entry__btn a {
		font-size: 7.2rem;
		padding: 60px 60px;
	}
	
	.c-entry__btn a span {
		font-size: 2.4rem;
	}
	
	.c-entry__btn a i {
		right: 60px;
	}
	
}

/* -----
	Main Visual
------------------------------ */

.p-mv {
	position: relative;
	width: 100%;
	height: 90vh;
}

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

.p-mv__link__wrap .p-mv__link {
}

.p-mv__link__wrap .p-mv__link a {
	position: relative;
	display: block;
	width: 75px;
	height: 75px;
	background: var(--main_color);
}

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

.p-mv__link__wrap .p-mv__link.atteme a {
	background: var(--second_color);
}

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

.c-mv__gradient-border {
	position: absolute;
	width: 70vw;
	height: 20px;
	background: var(--gradient_main);
}

.c-mv__gradient-border.lt {
	top: 0;
	left: 0;
}

.c-mv__gradient-border.rb {
	right: 0;
	bottom: 0;
}

.p-mv__deco__wrap {
	position: absolute;
	top: 35px;
	left: 15px;
	right: 15px;
	bottom: 35px;
}

.p-mv__deco_wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.c-mv__side-deco {
	position: absolute;
	height: 100%;
}

.c-mv__side-deco.lt {
	top: 0;
	left: 0;
}

.c-mv__side-deco.rb {
	right: 0;
	bottom: 0;
}

.c-mv__side-deco .c-mv__side-deco__line {
	position: absolute;
	width: 1px;
	height: 100%;
}

.c-mv__side-deco.lt .c-mv__side-deco__line {
	background: var(--gradient_main_vartical_1);
	top: 0;
	left: 6px;
}

.c-mv__side-deco.rb .c-mv__side-deco__line {
	background: var(--gradient_main_vartical_2);
	top: 0;
	right: 6px;
}

.c-mv__side-deco .c-mv__side-deco__text {
	position: absolute;
	font-family: var(--en);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .35em;
	writing-mode: vertical-lr;
	bottom: 0;
	right: 0;
}

.c-mv__side-deco.lt .c-mv__side-deco__text {
	color: var(--main_color);
	top: 0;
	left: 0;
}

.c-mv__side-deco.rb .c-mv__side-deco__text {
	color: var(--second_color);
	right: 0;
	bottom: 0;
}

.c-mv__side-deco .c-mv__side-deco__text span {
	position: relative;
	background: #fff;
}

.c-mv__side-deco.lt .c-mv__side-deco__text span {
	padding-bottom: 10px;
}

.c-mv__side-deco.rb .c-mv__side-deco__text span {
	padding-top: 10px;
}

.c-mv__frame-wrap {
	position: absolute;
	top: 55px;
	left: 40px;
	right: 40px;
	bottom: 55px;
}

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

.c-mv__frame .c-mv__frame__text {
	position: absolute;
	font-size: 1rem;
	font-style: italic;
}

.c-mv__frame .c-mv__frame__text.lt {
	top: -20px;
	left: 0;
}

.c-mv__frame .c-mv__frame__text.rb {
	bottom: -20px;
	right: 0;
}

.c-mv__frame .c-mv__frame__box {
	position: absolute;
	height: 50px;
	width: 50px;
}

.c-mv__frame .c-mv__frame__box.lt {
	border-top: solid 1px var(--text_color);
	border-left: solid 1px var(--text_color);
	top: 0;
	left: 0;
}

.c-mv__frame .c-mv__frame__box.rb {
	border-right: solid 1px var(--text_color);
	border-bottom: solid 1px var(--text_color);
	right: 0;
	bottom: 0;
}

.c-mv__visual {
	position: absolute;
	width: 50%;
	right: 0;
	top: 0;
	bottom: 0;
	background: url("../img/lp/rohto-internship/visual/visual_7.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

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

.c-mv__visual__text__wrap .c-mv__visual__text {
	position: absolute;
	color: #fff;
	font-size: 20rem;
	font-weight: 700;
	mix-blend-mode: overlay;
}

.c-mv__visual__text__wrap .c-mv__visual__text:nth-child(1) {
	top: -7%;
	left: 0;
}

.c-mv__visual__text__wrap .c-mv__visual__text:nth-child(2) {
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.c-mv__visual__text__wrap .c-mv__visual__text:nth-child(3) {
	bottom: -7%;
	right: 0;
}

.p-mv__copy {
	position: absolute;
	top: 50%;
	left: 14vw;
	transform: translateY(-50%);
}

.p-mv__copy h2 {
	font-size: 4.8rem;
	font-weight: 900;
	font-style: italic;
}

.p-mv__copy h2 .c-mv__copy__row:first-child {
	margin-bottom: 15px;
}

.p-mv__copy p {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.5;
	margin-top: 20px;
}

.p-mv__copy p .maker {
	background: #fff;
}

.p-mv__copy p .blue {
	color: var(--main_color);
}

.p-mv__copy p .red {
	color: var(--second_color);
}

.c-mv__company {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.c-mv__company .c-mv__company__name {
	font-size: 1.5rem;
	font-weight: 500;
	font-style: italic;
}

.c-mv__company .c-mv__company__cross {
	position: relative;
	width: 25px;
	height: 25px;
	margin: 0 7px;
}

.c-mv__company .c-mv__company__cross::before,
.c-mv__company .c-mv__company__cross::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.c-mv__company .c-mv__company__cross::before {
	background: var(--main_color);
	transform: translate(-50%,-50%) rotate(45deg);
}

.c-mv__company .c-mv__company__cross::after {
	background: var(--second_color);
	transform: translate(-50%,-50%) rotate(-45deg);
}

.c-mv__scroll {
	position: absolute;
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
	z-index: 10;
}

.c-mv__scroll .c-mv__scroll__text {
	font-family: var(--en);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .35em;
	text-align: center;
}

.c-mv__scroll .c-mv__scroll__bar {
	width: 1px;
	height: 100px;
	background: var(--text_color);
	margin: 0 auto;
}

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

	.p-mv__link__wrap .p-mv__link a {
		width: 100px;
		height: 100px;
	}
	
	.p-mv__link__wrap .p-mv__link a::before {
		right: 10px;
		bottom: 10px;
	}

	.p-mv__link__wrap .p-mv__link a img {
		width: 70px;
	}
		
	.p-mv__deco__wrap {
		position: absolute;
		top: calc(5vh + 20px);
		left: 3vw;
		right: 3vw;
		bottom: calc(4vh + 20px);
	}
				
	.c-mv__frame-wrap {
		position: absolute;
		top: calc(5vh + 5vh);
		left: calc(3vw + 3vw);
		right: calc(3vw + 3vw);
		bottom: calc(5vh + 5vh);
	}
						
	.p-mv__copy h2 {
		font-size: 9rem;
	}
	
	.p-mv__copy h2 .c-mv__copy__row:first-child {
		margin-bottom: 15px;
	}
	
	.p-mv__copy p {
		font-size: 2.8rem;
	}
		
}

/* -----
	Banner
------------------------------ */

.c-banner {
	padding: 0 20px;
	margin-top: 80px;
}

.c-banner img {
	max-width: 480px;
	margin: 0 auto;
}

/* -----
	Message Section
------------------------------ */

.p-message__section {
	position: relative;
	padding: 60px 0 0;
}

.p-desc__row-wrap {
	position: relative;
}

.p-desc__row-wrap::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	background: var(--bg_color_gray);
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
}

.p-desc__row-wrap .c-desc__row:not(:last-child) {
	margin-bottom: 80px;
}

.p-desc__row-wrap .c-desc__row__visual {}

.p-desc__row-wrap .c-desc__row__visual.row-1 {
	padding-right: 30px;
}

.p-desc__row-wrap .c-desc__row__visual.row-2 {
	padding-left: 30px;
}

.p-desc__row-wrap .c-desc__row__text {
	padding: 0 30px;
	margin-bottom: 40px;
}

.p-desc__row-wrap .c-desc__row__text h2 {
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 20px;
}

.p-desc__row-wrap .c-desc__row__text p {}

.p-message__row {
	text-align: center;
	padding: 120px 0;
}

.p-message__row p {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 2.5;
	text-align: left;
	writing-mode: vertical-lr;
	height: 300px;
}

.p-message__row h2 {
	text-align: center;
	margin-top: 80px;
}

.p-message__row h2 .main {
	font-family: var(--en);
	font-size: 6.2rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	margin-bottom: 10px;
}

.p-message__row h2 .sub {
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: .5rem;
	margin-right: -.5rem;
}

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

	.p-message__section {
		position: relative;
		padding: 120px 0 0;
	}
		
	.p-desc__row-wrap .c-desc__row {
		display: flex;
		align-items: center;
	}

	.p-desc__row-wrap .c-desc__row:first-child {
		flex-flow: row-reverse;
	}

	.p-desc__row-wrap .c-desc__row:not(:last-child) {
		margin-bottom: 80px;
	}
	
	.p-desc__row-wrap .c-desc__row__visual {
		width: 50%;
	}
	
	.p-desc__row-wrap .c-desc__row__visual.row-1 {
		padding-right: 0;
	}
	
	.p-desc__row-wrap .c-desc__row__visual.row-2 {
		padding-left: 0;
	}
	
	.p-desc__row-wrap .c-desc__row__text {
		width: 50%;
		padding: 0 7vw;
		margin-bottom: 0;
	}
	
	.p-desc__row-wrap .c-desc__row__text h2 {
		font-size: 4.2rem;
		margin-bottom: 40px;
	}
		
	.p-message__row {
		text-align: center;
		padding: 160px 0;
	}
	
	.p-message__row p {
		font-size: 2.4rem;
		line-height: 2.5;
		height: 500px;
	}
	
	.p-message__row h2 {
		margin-top: 120px;
	}
	
	.p-message__row h2 .main {
		font-size: 8rem;
	}
	
	.p-message__row h2 .sub {
		font-size: 2.4rem;
	}
	
}

/* -----
	Features Section
------------------------------ */

.p-features__section {
	position: relative;
	padding-top: 40px;
	background: var(--bg_color_gray);
	z-index: 0;
}

.p-features__section::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100px;
	background: var(--text_color);
	left: 50%;
	top: -50px;
	z-index: 1;
}

.p-features__section__top-text {
    position: absolute;
    color: #fff;
    font-size: 20rem;
    font-weight: 700;
    mix-blend-mode: overlay;
	top: -7%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

.p-features__section__head {
	text-align: center;
	margin-top: 40px;
}

.p-features__section__head .en {
	font-family: var(--en);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .35em;
    text-align: center;
}

.p-features__section__head .ja {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 30px 0;
}

.p-features__list-wrap {
	padding: 0 30px;
}

.p-features__list {
	position: relative;
	padding: 40px 20px 20px;
	background: #fff;
	filter: var(--drop_shadow);
	z-index: 1;
}

.p-features__list::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 10px;
	top: 0;
	left: 0;
}

.p-features__list.buisiness::before {
	background: var(--gradient_blue);
}

.p-features__list.practice::before {
	background: var(--gradient_red);
}

.p-features__list.buisiness {
	margin-bottom: 30px;
}

.p-features__list.practice {}

.p-features__list h3 {
	font-size: 2.4rem;
	font-weight: 900;
	text-align: center;
}

.p-features__list.buisiness h3 {
	color: var(--main_color);
}

.p-features__list.practice h3 {
	color: var(--second_color);
}

.p-features__list h3 span {
	display: block;
	font-family: var(--en);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .35em;
    text-align: center;
	margin-top: 10px;
}

.p-features__list h3::after {
	display: block;
	content: '';
	width: 1px;
	height: 25px;
	background: var(--text_color);
	margin: 10px auto;
}

.p-features__list.buisiness h3::after {
	background: var(--main_color);
}
.p-features__list.practice h3::after {
	background: var(--second_color);
}

.p-features__list h4 {
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 20px;
}

.p-features__list p {
	margin-bottom: 15px;
}

.p-features__list .c-features__list__comment {
	color: #fff;
	font-size: 1.3rem;
	padding: 10px 15px;
	background: var(--bg_color_gray);
	border-radius: 5px;
}

.p-features__list.buisiness .c-features__list__comment {
	background: var(--gradient_blue);
}

.p-features__list.practice .c-features__list__comment {
	background: var(--gradient_red);
}

.p-features__training-program {
	position: relative;
	margin-top: 40px;
	padding: 80px 0 40px;
	background: url("../img/lp/rohto-internship/visual/visual_2.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}

.p-features__training-program::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 70%;
	background: linear-gradient(rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
	top: 0;
	left: 0;
	z-index: -1;
}

.p-features__training-program__top-text {
    position: absolute;
    color: #fff;
    font-size: 16rem;
    font-weight: 700;
	white-space: nowrap;
    mix-blend-mode: overlay;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}

.p-features__training-program__inner {
	color: #fff;
	padding: 0 15px;
}

.p-features__training-program__details {}

.p-features__training-program h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 10px;
}

.p-features__training-program .p-features__training-program__data {
	font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.p-features__training-program p {
	margin-bottom: 20px;
}

.p-features__training-program p a {
	color: #fff;
}

.p-features__training-program p a i {
	margin-left: 5px;
}

.p-features__training-program__visual {
	margin-top: 30px;
}

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

	.p-features__section {
		padding-top: 80px;
	}
	
	.p-features__section__head .en {
		font-size: 1.8rem;
	}
	
	.p-features__section__head .ja {
		font-size: 4.2rem;
		margin: 30px 0 60px;
	}
	
	.p-features__list-wrap {
		max-width: 1080px;
		display: flex;
		gap: 80px;
		margin: 0 auto;
		padding: 0;
	}
	
	.p-features__list {
		width: 100%;
		padding: 60px 40px 40px;
	}
	
	.p-features__list::before {
		height: 20px;
	}
	
	.p-features__list.buisiness {
		margin-bottom: 0;
	}
	
	.p-features__list.practice {}
	
	.p-features__list h3 {
		font-size: 3.2rem;
	}
		
	.p-features__list h3 span {
		font-size: 1.5rem;
		margin-top: 15px;
	}
	
	.p-features__list h4 {
		font-size: 2.4rem;
	}
	
	.p-features__list p {
		margin-bottom: 15px;
	}
	
	.p-features__list .c-features__list__comment {
		font-size: 1.4rem;
	}
	
	.p-features__training-program {
		position: relative;
		margin-top: 80px;
		padding: 120px 0;
		background: url("../img/lp/rohto-internship/visual/visual_2.jpg");
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
		z-index: -1;
	}

	.p-features__training-program__inner {
		max-width: 1080px;
		display: flex;
		align-items: center;
		margin: 0 auto;
	}
	
	.p-features__training-program::before {
		width: 50%;
		height: 100%;
		background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
	}
	
	.p-features__training-program__top-text {
		position: absolute;
		color: #fff;
		font-size: 16rem;
		font-weight: 700;
		white-space: nowrap;
		mix-blend-mode: overlay;
		top: 0;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 0;
	}
	
	.p-features__training-program__inner {
		color: #fff;
		padding: 0;
	}
	
	.p-features__training-program__details {
		width: 50%;
		padding-right: 5vw;
	}
	
	.p-features__training-program__visual {
		margin: 0;
	}
	
	.p-features__training-program h2 {
		font-size: 3.2rem;
		margin-bottom: 20px;
	}
	
	.p-features__training-program .p-features__training-program__data {
		font-size: 1.8rem;
		font-weight: 700;
		margin-bottom: 30px;
	}
	
	.p-features__training-program p {
		margin-bottom: 30px;
	}
	
}

/* -----
	Information Section
------------------------------ */

.p-information__section {
	padding: 80px 0;
}
.p-information__section__inner {}

.p-information__section__inner__l {
	padding: 0 30px;
}

.p-information__section .c-section__head .c-text__gradient {
	background: url("../img/lp/rohto-internship/visual/visual_6.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
}

.p-information__info {
	margin-bottom: 30px;
}

.p-information__info ul {}

.p-information__info li {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.p-information__info li span {
	display: block;
	font-size: 1.2rem;
	margin-top: 10px;
}

.p-information__info .p-information__info__note {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5;
	padding: 10px;
	border: solid 1px var(--text_color);
	border-radius: 2px;
	margin-top: 30px;
}

.p-information__section__inner__r {
	padding: 0 30px;
	margin-top: 60px;
}

.p-information__section__timeline {}

.p-information__timeline-list {
	position: relative;
	padding-left: 30px;
	padding-bottom: 60px;
}

.p-information__timeline-list:last-child {
	padding-bottom: 0;
}

.p-information__timeline-list::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background: var(--text_color);
	top: 0;
	left: 0;
}

.p-information__timeline-list:last-child::before {
	width: 0;
}

.c-timeline-list__point {
	position: absolute;
	width: 15px;
	height: 15px;
	background: var(--text_color);
	border: solid 3px #fff;
	border-radius: 50%;
	top: 0;
	left: 0;
	transform: translateX(-50%);
}

.current .c-timeline-list__point {
	width: 30px;
	height: 30px;
	background: var(--gradient_main);
}

.c-timeline-list__head {
	display: flex;
	align-items: center;
}

.current .c-timeline-list__head {
	padding-top: 7px;
}

.c-timeline-list__head .en {
    font-family: var(--en);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.c-timeline-list__head .ja {
    font-size: 1.2rem;
    font-weight: 900;
	margin-left: 10px;
}

.c-timeline-list__date {
    font-size: 1.8rem;
    font-weight: 700;
	line-height: 1.25;
	margin-top: 15px;
}

.c-timeline-list__place {
    font-size: 1.8rem;
    font-weight: 700;
	margin-top: 15px;
}

.c-timeline-list__date span {
	display: block;
	font-size: 1.2rem;
    font-weight: 700;
	margin-bottom: 5px;
}

.c-timeline-list__note {
    font-size: 1.2rem;
    font-weight: 700;
	margin-top: 10px;
}

.p-information__timeline-list .c-more-btn__w a{
	border: solid 1px var(--text_color);
	margin-top: 20px;
}

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

	.p-information__section {
		padding: 120px 0;
	}
	.p-information__section__inner {
		display: flex;
		max-width: 1080px;
		margin: 0 auto;
	}
	
	.p-information__section__inner__l {
		width: 50%;
		padding: 0;
		padding-right: 5vw;
	}
			
	.p-information__info .p-information__info__note {
		display: inline-block;
		margin-top: 30px;
	}
	
	.p-information__section__inner__r {
		width: 50%;
		padding: 0;
		margin-top: 0;
	}
		
	.p-information__timeline-list {
		padding-bottom: 80px;
	}
	
	.c-timeline-list__point {
		width: 20px;
		height: 20px;
	}
	
	.current .c-timeline-list__head {
		padding-top: 4px;
	}
	
	.c-timeline-list__head .en {
		font-size: 2.8rem;
	}
	
	.c-timeline-list__head .ja {
		font-size: 1.4rem;
	}
		
	.c-timeline-list__note {
		max-width: 400px;
		font-size: 1.2rem;
	}
	
}

/* -----
	Infosession Section
------------------------------ */

.p-infosession__section {
	padding: 80px 0 120px;
	background: var(--bg_color_gray);
}
.p-infosession__section__inner {}

.p-infosession__section__inner__l {
	padding: 0 30px;
}

.p-infosession__section .c-section__head .c-text__gradient {
	background: url("../img/lp/rohto-internship/visual/visual_1.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
}

.p-infosession__section__inner__l {}

.p-infosession__section__inner__r {
	padding: 0 30px;
	margin-top: 60px;
}

.p-infosession__section__inner__r h3 {
	font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
}

.p-infosession__list {
	margin-bottom: 30px;
}

.p-infosession__list dl {
	margin-bottom: 20px;
}

.p-infosession__list dt {
	width: 100px;
	height: 30px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	line-height: 30px;
	background: var(--text_color);
	margin-bottom: 10px;
}

.p-infosession__list dd {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.75;
}

.p-infosession__list__note {
	font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 10px;
	background: #fff;
    border-radius: 2px;
    margin-bottom: 30px;
}

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

	.p-infosession__section {
		padding: 120px 0 160px;
	}

	.p-infosession__section__inner {
		max-width: 1080px;
		display: flex;
		margin: 0 auto;
	}
	
	.p-infosession__section__inner__l {
		width: 50%;
		padding: 0;
		padding-right: 5vw;
	}
		
	.p-infosession__section__inner__r {
		padding: 0;
		margin-top: 0;
	}
	
	.p-infosession__section__inner__r h3 {
		font-size: 4.2rem;
	}
	
	.p-infosession__list {
		margin-bottom: 30px;
	}
	
	.p-infosession__list dl {
		display: flex;
	}
		
	.p-infosession__list dd {
		padding-left: 15px;
	}
	
	.p-infosession__list__note {
		max-width: 400px;
		padding: 20px;
	}
	
}

/* -----
	Application Section
------------------------------ */

.p-application__section {
	position: relative;
	padding: 80px 0;
}

.p-application__section::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100px;
	background: var(--text_color);
	left: 50%;
	top: -50px;
	z-index: 1;
}

.p-application__section__inner {
	padding: 0 30px;
}

.p-application__head {
	text-align: center;
	margin-bottom: 40px;
}

.p-application__head .ja {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.p-application__head .en {
	font-family: var(--en);
    font-size: 4.2rem;
    font-weight: 700;
}

.p-application__section h3 {
	position: relative;
	font-size: 2rem;
    font-weight: 900;
	text-align: center;
	transform: translateY(50%);
	z-index: 1;
}

.p-entry-sheet__info__wrap {}

.c-entry-sheet__info {
	padding: 30px 15px;
	background: var(--bg_color_gray);
	border-radius: 5px;
	filter: var(--drop_shadow);
}

.c-entry-sheet__info.common {
	padding-top: 40px;
}

.c-entry-sheet__info.select {
	padding: 20px;
}

.c-entry-sheet__info {}

.c-entry-sheet__info__plus {
	font-size: 2.8rem;
    font-weight: 900;
	text-align: center;
	margin: 20px 0;
}

.select .c-entry-sheet__info-box {
	color: #fff;
	padding: 20px 15px;
	border-radius: 5px;
}

.c-entry-sheet__info-box.buisiness {
	background: var(--gradient_blue);
}

.c-entry-sheet__info-box.practice {
	background: var(--gradient_red);
}

.select .c-entry-sheet__info-box h4 {
	font-size: 1.6rem;
    font-weight: 900;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: solid 1px #fff;
}

.common .c-entry-sheet__info-box h4 {
	font-size: 3.6rem;
    font-weight: 900;
	text-align: center;
	margin-bottom: 20px;
}

.c-entry-sheet__info-box h4.c-text__gradient {
	font-family: var(--ja);
}

.c-entry-sheet__info-box .c-entry-sheet__info__theme {
	font-size: 1.6rem;
    font-weight: 900;
	text-align: center;
}

.select .c-entry-sheet__info__theme {
	font-size: 1.4rem;
    font-weight: 900;
	text-align: center;
}

.c-entry-sheet__info-box .c-entry-sheet__info__theme span {
	display: block;
	font-size: 1.3rem;
}

.c-entry-sheet__info-box .c-entry-sheet__info__note {
	font-size: 1.2rem;
    font-weight: 900;
	text-align: center;
	text-decoration: underline;
	margin-top: 10px;
}

.c-entry-sheet__info__note-list {
	border-top: dashed 1px #fff;
	padding-left: 2rem;
	padding-top: 10px;
	margin-top: 10px;
}

.c-entry-sheet__info__note-list li {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5;
	list-style :decimal;
}

.c-entry-sheet__info__or {
	font-size: 2.4rem;
    font-weight: 900;
	text-align: center;
	margin: 15px 0;
}

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

	.p-application__section {
		padding: 80px 0 120px;
	}
	
	.p-application__section__inner {
		max-width: 1080px;
		margin: 0 auto;
		padding: 0;
	}
	
	.p-application__head .ja {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	
	.p-application__head .en {
		font-size: 7.2rem;
	}
	
	.p-application__section h3 {
		font-size: 3.6rem;
	}
		
	.c-entry-sheet__info {
		padding: 40px;
	}
	
	.c-entry-sheet__info.select {
		position: relative;
		display: flex;
		padding: 40px;
	}
	
	.c-entry-sheet__info {}
	
	.c-entry-sheet__info__plus {
		font-size: 4.2rem;
	}
	
	.select .c-entry-sheet__info-box {
		width: 100%;
		padding: 40px;
	}
		
	.select .c-entry-sheet__info-box h4 {
		font-size: 2.4rem;
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom: solid 1px #fff;
	}
	
	.common .c-entry-sheet__info-box h4 {
		font-size: 3.6rem;
		font-weight: 900;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.c-entry-sheet__info-box h4.c-text__gradient {
		font-family: var(--ja);
	}
	
	.c-entry-sheet__info-box .c-entry-sheet__info__theme {
		font-size: 2.8rem;
		font-weight: 900;
		text-align: center;
	}
	
	.select .c-entry-sheet__info__theme {
		font-size: 2rem;
		font-weight: 900;
		text-align: center;
	}
	
	.c-entry-sheet__info-box .c-entry-sheet__info__theme span {
		display: block;
		font-size: 1.5rem;
	}
	
	.c-entry-sheet__info-box .c-entry-sheet__info__note {
		font-size: 1.5rem;
		margin-top: 10px;
	}
	
	.c-entry-sheet__info__note-list {
		border-top: dashed 1px #fff;
		padding-left: 2rem;
		padding-top: 10px;
		margin-top: 10px;
	}
	
	.c-entry-sheet__info__note-list li {
		font-size: 1.4rem;
	}
	
	.c-entry-sheet__info__or {
		font-size: 2.8rem;
		position: relative;
		margin: 0 15px;
	}
	
	.c-entry-sheet__info__or span {
		position: relative;
		top: 45%;
		transform: translateY(-50%);
	}

}

/* -----
	Entry Section
------------------------------ */

.p-entry__section {
	padding: 0 20px;
}

.c-entry__finish {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	padding: 10px 10px;
	background: var(--text_color);
	margin-top: 15px;
}

.c-entry__contact__btn {
	text-align: center;
	margin-top: 15px;
}

.c-entry__contact__btn a {
    position: relative;
    display: inline-block;
    height: 40px;
    color: var(--text_color);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 40px;
    padding: 0 40px;
	border: solid 1px var(--text_color);
    background: #fff;
}

.c-entry__contact__btn a i {
	margin-right: 5px;
}

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

	.p-entry__section {
		max-width: 1180px;
		margin: 0 auto;
		padding: 0;
	}
	
	.c-entry__finish {
		max-width: 600px;
		font-size: 1.6rem;
		margin: 20px auto 0;
	}
	
	.c-entry__contact__btn {
		text-align: center;
		margin-top: 20px;
	}
	
}

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

.p-company__link-wrap {
	display: flex;
	background: var(--bg_color_gray);
	margin-top: 40px;
}

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

.p-company__link:first-child {
	border-right: solid 1px #fff;
}

.p-company__link .c-company__link__by {
	font-family: var(--en);
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
}

.p-company__link h2 img {
	height: 35px;
	margin: 0 auto;
}

.p-company__link .c-company__link__btn {
	text-align: center;
	margin-top: 15px;
}

.p-company__link .c-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;
}

.p-company__link.rohto a {
	color: var(--main_color);
}

.p-company__link.atteme a {
	color: var(--second_color);
}

.p-company__link .c-company__link__btn a i {
	margin-left: 5px;
}

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

	.p-company__link-wrap {
		margin-top: 80px;
	}
	
	.p-company__link {
		padding: 80px 0;
	}
	
	.p-company__link:first-child {
		border-right: solid 1px #fff;
	}
	
	.p-company__link .c-company__link__by {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
		
	.p-company__link h2 img {
		height: 75px;
		margin: 0 auto;
	}
	
	.p-company__link .c-company__link__btn {
		text-align: center;
		margin-top: 30px;
	}
	
	.p-company__link .c-company__link__btn a {
		height: 40px;
		font-size: 1.4rem;
		line-height: 40px;
		padding: 0 40px;
		border-radius: 20px;
	}
	
}

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

.p-internship__link {}

.p-internship__link a {
	display: block;
	color: #fff;
	background: var(--text_color);
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	padding: 30px;
}

.p-internship__link a i {
	margin-left: 5px;
}

/* -----

	Footer

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

.l-footer {
	padding: 40px;
	background: var(--gradient_main);
}

.l-footer__inner {
	font-family: var(--en);
}

.p-footer__privacy {
	text-align: center;
	margin-bottom: 30px;
}

.p-footer__privacy a {
	color: #fff;
	font-size: 1.2rem;
	text-decoration: underline;
}

.p-footer__copy {
	text-align: center;
}

.p-footer__copy small {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
}

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

	.l-footer {
		padding: 40px;
		background: var(--gradient_main);
	}
	
	.l-footer__inner {
		display: flex;
		align-items: center;
		justify-content: space-around;
	}
	
	.p-footer__privacy {
		width: 100%;
		text-align: left;
		margin-bottom: 0;
	}
	
	.p-footer__copy {
		width: 100%;
		text-align: right;
	}
	
}

/* -----

	Animation

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

.fi {
	opacity: 0;
	transform: translateY(40px);
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.is_shown.fi {
	opacity: 1;
	transform: translateY(0);
}
