/* ======================================================
	TOP style
====================================================== */
.container {
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container {
    width: min(100%, 1800px);
    padding: 0 80px;
  }
}

.ttl_img {
  margin: 0 auto;
  margin-bottom: -12px;
  overflow: hidden;
}
.ttl_img .ttl_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .ttl_img .ttl_track.animated {
    -webkit-animation: ttlLoop 24s linear infinite;
            animation: ttlLoop 24s linear infinite;
  }
  .ttl_img .ttl_track span {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 20px;
  }
  .ttl_img .ttl_track img {
    display: block;
  }
}
.ttl_img img {
  height: 57px;
  width: auto;
  max-width: inherit;
}
@media screen and (min-width: 768px) {
  .ttl_img {
    width: min(100%, 1800px);
    padding: 0 80px;
    margin-bottom: -19px;
  }
  .ttl_img .ttl_track {
    display: contents;
    visibility: visible !important;
    opacity: 1;
  }
  .ttl_img img {
    height: min(8vw, 108px);
  }
}

@-webkit-keyframes ttlLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ttlLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
/* mv
--------------------------------- */
#mv {
  position: relative;
}
#mv .txt_wrap {
  width: 100%;
  padding: 0 20px;
  position: absolute;
  left: 0;
  bottom: 2.5%;
}
#mv .txt_wrap h1 {
  margin-bottom: 2%;
  color: #1D4C80;
  font-size: 8.9vw;
  font-style: italic;
  line-height: 1.2;
}
#mv .txt_wrap h1 span {
  color: #3580C5;
}
#mv .txt_wrap p {
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 6%;
}
#mv .btn_wrap a.btn {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  #mv {
    height: max(46.875vw, 700px);
  }
  #mv img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #mv .txt_wrap {
    width: min(100%, 1800px);
    padding: 0 80px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    bottom: 10%;
  }
  #mv .txt_wrap h1 {
    margin-bottom: 24px;
    font-size: min(6vw, 96px);
  }
  #mv .txt_wrap p {
    margin-bottom: 60px;
    font-size: min(1.875vw, 30px);
  }
  #mv .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 30px;
  }
}

/* philosophy
--------------------------------- */
#philosophy {
  padding-top: 55px;
  font-size: 16px;
}
#philosophy .sect_ttl {
  margin-bottom: 40px;
}
#philosophy .inner {
  background: var(--Blue03);
  border-radius: 16px;
  width: min(100%, 1840px);
  margin: 0 auto;
  padding: 40px 0;
}
#philosophy .container {
  display: grid;
  grid-template-columns: 1fr;
}
#philosophy .txt_wrap {
  margin-bottom: 40px;
}
#philosophy .read {
  margin-bottom: 30px;
  color: var(--Blue02);
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
}
#philosophy .txt {
  line-height: 1.8;
}
#philosophy .item_list {
  display: grid;
  gap: 16px;
  width: min(100%, 310px);
  margin: 0 auto;
}
#philosophy .item_list li {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center top 24px;
  background-size: 120px;
  border-radius: 16px;
  padding: 175px 32px 24px;
}
#philosophy .item_list li:nth-child(1) {
  background-image: url(../img/philosophy01.png);
}
#philosophy .item_list li:nth-child(2) {
  background-image: url(../img/philosophy02.png);
}
#philosophy .item_list li:nth-child(3) {
  background-image: url(../img/philosophy03.png);
}
#philosophy .item_list .item_ttl {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#philosophy .item_list .item_txt {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #philosophy {
    padding: 95px 40px 0;
    font-size: 18px;
  }
  #philosophy .ttl_img {
    padding: 0 40px;
  }
  #philosophy .sect_ttl {
    margin-bottom: 80px;
  }
  #philosophy .inner {
    border-radius: 24px;
    padding: 64px 0;
  }
  #philosophy .container {
    grid-template-columns: 41.5% 50%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 40px;
  }
  #philosophy .txt_wrap {
    width: min(100%, 680px);
    margin: 0;
  }
  #philosophy .read {
    font-size: 32px;
  }
  #philosophy .item_list {
    width: 100%;
    margin: 0;
  }
  #philosophy .item_list li {
    background-position: center left 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 24px 32px 24px 189px;
    min-height: 168px;
  }
  #philosophy .item_list .item_ttl {
    font-size: 24px;
    text-align: left;
  }
}

/* business
--------------------------------- */
#business {
  padding-top: 80px;
}
#business .sect_ttl {
  color: #fff;
  margin-bottom: 40px;
}
#business .sect_ttl::before {
  background: #fff;
}
#business .sect_ttl span {
  color: #fff;
  opacity: 0.5;
}
#business .inner {
  background: var(--Blue01);
  border-radius: 16px;
  padding: 40px 0;
  position: relative;
}
#business .business_list {
  display: grid;
  gap: 40px min(3vw, 50px);
}
#business .business_list li {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
}
#business .business_list .img {
  width: min(100%, 280px);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
#business .business_list_ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
}
#business .business_list_ttl .note_en {
  display: block;
  color: var(--Blue02);
  font-size: 12px;
  font-weight: normal;
  margin-top: 13px;
}
#business .business_list_txt {
  line-height: 1.4;
  letter-spacing: 0 0.04em;
}
@media screen and (min-width: 768px) {
  #business {
    padding-top: 112px;
  }
  #business .sect_ttl {
    margin-bottom: 49px;
  }
  #business .inner {
    border-radius: 40px;
    padding: 64px 0;
  }
  #business .business_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 3%;
  }
  #business .business_list li {
    padding: 40px;
    border-radius: 16px;
  }
  #business .business_list .img {
    border-radius: 8px;
    margin-bottom: 24px;
  }
  #business .business_list_ttl {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #business .business_list_ttl .note_en {
    font-size: 12px;
    margin-top: 13px;
  }
  #business .business_list_txt {
    line-height: 1.8;
  }
}

.slider_wrap {
  background: var(--Blue03);
  padding: 60px 0 40px;
  margin-top: -20px;
}
.slider_wrap .slider .draggable {
  padding-right: 23%;
}
.slider_wrap .slider div {
  -webkit-transition: none;
  transition: none;
}
.slider_wrap .slider .slick-slide {
  margin: 0 12px;
}
@media screen and (min-width: 768px) {
  .slider_wrap {
    padding: 160px 0 120px;
    margin-top: -40px;
  }
  .slider_wrap .slider .draggable {
    padding-right: 0;
  }
}

/* strengths
--------------------------------- */
#strengths {
  padding: 80px 0;
}
#strengths .ttl_img {
  margin-bottom: 0;
}
#strengths .container {
  padding-top: 40px;
}
#strengths .sect_ttl {
  margin-bottom: 40px;
}
#strengths .strengths_list {
  display: grid;
  gap: 56px 0;
  width: min(100%, 1400px);
  margin: 0 auto;
  counter-reset: my-counter;
  list-style: none;
}
#strengths .strengths_list li {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 80px;
  counter-increment: my-counter;
}
#strengths .strengths_list_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
  margin-top: 30px;
}
#strengths .strengths_list_ttl::before {
  content: counter(my-counter, decimal-leading-zero);
  background: -webkit-gradient(linear, left top, right top, from(rgb(110, 210, 246)), to(rgb(53, 128, 197)));
  background: linear-gradient(90deg, rgb(110, 210, 246) 0%, rgb(53, 128, 197) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family-en);
  font-weight: normal;
  font-size: 64px;
}
#strengths .strengths_list_ttl p {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
}
#strengths .strengths_list_ttl .note_en {
  display: block;
  margin-top: 10px;
  color: var(--Blue02);
  font-size: 14px;
  font-weight: normal;
}
#strengths .strengths_list_txt {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #strengths {
    padding: 120px 0;
  }
  #strengths .container {
    padding-top: 69px;
  }
  #strengths .sect_ttl {
    margin-bottom: 100px;
  }
  #strengths .strengths_list {
    gap: 40px 0;
  }
  #strengths .strengths_list li {
    grid-template-columns: min(40%, 510px) 1fr;
    gap: 0 80px;
  }
  #strengths .strengths_list_ttl {
    gap: 0 32px;
    margin: 0 0 25px;
  }
  #strengths .strengths_list_ttl::before {
    font-size: 64px;
  }
  #strengths .strengths_list_ttl p {
    font-size: 32px;
  }
  #strengths .strengths_list_ttl .note_en {
    margin-top: 6px;
    font-size: 14px;
  }
  #strengths .strengths_list_txt {
    margin: 0;
  }
}