@charset "utf-8";


/*----------------------------------

setup

----------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  text-align: left;
  color: #111;
  font-size: 100%;
  font-weight: 400;
  font-family: "Roboto","游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: .14em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;  
  animation: bodyFadeIn 2s ease 0s 1 normal;
}

@keyframes bodyFadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

a {
  display: inline-block;
  text-decoration: underline;
  color: #e82400;
  transition: all .3s;
}

a:hover {
  text-decoration: none;
}

::-moz-selection {
  background: #ffeba9;
  color: #e82400;
}

::selection {
  background: #ffeba9;
  color: #e82400;
}

img {
  width: 100%;
  height: auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.note {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #9ca0a8;
}

.btn a {
	background: #e82400;
	color: #fff;
	border-radius: 4px;
  padding: 16px 80px 16px 70px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .14em;
  position: relative;
  text-decoration: none;
}

.btn a::before,
.btn a::after,
.btnmini a::before,
.btnmini a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all .3s;
}

.btn a::before {
  right: 40px;
  width: 16px;
  height: 2px;
  background: #fff;
}

.btn a::after {
  right: 40px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn a:hover::before,
.btnmini a:hover::before {
	transform: translateX(5px) rotate(0deg);
}

.btn a:hover::after,
.btnmini a:hover::after {
	transform: translateX(5px) rotate(45deg);
}

.btnmini a {
	color: #e82400;
	border: solid 1px #ddd;
	border-radius: 4px;
  padding: 14px 60px 14px 50px;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: .14em;
  position: relative;
  text-decoration: none;
}

.btnmini a::before {
  right: 30px;
  width: 13px;
  height: 1px;
  background: #e82400;
}

.btnmini a::after {
  right: 30px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e82400;
  border-right: 1px solid #e82400;
  transform: rotate(45deg);
}

.external a {
  background: #464646;
  color: #fff;
  border-radius: 4px;
  padding: 16px 80px 16px 70px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .14em;
  position: relative;
  text-decoration: none;
}

.external a::after {
  display: inline-block;
  content: "";
  margin-left: 10px;
  right: 40px;
  width: 17px;
  height: 13px;
  background: url(../img/ico_external.svg) no-repeat right center;
  transition: all .3s;
}

.external a:hover::after {
  transform: translateX(5px) rotate(0deg);
}

sup {
	font-size: 50%;
	vertical-align: super;
	padding-right: 4px;
}

.inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}




@media screen and (max-width: 768px) {

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.inner {
	padding: 0 4vw;
}

.note {
	font-size: 2.2vw;
}

.btn a {
  padding: 3.8vw 7vw 3.8vw 3vw;
  width: 100%;
  font-size: 3.8vw;
  box-sizing: border-box;
}

.btn a::before {
  right: 8vw;
  width: 3.6vw;
}

.btn a::after {
  right: 8vw;
  width: 1.6vw;
  height: 1.6vw;
}

.btnmini a {
  padding: 3.6vw 7vw;
  width: 100%;
  font-size: 3.2vw;
  box-sizing: border-box;
}

.btnmini a::before {
  right: 8vw;
  width: 3.5vw;
}

.btnmini a::after {
  right: 8vw;
  width: 1.48vw;
  height: 1.48vw;
}

.external a {
  padding: 3.8vw 3vw;
  width: 100%;
  font-size: 3.2vw;
  box-sizing: border-box;
  line-height: 1.6;
}

.external a::after {
  margin-left: 2vw;
}


}







/*----------------------------------

header

----------------------------------*/
header.global {
  padding: 30px 40px;
}

header.global h1 {
  width: 88px;
}


@media screen and (max-width: 768px) {

header.global {
	padding: 4vw;
}

header.global h1 {
  width: 16vw;
}

}



/*----------------------------------

footer

----------------------------------*/
footer .inner {
	padding: 50px 40px;
}

footer nav,
footer nav ul  {
	font-size: 1.2rem;
	display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

footer li {
	margin-left: 20px;
}

footer li a {
	text-decoration: underline;
  color: #111;
}

footer li a:hover {
	text-decoration: none;
}

footer dl  {
	margin-top: 20px;
	display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  align-items: center;
}

footer dt {
	width: 60px;
}

footer dd {
	font-size: 1.1rem;
	padding: 8px 0 0 10px;
}


@media screen and (max-width: 768px) {

footer .inner {
	padding: 8vw 4vw;
}

footer nav,
footer nav ul {
	font-size: 2.8vw;
}

footer dl {
	margin-top: 4vw;
}

footer dt {
	width: 15vw;
}

footer dd {
	font-size: 2.2vw;
}


}





