@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ------------------------------
variables
------------------------------ */

/* ------------------------------
common
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: sans-serif;
  line-height: 1;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

a {
  color: #ffffff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, figure {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

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

div.header-wrapper {
    background-color: #111111;
    box-shadow: 0px 10px 16px 0px rgba(25, 25, 25, 0.8);
    width: 100%;
}
@media screen and (min-width: 960px) {
    div.header-wrapper {
    }
}

header {
    margin-bottom: 28px;
	position: relative;
    width: 100%;
}
@media screen and (min-width: 960px) {
    header {
        margin: 0 auto 28px;
        width: 960px;
    }
}

header.index {
  animation: topimage-animation 5s 1s ease 1 normal forwards running;
  background-repeat: no-repeat;
	background-size: cover;
    padding-bottom: 60%;
}
@media screen and (min-width: 960px) {
    header.index {
        padding-bottom: 30%;
    }
}

@keyframes topimage-animation {
  100% {
    background-position: center 50%;
  }
}

@keyframes topimage-animation-b {
  0% {
    background-position: center 50%;
  }
  100% {
    background-position: center 104px;
  }
}

@keyframes topimage-animation-f {
  100% {
    background-position: center 50%;
  }
}

header a {
    color: #fff;
}

header div.header-content {
    background-color: rgba(17, 17, 17, 0.8);
    height: 96px;
}
@media screen and (min-width: 960px) {
    header div.header-content {
        height: 120px;
    }
}

header div.logo {
    padding: 10px;
    position: absolute;
        left: 0;
        top: 0;
    z-index: 100;
}
@media screen and (min-width: 960px) {
    header div.logo {
        padding: 14px;
    }
}

header div.logo img {
    height: 76px;
    width:auto;
}
@media screen and (min-width: 960px) {
    header div.logo img {
        height: 92px;
    }
}

header div.shade-bottom {
    background: linear-gradient(rgba(17, 17, 17, 0), rgba(17, 17, 17, 1));
    height: 40px;
    position: absolute;
        bottom: 0;
        left: 0;
    width: 100%;
}

header div.globalmenu {
    position: relative;
}
@media screen and (min-width: 960px) {
    header div.globalmenu {
        position: absolute;
            right: 0;
            top: 16px;
    }
}

header div.globalmenu #globalmenu-button-check {
    display: none;
}

header div.globalmenu label.globalmenu-button-label {
    border-radius: 100px;
    position: fixed;
    top: 20px;
    right: 16px;
    display: flex;
    height: 56px;
    width: 56px;
    justify-content: center;
    align-items: center;
    z-index: 110;
    background-color: #111111;
}
@media screen and (min-width: 960px) {
    header div.globalmenu label.globalmenu-button-label {
        display: none;
    }
}

header div.globalmenu label.globalmenu-button-label span,
header div.globalmenu label.globalmenu-button-label span:before,
header div.globalmenu label.globalmenu-button-label span:after {
    content: '';
    display: block;
    height: 4px;
    width: 29px;
    border-radius: 4px;
    background-color: #FF3A2D;
    position: absolute;
}

header div.globalmenu label.globalmenu-button-label span:before {
    bottom: 10px;
}

header div.globalmenu label.globalmenu-button-label span:after {
    top: 10px;
}



header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label span {
    background-color: rgba(255, 255, 255, 0);
}

header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label span::before {
    bottom: 0;
    transform: rotate(45deg);
}

header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label span::after {
    top: 0;
    transform: rotate(-45deg);
}

header div.globalmenu div.globalmenu-list {
    display: none;
    width: 60%;
    position: fixed;
    top: 76px;
    right: 0;/*leftの値を変更してメニューを画面外へ*/
    z-index: 110;
    background-color: #111111;
    transition: all 0.5s;/*アニメーション設定*/
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list {
        background-color: transparent;
        display: block;
        position: relative;
            top: 0;
        width: 640px;
    }
}

header div.globalmenu #globalmenu-button-check:checked ~ div.globalmenu-list {
    display: block; /*メニューを画面内へ*/
}

header div.globalmenu div.globalmenu-list ul {
    padding: 12px 16px;
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list ul {
        display: flex;
        justify-content: space-around;
        padding: 16px;
    }
}

header div.globalmenu div.globalmenu-list ul li {
    list-style: none;
}

header div.globalmenu div.globalmenu-list ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list ul li a {
        padding: 8px 16px;
    }
}

header div.globalmenu div.globalmenu-list ul li a dl dd.en {
    color: #FF3A2D;
    font-family: 'Anton', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.3;
}

header div.globalmenu div.globalmenu-list ul li a dl dd.ja {
    color: #777;
    font-size: 1.4rem;
    line-height: 1.3;
}


header div.globalmenu div.globalmenu-list ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 2px #FF3A2D;
    border-right: solid 2px #FF3A2D;
    transform: rotate(45deg);
    position: absolute;
    right: 4px;
    top: 28px;
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list ul li a::before {
        border: none;
    }
}

/* ------------------------------
Content
------------------------------ */

div.content-wrapper {
    width: 100%;
}

div.content {
    position: relative;
    width: 100%;
}
@media screen and (min-width: 960px) {
    div.content {
        margin: 0 auto;
        width: 960px;
    }
}


div.content section {
	margin-bottom: 28px;
}

div.content section.introduction {
}

div.content section.introduction p:first-child {
    margin-bottom: 16px;
}

div.content section.introduction p img {
    width: 100%;
}


div.content h2 {
    margin-bottom: 16px;
    padding: 0 16px;
    line-height: 1.2;
}

div.content h2 span.en {
    color: #FF3A2D;
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 5.6rem;
    letter-spacing: 0.1rem;
}

div.content h2 span.ja {
    color: #777;
    font-size: 1.8rem;
    font-weight: bold;
}

div.content h3 {
	font-size: 2.4rem;
    padding: 0 16px;
}

div.content h3.title {
    margin-bottom: 16px;
}

div.content h3.title span.first-letter {
    background-color: #FF3A2D;
    border-radius: 100px;
    color: #fff;
    font-size: 3.6rem;
    font-weight: bold;
    margin-right: 0.1em;
    padding: 8px;
}

div.content p {
    padding: 0 16px;
}

div.content p.noResult {
	margin-bottom: 24px;
}

div.content div.localMenu {
}

div.content div.localMenu ul {
	background-color: #444;
	border-collapse: collapse;
	display: table;
	table-layout: fixed;
	width: 100%;
}

div.content div.localMenu ul li {
	display: table-cell;
	text-align: center;
}

div.content div.localMenu ul li a {
	color: #fff;
	display: block;
	font-size: 1.5rem;
	padding: 12px;
}

div.content div.localMenu ul li.current a {
    background-color: #FF3A2D;
	color: #fff;
}

div.content div.pager {
	padding: 0 8px;
	text-align: center;
}

div.content div.pager ul {
}

div.content div.pager ul li {
	border: none;
	display: inline-block;
	padding: 8px;
}

div.content div.pager ul li a {
}

div.content div.pager ul li.off {
	color: #777;
}

div.content div.backNavigation {
}

div.content div.backNavigation ul {
}

div.content div.backNavigation ul li {
	margin-bottom: 4px;
	text-align: center;
}

div.content div.backNavigation ul li a {
	font-size: 1.4rem;
	padding: 0 16px;
    position: relative;
}


div.content div.backNavigation ul li a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #FF3A2D;
    border-left: solid 2px #FF3A2D;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 2px;
}


div.content dl.form {
    padding: 0 16px;
}

div.content dl.form dt {
	font-size: 1.8rem;
	margin-bottom: 8px;
}

div.content dl.form dd {
	margin-bottom: 16px;
	padding-left: 16px;
}


div.content dl.form input.field,
div.content dl.form textarea {
	appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	border: none;
	border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
	font-size: 100%;
	outline: none;
	margin: 0 0 8px 0;
	padding: 8px;
}

div.content dl.form select {
	appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	background: #FFF;
	border: none;
	border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
	font-size: 100%;
	line-height: 1;
	outline: none;
	margin: 0 0 8px 0;
	padding: 8px;
}

div.content dl.form .annotation {
	color: #BBB;
	font-size: 1.4rem;
}

div.content dl.form .caution {
	color: #FF3A2D;
	font-size: 1.4rem;
}

div.content dl.form dd ul.terms {
	border: 1px solid #777;
	padding: 8px;
}

div.content dl.form ul.terms li {
}

div.content dl.form dd.submit {
	padding-top: 8px;
}

div.content dl.form dd.submit ul {
}

div.content dl.form dd.submit ul li {
	display: inline-block;
}

div.content dl.form dd.submit ul li input.button {
	appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	background: #FF3A2D;
	border: none;
	border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
	color: #FBFBFB;
	display: block;
	font-size: 100%;
	padding: 12px 0;
	text-decoration: none;
	width: 200px;
}


div.content div.linkList {
	margin-bottom: 24px;
}

div.content div.linkList p.noResult {
	padding: 24px 16px;
}

div.content div.linkList ul {
}

div.content div.linkList ul li a {
	border-bottom: 1px solid #555;
	display: block;
	padding: 16px;
}

div.content div.linkList ul li a dl {
	position: relative;
}

div.content div.linkList ul li a dl dt {
}

div.content div.linkList ul li a dl dd {
	color: #BBB;
	font-size: 1.4rem;
}

/* ------------------------------
Content What's new
------------------------------ */


div.content div.whatsnew {

}

div.content div.whatsnew p {
    color: #FF3A2D;
    font-weight: bold;
    text-align: center;
}

div.content div.link-to-souko {
	border: 2px solid #f62c1c;
	margin: 0 16px;
	line-height: 1;
}

div.content div.link-to-souko img {
	vertical-align: bottom;
}

div.content div.news-switcher {
  margin-bottom: 24px;
}

div.content div.news-switcher ul {
  display: flex;
  justify-content: center;
}

div.content div.news-switcher ul li {
  width: 50%;
}

div.content div.news-switcher ul li a {
  background-color: #444;
  color: #ffffff;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 12px 0;
  text-align: center;
  width: 100%;
}

div.content div.news-switcher ul li.current a.news-switcher-s {
  background-color: #FF3A2D;
}

div.content div.news-switcher ul li.current a.news-switcher-f {
  background-color: #2270aa;
}

div.content div.news-switcher ul li a span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
}

div.content div.news {
}

div.content div.news ul {
}

div.content div.news ul li {
	margin-bottom: 24px;
    padding: 0 16px;
}

div.content div.news ul li dl {
}

div.content div.news ul li dl dt {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

div.content div.news ul li dl dt span.first-letter {
    border-radius: 100px;
    color: #000;
    font-size: 3.6rem;
    font-weight: bold;
    margin-right: 0.1em;
    padding: 8px;
}

div.content div#snews ul li dl dt span.first-letter {
    background-color: #FF3A2D;
}

div.content div#fnews ul li dl dt span.first-letter {
    background-color: #2270aa;
}

div.content div.news ul li dl dd.image {
	margin-bottom: 16px;
    padding-left: 24px;
}

div.content div.news ul li dl dd.date {
	color: #999;
	font-size: 1.4rem;
    padding-left: 24px;
}

div.content div.news ul li dl dd.body {
    margin-bottom: 16px;
    padding-left: 24px;
}

div.content div.news p.linkTwitter a {
	background: url('/images/icon_twitter.png') left center no-repeat;
	background-size: 40px;
	display: block;
	font-size: 87.5%;
	padding: 16px 0 16px 48px;
}

/* ------------------------------
Content Board
------------------------------ */

div.content div.boardList {
	margin-bottom: 24px;
}

div.content div.boardList p.noResult {
	padding: 24px 16px;
}

div.content div.boardList ul {
}

div.content div.boardList ul li {
	border: 1px solid #777;
	display: block;
    margin: 16px;
	padding: 16px;
}

div.content div.boardList ul li div.buttonComment {
    margin-top: 16px;
}

div.content div.boardList ul li div.buttonComment a {
	background-color: #FF3A2D;
	border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
    display: block;
    font-size: 1.5rem;
    margin: 0 auto;
    padding: 8px 0;
    text-align: center;
    width: 160px;
}

div.content div.boardList ul li div.child {
	margin: 16px 0 0 24px;
}

div.content div.boardList ul li dl {
	position: relative;
}

div.content div.boardList ul li div.child dl {
    border-top: 1px solid #555;
    padding: 16px;
}

div.content div.boardList ul li div.child dl:last-child {
    border-bottom: 1px solid #555;
}

div.content div.boardList ul li dl dt,
div.content div.boardDetail dl dt {
	margin-top: 8px;
}

div.content div.boardList ul li dl dd,
div.content div.boardDetail dl dd {
	color: #BBB;
	font-size: 1.4rem;
}

div.content div.boardList ul li dl dd.delete {
	position: absolute;
		top: 0;
		right: 0;
}

div.content div.boardList ul li dl dd.delete a {
	color: #555;
	text-decoration: none;
}

div.content div.boardDetail {
	margin-top: 16px;
    padding: 0 16px;
}

div.content div.boardDetail dl {
    background: #252525;
    border: 1px solid #555;
    padding: 16px;
}

div.content div.boardList ul li dl dt {
	margin-top: 8px;
}

div.content div.boardList ul li dl dd {
	color: #BBB;
	font-size: 1.4rem;
}

/* ------------------------------
Content Question
------------------------------ */

div.content div.questionDetail {
    padding: 0 16px;
}

div.content div.questionDetail dl {
}

div.content div.questionDetail dl dt {
	color: #FF3A2D;
	font-family: 'Anton', sans-serif;
	font-size: 3.6rem;
    letter-spacing: 0.1rem;
}

div.content div.questionDetail dl dt {
	margin-top: 16px;
}

/* ------------------------------
Content Access
------------------------------ */

div.content div.googleMap {
    height: 0;
    overflow: hidden;
    margin: 0 16px;
    padding-top: 60%;
    position: relative;
}

div.content div.googleMap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

div.content dl.direction {
    padding: 0 16px 0 40px;
}

div.content dl.direction dt {
    margin-bottom: 8px;
}

div.content dl.direction dd {
    margin-bottom: 16px;
}

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

div.footer-wrapper {
    width: 100%;
}

footer {
    padding: 24px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 960px) {
    footer {
        margin: 0 auto;
        width: 960px;
    }
}

footer div.pageTop {
	position: fixed;
		bottom: -56px;
		right: 16px;
	z-index: 1000;
}

footer div.pageTop a {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
	display: block;
	width: 56px;
	height: 56px;
	text-align: center;
	color: #000;
	text-decoration: none;
}

footer div.pageTop a::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 3px #FF3A2D;
    border-left: solid 3px #FF3A2D;
    border-radius: 1px;
    transform: rotate(45deg);
    position: absolute;
    left: 20px;
    top: 23px;
}

footer div.links {
    text-align: center;
}

footer div.links ul {
    display: flex;
    flex-wrap: no-wrap;
    justify-content: center;
}

footer div.links ul li {
    padding: 0 0.5em;
}

footer div.links ul li img {
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.8;
    width: 48px;
}

footer p {

    font-size: 1.5rem;
    text-align: center;
}
