@charset "UTF-8";
/* ----------------------------------------------------
	sassを使用しています。css編集の際はご注意ください。
	compass/scss
---------------------------------------------------- */
/* ------------------------------------
// structure
----------------------------------- */
@media screen and (min-width: 1051px) {
  #wrap {
    overflow: hidden;
    background: #fff;
    display: flex;
  }

  #side {
    width: 14%;
    z-index: 30;
  }
  #side #topleft {
    width: 14%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #fdbe00;
    background-size: 25% auto;
  }

  #container {
    width: 86%;
    display: flex;
    background: #fff;
  }
  #container #main {
    width: 42%;
    background: #fedc00;
    position: relative;
  }
  #container #topright {
    width: 50%;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: #fdbe00;
  }

  #contents {
    padding: 4.5vw 2.5vw 0 2.5vw;
  }
}
@media screen and (max-width: 1050px) {
  #side {
    display: none;
  }

  #container {
    width: 100%;
  }
  #container #main {
    width: 100%;
  }
  #container #topright {
    display: none;
  }

  #contents {
    padding: 7vh 0 0 0;
    background: #fedc00;
  }
}
/* ------------------------------------
// header
----------------------------------- */
#header {
  position: fixed;
  width: 50%;
  left: 0;
  top: 0;
  padding-left: 14%;
  z-index: 10;
}
#header header {
  position: relative;
  background: #fff;
  z-index: 1;
}
#header header #nav-toggle {
  width: 15%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  z-index: 20;
  cursor: pointer;
}
#header header #nav-toggle:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#header header #nav-toggle div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
#header header #nav-toggle div span {
  display: block;
  position: absolute;
  height: 6px;
  width: 50%;
  background: #000;
  left: 25%;
  transition: .35s ease-in-out;
  border-radius: 4px;
  /* #nav-toggle 切り替えアニメーション */
}
#header header #nav-toggle div span:nth-child(1) {
  top: 25%;
}
#header header #nav-toggle div span:nth-child(2) {
  top: 44%;
}
#header header #nav-toggle div span:nth-child(3) {
  top: 64%;
}
@media screen and (max-width: 1050px) {
  #header header #nav-toggle div span {
    height: 3px;
    border-radius: 10px;
  }
}
.js-menuOpen #header header #nav-toggle div span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
.js-menuOpen #header header #nav-toggle div span:nth-child(2) {
  width: 0;
  left: 50%;
}
.js-menuOpen #header header #nav-toggle div span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
@media screen and (max-width: 1050px) {
  #header {
    width: 100%;
    padding-left: 0;
  }
}

#spmenu {
  background: #fff;
  position: fixed;
  width: 50%;
  height: 100vh;
  left: 0;
  top: 0;
  padding-left: 14%;
  transition: .35s ease-in-out;
  transform: translateY(-100%);
  overflow: hidden;
}
.js-menuOpen #spmenu {
  transform: translateY(0);
}
@media screen and (max-width: 1050px) {
  #spmenu {
    width: 100%;
    padding-left: 0;
  }
}
#spmenu ul {
  margin-top: 20px;
}
#spmenu ul li {
  padding: 1.0vw 2.0vw;
  text-align: left;
  border-bottom: #fdbe00 1px solid;
}
#spmenu ul li a {
  display: block;
  font-weight: 900;
  color: #fdbe00;
  font-size: 2rem;
  transition: .35s ease-in-out;
}
@media screen and (max-width: 1050px) {
  #spmenu ul li a {
    font-size: 1.8rem;
  }
}
#spmenu ul li a:hover {
  text-decoration: none;
  color: #fedc00;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000,1px -1px 0 #000, -1px 1px 0 #000;
}

/* ------------------------------------
// pagetop
----------------------------------- */
#pagetop {
  position: fixed;
  width: 50%;
  left: 0;
  bottom: 0;
  padding-left: 14%;
  text-align: right;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  transition-property: opacity,visibility;
}
#pagetop img {
  width: 55px;
}
#pagetop.show {
  visibility: visible;
  opacity: 1;
}
#pagetop.posBtm {
  position: absolute;
  width: auto;
  padding-left: 0;
  left: auto;
  bottom: auto;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 1050px) {
  #pagetop {
    width: 100%;
    padding-left: 0;
  }
}

/* ------------------------------------
// footer
----------------------------------- */
#footer {
  padding: 0 0 10vw 0;
  position: relative;
  background: #fedc00;
}
@media screen and (max-width: 1050px) {
  #footer {
    padding-bottom: 8em;
  }
}
#footer h2 {
  text-align: center;
  padding: 0 22% 0 15%;
}
#footer .sns {
  padding: 0 2em 7em 2em;
  display: flex;
  justify-content: center;
  background: url(../image/cmn/bg_footer.jpg) left top/100% no-repeat;
}
#footer .sns li {
  padding: 0 1.6vw;
  font-size: 1.2rem;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 1050px) {
  #footer .sns li {
    font-size: 0.8rem;
  }
}
#footer .sns li span {
  margin-top: 1em;
  display: block;
}
#footer .sns li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1050px) {
  #footer .sns li img {
    width: 65px;
    height: auto;
  }
}
#footer .sns li.fb a {
  color: #1877f2;
}
#footer .sns li.tw a {
  color: #1da1f2;
}
#footer .sns li.line a {
  color: #00b900;
}
#footer .logo {
  margin: 0 auto;
  width: calc(366px / 2);
  height: auto;
}
#footer .copyright {
  margin-top: 2em;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 1050px) {
  #footer .copyright {
    font-size: 1rem;
  }
}

/* ------------------------------------
// topleft
----------------------------------- */
#topleft .l-pageup {
  position: absolute;
  bottom: 33px;
  left: 50%;
  width: 100%;
  text-align: center;
  line-height: 0;
  max-width: 158px;
  transform: translateX(-50%);
  cursor: pointer;
}

/* ------------------------------------
// topright
----------------------------------- */
#topright {
  position: relative;
}
#topright .positionFix {
  position: absolute;
  padding: 0 6.4vw 0 2.5vw;
  top: 50%;
  transform: translateY(-50%);
}
#topright .concept {
  max-width: 702px;
}
#topright .concept .read {
  margin-bottom: 2.2vw;
  line-height: 0;
}
#topright .concept .copyright {
  margin-top: 1.5vw;
  font-size: 0.9rem;
  text-align: center;
}
#topright .concept .menu-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#topright .concept .menu-box .btn {
  line-height: 0;
  width: 49%;
}
#topright .concept .menu-box .sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 49%;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
}
#topright .concept .menu-box .sns .share {
  display: flex;
  align-items: center;
  justify-content: center;
}
#topright .concept .menu-box .sns span {
  display: block;
}
#topright .concept .menu-box .sns .s-btn:nth-child(2) {
  margin: 0 1.0vw;
}
#topright .concept .menu-box .sns .s-btn img {
  width: 60px;
  height: auto;
}
#topright .concept .menu-box .sns .facebook a {
  color: #1877f2;
}
#topright .concept .menu-box .sns .twitter a {
  color: #1da1f2;
}
#topright .concept .menu-box .sns .line a {
  color: #00b900;
}
#topright .concept .menu-box .sns .jcp {
  margin: 1.2vw 0 0.5vw 0;
  line-height: 0;
  width: 100%;
  text-align: center;
}
#topright .concept .menu-box .sns .jcp img {
  width: calc(366px / 2);
  height: auto;
}

/* ------------------------------------
// p-fixednavi
----------------------------------- */
#p-fixednavi {
  padding: 0.8vw 2.5vw 2vw 2.5vw;
  position: fixed;
  z-index: 100;
  left: 14%;
  right: 50%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1050px) {
  #p-fixednavi {
    padding: 2.5vw 2.5vw 3vw 2.5vw;
    left: 0;
    right: 0;
  }
}
#p-fixednavi .navi-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
#p-fixednavi .navi-inner div {
  line-height: 0;
}
#p-fixednavi .navi-inner div.current {
  margin: 0 1vw;
}
@media screen and (max-width: 1050px) {
  #p-fixednavi .navi-inner div.current {
    margin: 0 2.5vw;
  }
}
#p-fixednavi .navi-inner div.non {
  opacity: 0.7;
}
#p-fixednavi .navi-inner img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1050px) {
  #p-fixednavi .navi-inner img {
    width: auto;
    height: calc(94px / 2);
  }
}

/* ----------------------------------------------------
base
---------------------------------------------------- */
html, body {
  padding: 0;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

ul {
  list-style: none;
  box-sizing: border-box;
}
ul li {
  box-sizing: border-box;
}

.sp-box {
  display: none;
}
@media screen and (max-width: 1050px) {
  .sp-box {
    padding: 3vw 6vw 8vw 6vw;
    display: block;
    font-size: 4.6vw;
    line-height: 2.0;
    font-weight: 700;
    background: #fff;
  }
}

/* ----------------------------------------------------
selection
---------------------------------------------------- */
::selection {
  background: #40474f;
  color: #fff;
}

::-moz-selection {
  background: #40474f;
  color: #fff;
}

/* ----------------------------------------------------
link
---------------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
a:visited {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: #000;
  opacity: 0.6;
}
a:active {
  color: #000;
}

/* ----------------------------------------------------
set
---------------------------------------------------- */
.flex {
  display: flex;
}

.flex-btw {
  display: flex;
  justify-content: space-between;
}
.flex-btw.box_2column div {
  width: 48%;
}
.flex-btw.box_3column {
  flex-wrap: wrap;
}
.flex-btw.box_3column:after {
  content: "";
  display: block;
  width: 32%;
}
.flex-btw.box_3column div {
  width: 32%;
}

.flex-center {
  justify-content: center;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-column-btw {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 1050px) {
  .spwrap {
    flex-wrap: wrap;
  }
  .spwrap.box_2column div {
    width: 100%;
  }
  .spwrap.box_2column div + div {
    margin-top: 20px;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1050px) {
  .sp {
    display: block;
  }
}

/* ----------------------------------------------------
.mv
---------------------------------------------------- */
.mv {
  margin: 0 -2.5vw;
  line-height: 0;
}
@media screen and (max-width: 1050px) {
  .mv {
    margin: 0;
  }
}
