@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  vertical-align: baseline;
  color: #2b2b2b;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;	
  scroll-behavior: smooth
}

body {
  font-size: 1.6rem
}

img {
  max-width: 100%;
  vertical-align: bottom
}

ul, li {
  list-style: none
}

fieldset {
  border: none
}

select, label {
  cursor: pointer
}

address {
  font-style: normal
}

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

em {
  font-weight: bold;
  font-style: normal
}

input {
  min-width: 0
}

::placeholder {
  color: #999
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none
}

header, nav, main, footer,div {box-sizing: border-box;}

a {text-decoration: none; color:#2b2b2b;}
a:hover {color:#0068b6;}

/* align */
.aC{text-align: center}
.aL{text-align: left}
.aR{text-align: right}

/* txt */
p {
	font-size:max(1.3rem, min(3vw,1.6rem) );
	font-size:clamp(1.3rem, 3vw, 1.6rem);
}

/* color */
.blue {color: #0068b6}/* primary */
.sky_blue {color: #00a3e9}/* secondary */
.white {color:#fff}
.black {color:#2b2b2b}
.orange {color:#ff6633}/* */

.bg {background: #e7f6fd;}

/* margin */
.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb80 {margin-bottom: 80px;}
.mb100 {margin-bottom: 100px;}

/* text */
.t32 {font-size:3.2rem}
.t30 {font-size:3.0rem}
.t28 {font-size:2.8rem}
.t24 {font-size: 2.4rem}
.t20 {font-size: 2.0rem}
.t18 {font-size: 1.8rem}
.t16 {font-size: 1.4rem}

@media screen and (max-width:667px){
.t32 {font-size:2.8rem}
.t30 {font-size:2.6rem}	
.t28 {font-size:2.4rem}
.t24 {font-size: 2.0rem}
.t20 {font-size: 1.6rem}
.t18 {font-size: 1.4rem}	
}

/* title */
.tit__kei {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.0rem;
	line-height: 1.2;
}
.tit__kei:before, .tit__kei:after {
  	border-top: 1px solid;
  	content: "";
  	width: 2em; /* 線の長さ */
}
.tit__kei:before {
  	margin-right: 1em; /* 文字の右隣 */
}
.tit__kei:after {
  	margin-left: 1em; /* 文字の左隣 */
}

.tit__lage {
	font-size: 5rem;
	line-height: 1.2
}
.tit__mid {
	font-size: 3rem;
	line-height: 1.2
}
@media screen and (max-width:999px){
	.tit__mid {font-size: 3.0vw}
	.tit__lage {font-size: 5vw }
}


@media screen and (max-width:667px){
	.tit__mid {font-size: 5.6vw}	
	.tit__lage {font-size: 10vw}
	
	.tit__kei { font-size: 6.5vw}
	.tit__kei:before, .tit__kei:after {
  		border-top: 1px solid;
  		content: "";
  		width: 1.5em; /* 線の長さ */
		}
	.tit__kei:before {
  		margin-right: 0.5em; /* 文字の右隣 */
		}
	.tit__kei:after {
  		margin-left: 0.5em; /* 文字の左隣 */
		}
}

/* button */
.btn {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	border-radius: 16px; 
	position: relative;
	padding: 0.5em 1em;
	border:2px solid #ccc;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 2.8rem;
	line-height: 1.5;
	transition: 0.2s all;
	text-align: center;
}
.btn::after{
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.online {
	background: #00a3e9;
	border:2px solid #00a3e9;
	color: #fff;
}
.online:hover{
	color:#00a3e9;
	background: #fff;
}
.free {
	background: #ff6633;
	border:2px solid #ff6633;
	color: #fff;	
}
.free:hover {
	color:#ff6633;
	background: #fff;	
}
.normal {
	background: #fff;
	color:#00a3e9;
	border:2px solid #00a3e9;
}
.normal:hover{
	background: #00a3e9;
	color:#fff;
}

@media screen and (max-width:667px){
	.btn {border-radius: 10px; }
}



/* layout */
body {display: flex; flex-flow: column;	min-height: 100vh; overflow: hidden;}
main {flex: 1; padding-top:80px;}

.inner {width:1100px; margin-left: auto; margin-right: auto}
.pc {display: block}
.sp {display: none}


@media screen and (max-width:1099px){
	.inner {width:100%; padding-left: 20px; padding-right: 20px;}
}
@media screen and (max-width:667px){
	.inner {width:100%; padding-left: 15px; padding-right: 15px;}	
	.pc {display: none}
	.sp {display: block}	
}

header {
	position: fixed;
	z-index: 1001; 	
	width:100%; 
	background:#fff; 
	padding: 13px 15px;
	height: 80px;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3)
}

/* ---------------------------------------------------- header 
*/

.head__inner {
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.head__logo {
	display: flex;
	flex-flow: row;
	align-items: center;
}
.head__logo h1 {margin-right: 0.8em;}
.head__logo h1 img { display: block;}
.head__logo p {font-size:  1.4rem}

/* nav */
.head__nav {display: flex; flex-flow: row; }
.head__nav li:first-child {margin-right: 2em;}
.head__nav li a:hover {color:#00a3e9;}

.head__nav li span { position: relative;}
.head__nav li span.company {
	display: block;
	padding-left: 26px;
}
.head__nav li span.company {
	background: url("../img_2023/icon_company.svg") no-repeat;
	background-position: left center;
}
.head__nav li span.contact {
	display: block;
	padding-left: 28px;
}
.head__nav li span.contact {
	background: url("../img_2023/icon_mail.svg") no-repeat;
	background-position: left center;
}

@media screen and (max-width:667px){
	body {font-size: 1.5rem}
	
	header {height: 60px; padding: 10px 15px;}
	main {padding-top: 60px;}
	header nav {display: none;}	
	
  .head__logo {
	width:80vw
  }
  .head__logo h1 {width:120px; height: auto; line-height: 1; margin-right: 0.5em}
  .head__logo p {width: calc(80vw - 100px); font-size:  1rem; }
	
  .head__nav {display: flex; flex-flow: column; align-items: center;}
  .head__nav li:first-child {margin-right: 0em;}
  .head__nav li {border-bottom:1px solid #ccc; padding: 10px 0; width: 90% }	
	
	
  header nav {
	position: fixed;
    right: 0px;
    width: 100%;
	height: 100vh;
    background: #f7f7f7;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
    top: 60px;
	z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header nav.active {
    opacity: 1;
  }
  header nav.block {
    display: block;
  }		

  header #menu-button {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 45px;
    height: 35px;
	display: block;
  }
  header #menu-button > div {
    width: 25px;
    height: 1px;
    background: #0068b6;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header #menu-button > div:nth-child(1) {
    top: 25%;
    left: 6px;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  header #menu-button > div:nth-child(2) {
    top: 50%;
    left: 6px;
  }
  header #menu-button > div:nth-child(3) {
    top: 75%;
    left: 6px;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  header #menu-button.active > div:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-5%, -50%) rotate(45deg);
    -moz-transform: translate(-5%, -50%) rotate(45deg);
    -ms-transform: translate(-5%, -50%) rotate(45deg);
    -o-transform: translate(-5%, -50%) rotate(45deg);
    transform: translate(-5%, -50%) rotate(45deg);
  }
  header #menu-button.active > div:nth-child(2) {
    opacity: 0;
  }
  header #menu-button.active > div:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-5%, -50%) rotate(-45deg);
    -moz-transform: translate(-5%, -50%) rotate(-45deg);
    -ms-transform: translate(-5%, -50%) rotate(-45deg);
    -o-transform: translate(-5%, -50%) rotate(-45deg);
    transform: translate(-5%, -50%) rotate(-45deg);
  }	
	
}

/* ---------------------------------------------------- MV VSR
*/

.vsr__wrap {
	background: 
	url("../img/dx360_bg3.png")  center bottom,
	url("../img/dx360_bg4.png")  center bottom,		
	url("../img/dx360_bg2.jpg") no-repeat center bottom;
	background-color: #007fe4;
	background-size: auto 100%;
	padding: 60px 0 ;
}
.vsrmanager__wrap {
	background: 
	url("../img/dx360_bg3.png")  center bottom,
	url("../img/dx360_bg5.png")  center bottom,		
	url("../img/dx360_bg2.jpg") no-repeat center bottom;
	background-color: #007fe4;
	background-size: auto 100%;
	padding: 60px 0;
}
.feature__list {
	display: flex;
	flex-flow: row;
}
.feature__list li {margin-right: 20px}
.feature__list li:last-child {margin-right: 0;}

.tit__wrap.dx__360 {
	display: flex;
	flex-flow: row;
	align-items: center;
	margin-bottom: 40px
}
@media screen and (max-width:667px){
	.vsr__wrap {
	background: 
	url("../img/dx360_bg3.png") no-repeat center bottom ,
	url("../img/dx360_bg4.png") no-repeat center bottom,		
	url("../img/dx360_bg2.jpg") no-repeat center bottom ;
	background-color: #007fe4;
	background-size: auto 60%, auto 100%, auto 100%;
	height: auto;
	padding: 30px 15px;
	}
	.vsrmanager__wrap {
	background: 
	url("../img/dx360_bg3.png") no-repeat center bottom ,
	url("../img/dx360_bg5.png") no-repeat center bottom,		
	url("../img/dx360_bg2.jpg") no-repeat center bottom ;
	background-color: #007fe4;
	background-size: auto 60%, auto 100%, auto 100%;
	height: auto;
	padding: 30px 15px;
	}		
	.tit__wrap.dx__360 {flex-flow: column;}
	.dx__360__img img {padding-left: 40px}
	.feature__list li {margin-right: 12px}
}

/* ------------------------------------------------------- VSR NOW
*/

.vsrnow_hp_atte {
	position: relative;
}
.vsrnow_hp_atte::after {
	position: absolute;
	content: "";
	background: url(../img/vsrnow_hp_attention1.png) no-repeat;
	background-size: cover;
	width:168px;
	height: 98px;
	top:0px;
	right: calc(-11% - 21px);/*-44px*/
}

.vsrnow__hp__mat {
	width:100%;
	padding: 40px 25px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	margin-bottom: 60px
}

.vsrnow__hp__box {
	width:28%;
}
.hp__caution{
	line-height: 1.3;
	font-size: 1.4rem
}
.vsrnow__hp__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
}
.vsrnow__hp__arrow img {
	margin-bottom: 60px;
}

@media screen and (max-width:999px){
	.vsrnow_hp_atte {margin-top: 20px}	
	.vsrnow_hp_atte::after {
	position: absolute;
	content: "";
	background: url(../img/vsrnow_hp_attention1.png) no-repeat;
	background-size: cover;
	width:128px;
	height: 75px;
	top:-54px;
	right: 0px;
	}	
}

@media screen and (max-width:667px){
	.vsrnow_hp_atte {margin-top: 40px}	
	
	.vsrnow__hp__mat {
		width:100%;
		padding: 20px 10px;
		border-radius: 16px;
		background: #fff;
		box-shadow: 0px 0px 5px rgba(205,236,249,1);
		display: flex;
		flex-flow: column;
		margin-bottom: 60px
	}
	.vsrnow__hp__box {
		width:100%;
	}
	.vsrnow__hp__arrow {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.vsrnow__hp__arrow img {
		margin-bottom: 0px;
		transform: rotateZ(90deg); padding: 10px 0;
	}	
	.hp__caution{text-align: center;}
}



.vsrnow__sns__wrap {
	background: url("../img/vsrnow_sns_bg.png") center no-repeat;
	background-size: 104% auto;
}
.vsrnow__sns__box {
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px
}
.vsrnow__sns__txt {
	position: relative;
}
.vsrnow__sns__txt::before{
	position: absolute;
	top:5%;
	left: -190px;
	content: "";
	width: 170px;
	height: 83px;
	background: url("../img/vsrnow_sns_attention.png") no-repeat;
	background-size: cover;
}
.vsrnow__sns__img {
	width: 35%;
	text-align: right
}

@media screen and (max-width:999px){
.vsrnow__sns__txt::before{
	position: absolute;
	top:-60px;
	left: calc(100% - 170px);
	content: "";
	width: 170px;
	height: 83px;
	background: url("../img/vsrnow_sns_attention.png") no-repeat;
	background-size: cover;
	}	
}

@media screen and (max-width:667px){
	
	.vsrnow__sns__wrap {
		background: url("../img/vsrnow_sns_bg.png")  center top 70% no-repeat;
		background-size: 100% auto;
	}	
	.vsrnow__sns__box {
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 60px
	}	
	
	.vsrnow__sns__txt {
		margin-bottom: 20px;
	}
	.vsrnow__sns__txt::before{
		position: absolute;
		top:0;
		left:0;
		content: "";
		width: 0px;
		height: 0px;

	}	
	.vsrnow__sns__img {
		width: 100%;
		text-align: center
	}	
	
}

.kei {
	border:none;
	border-bottom: 1px dotted #0068b6;
	margin: 4em 0;
}

.tit__wrap {
	display: flex;
	flex-flow: row;
	align-items:flex-end;
	justify-content: space-between
}
.tit__box {width:50%;}
.tit__attention {
	width:50%;
	text-align: center;
	padding-bottom: 1.5em
}
@media screen and (max-width:1099px){
	.dx__360__img {
		width:48%;
	}
}
@media screen and (max-width:667px){
	.tit__wrap {
	display: flex;
	flex-flow: column;
	}
	.tit__box {width:100%; display: flex; justify-content: center; margin-bottom: 20px}
	.tit__attention {
	width:100%;
	text-align: center;
	padding-bottom: 1.0em
	}
	.tit__attention img {width:60%;}
		.dx__360__img {
		width:100%;
	}
	.dx__360__img img {padding-left: 20px}
}

.vsrnow__mat {
	width:100%;
	padding: 40px 10px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	display: flex;
	flex-flow: row;
	justify-content: center;
	margin-bottom: 60px
}
.vsrnow__fig {
	width:48%;
	text-align: center;
}
.vsrnow__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:667px){
	.vsrnow__mat {padding: 20px 10px; flex-flow: column; margin-bottom: 40px;}
	.vsrnow__fig {width:100%;}
	.vsrnow__arrow img {width:26px; transform: rotateZ(90deg); padding: 10px 0;}
}

.vsrnow__wrap {
	background: url("../img/vsr_bg.png") center top ;
	background-size: auto 25%;
	background-color: #e7f6fd;
	padding: 80px 0;
}
.normal__btn__wrap {
	width:50%;
	margin-left: auto;
	margin-right: auto;
}

.portal__wrap {
	display: flex;
	flex-flow: row wrap;
}
.portal__box {
	width:32%;
	padding: 20px 10px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	margin-right: 1%;
	margin-bottom: 10px;
}
.portal__box h3 {
	border-bottom:1px solid #ccc;
	margin-bottom: 0.5em;
	line-height: 1.5;
}
.portal__box:nth-child(3n){
	margin-right: 0;
}

.portal__txt {display: flex; flex-flow: row; justify-content: center}
.portal__txt p{
	font-size: 2.4rem;
	line-height: 1.5;
}

.kei__sen {
background: linear-gradient(transparent 30%, #fff000 30%);
  background-size: 100% 30%;
  background-repeat: no-repeat;
  background-position:left 0px bottom 3px;}


@media screen and (max-width:1099px){
		.normal__btn__wrap {
		width:80%;
	}
}
@media screen and (max-width:667px){

	.vsrnow__wrap {
			background: url("../img/vsr_bg.png") center top repeat-x;
	background-size: auto 18%;
		background-color: #e7f6fd;
		padding: 40px 5px;
	}	
	.portal__box {
		width:49%;
	}
	.portal__box:nth-child(2n){
		margin-right: 0;}
	.portal__box:nth-child(3n){
		margin-right: 1%;
	}	
	.normal__btn__wrap {
		width:90%;
	}
	.normal__btn__wrap a{font-size:4.5vw}
}

/* ------------------------------------------------------- button area
*/
.btn__wrap {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	padding: 80px 0;
}
.btn__wrap a {width:45.45%;}

.free__31__ic::before {
	position: absolute;
	content: "";
	background: url("../img/free_31_ic.png") no-repeat;
	background-size: cover;
	width:192px;
	height: 32px;
	top: -38px;
  	left: 50%;
	transform: translateX(-50%);
	color:#333;
}

@media screen and (max-width:667px){
	.btn__wrap {
	display: flex;
	flex-flow: column-reverse;
	padding: 60px 0 0px;
	}	
	.btn__wrap a {width:100%; font-size: 5vw; margin-bottom: 20px}
	.free__31__ic::before {
	position: absolute;
	content: "";
	background: url("../img/free_31_ic.png") no-repeat;
	background-size: cover;
	width:170px;
	height: 28px;
	top: -38px;
  	left: 50%;
	transform: translateX(-50%);
	color:#333;
	}
}

/* ------------------------------------------------------- busflow
*/
.busflow__wrap {
	background: #fff;
	padding: 40px 0 20px;
}
.dan {text-indent: -1em; padding-left: 1em;}

.busflow__inner {
	width:1100px; margin-left: auto; margin-right: auto
}
.busflow__inner dl {display: flex; justify-content: space-between; flex-flow: row;}
.busflow__inner dl dt {width:36%; flex: 1}
.busflow__inner dl dd {width:70%}

.busf__arrow {text-align: center;}
.busf__arrow img {transform: rotateZ(90deg);}

.busflow__pd00-20 {padding: 0px 0 20px;}
.busflow__pd40-20 {padding: 40px 0 20px;}
.flow__2 {
	background: #e7f6fd;
}

.triangle,.triangle__2 {
  position: relative;
}

.triangle:before {
  content: "";
  position: absolute;
  top: 0;
  box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 50px solid #fff;
	left:0	
}
.triangle__2:before {
  content: "";
  position: absolute;
  top: 0;
  box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 50px solid #e7f6fd;
	left:0	
}

@media screen and (max-width:1099px){
	.busflow__inner {width:90%;}
}
@media screen and (max-width:667px){	
	.busflow__inner dl {display: flex; justify-content: space-between; flex-flow: column;}
	.busflow__inner dl dt {width:100%; text-align: center;}
	.busflow__inner dl dt img {width:50vw}
	.busflow__inner dl dd {width:100%}
	
	.busflow__tit,.busflow__step {text-align: center;}
}

/* ------------------------------------------------------- useflow
*/

.useflow__wrap {
	background: #fff;
	padding: 40px 0 20px;
}
.useflow__inner {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
}
.useflow__box {
	width:30%;
	text-align: center;
	padding: 10px;
	border-radius: 16px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3)
}
.usef__arrow {
	display: flex;
	align-items: center;
}

.usef__list {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.usef__list li {
	width:44%;
	padding: 0.7em;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	border:1px solid #ccc;
}
.usef__list li img {margin-right: 0.7em;}



@media screen and (max-width:899px){
	.usef__list {
		width:100%;
	}
	.usef__list li {
		width: 48%;
	}
}

@media screen and (max-width:667px){
	
	.useflow__inner {
		display: flex;
		flex-flow: column;
	}
	.useflow__box {
		width: 100%;
	}
	.usef__arrow {justify-content: center; padding: 10px}
	.usef__arrow img {transform: rotateZ(90deg);}
}

/* ------------------------------------------------------- Price
*/
.price__wrap {
	background: #e7f6fd;
	padding: 40px 0 100px;
}
.price__box {
	background: #fff;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	width: 900px; 
	margin-left: auto; 
	margin-right: auto; 
	position: relative; 
	padding-bottom: 60px
}
.price__box::after {
	position: absolute; 
	top:101%; 
	right: 0; 
	content: "（税別）"; 
	font-size: 1.3rem;}
.price__box h3 {
	background: #0068b6; 
	padding:7px 15px; 
	color: #fff; 
	text-align: center;}

.price__list {
	width:77%; 
	margin-left: auto; 
	margin-right: auto; 
	border-bottom:1px solid #ccc; 
	display: flex; 
	justify-content: space-between;
	align-items: center
}
.price__list dt,.price__list dd {
	padding: 12px 5px 10px;
}
.price__list dt {
	color:#0068b6; 
	font-size: 1.8rem; 
	font-weight: bold;
}
.price__list dd {
	font-size: 2.4rem; 
	font-weight: bold;
}
.price__list dd small {font-size:1.4rem}
.price__list dd del {color:#999; font-size: 2rem;}

.tit__pay {
	color:#0068b6;
	width: 77%;
	margin-left: auto; margin-right: auto;
	padding: 2em 0 0 0;
}
.tit__pay span {background: #d9e8f4; padding: 0.2em 1em;}

.campaign__ic {padding-top: 50px !important;}
.campaign__ic span {position: relative;}
.campaign__ic span::before {
	position: absolute;
	content: "";
	background: url("../img/campaign_ic.png") no-repeat;
	background-size: cover;
	width:160px;
	height: 46px;
	top:-46px;
	left:-40px;
}

@media screen and (max-width:899px){
	.price__box {
		width:100%;
		padding-bottom: 30px;
	}
	.price__list,.tit__pay {
		width:94%;
	}

}
@media screen and (max-width:667px){
	.campaign__ic {padding-top: 40px !important;}
	.campaign__ic span::before {
	position: absolute;
	content: "";
	background: url("../img/campaign_ic.png") no-repeat;
	background-size: cover;
	width:100px;
	height: 29px;
	top:-32px;
	left:-30px;
	}
	.price__list dt {font-size:4vw;}
	.price__list dd {font-size: 4.5vw;}
	.price__list dd small {font-size:3vw}
	.price__list dd del {font-size: 3.8vw;}	
}

/* ------------------------------------------------------- faq 
*/
.faq__wrap {width:100%; 
	background: 
	url("../img/faq_bg.png") no-repeat top -100px left -50px,
	url("../img/faq_bg.png") no-repeat bottom -100px right -50px;
	background-size:569px , 380px; /*背景画像のサイズ指定*/
	background-color:#0068b6;
	padding: 40px 0;}
.faq__box{ padding-bottom: 20px}

.faq__que {
  background: #fff;
  color: #0068b6;
  padding: 10px 2.5em;
  position: relative;
	overflow: hidden;
  cursor: pointer
}
.faq__que::before {
	position: absolute;
    content: 'Q';
    top:0px;
	left:10px;
	font-weight: bold;
	font-size: 1.8em;
}

.faq__que::after {
  font-family: "Font Awesome 5 Free";
  content: '\f078';
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.faq__ans {
  padding: 10px 10px 10px 2.5em;
  position: relative;	
}
.faq__ans::before {
	position: absolute;
    content: 'A';
    top:0px;
	left:10px;
	font-weight: bold;
	color: #00a3e9;
	font-size: 1.8em;	
}

[open] .faq__que::after {
  content: '\f077';
}

details[open] .faq__ans {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width:667px){
	.faq__wrap {
		width:100%; 
		background: 
		url("../img/faq_bg.png") no-repeat top -100px left -145px,
		url("../img/faq_bg.png") no-repeat bottom -80px right -100px;
		background-size:284px , 190px; /*背景画像のサイズ指定*/
		background-color:#0068b6;
		padding: 40px 0;
	}
}

/* -------------------------- footer 

footer {
	border-top: solid 1px #E6E6E6;
}
.footer__inner {
	padding: 20px 15px;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: flex-end
}
.footer__logo {
	display: flex;
	flex-flow: row;
	align-items: flex-end
}
.footer__logo h1 {margin-right: 2em; margin-bottom: 0.2em; margin-left: 1em}
.footer__logo p {font-size: 1.4rem; line-height: 1.5;}

.footer__nav {display: flex; flex-flow: row; }
.footer__nav li:first-child {margin-right: 2em;}
.footer__nav li a:hover {color:#00a3e9;}

.footer__copy { font-size: 1.2rem; padding-right: 15px; text-align: right;}

@media screen and (max-width:667px){
	
	.footer__inner {
		display: flex;
		flex-flow: column-reverse;
		align-items:stretch;
	}
	.footer__logo {
		flex-flow: column;
		align-items:center;
	}
	.footer__logo h1 {margin-right: 0em; margin-bottom: 0.5em; margin-left: 0em; width: 20vw}
	.footer__logo p {font-size: 1.3rem; line-height: 1.7; text-align: center}
	.footer__nav {display: block; margin-bottom: 40px; }
	.footer__nav li {border-bottom: 1px solid #ccc; text-align: center; padding: 10px 0;}
	.footer__nav li:first-child {margin-right: 0;}
	
	.footer__copy { padding-right: 0px;text-align: center;}
}
*/ /* 2023-08-02 del*/

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


/* ------------------------------------------------------- 共通
*/
.pc_show { display: block;}
.sp_show { display: none;}

.banner_area .online::before {
	content: "";
	width: 369px;
	height: 27px;
	background: url("../img/banner_text_01.svg") no-repeat;
	background-size: cover;
	position: absolute;
	top: -38px;
  	left: 50%;
	transform: translateX(-50%);
}
.banner_area .free__31__ic::before {
	content: "";
	width: 426px;
	height: 27px;
	background: url("../img/banner_text_02.svg") no-repeat;
	background-size: cover;
	position: absolute;
	top: -38px;
  	left: 50%;
	transform: translateX(-50%);
}
.banner_middle_area .btn__wrap {
	padding: 100px 0 60px;
}
.banner_footer_area {
	margin: 40px 0;
}

@media screen and ( max-width: 768px ) {
    .pc_show { display: none;}
    .sp_show { display: block;}

	.banner_area .online::before {
		width: 300px;
		height: 22px;
		position: absolute;
		top: -30px;
		left: 50%;
	}
	.banner_area .free__31__ic {
		margin-bottom: 50px;
	}
	.banner_area .free__31__ic::before {
		width: 348px;
		height: 22px;
		position: absolute;
		top: -30px;
		left: 50%;
	}
	.banner_middle_area .btn__wrap {
		padding: 70px 0 30px;
	}
	.banner_footer_area {
		margin: 20px 0 40px;
	}
}


/* ------------------------------------------------------- ページヘッダー
*/

.header_logo_wrap {
	display: flex;
	align-items: center;
	background-color: #000;
	padding: 10px 20px;
}
.header_logo {
	margin-right: 10px;
}
.header_logo_text {
	color: white;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.page_head {
	width: 100%;
	background:
	url("../img/dx360_bg5.png")  no-repeat 0px -120px,		
	url("../img/dx360_bg2.jpg") no-repeat 0px 0px;
	background-color: #007fe4;
	background-size: cover;
}
.page_head .inner {
	display: flex;
	align-items: center;
	height: 200px;
}
.page_head h2 {
	color: #FFF;
	font-size: 32px;
	font-weight: bold;
}
.page_head.vsr_now span {
	display: block;
	margin: 0  0 10px;
	font-size: 20px;
}
.page_head.vsr_now img {
	width: 449px;
	height: auto;
}
@media screen and (max-width:667px){
	.page_head {
		background:
		url("../img/dx360_bg5.png")  no-repeat 0px 0px,
		url("../img/dx360_bg2.jpg") no-repeat 0px 0px;
		background-color: #007fe4;
		background-size: cover;
	}
	.page_head .inner {
		height: 120px;
	}
	.page_head h2 {
		font-size: 22px;
	}
	.page_head.vsr_now span {
		margin: 0  0 8px;
		font-size: 12px;
	}
	.page_head.vsr_now img {
		width: 240px;
	}
}

.page_head2 {
	width: 100%;
	background-color: #fdd001;
	background-size: cover;
}
.page_head2 .inner {
	display: flex;
	align-items: center;
	height: 200px;
}
.page_head2 h2 {
	color: #000;
	font-size: 32px;
	font-weight: bold;
}
.page_head2.vsr_now span {
	display: block;
	margin: 0  0 10px;
	font-size: 20px;
}
.page_head2.vsr_now img {
	width: 449px;
	height: auto;
}
@media screen and (max-width:667px){
	.page_head2 {
		background-color: #fdd001;
		background-size: cover;
	}
	.page_head2 .inner {
		height: 120px;
	}
	.page_head2 h2 {
		font-size: 22px;
	}
	.page_head2.vsr_now span {
		margin: 0  0 8px;
		font-size: 12px;
	}
	.page_head2.vsr_now img {
		width: 240px;
	}
}

/* ------------------------------------------------------- DX360 VSR
*/
.vsr_lead_text {
	margin: 60px 0;
	padding: 0 20px;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}
.vsr_lead_image {
    max-width: 1140px;
	margin: 0 auto 60px;
	padding: 0 20px;
}
.vsr_list_wrap {
	background: #e7f6fd;
}
.vsr_list_wrap .title {
	margin: 100px 0 0;
	font-size: 32px;
	font-weight: bold;
}
.vsr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    max-width: 1100px;
	margin: 60px auto 0;
	padding: 0 20px;
}
.vsr_list .box {
    width: calc( 50% - 30px );
	margin: 0 0 50px;
}
.vsr_list .box .label {
	width: 200px;
	margin: 0 auto 16px;
	border: solid 1px #0068B6;
	border-radius: 4px;
}
.vsr_list .box .label span {
	display: block;
	padding: 12px 0;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	border: solid 2px #FFF;
	border-radius: 4px;
	background: #0068B6;
}
.vsr_list .box .image {
	margin: 0 0 20px;
	padding: 10px;
	border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	position: relative;
}
.vsr_list .box .image .fukidashi {
	position: absolute;
	top: -70px;
	right: -20px;
}
.vsr_list .box .text {
	text-align: center;
}
.vsr_list .box .text span {
	color: #FF6633;
	font-weight: bold;
}

@media screen and ( max-width: 768px ) {
	.vsr_lead_text {
		margin: 30px 0 20px;
		padding: 0 10px;
		font-size: 20px;
	}
	.vsr_lead_image {
		max-width: unset;
		margin: 0 auto 40px;
		padding: 0 5px;
	}
	.vsr_list_wrap .title {
		margin: 60px 0 0;
		font-size: 22px;
	}
	.vsr_list {
		display: block;
		max-width: unset;
		margin: 40px auto 0;
		padding: 0 15px 1px;
	}
	.vsr_list .box {
		width: 100%;
		margin: 0 0 40px;
	}
	.vsr_list .box .label {
		width: 180px;
	}
	.vsr_list .box .label span {
		padding: 10px 0;
		font-size: 16px;
	}
	.vsr_list .box .image .fukidashi {
		width: 100px;
		height: auto;
		position: absolute;
		top: -40px;
		right: -10px;
	}
}


/* ------------------------------------------------------- DX360 マネージャー
*/
.mgr_lead_text {
	margin: 60px 0 40px;
	padding: 0 20px;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}
.mgr_lead_image {
    max-width: 900px;
	margin: 0 auto 60px;
	padding: 0 30px;
	position: relative;
}
.mgr_lead_image .fukidashi {
	position: absolute;
	top: -20px;
	right: 10px;
}
.mgr_list_wrap {
	background: #e7f6fd;
}
.mgr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    max-width: 1100px;
	margin: 70px auto 0;
	padding: 0 20px;
}
.mgr_list .box {
    width: calc( 50% - 30px );
	margin: 0 0 50px;
}
.mgr_list .box .label {
	width: 200px;
	margin: 0 auto 16px;
	border: solid 1px #0068B6;
	border-radius: 4px;
}
.mgr_list .box .label span {
	display: block;
	padding: 12px 0;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	border: solid 2px #FFF;
	border-radius: 4px;
	background: #0068B6;
}
.mgr_list .box .image {
	margin: 0 0 20px;
	padding: 10px;
	border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	position: relative;
}
.mgr_list .box .image .fukidashi {
	position: absolute;
	top: -70px;
	right: -20px;
}
.mgr_list .box .text span {
	color: #FF6633;
	font-weight: bold;
}

@media screen and ( max-width: 768px ) {
	.mgr_lead_text {
		margin: 30px 0 20px;
		padding: 0 10px;
		font-size: 20px;
	}
	.mgr_lead_image {
		max-width: unset;
		margin: 0 auto 40px;
		padding: 0 15px;
	}
	.mgr_lead_image .fukidashi {
		width: 100px;
		height: auto;
	}
	.mgr_list {
		display: block;
		max-width: unset;
		margin: 60px auto 0;
		padding: 0 15px 1px;
	}
	.mgr_list .box {
		width: 100%;
		margin: 0 0 40px;
	}
	.mgr_list .box .label {
		width: 180px;
	}
	.mgr_list .box .label span {
		padding: 10px 0;
		font-size: 16px;
	}
	.mgr_list .box .image .fukidashi {
		width: 100px;
		height: auto;
		position: absolute;
		top: -40px;
		right: -10px;
	}
}


/* ------------------------------------------------------- VSR NOW
*/
.vsr_now_wrap {
	background: url(../img/vsr_bg.png) no-repeat;
	background-size: 100% auto;
	background-color: #E7F6FD;
}
.vsr_now_wrap .title_01 {
	padding: 80px 0 60px;
	font-size: 32px;
	font-weight: bold;
}
.vsr_now_wrap .title_02 {
	padding: 50px 0;
	font-size: 32px;
	font-weight: bold;
}
.vsr_now_wrap .feature {
	display: flex;
	justify-content: space-between;
    max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}
.vsr_now_wrap .feature .box_wrap {
    width: 31.8%;
}
.vsr_now_wrap .feature .box {
	padding: 20px;
	border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
}
.vsr_now_wrap .feature .box .image {
	margin: 0 0 20px;
	position: relative;
}
.vsr_now_wrap .feature .box .image .fukidashi {
	position: absolute;
	top: -50px;
	right: -35px;
}
.vsr_now_wrap .feature .small {
	margin: 15px 20px 0;
	font-size: 12px;
}
.vsr_now_wrap .flow_wrap {
    max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px 60px;
}
.vsr_now_wrap .flow_wrap .flow {
	display: flex;
	justify-content: space-between;
	padding: 60px 40px 50px;
	border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
}
.vsr_now_wrap .flow_wrap .box {
	width: 28%;
}
.vsr_now_wrap .flow_wrap .arrow img {
	margin-top: 500%;
}
.vsr_now_wrap .flow_wrap .step span {
	display: inline-block;
	width: 70px;
	height: 25px;
	color: #FFF;
	font-weight: bold;
	line-height: 25px;
	text-align: center;
	border-radius: 3px;
	background: #0068B6;
}
.vsr_now_wrap .flow_wrap .image {
	margin: 10px 0 15px;
	position: relative;
}
.vsr_now_wrap .flow_wrap .image .fukidashi {
	position: absolute;
	top: -50px;
	right: -20px;
}
.vsr_now_wrap .flow_wrap .text {
	text-align: center;
}

.vsr_calendar_wrap {
	background: url(../img/vsr_bg.png) no-repeat;
	background-size: 100% auto;
	background-color: #E7F6FD;
}
.vsr_calendar {
    max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px 60px;
}
.vsr_calendar .head_area {
	padding: 90px 0 40px;
    font-size: 48px;
	font-weight: bold;
	line-height: 1;
}
.vsr_calendar .head_area span {
	display: block;
	margin: 0 0 14px;
    font-size: 18px;
}
.vsr_calendar .detail {
	display: flex;
	align-items: center;
	padding: 40px 80px;
	border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
	position: relative;
}
.vsr_calendar .detail .image {
	width: 320px;
}
.vsr_calendar .detail .text {
	width: calc( 100% - 320px );
	padding-left: 50px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
}
.vsr_calendar .detail .text span {
	display: block;
	margin: 15px 0 0;
	font-size: 18px;
	font-weight: normal;
}
.vsr_calendar .detail .fukidashi {
	position: absolute;
	top: -70px;
	right: 60px;
}
.vsr_calendar .title_flow {
	padding: 80px 0 40px;
	font-size: 32px;
	font-weight: bold;
}
.vsr_calendar .flow_wrap {
	padding: 0 0 40px;
	border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 0px 5px rgba(205,236,249,1);
}
.vsr_calendar .flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 50px 20px 0;
}
.vsr_calendar .flow .box {
	width: 40%;
}
.vsr_calendar .flow .arrow {
	width: 26px;
}
.vsr_calendar .flow .arrow img {
	margin-top: 580%;
}
.vsr_calendar .flow .step span {
	display: inline-block;
	width: 70px;
	height: 25px;
	color: #FFF;
	font-weight: bold;
	line-height: 25px;
	text-align: center;
	border-radius: 3px;
	background: #0068B6;
}
.vsr_calendar .flow .image {
	margin: 10px 0 15px;
	position: relative;
}
.vsr_calendar .flow .image .fukidashi {
	position: absolute;
	top: -50px;
	right: -20px;
}
.vsr_calendar .flow .text {
	text-align: center;
}

.vsr_calendar .for_portal {
	display: flex;
	margin: 60px 20px;
}
.vsr_calendar .for_portal .text {
	width: calc( 100% - 530px );
	padding: 10px 30px 0 0;
}
.vsr_calendar .for_portal .text p {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
}
.vsr_calendar .for_portal .image {
	width: 530px;
}

@media screen and ( max-width: 768px ) {
	.vsr_now_wrap .title_01 {
		padding: 40px 0 30px;
		font-size: 20px;
	}
	.vsr_now_wrap .title_02 {
		padding: 20px 0 30px;
		font-size: 22px;
	}
	.vsr_now_wrap .feature {
		display: block;
		max-width: unset;
		padding: 0 15px;
	}
	.vsr_now_wrap .feature .box_wrap {
		width: 100%;
		margin: 0 0 30px;
	}
	.vsr_now_wrap .feature .box .image .fukidashi {
		width: 100px;
		height: auto;
		position: absolute;
		top: -40px;
		right: -30px;
	}
	.vsr_now_wrap .flow_wrap {
		max-width: unset;
		margin: 0;
		padding: 0 15px 40px;
	}
	.vsr_now_wrap .flow_wrap .flow {
		display: block;
		padding: 30px 15px 30px;
	}
	.vsr_now_wrap .flow_wrap .box {
		width: 100%;
	}
	.vsr_now_wrap .flow_wrap .arrow {
		margin: 20px 0;
		text-align: center;
	}
	.vsr_now_wrap .flow_wrap .arrow img {
		margin-top: 0;
		transform: rotate( 90deg );
	}

	.vsr_calendar {
		max-width: unset;
		margin: 0;
		padding: 0 15px 40px;
	}
	.vsr_calendar .head_area {
		padding: 50px 0 30px;
		font-size: 30px;
	}
	.vsr_calendar .head_area span {
		margin: 0 0 10px;
		font-size: 13px;
	}
	.vsr_calendar .detail {
		display: block;
		padding: 20px;
	}
	.vsr_calendar .detail .image {
		width: 260px;
		margin: 0 auto 20px;
	}
	.vsr_calendar .detail .text {
		width: auto;
		padding-left: 0;
		font-size: 18px;
	}
	.vsr_calendar .detail .text span {
		margin: 12px 0 0;
		font-size: 14px;
	}
	.vsr_calendar .detail .fukidashi {
		width: 100px;
		height: auto;
		position: absolute;
		top: -40px;
		right: -10px;
	}

	.vsr_calendar .title_flow {
		padding: 40px 0 20px;
		font-size: 20px;
	}
	.vsr_calendar .flow_wrap {
		padding: 40px 0 30px;
	}
	.vsr_calendar .flow {
		display: block;
		padding: 0 20px;
	}
	.vsr_calendar .flow .box {
		width: 100%;
	}
	.vsr_calendar .flow .arrow {
		width: 100%;
		margin: 15px 0 30px;
		text-align: center;
	}
	.vsr_calendar .flow .arrow img {
		margin-top: 0;
		transform: rotate( 90deg );
	}
	.vsr_calendar .flow .image .fukidashi {
		width: auto;
		height: 60px;
		position: absolute;
		top: -30px;
		right: -15px;
	}

	.vsr_calendar .for_portal {
		display: block;
		margin: 40px 10px;
	}
	.vsr_calendar .for_portal .text {
		width: 100%;
		padding: 0 0 20px;
	}
	.vsr_calendar .for_portal .text p {
		font-size: 18px;
	}
	.vsr_calendar .for_portal .image {
		width: 100%;
	}
}


/* ------------------------------------------------------- 会社案内
*/
.company #message .title {
	margin: 60px 0 30px;
	color: #0068B6;
	font-size: 28px;
	font-weight: bold;
}
.company #message .text {
	padding: 40px;
	font-size: 28px;
	font-weight: bold;
	border-radius: 10px;
	background: url("../img/company/icon_logo.svg")  no-repeat right bottom;
	background-color: #E7F6FD;
}
.company #message .text span {
	color: #FF6633;
}
.company .contents_box {
    max-width: 1100px;
	margin: 0 auto 80px;
	padding: 0 20px;
}
.company #acces_box.contents_box {
	margin-bottom: 120px;
}
.company .contents_box .box_title {
	margin: 30px 20px;
	color: #0068B6;
	font-size: 28px;
	font-weight: bold;
}
.company .contents_box .data_area dl {
	display: flex;
	padding: 0;
}
.company .contents_box .data_area dl dt,
.company .contents_box .data_area dl dd {
	display: flex;
	align-items: center;
	line-height: 1.6;
	border-width: 1px;
	border-bottom-style: solid;
}
.company .contents_box .data_area dl:first-child dt,
.company .contents_box .data_area dl:first-child dd {
	border-top-style: solid;
}
.company .contents_box .data_area dl dt .inner,
.company .contents_box .data_area dl dd .inner {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}
.company .contents_box .data_area dl dt {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	width: 180px;
	font-weight: bold;
	border-color: #CCC;
}
.company .contents_box .data_area dl dd {
	flex: 1 1 auto;
	border-color: #CCC;
}
.company .contents_box .data_area a {
	color: #0068B6;
	text-decoration: underline;
}
.company .contents_box .data_area a:hover {
	color: #4B9DDA;
	text-decoration: none;
}
.company #acces_box .map_area {
    margin: 0 0 30px;
}
.company #acces_box .map_area iframe {
	display: block;
}
.company #acces_box .data_area dl:first-child dt,
.company #acces_box .data_area dl:first-child dd {
	border-top-style: none;
}
.company #acces_box .data_area dl dt .before_icon {
	display: flex;
	align-items: center;
}
.company #acces_box .data_area dl dt .before_icon::before {
	content: "";
	display: block;
	margin-right: 10px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
}
.company #acces_box .data_area dl dt .before_icon.map_pin::before {
	width: 18px;
	height: 27px;
	background-image: url("../img/company/icon_map_pin.svg");
}
.company #acces_box .data_area dl dt .before_icon.train::before {
	width: 20px;
	height: 26px;
	background-image: url("../img/company/icon_train.svg");
}
.company #acces_box .data_area dl dd .train_access_texts {
	display: flex;
	flex-wrap: wrap;
}
.company #acces_box .data_area dl dd .train_access_texts .text:nth-of-type(2n+1) {
	flex-basis: 42%;
}
.company #acces_box .data_area dl dd .train_access_texts .text .min {
	margin: 0 4px;
	color: #FF6633;
	font-size: 24px;
	font-weight: bold;
}

@media screen and ( max-width: 768px ) {
	.company #message .title {
		margin: 30px 0;
		font-size: 21px;
	}
	.company #message .text {
		padding: 20px 20px 40px;
		font-size: 20px;
		background-size: 140px 94px;
	}
	.company .contents_box {
        max-width: unset;
        margin: 0 auto 40px;
        padding: 0 15px;
	}
    .company #acces_box.contents_box {
        margin-bottom: 60px;
    }
    .company .contents_box .box_title {
        margin: 0 0 20px;
        font-size: 22px;
    }
	.company .contents_box .data_area dl {
		flex-direction: column;
	}
	.company .contents_box .data_area dl dt {
		width: auto;
		margin-right: 0;
		border-bottom-style: none;
		border-top-style: solid;
		font-size: 14px;
	}
	.company .contents_box .data_area dl dt .inner {
		padding: 15px 10px 0;
	}
	.company .contents_box .data_area dl dd {
		border-top-style: none;
		border-bottom-style: none;
	}
	.company .contents_box .data_area dl:first-child dd {
		border-top-style: none;
	}
	.company .contents_box .data_area dl:last-child dd {
		border-bottom-style: solid;
	}
	.company .contents_box .data_area dl dd .inner {
		padding: 3px 10px 15px;
	}
	.company #acces_box .map_area iframe {
		height: 300px;
	}
	.company #acces_box .data_area dl:first-child dt {
		border-top-style: solid;
	}
	.company #acces_box .data_area dl dt .inner {
		padding: 20px 10px 0;
	}
	.company #acces_box .data_area dl dt .before_icon::before {
		margin-right: 8px;
	}
	.company #acces_box .data_area dl dt .before_icon.map_pin::before {
		width: 17px;
		height: 26px;
	}
	.company #acces_box .data_area dl dt .before_icon.train::before {
		width: 18px;
		height: 24px;
	}
	.company #acces_box .data_area dl dd .inner {
		padding: 10px 10px 20px;
	}
	.company #acces_box .data_area dl dd .train_access_texts {
		display: block;
	}
	.company #acces_box .data_area dl dd .train_access_texts .text {
		margin-bottom: 6px;
		line-height: 1.15;
	}
	.company #acces_box .data_area dl dd .train_access_texts .text:last-child {
		margin-bottom: 0;
	}
	.company #acces_box .data_area dl dd .train_access_texts .text::before {
		width: 19.2px;
		height: 27px;
		margin-right: 6px;
	}
	.company #acces_box .data_area dl dd .train_access_texts .text .min {
		font-size: 25px;
	}
}


/* ------------------------------------------------------- セキュリティへの取り組み
*/
.security .lead_area {
    padding: 60px 0;
    font-size: 18px;
    text-align: center;
}
.torikumi_area.bg_blue {
    background: #E7F6FD;
}
.torikumi_area.last {
    margin: 0 0 120px;
}
.torikumi_area .d-flex {
    display: flex;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
    padding: 80px 20px;
}
.torikumi_area .d-flex .icon {
    width: 160px;
}
.torikumi_area .d-flex .text {
    width: calc( 100% - 160px );
    padding: 0 0 0 100px;
	font-size: 18px;
}
.torikumi_area .d-flex .text .title {
    margin: 0 0 30px;
    font-size: 32px;
    font-weight: bold;
}
.torikumi_area .d-flex .text .title span {
    display: block;
    line-height: 1;
    font-size: 18px;
    color: #FF6010;
}

@media screen and ( max-width: 768px ) {
    .security .lead_area {
        padding: 30px 15px;
        font-size: 16px;
    }
    .torikumi_area.last {
        margin: 0 0 60px;
    }
    .torikumi_area .d-flex {
        display: block;
        max-width: unset;
        padding: 40px 20px;
    }
    .torikumi_area .d-flex .icon {
        width: 120px;
        margin: 0 auto 30px;
    }
    .torikumi_area .d-flex .text {
        width: 100%;
        padding: 0;
		font-size: 16px;
    }
    .torikumi_area .d-flex .text .title {
        margin: 0 0 20px;
        font-size: 22px;
    }
    .torikumi_area .d-flex .text .title span {
        font-size: 14px;
    }
}


/* ------------------------------------------------------- セキュリティー・ポリシー
*/
.security_policy {
	max-width: 1100px;
	margin: 60px auto 120px;
	padding: 0 20px;
}
.security_policy ol {
    padding-left: 1.25em;
}
.security_policy ol li {
    list-style: decimal;
	margin: 20px 0;
	padding-left: 6px;
}
.security_policy .name {
	text-align: right;
}

@media screen and ( max-width: 768px ) {
	.security_policy {
		max-width: unset;
		margin: 30px auto 60px;
	}
}


/* ------------------------------------------------------- お問い合わせ
*/
.mail_sended_message {
    max-width: 800px;
    margin: 60px auto;
	padding: 20px 0;
    color: #d10000;
	font-size: 18px;
	text-align: center;
	border-radius: 5px;
	background-color: #ffebeb;
}
.form_header {
	margin: 60px 0 40px;
	font-size: 18px;
	text-align: center;
}
.form_wrap {
    max-width: 1060px;
    margin: 0 auto;
	padding: 0 20px;
}
.form_body .field {
    display: flex;
	margin-bottom: 30px;
}
.form_footer {
	margin: 50px auto 120px;
	text-align: center;
}

@media screen and ( max-width: 768px ) {
	.mail_sended_message {
		max-width: unset;
		margin: 30px 10px;
		padding: 20px 10px;
		font-size: 16px;
	}
	.form_header {
		margin: 30px 0;
		font-size: 16px;
	}
    .form_wrap {
        max-width: unset;
        padding: 10px 20px 40px;
    }
    .form_body .field {
        display: block;
        margin-bottom: 20px;
    }
	.form_footer {
		margin: 30px auto 40px;
	}
}

.basic_form .field .field_head { width: 250px; padding: 12px 0 0; font-weight: bold; position: relative;}
.basic_form .field .field_head .name { display: inline-block; width: 135px; text-align: right; vertical-align: middle;}
.basic_form .field .field_head .require {
	display: inline-block; width: 46px; height: 22px; margin-left: 12px; line-height: 22px;
	color: #FFF; font-size: 14px; text-align: center; border-radius: 3px; background: #0068B6;
}
.basic_form .field[data-validation-state="valid"] .field_head::after {
	content: ""; display: block; width: 26px; height: 26px;
	background-image: url("../img/contact/icon_valid.svg");
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	position: absolute; top: 14px; right: 10px; /*transform: translateY(-50%);*/
}
.basic_form .field .interface { width: calc( 100% - 250px );}
.basic_form .field .interface.text input { width: 100%; margin: 0; padding: 11px 20px; font-size: 18px; background: #EDF5FB;}
input:-webkit-autofill { box-shadow: 0 0 0 1000px #EDF5FB inset;}
.basic_form .field .interface.select select {
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
	width: 100%; margin: 0; padding: 11px 20px;
	border: 1px solid #CCC; border-radius: 5px; font-size: 18px;
	background-image: url("../img/contact/select_arrow.svg");
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
}
.basic_form .field .interface.textarea textarea {
	box-sizing: border-box; width: 100%; min-height: 160px; margin: 0; padding: 11px 20px; resize: vertical;
	font-size: 18px; background: #EDF5FB;
}
.basic_form .field .interface.select select { background-color: #FFF !important; }
/*
.basic_form .field[data-validation-state="valid"] .interface.text input,
.basic_form .field[data-validation-state="valid"]  .interface.select select,
.basic_form .field[data-validation-state="valid"]  .interface.textarea textarea { background-color: #FFF !important; }
*/
.basic_form .field[data-validation-state="error"] .interface.text input,
.basic_form .field[data-validation-state="error"]  .interface.select select,
.basic_form .field[data-validation-state="error"]  .interface.textarea textarea,
.basic_form .field[data-validation-state="error"]  .interface.radio { background-color: #FFE5E0 !important; }
.basic_form .field .error_message { padding-left: 15px; margin-top: 4px; color: #C8321D; font-size: 16px; }
.basic_form .recaptcha_wrapper .g-recaptcha { display: flex; justify-content: center; }
.basic_form .recaptcha_wrapper .error_message { margin-top: 4px; color: #C8321D; font-size: 16px; text-align: center; }
.basic_form .field:not([data-validation-state="error"]) .error_message { display: none; }
.basic_form .form_button {
	width: 440px; height: 80px; padding: 0; line-height: 80px; color: #FFF; font-size: 28px; font-weight: bold;
	border-radius: 16px; background: #00A3E9;
}
.basic_form .form_button:hover { opacity: 0.7; transition: 0.2s all; }
.basic_form .form_button:disabled { opacity: 0.4; }

/*
.basic_form .field .interface.radio { padding: 12px 15px; border: solid 1px #CCC; border-radius: 5px;}
.basic_form .field .radio-input { display: none;}
.basic_form .field .radio-parts { display: inline-block; padding: 0 10px 0 30px; position: relative;}
.basic_form .field .radio-parts::before {
	content: ""; display: block; width: 20px; height: 20px;
	background: url("../img/radio_off.svg"); background-size: 20px 20px;
	position: absolute; top: 50%; left: 0; transform: translate( 0, -50%);
}
.basic_form .field .radio-input:checked + .radio-parts {}
.basic_form .field .radio-input:checked + .radio-parts::after {
	content: ""; display: block; width: 20px; height: 20px;
	background: url("../img/radio_on.svg"); background-size: 20px 20px;
	position: absolute; top: 50%; left: 0; transform: translate( 0, -50%);
}
*/

.signup_explain_wrap { max-width: 1060px; margin: 60px auto 50px; padding: 0 20px; }
.signup_explain { padding: 30px 30px 0; background: #F4F7FB; }
.signup_explain p { padding: 0 0 10px; color: #2B66B1; font-size: 18px; font-weight: bold; line-height: 1; border-bottom: solid 1px #CBDAEC; }
.signup_explain ul { padding: 20px 0 30px; }
.signup_explain ul li { padding-left: 16px; font-size: 16px; position: relative; }
.signup_explain ul li::before { content: '・'; position: absolute; top: 0; left: 0; }
.signup_explain a { color: #0071BC; text-decoration: underline; }
.signup_explain a:hover { color: #41A6E8; text-decoration: none; }

.terms-box { width: 100%; height: 200px; overflow-y: scroll; border: 1px solid #ccc; box-sizing: border-box; margin-top: 40px; }
.terms-inner { padding: 20px 40px; }
.terms_check_wrapper { text-align: center; }
.terms_check_wrapper .error_message { margin-top: 4px; color: #C8321D; font-size: 16px; text-align: center; }

.contact_comp_text { margin: 60px 0 120px; text-align: center;}
.contact_comp_text a { color: #0068B6; text-decoration: underline;}
.contact_comp_text a:hover { color: #4B9DDA; text-decoration: none;}

/* wuta contact page */
.contact .basic_form .field .field_head .require {
	background: #E80303;
}
.contact .basic_form .field .interface.text input { background: #f3f3f3;}
.contact .basic_form .field .interface.textarea textarea {
	background: #f3f3f3;
}
.contact .basic_form .form_button {
	background: #000;
}
.contact input:-webkit-autofill { box-shadow: 0 0 0 1000px #f3f3f3 inset;}
.contact .mail_sended_message {
	color: #000;
	background-color: #f3f3f3;
}

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

    .basic_form .field .field_head { width: auto; margin: 0 0 10px; padding: 0;}
	.basic_form .field .field_head .name { display: inline-block; width: auto;}

	.basic_form .field[data-validation-state="valid"] .field_head::after { position: absolute; top: 0; right: 10px;}

    .basic_form .field .interface { width: auto;}

	.basic_form .field .error_message { padding-left: 0; }

    .basic_form .form_button { width: 90%; height: 60px; line-height: 60px; font-size: 20px;}

	.signup_explain_wrap { max-width: unset; margin: 30px auto; padding: 0 15px; }
	.signup_explain { padding: 30px 20px 0;  }

	.terms-inner { padding: 20px; }

}


/* ------------------------------------------------------- modal
*/
.btn_movie {
	width: 360px; height: 62px; margin: 20px 0 0 9%; color: #FFF; font-size: 2.4rem;
	border: 2px solid #FF6633; background: #FF6633;
}
.btn_movie:hover {
	color: #FF6633;
	background: #FFF;
	cursor: pointer;
}
.btn_movie::after { display: none;}
.btn_movie span { padding-left: 54px; position: relative;}
.btn_movie span::before {
	content: ''; width: 42px; height: 30px;
	background: url("../img/ic_movie.svg") no-repeat;
	position: absolute; top: 50%; left: 0; transform: translateY(-50%);
}
.btn_movie:hover span::before {
	background: url("../img/ic_movie_on.svg") no-repeat;
}

.modal_bg {
	display: none; width: 100%; height: 100%; background-color: rgba( 0, 0, 0, 0.6);
	position: fixed; top: 0; left: 0; z-index: 6666;
}

.modal_box {
	display: none; width: 820px; /*border-radius: 10px; background: #FFF;*/
	position: fixed; z-index: 7777;
}

.youtube_wrap { max-width: 100%; height: auto; padding-bottom: 56.25%; position: relative; overflow: hidden;}
.youtube_wrap iframe { width: 100%; height: 100%; position: absolute; top: 0; left: 0;}


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

	.btn_movie {
		width: 90%; height: auto; margin: 20px auto 0; font-size: 4.5vw;
	}
	.btn_movie span { padding-left: 44px;}
	.btn_movie span::before {
		content: ''; width: 34px; height: 24px;
		background: url("../img/ic_movie.svg") no-repeat;
		background-size: cover;
	}
	.btn_movie:hover span::before {
		background-size: cover;
	}

	.modal_box { width: 94%;}

}

.breadcrumbs{margin: 10px auto 20px; width: 1100px;}
.breadcrumbs span{font-size: 12px !important;}
@media screen and (max-width: 768px) {
	.breadcrumbs{width: 100%; margin: 10px;}
	}