
.pc {
  display: none;
}
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */
.toppan, .page-ttl, .index-ttl, .main-ttl {
  font-family: toppan-bunkyu-midashi-go-std, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.yugothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.dokdo {
  font-family: 'Dokdo', cursive;
}
.normal {
  font-family: dnp-shuei-mincho-pr6, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
}

/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.main-logo, .thum, .image, .banner {
  margin: 0 auto;
  text-align: center;
}
/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
/*
::selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}

::-moz-selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}
*/
a {
  color: #323232;
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link {
  color: #323232;
  text-decoration: none;
}
a:visited {
  color: #323232;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  color: #323232;
  text-decoration: none;
}

/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 8%;
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}
/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  width: 100%;
  height: 60px;
  background: #fff;
  padding: 0 15px 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  /* スマホ用の慣性スクロール */
  -webkit-overflow-scrolling: touch;
}
.main-header::after {
  content: '';
  width: 100vw;
  height: 3px;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  /*background: url(./../images/common/line-bottom.png) repeat-x left /1080px auto;*/
  -webkit-transition: all .6s ease-in-out .3s;
  transition: all .6s ease-in-out .3s
  background-size:auto;
}
.show-menu .main-header::after {
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out
}
.gnav .sp_container::before {
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  /*  opacity: .3;*/
  /*opacity: 0;
    visibility: visible;*/
  /*background: url(./../images/common/line-bottom.png) repeat-x left bottom /1080px auto;*/
  transition: 1s cubic-bezier(.165, .84, .44, 1);
  transform: translate3d(0, -100%, 0);
  background-size: auto;
  z-index: 2;
}
.show-menu .sp_container::before {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.main-header .header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.main-header .main-logo {
  width: 40px;
  margin: 0;
}
.main-header .main-logo a {
  display: block;
  width: 100%;
  margin: 0 auto;
}
/* hamburger */
.main-header .hamburger {
  border-radius: 10px;
  /*border: 1px solid #eee;*/
  padding: 10px 0;
  font-size: 10px;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  position: relative;
  width: 32px;
  height: 22px;
  outline: none;
}
.main-header .hamburger > div {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-header .hamburger span {
  height: 2px;
  width: 100%;
  display: block;
  background: #323232;
  transition: .3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
}
.main-header .hamburger span:first-of-type {
  top: 10px;
}
.main-header .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.main-header .hamburger span:nth-of-type(3) {
  bottom: 10px;
}
.main-header .hamburger.is-open span:first-of-type {
  width: 100%;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: 0;
}
.main-header .hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.main-header .hamburger.is-open span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  left: 0;
}
/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.gnav {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  pointer-events: none;
  visibility: hidden;
  /*  overflow-y: auto;*/
}
.show-menu .gnav {
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
}
.gnav .sp_container {
  position: relative;
  padding: 60px 0 2em;
}
.gnav .sp_container::after {
  content: "";
  height: 100%;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: 0;
  transition: 1s cubic-bezier(.165, .84, .44, 1);
  transform: translate3d(0, -100%, 0);
}
.show-menu .sp_container::after {
  right: 0;
  visibility: visible;
  transform: translateY(0);
}
.gnav_container {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  opacity: 0;
  position: relative;
  padding: 1.5em 0;
  z-index: 9998
}
.show-menu .gnav_container {
  opacity: 1;
  transition: 1.8s cubic-bezier(.165, .84, .44, 1) .3s;
}
/* ------------------------------------------------------------ */
/* nav-menu */
/* ------------------------------------------------------------ */
.nav-menu {
  width: 100%;
  text-align: center;
  margin: 0 auto 2em;
}
.menu-item > a {
  display: block;
  padding: 10px 5px;
  font-size: 1.4rem;
}
.menu-item a:hover {
  color: #c3974a;
}
.menu-item span {
  display: block;
  font-size: 1.6rem;
}
.link-item {
  margin: 0 auto 2em;
}
.link-item div {
  margin: 0 auto 1em;
}
.link-item a {
  display: inline-block;
  border-bottom: 2px solid;
  padding-bottom: 2px;
}
.link-item a:hover {
  color: #c3974a;
}
.sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: auto;
  margin: 0 auto 2em;
}
.sns-link li {
  width: auto;
  text-align: center;
  margin: 0 5px 0;
}
.sns-link a {
  font-size: 3.4rem;
  line-height: 1;
}
.sns-link li:first-of-type a:hover {
  color: #1da1f2;
}
.sns-link li:nth-of-type(2) a:hover {
  color: #cf2e92;
}
.sns-link li:nth-of-type(3) a:hover {
  color: #1877f2;
}
.sns-link li:nth-of-type(4) a:hover {
  color: #00b900;
}
.sns-link li:nth-of-type(5) a:hover {
  color: #41C9B4;
}
.sns-link li:nth-of-type(6) a:hover {
  color: #da1725;
}
i.fa-logo_symbol {
  font-size: 2.9rem;
}
.fa-youtube-brands {
  font-size: 0.9em;
}
.other-site {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
}
.other-site li {
  display: inline-block;
  margin: 0 5px 10px;
}
.other-site a {
  display: block;
  position: relative;
  padding-left: 23px;
}
.other-site a:hover {
  opacity: .7;
}
.other-site a::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
}
.sub-menu {
  width: 120px;
  margin: 0 auto;
  text-align: left;
}
.sub-menu li {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto .5em;
}
.sub-menu li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 7px;
  border-left: 1px solid #323232;
  border-bottom: 1px solid #323232;
  vertical-align: middle;
  margin-right: 0.5em;
}
.sub-menu li a {
  /*  font-size: 1.6rem;*/
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.6;
}
.sub-menu li a span {
  font-size: 1.4rem;
}
/* ------------------------------------------------------------ */
/* common content */
/* ------------------------------------------------------------ */
.content {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 50px);
}
.content::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .2);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
/*
.show-menu .content::after {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
*/
.base {
  width: 100%;
  height: auto;
  position: relative;
  padding: 3em 0 3.5em;
  margin: 0 auto;
  flex-grow: 1;
}
.bg_color {
  background: #F6F2EF;
}
/* ------------------------------------------------------------ */
/* ttl */
/* ------------------------------------------------------------ */
.tate {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
}
.index-ttl {
  font-size: 2.2rem;
  margin: 0 auto .8em;
  line-height: 1.6;
}
.main-ttl {
  font-size: 1.5rem;
  margin: 0 auto 2em;
}
.main-ttl span {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.2rem;
  font-style: normal;
  font-family: dnp-shuei-mincho-pr6, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding-top: .5em;
}
.main-ttl span::before {
  content: '';
  display: block;
  width: 1.8em;
  height: 1px;
  margin-right: 10px;
  background: #323232;
}
.main-ttl.tate {
  display: inline-flex;
  justify-content: flex-end;
  align-items: flex-start;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
.main-ttl.tate span {
  flex-direction: column;
  justify-content: center;
  margin: 0 .3rem 1em;
  padding-top: 0;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
  -moz-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
}
.main-ttl.tate span::before {
  width: 1px;
  height: 1.8em;
  margin-bottom: 5px;
  margin-right: 0;
}
.sub-ttl {
  font-size: 2rem;
  margin: 0 auto 1em;
  font-weight: 600;
}
/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* カラム共通 */
.flx_item {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}
.flx_item .thum {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* common_box */
.common_box .sub-ttl {
  width: 60px;
  margin: 0;
  display: flex;
  align-items: flex-end;
}
.common_box .common_detail {
  width: calc(100% - 60px);
  position: relative;
  padding-top: 1em;
}
.common_box .common_detail .txt {
  width: 100%;
  max-width: 500px;
  margin: 0 0 1em;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.swiper-button-next, .swiper-button-prev {
  width: auto;
  height: auto;
}
/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.inview {
  opacity: 0;
}
.page-ttl {
  opacity: 0;
}
.page-ttl.is-show {
  animation: fadeInUp .6s ease-in 0s 1 forwards;
}
.page-img {
  opacity: 0;
}
.page-img.is-show {
  animation: fadeInUp .6s ease-in .5s 1 forwards;
}
.fadeIn_first {
  opacity: 0;
}
.fadeIn_first.is-show {
  animation: fadeInUp .6s ease-in .5s 1 forwards;
}
.fadeIn_sec {
  opacity: 0;
}
.fadeIn_sec.is-show {
  animation: fadeInUp .6s ease-in 1.2s 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade {
  opacity: 0;
}
.fade.is-show {
  animation: fadeIn .6s ease-in .8s 1 forwards;
}
.fade_delay {
  opacity: 0;
}
.fade_delay.is-show {
  animation: fadeIn .6s ease-in 1s 1 forwards;
}
/*@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInup {
  opacity: 0;
  animation: fadeInup 2s ease-in-out 0.3s 1 forwards;
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 2s ease-in-out 2.5s 1 forwards;
}*/
/* ------------------------------------------------------------ */
/* section */
/* ------------------------------------------------------------ */
.mainvisual {
  padding: 2em 3% 0;
}
/* firstarea */
.firstarea.base {
  padding-bottom: 15%;
}
.firstarea .inner {
  width: 95%;
}
.firstarea .intro_box {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 4em;
  position: relative;
}
.firstarea .index-ttl {
  font-size: 2.6rem;
}
.firstarea .txt {
  margin: 0 auto 2em;
  text-align: justify;
}
.firstarea .txt.writing-date {
  padding-top: 0;
  text-align: right;
}
.ciList {
  width: 100%;
  margin: 0 auto 2em;
  font-size: 1.05em;
}
.ciList li {
  position: relative;
  display: flex;
  margin: 0 auto 1em;
  padding-left: 30px;
  line-height: 2;
}
.ciList li::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 1px;
  display: block;
  top: 1em;
  left: 0;
  background: #323232;
}
.ciList li p {
  padding-left: .8em;
}
.ciList li span {
  position: relative;
  border-bottom: 2px dotted #323232;
  padding: 5px 0;
  font-weight: 600;
}
/* newsarea */
.newsarea .common_box .common_detail {
  padding: 0;
}
.newsarea .swiper-button-next {
  right: 0;
  top: calc(50% - 40px);
}
.newsarea .swiper-button-prev {
  left: 0;
  top: calc(50% - 40px);
}
.newsarea .swiper-button-next:after, .newsarea .swiper-button-prev:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #323232;
}
.newsarea .swiper-button-next:after {
  border-right: 1px solid #323232;
  transform: rotate(45deg);
}
.newsarea .swiper-button-prev:after {
  border-left: 1px solid #323232;
  transform: rotate(-45deg)
}
.news-slider {
  width: calc(100% - 40px);
  margin: 0 auto 2em;
}
.news-slider .thum {
  position: relative;
  overflow: hidden;
  margin: 0 auto 1em;
}
.news-slider .thum::before {
  content: '';
  width: 100%;
  height: auto;
  padding-bottom: 65%;
  display: block;
}
.news-slider .thum::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all .3s ease-in-out;
}
.news-slider a:hover .thum::after {
  background: rgba(0, 0, 0, .2);
}
.news-slider a:hover {
  color: #c3974a;
}
.news-slider a:hover .thum img {
  transform: translate(-50%, -50%) scale(1.1);
}
.news-slider .thum img {
  /*
  width: auto;
  max-width: inherit;
  height: 100%;
*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out;
}
/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  width: 100%;
  padding: 1em 0;
  position: relative;
}
.main-footer::after {
  content: '';
  width: 100vw;
  height: 3px;
  position: absolute;
  display: block;
  top: -1px;
  left: 0;
  /*background: url(./../images/common/line-bottom.png) repeat-x left /1080px;*/
}
.copy {
  font-size: 1.2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
  text-align: center;
}
.menu-close {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, .2);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.show-menu .menu-close {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  .sp {
    display: block;
  }
  .inner {
    padding: 0 2em;
  }
  /* ------------------------------------------------------------ */
  /* ボタン */
  /* ------------------------------------------------------------ */
  .btnBox {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btnBox .btn {
    margin: 0;
  }
  .btnBox .btn.prev {
    text-align: right;
    margin-right: 2%;
  }
  .btnBox .btn.next {
    margin-left: 2%;
  }
  .btn.prev a {
    padding-right: 25px;
    padding-left: 0;
  }
  .btn.prev a::before {
    left: 0;
    right: inherit;
  }
  .arrow-prev {
    left: inherit;
    right: 0;
  }
  a:hover .arrow-prev {
    right: 3px;
  }
  a:hover .arrow-next {
    left: 3px;
  }
  .arrow-prev::before {
    left: auto;
    right: 0;
    margin-right: 0;
    margin-left: 15px;
  }
  .arrow-prev::after {
    left: auto;
    right: 8px;
  }
  .btn-frame a {
    max-width: 350px;
  }
  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .main-header .main-logo {}
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 2 - 1em);
    margin: 0 2em 1em 0;
  }
  .flx_3cols .flx_item:nth-child(2n) {
    margin: 0 0 1em;
  }
  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */
}
@media screen and (min-width: 640px) {
  /*
  .inner {
    padding: 0 2em;
  }
*/
  /* 3カラム */
  .flx_3cols .flx_item, .flx_3cols .flx_item:nth-child(2n) {
    width: calc(100% / 3 - 1em);
    margin: 0 1.5em 2em 0;
  }
  .flx_3cols .flx_item:nth-child(3n) {
    margin: 0 0 2em;
  }
}
@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  /* ------------------------------------------------------------ */
  /* main-header */
  /* ------------------------------------------------------------ */
  .main-header {}
  .main-header .main-logo {}
  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */
  .inner {
    padding: 0 3em;
  }
  .base {
    padding: 4em 0 5em;
  }
  /* ------------------------------------------------------------ */
  /* ttl */
  /* ------------------------------------------------------------ */
  .index-ttl {
    font-size: 3rem;
  }
  .main-ttl {
    font-size: 2rem;
  }
  .main-ttl.tate span {
    font-size: 1.6rem;
    margin: 0 .4rem 1em;
  }
  .sub-ttl {
    font-size: 2.2rem;
  }
  /* ------------------------------------------------------------ */
  /* ボタン */
  /* ------------------------------------------------------------ */
  .btn-frame a {
    font-size: 2rem;
  }
  /* ------------------------------------------------------------ */
  /* swiper */
  /* ------------------------------------------------------------ */
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_2cols .flx_item:nth-child(2n), .flx_2cols .flx_item:last-child {
    margin: 0 0 2em;
  }
  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_4cols .flx_item:nth-child(4n) {
    margin: 0 0 2em;
  }
  /* common_box */
  .common_box .sub-ttl {
    width: 10%;
  }
  .common_box .common_detail {
    width: 90%;
    padding-top: 1.5em;
  }
  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */
  /* firstarea */
  .firstarea.base {
    /*    padding-bottom: 30%;*/
  }
  .firstarea .index-ttl {
    font-size: 3.4rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    padding-right: 1em;
    width: auto;
  }
  .firstarea .txt {
    padding-top: 2em;
  }
  .ciList li {
    padding: 0;
  }
  .ciList li::before {
    left: -10px;
    transform: translateX(-100%);
  }
  /* newsarea */
  .news-slider {
    width: 100%;
  }
  .newsarea .swiper-button-next:after, .newsarea .swiper-button-prev:after {
    content: none;
  }
  .news_box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .news_box .news_item {
    width: calc(100%/3);
    padding-right: 2.5em;
  }
}
@media screen and (min-width: 760px) {
  /* デスクトップ/タブレット横 */
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .sp-only {
    display: none;
  }
  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .main-header {
    width: 130px;
    height: 100vh;
    padding: 33px;
    display: block;
  }
  .main-header::after {
    content: none;
  }
  .main-header::before {
    content: '';
    width: 130px;
    height: 100vh;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    background: url(./../images/common/line.png) repeat-y top right /auto 1080px;
    transform: translateZ(0);
    background-size: auto;
    z-index: -1;
    -webkit-transition: all .6s ease-in-out .3s;
    transition: all .6s ease-in-out .3s
  }
  .show-menu .main-header::before {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out
  }
  .main-header .header_container {
    height: 100%;
    flex-direction: column;
  }
  .main-header .main-logo {
    width: 100%;
  }
  .main-header .main-logo a {}
  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
  .gnav {
    width: 215px;
    height: 100vh;
    padding-top: 0;
    left: 130px;
  }
  .gnav_container::-webkit-scrollbar, .gnav::-webkit-scrollbar {
    display: none;
  }
  .gnav::before {
    content: "";
    height: 100%;
    width: 100%;
    visibility: hidden;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: .6s cubic-bezier(.165, .84, .44, 1);
    transform: translate3d(-100%, 0, 0);
  }
  .show-menu .gnav::before {
    visibility: visible;
    transform: translateZ(0);
  }

  .main-heade::after {
    opacity: 0;
    visibility: hidden;
    transition: .6s cubic-bezier(.165, .84, .44, 1);
    transform: translate3d(0, 0, -100%);
  }
  /*
  .show-menu .gnav::after {
    content: "";
  height: 100%;
  width: 100%;
  visibility: hidden;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: .6s cubic-bezier(.165,.84,.44,1);  
  transform:  translate3d(-100%,0,0);
  }
*/
  .gnav .sp_container {
    padding: 0;
    height: 100%;
  }
  .show-menu .gnav .sp_container::after {
    content: none;
  }
  .gnav .sp_container::before {
    width: 100%;
    height: 100vh;
    background: url(./../images/common/line.png) repeat-y right bottom /auto 1080px;
    transform: translate3d(-100%, 0, 0);
    transition: .6s cubic-bezier(.165, .84, .44, 1);
    background-size: auto;
  }
  .show-menu .gnav .sp_container::before {
    transform: translateZ(0);
  }
  .gnav_container {
    justify-content: center;
    overflow: auto;
    height: 100%;
  }
  .sns-link {
    width: 135px;
  }
  .sns-link li {
    width: 33.3%;
    margin: 0 auto .5em;
  }
  .other-site li {
    display: block;
    margin: 0 auto 10px;
    text-align: left;
  }
  .sub-menu li a {
    font-size: 1.4rem;
  }
  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */
  .content {
    width: calc(100% - 130px);
    min-height: calc(100vh - 53px);
    margin: 0 0 0 130px;
    padding: 0;
  }
  .inner {
    max-width: 1024px;
  }
  /* ------------------------------------------------------------ */
  /* footer */
  /* ------------------------------------------------------------ */
  .main-footer {
    width: calc(100% - 130px);
    margin: 0 0 0 130px;
  }
}
@media screen and (max-height: 710px) {
  .gnav_container {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1154px) {
  /* デスクトップ/タブレット横 */
  .base {
    padding: 5em 0 6em;
  }
  .inner {
    padding: 0 2em;
  }
  /* ------------------------------------------------------------ */
  /* ttl */
  /* ------------------------------------------------------------ */
  .index-ttl {
    font-size: 3.6rem;
  }
  .main-ttl {
    font-size: 2.4rem;
  }
  .main-ttl.tate span {
    margin: 0 .6rem 1em;
    font-size: 1.8rem;
  }
  .sub-ttl {
    font-size: 2.8rem;
  }
  /* ------------------------------------------------------------ */
  /* ボタン */
  /* ------------------------------------------------------------ */
  .btn-frame a {
    font-size: 2.4rem;
  }
  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */
  /*  firstarea */
  .firstarea .index-ttl {
    font-size: 4.6rem;
  }
  .firstarea .txt {
    padding-top: 3em;
  }
}