@charset "utf-8";

/*----------------------------------

Setup

----------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
  -webkit-animation: bodyFadeIn 4s ease 0s 1 normal;
  animation: bodyFadeIn 4s ease 0s 1 normal;
}

body {
  height: 100%;
  text-align: left;
  color: var(--main-color);
  font-size: 100%;
  font-weight: 400;
  font-family: var(--main-font);
  letter-spacing: .18em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;  
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--main-color);
  transition: all .3s;
}

a:hover {
  transform: translateY(5px);
}


::-moz-selection {
  background: var(--main-color);
  color: #fff;
}

::selection {
  background: var(--main-color);
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}


.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.read {
  text-align: justify;
  text-justify: inter-ideograph;
}

.btn a {
  display: block;
  border: solid 2px var(--main-color);
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 18px 10px;
  position: relative;
}

.btn a:after {
  content: ">";
  position: absolute;
  right: 25px;
  top: calc(50% - .7em);
  font-size: 2.2rem;
  transform: scale(0.5, 1);
}

.out a {
  pointer-events: none;
  opacity: .3;
}





@media screen and (max-width: 768px) {

.btn a {
  font-size: min(3.4vw, 1.6rem);
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.inner {
  margin: 0 auto;
  padding: 0 min(5%, 30px);
}

}


/*----------------------------------

Footer

----------------------------------*/
footer {
  padding: 110px 50px 60px;
  color: #fff;
  background: var(--main-color);
}

footer > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: space-between;
  justify-content: space-between;
}

footer > div .official {
  width: 200px;
}

footer .sns > section:nth-of-type(2) {
  margin-top: 40px;
}

footer h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

footer ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

footer li {
  width: auto;
}

footer li:not(:first-of-type) {
  margin-left: 30px;
}

footer li a {
  display: inline-block;
  height: 25px;
}

footer li a img {
  height: 100%;
  width: auto;
}

footer .copy {
  font-size: 1rem;
  text-align: right;
  margin-top: 60px;
}

footer .copy a {
  color: #fff;
}

footer a:hover {
  animation: ani_btn .5s ease-in-out infinite alternate;
}


@media screen and (max-width: 768px) {


footer {
  padding: 60px min(5%, 30px);
}

footer > div .official {
  width: 180px;
}

footer .sns > section {
  margin-top: 40px;
}

footer h2 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

footer li a {
  height: 22px;
}

footer > div {
  flex-direction: column;
}

footer ul {
  flex-wrap: wrap;
}

footer li {
  margin: 20px 26px 0 0;
}

footer li:not(:first-of-type) {
  margin-left: 0;
}

footer li:last-of-type {
  margin-right: 0;
}




}


