@charset "utf-8";

/*----------------------------------

setup

----------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  background: #fff;
  height: 100%;
  text-align: left;
  color: #111;
  font-size: 100%;
  font-weight: 400;
  font-family: 'Noto Sans JP',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: .1em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;  
  -webkit-animation: bodyFadeIn 3s ease 0s 1 normal;
  animation: bodyFadeIn 3s ease 0s 1 normal;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ff3600;
  transition: all .3s;
}

a:hover {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

::-moz-selection {
  background: #ff3600;
  color: #fff;
}

::selection {
  background: #ff3600;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}

main {
  font-size: 1.4rem;
  display: block !important; /* ie11 */
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.btn a {
  display: block;
  border: solid 2px #111;
  padding: 25px 30px;
  min-width: 160px;
  text-align: center;
  display: inline-block;
  color: #111;
}



@media screen and (max-width: 768px) {

main {
  font-size: 1.3rem;
}

.wrap {
  padding: 0 20px;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.btn a {
  display: block;
  padding: 20px 20px;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}


}


/*----------------------------------

@keyframes

----------------------------------*/
@keyframes bodyFadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
 


/*----------------------------------

header

----------------------------------*/
header.global {
  font-family: 'Teko','Noto Sans JP',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: .05em;
  position: absolute;
  background: #fff;
  width: 30vw;
  height: 100%;
  padding: 40px 50px;
  border-bottom: solid 2px #ff3600;
}

header.global h1 {
  font-size: 2.6rem;
  margin-bottom: 35px;
}

header.global h1 span {
  font-size: 1.4rem;
}

.iziModal {
  display: block !important;
  position: inherit !important;
  background: none!important;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.menu-trigger {
  display: none;
}

header.global .menu li {
  margin-top: 15px;
  font-size: 1.8rem;
}

header.global a {
  color: #111;
}





@media screen and (max-width: 768px) {

.iziModal {
  display: none !important;
  position: inherit !important;
  background: none !important;
}

.iziModal.appear {
  display: block !important;
  position: fixed !important;
  z-index: 9999;
  height: 100vh;
}

.iziModal.appear .inner {
	background: #ff3600 !important;
  height: 100vh;
  width: 100vw;
  transition: all .3s;}

.iziModal.appear .menu {
  text-align: right;
  padding: 30px 30px 0 0;
}

.menu-trigger {
  position: absolute;
  top: calc(50% - 10px);
  width: 30px;
  height: 10px;
  z-index: 10000;
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #ff3600;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 16px;
  display: none;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
  background-color: #fff;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
  background-color: #fff;
}

header.global {
  padding: 20px;
  width: auto;
}

header.global h1 {
  font-size: 2.2rem;
}

header.global h1 span {
  font-size: 1.1rem;
}

header.global .menu li {
  margin: 0 0 20px 0;
  font-size: 2rem;
}

header.global .menu li:last-of-type img {
  width: 32px;
}

header.global li a {
  color: #fff;
}

header.global .menu a::after {
  background: rgba(255,255,255,.5);
}

header.global .menu .current a::after {
  background: rgba(255,255,255,.5);
}



}





/*----------------------------------

footer

----------------------------------*/
footer {
  font-family: 'Teko','Noto Sans JP',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: .05em;
  background: #111;
  padding: 30px 50px;
  color: #fff;
  margin-top: 110px;
}

footer p {
  text-align: right;
  font-size: 1.4rem;
}



@media screen and (max-width: 768px) {
footer {
  padding: 30px 20px;
  margin-top: 70px;
  font-size: 1.2rem;
}


}


