@charset "UTF-8";
* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: justify;
  text-justify: inter-ideograph;
}

.arial {
  font-family: Arial;
  font-feature-settings: "palt";
}

/*--------------------------------------------------------------------------
共通
--------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  color: #000;
  font-size: 13.6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

body {
  position: relative;
}

h2 {
  text-align: center;
  font-size: 32.3px;
}

p {
  line-height: 1.75;
}

a,
button {
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover,
button:hover {
  opacity: 0.6;
}

img {
  display: block;
}
img.no-image {
  object-fit: contain !important;
  font-family: "object-fit: contain !important;";
}

.disp_sp {
  display: none !important;
}

.inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.link-btn {
  display: flex;
  justify-content: center;
}
.link-btn a,
.link-btn button {
  padding: 30px 80px;
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 15.3px;
  letter-spacing: 0;
}
.link-btn a:hover,
.link-btn button:hover {
  opacity: 1;
}
.link-btn__wh a,
.link-btn__wh button {
  border-color: #FFF;
  color: #FFF;
}
.link-btn__wh a:hover,
.link-btn__wh button:hover {
  background-color: #FFF;
  color: #000;
}
.link-btn__bk a,
.link-btn__bk button {
  border-color: #000;
  color: #000;
}
.link-btn__bk a:hover,
.link-btn__bk button:hover {
  background-color: #000;
  color: #FFF;
}
.link-btn__red a,
.link-btn__red button {
  border-color: #d65050;
  background-color: #d65050;
  color: #FFF;
}
.link-btn__red a:hover,
.link-btn__red button:hover {
  background-color: #FFF;
  color: #d65050;
}

#btn-area {
  margin: auto;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 10;
}
#btn-area ul li a {
  transition: all 0.2s ease;
}
#btn-area ul li a:hover {
  opacity: 0.6;
}
#btn-area ul li a img {
  width: 80px;
  height: 80px;
  display: block;
  filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.15));
}

#pagetop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  cursor: pointer;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("../img/common_pagetop.svg");
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
}

.under-page {
  padding-top: 80px;
}
.under-page #title {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/underPage_firstView_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.under-page #title h2 span {
  display: block;
  text-align: center;
}
.under-page #title h2 span.jpn {
  margin-bottom: 15px;
  color: #FFF;
}
.under-page #title h2 span.eng {
  color: #FFF;
  font-size: 15.3px;
}
.under-page #page-navi {
  padding: 20px 20px 100px;
  text-align: left;
}
.under-page #page-navi .inner {
  text-align: left;
}
.under-page #page-navi .inner a {
  text-decoration: underline;
  color: #000;
  font-size: 11.9px;
}
.under-page #page-navi .inner span {
  color: #000;
  font-size: 11.9px;
}
.under-page #page-navi .inner span:before {
  content: ">";
  margin: 0 20px;
}

/*--------------------------------------------------------------------------
fadeイベント
--------------------------------------------------------------------------*/
._fade, ._fade_upper, ._fade_under, ._fade_right, ._fade_left, ._fade_zoom {
  opacity: 0;
}

._fade_in {
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: fade_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._fade_upper_in {
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: fade_upper_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_upper_in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._fade_under_in {
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: fade_under_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_under_in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._fade_right_in {
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: fade_right_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_right_in {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._fade_left_in {
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: fade_left_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_left_in {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._fade_zoom_in {
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: fade_zoom_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_zoom_in {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
._fade_left_loop_in {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: fade_left_loop_in;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_left_loop_in {
  0% {
    transform: translateX(-7px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-7px);
  }
}
._fade_right_loop_in {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: fade_right_loop_in;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_right_loop_in {
  0% {
    transform: translateX(7px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(7px);
  }
}
/*--------------------------------------------------------------------------
header
--------------------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
header #header_inner {
  height: 80px;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s ease;
}
header #header_inner.fix {
  height: 60px;
}
header #header_inner #logo-area a img {
  width: 125px;
  transition: all 0.6s ease;
}
header #header_inner #logo-area.small a img {
  width: 100px;
}
header #header_inner nav > ul {
  display: flex;
}
header #header_inner nav > ul > li {
  position: relative;
}
header #header_inner nav > ul > li a.main-menu {
  color: #FFF;
  font-size: 15.3px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
header #header_inner nav > ul > li a.main-menu:hover {
  opacity: 1;
}
header #header_inner nav > ul > li .sub-menu-bg {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
header #header_inner nav > ul > li .sub-menu-bg > ul.sub-menu-area {
  padding: 20px 30px;
  white-space: nowrap;
  background-color: #000;
}
header #header_inner nav > ul > li .sub-menu-bg > ul.sub-menu-area > li {
  padding: 10px 0;
}
header #header_inner nav > ul > li .sub-menu-bg > ul.sub-menu-area > li a.sub-menu {
  color: #FFF;
}
header #header_inner nav > ul > li .sub-menu-bg > ul.sub-menu-area > li a.sub-menu:hover {
  opacity: 1;
  color: #999999;
}
header #header_inner nav > ul > li .sub-menu-bg > ul.sub-menu-area._open {
  display: block;
}
header #header_inner nav > ul > li:hover a.main-menu {
  color: #999999;
}
header #header_inner nav > ul > li:hover .sub-menu-bg {
  padding-top: 18px;
  visibility: visible;
  opacity: 1;
}
header #header_inner nav > ul > li:hover .sub-menu-bg.pad-small {
  padding-top: 8px;
}
header #header_inner nav > ul > li:not(:last-of-type) {
  margin-right: 30px;
}
header #lang-choice {
  display: none;
}
header #lang-choice a,
header #lang-choice span {
  color: #FFF;
  font-size: 15.3px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
header #lang-choice span {
  margin: 0 10px;
}

/*--------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
footer .box-01 {
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  background-color: #f2f2f2;
}
footer .box-01 .logo-area {
  margin-right: 60px;
}
footer .box-01 .logo-area .logo {
  margin-bottom: 15px;
}
footer .box-01 .logo-area .logo img {
  width: 217px;
  mix-blend-mode: multiply;
}
footer .box-01 .logo-area ul.sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .box-01 .logo-area ul.sns li:not(:last-of-type) {
  margin-right: 15px;
}
footer .box-01 .logo-area ul.sns li a.icon.facebook img {
  width: 38px;
}
footer .box-01 .logo-area ul.sns li a.icon.twitter img {
  width: 38px;
}
footer .box-01 .logo-area ul.sns li a.icon.youtube img {
  width: 40px;
}
footer .box-01 .logo-area ul.sns li a.icon.instagram img {
  width: 36px;
}
footer .box-01 nav > ul {
  display: flex;
  flex-wrap: wrap;
}
footer .box-01 nav > ul > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
footer .box-01 nav > ul > li a.main-menu {
  margin: 20px 0;
  display: block;
  font-size: 15.3px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
footer .box-01 nav > ul > li:not(:last-of-type) {
  margin-right: 35px;
}
footer .box-01 nav > ul > li > ul.sub-menu-area > li {
  margin-bottom: 20px;
  text-align: left;
}
footer .box-01 nav > ul > li > ul.sub-menu-area > li a.sub-menu {
  font-size: 11.9px;
}
footer .box-02 {
  padding: 20px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .box-02 nav {
  margin-bottom: 20px;
}
footer .box-02 nav ul {
  display: flex;
}
footer .box-02 nav ul li:not(:last-of-type) {
  margin-right: 40px;
}
footer .box-02 nav ul li a {
  color: #FFF;
  font-size: 11.9px;
}
footer .box-02 p {
  font-feature-settings: "palt";
  color: #999999;
  font-size: 11.9px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

#top {
  padding-top: 80px;
}
#top #first-view #image-area {
  width: 100%;
  min-height: 600px;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url(../img/top_firstView-220218-2.jpg);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}
#top #first-view #image-area .text-area-outer {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
}
#top #first-view #image-area .text-area-outer .text-area {
  padding: 60px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
}
#top #first-view #image-area .text-area-outer .text-area h2 {
  margin-bottom: 10px;
}
#top #first-view #image-area .text-area-outer .text-area p {
  text-align: center;
  margin-bottom: 20px;
}
#top #first-view #image-area .text-area-outer .text-area h3 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20.4px;
}
#top #first-view #image-area .text-area-outer .text-area .link-area {
  padding: 0 10%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#top #first-view #image-area .text-area-outer .text-area .link-area .link-btn {
  display: block;
}
#top #first-view #image-area .text-area-outer .text-area .link-area .link-btn:not(:last-of-type) {
  margin-bottom: 20px;
}
#top #first-view #image-area .text-area-outer .text-area .link-area .link-btn a {
  padding: 20px;
  text-align: center;
}
#top #first-view .inner {
  padding: 100px 20px;
}
#top #first-view .inner h2 {
  margin-bottom: 20px;
}
#top #first-view .inner p {
  text-align: center;
}
#top #company {
  padding: 100px 20px;
  background-color: #FFF;
}
#top #company .inner h2 {
  margin-bottom: 20px;
  color: #000;
  letter-spacing: -0.025em;
  font-size: 38px;
}
#top #company .inner > P {
  text-align: center;
  margin-bottom: 60px;
  font-size: 16px;
}
#top #company .inner .box-01 .inbox-01 {
  width: 100%;
  display: flex;
  justify-content: center;
}
#top #company .inner .box-01 .inbox-01 p {
  width: 33.33%;
  height: 100%;
  padding: 10px 30px 10px 0;
  color: #000;
  font-size: 11.9px;
  line-height: 1.75;
}
#top #company .inner .box-01 .inbox-01 > .image-area {
  width: 66.66%;
  min-height: 285px;
}
#top #company .inner .box-01 .inbox-01 > .image-area > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
#top #company .inner .box-01 > .image-area {
  min-height: 285px;
  width: 100%;
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}
#top #company .inner .box-01 > .image-area > .image {
  width: 33.33%;
  height: 100%;
}
#top #company .inner .box-01 > .image-area > .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
#top #product .box {
  height: 380px;
  display: flex;
}
#top #product .box .image-area {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#top #product .box .link-area {
  width: 50%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
}
#top #product .box .link-area h2 {
  margin-bottom: 50px;
  color: #FFF;
}
#top #product .box .link-area P {
  text-align: center;
  color: #FFF;
}
#top #product .box .link-area P:not(:last-of-type) {
  margin-bottom: 1.5em;
}
#top #product .box.box-01 .image-area {
  background-image: url(../img/top_product_220412-1.jpg);
}
#top #product .box.box-02 {
  flex-direction: row-reverse;
}
#top #product .box.box-02 .image-area {
  background-image: url(../img/top_product_220412-2.jpg);
}
#top #product .box.box-03 .image-area {
  background-image: url(../img/top_product_220306.jpg);
}
#top #product .video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
#top #product .video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
}
#top #trying {
  width: 100%;
  padding: 80px 20px 100px;
  background-image: url(../img/common_trying_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#top #trying .inner h2 {
  margin-bottom: 40px;
  color: #FFF;
}
#top #trying .inner p {
  margin-bottom: 40px;
  text-align: center;
  color: #FFF;
}
#top #columns {
  padding: 100px 20px;
}
#top #columns .inner h2 {
  margin-bottom: 30px;
}
#top #columns .inner p {
  margin-bottom: 70px;
  text-align: center;
  line-height: 2;
}
#top #columns .inner ul {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1025px) {
  #top #columns .inner ul {
    justify-content: center;
  }
  #top #columns .inner ul li {
    margin: 0 6px 30px;
  }
}
#top #columns .inner ul li {
  width: 300px;
  height: 100%;
  margin-bottom: 30px;
}
#top #columns .inner ul li a .image-area {
  width: 100%;
  max-height: 200px;
  height: 100%;
  margin-bottom: 20px;
}
#top #columns .inner ul li a .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
#top #columns .inner ul li a p {
  margin-bottom: 20px;
  display: block;
  text-align: justify;
  font-size: 15.3px;
  font-weight: 700;
  line-height: 1.5;
}
#top #columns .inner ul li a p span {
  margin-right: 10px;
  color: #d65050;
  font-size: 15.3px;
  font-weight: 700;
  line-height: 1.5;
}
#top #columns .inner ul li dl {
  border-top: solid 1px #000;
  padding-top: 20px;
  display: flex;
}
#top #columns .inner ul li dl dt {
  margin-right: 30px;
  font-size: 10.2px;
}
#top #columns .inner ul li dl dd {
  font-size: 10.2px;
}
#top #news {
  padding: 0 20px 100px;
  text-align: center;
}
#top #news .inner h2 {
  margin-bottom: 50px;
}
#top #news .inner ul {
  margin-bottom: 60px;
}
#top #news .inner ul li {
  padding-bottom: 20px;
  border-bottom: solid 1px #e5e5e5;
}
#top #news .inner ul li:not(:first-of-type) {
  padding-top: 20px;
}
#top #news .inner ul li dl {
  display: flex;
}
#top #news .inner ul li dl dt {
  margin-right: 30px;
}
#top #news .inner ul li dl dd a {
  color: #d65050;
}

/*# sourceMappingURL=index_pc.css.map */
