@charset "utf-8";
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}
html.is-load {
  opacity: 1;
  transition: opacity 0.5s;
}
body {
  color: #333;
  /*	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: 100%;
  height: 100%;
  min-width: 1000px;
  background: #fff;
  position: relative;
  overflow-x: hidden;
}
a {
  opacity: 1;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.7;
  transition: opacity 0.2s;
}
@media screen and (max-width: 960px) {
  body {
    min-width: 100%;
  }
}
.articleWrap {
  width: 960px;
  margin: auto;
  position: relative;
}
.wrap {
  width: 960px;
  margin: auto;
  position: relative;
}
.wrap::after {
  content: "";
  height: 0;
  display: block;
  clear: both;
}
@media screen and (max-width: 960px) {
  .articleWrap {
    width: auto;
  }
  .wrap {
    width: auto;
    height: 100%;
    margin: 0 20px;
  }
}

header {
  transition: transform 0.2s;
  position: fixed;
  width: 100%;
  min-width: 960px;
  height: 80px;
   background: #f5f5f5;
  z-index: 100;
  box-sizing: border-box;
}
body:not(.pageHome) header {
  background: #f5f5f5;
}
header.is-fixed {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  transition: transform 0.2s;
}
.header__inner {
  height: 100%;
  padding: 0 50px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body:not(.pageHome) .header__inner {
  padding: 0 50px;
}

.header__logo {
  width: 150px;
}
.header__logo a {
  width: 100%;
  height: 45px;
  background: url("../img/common/header_logo_scw01.svg") no-repeat 0 0 / 150px 45px;
  display: block;
}
.header__medialink {
  display: none;
}
.nav {
  float: right;
  margin: 0 150px 0 0;
}
.nav .header__logo,
.nav .header__logo a {
  display: none;
}
.nav ul {
  height: 80px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
}
.nav li {
  height: 100%;
  display: inline-block;
}
.nav li a {
  font-weight: 700;
  height: 100%;
  padding: 0 18px;
  position: relative;
  display: flex;
  align-items: center;
}
.nav.fv__nav li a {
  color: #fff;
  padding: 0 30px;
  background: #68c3c5;

}

.nav ul.header__navSP,
.nav ul.header__navSub {
  display: none;
}
.nav .btnSupportDdonation {
  display: none;
}
.nav .btnOneMinite {
  display: none;
}
.btnSupportDdonation {
  width: 125px;
  text-align: center;
  position: absolute;
  display: block;
  background-color: #ee8ab5;
  color: #fff;
  line-height: 36px;
  border-radius: 18px;
  right: 50px;
  z-index: 99;
}

@media screen and (min-width: 961px) {


  body:not(.pageHome) .nav li a {
    background-color: initial;
    color: #333333;
    padding: 0 18px;
  }
}

.btnOneMinite {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 10px 20px;
  padding: 10px;
  background: #666;
  border: solid 1px #999;
  border-radius: 5px;
  position: relative;
}
.header__navTrigger {
  display: none;
}

@media screen and (min-width: 961px) and (max-width: 1160px) {
  body:not(.pageHome) .nav li a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1160px) {
  .nav li a {
    padding: 0 10px;
  }
  body:not(.pageHome) .header__inner {
    padding: 0 20px;
  }
  body:not(.pageHome) .btnSupportDdonation {
    right: 20px;
  }
}
@media screen and (max-width: 960px) {
  header {
    min-width: auto;
    height: 60px;
    background: #f5f5f5;
  }
  header .header__logo {
    width: 125px;
  }
  header .header__logo a {
    width: 125px;
    height: 38px;
    background: url("../img/common/header_logo_scw01.svg") no-repeat 0 0 / 125px 38px;
  }
  .header__navTrigger {
    width: 30px;
    height: 32px;
    display: block;
  }
  .header__navTrigger.trigger--open {
    background: url("../img/common/header_icon_menu.svg") no-repeat center center / 30px 32px;
    position: absolute;
    top: 12px;
    right: 12px;
  }
  .header__navTrigger.trigger--close {
    background: url("../img/common/header_icon_close.svg") #808080 no-repeat center center / 30px 32px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
  }
  .header__medialink {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }
  .header__medialink a {
    width: 22px;
    margin: 0 10px;
    display: block;
  }
  .nav {
    width: 100%;
    height: 100%;
    float: none;
    margin: 0;
    padding: 10px 20px;
    background: #808080;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .nav .header__logo {
    width: 125px;
    display: block;
  }
  .nav .header__logo a {
    width: 125px;
    height: 38px;
    background: url("../img/common/header_logo_scw02.svg") no-repeat 0 0 / 125px 38px;
    display: block;
  }
  .nav ul {
    height: auto;
    margin: 0 -30px;
    padding: 0 10px;
    display: block;
  }
  .nav li {
    border-top: solid 1px #999;
    display: block;
  }
  .nav li a {
    font-size: 1.6rem;
    padding: 15px 30px;
    background: #808080;
  }
  .nav li a::before,
  .nav li a::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
  }
  .nav li a::after {
    right: 40px;
    transform: translate(0, -50%);
  }
  .nav ul.header__navPC li a::before {
    width: 17px;
    height: 17px;
    background: #fff;
    border-radius: 8px;
    right: 35px;
    transform: translate(0, -50%);
  }
  .nav ul.header__navPC li a::after {
    content: "＋";
    color: #808080;
    right: 35px;
  }
  .nav ul.header__navPC li.is-open a::after {
    content: "−";
  }
  .nav ul.header__navSP {
    border-bottom: solid 1px #999;
    display: block;
  }
  .nav ul.header__navSP li:first-child {
    border-top: none;
  }
  .nav ul.header__navSP li a {
    background: #666;
  }
  .nav ul.header__navSP li a::after {
    width: 6px;
    height: 10px;
    background: url(../img/common/icon_arrow_white01.svg) 0 center no-repeat;
    background-size: cover;
  }
  .nav ul.header__navSP li a {
    background: #666;
  }
  .nav ul.header__navSub {
    padding: 0 30px 0 77.5px;
    background: #666;
    border-top: solid 1px #999;
  }
  .nav ul.header__navSub li {
    height: auto;
  }
  .nav ul.header__navSub li:first-child {
    border-top: none;
  }
  .nav ul.header__navSub li a {
    font-size: 1.4rem;
    padding: 15px 30px 15px 0;
    background: #666;
  }
  .nav ul.header__navSub li a::before {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    transform: translate(0, 0);
    position: static;
  }
  .nav ul.header__navSub li:not(:first-child) a::before {
    content: "-";
    margin: 0 5px 0 0;
  }
  .nav ul.header__navSub li a::after {
    content: "" !important;
    width: 6px;
    height: 10px;
    background: url(../img/common/icon_arrow_white01.svg) 0 center no-repeat;
    background-size: cover;
    right: 40px;
    transform: translate(0, -50%);
  }
  .nav ul.header__navSub li:not(:first-child) a {
    color: #b3b3b3;
  }
  .nav ul.header__navSub li:not(:first-child) a::after {
    opacity: 0.5;
  }

  .btnSupportDdonation {
    font-size: 1.2rem;
    line-height: 24px;
    width: 100px;
    right: 50px;
    z-index: 1;
  }
  body:not(.pageHome) .btnSupportDdonation {
    right: 50px;
  }
  .btnSupportDdonation.icon--arrow01::after {
    right: 8px;
  }
  .nav .btnSupportDdonation {
    position: absolute;
    top: 18px;
    display: block;
  }
  .nav .btnOneMinite {
    display: block;
  }
}

footer {
  padding: 60px 0 30px;
  background: #808080;
  color: #fff;
}
footer .footerWrap {
  width: 960px;
  margin: auto;
  position: relative;
}
footer a {
  color: #fff;
}
footer .footerSitelink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #999999;
}
footer .footerSitelink__category {
  display: inline-block;
  padding-left: 20px;
  border-left: 1px solid #999;
}
footer .footerSitelink__category:first-child {
  padding-left: 0;
  border: none;
}
footer .footerSitelink__category a {
  display: inline-block;
  margin-top: 5px;
  color: #ccc;
  font-size: 1.2rem;
}
footer .footerSitelink__category a::before {
  content: "- ";
}
footer .footerSitelink__category a.oneMinute {
  position: relative;
  background-color: #666666;
  line-height: 28px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 25px 0 15px;
  margin-top: 15px;
}
footer .footerSitelink__category a.oneMinute::before {
  display: none;
}
footer .footerSitelink__category a.oneMinute::after {
  right: 10px;
}
footer .footerSitelink__category--sub a {
  color: #fff;
  font-weight: 700;
}
footer .footerSitelink__category--sub a:nth-of-type(1),
footer .footerSitelink__category--sub a:nth-of-type(2) {
  font-size: 1.6rem;
  margin-bottom: 19px;
}
footer .footerSitelink__category--sub a:nth-of-type(3) {
  margin-top: 26px;
}
footer .footerSitelink__category--sub a::before {
  display: none;
}
footer .footerSitelink__categoryTitle {
  font-size: 1.6rem;
}
footer .footerSitelink__category .footerSitelink__categoryTitle:nth-of-type(2) {
  margin-top: 25px;
}
footer .footerContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0 0;
}
footer .footerContent__logo {
  width: 185px;
  margin-bottom: 40px;
}
footer .footerContent__campany {
  width: calc(100% - 235px);
  margin-bottom: 40px;
}
footer .footerContent__campany b {
  font-size: 1.6rem;
}
footer .footerContent__medialink {
  display: inline-block;
}
footer .footerContent__medialink img {
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
}
footer .footerContent__medialink img:nth-of-type(2) {
  width: 20px;
}
footer .footerContent__medialink img:nth-of-type(4) {
  width: 26px;
}
footer .footerContent__medialink a {
  display: inline-block;
  margin-right: 25px;
  line-height: 1;
}
footer .footerContent__medialink img:first-of-type {
  margin-left: 0;
}
footer .footerContent__copyright {
  display: inline-block;
  font-size: 1.2rem;
}
@media screen and (max-width: 960px) {
  footer {
    padding: 30px 0 20px;
  }
  footer .footerWrap {
    width: auto;
    margin: 0 20px;
  }
  footer .footerSitelink {
    display: none;
  }
  footer .footerContent {
    display: block;
    margin: 0;
  }
  footer .footerContent__logo {
    width: 145px;
    margin-bottom: 15px;
  }
  footer .footerContent__campany {
    width: auto;
    margin-bottom: 30px;
    font-size: 1.2rem;
  }
  footer .footerContent__campany b {
    font-size: 1.4rem;
  }
  footer .footerContent__medialink {
    margin-bottom: 20px;
  }
  footer .footerContent__medialink a {
    margin-bottom: 10px;
  }
  footer .footerContent__copyright {
    width: 100%;
    font-size: 1rem;
  }
}

main {
  padding: 80px 0 150px;
}
@media screen and (max-width: 960px) {
  main {
    padding: 60px 20px;
  }
}

.pageheader {
  padding-bottom: 15px;
}
.pageheader h2 {
  font-family: norms_medium, sans-serif !important;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .pageheader {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
}

/* main footer sitelink */
.sitelink section {
  width: 820px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .sitelink section {
    width: auto;
  }
  .sitelink section a {
    width: 48.5%;
  }
}

@media screen and (max-width: 640px) {
  .sitelink section {
    display: block;
  }
  .sitelink section a {
    width: 100%;
    display: block;
  }
  .sitelink section a + a {
    margin-top: 3%;
  }
}
