@charset "UTF-8";
/* CSS Document */

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
html,
body {
  height: 100%;
  font-size: 62.5%;
}
body {
	width: 100%;
  min-width: 1280px;
	font-family: "TazuganeGothicStdN-Regular","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","Yu Gothic Medium",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.3rem;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
	line-height: 1.5;
	color: #111;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
  padding-top: 120px;
}
body.is-fixed {
  position: fixed;
}
* {
  box-sizing: border-box;
}
*::selection {
  background-color: #E6DFD2;
}
ul,
ol {
  list-style: none;
}
img { vertical-align: bottom;}

a {
  color: #111; 
  text-decoration: underline;
  transition: color .3s;
  outline: none;
}
a:hover {
  color: #E60012;
}
.show-sp {
  display: none;
}
h2 {
  font-weight: normal;
}
.txt-red {
  color: #E60012;
}
.txt-blue {
  color: #394CD5;
}
sup {
  font-size: 60%;
  vertical-align: super;
}
sub {
  font-size: 60%;
  vertical-align: bottom;
}


/* ---------------------------------------------------------
animation
----------------------------------------------------------*/
.animeBefore {
	visibility: hidden;
}

.fadeAnime {
	visibility: visible;
	animation-name: fadeAnime;
	animation-duration: 600ms;
}
@keyframes fadeAnime {
  from {
	  opacity: 0;
	  transform: translateY(20px);
  }
  to {
	  opacity: 1;
	  transform: translateY(0px);
  }
}



/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px 0 20px 20px;
  z-index: 10;
}
header .logo {
  position: relative;
  width: 140px;
  z-index: 2;
}
header .btn-menu a {
  position: fixed;
  top: 50vh;
  left: 20px;
  width: 28px;
  text-decoration: none;
  padding-top: 19px;
  z-index: 2;
  transform: translateY(-50%);
}
header .btn-menu span {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: #111;
  transition: opacity .3s,transform .3s,top .3s;
}
@media screen and (min-width:769px) {
  header:not(.is-open) .btn-menu a:hover span {
    animation-name: txt-line-anime;
    animation-duration: 500ms;
  }
}
header .btn-menu span:nth-child(2) {
  top: 7px;
  animation-delay: .05s;
}
header .btn-menu span:nth-child(3) {
  top: 14px;
  animation-delay: .1s;
}
header.is-open span:nth-child(1),
header.is-open span:nth-child(3) {
  top: 7px;
  transform: rotate(30deg);
}
header.is-open span:nth-child(3) {
  transform: rotate(-30deg);
}
header.is-open span:nth-child(2) {
  opacity: 0;
}
header .btn-menu p {
  font-size: 10px;
  color: #E60012;
  text-align: center;
  line-height: 1;
}

header .txt-close,
header.is-open .txt-open {
  display: none;
}
header.is-open .txt-close {
  display: block;
}
header > .link-inquiry {
  position: absolute;
  top: 273px;
  right: 0;
  margin-right: 17px;
}
header > .link-inquiry a {
  position: relative;
  display: block;
  height: 185px;
  font-size: 12px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  text-decoration: none;
  letter-spacing: calc(.12em * 1.4);
  padding-top: 22px;
}
header > .link-inquiry a::before,
header > .link-inquiry a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1px;
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/icon_mail.svg") no-repeat;
  background-size: 16px auto;
  transition: opacity .3s;
}
header > .link-inquiry a::after {
  background-image: url("../img/icon_mail_red.svg");
  opacity: 0;
}
header > .link-inquiry a:hover::before {
  opacity: 0;
}
header > .link-inquiry a:hover::after {
  opacity: 1;
}
header .nav-upper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header .nav-upper nav {
  position: absolute;
  top: 24px;
  left: 50%;
  margin-left: -309px;
}
header .nav-upper ul {
  display: flex;
}
header .nav-upper li {
  position: relative;
  font-size: 13px;
  letter-spacing: calc(.12em * 1.4);
  line-height: 1;
  /* 120 * 1.4 ?*/
}
header .nav-upper > nav > ul > li {
  padding-right: 20px;
  margin-right: 20px;
}
header .nav-upper > nav > ul > li > a {
  display: block;
  text-decoration: none;
  padding-bottom: 10px;
}
header .nav-upper > nav > ul > li.is-cr > a {
  color: #E60012;
}
header .nav-upper > nav > ul > li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 13px;
  background: #111;
}
header .nav-upper > nav > ul > li:last-child::after {
  content: none;
}
header .nav-upper .link-login {
  position: absolute;
  top: 21px;
  right: 19px;
}
header .nav-upper .link-login a {
  position: relative;
  display: flex;
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
  backface-visibility: hidden;
}
header .nav-upper .link-login a::before,
header .nav-upper .link-login a::after {
  content: '';
  display: block;
  width: 18px;
  height: 16px;
  background: url("../img/icon_login.svg") no-repeat;
  background-size: 18px auto;
  margin-left: 7px;
  transition: opacity .3s;
}
header .nav-upper .link-login a::before {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/icon_login_red.svg");
  margin: 0;
  opacity: 0;
}
header .nav-upper .link-login a:hover::after {
  opacity: 0;
}
header .nav-upper .link-login a:hover::before {
  opacity: 1;
}

header .nav-upper ul ul {
  position: absolute;
  display: block;
  width: 258px;
  background: #fff;
  padding-bottom: 10px;
  border: 1px solid #E60012;
  visibility: hidden;
  opacity: 0;
  transition: visibility .3s,opacity .3s;
}
header .nav-upper li:hover ul {
  opacity: 1;
  visibility: visible;
}
header .nav-upper .pic a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 258px;
  height: 89px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}
header .nav-upper li:last-child ul {
  padding-bottom: 0;
}
header .nav-upper li:last-child .pic a {
  margin-bottom: 0;
}
header .nav-upper .pic p {
  position: relative;
  z-index: 2;
}
header .nav-upper .pic .txt-en {
  font-size: 10px;
  letter-spacing: .04em;
  margin-bottom: 5px;
}
header .nav-upper .pic .txt-ja {
  font-size: 15px;
  letter-spacing: calc(.12em * 1.4);  
}
header .nav-upper .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 258px;
  overflow: hidden;
}
header .nav-upper .bg img {
  width: 100%;
  height: auto;
  transition: transform .7s;
}
header .nav-upper .pic a:hover img {
  transform: scale(1.06);
}
header .nav-upper li li:not(.pic) {
  padding: 10px 20px;
}

#meganavi {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #F4F3EC;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  transition: visibility .8s,opacity .8s;
}
header.is-open #meganavi {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width:769px) and (max-height:540px) {
  #meganavi {
    align-items: flex-start;
  }
  .meganavi-inner {
    height: 540px;
  }
}
#meganavi nav > ul {
  display: flex;
  flex-wrap: wrap;
  width: 920px;
  padding-left: 8px;
  margin: 0 auto;
}
#meganavi nav > ul > li:first-child,
#meganavi nav > ul > li:nth-child(5) {
  width: 251px;
}
#meganavi nav > ul > li:nth-child(2),
#meganavi nav > ul > li:nth-child(6) {
  width: 281px;
}
#meganavi nav > ul > li:nth-child(3),
#meganavi nav > ul > li:nth-child(7) {
  width: 178px;
}
#meganavi nav > ul > li:nth-child(4) {
  width: 202px;
  margin-bottom: 73px;
}
#meganavi nav > ul > li > a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  letter-spacing: calc(.12em * 1.4);
  text-decoration: none;
}
#meganavi nav > ul > li > a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #111;
  margin: 5px 0 0;
  transition: background .3s;
}
#meganavi nav > ul > li > a:hover::after {
  background: #E60012;
}
#meganavi nav ul ul {
  margin-top: 16px;
}
#meganavi nav ul ul a {
  font-size: 13px;
  letter-spacing: calc(.12em * 1.4);
  text-decoration: none;
}
#meganavi nav li li {
  margin-bottom: 14px;
}
.meganavi-bottom {
  width: 920px;
  padding-left: 8px;
  margin: 42px auto 0;
}
.meganavi-bottom .wrapper {
  display: flex;
  align-items: flex-end;
}
.meganavi-bottom .left-col {
  width: 532px;
  padding-bottom: 4px;
}
.meganavi-bottom .left-col ul {
  display: flex;
  margin-top: 12px;
}
.meganavi-bottom .txt-company {
  margin-bottom: 20px;
}

.meganavi-bottom .left-col .link-tel,
.meganavi-bottom .left-col .link-fax {
  text-decoration: none;
  margin-right: 20px;
}
.meganavi-bottom .left-col .link-tel {
}
.meganavi-bottom .left-col .link-tel::before,
.meganavi-bottom .left-col .link-fax::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 15px;
  background: url("../img/icon_tel.svg") no-repeat;
  background-size: 11px 15px;
  margin-right: 6px;
  vertical-align: middle;
}
.meganavi-bottom .left-col .link-fax::before {
  width: 17px;
  height: 16px;
  background: url("../img/icon_fax.svg") no-repeat;
  background-size: 17px 16px;
  vertical-align: top;
}
.meganavi-bottom .left-col .link-inquiry {
}
.meganavi-bottom .left-col .link-inquiry a {
  position: relative;
  display: block;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: calc(.12em * 1.4);
}
.meganavi-bottom .left-col .link-inquiry a::before,
.meganavi-bottom .left-col .link-inquiry a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 12px;
  vertical-align: middle;
  background: url("../img/icon_mail.svg") no-repeat;
  background-size: 16px auto;
  margin-right: 7px;
  margin-top: -1px;
  transition: opacity .3s;
}
.meganavi-bottom .left-col .link-inquiry a::after {
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url("../img/icon_mail_red.svg");
  opacity: 0;
  margin: 0;
}
.meganavi-bottom .left-col .link-inquiry a:hover::before {
  opacity: 0;
}
.meganavi-bottom .left-col .link-inquiry a:hover::after {
  opacity: 1;
}

.meganavi-bottom .right-col {
  width: 380px;
}
.meganavi-bottom .right-col .link-login a {
  position: relative;
  display: flex;
  font-size: 13px;
  letter-spacing: calc(.12em * 1.4);
  text-decoration: none;
  margin-top: -3px;
}
.meganavi-bottom .right-col  .link-login a::before,
.meganavi-bottom .right-col  .link-login a::after {
  content: '';
  display: block;
  width: 18px;
  height: 16px;
  background: url("../img/icon_login.svg") no-repeat;
  background-size: 18px auto;
  margin-right: 7px;
  transition: opacity .3s;
}
.meganavi-bottom .right-col  .link-login a::after {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/icon_login_red.svg");
  margin: 0;
  opacity: 0;
}
.meganavi-bottom .right-col  .link-login a:hover::before {
  opacity: 0;
}
.meganavi-bottom .right-col  .link-login a:hover::after {
  opacity: 1;
}
.meganavi-bottom .right-col  .txt-regist {
  font-size: 11px;
  line-height: 2;
  letter-spacing: calc(.02em * 1.4);
  margin: 12px 0 0;
}


/* ---------------------------------------------------------
common
----------------------------------------------------------*/

/* .ttl-line */
.ttl-line {
  position: relative;
}
.ttl-line-head {
  display: flex;
  height: 13px;
  line-height: 1;
  margin-bottom: 4px;
  overflow: hidden;
}
.ttl-line-head .num {
  font-size: 14px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  color: #E60012;
  margin-right: 8px;
  
  transform: translateY(13px);
  transition: transform .5s .3s ease;
}
.ttl-line-head .rect {
  position: relative;
  font-size: 14px;
  color: #fff;

  padding-top: 13px;
  transform: scaleX(0);
  transform-origin: left center;
}

.ttl-line.is-anime .ttl-line-head .num {
  transform: translateY(0);
}
.ttl-line.is-anime .ttl-line-head .rect {
  padding-top: 0;  
  transform: scaleX(1);
  transition: padding .4s .6s ease,transform .5s .3s ease;
}


.ttl-line-head .rect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E60012;
}
.ttl-line-head .txt-en {
  position: relative;
  display: block;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  letter-spacing: .1em;
}
.ttl-line .ttl {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: calc(.2em * 1.4);
  padding-bottom: 20px;
  margin-top: 7px;
}
.ttl-line .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - .28em);
  height: 1px;
  background: #E60012;
  
  width: 0;
  transition: width .5s .4s;
}
.ttl-line .line::before,
.ttl-line .line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;  
  display: block;
  width: 5px;
  height: 5px;
  background: #E60012;

  opacity: 0;
}
.ttl-line .line::after {
  left: auto;
  right: 0;
}

.ttl-line .line.is-anime {
  width: calc(100% - .28em);
}
.ttl-line .line.is-anime::before {
  opacity: 1;
  transition: opacity .1s .4s;
}
.ttl-line .line.is-anime::after {
  opacity: 1;
  transition: opacity .1s .9s;
}

.animeBeforeTxt {
  opacity: 0;
}
.txt-anime {
  display: inline-flex;
  vertical-align: top;
  height: 1em;
  overflow: hidden;
}
.txtAnime {
  overflow: hidden;
  display: inline-block;
	animation-name: txtAnime;
	animation-duration: .6s;
  animation-delay: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  transform-origin: center top;
}
@keyframes txtAnime {
  from {
    opacity: 1;
    padding-top: 1em;
/*    transform: rotateX(90deg);*/
  }
  to {
    opacity: 1;
    padding: 0;
/*    transform: rotateX(0deg);*/
  }
}

/* .link-txt-line */
.link-txt-line {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  color: #E60012;
  letter-spacing: calc(.15em * 1.4);
  text-decoration: none;
  padding-right: 13px;
  padding-bottom: 7px;
}
.link-txt-line::before,
.link-txt-line::after {
  content: '';
  position: absolute;
  top: 11px;
  right: 0;
  display: block;
  width: 8px;
  height: 2px;
  background: #E60012;
  margin-top: -1px;
  transform: rotate(45deg);
  transform-origin: right center;
}
.link-txt-line::after {
  transform: rotate(-45deg);
  margin-top: -2px;
}
.link-txt-line[target="_blank"] {
  padding-right: 14px;
}
.link-txt-line[target="_blank"]::before {
  content: '';
  top: 6px;
  width: 12px;
  height: 9px;
  background: url("../img/icon_blank_red.svg") no-repeat;
  background-size: 12px 9px;
  transform: none;
}
.link-txt-line[target="_blank"]::after {
  content: none;
}
.link-txt-line .line::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #E60012;
  transform-origin: right center;
  transition: transform .3s;
}
a:hover .link-txt-line .line::after,
a.link-txt-line:hover .line::after {
	animation-name: txt-line-anime;
	animation-duration: 500ms;
}

/* .link-rect */
.link-rect a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  color: #fff;
  background: #E60012;
  text-decoration: none;
  letter-spacing: calc(.15em * 1.4);
  padding: 10px 46px 9px 18px;
  border: 2px solid #E60012;
  transition: color .3s,background-color .3s;
}
.link-rect a::before,
.link-rect a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: right top;
  transition: background-color .3s;
}
.link-rect a::after {
  transform: rotate(-45deg) translateY(-50%);
  margin-top: -1px;
}
.link-rect a:hover {
  color: #E60012;
  background: #fff;
}
.link-rect a:hover::before,
.link-rect a:hover::after {
  background: #E60012;
}


.ttl-h2 {
  font-size: 20px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  line-height: 1.8;
  letter-spacing: calc(.24em * 1.4);
}
.ttl-h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  line-height: 1.8;
  letter-spacing: calc(.24em * 1.4);
}
.txt-normal {
  font-size: 14px;
  line-height: 2;
  letter-spacing: calc(.02em * 1.4);
  text-align: justify;
  text-justify: inter-ideograph;
}

.modal-movie {
  display: block;
  text-decoration: none;
}
.modal-movie .pic {
  position: relative;
  padding-top: calc(358 / 640 * 100%);
  border: 1px solid #707070;
  transition: border-color .3s;
  overflow: hidden;
}
.modal-movie .pic::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: url("../img/icon_play.svg") no-repeat;
  background-size: 50px 50px;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.modal-movie .pic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  opacity: .4;
}
.modal-movie .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: transform .7s;
}
.modal-movie:hover .pic {
  border-color: #E60012;
}
.modal-movie:hover img {
  transform: scale(1.06);
}

/* .movie-modal-box */
.movie-modal-box {
  position: relative;
  width: 1140px;
  padding: 107px 0 73px 79px;
  margin: 0 auto;
  border: 1px solid #E60012;
}
.movie-modal-single {
  display: flex;
  justify-content: center;
}
.movie-modal-box::before,
.movie-modal-box::after,
.movie-modal-slider::before {
  content: '';
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 5px;
  height: 5px;
  background: #E60012;
}
.movie-modal-box::after {
  right: auto;
  left: -3px;
}
.movie-modal-slider::before {
  bottom: 0;
  top: -3px;
}
.movie-modal-ttl {
  position: absolute;
  top: -17px;
  left: -1px;
}
.movie-modal-ttl .rect-red {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  line-height: 37px;
  color: #fff;
  background: #E60012;
  letter-spacing: calc(.24em * 1.4);
  padding: 0 12px 0 15px;
  margin-bottom: 3px;
}
.movie-modal-box .swiper-slide {
  width: 481px;
  margin-right: 19px;
}
.movie-modal-box .pic {
  border-color: #E60012;
}
.movie-modal-box .movie p {
  display: inline-block;
  font-size: 14px;
  line-height: 27px;
  color: #fff;
  background: #E60012;
  letter-spacing: calc(.02em * 1.4);
  padding: 0 10px 0 12px;
  border: 1px solid #E60012;
  transition: color .3s,background .3s;
}
.movie-modal-box .movie .modal-movie:hover p {
  background: #fff;
  color: #E60012;
}
.modaal-video-container {
  height: 0 !important;
  padding-bottom: 56.25% !important;
}
.modaal-inner-wrapper {
  padding: 80px 0;
}
.modaal-video-wrap {
  width: 1000px;
  margin: auto;
}
.modaal-video-container {
  width: 1000px;
}

.modaal-image .modaal-content {
  width: 420px;
}

.movie-modal-box .swiper-button-next,
.movie-modal-box .swiper-button-prev {
  position: absolute;
  top: 30px;
  left: auto;
  right: 28px;
  width: 12px;
  height: 21px;
  margin-top: 0;
  z-index: 1;
  cursor: pointer;
  background: url("../img/icon_right.svg") no-repeat;
  background-size: 12px 21px;
  background-position: center;
  background-repeat: no-repeat;
}
.movie-modal-box .swiper-button-prev {
  transform: scaleX(-1);
  margin-right: 40px;
}

.modaal-wrapper .modaal-close {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 72px;
  height: 30px;
  background: url("../img/icon_modal_close.svg") no-repeat;
  background-size: 72px 30px;
  border-radius: 0;
  margin: -320px 0 0 427px;
}
.modal-intervew-outer .modaal-container {
  overflow: visible !important;
}
.modaal-image.modaal-wrapper .modaal-close {
  margin: -180px 0 0 139px;
}

.modaal-close::before,
.modaal-close::after {
  content: none;
}


.fadeAnime {
	visibility: visible;
}
@keyframes txt-line-anime {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/* .table */
.table table {
  width: 100%;
}
.table th,
.table td {
  line-height: 1.42;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
  padding-top: 8px;
  padding-bottom: 7px;
}
.table th {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: calc(.12em * 1.4);
  background: #F4F3EC;
}
.table td {
  font-size: 14px;
  letter-spacing: calc(.08em * 1.4);
  background: #fff;
}
.table .th-white {
  background: #fff;
}
.table .td-red {
  color: #fff;
  background: #E60012;
}


/* ---------------------------------------------------------
.main
----------------------------------------------------------*/
.main {
  position: relative;
  display: block;
  padding: 0 70px 80px;
}
.main::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(800 / 1280 * 100%);
  height: calc(100% - 215px);
  background: #F4F3EC;
}
.main .main-inner {
  position: relative;
  min-width: 1140px;
  margin: 0 auto;
}
.main .breadcrumb {
  position: absolute;
  top: 153px;
  left: 50%;
  margin-left: calc(250 / 1140 * 100%);
}
.main .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.main .breadcrumb li {
  font-size: 10px;
  letter-spacing: calc(.02em * 1.4);
  margin-bottom: 5px;
  margin-right: 10px;
}
.main .breadcrumb li.is-cr {
  width: 100%;
  margin: 0;
}
.main .breadcrumb a {
  color: #999;
}
.main .breadcrumb li:first-child::after {
  content: '/';
  font-size: 10px;
  margin-left: 10px;
}
.main .main-wrapper {
  display: flex;
  margin: 62px auto 0;
}
.main .ttl-line .ttl {
  font-weight: normal;
}

.main .main-pic {
  width: calc(800 / 1140 * 100%);
}
.main .main-pic img {
  width: 100%;
  height: auto;
}
.main .main-nav {
  padding-top: 120px;
  margin-left: 40px;
}
.main .main-nav li a {
  position: relative;
  display: block;
  font-size: 14px;
  letter-spacing: calc(.08em * 1.4);
  padding-left: 18px;
  margin-bottom: 9px;
}
.main .main-nav li a::before,
.main .main-nav li a::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  background: #E60012;
}
.main .main-nav li a::after {
  top: 9px;
  width: 10px;
  height: 1px;
}

/* ---------------------------------------------------------
.category-index
----------------------------------------------------------*/
.category-index article {
  width: 1140px;
  padding: 72px 0 140px;
  margin: 0 auto;
}
.category-index article .ttl-h2 {
  margin-bottom: 26px;
}
.category-index article > .txt-normal {
  width: 700px;
}
.category-index .sec-first {
  margin-top: 73px;
}
.category-index .category-link {
  position: relative;
  display: flex;
  width: 1140px;
  text-decoration: none;
  margin-bottom: 10px;
}
.category-index .category-link:hover {
  color: #111;
}
.category-index .category-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #E60012;
  opacity: 0;
  transition: opacity .3s;
  box-sizing: border-box;
}
@media screen and (min-width:769px) {
  .category-index .category-link:hover::after {
    opacity: 1;
  }
}
.category-index .category-link .pic {
  width: 400px;
}
.category-index .category-link .pic img {
  width: 100%;
  height: auto;
}
.category-index .category-link .txt-box {
  width: 740px;
  background: #F4F3EC;
  padding: 50px 105px 0 40px;
}
.category-index .category-link .ttl-h3 {
  font-size: 16px;
  letter-spacing: calc(.12em * 1.4);
}
.category-index .category-link .txt-normal {
  margin: 6px 0 30px;
}
.category-index .category-link .link-txt-line {
  margin-top: auto;
}

/* ---------------------------------------------------------
txt-404
----------------------------------------------------------*/
.txt-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 567px;
  margin-bottom: 42px;
}
.txt-404 .txt-num {
  font-size: 84px;
  line-height: 1;
  letter-spacing: .12em;
  text-indent: .1em;
}
.txt-404 .txt-en {
  font-size: 24px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  line-height: 1;
  color: #fff;
  background: #E60012;
  letter-spacing: .1em;
  padding: 0 1px 0 2px;
  margin-top: 15px;
}
#page-404 #pagetop {
  display: none;
}

/* ---------------------------------------------------------
#pagetop
----------------------------------------------------------*/
#pagetop {
  text-align: center;
}
#pagetop a {
  position: relative;
  display: inline-block;
  width: 90px;
  font-size: 12px;
  font-weight: bold;
  font-family: "TazuganeGothicStdN-Bold";
  text-align: center;
  line-height: 1;
  text-decoration: none;
  letter-spacing: .04em;
}
#pagetop a::before {
  content: '';
  position: relative;
  display: block;
  width: 1px;
  height: 15px;
  background: #111;
  margin: 0 0 10px 45px;
}
#pagetop a::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 44px;
  display: block;
  width: 3px;
  height: 3px;
  background: #E60012;
  margin-left: 0;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer {
  border-top: 1px solid #E60012;
  padding-bottom: 79px;
  margin-top: 82px;
}
.footer-inner {
  display: flex;
  width: 1100px;
  padding: 79px 0 0 50px;
  margin: 0 auto;
}
.footer-inner .left-col {
  position: relative;
  width: 342px;
  line-height: 1;
}
.footer-inner .left-col::before,
.footer-inner .center-col::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom,#111, #111 33%, transparent 33%, transparent);
  background-size: 1px 6px;
  display: block;
  width: 1px;
  height: 100%;
}
.footer-inner .left-col .footer-logo img {
  width: 240px;
  height: 20px;
}
.footer-inner .left-col .txt-address {
  font-size: 13px;
  letter-spacing: calc(.02em * 1.4);
  margin: 40px 0 16px;
}
.footer-inner .left-col .footer-wrapper {
  display: flex;
  font-size: 13px;
  letter-spacing: calc(.02em * 1.4);
}
.footer-inner .link-tel,
.footer-inner .link-fax {
  text-decoration: none;
}
.footer-inner .link-tel {
  margin-right: 30px;
}
.footer-inner .link-tel::before,
.footer-inner .link-fax::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 15px;
  background: url("../img/icon_tel.svg") no-repeat;
  background-size: 11px 15px;
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -1px;
}
.footer-inner .link-fax::before {
  width: 17px;
  height: 16px;
  background: url("../img/icon_fax.svg") no-repeat;
  background-size: 17px 16px;
  vertical-align: top;
}
.footer-inner .link-inquiry {
  margin-top: 40px;
}
.footer-inner .link-inquiry a {
  position: relative;
  display: block;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: calc(.12em * 1.4);
}
.footer-inner .link-inquiry a::before,
.footer-inner .link-inquiry a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 12px;
  vertical-align: middle;
  background: url("../img/icon_mail.svg") no-repeat;
  background-size: 16px auto;
  margin-right: 9px;
  margin-top: -2px;
  transition: opacity .3s;
}
.footer-inner .link-inquiry a::after {
  position: absolute;
  top: 2px;
  left: 0;
  background-image: url("../img/icon_mail_red.svg");
  opacity: 0;
}
.footer-inner .link-inquiry a:hover::before {
  opacity: 0;
}
.footer-inner .link-inquiry a:hover::after {
  opacity: 1;
}
.footer-inner .center-col {
  position: relative;
  width: 334px;
  padding-left: 79px;
}
.footer-inner .center-col li {
  line-height: 1;
  margin-bottom: 20px;
}
.footer-inner .center-col li:last-child {
  margin-bottom: 0;
}
.footer-inner .center-col a {
  font-size: 13px;
  letter-spacing: calc(.12em * 1.4);
}
.footer-inner .right-col {
  width: 374px;
  padding-left: 80px;
}
.footer-inner .right-col .link-login a {
  position: relative;
  display: flex;
  font-size: 13px;
  letter-spacing: calc(.12em * 1.4);
  text-decoration: none;
  margin-top: -3px;
}
.footer-inner .right-col .link-login a::before,
.footer-inner .right-col .link-login a::after {
  content: '';
  display: block;
  width: 18px;
  height: 16px;
  background: url("../img/icon_login.svg") no-repeat;
  background-size: 18px auto;
  margin-right: 7px;
  transition: opacity .3s;
}
.footer-inner .right-col .link-login a::after {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/icon_login_red.svg");
  opacity: 0;
  margin: 0;
}
.footer-inner .right-col .link-login a:hover::before {
  opacity: 0;
}
.footer-inner .right-col .link-login a:hover::after {
  opacity: 1;
}
.footer-inner .right-col .txt-regist {
  font-size: 11px;
  line-height: 2;
  letter-spacing: calc(.02em * 1.4);
  margin: 12px 0 0;
}

.footer-inner .right-col ul {
  position: relative;
  display: flex;
  font-size: 12px;
  letter-spacing: calc(.02em * 1.4);
  padding-top: 26px;
  margin-top: 24px;
}
.footer-inner .right-col ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right,#111, #111 33%, transparent 33%, transparent);
  background-size: 6px 1px;
  display: block;
  width: 56px;
  height: 1px;
}
.footer-inner .right-col li {
  margin-right: 30px;
}
.footer-inner .right-col li:last-child {
  margin-right: 0;
}
.footer-inner .right-col .txt-copy {
  font-size: 10px;
  letter-spacing: .02em;
  margin-top: 25px;
}

/* ---------------------------------------------------------
media queries
----------------------------------------------------------*/
@media screen and (max-width:768px) {
  /* ---------------------------------------------------------
  common
  ----------------------------------------------------------*/
  body {
    min-width: 100%;
    padding-top: calc(79 / 375 * 100%);
  }
  .show-pc {
    display: none;
  }
  .show-sp {
    display: block;
  }
  img {
    width: 100%;
    height: auto;
  }
  
/* ---------------------------------------------------------
header
----------------------------------------------------------*/
  header {
    padding: calc(20 / 375 * 100%) 0 calc(20 / 375 * 100%) calc(20 / 375 * 100%);
  }
  header .logo {
    width: calc(140 / 355 * 100%);
  }
  header .btn-menu a {
    position: fixed;
    top: 0;
    left: auto;
    right: calc(20 / 375 * 100%);
    width: calc(29 / 375 * 100%);
    padding-top: calc(19 / 375 * 100%);
    margin-top: calc(15 / 375 * 100%);
    transform: none;
  }
  header .btn-menu span {
    width: calc(28 / 29 * 100%);
    height: 1px;
    padding-top: 0;
    transition: opacity .3s,transform .3s,top .3s,margin .3s;
  }
  header .btn-menu span:nth-child(2) {
    top: 0;
    margin-top: calc(7 / 29 * 100%);
  }
  header .btn-menu span:nth-child(3) {
    top: 0;
    margin-top: calc(14 / 29 * 100%);
  }
  header.is-open span:nth-child(1),
  header.is-open span:nth-child(3) {
    top: 0;
    margin-top: calc(7 / 29 * 100%);
    transform: rotate(30deg);
  }
  header.is-open span:nth-child(3) {
    transform: rotate(-30deg);
  }
  header .btn-menu p {
    font-size: calc(10 / 375 * 100vw);
  }
  header > .link-inquiry {
    display: none;
  }
  header .nav-upper {
    display: none;
  }
  #meganavi {
    display: block;
  }
  .meganavi-inner {
    padding: calc(107 / 375 * 100%) calc(20 / 375 * 100%) 0;
  }
  #meganavi nav > ul {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  #meganavi nav > ul > li:first-child,
  #meganavi nav > ul > li:nth-child(5),
  #meganavi nav > ul > li:nth-child(2),
  #meganavi nav > ul > li:nth-child(6),
  #meganavi nav > ul > li:nth-child(3),
  #meganavi nav > ul > li:nth-child(7),
  #meganavi nav > ul > li:nth-child(4) {
    width: 100%;
    margin-bottom: calc(43 / 335 * 100%);
  }
  #meganavi nav > ul > li > a {
    font-size: calc(13 / 375 * 100vw);
  }
  #meganavi nav > ul > li.is-cr > a {
    color: #E60012;
  }
  #meganavi nav > ul > li > a::after {
    position: absolute;
    bottom: 0;
    height: 0;
    padding-top: 1px;
    margin: 0 0 calc(-16 / 335 * 100%);
  }
  #meganavi nav > ul > li.is-cr > a::after {
    background: #E60012;
  }
  #meganavi nav ul ul {
    display: none;
  }

  .meganavi-bottom {
    width: 100%;
    padding: 0 0 calc(33 / 335 * 100%);
    margin: calc(85 / 335 * 100%) auto 0;
  }
  .meganavi-bottom .wrapper {
    display: block;
  }
  .meganavi-bottom .left-col {
    width: 100%;
    padding-bottom: calc(55 / 375 * 100vw);
  }
  .meganavi-bottom .left-col ul {
    flex-wrap: wrap;
    margin-top: calc(10 / 375 * 100vw);
  }
  .meganavi-bottom .txt-company {
    width: calc(240 / 335 * 100%);
    margin-bottom: calc(37 / 335 * 100%);
  }
  .meganavi-bottom .txt-company img {
    width: 100%;
    height: auto;
  }

  .meganavi-bottom .left-col .link-tel,
  .meganavi-bottom .left-col .link-fax {
    margin-right: calc(20 / 375 * 100vw);
  }
  .meganavi-bottom .left-col .link-tel::before,
  .meganavi-bottom .left-col .link-fax::before {
    width: calc(11 / 375 * 100vw);
    height: calc(15 / 375 * 100vw);
    background-size: calc(11 / 375 * 100vw) calc(15 / 375 * 100vw);
    margin-right: calc(6 / 375 * 100vw);
  }
  .meganavi-bottom .left-col .link-tel::before {
    margin-top: calc(-1 / 375 * 100vw);
  }
  .meganavi-bottom .left-col .link-fax::before {
    width: calc(17 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-size: calc(17 / 375 * 100vw) calc(16 / 375 * 100vw);
    transform: translateY(1px);
  }
  .meganavi-bottom .left-col .link-inquiry a {
    font-size: calc(13 / 375 * 100vw);
    margin-top: calc(36 / 375 * 100vw);
  }
  .meganavi-bottom .left-col .link-inquiry a::before,
  .meganavi-bottom .left-col .link-inquiry a::after {
    width: calc(16 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
    background-size: calc(16 / 375 * 100vw) auto;
    vertical-align: middle;
    margin-right: calc(7 / 375 * 100vw);
    margin-top: calc(-2 / 375 * 100vw);
  }
  .meganavi-bottom .left-col .link-inquiry a::after {
    top: 0;
    margin-top: calc(5 / 375 * 100vw);
  }
  .meganavi-bottom .right-col {
    width: 100%;
  }
  .meganavi-bottom .right-col .link-login a {
    font-size: calc(13 / 375 * 100vw);
    margin-top: 0;
  }
  .meganavi-bottom .right-col  .link-login a::before,
  .meganavi-bottom .right-col  .link-login a::after {
    width: calc(18 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-size: calc(18 / 375 * 100vw) auto;
    margin-right: calc(7 / 375 * 100vw);
  }
  .meganavi-bottom .right-col  .txt-regist {
    font-size: calc(11 / 375 * 100vw);
    margin: calc(12 / 335 * 100%) 0 0;
  }

/* ---------------------------------------------------------
common
----------------------------------------------------------*/

/* .ttl-line */
  .ttl-line-head {
    height: calc(13 / 375 * 100vw);
    margin-bottom: calc(2 / 375 * 100vw);
  }
  .ttl-line-head .num {
    font-size: calc(12 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
  }
  .ttl-line-head .rect {
    font-size: calc(12 / 375 * 100vw);
  }
  .ttl-line.is-anime .ttl-line-head .rect {
    padding-top: 1px;
  }
  .ttl-line .ttl {
    font-size: calc(24 / 375 * 100vw);
    padding-bottom: calc(18 / 375 * 100vw);
    margin-top: calc(7 / 375 * 100vw);
  }
  .ttl-line .line::before,
  .ttl-line .line::after {
    top: calc(-2 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
    height: calc(5 / 375 * 100vw);
  }


/* .link-txt-line */
  .link-txt-line {
    font-size: calc(14 / 375 * 100vw);
    padding-right: calc(13 / 375 * 100vw);
    padding-bottom: calc(7 / 375 * 100vw);
  }
  .link-txt-line::before,
  .link-txt-line::after {
    top: calc(11 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    margin-top: calc(-1 / 375 * 100vw);
  }
  .link-txt-line[target="_blank"] {
    padding-right: calc(14 / 375 * 100vw);
  }
  .link-txt-line[target="_blank"]::before {
    content: '';
    top: calc(6 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
    background: url("../img/icon_blank_red.svg") no-repeat;
    background-size: calc(12 / 375 * 100vw) calc(9 / 375 * 100vw);
    transform: none;
  }
  .link-txt-line[target="_blank"]::after {
    content: none;
  }

/* .link-rect */
  .link-rect a {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(46 / 375 * 100vw) calc(9 / 375 * 100vw) calc(18 / 375 * 100vw);
    border: 2px solid #E60012;
  }
  .link-rect a::before,
  .link-rect a::after {
    right: calc(20 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
  }
  .link-rect a::after {
    margin-top: calc(-1 / 375 * 100vw);
  }

  .ttl-h2 {
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: calc(.24em * 1.3);
  }
  .ttl-h3 {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(.24em * 1.3);
  }
  .txt-normal {
    font-size: calc(14 / 375 * 100vw);
  }

  .modal-movie .pic::before {
    width: calc(40 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    background-size: calc(40 / 375 * 100vw) calc(40 / 375 * 100vw);
  }

/* .movie-modal-box */
  .movie-modal-box {
    width: 100%;
    padding: calc(98 / 375 * 100vw) 0 calc(43 / 375 * 100vw) calc(20 / 375 * 100vw);
    margin: 0 auto;
    border-right: none;
    border-left: none;
  }
  .movie-modal-box::before,
  .movie-modal-box::after,
  .movie-modal-slider::before {
    right: 0;
    bottom: calc(-3 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
    height: calc(5 / 375 * 100vw);
  }
  .movie-modal-box::after {
    right: auto;
    left: 0;
  }
  .movie-modal-slider::before {
    bottom: 0;
    top: calc(-3 / 375 * 100vw)
  }
  .movie-modal-ttl {
    top: calc(-20 / 375 * 100vw);
    left: 0;
  }
  .movie-modal-ttl .rect-red {
    font-size: calc(16 / 375 * 100vw);
    line-height: 9.87vw;
    padding: 0 calc(19 / 375 * 100vw) 0 calc(19 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
  .movie-modal-box .swiper-slide {
    width: calc(302 / 375 * 100vw);
    margin-right: calc(9 / 375 * 100vw);
  }
  .movie-modal-box .movie p {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
    padding: calc(3 / 375 * 100vw) calc(16 / 375 * 100vw) calc(4 / 375 * 100vw) calc(12 / 375 * 100vw);
  }
  .movie-modal-box .swiper-button-next,
  .movie-modal-box .swiper-button-prev {
    top: calc(30 / 375 * 100vw);
    right: calc(20 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
    height: calc(21 / 375 * 100vw);
    background-size: calc(12 / 375 * 100vw) calc(21 / 375 * 100vw);
  }
  .movie-modal-box .swiper-button-prev {
    margin-right: calc(40 / 375 * 100vw);
  }
  .modaal-video-wrap {
    width: 100%;
    margin: auto;
  }
  .modaal-video-container {
    width: 100%;
  }
  .modaal-image .modaal-content {
    width: calc(335 / 375 * 100vw);
  }  
  .modaal-wrapper .modaal-close {
    left: auto;
    right: calc(20 / 375 * 100vw);
    width: calc(72 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
    background-size: calc(72 / 375 * 100vw) calc(30 / 375 * 100vw);
    margin: calc(-155 / 375 * 100vw) 0 0;
  }
  .modal-intervew-outer .modaal-inner-wrapper {
    padding: 80px calc(20 / 375 * 100vw);
  }
  .modal-intervew-outer .modaal-content-container {
    height: calc(474 / 667 * 100vh);
  }
  .modal-intervew-outer.modaal-wrapper .modaal-close {
    top: 0;
    left: auto;
    right: 0;
    margin-top: calc(-40 / 375 * 100vw);
  }
  .modaal-image.modaal-wrapper .modaal-close {
    top: 0;
    left: auto;
    right: 0;
    margin: calc(-40 / 375 * 100vw) 0 0;
  }
  .modaal-image .modaal-inner-wrapper {
    padding: 0;
  }
  

/* .table */
  
  .table-inner {
    overflow: auto;
  }
  .table:not(.no-scroll)::before {
    content: '';
    display: block;
    width: calc(80 / 375 * 100vw);
    height: calc(10 / 375 * 100vw);
    background: url("../img/icon_scroll.svg") no-repeat;
    background-size: calc(80 / 375 * 100vw) calc(10 / 375 * 100vw);
    margin: 0 0 calc(10 / 375 * 100vw) auto;
  }
  .table th,
  .table td {
    padding-top: calc(8 / 375 * 100vw);
    padding-bottom: calc(7 / 375 * 100vw);
  }
  .table th {
    font-size: calc(14 / 375 * 100vw);
  }
  .table td {
    font-size: calc(14 / 375 * 100vw);
  }

/* ---------------------------------------------------------
.main
----------------------------------------------------------*/
  .main {
    padding: 0 calc(20 / 375 * 100%) calc(2 / 375 * 100%);
  }
  .main::before {
    width: calc(335 / 375 * 100%);
    height: calc(100% - calc(185 / 375 * 100vw));
  }
  .main .main-inner {
    position: relative;
    min-width: 100%;
    margin: 0 auto;
  }
  .main .breadcrumb {
    position: relative;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-bottom: calc(26 / 375 * 100vw);
  }
  .main .breadcrumb li {
    font-size: calc(10 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
  .main .breadcrumb li:first-child::after {
    font-size: calc(10 / 375 * 100vw);
    margin-left: calc(10 / 375 * 100vw);
  }
  .main .main-wrapper {
    display: block;
    margin: calc(22 / 335 * 100%) auto 0;
  }
  .main .main-pic {
    width: calc(355 / 335 * 100%);
    margin-left: calc(-20 / 335 * 100%);
  }
  .main .main-nav {
    padding-top: calc(18 / 335 * 100%);
    margin-left: calc(38 / 335 * 100%);
  }
  .main .main-nav li a {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: calc(.02em * 1.4);
    padding-left: calc(18 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
  .main .main-nav li a::before,
  .main .main-nav li a::after {
    top: calc(2.5vw - 2px);
    width: 5px;
    height: 5px;
  }
  .main .main-nav li a::after {
    top: 2.5vw;
    width: 10px;
    height: 1px;
  }

/* ---------------------------------------------------------
.category-index
----------------------------------------------------------*/
  .category-index article {
    width: 100%;
    padding: calc(74 / 375 * 100%) calc(20 / 375 * 100%) calc(40 / 375 * 100%);
    margin: 0 auto;
  }
  .category-index article .ttl-h2 {
    margin-bottom: calc(30 / 335 * 100%);
  }
  .category-index article > .txt-normal {
    width: 100%;
  }
  .category-index .sec-first {
    margin-top: calc(58 / 375 * 100%);
  }
  .category-index .category-link {
    position: relative;
    display: block;
    width: 100%;
    text-decoration: none;
    margin-bottom: calc(80 / 335 * 100%)
  }
  .category-index .category-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(-20 / 335 * 100%);
    width: calc(375 / 335 * 100%);
    height: calc(100% - calc(128 / 375 * 100vw));
    background: #F4F3EC;
  }
  .category-index .category-link .pic {
    position: relative;
    width: 100%;
  }
  .category-index .category-link .txt-box {
    position: relative;
    width: 100%;
    background: none;
    padding: calc(34 / 335 * 100%) 0 calc(40 / 335 * 100%);
  }
  .category-index .category-link .ttl-h3 {
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: calc(.24em * 1.4);
  }
  .category-index .category-link .txt-normal {
    margin: calc(6 / 335 * 100%) 0 calc(10 / 335 * 100%);
  }
  .category-index .category-link .link-txt-line {
    margin-top: auto;
  }

/* ---------------------------------------------------------
txt-404
----------------------------------------------------------*/
  .txt-404 {
    height: calc(414 / 375 * 100vw);
    margin-bottom: calc(47 / 375 * 100vw);
  }
  .txt-404 .txt-num {
    font-size: calc(84 / 375 * 100vw);
  }
  .txt-404 .txt-en {
    font-size: calc(24 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }

/* ---------------------------------------------------------
#pagetop
----------------------------------------------------------*/
  #pagetop {
    line-height: 1;
  }
  #pagetop a {
    width: calc(90 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    line-height: 1;
  }
  #pagetop a::before {
    width: 1px;
    height: 0;
    padding-top: calc(15 / 375 * 100vw);
    margin: 0 0 calc(10 / 375 * 100vw) calc(44 / 375 * 100vw);
  }
  #pagetop a::after {
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    padding-top: calc(3 / 375 * 100vw);
    margin: calc(3 / 375 * 100vw) 0 0 calc(43 / 375 * 100vw);
  }

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
  footer {
    padding-bottom: calc(19 / 375 * 100%);
    margin-top: calc(40 / 375 * 100%);
  }
  .footer-inner {
    display: block;
    width: 100%;
    padding: calc(59 / 375 * 100%) calc(20 / 375 * 100%) 0;
  }
  .footer-inner .left-col {
    width: 100%;
    padding-bottom: calc(40 / 335 * 100%);
  }
  .footer-inner .left-col::before,
  .footer-inner .center-col::before {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right,#111, #111 33%, transparent 33%, transparent);
    background-size: 6px 1px;
    display: block;
    width: 100%;
    height: 1px;
  }
  .footer-inner .left-col .footer-logo img {
    width: calc(240 / 335 * 100%);
    height: calc(20 / 375 * 100vw);
  }
  .footer-inner .left-col .txt-address {
    font-size: calc(13 / 375 * 100vw);
    margin: calc(40 / 335 * 100%) 0 calc(16 / 335 * 100%);
  }
  .footer-inner .left-col .footer-wrapper {
    font-size: calc(13 / 375 * 100vw);
  }
  .footer-inner .link-tel {
    margin-right: calc(30 / 335 * 100%);
  }
  .footer-inner .link-tel::before,
  .footer-inner .link-fax::before {
    width: calc(11 / 375 * 100vw);
    height: calc(15 / 375 * 100vw);
    background-size: calc(11 / 375 * 100vw) calc(15 / 375 * 100vw);
    margin-right: calc(6 / 375 * 100vw);
  }
  .footer-inner .link-fax::before {
    width: calc(17 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-size: calc(17 / 375 * 100vw) calc(16 / 375 * 100vw);
  }
  .footer-inner .link-inquiry {
    margin-top: calc(40 / 375 * 100vw);
  }
  .footer-inner .link-inquiry a {
    font-size: calc(13 / 375 * 100vw);
  }
  .footer-inner .link-inquiry a::before,
  .footer-inner .link-inquiry a::after {
    width: calc(16 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
    background-size: calc(16 / 375 * 100vw) auto;
    margin-right: calc(9 / 375 * 100vw);
  }
  .footer-inner .center-col {
    width: 100%;
    padding: 0 0 calc(35 / 335 * 100%);
    margin-top: calc(40 / 335 * 100%);
  }
  .footer-inner .center-col ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-inner .center-col li {
    width: 50%;
    line-height: 1.5;
    margin-bottom: calc(23 / 335 * 100%);
  }
  .footer-inner .center-col li:last-child {
    margin-bottom: 0;
  }
  .footer-inner .center-col a {
    font-size: calc(13 / 375 * 100vw);
  }
  .footer-inner .right-col {
    width: 100%;
    padding-left: 0;
    margin-top: calc(39 / 335 * 100%);
  }
  .footer-inner .right-col .link-login a {
    font-size: calc(13 / 375 * 100vw);
    margin-top: 0;
  }
  .footer-inner .right-col .link-login a::before,
  .footer-inner .right-col .link-login a::after {
    width: calc(18 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-size: calc(18 / 375 * 100vw) auto;
    margin-right: calc(7 / 375 * 100vw);
  }
  .footer-inner .right-col .txt-regist {
    font-size: calc(11 / 375 * 100vw);
    margin: calc(12 / 375 * 100vw) 0 0;
  }

  .footer-inner .right-col ul {
    font-size: calc(12 / 375 * 100vw);
    padding-top: calc(26 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
  .footer-inner .right-col ul::before {
    width: calc(56 / 375 * 100vw);
  }
  .footer-inner .right-col li {
    margin-right: calc(30 / 375 * 100vw);
  }
  .footer-inner .right-col li:last-child {
    margin-right: 0;
  }
  .footer-inner .right-col .txt-copy {
    font-size: calc(10 / 375 * 100vw);
    margin-top: calc(25 / 375 * 100vw);
  }
}



/* update 202207 start =============================================================================================================== */
.spBr{display:none;}

/* header */
header .nav-upper .link-login .inuse{position:relative;}
header .nav-upper .link-login .inuse dt{float:right; padding-bottom:10px;}
header .nav-upper .link-login .inuse dt a{justify-content:flex-end;}
header .nav-upper .link-login .inuse dd{background:#fff; padding:0 15px; width:190px; max-height:0; overflow:hidden; transition:all .3s ease .1s; position:absolute; right:0; top:25px; border:1px transparent solid; font-size:12px;}
header .nav-upper .link-login .inuse:hover dd{max-height:200px; padding:10px 15px; overflow:visible; border:1px #E60012 solid;}
header .nav-upper .link-login .inuse dd a{display:block; padding:5px 0 5px 24px; transition:color .3s ease; text-decoration:underline;}
header .nav-upper .link-login .inuse dd a.download{background:url("../img/icon_documents.svg") no-repeat left center; background-size:14px auto;}
header .nav-upper .link-login .inuse dd a.download:hover{background:url("../img/icon_documents_red.svg") no-repeat left center; background-size:14px auto;}

header .nav-upper .link-login .inuse dd a::before,
header .nav-upper .link-login .inuse dd a::after{content:none;}
header .nav-upper .lang{position:absolute; top:21px; right:140px; font-size:13px; letter-spacing:0.05em; font-family:"TazuganeGothicStdN-Regular","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","Yu Gothic Medium",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;; /*z-index:2;*/}
header .nav-upper .lang a{text-decoration:none;}

/*header.is-open .nav-upper .lang{right:auto; left:180px;}*/


header .utils{position:absolute; top:184px; right:17px; width:18px;}
header .utils .link-inquiry{position:static; top:auto; right:auto; margin-right:0;}
header .utils .link-inquiry a {position:relative; display:block; font-size:12px; -ms-writing-mode:tb-rl; writing-mode:vertical-rl; -webkit-text-orientation:upright; text-orientation:upright; text-decoration:none; letter-spacing:calc(.12em * 1.4); padding-top:22px; }
header .utils .link-inquiry a::before,
header .utils .link-inquiry a::after {content:''; position:absolute; top:0; left:1px; display:block; width:16px; height:12px; background:url("../img/icon_mail.svg") no-repeat; background-size:16px auto; transition:opacity .3s; }
header .utils .link-inquiry a::after {background-image:url("../img/icon_mail_red.svg"); opacity:0; }header > .link-inquiry a:hover::before {opacity:0; }
header .utils .link-inquiry a:hover::after {opacity:1; }
header .utils .link-download{position:relative; top:auto; right:auto; margin:0 0 20px 0; padding-bottom:20px;}
header .utils .link-download::after{content:''; display:block; width:14px; height:1px; background:#111; position:absolute; left:calc(50% - 7px); bottom:0;}
header .utils .link-download a{position:relative; display:block; font-size:12px; -ms-writing-mode: tb-rl;  writing-mode: vertical-rl; -webkit-text-orientation:upright; text-orientation:upright; text-decoration:none; letter-spacing: calc(.12em * 1.4); padding-top:22px;}
header .utils .link-download a::before,
header .utils .link-download a::after{content:''; position:absolute; top:0; left:2px; display:block; width:14px; height:15px; background: url("../img/icon_documents.svg") no-repeat center; background-size:14px auto; transition: opacity .3s;}
header .utils .link-download a::after{background-image: url("../img/icon_documents_red.svg"); opacity:0;}
header .utils .link-download a:hover::before{opacity:0;}
header .utils .link-download a:hover::after{opacity:1;}


.meganavi-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:40px;}
.meganavi-bottom .txt-company{margin:0; /* override */;}
.meganavi-bottom ul{display:flex; justify-content:flex-end; align-items:center;}
.meganavi-bottom ul li{margin-left:24px;}
.meganavi-bottom ul li.link-download a,
.meganavi-bottom ul li.link-inquiry a{position:relative; display:block; font-size:13px; text-decoration:none; letter-spacing:calc(.12em * 1.4);}
.meganavi-bottom ul li.link-download a::before,
.meganavi-bottom ul li.link-download a::after{content:''; display:inline-block; width:14px; height:16px; vertical-align:middle; background:url("../img/icon_documents.svg") no-repeat; background-size:14px auto; margin-right:7px; margin-top:-1px; transition:opacity .3s;}
.meganavi-bottom ul li.link-inquiry a::before,
.meganavi-bottom ul li.link-inquiry a::after{content:''; display:inline-block; width:14px; height:16px; vertical-align:middle; background:url("../img/icon_mail.svg") no-repeat; background-size:14px auto; margin-right:7px; margin-top:1px; transition:opacity .3s;}
.meganavi-bottom ul li.link-download a::after{position:absolute; top:2px; left:0; background-image:url("../img/icon_documents_red.svg"); opacity:0; margin-top:0px;}
.meganavi-bottom ul li.link-inquiry a::after{position:absolute; top:2px; left:0; background-image:url("../img/icon_mail_red.svg"); opacity:0; margin-top:1px;}
.meganavi-bottom ul li.link-download a:hover::before,
.meganavi-bottom ul li.link-inquiry a:hover::before{opacity:0;}
.meganavi-bottom ul li.link-download a:hover::after,
.meganavi-bottom ul li.link-inquiry a:hover::after{opacity:1;}


/* safari hacks
_::-webkit-full-page-media, _:future, :root header > .link-download{right:17px;}
_::-webkit-full-page-media, _:future, :root header > .link-download::after{left:calc(50% + 1px);}
_::-webkit-full-page-media, _:future, :root header > .link-inquiry{right:17px;}
 */

/* footer */
.footer-inner .link-download{ margin-top:40px;}
.footer-inner .link-download a{position: relative; display:block; font-size:13px; text-decoration:none; letter-spacing:calc(.12em * 1.4);}
.footer-inner .link-download a::before,
.footer-inner .link-download a::after{content:''; display:inline-block; width:16px; height:16px; vertical-align:middle; background:url("../img/icon_documents.svg") no-repeat; background-size:14px auto; margin-right:9px; margin-top:-2px; transition:opacity .3s;}
.footer-inner .link-download a::after{position:absolute; top:0; left:0; background-image: url("../img/icon_documents_red.svg"); opacity:0;}
.footer-inner .link-download a:hover::before{opacity:0;}
.footer-inner .link-download a:hover::after{opacity:1;}
.footer-inner .link-inquiry{margin-top:30px;/* override */}
.footer-inner .right-col .txt-logout{font-size:13px; letter-spacing:calc(.02em * 1.4); margin:12px 0 0;}

/* login */
article .wrapper.login{flex-wrap:wrap;}
article .wrapper.login header.page-notes{position:static; margin-bottom:40px; width:100%; padding:0; background:transparent; z-index:0;}
article .wrapper.login header.page-notes p{margin-bottom:30px;}
article .wrapper.login header.page-notes p em{font-weight:bold; font-size:20px; letter-spacing:calc(.24em * 1.2); font-style:normal;}
article .wrapper.login h2{font-size:20px; font-weight:bold; letter-spacing: calc(.24em * 1.2); margin-bottom:30px; text-align:left; width:100%; font-family:"TazuganeGothicStdN-Bold";}
article .wrapper.login .right-col{justify-content:flex-start;}
article .wrapper.login .right-col h2{width:260px; margin:0 auto 30px; padding:52px 0;}

/* forms */
article .lead.first-line{margin-top:0;}
.link-txt-line.inline{padding-bottom:2px;}
.link-txt-line.inline::before,
.link-txt-line.inline::after{top:15px;}

@media screen and (max-width:768px) {
.spBr{display:inline;}
.pcBr{display:none;}
/* header */
header .utils{display:none;}
.meganavi-bottom{display:block; padding-top:0;}
.meganavi-bottom .txt-company{margin-bottom:calc(30 / 375 * 100vw);}
.meganavi-bottom ul{display:block;;}
.meganavi-bottom ul li{margin-left:0; margin-bottom:calc(30 / 375 * 100vw);}
.meganavi-bottom ul li.link-download a,
.meganavi-bottom ul li.link-inquiry a{font-size:calc(12 / 375 * 100vw);}
.meganavi-bottom ul li.link-download a::before,
.meganavi-bottom ul li.link-download a::after{content:''; display:inline-block; width:14px; height:16px; vertical-align:middle; background:url("../img/icon_documents.svg") no-repeat; background-size:14px auto; margin-right:7px; margin-top:-1px; transition:opacity .3s;}
.meganavi-bottom ul li.link-inquiry a::before,
.meganavi-bottom ul li.link-inquiry a::after{content:''; display:inline-block; width:14px; height:16px; vertical-align:middle; background:url("../img/icon_mail.svg") no-repeat; background-size:14px auto; margin-right:7px; margin-top:1px; transition:opacity .3s;}
.meganavi-bottom ul li.link-download a::after{position:absolute; top:2px; left:0; background-image:url("../img/icon_documents_red.svg"); opacity:0; margin-top:0px;}
.meganavi-bottom ul li.link-inquiry a::after{position:absolute; top:2px; left:0; background-image:url("../img/icon_mail_red.svg"); opacity:0; margin-top:1px;}
.meganavi-bottom ul li.link-download a:hover::before,
.meganavi-bottom ul li.link-inquiry a:hover::before{opacity:0;}
.meganavi-bottom ul li.link-download a:hover::after,
.meganavi-bottom ul li.link-inquiry a:hover::after{opacity:1;}
#meganavi nav > ul > li.lang{position:fixed; left:calc(175 / 355 * 100%); top:calc(10 / 375 * 100%);}
#meganavi nav > ul > li.lang a{font-size:calc(10 / 375 * 100vw); font-weight:normal; font-family: "TazuganeGothicStdN-Regular","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","Yu Gothic Medium",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; letter-spacing:0.015em;}
/* footer */
.footer-inner .link-download a{font-size:calc(13 / 375 * 100vw);}
.footer-inner .link-download a::before,
.footer-inner .link-download a::after{width: calc(16 / 375 * 100vw); height: calc(16 / 375 * 100vw); background-size: calc(12 / 375 * 100vw) auto; margin-right: calc(9 / 375 * 100vw); background-position:center;}
/* login */
article .wrapper.login h2{font-size:calc(16 / 375 * 100vw); margin-bottom:calc(20 / 375 * 100vw); text-align:left; width:100%;}
article .wrapper.login .right-col h2{width:auto; margin:0 auto calc(20 / 375 * 100vw); padding:0;}
}

@media screen and (max-width:1450px){
	header .nav-upper nav{margin-left:-400px;}
}
@media screen and (max-width:1200px){
	header .nav-upper nav{margin-left:0; left:auto; right:0;}
	header .nav-upper .lang{top:52px;}
	header .nav-upper .link-login{top:50px;}
	header .nav-upper > nav > ul > li:last-child{margin-right:0;}
}
@media screen and (max-width:1000px){
	header .nav-upper > nav > ul > li{font-size:12px; letter-spacing:0; padding-right:10px; margin-right:10px;}
}
/* update 202207 end */

