@charset "UTF-8";
/* ---------------------------------------
    社長×社員インタビュー
-----------------------------------------*/
/* header
--------------------------------*/
#header {
  background-color: #FFF8F6;
}
#header .header_wrap {
  border-bottom: 1px solid #D0CDCC;
}
#header:not(.navOpen) .header_wrap .logo a {
  background: url(../img/common/logo_black.png) no-repeat center/contain;
}
#header:not(.navOpen) .header_wrap .logo a img {
  opacity: 0;
}
#header .nav_wrap * {
  color: #181414 !important;
}
#header .nav_wrap a span.txt {
  background-image: linear-gradient(90deg, #181414, #181414);
}
#header .nav_wrap .utility .links_list li .ico svg path,
#header .nav_wrap .utility .sub .search:not(.is-open) .search_btn .ico svg rect {
  fill: #181414;
}
#header .nav_wrap .utility .sub .lang .lang_btn .ico svg path,
#header .nav_wrap .utility .sub .search:not(.is-open) .search_btn .ico svg path {
  stroke: #181414;
}
#header .nav_wrap .utility .sub .lang .lang_btn .txt,
#header .nav_wrap .utility .sub .search .search_input,
#header .nav_wrap .utility .sub .search.is-open .search_btn {
  border-color: #181414;
}

/* sec_mv
--------------------------------*/
#sec_mv .mv_wrap {
  overflow: hidden;
}
#sec_mv .mv_wrap .mv_slider {
  display: flex;
  width: max-content;
  animation: scroll-right linear infinite;
}
#sec_mv .mv_wrap .mv_slider._reverse {
  animation: scroll-left linear infinite;
}
#sec_mv .mv_wrap .mv_slider .img {
  width: 27rem;
  aspect-ratio: 270/260;
}
@media screen and (max-width: 767px) {
  #sec_mv .mv_wrap .mv_slider .img {
    width: 12.5rem;
  }
}
#sec_mv .mv_wrap .mv_slider .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* common
--------------------------------*/
@media screen and (max-width: 767px) {
  .contents_wrap {
    display: flex;
    flex-direction: column;
    padding-bottom: 9.6rem;
  }
}
.contents_wrap > .wrap {
  padding: 9.6rem 2rem 10.4rem;
}
@media screen and (min-width: 768px) {
  .contents_wrap > .wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: 15.2rem;
  }
}
@media screen and (max-width: 767px) {
  .contents_wrap > .wrap {
    display: contents;
    padding: 0;
  }
}
.contents_wrap .side {
  width: 26.4rem;
}
@media screen and (max-width: 767px) {
  .contents_wrap .side {
    order: 3;
    width: 100%;
    padding: 0 1.2rem;
    margin-top: 7.2rem;
  }
}
.contents_wrap .side .side_nav {
  padding-top: 1.6rem;
  border-top: 1px solid #D0CDCC;
}
.contents_wrap .side .side_nav + .side_nav {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .contents_wrap .side .side_nav + .side_nav {
    margin-top: 4rem;
  }
}
.contents_wrap .side .side_nav .ttl {
  color: #7A7875;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}
.contents_wrap .side .side_nav .ttl::before, .contents_wrap .side .side_nav .ttl::after {
  content: "";
  width: 1px;
  height: 1.1rem;
  background-color: #7A7875;
  position: absolute;
  left: 0.4rem;
  top: -0.1rem;
}
.contents_wrap .side .side_nav .ttl::before {
  rotate: 45deg;
}
.contents_wrap .side .side_nav .ttl::after {
  rotate: -45deg;
}
.contents_wrap .side .side_nav .list {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .contents_wrap .side .side_nav .list {
    margin-top: 2.4rem;
  }
}
.contents_wrap .side .side_nav .list li {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.15em;
}
.contents_wrap .side .side_nav .list li + li {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .contents_wrap .side .side_nav .list li + li {
    margin-top: 2rem;
  }
}
.contents_wrap .side .side_nav .list li a {
  display: inline-block;
}
.contents_wrap .side .side_nav .list li a span.txt {
  padding-bottom: 0.3rem;
  background-image: linear-gradient(90deg, #181414, #181414);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .contents_wrap .side .side_nav .list li a:hover .txt {
    background-size: 100% 1px;
  }
}
.contents_wrap .side .side_nav .list li.is-current {
  color: #D0CDCC;
}
.contents_wrap .side .side_nav .list li.is-current a span.txt {
  background: none;
}
.contents_wrap .contents {
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .contents_wrap .contents {
    order: 1;
    width: 100%;
  }
}

/* sec_intro
--------------------------------*/
@media screen and (max-width: 767px) {
  #sec_intro {
    padding: 5.6rem 1.2rem 7.2rem;
  }
}
#sec_intro .sec_ttl {
  display: block;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8125;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  #sec_intro .sec_ttl {
    font-size: 2rem;
    line-height: 1.6;
  }
}
#sec_intro .sec_ttl span {
  letter-spacing: 0;
}
#sec_intro .txt_lead {
  font-size: 2.4rem;
  line-height: 2.2083333333;
  letter-spacing: 0.05em;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  #sec_intro .txt_lead {
    font-size: 1.5rem;
    line-height: 2.2;
    margin-top: 2.4rem;
  }
}

/* sec_history
--------------------------------*/
@media screen and (max-width: 767px) {
  #sec_history {
    order: 2;
  }
}
#sec_history .history_nav {
  position: sticky;
  top: 0;
  left: 0;
  padding: 1.4rem 0 1.6rem;
  background-color: #F1EBE9;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #sec_history .history_nav {
    top: 7.2rem;
    padding: 1.2rem 1.2rem 0.9rem;
  }
  #sec_history .history_nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 7.2rem;
    background-color: #FFF8F6;
    position: absolute;
    left: 0;
    top: -7.2rem;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  #sec_history .history_nav .wrap {
    width: calc(100% + 1.2rem);
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 1.2rem 1.6rem 0;
    margin: 0 -1.2rem 0 0;
  }
}
#sec_history .history_nav .ttl {
  flex: 0 0 auto;
  color: #7A7875;
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #sec_history .history_nav .ttl {
    font-size: 1.4rem;
  }
}
#sec_history .history_nav .nav_list {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_nav .nav_list {
    justify-content: flex-start;
  }
}
#sec_history .history_nav .nav_list .item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  min-height: 4.8rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.15em;
  padding: 1.1rem 5.2rem 1.3rem 1.9rem;
  border: 1px solid #D0CDCC;
  border-radius: 100vh;
  border-radius: 2.4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  #sec_history .history_nav .nav_list .item a {
    transition: opacity 0.3s ease-out;
    cursor: pointer;
  }
  #sec_history .history_nav .nav_list .item a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  #sec_history .history_nav .nav_list .item a {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
#sec_history .history_nav .nav_list .item a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0.25rem 0 0.25rem;
  border-color: #D0CDCC transparent transparent transparent;
  position: absolute;
  right: 2.4rem;
  top: calc(50% - 0.4rem);
}
#sec_history .history_contents .section_wrap {
  position: relative;
}
#sec_history .history_contents .history_head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 11rem;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head {
    display: block;
    padding: 0;
  }
}
#sec_history .history_contents .history_head.is-fixed {
  position: fixed;
}
#sec_history .history_contents .history_head.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
}
#sec_history .history_contents .history_head .term {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .term {
    justify-content: space-between;
  }
}
#sec_history .history_contents .history_head .term .en {
  color: #7A7875;
  font-style: italic;
  font-weight: 200;
  font-size: 14.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .term .en {
    font-size: 5.65rem;
    line-height: 1.0088495575;
  }
}
#sec_history .history_contents .history_head .term .en + .en::before {
  content: "";
  display: inline-block;
  vertical-align: 0.35em;
  width: 10.4rem;
  height: 1px;
  background-color: #7A7875;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .term .en + .en::before {
    width: 17.2rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .chapter {
    padding: 2rem;
  }
}
#sec_history .history_contents .history_head .chapter .ttl {
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
  color: #7A7875;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .chapter .ttl {
    font-size: 1.4rem;
    gap: 0 0.8rem;
  }
}
#sec_history .history_contents .history_head .chapter .ttl .num {
  display: inline-block;
  font-style: italic;
  font-family: "Source Serif 4", serif;
  font-weight: 200;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .chapter .ttl .num {
    font-size: 3.2rem;
  }
}
#sec_history .history_contents .history_head .chapter .sub {
  color: #D0CDCC;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .history_head .chapter .sub {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
#sec_history .history_contents .section {
  width: 100%;
  color: #FFF8F6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #181414;
  position: relative;
}
#sec_history .history_contents .section .wrap {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 7.8rem);
  padding: 6rem 2rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .wrap {
    display: block;
    min-height: 77rem;
    padding: 15.6rem 1.2rem 10rem;
  }
}
#sec_history .history_contents .section .inner {
  width: 107.4rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 14.4rem;
  margin-left: auto;
  margin-right: 3.7rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner {
    width: 100%;
    flex-direction: column;
    gap: 3.2rem 0;
  }
}
#sec_history .history_contents .section .inner .history_slider {
  width: 48.2rem;
  padding-right: 3.4rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .history_slider {
    width: 100%;
    padding-right: 0;
    padding-bottom: 3.2rem;
  }
}
#sec_history .history_contents .section .inner .history_slider .img {
  width: 44.8rem;
  height: 43.2rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .history_slider .img {
    width: 100%;
    height: 35.3rem;
  }
}
#sec_history .history_contents .section .inner .history_slider .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_history .history_contents .section .inner .history_slider .slick-dots {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .history_slider .slick-dots {
    flex-direction: row;
    gap: 0 2rem;
    width: 100%;
    height: auto;
    top: auto;
    left: 0;
    bottom: 0;
  }
}
#sec_history .history_contents .section .inner .history_slider .slick-dots li {
  width: 1rem;
  height: 1rem;
  line-height: 1;
  position: relative;
}
#sec_history .history_contents .section .inner .history_slider .slick-dots li button {
  font-size: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 248, 246, 0.4);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
#sec_history .history_contents .section .inner .history_slider .slick-dots li.slick-active button {
  background-color: #FFF8F6;
}
#sec_history .history_contents .section .inner .txt_wrap {
  position: relative;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .txt_wrap {
    width: 100%;
  }
}
#sec_history .history_contents .section .inner .txt_wrap .year {
  color: #D0CDCC;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .txt_wrap .year {
    font-size: 1.2rem;
  }
}
#sec_history .history_contents .section .inner .txt_wrap .year span.en {
  display: inline-block;
  font-style: italic;
  font-weight: 200;
  font-size: 5.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .txt_wrap .year span.en {
    font-size: 4rem;
    margin-right: 0.8rem;
  }
}
#sec_history .history_contents .section .inner .txt_wrap .ttl {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .txt_wrap .ttl {
    font-size: 1.8rem;
    line-height: 1.6111111111;
    margin-top: 2.4rem;
  }
}
#sec_history .history_contents .section .inner .txt_wrap .txt {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section .inner .txt_wrap .txt {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    margin-top: 1.6rem;
  }
}
#sec_history .history_contents .section._01 {
  background-image: url(../img/compnay/history/history01_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._01 {
    background-image: url(../img/compnay/history/history01_bg_sp.png);
  }
}
#sec_history .history_contents .section._02 {
  background-image: url(../img/compnay/history/history02_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._02 {
    background-image: url(../img/compnay/history/history02_bg_sp.png);
  }
}
#sec_history .history_contents .section._03 {
  background-image: url(../img/compnay/history/history03_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._03 {
    background-image: url(../img/compnay/history/history03_bg_sp.png);
  }
}
#sec_history .history_contents .section._04 {
  background-image: url(../img/compnay/history/history04_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._04 {
    background-image: url(../img/compnay/history/history04_bg_sp.png);
  }
}
#sec_history .history_contents .section._05 {
  background-image: url(../img/compnay/history/history05_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._05 {
    background-image: url(../img/compnay/history/history05_bg_sp.png);
  }
}
#sec_history .history_contents .section._05 {
  background-image: url(../img/compnay/history/history05_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._05 {
    background-image: url(../img/compnay/history/history05_bg_sp.png);
  }
}
#sec_history .history_contents .section._06 {
  background-image: url(../img/compnay/history/history06_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._06 {
    background-image: url(../img/compnay/history/history06_bg_sp.png);
  }
}
#sec_history .history_contents .section._07 {
  background-image: url(../img/compnay/history/history07_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._07 {
    background-image: url(../img/compnay/history/history07_bg_sp.png);
  }
}
#sec_history .history_contents .section._08 {
  background-image: url(../img/compnay/history/history08_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._08 {
    background-image: url(../img/compnay/history/history08_bg_sp.png);
  }
}
#sec_history .history_contents .section._09 {
  background-image: url(../img/compnay/history/history09_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._09 {
    background-image: url(../img/compnay/history/history09_bg_sp.png);
  }
}
#sec_history .history_contents .section._10 {
  background-image: url(../img/compnay/history/history10_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._10 {
    background-image: url(../img/compnay/history/history10_bg_sp.png);
  }
}
#sec_history .history_contents .section._11 {
  background-image: url(../img/compnay/history/history11_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._11 {
    background-image: url(../img/compnay/history/history11_bg_sp.png);
  }
}
#sec_history .history_contents .section._12 {
  background-image: url(../img/compnay/history/history12_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._12 {
    background-image: url(../img/compnay/history/history12_bg_sp.png);
  }
}
#sec_history .history_contents .section._13 {
  background-image: url(../img/compnay/history/history13_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._13 {
    background-image: url(../img/compnay/history/history13_bg_sp.png);
  }
}
#sec_history .history_contents .section._14 {
  background-image: url(../img/compnay/history/history14_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._14 {
    background-image: url(../img/compnay/history/history14_bg_sp.png);
  }
}
#sec_history .history_contents .section._15 {
  background-image: url(../img/compnay/history/history15_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._15 {
    background-image: url(../img/compnay/history/history15_bg_sp.png);
  }
}
#sec_history .history_contents .section._16 {
  background-image: url(../img/compnay/history/history16_bg_pc.png);
}
@media screen and (max-width: 767px) {
  #sec_history .history_contents .section._16 {
    background-image: url(../img/compnay/history/history16_bg_sp.png);
  }
}
#sec_history .history_contents #history02 .section {
  background-color: #2F2B2A;
}
#sec_history .history_contents #history03 .section {
  background-color: #3B3636;
}
#sec_history .history_contents #history04 .section {
  background-color: #4D4848;
}
#sec_history .history_contents #history05 .section {
  background-color: #716E6E;
}

/* 英語ページ
--------------------------------*/
html[lang=en] .contents_wrap .side .side_nav .list li {
  letter-spacing: 0.05em;
}
html[lang=en] #sec_intro .sec_ttl {
  line-height: 1.5;
  letter-spacing: 0.1em;
}
html[lang=en] #sec_intro .txt_lead {
  line-height: 1.4166666667;
}
html[lang=en] #sec_history .history_nav .nav_list .item a {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.2rem 5.2rem 1.2rem 1.9rem;
}
html[lang=en] #sec_history .history_contents .section .inner .txt_wrap .ttl {
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
html[lang=en] #sec_history .history_contents .section .inner .txt_wrap .txt {
  line-height: 1.5;
  letter-spacing: 0.05em;
}