@charset "UTF-8";
/* CSS Document */
@font-face {
  src: url("../fonts/NotoSansJP-Black.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Anton-Regular.woff2") format("woff2");
  font-family: "Anton";
  font-weight: 400;
  font-display: swap;
}
@keyframes sup_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes sup_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes skewanime {
  100% {
    left: -10%;
  }
}
@keyframes headeranimation {
  0% {
    margin-top: -4em;
  }
  100% {
    margin-top: 0;
  }
}
/* animation */
.js-fadeInLeft, .js-fadeInRight, .js-fadeInUp, .js-slideInLeft, .js-slideInRight {
  opacity: 0;
}

.fadeInRight {
  animation: fadeInRight;
  animation-duration: 1s;
  opacity: 1;
}

.fadeInLeft {
  animation: fadeInLeft;
  animation-duration: 1s;
  opacity: 1;
}

.fadeInUp {
  animation: fadeInUp;
  animation-duration: 1s;
  opacity: 1;
}

.slideInLeft {
  animation: slideInLeft;
  animation-duration: 1s;
  opacity: 1;
}

.slideInRight {
  animation: slideInRight;
  animation-duration: 1s;
  opacity: 1;
}

/* タイトル・フォント */
.mainvisual {
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 24em;
  max-height: 395px;
  padding: 1em;
}
@media (max-width: 750px) {
  .mainvisual {
    height: 72vw;
    max-height: 72vw;
  }
}
.mainvisual .en {
  text-align: center;
  font-size: 3.75em;
  letter-spacing: 0.1em;
  font-family: "Anton";
}
@media (max-width: 750px) {
  .mainvisual .en {
    font-size: 3.03em;
  }
}
.mainvisual .h1default {
  font-size: 1.5em;
}
@media (max-width: 750px) {
  .mainvisual .h1default {
    font-size: 1.79em;
  }
}

.h1default, .h2default, .h3default, .h4default, .postshosai h1, .postshosai h2, .postshosai h3, .postshosai h4 {
  font-weight: bold;
}

.h1default {
  font-size: 2em;
  text-align: center;
}

.postshosai h1 {
  font-size: 2em;
}

.h2default, .h3default, .h4default, .postshosai h2, .postshosai h3, .postshosai h4 {
  margin-bottom: 1em;
}

.h2default, .postshosai h2 {
  font-size: 2.125em;
  border-bottom: 1px solid #4d4d4d;
  margin-bottom: 2.5em;
}
@media (min-width: 751px) {
  .h2default, .postshosai h2 {
    padding-bottom: 1.5em;
  }
}
@media (max-width: 750px) {
  .h2default, .postshosai h2 {
    font-size: 1.8em;
    padding-bottom: 0.2em;
    margin-bottom: 12.8vw;
  }
}

.h3default, .postshosai h3 {
  position: relative;
  font-size: 1.5625em;
  padding-left: 1.3em;
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  .h3default, .postshosai h3 {
    font-size: 1.25em;
  }
}
.h3default::before, .postshosai h3::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.8em;
  height: 3px;
  background: black;
}

.h4default, .postshosai h4 {
  font-size: 1.1em;
}

.postshosai h2 {
  margin-top: 2em;
}

.postshosai h3, .postshosai h4 {
  margin-top: 1.5em;
}

.marker_yellow {
  background: linear-gradient(transparent 60%, #ffff00 60%);
}

.postshosai p {
  margin-bottom: 3em;
}
.postshosai ul {
  padding-left: 1.5em;
}
.postshosai ul > li {
  list-style-type: disc;
}
.postshosai ul > li > ul {
  padding-left: 1.5em;
}
.postshosai ol {
  padding-left: 1.5em;
}
.postshosai ol > li {
  list-style-type: decimal;
}

/* コンテンツ */
#breadcrumb {
  font-size: 0.8em;
  margin-top: 1em;
}
#breadcrumb li {
  position: relative;
  display: inline;
  padding-right: 1.5em;
}
#breadcrumb li:not(:last-child):after {
  position: absolute;
  top: 0.5em;
  right: 0.6em;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
  margin: auto;
}
#breadcrumb a {
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
}
#breadcrumb a:hover {
  opacity: 0.8;
}

.pagenav {
  margin-top: 1em;
}
.pagenav ul {
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenav li {
  margin: 0 2em;
  font-weight: bold;
}
@media (max-width: 750px) {
  .pagenav li {
    margin: 0 0.7em;
  }
}
.pagenav li a, .pagenav li span {
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 1.25em;
  text-decoration: none;
  border: 1px solid black;
  color: white;
  color: white;
  background-color: black;
}
@media (max-width: 750px) {
  .pagenav li a, .pagenav li span {
    font-size: 1.43em;
  }
}
.pagenav .link_page, .pagenav .current_page {
  text-align: center;
  line-height: 2;
  margin: 0 0.25em;
}
.pagenav .link_page {
  color: white;
  background-color: black;
}
.pagenav .link_page:hover {
  color: black;
  background-color: white;
  opacity: 1;
}
.pagenav .link_page.first, .pagenav .link_page.last {
  width: 0;
  height: 0;
  border-style: solid;
  background: white;
}
.pagenav .link_page.first:hover, .pagenav .link_page.last:hover {
  background: transparent;
}
.pagenav .link_page.first {
  border-width: 0.7em 1.2em 0.7em 0;
  border-color: transparent black transparent transparent;
  margin-right: 0.5em;
}
.pagenav .link_page.last {
  border-width: 0.7em 0 0.7em 1.2em;
  border-color: transparent transparent transparent black;
  margin-left: 0.5em;
}
.pagenav .current_page {
  color: black;
  background-color: white;
}

.pagelink ul {
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* no prefix*/
  display: flex;
  flex-wrap: wrap;
}
.pagelink li {
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  /* no prefix*/
  display: flex;
}
@media (min-width: 751px) {
  .pagelink ul {
    margin-left: -1em;
  }
  .pagelink li {
    width: calc(20% - 1em);
    margin-left: 1em;
  }
  .pagelink li:nth-child(n+6) {
    margin-top: 1em;
  }
}
@media (max-width: 750px) {
  .pagelink ul {
    margin-left: -4vw;
  }
  .pagelink li {
    width: calc(50% - 4vw);
    margin-left: 4vw;
  }
  .pagelink li:nth-of-type(2) {
    margin-top: 0;
  }
  .pagelink li:nth-child(n+3) {
    margin-top: 4vw;
  }
}
.pagelink a {
  position: relative;
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  border: 1px solid black;
  color: black;
  background-color: white;
  padding: 0.5em 0.75em;
}
.pagelink a:hover {
  text-decoration: none;
  color: white;
  background-color: black;
}

.kakomi {
  background-color: #eaeaea;
  padding: 4.375em 4.375em 5.625em;
}
@media (max-width: 750px) {
  .kakomi {
    padding: 1.96em 1.79em 3.92em;
  }
}

@media (min-width: 751px) {
  .imgflex {
    display: -ms-flexbox;
    /* prefix -> -webkit-*/
    display: -webkit-flex;
    /* no prefix*/
    display: flex;
  }
}
@media (min-width: 751px) {
  .imgflex .imgbox {
    -webkit-flex: 1 0 47%;
    flex: 1 0 47%;
    width: 47%;
    max-width: 47%;
  }
}
@media (max-width: 750px) {
  .imgflex .textbox {
    padding-top: 3em;
  }
}
@media (min-width: 751px) {
  .imgflex .textbox {
    padding-left: 5em;
  }
}
@media (min-width: 751px) {
  .imgflex.alter {
    flex-direction: row-reverse;
  }
}
@media (max-width: 750px) {
  .imgflex.alter .textbox {
    padding-top: 1em;
  }
}
@media (min-width: 751px) {
  .imgflex.alter .textbox {
    padding-right: 2em;
    padding-left: 0;
  }
}

.wp-caption-text {
  font-size: 0.8em;
  color: gray;
  line-height: 1.4 !important;
  margin-top: 0.5em;
}

.tablelist {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 750px) {
  .tablelist.block table {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .tablelist.block th, .tablelist.block td {
    display: block;
    white-space: normal;
  }
}

table {
  width: 100%;
  border-top: 1px solid black;
  border-right: 1px solid black;
}
table th, table td {
  line-height: 1.6;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  vertical-align: middle;
  padding: 1em;
}
@media (max-width: 750px) {
  table th, table td {
    white-space: nowrap;
    padding: 0.5em 0.75em;
  }
}
table th {
  text-align: center;
  white-space: nowrap;
}
table thead {
  color: white;
  background-color: black;
}
table thead th {
  border-right: 1px solid white;
}
table tbody th {
  background-color: rgba(0, 0, 0, 0.2);
}
table tbody td {
  background-color: white;
}

.flickmessage {
  background-color: whitesmoke;
  text-align: center;
  padding: 0.5em;
  margin-bottom: 0.5em;
}
@media (min-width: 751px) {
  .flickmessage {
    display: none;
  }
}

@media (min-width: 751px) {
  .dllist dl {
    display: -ms-flexbox;
    /* prefix -> -webkit-*/
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-align-items: center;
    /* no prefix*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.dllist dt, .dllist dd {
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  .dllist dt {
    margin-bottom: 0;
  }
}
@media (min-width: 751px) {
  .dllist dt {
    -webkit-flex: 1 0 20%;
    flex: 1 0 20%;
    width: 20%;
    max-width: 20%;
  }
}
@media (min-width: 751px) {
  .dllist dd {
    -webkit-flex: 1 0 80%;
    flex: 1 0 80%;
    width: 80%;
    max-width: 80%;
  }
}

.cta_dl {
  background-color: whitesmoke;
  padding: 3em;
}
.cta_dl .title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}

.snsbox {
  text-align: center;
  margin-top: 1em;
}
.snsbox a {
  width: 2em;
  height: 2em;
  margin-right: 1em;
}
.snsbox a:hover {
  opacity: 0.8;
}
@media (max-width: 750px) {
  .snsbox a {
    width: 5.3vw;
  }
}

.faqwrap .question, .faqwrap .answer {
  position: relative;
  font-weight: bold;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
}
.faqwrap .question::before, .faqwrap .answer::before {
  position: absolute;
  top: 1em;
  left: 0;
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix*/
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
}
.faqwrap .question {
  border-bottom: 1px solid #e6e6e6;
}
.faqwrap .question::before {
  content: "Q";
  color: white;
  background-color: black;
}
.faqwrap .question h1 {
  font-size: 1.3em;
}
.faqwrap .answer::before {
  content: "A";
  color: black;
  border: 1px solid black;
}
.faqwrap .answer > div {
  font-size: 1.1em;
}
.faqwrap#answeropen .question {
  cursor: pointer;
}
.faqwrap#answeropen .answer {
  display: none;
}

.tabwrap .tab-area {
  display: -ms-flexbox;
  /* prefix -> -webkit-*/
  display: -webkit-flex;
  /* no prefix*/
  display: flex;
}
@media (min-width: 751px) {
  .tabwrap .tab-area {
    width: 35em;
  }
}
.tabwrap .tab-area .tab {
  width: 100%;
  background-color: #b3b3b3;
  font-size: 1.1em;
  text-align: center;
  padding: 1em 0.5em;
  transition: all ease 0.5s;
  cursor: pointer;
  color: white;
}
@media (max-width: 750px) {
  .tabwrap .tab-area .tab {
    font-size: 1.25em;
    padding: 0.5em;
  }
}
.tabwrap .tab-area .tab.active, .tabwrap .tab-area .tab:hover {
  color: white;
  background-color: black;
}
.tabwrap .tab-area .tab.active {
  cursor: auto;
}
.tabwrap .content-area {
  border: 1px solid #808080;
  padding: 7.5em 3.125em;
}
@media (max-width: 750px) {
  .tabwrap .content-area {
    padding: 3.92em 1.79em;
  }
}
.tabwrap .content-area .content {
  display: none;
}
.tabwrap .content-area .content.show {
  display: block;
  animation: show 0.5s linear 0s;
}

article.postshosai .articleheader {
  margin-bottom: 2em;
}
article.postshosai .insert-image {
  margin: 1em 0;
}
article.postshosai .wp-caption {
  max-width: 100%;
  margin-bottom: 1em;
}
article.postshosai .wp-caption .insert-image {
  margin-bottom: 0;
}
article.postshosai .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.newslist li {
  color: #808080;
  border-bottom: 1px solid;
  font-weight: bold;
}
.newslist li:first-of-type {
  border-top: 1px solid;
}
@media (min-width: 751px) {
  .newslist li {
    display: -ms-flexbox;
    /* prefix -> -webkit-*/
    display: -webkit-flex;
    -webkit-align-items: center;
    /* no prefix*/
    display: flex;
    align-items: center;
    padding: 3.75em 0;
  }
}
@media (max-width: 750px) {
  .newslist li {
    padding: 2.31em 0;
  }
}
.newslist li .date {
  font-size: 1.0625em;
}
@media (max-width: 750px) {
  .newslist li .date {
    font-size: 0.86em;
  }
}
.newslist li a {
  font-size: 1.0625em;
  color: #808080;
}
@media (min-width: 751px) {
  .newslist li a {
    margin-left: 7.5em;
  }
}
@media (max-width: 750px) {
  .newslist li a {
    font-size: 1.07em;
  }
}