@charset "UTF-8";
/* CSS Document */
/* ---------- main ---------- */
.main{
  width: 100%;
  position: relative;
}
.main-top {
  position: relative;
  margin-top: 60px;
}
.main-top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 0 60%;
  opacity: 0.8;
}
.main-top-text {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.main-top-text h2 {
  position: relative;
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
  text-shadow: 1px 1px 2px #527eac;
}
.main-top-text h3 {
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 1px 1px 2px #527eac;
}
.main-top-text h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background-color: #fff;
}

/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .main-top img {
    height: 400px;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .main-top {
    margin-top: 100px;
  }
  .main-top img {
    height: 600px;
  }
  .main-top-text h2 {
    font-size: 4.6rem;
    margin-bottom: 15px;
  }
  .main-top-text h3 {
    font-size: 2.4rem;
  }
  .main-top-text h3::after {
    height: 2px;
    margin-top: -5px;
  }
}


/* ---------- VALUE ---------- */
.value {
  width: 100%;
  margin: 20px 0;
}
.value-top-menu {
/* --- 親BOXの定義 --- */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100px;
}
/* --- 前面文字の定義 --- */
.value-top-menu-front {
  display: inline-block;
  position: absolute;
  padding-top: 30px;
  padding-left: 30px;
  text-align: left;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.value-top-menu-front h2 {
  position: relative;
  font-size: 3rem;
  display: inline-block;
  border-bottom: solid 2px #527eac;
  padding-bottom: 3px;
}
.value-top-menu-front h2::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 2px #9bb7d4;
  bottom: -2px;
  width: 30%;
}
/* --- 背景透かし文字の定義 --- */
.value-top-menu-back {
  position: absolute;
  white-space: nowrap;
  font-size: 10rem;
  font-weight: bold;
  color: rgba(82, 126, 172, 0.10); 
  top: 30%;
  left: 0;
}
.value-video {
  width: 89%;
  margin: 0 auto;
}
.value-video video {
  width: 100%;
}

/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .value {
    margin: 40px auto;
  }
  .value-top-menu-front {
    padding-left: 60px;
  }
  .value-top-menu-back {
    margin-left: 20px;
  }
  .value-video {
    width: 73%;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .value {
    margin: 60px auto;
  }
  .value-top-menu{
    height: 200px;
  }
  .value-top-menu-back {
    font-size: 20rem;
    top: 40%;
  }
  .value-top-menu-front {
    padding-top: 80px;
    padding-left: 100px;
  }
  .value-top-menu-back {
    margin-left: 40px;
  }
  .value-top-menu-front h2 {
    font-size: 4rem;
    border-bottom: solid 4px #527eac;
    padding-bottom: 20px;
  }
  .value-top-menu-front h2::after {
    border-bottom: solid 4px #9bb7d4;
    bottom: -4px;
    width: 30%;
  }
  .value-video {
    width: 63%;
  }
}


/* ---------- ACTION POLICY ---------- */
.action-policy {
  width: 100%;
  margin: 60px 0;
}
.action-policy-top-menu {
/* --- 親BOXの定義 --- */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100px;
}
/* --- 前面文字の定義 --- */
.action-policy-top-menu-front {
  display: inline-block;
  position: absolute;
  padding-top: 30px;
  padding-left: 30px;
  text-align: left;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.action-policy-top-menu-front h2 {
  position: relative;
  font-size: 3rem;
  display: inline-block;
  border-bottom: solid 2px #527eac;
  padding-bottom: 3px;
}
.action-policy-top-menu-front h2::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 2px #9bb7d4;
  bottom: -2px;
  width: 30%;
}
/* --- 背景透かし文字の定義 --- */
.action-policy-top-menu-back {
  position: absolute;
  white-space: nowrap;
  font-size: 10rem;
  letter-spacing: -0.5rem;
  font-weight: bold;
  color: rgba(82, 126, 172, 0.10); 
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.action-policy-video {
  width: 89%;
  margin: 20px auto 0;
}
.action-policy-video video {
  width: 100%;
}

/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .action-policy {
    margin: 80px auto;
  }
  .action-policy-top-menu-front {
    padding-left: 60px;
  }
  .action-policy-video {
    width: 68%;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .action-policy {
    margin: 100px auto 200px;
  }
  .action-policy-top-menu{
    height: 200px;
  }
  .action-policy-top-menu-back {
    font-size: 20rem;
    top: 40%;
  }
  .action-policy-top-menu-front {
    padding-top: 80px;
    padding-left: 100px;
  }
  .action-policy-top-menu-front h2 {
    font-size: 4rem;
    border-bottom: solid 4px #527eac;
    padding-bottom: 20px;
  }
  .action-policy-top-menu-front h2::after {
    border-bottom: solid 4px #9bb7d4;
    bottom: -4px;
    width: 30%;
  }
  .action-policy-video {
    width: 63%;
    margin: 60px auto 0;
  }
}

/* ---------- MESSAGE ---------- */
.message {
  width: 100%;
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 40px;
}
.message-top-menu {
/* --- 親BOXの定義 --- */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100px;
}
/* --- 背景透かし文字の定義 --- */
.message-top-menu-back {
  position: absolute;
  white-space: nowrap;
  font-size: 10rem;
  font-weight: bold;
  color: rgba(82, 126, 172, 0.1); 
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
/* --- 前面文字の定義 --- */
.message-top-menu-front {
  display: inline-block;
  position: absolute;
  padding: 20px;
  font-size: 3rem;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.message-top-menu-front h2 {
  position: relative;
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 5px;
}
.message-top-menu-front h3 {
  font-size: 1.4rem;
}
.message-top-menu-front h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #333333;
}
.message-img {
  width: 84%;
  margin: 20px auto 10px;
}
.message-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: 0 20%;
  opacity: 0.8;
}
.message-img-text {
  text-align: left;
  width: 78%;
  margin: 0 auto 20px;
}
.message-img-text p {
  font-size: 1rem;
  line-height: 1.2rem;
}
.message-text {
  width: 100%;
}
.message-text h4 {
  margin: 0 40px;
  font-size: 1.6rem;
  text-align: left;
}
.message-text1 {
  margin: 0 40px;
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: -0.1rem;
}
.message-text2 {
  margin: 0 40px;
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: -0.1rem;
}
.message-text3 {
  margin: 0 40px;
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: -0.1rem;
}
.message-text4 {
  margin: 0 40px;
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: -0.1rem;
}
.message-representative {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 20px;
  margin-right: 40px;
}
.message-representative h5 {
  font-size: 1.4rem;
  font-weight: 300;
}
.message-representative p {
  font-family: "hot-gyoshokk",sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
}
@media(min-width:480px){
  .message-img {
    display: flex;
    align-items: center;
    gap: 4%;
    width: 78%;
    margin: 20px auto;
  }
  .message-img img {
    height: 200px;
    width: auto;
  }
  .message-img-text {
    width: 73%;
  }
  .message-img-text p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .message-text {
    width: 83%;
    margin: 0 auto;
  }
  .message-representative {
    margin-right: 100px;
  }
}
@media(min-width:960px){
  .message {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .message-top-menu {
    height: 200px;
  }
  .message-top-menu-back {
    font-size: 20rem;
    top: 40%;
  }
  .message-top-menu-front {
    padding: 70px;
  }
  .message-box {
    margin: 40px 300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .message-img {
    margin: 0;
    display: contents;
  }
  .message-img img {
    width: auto;
    height: 210px;
  }
  .message-representative {
    margin-right: 400px;
  }
  .message-representative p {
    font-size: 3rem;
  }
}
/* ---------- company ---------- */
.company {
  position: relative;
  width: 100%;
  padding: 40px 0 60px;
}
.company-top-text {
  text-align: left;
  margin-left: 40px;
  margin-bottom: 40px;
}
.company-top-text h2 {
  position: relative;
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 5px;
}
.company-top-text h2::before {
  content: "COMPANY";
  position: absolute;
  top: 0;
  left: 0px;
  color: rgba(83,126,172,0.1);
  font-size: 10rem;
  text-transform: uppercase;
  transform: translateX(-40%);
  writing-mode: vertical-rl;
  white-space: nowrap;
  letter-spacing: -0.5rem;
}
.company-top-text h3 {
  font-size: 1.4rem;
  margin-left: 5px;
}
.company-top-text h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 20%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #333333;
}

/* table */
.company-overview {
  width: 78%;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  margin: 0 auto;
}
.company-table tr {
  border-bottom: 1px solid #527eac;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin: 10px 0;
}
.company-table th {
  width: 70%;
  padding-bottom: 10px;
}
.company-table td {
  width: 100%;
  display: block;
  padding-bottom: 10px;
  font-size: 1.4rem;
}
.company-overview iframe {
  width: 100%;
  border: 1px solid #527eac;
  margin-top: 20px;
}
@media(min-width:960px){
  .company {
    padding: 100px 0;
  }
  .company-top-text {
    margin-left: 100px;
  }
  .company-top-text h2 {
    font-size: 3.6rem;
    padding-bottom: 10px;
  }
  .company-top-text h2::before {
    font-size: 20rem;
    top: -200%;
    letter-spacing: 0;
  }
  .company-top-text h3 {
    font-size: 1.8rem;
  }
  .company-top-text h3::after {
    left: 9%;
  }
  .company-overview {
    width: 72%;
  }
  .company-table tr {
    margin: 20px 0;
  }
  .company-table th {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .company-table td {
    font-size: 1.8rem;
    padding-bottom: 20px;
  }
}


/* ---------- recruit ---------- */
.recruit {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode:lighten;
}
/* スマートフォン向け（デフォルト） */
.background-container {
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.5) 0%,   /* 中心 */
      rgba(155, 183, 212, 0.3) 100%  /* 外側 */
    ),url(../images/top/background-ps.jpg);
  padding: 100px 0;
}
/* タブレット向け */
@media (min-width: 768px) {
  .background-container {
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.5) 0%,   /* 中心 */
      rgba(155, 183, 212, 0.3) 100%  /* 外側 */
    ),url(../images/top/background-pc.jpg);
    }
  }

.recruit-top {
  position: relative;
  width: 63%;
  margin: 0 auto;
}
.recruit-top-text {
  text-align: center;
  padding-bottom: 20px;
}
.recruit-top-text h2 {
  position: relative;
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
}
.recruit-top-text h3 {
  font-size: 1.4rem;
  color: #fff;
}

.recruit-btn-box {
  width: 100%;
  margin: 20px auto;
}
/* btn */
.btnarrow6 {
  position: relative;
  background: linear-gradient(to bottom, #527EAC, #9BB7D4);
  padding: 10px 55px 10px 30px;
  display: inline-block;
  text-align: center;
  transition: all .2s linear;
  color:#fff;
  text-decoration: none;
  border: 1px solid;
  border-radius: 10px;
  outline: none;
  font-size: 1.4rem;
}
/*hoverした際のボタンの形状*/
.btnarrow6:hover{
  background:#fff;
  color:#333;
  border-color:#333;
}
/*矢印と線の形状*/
.btnarrow6:before{
  content:"";
  position: absolute;
  top:50%;
  right:20px;
  width:20px;
  height:1px;
  background:#fff;
}
.btnarrow6::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 12px;
  border: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-color: #fff;
  transition: all .2s linear;
}
/*hoverした際の矢印の形状*/
.btnarrow6:hover::before{
  background:#333;
  right:25px;
}
.btnarrow6:hover::after{
  border-left-color: #333;
  right: 20px;
}
.btnarrow61 {
  position: relative;
  background: linear-gradient(to bottom, #527EAC, #9BB7D4);
  padding: 10px 70px 10px 45px;
  display: inline-block;
  text-align: center;
  transition: all .2s linear;
  color:#fff;
  text-decoration: none;
  border: 1px solid;
  border-radius: 10px;
  outline: none;
  margin-top: 20px;
  font-size: 1.4rem;
}
/*hoverした際のボタンの形状*/
.btnarrow61:hover{
  background:#fff;
  color:#333;
  border-color:#333;
}
/*矢印と線の形状*/
.btnarrow61:before{
  content:"";
  position: absolute;
  top:50%;
  right:20px;
  width:20px;
  height:1px;
  background:#fff;
}
.btnarrow61::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 12px;
  border: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-color: #fff;
  transition: all .2s linear;
}
/*hoverした際の矢印の形状*/
.btnarrow61.btnarrow5:hover::before{
  background:#333;
  right:25px;
}
.btnarrow61:hover::after{
  border-left-color: #333;
  right: 20px;
}
@media(min-width:765px){
  .recruit-top {
    padding: 30px 100px;
  }
  .recruit-top-text {
    padding-bottom: 40px;
  }
  .btnarrow61 {
    margin-top: 0;
  }
  .btnarrow6,.btnarrow61 {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media(min-width:960px){
  .recruit-top {
    padding-top: 100px;
    padding-left: 200px;
    padding-right: 200px;
  }
  .recruit-top-text {
    padding-bottom: 40px;
  }
  .recruit-btn-box {
    padding: 40px;
  }
  .btnarrow6,.btnarrow61 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
/* ---------- top-slider ---------- */
.top-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.top-slider-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-slider-list li {
  margin: 0;
  padding: 0;
  aspect-ratio: 3 / 2;
}
.top-slider-list li:nth-child(odd) {
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px;
}
.top-slider-list li:nth-child(even) {
  margin-top: 20px;
}
.top-slider-list img {
  width: 100%;
  max-width: 220px;
  height:auto;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.slick-slide {
  margin: 0 10px;
}
.slick-track {
  display: flex !important;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 959px) {
  .slick-slide {
    margin: 0 10px;
  }
  .slick-list {
    margin: 0 -10px;
  }
}
@media (min-width: 960px) {
  .slick-slide {
    margin: 0 20px;
  }
  .slick-list {
    margin: 0 -20px;
  }
}