@charset "UTF-8";

/*
Theme Name: IT-COMコーポレートサイト
Description: IT-COM様専用のテーマです。
Author: 株式会社アイテム
*/

/* @media screen and (max-width: 991px) {
} */

/* @media screen and (max-width: 767px) {
 } */

/* @media screen and (max-width: 575px) {
 } */

:root {
  /* --navy01: #00437c; */
  --navy: #00437c;
  --bluegrey: #39668f;
  --aqua: #3387ce;
  --lightblue: #e6f0f8;
  --bg: #f4f7fa;
  --yellow: #ffe675;
  --text: #333;
}
/* 記述例↓
.text{
  color: var(--navy01);
} */

/*--------------------------------
全体
---------------------------------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.03em;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
  border: 0px;
}

/* Adobe Font 表示時のチラつき解消 */
.wf-loading {
  opacity: 0;
}

/*--------------------------------
レイアウト
---------------------------------*/

.inner-l {
  max-width: 1024px;
  width: 84%;
  margin: 0 auto;
}

.inner-m {
  max-width: 848px;
  width: 84%;
  margin: 0 auto;
}

.inner-s {
  max-width: 672px;
  width: 84%;
  margin: 0 auto;
}

.content-inner {
  padding: clamp(30px, 5vw, 50px) 0 clamp(50px, 8vw, 200px);
  /* padding: clamp(30px, 5vw, 50px) 0 clamp(100px, 30vw, 160px); */
}

.ib {
  display: inline-block;
  padding-left: 0;
}

/*--------------------------------
共通パーツ
---------------------------------*/

.text-center {
  text-align: center;
}

.section-title {
  font-family: urw-din, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(40px, 10vw, 64px);
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-title.white {
  color: #fff;
}
.section-title_ja {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.section-title.white .section-title_ja {
  color: var(--yellow);
}
.section-title_ja::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: currentColor;
  display: block;
  margin-right: 14px;
}
.section_title-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
  margin-bottom: clamp(30px, 3.5vw, 40px);
}

.section_lead {
  font-size: 18px;
  line-height: 1.6;
  flex: 1;
  letter-spacing: 0.03em;
  text-align: justify;
  font-weight: 400;
  color: #fff;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .section_title-flex {
    flex-direction: column;
    gap: 20px;
  }
  .section_lead {
    margin-top: 0;
  }
}
/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0 2%;
  padding: 0 15px;
}
.header_inner {
  width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.header_logo img {
  width: 260px;
}

.gnav-pc_list {
  display: flex;
  gap: 20px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.gnav-pc_item {
  font-size: 15px;
}
.gnav-pc_item:hover a {
  color: var(--bluegrey);
}

.gnav-pc_item a {
  position: relative;
}
.gnav-pc_item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--bluegrey);
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.gnav-pc_item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.gnav-sp_item a:hover {
  opacity: 0.5;
}

.btn-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  z-index: 800;
  background-color: #fff;
  height: 80px;
  width: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }

  .btn-menu {
    height: 70px;
  }

  .header_logo img {
    width: 220px;
  }
}
.overlay {
  position: fixed;
  /* 上下左右すべてにくっつく→全面配置で左右中央になる*/
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--bluegrey);
  background: rgba(0, 0, 0, 0.7);
  /* text-align: center; */
  /* overlayの中身をはじめは非表示にしておく */
  opacity: 0;
  /* 下の要素(main)が選択できるようにポインターを無効にする */
  pointer-events: none;
  /* ふわっと表示させる */
  transition: opacity 0.6s;
  z-index: 100;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-close {
  width: 60px;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--navy);
  z-index: 102;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gnav-sp_list-bg {
  background-color: var(--bluegrey);
  width: 240px;
  height: 100vh;
  padding: 80px 25px;
  text-align: left;
  position: absolute;
  right: 0;
  z-index: 101;
  /* 最初はドロワーが右端に隠れている */
  transform: translate(240px);
  /* ドロワーの表示に動きをつける */
  transition: 0.6s;
}
.overlay.show .gnav-sp_list-bg {
  /* ドロワーが左に動いて出てくる */
  transform: translate(0);
}

.btn-menu img {
  width: 30px;
  height: auto;
}

.gnav-sp_list {
  color: #fff;
  font-size: 15px;
}

.gnav-sp_item {
  height: 40px;
  border-bottom: #88a3bc 1px solid;
  display: flex;
  align-items: center;
}

.gnav-sp_list > * + * {
  margin-top: 18px;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .gnav-pc {
    display: none;
  }

  .gnav_list-pc {
    display: none;
  }

  .btn-menu {
    display: block;
    display: flex;
  }

  .gnav {
    display: none;
  }
}

/*--------------------------------
共通
お問合せ
---------------------------------*/
.contact {
  background: linear-gradient(156deg, #39668f 51.5%, #7896b2 89.99%);
  padding: 120px 0;
  padding: clamp(30px, 6vw, 90px) 0;
}

.contact-btn {
  position: relative;
  color: var(--navy);
  background: var(--yellow);
  display: grid;
  justify-content: center;
  column-gap: 8px;
  max-width: 400px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 200px;
  transition: 0.5s ease;
  overflow: hidden;
  line-height: 80px;
  padding-left: 3%;
}

.contact-btn:hover {
  color: #fff;
  transform: scale(1.1, 1.1);
}

.contact-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.contact-btn_text {
  position: relative;
  font-size: 20px;
  right: -7%;
}
.contact-btn_text::before {
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  mask: url(../img/common/icon-mail.svg) no-repeat center / contain;
  background: currentColor;
  justify-self: end;
  line-height: 80px;
  margin-right: 10px;
  display: inline-block;
  width: 29px;
  height: 22px;
}
.contact-btn_text::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 12px;
}

@media screen and (max-width: 767px) {
  .contact-btn {
    max-width: 100%;
  }
  .contact-btn_text {
    font-size: 16px;
  }
}

/*--------------------------------
フッター
---------------------------------*/

.footer-top {
  background-color: #fff;
  padding: clamp(35px, 3vw, 40px) 0 40px;
  font-size: 14px;
  display: flex;
  gap: 5%;
}

.footer-nav_location {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .footer-top {
    flex-direction: column;
  }
}
.footer-info {
  width: fit-content;
  flex-shrink: 0;
  margin-bottom: 5%;
}
.footer-info_address {
  font-size: 14px;
  line-height: 1.5;
}

.footer-top_inner {
  display: flex;
  gap: 7%;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-info_logo {
  margin-bottom: 24px;
  width: 230px;
}

.footer-info_logo a:hover {
  opacity: 0.6;
}

.footer-nav_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-nav_heading {
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
  display: inline-block;
}

.footer-nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 8px;
}

.footer a {
  color: var(--text);
}

.footer a:hover {
  color: var(--bluegrey);
}

.footer-under {
  background-color: #333;
}

.footer-under-nav {
  display: flex;
  gap: 40px;
  row-gap: 10px;
  justify-content: center;
  padding: 25px 0;
  flex-wrap: wrap;
}

.footer-under-nav_item {
  color: #fff;
  font-size: 14px;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  padding: 20px 0;
}

.footer-bnr_title {
  font-size: 14px;
  font-family: "Noto Sans JP", serif;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-bnr {
  display: flex;
  gap: 2.22vw;
  flex-wrap: wrap;
}
.footer-bnr img {
  width: 208px;
  cursor: pointer;
}

.footer-bnr img:hover {
  opacity: 0.6;
}
.footer-policy {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-policy_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-policy_item:first-child {
  cursor: pointer;
}
.footer-policy_item:first-child:hover {
  opacity: 0.6;
}
.footer-policy_img {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

.footer-policy_text {
  font-size: 10px;
  line-height: 1.3;
  max-width: 200px;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .footer-top_inner {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
  }
  .footer-info {
    width: 100%;
    padding-bottom: 5%;
    border-bottom: 1px solid var(--bluegrey);
  }

  .footer-logo {
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .footer-top {
    background-color: #fff;
    padding: clamp(35px, 3vw, 40px) 0 40px;
  }
  .footer-bnr_wrap {
    text-align: center;
  }

  .footer-bnr {
        justify-content: center;
  }
}

/*--------------------------------
下層共通見出し
sub-mv
---------------------------------*/
.sub-mv_wrap {
  height: 230px;
  margin-bottom: 24px;
  margin-top: 70px;
  overflow: hidden;
}
.sub-mv {
  position: relative;
  height: 200px;
  background: linear-gradient(90deg, #39668f 41.86%, #7896b2 96.71%);
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sub-mv_deco {
  position: relative;
  background: #dce3ea;
  height: 200px;
  left: 0;
  top: -170px;
  z-index: -1;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

.sub-heading_circle {
  position: absolute;
  transform: translateX(-60%);
  left: 40%;
  opacity: 0.4;
}

.sub-heading {
  color: #fff;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.sub-heading_en {
  margin-top: 10px;
  color: var(--yellow);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: urw-din, sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.sub-heading_en::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: currentColor;
  display: block;
  margin-right: 8px;
}
@media screen and (max-width: 991px) {
  .sub-mv_wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .sub-mv {
    padding-right: 20px;
  }
  .sub-mv_deco {
    top: -170px;
  }
}

/*--------------------------------
下層共通 ぱんくず
breadcrumb
---------------------------------*/
.breadcrumb {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3em;
}
.breadcrumb_list > * + * {
  margin-left: 10px;
}
.breadcrumb_item {
  font-size: 14px;
}
.breadcrumb_item:not(:first-child)::before {
  position: relative;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 0.1em solid #889baa;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-right: 8px;
  top: -2px;
}

.breadcrumb_item a {
  color: #889baa;
}
.breadcrumb_item a:hover {
  border-bottom: 2px solid currentColor;
}
