/* 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:wght@400;500;700&family=Noto+Sans+JP:wght@100..900&display=swap');

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

body {
	font-family:var(--ja);
	font-feature-settings: "palt";
}

::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.5;
}

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);
}

a:hover {}

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: 'Barlow', sans-serif;

	/* Color */
	--black: #414141;
	--gray: #E1E1E1;
	--mid-gray: #F4F4F4;
	--light-gray: #F9F9F9;
	--red: #DA291C;
	--blue: #0066CC;
    --white: #FFFFFF;
	
	/* Color Style */
	--text_color: var(--black);
	--line_color: var(--gray);
	--key_color: var(--red);
	--bg_color: var(--light-gray);

}

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

/* Initial Setting
========================================================================== */

html {}

body{
	
}

.l-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--bg_color);
	z-index: 0;
}

.l-wrap::-webkit-scrollbar {
	display: none;
}

.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
========================================================================== */

#loading {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: #fff;
	overflow: hidden;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	backface-visibility: hidden;
}

/* Background
========================================================================== */

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

/* Header
========================================================================== */

.l-header {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
}

.l-header__content {
	position: relative;
	display: flex;
	width: 80.95vw;
	height: 14.29vw;
	align-items: center;
	justify-content: space-between;
	padding: 0 4.76vw;
	background: var(--white);
	border-radius: 0 0 20px 0;
	box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.08);
	z-index: 999;
}

.l-header__logo a {
	display: block;
	line-height: 0;
}

.l-header__logo svg {
	fill: var(--red);
	height: 20px;
}

.l-header__link__list {
	display: flex;
	align-items: center;
}

.l-header__link__list-item {
	display: flex;
	align-items: center;
}

.l-header__link__list-item:not(:last-child)::after {
	display: block;
	content: '';
	height: 20px;
	width: 1px;
	background: var(--gray);
	margin: 0 7px;
}

.l-header__link__list-item a {
	display: block;
	color: var(--black);
	font-size: .9rem;
}

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

	.l-header__content {
		width: 38.57vw;
		height: 4.29vw;;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 30px;
		background: var(--white);
		border-radius: 0 0 20px 0;
	}
	
	
	.l-header__logo svg {
		height: 25px;
	}
		
	.l-header__link__list-item:not(:last-child)::after {
		height: 20px;
		margin: 0 10px;
	}
	
	.l-header__link__list-item a {
		font-size: 1.1rem;
	}

}

/* Nvigation Trigger
========================================================================== */

.l-header__navigation__trigger {
	position: relative;
	height: 14.29vw;
	width: 14.29vw;
	background: var(--red);
	border-radius: 0 0 0 20px;
}

.l-header__navigation__trigger__group {
	position: absolute;
	width: 22px;
	height: 14px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	cursor:pointer;
	opacity: 1;
	z-index: 1000;
}

.l-header__navigation__trigger__group, .l-header__navigation__trigger__group__bar {
	display: inline-block;
	box-sizing: border-box;
	transition: all .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
}

.l-header__navigation__trigger__group .l-header__navigation__trigger__group__bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--white);
	transition: all .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
	border-radius: 2px;
}

.l-header__navigation__trigger__group__bar:nth-of-type(1) {
	top: 0;
}

.l-header__navigation__trigger__group__bar:nth-of-type(2) {
	top: 6px;
}

.l-header__navigation__trigger__group__bar:nth-of-type(3) {
	bottom: 0;
}

.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(1) {
	-webkit-transform: translateY(6px) rotate(-45deg);
	transform: translateY(6px) rotate(-45deg);
}

.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active_btn_bar .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
  animation: active_btn_bar .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
}

.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(3) {
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}

@-webkit-keyframes active_btn_bar {
	100% {
		height: 0;
	}
}

@keyframes active_btn_bar {
	100% {
		height: 0;
	}
}


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

	.l-header__navigation__trigger {
		width: 4.29vw;
		height: 4.29vw;
	}
	
}

/* Global Navigation
========================================================================== */

.l-header__navigation {
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--red);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 998;
	transition: all .75s cubic-bezier(.25,.1,.25,1);
}

.l-header__navigation.is_active {
	visibility: visible;
	opacity: 1;
}

.l-header__navigation__inner {
	padding: 28.57vw 4.76vw 0;

}

.l-global-navigation__main {
	margin-bottom: 40px;
}

.l-global-navigation__main-item > a {
	display: flex;
	align-items: center;
	color: var(--white);
	font-family: var(--en);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .15rem;
	text-transform: uppercase;
	padding: 15px 10px;
	border-top: solid 1px var(--white);
}

.l-global-navigation__main-item:last-child > a {
	border-bottom: solid 1px var(--white);
}

.l-global-navigation__main-item a {
	position: relative;
}

.l-global-navigation__main-item a::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--white);
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.l-global-navigation__main-item.l-global-navigation__main-item__has-child {
	display: flex;
	align-items: flex-start;
}

.l-global-navigation__main-item.l-global-navigation__main-item__has-child > a {
	width: 50%;
	border-top: solid 1px var(--white);
}

.l-global-navigation__main-item.l-global-navigation__main-item__has-child > a::after {
	content: none;
}

.l-global-navigation__main-item__label {
	font-size: 1rem;
	letter-spacing: .15rem;
	font-weight: 500;
	margin-left: 7px;
}

.l-global-navigation__main-item__child {
	width: 50%;
}

.l-global-navigation__main-item__child-item > a {
	display: block;
	color: var(--white);
	font-size: 1rem;
	letter-spacing: .15rem;
	font-weight: 500;
	padding: 18px 10px;
	border-top: solid 1px var(--white);
}

.l-global-navigation__sns {
	margin-top: 40px;
}

.l-global-navigation__sns__list {
    display: flex;
    justify-content: left;
    gap: 15px;
}

.l-global-navigation__sns__list-item svg {
	fill: var(--white);
    height: 20px;
}

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

    .l-header__navigation__inner {
        padding: 8.57vw 52.14vw 0 4.29vw;
    
    }
    
    .l-global-navigation__main {
        margin-bottom: 40px;
    }
    
    .l-global-navigation__main-item > a {
        font-size: 1.8rem;
        padding: 15px 10px;
    }
    
    .l-global-navigation__main-item__label {
        font-size: 1.2rem;
    }
    
    .l-global-navigation__main-item__child-item > a {
        font-size: 1.2rem;
        padding: 18px 10px;
    }
    
    .l-global-navigation__sns {
        margin-top: 40px;
    }

}

/* Common Style
========================================================================== */

/* Button Style
========================================================================== */

/* Tab Style
========================================================================== */

.l-tab {

}

.l-tab__menu {

}

.l-tab__menu__list {

}

.l-tab__menu__list-item {

}

.is-active {

}

.l-tab__area {

}

.l-tab__area__box {
	display: none;
}

.is-show.l-tab__area__box {
	display: block;
}

/* Main
========================================================================== */

.l-main {
	will-change: transform;
}

.l-article {}

.l-article__content {
	position: relative;
	margin: 0 2.38vw;
	z-index: 1;
}

.l-article__content::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: var(--white);
	border-radius: 20px;
	top: 0;
	left: 0;
	z-index: 0;
}

.l-article__content__inner {
	position: relative;
}

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

	.l-article__content {
		margin: 0 4.29vw;
	}	
	
}

/* -----

	Common

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

.l-section {

}

.l-section__head {
	text-align: right;
	line-height: 1;
	margin-bottom: 9.52vw;
}

.l-section__head__en {
	color: var(--red);
	font-family: var(--en-secondary);
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .5rem;
}

.l-section__head__ja {
	font-size: 1rem;
	letter-spacing: .5rem;
	margin-top: 5px;
}

.c-text__basic {
	font-size: 1.3rem;
	line-height: 2;
	letter-spacing: .15rem;
	margin-bottom: 20px;
}

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

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

	.l-section__head {
		text-align: right;
		line-height: 1;
		margin-bottom: 2.86vw;
	}
	
	.l-section__head__en {
		font-size: 1.8rem;
	}
	
	.c-text__basic {
		font-size: 1.6rem;
		margin-bottom: 40px;
	}	
	
}

/* -----

	Article Head

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

.l-article__head {
	position: relative;
	padding: 23.81vw 8.33vw 19.05vw;
}

.l-article__head__content {

}

.l-article__head__content__logo {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 29.76vw;
	height: 29.76vw;
	padding: 0 2.98vw;
	background: var(--white);
	border-radius: 20px;
    overflow: hidden;
}

.l-article__head__content__logo img {
    position: relative;
    width: auto;
    max-width: none;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.l-article__head__content__text {
	color: var(--white);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.75;
	margin-top: 9.52vw;
}

.l-article__head__bg {
	position: absolute;
	width: 100%;
	height: 142.86vw;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: -1;
}

.l-article__head__bg img {
	position: absolute;
	max-width: none;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.l-article__head__bg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 75%, rgba(248,249,249,1) 100%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

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

	.l-article__head {
		padding: 17.14vw 4.29vw 7.14vw;
	}

	.l-article__head__content {
		display: flex;
		align-items: center;
		gap: 40px;
	}
	
	.l-article__head__content__logo {
		width: 8.93vw;
        min-width: 8.93vw;
		height: 8.93vw;
		padding: 0 0.89vw;
	}
		
	.l-article__head__content__text {
		font-size: 2.8rem;
		margin-top: 0;
		padding-right: 34.29vw;
	}
	
	.l-article__head__bg {
		height: 50vw;
	}
	
	.l-article__head__bg img {
		width: 100%;
		height: auto;
	}
		
}

/* -----

	Request Section

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

.l-request {
	padding: 14.29vw 5.95vw;
}

.l-request__inner {}

.l-request__head {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: .25rem;
	margin-bottom: 60px;
}

.l-request__list {
	margin: 14.29vw 0;
}

.l-request__list-item {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 20px;
}

.l-request__list-item__step {
	position: relative;
	width: 17.86vw;
	min-width: 17.86vw;
	height: 17.86vw;
	border: solid 1px var(--red);
	border-radius: 50%;
}

.l-request__list-item__step__num {
	position: absolute;
	display: block;
	width: 100%;
	color: var(--red);
	font-family: var(--en-secondary);
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .15rem;
	top: 50%;
	transform: translateY(-50%);
}

.l-request__list-item__text {
    letter-spacing: .15rem;
}

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

	.l-request {
		padding: 7.14vw 7.14vw;
	}
	
	.l-request__inner {
		padding-right: 27.14vw;
	}
	
	.l-request__head {
		font-size: 2.8rem;
		margin-bottom: 80px;
	}
	
	.l-request__list {
		margin: 4.29vw 0;
	}
	
	.l-request__list-item {
		font-size: 1.8rem;
	}
	
	.l-request__list-item__step {
		width: 5.36vw;
		min-width: 5.36vw;
		height: 5.36vw;
	}
	
}

/* -----

	Flow Section

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

.l-flow {
	padding: 14.29vw 5.95vw;
	background: var(--gray);
}

.l-flow__inner {

}

.l-flow__content {

}

.l-flow__detail {

}

.l-flow__detail__logo {
	margin-bottom: 60px;
}

.l-flow__detail__logo svg {
	fill: var(--red);
	height: 30px;
}

.l-flow__detail__head {
    letter-spacing: .15rem;
}

.l-flow__detail__head__sub {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.l-flow__detail__head__main {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--red);
	font-family: var(--en);
	font-size: 4.8rem;
	font-weight: 900;
	margin-bottom: 40px;
}

.l-flow__head__main__ruby {
	color: var(--text_color);
	font-family: var(--ja);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .15rem;
}

.l-flow__detail__link {
	padding: 0 2.38vw;
	margin: 14.29vw 0;
}

.l-flow__detail__link a {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	width: 100%;
	background: var(--white);
	border-radius: 20px;
}

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

.l-flow__detail__link__logo svg {
	fill: var(--red);
	height: 50px;
}

.l-flow__detail__link__icon {
	position: absolute;
	right: 30px;
	bottom: 30px;
}

.l-flow__detail__link__icon svg {
	fill: var(--text_color);
	height: 15px;
}

.l-flow__head__main rt {
	color: var(--black);
	font-size: 1rem;
	font-weight: 400;
}

.l-flow__tab {

}

.l-flow__tab__menu {
	display: flex;
	position: relative;
	margin-bottom: 60px;
}

.l-flow__tab__menu__list {
	position: relative;
	width: 50%;
	height: 75px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 75px;
	letter-spacing: .15rem;
	text-align: center;
	border-top: solid 1px var(--text_color);
	border-bottom: solid 1px var(--text_color);
	transition: all .75s cubic-bezier(.25,.1,.25,1);
}

.l-flow__tab__menu__list:first-child {
	border-right: solid 1px var(--text_color);
}

.is-active.l-flow__tab__menu__list {
	color: var(--white);
	background: var(--red);
}

.is-active.l-flow__tab__menu__list::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: var(--red) transparent transparent transparent;
	border-width: 10px 14px 0 14px;
}

.l-flow__content {

}

.l-flow__content__head {
    font-size: 2rem;
    font-weight: 700;
	text-align: center;
	border-bottom: solid 1px var(--black);
	padding-bottom: 10px;
    margin-bottom: 40px;
}

.l-flow__content__manual {
	margin-bottom: 40px;
}

.l-flow__content__manual__desc {
    font-size: 1.5rem;
    font-weight: 500;
	text-align: center;
	letter-spacing: .15rem;
    margin-bottom: 40px;
}

.l-flow__content__manual__button a {
	position: relative;
	display: block;
	height: 75px;
	color: var(--black);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 75px;
	letter-spacing: .15rem;
	text-align: left;
	padding: 0 30px;
	border: solid 1px var(--black);
	border-radius: 20px;
}

.l-flow__content__manual__button a svg {
	height: 15px;
	fill: var(--black);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.l-flow__content__flow {
	padding: 20px;
	background: var(--white);
	border-radius: 20px;
}

.l-flow__content__flow__list {

}

.l-flow__content__flow__list-item {
	display: flex;
	position: relative;
	gap: 15px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	padding-bottom: 20px;
}

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

.l-flow__content__flow__list-item::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background: var(--gray);
	top: 0;
	left: calc(17.86vw / 2);	
}

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

.l-flow__content__flow__list-item__step {
	position: relative;
	width: 17.86vw;
	min-width: 17.86vw;
	height: 17.86vw;
	background: var(--white);
	border: solid 1px var(--red);
	border-radius: 50%;
}

.l-flow__content__flow__list-item__step__num {
	position: absolute;
	display: block;
	width: 100%;
	color: var(--red);
	font-family: var(--en-secondary);
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .15rem;
	top: 50%;
	transform: translateY(-50%);
}

.l-flow__content__flow__list-item__text {
	width: 100%;
	padding-top: 3.57vw;
}

.l-flow__content__flow__list-item__text__head {
	letter-spacing: .15rem;
}

.l-flow__content__flow__list-item__text__button {
	margin-top: 20px;
}

.l-flow__content__flow__list-item__text__button a {
	position: relative;
	display: block;
	height: 60px;
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 60px;
	letter-spacing: .15rem;
	background: var(--red);
	padding: 0 20px;
	border-radius: 20px;
}

.l-flow__content__flow__list-item__text__button a svg {
	height: 10px;
	fill: var(--white);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.l-flow__content__flow .c-text__basic {
	font-size: 1.1rem;
	margin-top: 20px;
}

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

	.l-flow {
		padding: 7.14vw 7.14vw;
	}
	
	.l-flow__inner {
	
	}
	
	.l-flow__ {
		display: block;
		margin-bottom: 0;
	}
	
	.l-flow__detail {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 80px;
	}

	.l-flow__detail__content {
		width: 50%;
	}
	
	.l-flow__detail__logo {
		margin-bottom: 60px;
	}
	
	.l-flow__detail__head__sub {
		font-size: 2rem;
	}
	
	.l-flow__detail__head__main {
		font-size: 6.2rem;
	}
	
	.l-flow__head__main__ruby {
		font-size: 1.4rem;
	}
	
	.l-flow__detail__link {
		width: 50%;
		padding: 0 0 0 4.29vw;
		margin: 0;
	}
			
	.l-flow__detail__link__logo svg {
		fill: var(--red);
		height: 75px;
	}
				
	.l-flow__tab__menu__list {
		height: 100px;
		font-size: 1.6rem;
		line-height: 100px;
	}
					
	.l-flow__content__manual {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		margin-bottom: 40px;
	}
	
	.l-flow__content__manual__desc {
		font-size: 2.4rem;
		text-align: left;
		margin-bottom: 0;
	}
	
	.l-flow__content__manual__button a {
		width: 22.86vw;
		height: 75px;
		line-height: 75px;
		padding: 0 30px;
	}
		
	.l-flow__content__flow {
		padding: 60px;
		margin-right: 27.14vw;
	}
	
	.l-flow__content__flow__list {
	
	}
	
	.l-flow__content__flow__list-item {
		font-size: 1.8rem;
		padding-bottom: 20px;
	}
	
	.l-flow__content__flow__list-item:last-child {
		padding-bottom: 0;
	}
	
	.l-flow__content__flow__list-item::before {
		left: calc(5.36vw / 2);	
	}
	
	.l-flow__content__flow__list-item:last-child:before {
		content: none;
	}
	
	.l-flow__content__flow__list-item__step {
		width: 5.36vw;
		min-width: 5.36vw;
		height: 5.36vw;
	}
		
	.l-flow__content__flow__list-item__text {
		padding-top: 1.43vw;
	}
	
	.l-flow__content__flow__list-item__text__button {
		margin-top: 20px;
	}
	
	.l-flow__content__flow__list-item__text__button a {
		max-width: 22.14vw;
	}	

}

/* -----

	Contact Section

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

.l-contact {
	padding: 14.29vw 5.95vw;
}

.l-contact__content__head {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
	letter-spacing: .25rem;
    margin: 14.29vw 0;
}

.l-contact__content__colum__text {
	font-size: 1.1rem;
}

.l-contact__content__colum__box:not(:last-child) {
	margin-bottom: 9.52vw;
}

.l-contact__content__colum__head {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
	letter-spacing: .15rem;
	padding: 30px 0;
	border-top: solid 1px var(--text_color);
	border-bottom: solid 1px var(--text_color);
    margin-bottom: 40px;
}

.l-contact__content__colum__info {
	padding: 30px;
	background: var(--bg_color);
	border-radius: 20px;
	margin-bottom: 40px;
}

.l-contact__content__colum__info__head {
	font-size: 1.3rem;
    font-weight: 500;
	text-align: center;
	letter-spacing: .15rem;
    margin-bottom: 20px;
}

.l-contact__content__colum__info__button a {
    display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 500;
}

.l-contact__content__colum__info__button a svg {
	position: relative;
	fill: var(--black);
	height: 20px;
	top: 1px;
}

.l-contact__content__colum__info__note {
	font-size: 1rem;
	text-align: center;
	letter-spacing: .15rem;
	margin-top: 15px;
}

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

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

	.l-contact {
		padding: 7.14vw 7.14vw;
	}
	
	.l-contact__content__head {
		font-size: 2.4rem;
		margin: 5.71vw 0;
	}
	
	.l-contact__content__colum {
		display: flex;
		gap: 60px;
	}

	.l-contact__content__colum__box {
		width: 50%;
	}

	.l-contact__content__colum__text {
		font-size: 1.2rem;
	}
	
	.l-contact__content__colum__box:not(:last-child) {
		margin-bottom: 0;
	}
	
	.l-contact__content__colum__head {
		font-size: 1.6rem;
	}
		
	.l-contact__content__colum__info__head {
		font-size: 1.4rem;
	}
	
	.l-contact__content__colum__info__button a {
		font-size: 2.4rem;
	}
	
}

/* Service Single
========================================================================== */

.l-service__single {
	position: relative;
}

/* -----
	Page Head
------------------------------ */

.l-service__single__head {
	position: relative;
	color: var(--white);
	padding: 33.33vw 2.38vw 0;
}

.l-service__single__head__left {
	padding: 0 4.76vw;
}

.l-service__single__head__en {
	color: var(--key_color);
	font-family: var(--en);
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .25rem;
}

.l-service__single__head__ja {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: .25rem;
	margin-top: 5px;
}

.l-service__single__head__copy {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: .25rem;
	margin: 9.52vw 0 4.76vw;
}

.l-service__single__head__right {

}

.l-service__single__head__movie {
	margin: 7.14vw 0 3.57vw;
}

.l-service__single__head__link {
	display: flex;
	gap: 3.57vw;
	justify-content: space-between;
}

.l-service__single__head__link__btn {
	width: 100%;
}

.l-service__single__head__bg {
	position: absolute;
	width: 100%;
	height: calc(100% + 33.33vw);
	top: 0;
	left: 0;
	z-index: -1;
}

.l-service__single__head__bg img {
	position: absolute;
	max-width: none;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.l-service__single__head__bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 75%, rgba(249, 249, 249, 1) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* -----

	Page Contents

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

.l-page__contents {
	position: relative;
	margin: 9.52vw 2.38vw 0;
}

.l-page__contents::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
	border-radius: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	z-index: -1;
}

.l-page__contents__inner {

}

/* -----
	Page Index
------------------------------ */

.l-service__single__index {
	padding: 7.14vw 4.76vw 4.76vw;
}

.l-service__single__index__inner {
	overflow-x: scroll;
	white-space: nowrap;
}

.l-service__single__index__list {
	display: flex;
}

.l-service__single__index__list-item {
	
}

.l-service__single__index__list-item a {
	display: block;
	color: var(--text_color);
	font-size: 1.2rem;
}

/* -----
	Page Contents
------------------------------ */

.l-service__single__section {

}

.l-service__single__section__overview {

}

.l-service__single__section__head {

}

.l-service__single__section__head__en {

}

.l-service__single__section__head__ja {

}

.l-service__single__section__contents {

}

.l-service__single__section__copy {

}

.l-service__single__section__overview__list {

}

.l-service__single__section__overview__list-item {

}

.l-service__single__section__overview__list-item__num {

}

.l-service__single__section__overview__list-item__head {

}

.c-text__basic {

}





/* Common
========================================================================== */

/* -----

	Button

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

.c-btn__link {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white);
	background: var(--key_color);
	padding: 0 15px;
	border-radius: 10px;
}

.c-btn__link__ja {
	font-size: 1.2rem;
	font-weight: 700;
}

.c-btn__link__en {
	font-family: var(--en);
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* -----

	Movie [ YouTube ]

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

.c-youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
}

.c-youtube__video {
	width: 100%;
	height: 100%;
}

/* -----

	Movie [ YouTube ]

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

.c-scroll-bar {
	/* IE・Microsoft Edge /
	-ms-overflow-style: none;
	/* Firefox */
	scrollbar-width: none;
}

/* Google Chrome・Safari */
.c-scroll-bar::-webkit-scrollbar{
	display: none;
}
	

/* Footer
========================================================================== */

.l-footer {
	padding: 19.05vw 0 4.76vw;
}

.l-footer__content {

}

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

.l-footer__logo svg {
	height: 40px;
	fill: var(--red);
}

.l-footer__company {
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.75;
	letter-spacing: .15rem;
	margin-top: 14.29vw;
}

.l-footer__company__name {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 20px;
}

.l-footer__company__info {
	margin-bottom: 20px;
}

.l-footer__sns {
	margin-top: 14.29vw;
}

.l-footer__sns__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.l-footer__sns__list-item a {
	display: block;
}

.l-footer__sns__list-item a svg {
	fill: var(--text_color);
	height: 20px;
}

.l-footer__navigation {

}

.l-footer-navigation {

}

.l-footer-navigation__list {

}

.l-footer-navigation__list-item {

}

.l-sub-navigation {
	margin-top: 14.29vw;
}

.l-sub-navigation__list {
	text-align: center;
}

.l-sub-navigation__list-item {
	display: flex;
	justify-content: center;
}

.l-sub-navigation__list-item a {
	color: var(--text_color);
	font-size: 1rem;
	letter-spacing: .15rem;
}

.l-footer__sdgs {
	margin-top: 14.29vw;
}

.l-footer__sdgs__image {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.l-footer__sdgs__image__head img {
	height: 50px;
}

.l-footer__sdgs__image__list {
	display: flex;
	align-items: center;
	gap: 5px;
}

.l-footer__sdgs__image__list img {
	height: 50px;
}

.l-footer__sdgs__text {
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .15rem;
	margin-top: 10px;
}


.l-footer__bottom__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row-reverse;
	padding: 0 8.33vw;
	margin-top: 19.05vw;
}

.c-page-top {

}

.c-page-top a {
	display: block;
}

.c-page-top a svg {
	fill: var(--red);
	height: 35px;
}

.l-footer__copy {

}

.l-footer__copy__text {

}

.l-footer__copy {}

.l-footer__copy__text {
	font-family: var(--en);
	font-size: 1rem;
	letter-spacing: .05rem;
}

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

	.l-footer {
		padding: 10vw 0;
	}
	
	.l-footer__content {
		padding: 0 11.43vw;
	}

	.l-footer__content__row {
		display: flex;
		margin-bottom: 2.86vw;
	}
	
	.l-footer__content__row__colum {
		width: 50%;
	}
	
	.l-footer__logo {
		text-align: left;
	}
	
	.l-footer__logo svg {
		height: 50px;
	}
	
	.l-footer__company {
		font-size: 1.2rem;
		text-align: left;
		margin-top: 5.71vw;
	}
	
	.l-footer__company__name {
		font-size: 1.4rem;
		font-weight: 500;
		margin-bottom: 10px;
	}
	
	.l-footer__company__colum {
		display: flex;
		justify-content: space-between;
		gap: 60px;
	}

	.l-footer__company__info {
		width: 50%;
		margin-bottom: 0;
	}
	
	.l-footer__company__contact {
		width: 50%;
	}
	
	.l-footer__sns {
		margin-top: 40px;
	}
	
	.l-footer__sns__list {
		justify-content: flex-start;
	}
	
	.l-footer__sns__list-item a {
		display: block;
	}
	
	.l-footer__sns__list-item a svg {
		fill: var(--text_color);
		height: 20px;
	}
	
	.l-footer__navigation {
	
	}
	
	.l-footer-navigation {
	
	}
	
	.l-footer-navigation__list {
	
	}
	
	.l-footer-navigation__list-item {
	
	}

	.l-footer__middle__row {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	
	.l-sub-navigation {
		margin-top: 0;
	}
	
	.l-sub-navigation__list {
		text-align: left;
	}
	
	.l-sub-navigation__list-item {
		display: flex;
		justify-content: flex-start;
	}
	
	.l-footer__sdgs {
		margin-top: 0;
	}
	
	.l-footer__sdgs__image {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 10px;
	}
	
	.l-footer__sdgs__image__head img {
		height: 50px;
	}
		
	.l-footer__sdgs__text {
		text-align: right;
	}
	
	.l-footer__bottom__row {
		padding: 0;
		margin-top: 5.71vw;
	}
		
}

/* Page
========================================================================== */

.l-page {
}

.l-page__head {
    position: relative;
	text-align: center;
    padding: 28.57vw 8.33vw 19.05vw;
}

.l-page__head__en {
	color: var(--key_color);
	font-family: var(--en-secondary);
	font-size: 3.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .15rem;
}

.l-page__head__ja {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .25rem;
	margin-top: 5px;
}

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

	.l-page {
	}
	
	.l-page__head {
		padding: 12.86vw 0 8.57vw;
	}
	
	.l-page__head__en {
		font-size: 6.2rem;
	}
	
	.l-page__head__ja {
		font-size: 1.4rem;
		margin-top: 5px;
	}
	
}

/* Internship Archive
========================================================================== */

.l-internship__archive__list {
	padding: 0 14.29vw 19.05vw;
}

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

.l-internship__archive__list-item__logo {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: var(--white);
    overflow: hidden;
	border-radius: 20px;
}

.l-internship__archive__list-item__logo img {
}

.l-internship__archive__list-item__logo svg {
	position: absolute;
    right: 20px;
    bottom: 20px;
	fill: var(--text_color);
    height: 15px;
}

.l-internship__archive__list-item__head {
	color: var(--text_color);
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: .15rem;
	margin-top: 10px;
}

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

	.l-internship__archive__list {
		display: flex;
		flex-wrap: wrap;
		--tmp-gap--x: 4.29rem;
		--tmp-gap--y: 4.29rem;
		-moz-column-gap: var(--tmp-gap--x);
		column-gap: var(--tmp-gap--x);
		row-gap: var(--tmp-gap--y);
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 11.43vw 10vw;
	}
	
	.l-internship__archive__list-item {
		flex-basis: calc((100% - var(--tmp-gap--x) * 2) / 3);
	}
	
	.l-internship__archive__list-item:not(:last-child) {
		margin-bottom: 0;
	}
		
	.l-internship__archive__list-item__logo img {}
		
	.l-internship__archive__list-item__head {
		margin-top: 15px;
	}
	
}