@charset "utf-8";


/*--------------------------------------------------------------------------
   settings
---------------------------------------------------------------------------*/
:root {
  --dark: #231815;
  --light: #fff;
	--gray: #727071;
	--lgray: #a3a6af;
	--purple: #f1f3f9;
	--red: #f04853;
	--lred: #ffeaeb;
	--green: #aad250;
	--lgreen: #eef3e3;
	--blue: #c9e5f6;
	--rblue: #0091e6;
}


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html{
	overflow-y: scroll;
  scroll-behavior: auto;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body{
	color: #231815;
	background: #FFF;
	font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;	
}

/* fonts */
.en{
  font-family: "Montserrat", sans-serif;
}
.yakuhan{
	text-indent: -.5em;
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/
a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: #231815;
}

.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}

.phone-link{
  pointer-events: none;  
}


/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden; 
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}
.b-radius{
	border-radius: 6px;
}


/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition-duration: 1.3s;
}
.fade01,.fade02,.fade03,.fade04{
	transition-timing-function: ease-out;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
}
.fade01{
	opacity: 0;
	transform: translate(0,50px); 
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-50px); 
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0); 
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0); 
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);  
}
.zoom{
  transform: scale(1.1,1.1); 
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

.mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1); 
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none;	
}
/* box-sizing ---*/	
header, footer, main, section, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, a, span, small, strong, em, input, select, textarea, button {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
.inner{
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
#Header{
	position: sticky;
	left: 0;
	top: 0;
	z-index: 12000;
	width: 100%;
}
.header-inner{
	display: flex;
	justify-content: space-between;
	padding: 20px 90px 0 30px;
	background: var(--light);
}
header .nav-area{
	padding: 5px min(2.61vw,40px);
}
header .util-nav{
	display: flex;
	justify-content: flex-end;
	margin-bottom: 15px;
	font-weight: 500;
}
header .util-nav li{
	display: flex;
	align-items: center;
	line-height: 1;
	font-size: 1.3rem;
}
header .util-nav li:nth-child(n+2){
	margin-left: min(1.63vw,25px);
}
header .util-nav .ico{
	margin-right: 7px;
}
.btn-trigger{
  display: none;  
}
.pc-search-wrap{
  position:fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
  width:100%;
  height: 100vh;
}
.pc-search-wrap.active{
  opacity: 1;
   z-index: 15000;
   background:#333;
   display: flex;
   justify-content: center;
   align-items: center;
}
.pc-search-wrap .pc-search-area{
  display: none;
}
.pc-search-wrap.active .pc-search-area{
  display: block;
  max-width: 800px;
	width: 100%;
  position: relative;
}
.pc-search-wrap form{
  position: relative;
  height: 66px;
}
.gsc-input-box{
  border: none !important;
  background:#333 !important;  
}
.gsib_a {
    padding: 0 !important;
}
.gsc-search-button {
    width: 60px !important;
}
input.gsc-input{
  -webkit-appearance:none;
  outline: none !important;
	border: none !important;
	width: 100%;
  padding: 20px !important;
	border-bottom:2px solid #666 !important;
  background-color: #444 !important;
  background-position: left 20px center !important;
  color: #fff;
	transition: all 0.5s;
  letter-spacing: 0.05em;
}	
.gsc-search-button-v2, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus {
		width: 100%  !important;
		height: 60px  !important;
		-webkit-appearance:none;
  	outline: none  !important;
		border: 0 !important;
     border-radius: 6px !important;
		background: url(../../img/common/ico_search_black.svg) no-repeat center center #fff!important;
		background-size: 26px auto !important;
    cursor: pointer;
}
.gsc-search-button-v2 svg{
  opacity: 0;  
}
.btn-close-search{
  position: absolute;
  top:25px;
  right:25px;
  z-index: 16000;
  cursor: pointer;
  width: 40px;
  height:40px;
}
  



/* ---------------------------------------------------------------------------
	 #Gnav	
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
#Gnav{
  position: relative;  
}
.gnav{
	position: relative;
	display: flex;
	font-weight: 600;
}
.gnav > li{
	margin-right: 40px;
}
.gnav > li:last-child{
  margin-right: 0;  
}
.gnav > li > p{
	padding: 5px 0 21px;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}
.gnav .nav-middle{
	position: fixed;
	left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
	width: 100vw;
  display:none;
}
.gnav > li:hover .nav-middle{
	display: block;
}
.gnav .nav-middle-inner{
	position: relative;
	width: 100%;
	margin: 10px auto 0;
	padding: 25px 5.8% 80px;
  opacity: 0;	
}
.gnav > li:hover .nav-middle-inner{
  animation: fadein .7s ease 0s 1 forwards running;
}
.gnav .nav-middle-inner::before{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--purple);
	border-radius: 6px;
}
.gnav .nav-middle a > span::after{
	display: inline-block;
	content: "";
	margin-left: 10px;
	width: 6px;
	height: 12px;
	background: url(../../img/common/arw_btn.svg) no-repeat;
	background-size: 100% auto;
}
.gnav .nav-middle dl{
	position: relative;
	z-index: 15000;
	display: flex;
	align-items: flex-start;
}
.gnav .nav-middle dl dt{
	width: 25%;
}
.gnav .nav-middle dl dd{
	width: 75%;
}
.gnav .nav-middle dl dd ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.gnav .nav-middle dl dd ul li{
	width: calc((100% - 40px)/ 3);
	margin-left: 20px;
}
.gnav .nav-middle dl dd ul li:nth-child(3n+1){
	margin-left: 0;
}
.gnav .nav-middle dl dd ul li:nth-child(n+4){
	margin-top: 45px;
}
.gnav .nav-middle dl dd ul strong{
	display: block;
	margin-top: 15px;
}
.gnav .nav-middle dl dd ul .toku{
	display: none;	
}

.gnav .nav04 .nav-middle dl dd ul li:nth-child(1),
.gnav .nav04 .nav-middle dl dd ul li:nth-child(2){
  width: calc(50% - 10px);
}
.gnav .nav05 .nav-middle dl dd ul li:nth-child(1),
.gnav .nav05 .nav-middle dl dd ul li:nth-child(2){
  width: calc(40% - 10px);
}
.gnav .nav04 .nav-middle dl dd ul li:nth-child(3){
  margin: 45px 0 0 0;
}

#slide-line{
  position: absolute;
  bottom: 8px;
  height: 3px;
  transition: all .3s ease;
  overflow: hidden;
  pointer-events: none;
}
#slide-line::before{
  position:absolute;
  left: 50%;
  top: 0;
  display: block;
  content: "";
  width: 30px;
  height: 3px;
  margin-left: -15px;
  background: #00a0e6;  
}

.sp-util-nav,
.gnav-cv{
	display: none;
}

@keyframes fadein{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/*--------------------------------------------------------------------------
   side-bnr-list
---------------------------------------------------------------------------*/
.side-bnr-list{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 12500;
	height: 100%;
	font-weight: 600;
}
.side-bnr-list li{
	height: calc(100% / 3);
  background: var(--light);
}
.side-bnr-list a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 100%;
	color: var(--light);
	font-size: min(4vh,1.8rem);
	letter-spacing: .1em;
	writing-mode: vertical-rl;
	transition: .3s;
}
.side-bnr-list a:hover{
	opacity: .7;
}
.side-bnr-list li:nth-child(1) a{
	background: var(--red);
}
.side-bnr-list li:nth-child(2) a{
	background: var(--green);
}
.side-bnr-list li:nth-child(3) a{
	background: #d2d5db;
	color: var(--dark);
}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* 見出し
-----------------------------------------------------------------*/

/* kv ---------------------------*/
.kv{
	background: no-repeat center center;
	background-size: cover;
	color: var(--light);
}
.kv .inner{
	position: relative;
	height: 620px;
}
.kv h1{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
.kv h1 span{
  display: block;  
}
.kv h1 .ja{
  margin-bottom: 20px;
  font-size: 5.6rem;
}
.kv h1 .en{
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: .2em;
  font-weight: normal;
}


/* page-ttl ---------------------------*/
.page-ttl{
  padding: 150px 0;  
}
.page-ttl h1{
  line-height: 1;  
}
.page-ttl h1 span{
  display: block;  
}
.page-ttl h1 .ja{
  margin-bottom: 20px;
  font-size: 5.6rem;
}
.page-ttl h1 .en{
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: .2em;
  font-weight: normal;
}


/* ttl-sec-middle ---------------------------*/
.ttl-sec-middle{
	padding-left: 35px;
	background: url(../../img/common/ico_circle_blue.svg) no-repeat left top 10px;
	background-size: 22px auto;
	font-size: 3.2rem;
	line-height: 1.4;
}

/* red */
.ttl-sec-middle._red{
	background-image: url(../../img/common/ico_circle_red.svg);
}

/* green */
.ttl-sec-middle._green{
	background-image: url(../../img/common/ico_circle_green.svg);
}


/* ボタン
-----------------------------------------------------------------*/

/* btn-base ---------------------------*/
.btn-base a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: fit-content;
	padding: 0 50px;
	border-radius: 100vmax;
	font-size: 1.8rem;
	line-height: 1;
	background: var(--light);
	transition: .3s;
	font-weight: 600;
}
.btn-base a span::after{
	display: inline-block;
	content: "";
	width: 8px;
	height: 15px;
	margin-left: 12px;
	background: url(../../img/common/arw_btn.svg) no-repeat;
	background-size: 100% auto;
}
.btn-base a:hover{
	background: var(--dark);
	color: var(--light);
}
.btn-base a:hover span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}

/* small */
.btn-base._s a{
	height: 40px;
	padding: 0 20px;
	font-size: 1.5rem;
}
.btn-base._s a span::after{
	margin-left: 7px;
	width: 6px;
	height: 12px;
}


/* black */
.btn-base._black a{
	background: var(--dark);
  color: var(--light);
  border: 1px solid var(--dark);
}
.btn-base._black a span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}
.btn-base._black a:hover{
	background: var(--light);
	color:  var(--dark);
}
.btn-base._black a:hover span::after{
	background-image: url(../../img/common/arw_btn.svg);
}

/* purple */
.btn-base._purple a{
	background: var(--purple);
}
.btn-base._purple a span::after{
	background-image: url(../../img/common/arw_btn.svg);
}
.btn-base._purple a:hover{
	background: var(--dark);
	color:  var(--purple);
}
.btn-base._purple a:hover span::after{
	background-image: url(../../img/common/arw_btn_purple.svg);
}

/* gray */
.btn-base._gray a{
	background: var(--gray);
	color: var(--light);
}
.btn-base._gray a span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}
.btn-base._gray a:hover{
	background: var(--dark);
}


/* lgray */
.btn-base._lgray a{
	background: var(--lgray);
	color: var(--light);
	border: 1px solid var(--lgray);
}
.btn-base._lgray a span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}
.btn-base._lgray a:hover{
	background: var(--light);
	color: var(--lgray);
}
.btn-base._lgray a:hover span::after{
	background-image: url(../../img/common/arw_btn_lgray.svg);
}

/* blue */
.btn-base._blue a{
	background: var(--rblue);
	border: 1px solid var(--rblue);
	color: var(--light);
}
.btn-base._blue a span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}
.btn-base._blue a:hover{
	background: var(--light);
	color: var(--rblue);
}
.btn-base._blue a:hover span::after{
	background-image: url(../../img/common/arw_btn_blue.svg);
}


/* red */
.btn-base._red a{
	background: var(--red);
	border: 1px solid var(--red);
	color: var(--light);
}
.btn-base._red a span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}
.btn-base._red a:hover{
	background: var(--light);
	color: var(--red);
}
.btn-base._red a:hover span::after{
	background-image: url(../../img/common/arw_btn_red.svg);
}


/* green */
.btn-base._green a{
	background: var(--green);
	border: 1px solid var(--green);
	color: var(--light);
}
.btn-base._green a span::after{
	background-image: url(../../img/common/arw_btn_w.svg);
}
.btn-base._green a:hover{
	background: var(--light);
	color: var(--green);
}
.btn-base._green a:hover span::after{
	background-image: url(../../img/common/arw_btn_green.svg);
}


/* blank */
.btn-base._blank a span::after{
	width: 13px;
	height: 13px;
	background-image: url(../../img/common/ico_blank.svg);
}
.btn-base._blue._blank a span::after,
.btn-base._red._blank a span::after,
.btn-base._green._blank a span::after{
	background-image: url(../../img/common/ico_blank_w.svg);
}

.btn-base._blank a:hover span::after{
	background-image: url(../../img/common/ico_blank_w.svg);
}
.btn-base._blue._blank a:hover span::after{
	background-image: url(../../img/common/ico_blank_blue.svg);
}
.btn-base._red._blank a:hover span::after{
	background-image: url(../../img/common/ico_blank_red.svg);
}
.btn-base._green._blank a:hover span::after{
	background-image: url(../../img/common/ico_blank_green.svg);
}


.btn-base._blank2 a span::after{
	width: 10px;
	height: 13px;
	background-image: url(../../img/common/ico_file.svg);
}
.btn-base._blue._blank2 a span::after,
.btn-base._red._blank2 a span::after,
.btn-base._green._blank2 a span::after{
  background-image: url(../../img/common/ico_file_w.svg);
}
.btn-base._blank2 a:hover span::after{
	background-image: url(../../img/common/ico_file_w.svg);
}
.btn-base._blue._blank2 a:hover span::after{
	background-image: url(../../img/common/ico_file_blue.svg);
}
.btn-base._red._blank2 a:hover span::after{
	background-image: url(../../img/common/ico_file_red.svg);
}
.btn-base._green._blank2 a:hover span::after{
	background-image: url(../../img/common/ico_file_green.svg);
}

/* btn-ghost ---------------------------*/
.btn-ghost a,
.btn-ghost > span{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: fit-content;
	padding: 0 50px;
	border-radius: 100vmax;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 500;
	color: var(--light);
	border: 1px solid var(--light);
	transition: .3s;
}
.btn-ghost a:hover,
.btn-ghost > span:hover{
	background: var(--light);
	color: var(--dark);
}
.btn-ghost a span::after,
.btn-ghost > span span::after{
	display: inline-block;
	content: "";
	width: 8px;
	height: 15px;
	margin-left: 12px;
	background: url(../../img/common/arw_btn_w.svg) no-repeat;
	background-size: 100% auto;
}
.btn-ghost a:hover span::after,
.btn-ghost > span:hover span::after{
	background-image: url(../../img/common/arw_btn.svg);
}

/* blank */
.btn-ghost._blank a span::after{
	width: 13px;
	height: 13px;
	background-image: url(../../img/common/ico_blank_w.svg);
}
.btn-ghost._blank a:hover span::after{
	background-image: url(../../img/common/ico_blank.svg);
}

.btn-ghost._blank02 a span::after{
	width: 14px;
	height: 17px;
	background-image: url(../../img/common/ico_file_w.svg);
}
.btn-ghost._blank02 a:hover span::after{
	background-image: url(../../img/common/ico_file.svg);
}


/* btn-back ---------------------------*/
.btn-back a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: fit-content;
  padding: 0 50px;
  border-radius: 100vmax;
  font-size: 1.8rem;
	font-weight: 500;
  line-height: 1;
  background: #a3a6af;
  color: var(--light);
  transition: .3s;
}
.btn-back a span::before{
  display: inline-block;
  content: "";
  width: 8px;
  height: 15px;
  margin-right: 12px;
  background: url(../../img/common/arw_btn_prev_w.svg) no-repeat;
  background-size: 100% auto;
}
.btn-back a:hover{
  background-color: var(--dark);  
}

/* blue */
.btn-back._blue a{
	border: 1px solid var(--rblue);
	background-color: var(--rblue); 
}
.btn-back._blue a:hover{
	background-color: var(--light);
	color: var(--rblue);  
}
.btn-back._blue a:hover span::before{
	background-image: url(../../img/common/arw_btn_prev_blue.svg);
}


/* ico-link ---------------------------*/
a.ico-link{
	position: relative;
	display: inline-block;
	margin-right: 30px;
  text-decoration: underline;
}
a.ico-link::after{
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translate(100%,-50%);
	display: block;
	width: 20px;
	height: 20px;
	content: "";
	background:url(../../img/common/arw_circle_purple.svg) no-repeat;
	background-size: 100% auto;
}
a.ico-link:hover{
	text-decoration: none;
}


/* card-list
-----------------------------------------------------------------*/
.card-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.card-list > li{
	overflow: hidden;
	position: relative;
	width: calc(50% - 10px);
	padding: 55px 5% 40px;
	background: var(--purple);
	border-radius: 6px;
	box-shadow: 0 10px 0 var(--red);
}

.card-list._w > li{
	background: var(--light);
}
.card-list > li:nth-child(n+3){
	margin-top: 50px;
}
.card-list .ico{
	position: absolute;
	left: 0;
	top: 0;
	width: 130px;
	height: 110px;
	padding-right: 	20px;
	text-align: center;
	padding-top: 13px;
	line-height: 1;
	color: var(--light);
}
.card-list .ico::before{
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%,-50%);
	display: block;
	width: 200%;
	height: 200%;
	border-radius: 100vmax;
	content: "";
	background: var(--red);	
}
.card-list .ico small{
	position: relative;
	display: block;
	font-size: 1.4rem;
	text-transform: uppercase;
}
.card-list .ico span{
	position: relative;
	display: block;
	font-size: 4.5rem;
	letter-spacing: -.02em;
	font-weight: 500;
}

/* green */
.card-list._green > li{
	box-shadow: 0 10px 0 var(--green);
}
.card-list._green .ico::before{
	background: var(--green);
}


/* dot-list
-----------------------------------------------------------------*/
.dot-list{
	line-height: 1.6;
}
.dot-list li{
	display: flex;
	align-items: flex-start;
}
.dot-list li::before{
	transform: translateY(4px) scale(.6);
	margin-right: 4px;
	content: "●";
	color: var(--rblue);
	font-size: 1rem;
}
.dot-list._red li::before{
	color: var(--red);
}
.dot-list._green li::before{
	color: var(--green);
}


/* check-list
-----------------------------------------------------------------*/
.check-list li{
	padding-left: 25px;
	background: url(../../img/common/ico_check_red.svg) no-repeat left top 5px;
	background-size: 18px auto;
	line-height: 1.5;
}
.check-list li:nth-child(n+2){
	margin-top: 5px;
}
.check-list._green li{
	background-image: url(../../img/common/ico_check_green.svg);
}


/* FAQ
-----------------------------------------------------------------*/	
.faq-list > div{
	border-bottom: 1px solid #a3a6af;
	font-size: 1.8rem;
}
.faq-list > div.open{
	padding-bottom: 35px;
}
.faq-list dt{
	display: flex;
	align-items: flex-start;
	padding: 35px 50px 35px 0;
	background: url(../../img/common/ico_plus_gray.svg) no-repeat right top 33px;
	background-size: 35px auto;
	line-height: 1.5;
	font-weight: 500;
	cursor: pointer;
}
.faq-list .open dt{
	background-image: url(../../img/common/ico_minus_gray.svg);
}
.faq-list dt .ico,
.faq-list dd .ico{
	flex-shrink: 0;
	transform: translateY(-4px);
	margin-right: 20px;
	font-size: 2.4rem;
}
.faq-list dd{
	display: none;
	padding: 25px 5%;
	background: var(--purple);
	border-radius: 6px;
	line-height: 1.6;
}
.faq-list._w dd{
	background: var(--light);
}
.faq-list dd > div{
	display: flex;
}
.faq-list dd p{
	display: flex;
	align-items: flex-start;
}
.faq-list dd .ico{
	margin-right: 15px;
	color: var(--red);
	font-weight: 500;
}
.faq-list dd .btn-base{
	display: block;
	margin-top: 15px;
}
.faq-list dd a{
	text-decoration: underline;
}
.faq-list dd a:hover,
.faq-list dd a.phone-link{
	text-decoration: none;
}
.faq-list dd .note{
	display: block;
	margin-top: 10px;
	font-size: 1.3rem;
}


/* ページ内リンクナビ
-----------------------------------------------------------------*/
.page-nav-list{
	display: flex;
}
.page-nav-list li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80px;
	border: 1px solid var(--dark);
	border-radius: 100vmax;
	line-height: 1;
	font-size: 2rem;
	font-weight: 600;
	transition: .3s;
}
.page-nav-list li a span{
	padding-right: 22px;
	background: url(../../img/common/arw_down.svg) no-repeat right center;
	background-size: 14px auto;
}
.page-nav-list li a:hover{
	background: var(--dark);
	color: var(--light);
}
.page-nav-list li a:hover span{
	background-image: url(../../img/common/arw_down_w.svg);
}


/* 表組み
-----------------------------------------------------------------*/
.info-table-list{
	background: var(--light);
	border-top: 1px solid #999;
	font-size: 1.6rem;
	line-height: 1.6;
}
.info-table-list > div{
	display: flex;
	border-bottom: 1px solid #999;	
}
.info-table-list dt{
	flex-shrink: 0;
	width: 200px;
	padding: 20px 25px;
	background: #dbf0fc;
	font-weight: 500;
}
.info-table-list dd{
	padding: 20px 25px;
}


/* 注釈
-----------------------------------------------------------------*/
.note,
.notes li{
	font-size: 1.2rem;
	line-height: 1.5;
}


/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}


/*--------------------------------------------------------------------------
   cont-navigation
---------------------------------------------------------------------------*/
.cont-navigation{
	padding: 140px 0;
}
.cont-navigation h2{
	margin-bottom: 20px;
	font-size: 3.2rem;
	line-height: 1.4;
}
.cont-navigation .cont-navigation-list{
	display: flex;
	flex-wrap: wrap;
}
.cont-navigation .cont-navigation-list li{
	width: calc((100% - 50px)/3);
	margin-left: 25px;
}
.cont-navigation .cont-navigation-list li:nth-child(3n+1){
	margin-left: 0;
}
.cont-navigation .cont-navigation-list li:nth-child(n+4){
	margin-top: 15px;
}
.cont-navigation .cont-navigation-list li a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 105px;
	border: 1px solid #a3a6af;
	border-radius: 6px;
	font-size: 2.1rem;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
}
.cont-navigation .cont-navigation-list li a::after{
	position: absolute;
	right: 8px;
	bottom: 8px;
	display: block;
	width: 40px;
	height: 40px;
	content: "";
	background-repeat: no-repeat;
	background-size: 100% auto;
	transition: .5s;	
}
.cont-navigation .cont-navigation-list li a:hover::after{
	transform: scale(.85);
}
.cont-navigation._cable .cont-navigation-list li a::after,
.cont-navigation._internet .cont-navigation-list li a::after,
.cont-navigation._tel .cont-navigation-list li a::after,
.cont-navigation._life .cont-navigation-list li a::after{
	background-image: url(../../img/common/arw_circle_red.svg);
}
.cont-navigation._support .cont-navigation-list li a::after{
	background-image: url(../../img/common/arw_circle_green.svg);
}
.cont-navigation .cont-navigation-list li a small{
	display: block;
	font-size: 1.6rem;
}
.cont-navigation._cable .cont-navigation-list li a small,
.cont-navigation._internet .cont-navigation-list li a small,
.cont-navigation._tel .cont-navigation-list li a small{
	color: var(--red);
}

/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/

/* cv
-----------------------------------------------------------------*/
#Cv{
	position: relative;
	padding: 75px 0;
	clip-path: inset(0);
}
#Cv .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url(../../img/common/bg_cv.webp);
	background-size: cover;
	background-position: center;
	z-index: -1;
}
#Cv .cv-bnr-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
#Cv.cv .cv-bnr-list{
	margin-bottom: 0;
}
#Cv .cv-bnr-list li.simulation{
	width: 100%;
	margin-bottom: 20px;
}
#Cv .cv-bnr-list li{
	width: calc(50% - 10px);
}
#Cv .cv-bnr-list li a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 210px;
	background: var(--light);
}
#Cv .cv-bnr-list li a::after{
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: block;
	width: 40px;
	height: 40px;
	content: "";
	background: url(../../img/common/arw_circle_red.svg) no-repeat;
	background-size: 100% auto;
	transition: .5s;
}
#Cv .cv-bnr-list li a:hover::after{
  transform: scale(.85);
}
#Cv .cv-bnr-list .ttl{
	margin-left: min(1.96vw,30px);
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: .03em;
}
#Cv .cv-bnr-list .ttl strong{
	display: block;
	margin-bottom: 10px;
	font-size: 3.2rem;
}
#Cv .cv-bnr-list li.simulation .ttl strong{
	margin: 10px 0 0;
}
#Cv .cv-bnr-list li.simulation .ttl strong span{
	display: none;
}
#Cv .cv-bnr-list + p{
	margin-bottom: 25px;
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
	color: var(--light);
}
#Cv .btn a{
	max-width: 320px;
	width: 100%;
	margin-inline: auto;
}


/* cv02
-----------------------------------------------------------------*/
#Cv02{
	position: relative;
	padding: 150px 0 160px;
	clip-path: inset(0);
}
#Cv02 .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url(../../img/common/bg_cv02.webp);
	background-size: cover;
	background-position: center;
	z-index: -1;
}
#Cv02 .cv-btn-list{
	display: flex;
	justify-content: space-between;
	max-width: 795px;
	margin-inline: auto;
	color: var(--light);
}
#Cv02 .cv-btn-list li{
	max-width: 340px;
	width: calc(50% - 10px);
	text-align: center;
}
#Cv02 .cv-btn-list h3{
	margin-bottom: 15px;
}
#Cv02 .cv-btn-list .btn a{
	width: 100%;
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
  padding: 80px 0;
}
footer .tel{
  margin-bottom: 55px;  
}
footer .tel h3{
  text-align: center;
  font-size: 2.4rem;  
  font-weight: 500;
}
footer .tel-cont{
  display: flex;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1;  
}
footer .tel-cont .phone-number{
  margin-left: 15px; 
}
footer .tel-cont .phone-number a{
	display: flex;
  align-items: center;
  margin-inline: 15px;  
}
footer .tel-cont .phone-number strong{
  display: inline-block;
  margin-left: 20px;
  font-size: 5.8rem;
  font-weight: 600;
  line-height: .8em;
}
footer .tel-cont .mobile{
	margin-left: .8%;
	padding-left: 1.8%;
	border-left: 1px solid var(--dark);
	font-size: 1.5rem;
	line-height: 1.2;
}
footer .tel-cont .mobile a{
	display: block;
	font-weight: bold;
	font-size: 3.2rem;
}
footer .tel-cont .note{
	width: 100%;
	text-align: center;
}
footer .ft-info-list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;  
}
footer .ft-info-list li{
  width: 32.16%;  
}
footer .ft-info-list li a{
  display: flex;
  align-items: center;
  min-height: 100px;
  height: 100%;
  padding: 10px 10%;
  background: var(--purple);
  transition: .3s;  
}
footer .ft-info-list li a:hover{
  opacity: .7;  
}
footer .ft-info-list li a div{
  display: flex;
  align-items: center;
  width: 100%;  
}
footer .ft-info-list .txt{
  margin-left: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
footer .ft-info-list li:last-child .txt{
  font-size: 1.4rem;  
}
footer .ft-txt-link-list{  
  text-align: center;
  margin-bottom: 30px;  
}
footer .ft-txt-link-list li{
  display: inline-block;
  margin: 0 7px 10px;
  font-size: 1.3rem;  
}
footer .ft-txt-link-list a{
  transition: .3s;  
}
footer .ft-txt-link-list a:hover{
  opacity: .7;  
}
footer .copyright{
  text-align: center;
  font-size: 1.3rem;  
}














/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  
#Page {
	min-width: 320px;
  overflow: hidden;	
}

img{
	width: 100%;
	height: auto;
}

.pc{
	display: none;	
}
.sp{
	display: block;	
}
img.sp,
br.sp{
	display: inline;
}

.phone-link{
  pointer-events: auto;  
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
.inner{
	max-width: initial;	
}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
  #Header{
    position: fixed;
  }
  #Header h1{
    width: 131px;
    line-height: 0;  
  }
  .header-inner{
    display: block;
    padding: 13px 15px 15px;
  }
  header .nav-area{
    padding: 0;
  }
  header .util-nav{
    display: none;
  }
  .btn-trigger{
    display: block;
    position: absolute;
    right: 20px;
    top: 16px;
    width: 45px;
    height: 29px;
    padding-top: 6px;  
  }
  .btn-trigger span{
    display: block;
    height: 2px;
    background: var(--dark);
    margin-left: auto;
    transition: .3s; 
  }
  .btn-trigger span:nth-child(2){
    width: 35px;
    margin-top: 6px; 
  }
  .btn-trigger span:nth-child(3){
    width: 25px;
    margin-top: 6px; 
  }
  .btn-trigger.on span:nth-child(1){
    width: 25px;
    transform: rotate(-45deg) translateY(12px); 
  }
  .btn-trigger.on span:nth-child(2){
    opacity: 0
  }
  .btn-trigger.on span:nth-child(3){
    width: 25px;
    transform: rotate(45deg) translateY(-12px); 
  }
	.pc-search-wrap{
		display: none;
	}


/* ---------------------------------------------------------------------------
	 #Gnav	
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
	#Gnav{
		position: fixed;
		left: 0;
		top: 60px;
		z-index: 12000;
		width: 100vw;
		height: calc(100vh - 60px);
		overflow: auto;
		background: var(--light);
		display: none;  
	}
	.gnav{
		display: block;
		font-weight: 600;
	}
	.gnav > li{
		margin-right: 0;
		background: var(--purple);
	}
	.gnav > li:nth-child(n+2){
		margin-top: 1px;
	}
	.gnav > li > p{
		padding: 30px 40px;
		font-size: 2rem;
	}
	.gnav > li > p{
		background: url(../../img/common/arw_circle_w.svg) no-repeat right 18px center;
		background-size: 33px auto;
	}
	.gnav > li.has-middle > p{
		background-image: url(../../img/common/ico_plus.svg);
	}
	.gnav > li.has-middle > p.open{
		background-image: url(../../img/common/ico_minus.svg);
	}
	.gnav .nav-middle{
		position: static;
		display: block;
		transform: translateX(0);
		max-width: none;
		padding: 0;
	}
	.gnav .nav-middle.open{
		padding-bottom: 25px;
	}
	.gnav .nav-middle-inner{
		position: relative;
		overflow: hidden;
		display: none;
		width: auto;
		margin: 0 40px;
		padding: 5px 0;
		background: var(--light);
		border-radius: 6px;
		opacity: 1;	
	}
	.gnav > li:hover .nav-middle-inner{
		animation: none;
	}
	.gnav .nav-middle-inner::before{
		display: none;
	}
	.gnav .nav-middle a{
		position: relative;
		display: block;
		padding: 20px;
		font-size: 1.5rem;
		line-height: 1;
	}
	.gnav .nav-middle a > span::after{
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		margin-left: 0;
		width: 21px;
		height: 21px;
		background: url(../../img/common/arw_circle_purple.svg) no-repeat;
		background-size: 100% auto;
	}
	.gnav .nav-middle dl{
		display: block;
	}
	.gnav .nav-middle dl dt{
		width: 100%;
	}
	.gnav .nav-middle dl dd{
		width: 100%;
	}
	.gnav .nav-middle dl dd ul{
		display: block;
	}
	.gnav .nav-middle dl dd ul li{
		width: 100%;
		margin-left: 0;
	}
	.gnav .nav-middle dl dd ul li:nth-child(3n+1){
		margin-left: 0;
	}
	.gnav .nav-middle dl dd ul li:nth-child(n+4){
		margin-top: 0;
	}
	.gnav .nav-middle dl dd ul strong{
		display: none;
	}
	.gnav .nav-middle dl dd ul .toku{
		display: inline-block;
		transform: translateY(-2px);
		margin-left: .5em;
		font-size: 1.2rem;
		color: var(--red);	
	}
	.gnav .nav-middle dl dd ul small{
		font-size: 1.2rem;
	}
	
	.gnav .nav04 .nav-middle dl dd ul li:nth-child(1),
	.gnav .nav04 .nav-middle dl dd ul li:nth-child(2){
		width: 100%;
	}
	.gnav .nav05 .nav-middle dl dd ul li:nth-child(1),
	.gnav .nav05 .nav-middle dl dd ul li:nth-child(2){
		width: 100%;
	}
	.gnav .nav04 .nav-middle dl dd ul li:nth-child(3){
		margin: 0
	}
	
	#slide-line{
		display: none;
	}


/* service-bnr-list
-----------------------------------------------------------------*/
	#Gnav .service-bnr-list{
		max-width: 375px;
    margin-inline: auto;
		padding: 40px 20px 0;
	}
	#Gnav .service-bnr-list li + li{
		margin-top: 15px;
	}
	#Gnav .service-bnr-list li a {
    position: relative;
    display: inline-block;
	}
	#Gnav .service-bnr-list li a::after{
		position: absolute;
    right: 5px;
    bottom: 10px;
    display: block;
    width: 22px;
    height: 22px;
    content: "";
    background: url(../../img/common/arw_circle_w.svg) no-repeat;
    background-size: 100% auto;
	}


/* sp-util-nav
-----------------------------------------------------------------*/
	.sp-util-nav{
		display: block;
		padding: 40px 20px 70px;
	}
	.sp-util-nav ul{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		max-width: 328px;
		margin-inline: auto;
	}
	.sp-util-nav ul li{
		position: relative;
		width: calc((100% - 20px)/3);
	}
	.sp-util-nav ul li:nth-child(4){
		width: 100%;
		margin-top: 20px;
	}
	.sp-util-nav ul li:nth-child(1) a,
  .sp-util-nav ul li:nth-child(2) a,
  .sp-util-nav ul li:nth-child(3) a{
		display: block;
		height: 28vw;
		padding-top: 6vw;
		background: var(--purple);
		border-radius: 6px;
		text-align: center;
		line-height: 1;
	}
	.sp-util-nav ul .ico{
		display: block;
		margin: 0 auto 10px;
	}
	.sp-util-nav ul li:nth-child(1) .ico{
		width: 21px;
		height: 25px;
		padding-top: 2px;
	}
	.sp-util-nav ul li:nth-child(2) .ico{
		width: 25px;
	}
  .sp-util-nav ul li:nth-child(3) .ico{
		width: 25px;
	}
	.sp-util-nav ul .ttl{
		font-size: 1.3rem;
		font-weight: 600;
	}
  .gsc-input-box{
  background:transparent !important;  
}
.gsib_a {
    padding: 0 !important;
}
input.gsc-input{
    -webkit-appearance:none;
  	outline: none !important;
		width: 100%;
		padding: 15px 45px 15px 18px;
		border: 1px solid #ced1da !important; 
		border-radius: 6px !important;
    background: #fff !important;
    background-position: left 20px center !important;
		font-size: 1.6rem;
		line-height: 1.2;
    color: #333;
}	
.gsc-search-button-v2, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus {
		width: 100%  !important;
		height: 60px  !important;
		-webkit-appearance:none;
  	outline: none  !important;
		border: 0 !important;
    border-radius: 6px !important;
		background: url(../../img/common/ico_search_black.svg) no-repeat center center  var(--purple)!important;
		background-size: 26px auto !important;
    cursor: pointer;
}


	#sp-search-box{
		-webkit-appearance:none;
  	outline: none;
		width: 100%;
		padding: 15px 45px 15px 18px;
		border: 1px solid #ced1da; 
		border-radius: 6px;
		font-size: 2rem;
		line-height: 1.2;
	}
	#sp-search-submit{
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		width: 25px;
		height: 25px;
		-webkit-appearance:none;
  	outline: none;
		border: 0;
		background: url(../../img/common/ico_search_black.svg) no-repeat;
		background-size: 100% auto;
	}


/* gnav-cv
-----------------------------------------------------------------*/
	.gnav-cv{
		position: relative;
		display: block;
		padding: 75px 0;
		clip-path: inset(0);
	}
	.gnav-cv .bg{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		content: "";
		background-image: url(../../img/common/bg_cv.webp);
		background-size: cover;
		background-position: center;
		z-index: -1;
	}
	.gnav-cv .cv-bnr-list{
		max-width: 295px;
		margin: 0 auto 30px;
	}
	.gnav-cv .cv-bnr-list li:nth-child(n+2){
		margin-top: 15px;
	}
	.gnav-cv .cv-bnr-list li a{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 18px 0;
		background: var(--light);
	}
	.gnav-cv .cv-bnr-list li a::after{
		position: absolute;
		right: 8px;
		bottom: 8px;
		width: 22px;
		height: 22px;
		content: "";
    background: url(../../img/common/arw_circle_red.svg) no-repeat;
    background-size: 100% auto;
	}
	.gnav-cv .cv-bnr-list li a:hover::after{
		transform: scale(1);
	}
	.gnav-cv .cv-bnr-list .pic{
		width: 60px;
	}
	.gnav-cv .cv-bnr-list .ttl{
		margin-left: 15px;
		font-size: 1.4rem;
		line-height: 1.2;
	}
	.gnav-cv .cv-bnr-list .ttl strong{
		display: block;
		margin-bottom: 5px;
		font-size: 2.4rem;
	}
	.gnav-cv .cv-bnr-list li.simulation .ttl{
		font-size: 1.6rem;
	}
	.gnav-cv .cv-bnr-list li.simulation .ttl strong{
		margin: 3px 0 0;
		font-size: 2rem;
	}
	.gnav-cv .btn-ghost{
		max-width: 240px;
		margin-inline: auto;
	}
	.gnav-cv .btn-gnav-close{
		margin-top: 20px;
	}
	.gnav-cv .btn-gnav-close > span{
		cursor: pointer;
	}
	.gnav-cv .btn-gnav-close > span span::after{
		margin-left: 8px;
		width: 12px;
		height: 12px;
		background-image: url(../../img/common/ico_close_w.svg);
	}


/*--------------------------------------------------------------------------
   side-bnr-list
---------------------------------------------------------------------------*/
	.side-bnr-list{
		position: static;
		display: flex;
		height: auto;
	}
	.side-bnr-list li{
		width: calc(100% / 3);
		height: auto;
	}
	.side-bnr-list a{
		display: block;
		width: 100%;
		height: auto;
		padding: 15px 0;
		font-size: 1.6rem;
		line-height: 1.3;
		writing-mode: horizontal-tb;
		text-align: center;
	}
	.side-bnr-list a:hover{
		opacity: 1;
	}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.content{
  padding-top: 60px;  
}

/* 見出し
-----------------------------------------------------------------*/

/* kv ---------------------------*/
	.kv .inner{
		height: 86.66vw;
	}
	.kv h1{
		left: 20px;
	}
	.kv h1 .ja{
		margin-bottom: 10px;
		font-size: 3.6rem;
		line-height: 1.2;
	}
	.kv h1 .en{
		font-size: 1.2rem;
	}


/* page-ttl ---------------------------*/
	.page-ttl{
		padding: 80px 0;  
	}
	.page-ttl h1 .ja{
		margin-bottom: 10px;
		font-size: 3.6rem;
		line-height: 1.2;
	}
	.page-ttl h1 .en{
		font-size: 1.2rem;
	}


/* ttl-sec-middle ---------------------------*/
	.ttl-sec-middle{
		padding-left: 23px;
		background-position:left top 12px;
		background-size: 17px auto;
		font-size: 2.8rem;
	}



/* ボタン
-----------------------------------------------------------------*/

/* btn-base ---------------------------*/
  .btn-base a{
    height: 50px;
    width: 100%;
    padding: 0 30px;
    font-size: 1.4rem;
  }
  .btn-base a span::after{
    display: inline-block;
    content: "";
    width: 6px;
    height: 12px;
    margin-left: 10px;
  }
  .btn-base a:hover{
    background: var(--light);
    color: var(--dark);
  }
  .btn-base a:hover span::after{
    background-image: url(../../img/common/arw_btn.svg);
  }

/* small */
  .btn-base._s a{
    height: 50px;
    padding: 0 10px;
    font-size: 1.4rem;
  }
  .btn-base._s a span::after{
    margin-left: 10px;
  }

/* purple */
  .btn-base._purple a:hover{
    background: var(--purple);
    color: var(--dark);
  }
  .btn-base._purple a:hover span::after{
    background-image: url(../../img/common/arw_btn.svg);
  }

/* gray */
	.btn-base._gray a:hover{
		background: var(--gray);
	}

/* lgray */
	.btn-base._lgray a,
  .btn-base._lgray a:hover{
    background: var(--lgray);
		color: var(--light);
  }
	.btn-base._lgray a:hover span::after{
		background-image: url(../../img/common/arw_btn_w.svg);
	}
	
/* blue */
	.btn-base._blue a:hover{
		background: var(--rblue);
		color: var(--light);
	}
	.btn-base._blue a:hover span::after{
		background-image: url(../../img/common/arw_btn_w.svg);
	}

/* red */
	.btn-base._red a:hover{
		background: var(--red);
		color: var(--light);
	}
	.btn-base._red a:hover span::after{
		background-image: url(../../img/common/arw_btn_w.svg);
	}

/* green */
	.btn-base._green a:hover{
		background: var(--green);
		color: var(--light);
	}
	.btn-base._green a:hover span::after{
		background-image: url(../../img/common/arw_btn_w.svg);
	}

/* blue */
	.btn-base._blue a:hover{
		background: var(--rblue);
		color: var(--light);
	}
	.btn-base._blue a:hover span::after{
		background-image: url(../../img/common/arw_btn_w.svg);
	}

/* blank */
	.btn-base._blank a span::after{
		width: 10px;
		height: 10px;
	}
	.btn-base._blank a:hover span::after{
		background-image: url(../../img/common/ico_blank.svg);
	}
	.btn-base._blue._blank a:hover span::after,
	.btn-base._red._blank a:hover span::after,
	.btn-base._green._blank a:hover span::after{
		background-image: url(../../img/common/ico_blank_w.svg);
	}

	.btn-base._blank2 a span::after{
		width: 10px;
		height: 13px;
	}
	.btn-base._blank2 a:hover span::after{
		background-image: url(../../img/common/ico_file.svg);
	}
	.btn-base._blue._blank2 a:hover span::after,
	.btn-base._red._blank2 a:hover span::after,
	.btn-base._green._blank2 a:hover span::after{
		background-image: url(../../img/common/ico_file_w.svg);
	}



/* btn-ghost ---------------------------*/
  .btn-ghost a,
	.btn-ghost > span{
    height: 50px;
    width: 100%;
    padding: 0 25px;
    font-size: 1.4rem;
  }
  .btn-ghost a:hover,
	.btn-ghost > span:hover{
    background: transparent;
    color: var(--light);
  }
  .btn-ghost a:hover span::after,
	.btn-ghost > span:hover span::after{
    background-image: url(../../img/common/arw_btn_w.svg);
  }




/* btn-back ---------------------------*/
.btn-back a {
  height: 50px;
  width: 100%;
  padding: 0 25px;
  font-size: 1.4rem;
}
.btn-back a:hover{
  background-color: #a3a6af;  
}

/* blue */
.btn-back._blue a:hover{
	background-color: var(--rblue);
	color: var(--light);  
}
.btn-back._blue a:hover span::before{
	background-image: url(../../img/common/arw_btn_prev_w.svg);
}


/* card-list
-----------------------------------------------------------------*/
	.card-list{
		display: block;
	}
	.card-list > li{
		width: 100%;
		padding: 35px 20px 30px;
		box-shadow: 0 5px 0 var(--red);
	}
	.card-list > li:nth-child(n+2){
		margin-top: 45px;
	}
	.card-list .ico{
		width: 70px;
		height: 60px;
		padding-right: 	10px;
		padding-top: 7px;
	}
	.card-list .ico small{
		font-size: min(2.5vw,1rem);
	}
	.card-list .ico span{
		font-size: 3rem;
		letter-spacing: -.02em;
	}


/* dot-list
-----------------------------------------------------------------*/
	.dot-list{
		font-size: 1.4rem;
		line-height: 1.4;
	}
	.dot-list li:nth-child(n+2){
		margin-top: 3px;
	}
	.dot-list li::before{
		transform: translateY(3px) scale(.7);
		margin-right: 2px;
	}


/* check-list
-----------------------------------------------------------------*/
  .check-list li{
		padding-left: 20px;
		background-size: 14px auto;
		font-size: 1.4rem;
	}
	.check-list li:nth-child(n+2){
		margin-top: 5px;
	}
	

/* FAQ
-----------------------------------------------------------------*/	
	.faq-list > div{
		border-bottom: 1px solid #a3a6af;
		font-size: 1.6rem;
	}
	.faq-list > div.open{
		padding-bottom: 20px;
	}
	.faq-list dt{
		padding: 20px 30px 20px 0;
		background: url(../../img/common/ico_plus_gray.svg) no-repeat right top 18px;
		background-size: 27px auto;
	}
	.faq-list > div.open dt{
		padding-bottom: 10px;
	}
	.faq-list dt .ico,
	.faq-list dd .ico{
		margin-right: 10px;
		font-size: 2rem;
	}
	.faq-list dd{
		display: none;
		padding: 18px 20px;
		text-align: justify;
		font-size: 1.4rem;
	}
	.faq-list dd p{
		display: flex;
	}
	.faq-list dd .ico{
		margin-right: 15px;
		font-weight: 500;
	}
	.faq-list dd .btn-base{
		margin-top: 10px;
	}
	.faq-list dd .btn-base a{
		max-width: 240px;
		width: 100%;
		margin-inline: auto;		
	}
	.faq-list dd .note{
		margin-top: 5px;
		font-size: 1.1rem;
	}


/* ページ内リンクナビ
-----------------------------------------------------------------*/
	.page-nav-list{
		flex-wrap: wrap;
	}
	.page-nav-list li a{
		height: 55px;
		font-size: 1.4rem;
	}
	.page-nav-list li a span{
		padding: 12px 0;
		background-position: center bottom;
		background-size: 10px auto;
	}
	.page-nav-list li a:hover{
		background: var(--light);
		color: var(--dark);
	}
	.page-nav-list li a:hover span{
		background-image: url(../../img/common/arw_down.svg);
	}


/* 表組み
-----------------------------------------------------------------*/
	.info-table-list{
		font-size: 1.4rem;
	}
	.info-table-list > div{
		display: block;
	}
	.info-table-list dt{
		width: 100%;
		padding: 20px;
		border-bottom: 1px solid #999;	
	}
	.info-table-list dd{
		padding: 25px 20px;
	}


/* 注釈
-----------------------------------------------------------------*/
	.note,
	.notes li{
		font-size: 1.1rem;
	}


/*--------------------------------------------------------------------------
   cont-navigation
---------------------------------------------------------------------------*/
  .cont-navigation{
    padding: 60px 0 90px;
  }
  .cont-navigation h2{
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
  .cont-navigation .cont-navigation-list{
    display: block;
  }
  .cont-navigation .cont-navigation-list li{
    width: 100%;
    margin-left: 0;
  }
  .cont-navigation .cont-navigation-list li:nth-child(n+2){
    margin-top: 15px;
  }
  .cont-navigation .cont-navigation-list li a{
    height: 55px;
    font-size: 1.6rem;
  }
  .cont-navigation .cont-navigation-list li a::after{
    right: 7px;
    bottom: 7px;
    width: 22px;
    height: 22px;
  }
  .cont-navigation .cont-navigation-list li a small{
    display: inline-block;
    margin-left: 5px;
    font-size: 1.4rem;
  }
	.cont-navigation._support .cont-navigation-list li a small{
		display: block;
		font-size: 1.1rem;
	}

/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/

/* cv
-----------------------------------------------------------------*/
  #Cv{
    padding: 80px 0;
  }
  #Cv .cv-bnr-list{
    display: block;
		max-width: 310px;
    margin: 0 auto 35px;
  }
  #Cv .cv-bnr-list li{
    width: 100%;
  }
	#Cv .cv-bnr-list li:nth-child(n+2){
		margin-top: 17px;
	}
  #Cv .cv-bnr-list li a{
    height: 107px;
  }
  #Cv .cv-bnr-list li a::after{
    width: 22px;
    height: 22px;
  }
  #Cv .cv-bnr-list li a:hover::after{
    transform: scale(1);
  }
	#Cv .cv-bnr-list .pic{
		width: 60px;
	}
  #Cv .cv-bnr-list .ttl{
    margin-left: 15px;
    font-size: 1.7rem;
  }
  #Cv .cv-bnr-list .ttl strong{
    margin-bottom: 5px;
    font-size: 2.4rem;
  }
	#Cv .cv-bnr-list li.simulation .ttl{
		line-height: 1.2;
		font-size: 1.4rem;
	}
	#Cv .cv-bnr-list li.simulation .ttl strong{
		margin-top: 3px;
		font-size: 2rem;
	}
	#Cv .cv-bnr-list li.simulation .ttl strong span{
		display: inline;
	}
  #Cv .cv-bnr-list + p{
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  #Cv .btn a{
		max-width: none;
		width: 240px;
    margin-inline: auto;
  }
	

/* cv02
-----------------------------------------------------------------*/
  #Cv02{
    padding: 80px 0;
  }
  #Cv02 .cv-btn-list{
    display: block;
    max-width: 295px;
  }
  #Cv02 .cv-btn-list li{
    max-width: none;
    width: 100%;
  }
	#Cv02 .cv-btn-list li:nth-child(n+2){
		margin-top: 25px;
	}
  #Cv02 .cv-btn-list h3{
    margin-bottom: 10px;
		
  }
	#Cv02 .cv-btn-list .btn a{
		width: 242px;
    margin-inline: auto;
  }


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
  #Footer{
    padding: 60px 0;
  }
  footer .tel{
    margin-bottom: 40px;  
  }
  footer .tel h3{
		margin-bottom: 20px;
    font-size: 2rem;
		line-height: 1.5;  
  }
  footer .tel-cont{
    display: block;
		text-align: center;
  }
	footer .tel-cont .owl,
	footer .hours-days{
	 display: inline-table;
	}
	footer .tel-cont .owl{
		width: 70px;
	}
	footer .hours-days{
		transform: translateY(20%);
		width: 80px;
	}
  footer .tel-cont .phone-number{
		width: 100%;
    margin: 15px 0; 
  }
  footer .tel-cont .phone-number a{
		justify-content: center;
		width: 100%;
    margin-inline: 0;  
  }
	 footer .tel-cont .phone-number .freecall{
		display: inline-block;
		width: 36px; 
	 }
	footer .tel-cont .phone-number strong{
		margin-left: 10px;
		font-size: min(10vw, 4rem);
		white-space: nowrap;
	}
	footer .tel-cont .mobile{
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		font-size: 1.4rem;
	}
	footer .tel-cont .mobile a{
		display: inline-block;
		font-size: 2.4rem;
	}
  footer .tel-cont .note{
		margin-top: 10px;
		width: 100%;
  }
  footer .ft-info-list{
    display: block;
		max-width: 295px;
    margin: 0 auto 35px;  
  }
  footer .ft-info-list li{
    width: 100%;  
  }
	footer .ft-info-list li:nth-child(n+2){
		margin-top: 15px;
	}
  footer .ft-info-list li a{
		display: block;
    min-height: inherit;
    padding: 10px 18px;
  }
  footer .ft-info-list li a:hover{
    opacity: 1;  
  }
	footer .ft-info-list .ico{
		flex-shrink: 0;
		width: 36px;
	}
  footer .ft-info-list .txt{
    margin-left: 13px;
    font-size: 1.2rem;
  }
  footer .ft-info-list li:last-child .txt{
    font-size: 1.2rem;  
  }
  footer .ft-txt-link-list{
		width: calc(100% + 40px);
    margin: 0 0 15px -20px;  
  }
  footer .ft-txt-link-list li{
    display: inline-block;
    margin: 0 3px 15px;  
  }
  footer .ft-txt-link-list a:hover{
    opacity: 1;  
  }
  footer .copyright{
		width: calc(100% + 40px);
		margin-left: -20px;
    font-size: 1.1rem;  
  }

  
}

