@charset "UTF-8";
/* header */
.headerInner {
  top: 0;
  left: 0;
  height: var(--headerHeight);
  position: relative;
  padding: 0 30px;
  width: 100%;
  z-index: 997;
  background-color: #fff;
}
@media screen and (max-width: 979px), print {
  .headerInner {
    padding: 0 20px;
    border-bottom: 1px solid #E0E4EB;
  }
}
@media print {
  .headerInner {
    position: absolute;
  }
}
.headerInner .headerRight .headerText {
  font-size: 18px;
  margin-right: 45px;
}

.headerInner02 {
  top: 0;
  left: 0;
  height: var(--headerHeight);
  position: absolute;
  padding: 0 30px;
  width: 100%;
  z-index: 997;
}
@media screen and (max-width: 979px), print {
  .headerInner02 {
    padding: 0 20px;
  }
}
@media print {
  .headerInner02 {
    position: absolute;
  }
}
.headerInner02 .headerRight .headerText {
  font-size: 18px;
  margin-right: 20px;
}

@media screen and (max-width: 979px), print {
  .headerLogo {
    width: 232px;
  }
}
@media print {
  .headerLogo {
    width: 232px;
  }
}

#gNav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 998;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -41.65%;
  width: 41.65%;
  height: 100vh; /*ナビの高さ*/
  background: #071838;
  /*動き*/
  transition: all 0.6s;
}
#gNav .headerNav {
  flex-direction: column;
  padding: 105px 60px 80px;
}
@media screen and (max-width: 979px), print {
  #gNav .headerNav {
    padding: 70px 15px;
  }
}
@media screen and (max-width: 979px), print {
  #gNav {
    right: -100vw;
    width: 100vw;
  }
}
@media print {
  #gNav {
    display: none;
  }
}
#gNav.panelactive {
  right: 0;
}
#gNav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 400px;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 979px), print {
  #gNav.panelactive #g-nav-list {
    width: 100vw;
  }
}

.headerNavList {
  width: 100%;
}
.headerNavList + .headerNavList {
  border-top: 1px dashed #394660;
}
.headerNavList .headerNavList__link {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  width: clamp(1px, 14vw, var(--headerHeight) * 2);
}
.headerNavList .headerNavList__link .my-line {
  opacity: 0;
}
.headerNavList .headerNavList__link:hover {
  opacity: 1;
}
.headerNavList .headerNavList__link:hover .jp:after {
  opacity: 1;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
  width: 100%;
  left: 0;
  bottom: -1px;
}
.headerNavList .headerNavList__link.hovered .my-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200; /* 初期値は200に設定 */
  animation: line-animation 1.5s forwards;
  opacity: 1;
}
@keyframes line-animation {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.headerNavList .headerNavList__link.hovered_non .my-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 0; /* 初期値を0に設定 */
  animation: line-animation02 0.3s forwards;
  opacity: 1;
}
@keyframes line-animation02 {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 200;
  }
}
.headerNavList .headerNavList__link .svg {
  position: absolute;
  transform: translate(0, -50%) scale(1, -1);
  right: -45px;
  top: 50%;
}
.headerNavList .headerNavList__link .jp {
  position: relative;
}
.headerNavList .headerNavList__link .jp.outside::before {
  background-image: url(../images/common/link@2x.png);
  width: 10px;
  height: 10px;
  right: -20px;
}
.headerNavList .headerNavList__link .jp::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/arw@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 6px;
  right: -40px;
  top: 50%;
  transform: translate(0, -50%);
}
.headerNavList .headerNavList__link .jp:after {
  position: absolute;
  content: "";
  opacity: 0;
  transition: all 0.5s;
}
.headerNavList .headerNavList__link .en {
  opacity: 0.5;
}
.headerNavList + .headerNavList {
  margin-left: 0;
}
.headerNavList .headerNavList__link {
  display: block;
  padding: 20px 10px;
  position: relative;
  width: 100%;
}
.headerNavList .headerNavList__link::before {
  position: absolute;
  content: "";
  right: 20px;
}
.headerNavList.headContactBtn {
  background-color: transparent;
}
.headerNavList.headContactBtn .headerNavList__link {
  display: block;
  height: auto;
  width: 100%;
}

.hunsMenu {
  cursor: pointer;
  position: absolute;
  height: 16px;
  width: 25px;
  z-index: 999;
  top: 50px;
  right: 30px;
}
@media screen and (max-width: 979px), print {
  .hunsMenu {
    width: 20px;
    top: 39px;
    right: 20px;
  }
}
@media print {
  .hunsMenu {
    top: 20px;
  }
}
.hunsMenu span {
  background: #000;
  display: inline-block;
  left: 50%;
  position: absolute;
  transition: all 0.4s;
  transform: translate(-50%, 0);
  height: 1px;
  width: 25px;
}
@media screen and (max-width: 979px), print {
  .hunsMenu span {
    width: 20px;
  }
}
.hunsMenu span:nth-of-type(1) {
  top: 0;
}
.hunsMenu span:nth-of-type(2) {
  top: 8px;
}
@media screen and (max-width: 979px), print {
  .hunsMenu span:nth-of-type(2) {
    top: 6px;
  }
}
.hunsMenu span:nth-of-type(3) {
  top: 16px;
}
@media screen and (max-width: 979px), print {
  .hunsMenu span:nth-of-type(3) {
    top: 12px;
  }
}
.hunsMenu.active {
  position: fixed;
}
.hunsMenu.active span {
  background-color: #fff;
}
.hunsMenu.active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) translateY(6px) rotate(-35deg);
  width: 25px;
}
@media screen and (max-width: 979px), print {
  .hunsMenu.active span:nth-of-type(1) {
    width: 20px;
  }
}
.hunsMenu.active span:nth-of-type(2) {
  opacity: 0;
}
.hunsMenu.active span:nth-of-type(3) {
  top: 12px;
  transform: translateX(-50%) translateY(-6px) rotate(35deg);
  width: 25px;
}
@media screen and (max-width: 979px), print {
  .hunsMenu.active span:nth-of-type(3) {
    width: 20px;
  }
}

/*  footer  */
footer #pageUp a {
  width: 44px;
  height: 44px;
  background-color: #000;
  position: fixed;
  bottom: 75px;
  right: 65px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 999;
}
@media screen and (max-width: 979px), print {
  footer #pageUp a {
    bottom: 45px;
    right: 10px;
  }
}
@media print {
  footer #pageUp a {
    position: absolute;
  }
}
footer #pageUp a:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
footer #pageUp a::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/pageup@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
footer #footer-foot {
  background-color: #000;
  padding: 10px 50px 10px 40px;
  align-items: center;
}
@media screen and (max-width: 979px), print {
  footer #footer-foot {
    flex-direction: column;
    padding: 20px;
  }
}
footer #footer-foot .footLink {
  color: #fff;
  position: relative;
  padding-right: 17px;
  line-height: 40px;
}
footer #footer-foot .footLink::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/link@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
footer #footer-foot .footLink:hover {
  opacity: 1;
}
footer #footer-foot .footLink:hover span {
  border-bottom: 1px solid #fff;
}
footer #footer-foot .copyright {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

* {
  letter-spacing: 0.05rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.2s;
}
a:focus {
  text-decoration: none;
  color: #000;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
}

@media screen and (max-width: 1170px) {
  .hide__1170 {
    display: none !important;
  }
}

@media screen and (min-width: 1171px) {
  .show__1170 {
    display: block !important;
  }
}

@media screen and (max-width: 979px), print {
  .smp__hide {
    display: none !important;
  }
}

@media screen and (min-width: 980px) {
  .smp__show {
    display: none !important;
  }
}
@media print {
  .smp__show {
    display: block !important;
  }
}

.fs0 {
  font-size: 0;
}

.fs-S {
  font-size: 14px;
}

.fs-M {
  font-size: 18px;
}

.fs-L {
  font-size: 22px;
}

.flex {
  display: flex;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.alignCenter {
  align-items: center;
}

.justBetween {
  justify-content: space-between;
}

.justCenter {
  justify-content: center;
}

.justStart {
  justify-content: flex-start;
}

.justEnd {
  justify-content: flex-end;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.wrapper {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .wrapper {
    padding: 0 64px;
    width: 100%;
  }
}
@media screen and (max-width: 979px) {
  .wrapper {
    padding: 0 48px;
  }
}
@media screen and (max-width: 520px) {
  .wrapper {
    padding: 0 16px;
  }
}

.wrap-1400 {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.col-2 {
  width: 47%;
}

.col-3 {
  width: 30%;
}

.col-4 {
  width: 23%;
}

.w-100 {
  width: 100%;
}

:root {
  --headerHeight: 115px;
  --sectionTop: 80px;
  --sectionBottom: 100px;
}
@media screen and (max-width: 979px), print {
  :root {
    --headerHeight: 88px;
  }
}
@media print {
  :root {
    --headerHeight: 60px;
  }
}

.margin {
  margin-top: var(--sectionTop);
  margin-bottom: var(--sectionBottom);
}

.padding {
  padding-top: var(--sectionTop);
  padding-bottom: var(--sectionBottom);
}

.mb-S {
  margin-bottom: 25px;
}

.mb-M {
  margin-bottom: 30px;
}

.mb-L {
  margin-bottom: 40px;
}

.storyTitle {
  font-weight: normal;
}
.storyTitle .number {
  font-style: italic;
  font-size: 70px;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 979px), print {
  .storyTitle .number {
    font-size: 50px;
  }
}
.storyTitle .number::before {
  position: absolute;
  content: "STORY";
  font-style: normal;
  top: 39%;
  left: 0;
  font-size: 14px;
}
.storyTitle .number::after {
  position: absolute;
  content: "";
  width: 38px;
  height: 1px;
  background-color: #000;
  left: 0;
  top: 56%;
}
@media screen and (max-width: 979px), print {
  .storyTitle .number::after {
    top: 62%;
  }
}
.storyTitle .jp {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.05rem;
}
.storyTitle .jp.space {
  margin-left: 10px;
}

.secTitle {
  font-size: 38px;
  font-weight: bold;
}
@media screen and (max-width: 979px), print {
  .secTitle {
    font-size: 32px;
  }
}
.secTitle .red {
  color: #E70012;
}
.secTitle .small {
  font-size: 28px;
}
@media screen and (max-width: 979px), print {
  .secTitle .small {
    font-size: 20px;
  }
}

.secTitle02 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}

.grayBg {
  background-color: #394660;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s;
  visibility: hidden;
  z-index: 998;
}
.grayBg.active {
  transition: all 0.3s;
  visibility: visible;
  opacity: 0.4;
}

.outLinkArea + .outLinkArea {
  margin-top: 10px;
}
.outLinkArea + .outLinkArea .outLink {
  margin-top: 0;
}

.outLink {
  font-weight: 500;
  position: relative;
  padding-right: 18px;
  margin-top: 20px;
  display: inline-block;
}
.outLink::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/link_red@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.outLink:hover {
  opacity: 1;
}
.outLink:hover span {
  border-bottom: 1px solid #000;
}

.fadein,
.fadein02 {
  opacity: 0;
}
@media print {
  .fadein,
  .fadein02 {
    opacity: 1 !important;
  }
}

.unna {
  font-family: "Unna", serif;
}

.roboto {
  font-family: "Roboto Condensed", sans-serif;
}

#pankuzu {
  margin-top: 30px;
}
@media screen and (max-width: 979px), print {
  #pankuzu {
    margin-top: 10px;
  }
}
#pankuzu ul {
  scrollbar-width: thin;
  scrollbar-color: #cdcdcd;
  overflow-x: auto;
  overflow-y: hidden;
  overflow: auto;
  white-space: nowrap;
}
#pankuzu li {
  display: inline-block;
  font-size: 12px;
}
#pankuzu li + li {
  margin-left: 10px;
}
#page_header {
  text-align: center;
  margin-top: 50px;
}
#page_header h1 {
  font-size: 36px;
}
@media screen and (max-width: 979px), print {
  #page_header h1 {
    font-size: 30px;
    margin-top: 30px;
  }
}
#page_header .en {
  color: #f15025;
  font-size: 20px;
}

.brownBg {
  background-color: #f7f2ed;
}

.button01 {
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 20px;
  position: relative;
  text-align: center;
  transition: 0.3s;
  max-width: 360px;
}
@media screen and (max-width: 979px), print {
  .button01 {
    font-size: 16px;
    padding: 15px 0;
    max-width: 100%;
    width: 100%;
  }
}
.button01.__center {
  margin: 0 auto;
}
.button01:visited {
  color: #fff;
}
.button01:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  transition: all 0.2s;
}
.button01:hover {
  background-color: #fff;
  opacity: 1;
}
.button01:hover:after {
  right: 5px;
  transition: all 0.2s;
}

.pageTitle {
  font-size: 24px;
  position: relative;
  padding-top: 70px;
  margin-bottom: 32px;
}
@media screen and (max-width: 979px), print {
  .pageTitle {
    font-size: 23px;
    padding-top: 55px;
  }
}
.pageTitle span {
  color: #E70012;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.pageTitle span::before {
  position: absolute;
  content: "";
  background-color: #E70012;
  width: 42px;
  height: 1px;
  left: 50%;
  bottom: -10px;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 979px), print {
  .ls_sp {
    letter-spacing: 0rem;
  }
}

#other {
  padding: 72px 0 80px;
}
@media screen and (max-width: 979px), print {
  #other {
    padding: 56px 0 60px;
  }
}
#other .otherTitle {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 64px;
}
@media screen and (max-width: 979px), print {
  #other .otherTitle {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 979px), print {
  #other .otherFlex {
    flex-direction: column;
  }
}
#other .otherFlex .contentsLink {
  width: 31%;
}
@media screen and (max-width: 979px), print {
  #other .otherFlex .contentsLink {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #other .otherFlex .contentsLink + .contentsLink {
    margin-top: 24px;
  }
  #other .otherFlex .contentsLink .contentsImage {
    width: 39%;
  }
  #other .otherFlex .contentsLink .linkArw {
    width: calc(61% - 16px);
  }
}
#other .linkArw {
  font-weight: 500;
  line-height: 40px;
  padding-right: 36px;
  margin-top: 13px;
}
@media screen and (max-width: 979px), print {
  #other .linkArw {
    margin-top: 0;
  }
}
#other .linkArw.hovered_non .my-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 0; /* 初期値を0に設定 */
  animation: line-animation02 0.3s forwards;
  opacity: 1 !important;
}
@keyframes line-animation02 {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 200;
  }
}
#other .linkArw.hovered .my-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200; /* 初期値は200に設定 */
  animation: line-animation 1.5s forwards;
  opacity: 1 !important;
}
@keyframes line-animation {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
#other .linkArw.hovered .linkArwIn::before {
  opacity: 1 !important;
  transition: all 0.3s;
}
#other .linkArw .linkArw_arw {
  position: relative;
  padding-right: 0;
  display: inline-block;
  line-height: 24px;
}
#other .linkArw .linkArw_arw .my-line {
  opacity: 0;
}
#other .linkArw .linkArw_arw svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) scale(1, -1);
  right: -40px;
}
#other .linkArw .linkArw_arw::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/arw_red@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 6px;
  top: 50%;
  transform: translate(0, -50%);
  right: -35px;
}