@charset "utf-8";
/* CSS Document */
body {
	margin: 0;
}


/***　メニュー　***/
.ars-global-menu {
  width: 100%;
  background: transparent;
  text-align: right;
  padding-right:50px;
}

.ars-global-menu ul {
  display: flex;
  justify-content: flex-end;  /* ここをflex-endに */
  align-items: flex-end;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ars-global-menu li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-sub {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.24);
}

.ars-global-menu a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.24);
  padding: 0;
  margin: 0;
  transition: opacity 0.2s;
  font-family: "Zen Maru Gothic", sans-serif;
}

.ars-global-menu a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .ars-global-menu ul {
    gap: 20px;
  }
  .menu-sub {
    font-size: 15px;
  }
  .ars-global-menu a {
    font-size: 16px;
  }
}



/* ===== PCメニュー：デフォルト表示 ===== */
.ars-global-menu-pc {
  display: flex;
  justify-content: flex-end;
  background: none;
  margin-top: 0;
}
.ars-global-menu-pc ul {
  display: flex;
  gap: 44px;
  margin: 0 30px 0 0;
  padding: 0;
  list-style: none;
}
.ars-global-menu-pc li { text-align: center; }
.ars-global-menu-pc .menu-sub {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  opacity: 0.85;
  margin-bottom: 2px;
}
.ars-global-menu-pc a {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

/* ===== スマホメニュー・ハンバーガー：デフォルト非表示 ===== */
.ars-hamburger,
.ars-global-menu-sp { display: none; }

@media (max-width: 768px) {
  /* ハンバーガーアイコンを表示 */
  .ars-hamburger {
    display: block;
    position: absolute;
    right: 16px;
    top: 18px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    z-index: 1101;
    cursor: pointer;
  }
  .ars-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 6px auto;
    background: #423C73;
    border-radius: 2px;
    transition: 0.3s;
  }
  /* PCグローバルメニューを非表示 */
  .ars-global-menu-pc { display: none; }
  /* スマホグローバルメニューを表示（初期は非表示、openで表示） */
  .ars-global-menu-sp {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(66,60,115,0.98);
    z-index: 1100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .ars-global-menu-sp.open { display: flex; }
  .ars-global-menu-sp ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  .ars-global-menu-sp li { margin: 28px 0; }
  .ars-global-menu-sp .menu-sub {
    font-size: 15px;
    color: #ff9800;
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
  }
  .ars-global-menu-sp a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 4px 0 0 0;
  }
  /* 右上の3画像を非表示にしたい場合は下記も追加 */
  .ars-img-area { 
	  display: none!important;
}
}








.ars-header {
  background: url('bg.png') repeat;
  width: 100%;
}
.ars-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}

/* ロゴ＆タイトル */
.ars-logo-area {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 650px;
}
.ars-logo {
  width: 109px;
  height: 100px;
  margin-top: 0px;
}
.ars-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ars-title-ja {
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.ars-title-en {
  color: #fff;
  font-size: 26px;
  letter-spacing: 0.15em;
  font-family: "Montserrat", sans-serif;
  margin-top: 2px;
}

/* 画像エリア */
.ars-img-area {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.ars-img-area img {
  display: block;
  height: 90px; /* 画像サイズに合わせて調整 */
  margin-left: 0;
  margin-right: 0;
}

/* 下部メニュー */
.ars-menu {
  display: flex;
  gap: 38px;
  justify-content: flex-end;
  max-width: 1920px;
  margin: 0 auto;
  font-size: 18px;
  padding: 8px 0 0 0;
}
.ars-menu a {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s;
}
.ars-menu a:hover {
  border-bottom: 2px solid #fff;
}


/* メインビジュアル全体 */
.ars-mainvisual {
  width: 100vw;
  height: 910px;
  background: url('images/mv01.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}



/* 内側のテキスト */
.ars-mainvisual-inner {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-top: 300px;
}

/* キャッチコピー */
.ars-catch {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.12em;
  text-shadow: 2px 4px 7px rgba(0,0,0,0.60);
  margin-bottom: 16px;
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}

/* 強調部分 */
.ars-catch-strong {
  font-size: 60px;
  letter-spacing: 0.15em;
  font-weight: 800;
  display: inline-block;
  margin-top: 8px;
}

/* サブ英語キャッチ */
.ars-subcatch {
  font-size: 28px;
  color: #fff;
  margin-top: 28px;
  letter-spacing: 0.14em;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.45);
  font-family: "Montserrat", "Arial", sans-serif;
}


.ars-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* 背景が透明の場合はbackground: rgba(0,0,0,0.3); など半透明も可能 */
}

.ars-mainvisual {
  width: 100vw;
  height: 910px;
  background: url('images/mv01.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* ヘッダー高さ分padding-topを追加する場合は下記を利用 */
  /* padding-top: 120px; 例：ヘッダーが完全に透明でない場合 */
}

/* その他、前回提示の .ars-mainvisual-inner などのCSSは同じでOK */



.secA{
	width: 100%;
	margin: 0 auto;
}

.top01{
	text-align: center;
	margin-top: 60px;
	margin-bottom: 40px;
}

.top02{
	text-align: center;
}

.top03{
	margin-top: 50px;
	text-align: center;
	margin-bottom: 60px;
}

.top03 p{
	font-size: 18px;
	font-weight: normal;
	line-height: 2;
}


.ars-about {
  background: rgba(230, 230, 230, 0.25) url('images/top-bg01.png') center center/cover no-repeat;
  padding: 80px 0;
  width: 100%;
}
.ars-about-inner {
  background: #fff;
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 40px 48px 40px;
  box-shadow: 0 6px 38px rgba(0,0,0,0.09);
  text-align: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
}
.ars-about-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.ars-about-logo {
  width: 100px;
  margin-bottom: 8px;
}
.ars-about-title {
  font-size: 60px;
  letter-spacing: 0.08em;
  color: #3d358f;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: bold;
  margin: 0;
}
.ars-about-desc {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.1;
  letter-spacing: 0.07em;
  font-family: "Noto Sans JP", "Meiryo", sans-serif;
  width: 1100px;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 50px;
}

.ars-about-items {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.ars-about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 310px;
}
.ars-about-img-wrap {
  max-width: 327px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(50,50,50,0.10);
  margin-bottom: 18px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ars-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ars-about-btn {
  display: inline-block;
  background: #f26b1d;
  color: #fff!important;
  font-size: 22px;
  font-weight: bold;
  padding: 8px 26px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.12em;
  margin-top: 8px;
  box-shadow: 0 2px 12px rgba(50,50,50,0.11);
  transition: background 0.2s;
  font-family: "Noto Sans JP", sans-serif;
}
.ars-about-btn span {
  margin-left: 7px;
  font-size: 1.05em;
  vertical-align: middle;
}
.ars-about-btn:hover {
  background: #c25515;
}

@media (max-width: 1100px) {
  .ars-about-inner {
    padding: 32px 6vw 32px 6vw;
  }
  .ars-about-items {
    gap: 22px;
  }
  .ars-about-item {
    width: 31vw;
    min-width: 180px;
  }
  .ars-about-img-wrap {
    width: 25vw;
    height: 25vw;
    min-width: 130px;
    min-height: 130px;
  }
}

@media (max-width: 768px) {
  .ars-about {
    padding: 28px 0;
  }
  .ars-about-inner {
    padding: 18px 2vw;
	margin:0 20px;
  }
  .ars-about-head {
    margin-bottom: 14px;
  }
  .ars-about-title {
    font-size: 34px;
  }
  .ars-about-desc {
    font-size: 14px;
    margin-bottom: 28px;
	width:100%;
  }
  .ars-about-items {
    flex-direction: column;
    gap: 18px;
  }
  .ars-about-item {
    width: 98vw;
    max-width: 330px;
    margin: 0 auto;
  }
  .ars-about-img-wrap {
    width: 48vw;
    height: 48vw;
    max-width: 180px;
    max-height: 180px;
    min-width: 100px;
    min-height: 100px;
  }
  .ars-about-btn {
    font-size: 16px;
    padding: 7px 18px;
  }
}



.ars-lockservice {
  background: #faf7f0;
  padding: 68px 0 90px 0;
}
.ars-lockservice-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.ars-lockservice-head {
  margin-bottom: 42px;
}
.ars-lockservice-logo {
  width: 123px;
  margin-bottom: 5px;
}
.ars-lockservice-title {
  font-size: 54px;
  letter-spacing: 0.08em;
  color: #514697;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: bold;
  margin: 0;
}
.ars-lockservice-catch {
  color: #514697;
  font-size: 34px;
  font-weight: bold;
  margin: 16px 0 6px 0;
  letter-spacing: 0.09em;
  font-family: "Zen Maru Gothic", sans-serif;
}
.ars-lockservice-sub {
  color: #474153;
  font-size: 20px;
  letter-spacing: 0.09em;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.ars-lockservice-items {
  display: flex;
  justify-content: center;
  gap: 68px;
  margin-top: 40px;
}
.ars-lockservice-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ars-lockservice-img {
  max-width: 605px;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .ars-lockservice-inner {
    max-width: 98vw;
  }
  .ars-lockservice-title {
    font-size: 36px;
  }
  .ars-lockservice-catch {
    font-size: 22px;
  }
  .ars-lockservice-sub {
    font-size: 16px;
	font-weight:500;
	font-family: "Zen Maru Gothic", sans-serif;
  }
  .ars-lockservice-items {
    gap: 24px;
  }
  .ars-lockservice-img {
    width: 44vw;
    border-width: 6px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .ars-lockservice {
    padding: 32px 0 40px 0;
  }
  .ars-lockservice-head {
    margin-bottom: 16px;
  }
  .ars-lockservice-title {
    font-size: 30px;
  }
  .ars-lockservice-catch {
    font-size: 20px;
  }
  .ars-lockservice-items {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
  }
  .ars-lockservice-img {
    width: 98vw;
    max-width: 380px;
    border-width: 4px;
    border-radius: 8px;
  }
}




.ars-faq-lead {
  background: #fff url("images/grid-bg.png") repeat;
  padding: 60px 0 0 0;
}

.ars-faq-lead-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
}

.ars-faq-lead-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  margin-top: 10px;
}

.ars-faq-lead-icon {
  width: 44px;
  height: 90px;
}

.ars-faq-lead-title {
  color: #3d358f;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.10em;
  text-align: center;
  line-height: 1.4;
  font-family: "Zen Maru Gothic", sans-serif;
}

.ars-faq-lead-title strong {
  color: #3d358f;
  font-weight: bold;
  font-size: 38px;
}

.ars-faq-lead-content {
  display: flex;
  align-items: flex-start;
  /*justify-content: center;*/
  min-height: 320px;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 0px;
}

.ars-faq-lead-box {
  background: #fff;
  border: 1px solid #a8a8a8;
  box-shadow: 8px 10px 0 0 #a8a8a8;
  padding: 20px 5px 10px 0px;
  min-width: 480px;
  max-width: 720px;
  font-size: 20px;
  color: #2b2b2b;
  text-align: left;
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}

.ars-faq-lead-box ol {
  padding-left: 2px;
}

.ars-faq-lead-box li {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 18px;
}

.ars-faq-lead-woman {
  width: 469px;
  max-width: 469px;
  height: auto;
  margin-left: 200px;
  margin-top: 0;
  display: block;
  position: relative;
  z-index: 2;
}

/* よくある質問の帯 */
.ars-faq-lead-footer {
  width: 100%;
  max-width: 1280px;
  margin: 0px auto;
  background: #483d8b;
  color: #fff;
  font-size: 38px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  letter-spacing: 0.15em;
  border-radius: 0;
  padding: 22px 0 18px 0;
  text-align: center;
}

@media (max-width: 900px) {
  .ars-faq-lead-head {
    gap: 8px;
  }
  .ars-faq-lead-title {
    font-size: 23px;
  }
  .ars-faq-lead-title strong {
    font-size: 24px;
  }
  .ars-faq-lead-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
  }
  .ars-faq-lead-box {
    min-width: 80vw;
    max-width: 98vw;
    font-size: 14px;
    padding: 18px 10px 12px 16px;
  }
  .ars-faq-lead-woman {
    width: 220px;
    max-width: 80vw;
    margin: 0 auto;
    margin-bottom: 0;
  }
  .ars-faq-lead-footer {
    font-size: 20px;
    padding: 13px 0 10px 0;
	margin-top:-30px;
  }
}



.ars-faq-list {
  background: #fff url("images/grid-bg.png") repeat;
  padding: 80px 0 80px 0;
}

.ars-faq-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.ars-faq-item {
  margin-bottom: 48px;
}

.ars-faq-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ars-faq-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.0rem;
  font-weight: bold;
  font-family: "Montserrat", "Arial", sans-serif;
  margin-right: 18px;
  flex-shrink: 0;
}

.ars-faq-icon.q { background: #473f98; }
.ars-faq-icon.a { background: #f47c24; }

.ars-faq-question {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.ars-faq-answer {
  font-size: 18px;
  color: #222;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
}



.ars-reason {
  background: #fff;
  padding: 40px 0 56px 0;
}
.ars-reason-header {
  width: 1280px;
  max-width: 96vw;
  margin: 0 auto 34px auto;
  background: #ee7800;
  color: #fff;
  font-size: 38px;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.16em;
  border-radius: 0;
  padding: 22px 0 18px 0;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.ars-reason-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  border-width: 22px 22px 0 22px;
  border-style: solid;
  border-color: #fceabc transparent transparent transparent;
  width: 0; height: 0;
  z-index: 1;
}

.ars-reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 26px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.ars-reason-box {
  background: #f7f4ed;
  position: relative;
  padding: 40px 18px 32px 18px;
  min-height: 215px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Meiryo", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

/* 右上三角形+番号 */
.ars-reason-corner-num {
  position: absolute;
  right: 0;
  top: 0;
  width: 84px;
  height: 84px;
  z-index: 2;
  pointer-events: none;
}
.ars-reason-corner-num::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 84px;
  height: 84px;
  background: #f7e8c2;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}
.ars-reason-corner-num span {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 46px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
  z-index: 2;
}

/* アイコン・テキスト */
.ars-reason-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ars-reason-icon img {
  width: 129px;
  height: 129px;
  object-fit: contain;
}
.ars-reason-text {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin-top: 8px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}

/* レスポンシブ */
@media (max-width: 1100px) {
  .ars-reason-header,
  .ars-reason-list {
    max-width: 98vw;
    width: 98vw;
  }
  .ars-reason-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }
  .ars-reason-box {
    min-height: 170px;
    padding: 28px 8px 20px 8px;
  }
  .ars-reason-corner-num,
  .ars-reason-corner-num::before {
    width: 54px;
    height: 54px;
  }
  .ars-reason-corner-num span {
    font-size: 28px;
    top: 7px;
    right: 8px;
  }
  .ars-reason-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }
  .ars-reason-icon img {
    width: 36px;
    height: 36px;
  }
  .ars-reason-text {
    font-size: 16px;
    margin-top: 4px;
  }
}

@media (max-width: 787px) {
  .ars-reason-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ars-reason-header {
    font-size: 16px;
    padding: 8px 0 7px 0;
    margin-bottom: 16px;
    width: 99vw;
    max-width: 99vw;
  }
  .ars-reason-box {
    min-height: 120px;
    padding: 13px 2vw 10px 2vw;
  }
  .ars-reason-corner-num,
  .ars-reason-corner-num::before {
    width: 38px;
    height: 38px;
  }
  .ars-reason-corner-num span {
    font-size: 14px;
    top: 3px;
    right: 3px;
  }
  .ars-reason-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
  }
  .ars-reason-icon img {
    width: 100px;
    height: 100px;
  }
  .ars-reason-text {
    font-size: 14px;
    margin-top: 2px;
  }
}



.ars-area {
  width: 100%;
  background: #fff;
  padding: 60px 0 60px 0;
}
.ars-area-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0 32px;
  padding: 0 20px;
  box-sizing: border-box;
}
.ars-area-text {
  flex: 0 0 400px;
  min-width: 300px;
  padding-top: 40px;
}
.ars-area-text h2 {
  font-size: 62px;
  color: #5c509b;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.08em;
  font-weight: bold;
  margin-bottom: 16px;
}
.ars-area-desc p {
  font-size: 20px;
  color: #222;
  font-family: "Noto Sans JP", "Meiryo", sans-serif;
  letter-spacing: 0.04em;
  line-height: 2.0;
  margin: 0;
}
.ars-area-map {
  flex: 1 1 0%;
  text-align: left;
}
.ars-area-map img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
}

@media (max-width: 1000px) {
  .ars-area-inner {
    flex-direction: column;
    gap: 30px 0;
    align-items: flex-start;
  }
  .ars-area-text {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .ars-area-map img {
    max-width: 100vw;
  }
  .ars-area {
    padding: 30px 0 30px 0;
  }
  .ars-area-text h2 {
    font-size: 34px;
  }
  .ars-area-desc p {
    font-size: 15px;
  }
}


.ars-menu-table {
  background: #f7f4ed url("images/key-bg.png") center top no-repeat;
  background-size: cover;
  width: 100%;
  padding: 60px 0;
}

.ars-menu-table-inner {
  max-width: 1528px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.ars-menu-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  gap: 10px;
}
.ars-menu-icon {
  width: 123px;
  height: 79px;
  object-fit: contain;
  margin-bottom: 6px;
}
.ars-menu-title span {
  font-size: 40px;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  color: #5c509b;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.ars-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px 20px;
  width: 100%;
}

.ars-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 0;
  padding: 0 20px;
  height: 140px;
  font-size: 28px;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  color: #444;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: none;
  border: none;
  transition: box-shadow 0.2s, transform 0.1s;
  position: relative;
}

.ars-menu-item i {
  display: inline-block;
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ee7800;
  margin-left: 28px;
  margin-right: 0;
}

.ars-menu-item span {
  margin-left: 18px;
  margin: 0 auto;
}

.ars-menu-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.02);
}

/* スマホ・タブレット */
@media (max-width: 1100px) {
  .ars-menu-table-inner {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .ars-menu-title span {
    font-size: 26px;
  }
  .ars-menu-icon {
    width: 34px; height: 34px;
  }
  .ars-menu-grid {
    gap: 16px 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .ars-menu-item {
    font-size: 17px;
    padding: 0 14px;
    height: 64px;
  }
  .ars-menu-item i {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #ee7800;
    margin-left: 12px;
  }
}
@media (max-width: 650px) {
  .ars-menu-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .ars-menu-item {
    font-size: 15px;
    height: 46px;
    padding: 0 5vw;
  }
}



.ars-police-banner {
  width: 1041px;       /* お好みで画像幅に合わせて調整（例：980pxや1000pxなど） */
  margin: 60px auto 60px auto;
  text-align: center;
}
.ars-police-banner img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: none;
}




.ars-contact {
  width: 100%;
  min-height: 600px;
  background: url("images/con-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0;
}
.ars-contact::before {
  /* 黒の半透明オーバーレイ */
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1;
}
.ars-contact-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ars-contact-icon {
  width: 86px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.ars-contact-title-en {
  font-size: 56px;
  letter-spacing: 0.13em;
  margin-bottom: 4px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: bold;
}

.ars-contact-title-en:before {
  position: relative;
  top: 30px;
  margin: 0 10px 0 0;
  content: url("http://artlockservice.jp/wp-content/uploads/2025/08/logo02.png");
}

.ars-contact-title-ja {
  font-size: 44px;
  letter-spacing: 0.11em;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  font-weight: bold;
  margin-bottom: 26px;
}

.ars-contact-lead {
  font-size: 20px;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  line-height: 2;
  color: #fff;
  margin-bottom: 24px;
}

.ars-contact-telbox {
  margin: 38px 0 38px 0;
}
.ars-contact-hours {
  font-size: 32px;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  font-family: 'Noto Sans JP', sans-serif;
}
.ars-contact-telwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ars-contact-telicon {
  width: 90px;
  height: 70px;
  object-fit: contain;
  display: inline-block;
}
.ars-contact-tel {
  font-size: 64px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  letter-spacing: 0.11em;
  font-weight: bold;
  color: #fff;
}

.ars-contact-btns {
  margin-top: 36px;
  display: flex;
  gap: 40px;
}
.ars-contact-btn img {
  width: 300px;   /* 画像の実サイズに合わせてください */
  max-width: 98vw;
  height: auto;
  border-radius: 0;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
  .ars-contact-title-en { font-size: 32px; }
  .ars-contact-title-ja { font-size: 22px;
	font-family: "Zen Maru Gothic", sans-serif;
	}
  .ars-contact-lead {
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        padding: 0 10px;
	  font-family: "Zen Maru Gothic", sans-serif;
    }
  .ars-contact-hours { font-size: 18px; }
  .ars-contact-tel { font-size: 28px; }
  .ars-contact-btn img { width: 96vw; }
}


.gmap{
	margin-bottom: -5px;
}

footer{
	background-color: #f5f2ea;
}


.address{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.address p{
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.11em;
	margin: 0;
    padding-top: 30px;
}

.address h2{
	font-size: 40px;
	font-weight: bold;
	color: #483d8b;
	letter-spacing: 0.11em;
	margin-bottom: 60px;
}

.address h2:before {
  position: relative;
  top: 30px;
  margin: 0 10px 0 0;
  content: url("http://artlockservice.jp/wp-content/uploads/2025/08/logo.png");
}

.address h2 span {
	font-size: 30px;
	font-weight: normal;
	letter-spacing: 0.11em;
}

.f-link {
	width: 100%;
	text-align: center;
	padding-bottom: 50px;
}

.f-link a {
	font-size: 18px;
	font-weight:500;
	color: #333;
	text-decoration: none;
	padding: 0 30px;
	font-family: "Zen Maru Gothic", sans-serif;
}

.copy {
	text-align: center;
	background-color: #483d8b;
	color: #fff;
	padding: 10px 0;
}

.copy p{
	font-size: 18px;
	color: #fff;
}






/****　スマホ　***************************************/
@media (max-width: 768px) {
.ars-police-banner img {
    height: auto;
    display: block;
    box-shadow: none;
    width: 360px;
}
.ars-contact-btns {
    margin-top: 36px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.ars-title-ja
 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.2em;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
}
.ars-police-banner {
	width:86%;
    margin: 60px auto 60px auto;
    text-align: center;
}
/* 開いたときの「×」 */
.ars-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.ars-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.ars-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.ars-hamburger {
  display: block;
  position: absolute;
  right: 16px;
  top: 1px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  z-index: 1101;
  cursor: pointer;
}

.ars-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 6px auto;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
  position: relative;
}

/* 開いたときの「×」 */
.ars-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.ars-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.ars-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.ars-title-en {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.15em;
    font-family: "Montserrat", sans-serif;
    margin-top: 2px;
}
.service-title-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 360px;
    z-index: 5;
    margin-bottom: 100px;
}
.ars-contact-title-en:before {
    position: relative;
    top: 30px;
    margin: 0 0px 0 0;
    content: url();
}
.ars-subcatch {
    font-size: 20px;
}
.ars-lockservice-logo {
    width: 100px;
    margin-bottom: 5px;
}
img.ars-service-icon {
    width: 100px;
}
	.ars-service-title img{
		width:100px;
	}
.psecA img {
    text-align: center;
    width: 100px;
}
	.address img{
		width:100px;
	}
｝