@charset "utf-8";

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------
@import url('https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap');*/

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
  --primary-color: #086eec; /*テンプレートのメインまたはアクセントカラー*/
  --primary-inverse-color: #fff; /*上のprimary-colorの対となる色*/
  --sub-color: #d2e9f9;
  --font-color: #333;
  --NAVY: #0a3872;
  --LB: #399bff;

  --bg-main: #00a0e9;
  --bg-sub: #f2fbff;
  --bg-bya: #e9f7f4;
  --bg-wht: #fff;
  --bg-off_wht: #f2f6f8;
  --bg-gray: #7e888e;

  --global-space5: 5vw; /*主に余白の一括管理用。画面幅100%＝100vwです。*/
  --global-space7: 7vw; /*主に余白の一括管理用。画面幅100%＝100vwです。*/

  --iwate: #145e70;
  --aomori: #04773d;
  --akita: #bc3740;
}

/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
  0% {
    right: -100vw;
  }
  100% {
    right: 0px;
  }
}

/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(-30deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/*slide1のキーフレーム設定（footer背景に使用）
---------------------------------------------------------------------------*/
@keyframes slide1 {
  0% {
    background-position: center bottom;
  }
  50% {
    background-position: 50px bottom;
  }
  100% {
    background-position: center bottom;
  }
}

/*spin（回転するキーフレーム）
---------------------------------------------------------------------------*/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}

html,
body {
  font-size: 16px; /*基準となるフォントサイズ。*/
}
body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体",
    "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    "Meiryo", "verdana", sans-serif;
  font-optical-sizing: auto;
  -webkit-text-size-adjust: none;
  color: #1e2228; /*文字色*/
  line-height: 32px; /*行間*/
  overflow-x: hidden;
}

.index section {
  margin: 2% auto !important;
}

.index .bg-sub {
  padding: 3% 0;
}

/*リセット他*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*他*/
input {
  font-size: 1rem;
}
span.strong {
  font-weight: 600;
  font-size: 110%;
  background: linear-gradient(transparent 50%, #f9fc8d 50%);
}

.inner {
  padding: 2% var(--global-space7);
}
.inner2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3%;
}
.other .inner {
  max-width: 1200px;
  margin: 0 auto;
}

/*btn設定*/
.btn {
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  margin: 1em auto;
  padding: 0.5em 2em;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:hover {
  opacity: 0.7;
}
.btnBL {
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}
.btnNV {
  background: var(--NAVY);
  color: var(--primary-inverse-color);
}
.btnGY {
  background: var(--bg-gray);
  color: var(--primary-inverse-color);
}

.arrow {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 0.5;
  color: var(--primary-color);
}
a.arrow {
  font-weight: bold;
}

.arrow::after {
  content: "";
  width: 250px;
  height: 5px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
}
.arrow.iwate {
  color: var(--iwate);
}
.arrow.aomori {
  color: var(--aomori);
}
.arrow.akita {
  color: var(--akita);
}
@media screen and (min-width: 768px) {
  .btn {
    width: 40%;
  }
}

/*footer上部問合せ*/
footer .common-contact.inner {
  padding: 0 var(--global-space7) 3%;
  margin: 0 auto !important;
  max-width: none;
}
footer .btnNV {
  margin: 0 auto;
  font-size: 20px;
}
footer .page_all_text {
  text-align: center;
}
.other footer .common-contact.inner {
  padding: 3% var(--global-space7) 5%;
  background: var(--bg-sub);
}
@media screen and (min-width: 768px) {
  footer .btnNV {
    padding: 1em 2.5em;
  }
}

/*背景色設定*/
.bg-sub {
  background: var(--bg-sub);
  padding: 0 0 5% 0;
}

/*マーカー設定*/
span.marker {
  background: linear-gradient(transparent 50%, #f9fc8d 50%);
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: inherit;
  transition: 0.3s; /*hoverまでにかける時間。0.3秒。*/
  text-decoration: none;
  cursor: pointer;
}

.documents a,
a.BL {
  text-decoration: underline solid var(--bg-main);
  color: var(--bg-main);
}

/*マウスオン時*/
a:hover {
  text-decoration: none; /*下線を消す*/
  opacity: 0.9; /*色を90%だけ出す*/
}

/*コンテナー（サイト全体を囲むブロック）
コンテンツ内容が少なくてもフッターが画面下に配置される為の指示なので変更不要。
---------------------------------------------------------------------------*/
#container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
  flex: 1;
}
@media screen and (min-width: 1280px) {
  .index #contents {
    padding-top: 140px;
  }
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  flex-shrink: 0;
  padding: 0 var(--global-space5);
  font-optical-sizing: auto;
  font-weight: 600; /*文字の太さ。100〜900で指定ができます。*/
  color: var(--LB);
  flex-direction: column;
  justify-content: center;
}
.index header {
  height: 140px;
}
.other header {
  padding: 1em var(--global-space5) 0;
}
header a {
  color: inherit;
}

header .hd_wrap.flex {
  align-items: center;
  justify-content: space-between;
}

/*h1テキスト*/
header h1.hd-text {
  list-style: none;
  font-size: 0.7em;
  justify-content: flex-start;
  font-weight: normal;
  margin-block-end: 0;
  align-items: flex-start;
  margin-block-start: -1em;
  width: 85%;
  line-height: 1.5;
  padding: 0 0 1em;
}
@media screen and (min-width: 1280px) {
  header {
    justify-content: flex-start;
  }
  .other header {
    height: auto;
    padding: 0 var(--global-space5) 1em;
  }
  header h1.hd-text {
    width: 100%;
    margin-block-start: 0;
    align-items: center;
    line-height: 32px;
    padding: 0;
  }
}

/*ロゴ*/
.logo a {
  display: block;
  text-decoration: none;
}
.logo img {
  display: block;
}
.logo {
  margin: 0;
  padding: 0;
  width: 250px; /*ロゴ画像の幅*/
  font-size: 1.5rem; /*ロゴをテキストで使用する場合の文字サイズ*/
  font-weight: 500; /*文字の太さ。100〜900で指定ができます。*/
  letter-spacing: 0.1em; /*文字間隔をほんの少しだけ広く*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 1280px) {
  header.flex {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-inverse-color);
  }
}

/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav {
  display: none;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 1280px) {
  /*メニューブロック全体の設定*/
  header > nav > ul {
    display: flex; /*横並びにする*/
    font-size: 0.85rem; /*文字サイズ。85%。*/
  }
  /*メニュー１個あたりの設定*/
  header nav li a {
    display: block;
    text-decoration: none;
    padding: 0.5rem 1rem; /*メニュー内の余白。上下、左右へ。*/
  }
  header nav {
    color: var(--NAVY);
    display: block;
  }
}

/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both; /*0.1秒待機後、0.5秒かけてフェードイン表示*/
}

/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
  position: absolute;
  z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
  background: #fffffff0;
  color: var(--LB);
}
header nav ul ul a:hover {
  color: var(--NAVY);
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
  display: none;
}
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menubar a {
  display: block;
  text-decoration: none;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
  display: block;
}
.small-screen #menubar.display-block {
  display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
  display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
  display: none;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
  font-family: "Font Awesome 6 Free"; /*Font Awesomeを使う指示*/
  content: "\f078"; /*使いたいアイコン名（Font Awesome）をここで指定*/
  font-weight: bold; /*この手の設定がないとアイコンが出ない場合があります*/
  margin-right: 0.5em; /*アイコンとテキストとの間に空けるスペース*/
}

/*開閉メニュー
---------------------------------------------------------------------------*/
.small-screen #menubar-s.display-none {
  display: none;
}
/*メニューブロック設定*/
.small-screen #menubar-s.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 90px 10vw 50px; /*ブロック内の余白。上、左右、下への順番。*/
  background: var(
    --primary-color
  ); /*背景色。css冒頭のprimary-colorを読み込みます。*/
  color: var(
    --primary-inverse-color
  ); /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
  animation: animation1 0.2s both; /*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar-s ul ul {
  margin: 0rem 2rem; /*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar-s ul li {
  border: 1px solid var(--primary-inverse-color); /*枠線の幅、線種、varは色の事でcss冒頭のprimary-inverse-colorを読み込みます。*/
  margin: 1rem 0; /*メニューの外側に空けるスペース。上下、左右への順番。*/
  border-radius: 5px; /*角を丸くする指定*/
  padding: 10px 0px;
}

/*マウスオン時*/
.small-screen #menubar-s a {
  color: inherit;
  padding: 0 1rem;
  text-decoration: none; /* 下線を消す */
  background: none !important; /* 背景を削除 */
  box-shadow: none !important; /* 影を削除 */
  outline: none !important; /* フォーカス枠を削除 */
  -webkit-tap-highlight-color: transparent;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
  position: fixed;
  z-index: 9999;
  cursor: pointer;
  top: 20px; /* 位置を確定 */
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 1;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

/* メニュー表示時 */
#menubar_hdr.show {
  opacity: 1;
  transform: scale(1);
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 1280px) {
  /*３本バーを囲むブロック*/
  #menubar_hdr {
    display: none;
    top: 34px; /*上からの配置場所*/
  }
}

/*ここは変更不要*/
#menubar_hdr div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
  display: block;
  width: 100%;
  height: 2px; /*線の太さ*/
  background-color: var(
    --primary-inverse-color
  ); /*線の色。css冒頭のprimary-inverse-colorを読み込みます。*/
  border-radius: 2px; /*コーナーを少しだけ丸く*/
  transition: all 0.5s ease-in-out;
  position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {
  top: 0;
}
#menubar_hdr div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#menubar_hdr div span:nth-child(3) {
  bottom: 0;
}
#menubar_hdr.ham div span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#menubar_hdr.ham div span:nth-child(2) {
  opacity: 0;
}
#menubar_hdr.ham div span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/*main
---------------------------------------------------------------------------*/
/*index見出し
--------------------------*/
/*h2(見出し)要素*/
.index h2 {
  color: var(
    --primary-color
  ); /*文字色。css冒頭のprimary-colorを読み込みます。*/
  font-size: clamp(25px, 2.9vw, 40px);
  font-weight: bold;
  display: inline-flex;
  width: auto;
  margin-top: 0;
  align-items: center;
}
/*h3(見出し)要素*/
.index h3 {
  margin: 0;
  padding: 0;
  font-size: clamp(25px, 2.9vw, 35px);
  font-weight: bold;
  margin-block-start: 0;
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0;
  color: var(--primary-color);
  line-height: 1.5;
  position: relative;
}

/*other見出し
--------------------------*/
/*h2(見出し)要素*/
.other h2 {
  color: var(--primary-color);
  font-size: clamp(25px, 2.9vw, 35px);
  font-weight: 400;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%; /* 幅を画面いっぱいに */
  justify-content: space-between; /* 要素間にスペースを均等配置 */
}
.other h2::before,
.other h2::after {
  content: "";
  height: 3px;
  flex-grow: 1; /* 横線が伸びるように */
  background-color: var(--sub-color);
}
.other h2::before {
  margin-right: 15px;
}
.other h2::after {
  margin-left: 15px;
}

/*h3(見出し)要素*/
.other h3 {
  color: var(--NAVY);
  font-size: clamp(20px, 2.9vw, 28px);
  font-weight: 500;
  letter-spacing: 3px;
  padding: 0 0 0 0.5em;
  border-left: 7px solid;
}

/*h4(見出し)要素*/
.other h4 {
  margin: 0;
  color: var(--NAVY);
  font-size: clamp(16px, 2.9vw, 20px);
}

/*更新履歴
---------------------------------------------------------------------------*/
/*共通*/
span.icon {
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 0 10px;
  border-radius: 3px;
  color: var(--primary-inverse-color);
}
span.icon.news {
  background: var(--primary-color);
  margin-right: 0.5em;
}
span.icon.new {
  background: #ff3a57;
  margin-left: 1em;
  font-size: 85%;
}

/*index*/
.index .topics_wrap.flex {
  flex-direction: column;
  align-items: flex-start;
  gap: 5vw;
}
.index .topics_wrap h2 {
  font-size: clamp(23px, 2.9vw, 28px);
}
.index ul.ul_news {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .index .topics_wrap.flex {
    flex-direction: row;
  }
  .index ul.ul_news {
    flex: 1;
  }
}

/*allページ*/
.other .topics-all h2 {
  display: none;
}
.other .topics-all .topics_wrap.flex {
  display: block;
}

/*index設定
---------------------------------------------------------------------------*/
.index-recruit.bg-img {
  background-image: url(../images/index_recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  height: 24em;
  position: relative;
  text-align: center;
  background-position: top left;
}
.index-recruit .page_block {
  position: absolute;
  width: 90%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
}
.index-recruit .page_all_text p.box {
  background: #ffffff8f;
  padding: 3%;
}
.index-recruit .page_all_text .btn {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .index-about .img_box {
    margin-right: -25%;
    width: 50%;
  }
  .index-about .text_contencts {
    flex: 1;
    background: #ffffff99;
    margin-top: 5%;
    z-index: 1;
    padding: 3% 5%;
  }
}
@media screen and (min-width: 1024px) {
  .index-about .img_box {
    margin-right: -10%;
    width: 35%;
  }
  .index-recruit .page_block {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .index-recruit .page_all_text p.box {
    background: none;
    padding: 0;
  }
}

/*other設定
---------------------------------------------------------------------------*/
/*上部画像部分
--------------------------*/
.other .page-top {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other .page-top h2 {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary-inverse-color);
  font-size: clamp(30px, 2.9vw, 35px);
  font-weight: bold;
  z-index: 10;
  text-shadow: 1px 1px 3px #444;
  height: 25vh;
  margin: 0;
}
.other .page-top h2::before,
.other .page-top h2::after {
  content: none;
}
.other .page-top .img_all_box {
  width: 100vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.other .page-top figure {
  background-color: var(--NAVY);
}
.other .page-top img {
  width: 100vw;
  object-fit: cover;
  height: 25vh;
  object-position: center;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .other .page-top h2 {
    height: 100%;
  }
  .other .page-top img {
    height: 40vh;
  }
}

/*わたしたちについて
--------------------------*/
/*メッセージ*/
.about.messege h4 {
  font-size: clamp(25px, 2.9vw, 35px);
  margin: 1em 0;
}
.about.messege .page_all_text {
  text-align: left;
}
.about.messege span.R {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝",
    YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  text-align: right;
}
/*読売ISグループ*/
.about .group-wrap.flex {
  flex-wrap: wrap;
  margin: 2rem auto 0;
  gap: 10px;
}
.about .group-wrap .flex {
  width: 100%;
  flex-direction: column;
}
.about .group-wrap .flex p {
  margin: 0;
}
.about .group-wrap a {
  color: var(--primary-color);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about .group-wrap .flex {
    flex: 1 1 30%;
    padding: 10px;
  }
}

/*折込広告
--------------------------*/
.orikomi .page_text2 {
  align-items: center;
}
.orikomi .img_box2 {
  margin: 0 auto;
  text-align: center;
}

/*よくある質問*/
.faq dd {
  padding-left: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding: 0 1em 1em;
}
.faq dd::before {
  content: "A.";
  padding-right: 0.5em;
}
.faq dt {
  color: var(--NAVY);
  font-weight: bold;
  font-size: 17px;
  padding: 0.5em 1em 0;
}
.faq dt::before {
  content: "Q.";
  padding-right: 0.5em;
}

/*折込広告資料データ
--------------------------*/
/*折込広告資料データ*/
.orikomi-data.flex {
  flex-direction: column;
}
.area-wrap:nth-of-type(odd) {
  background: #f3f3f3;
  margin: 0 calc(50% - 50vw);
  padding: 3em calc(50vw - 50%);
}
.area-wrap:nth-of-type(even) {
  color: #999;
  padding: 3em 0;
}
.area-wrap .flex {
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: space-between;
}
.area-wrap .busuu.flex,
.area-wrap .kyukan.flex,
.area-wrap .etc.flex {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}
.area-wrap .busuu.flex,
.area-wrap .kyukan.flex {
  font-size: 1.3em;
  padding: 20px 10px;
  background: linear-gradient(to bottom, #0396ff 0%, #8bc8f4 90%, #a6d6f9 100%);
  color: var(--primary-inverse-color);
}
.area-wrap .etc.flex {
  color: var(--primary-color);
  background: var(--primary-inverse-color);
  border: 1px solid var(--primary-color);
}
.area-wrap .ttl {
  text-align: center;
  display: block;
  font-size: 1.5em;
  margin-bottom: 1.5em;
  color: var(--primary-color);
}
.area-wrap i {
  padding-right: 0.5em;
}

/*販促カレンダー*/
.orikomi-data_cal .img_box {
  margin-right: -10%;
  width: 100%;
}
.orikomi-data_cal .text_contencts {
  width: 100%;
  flex: 1;
  z-index: 1;
  padding: 3% 2%;
}
.orikomi-data_cal .btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .area-wrap .busuu.flex,
  .area-wrap .kyukan.flex,
  .area-wrap .etc.flex {
    width: calc((100% - 15px * 2) / 2);
  }
  .orikomi-data_cal .img_box {
    margin-right: -10%;
    width: 50%;
  }
  .orikomi-data_cal .text_contencts {
    background: #ffffff99;
    margin-top: 15%;
  }
}

/*サービス
--------------------------*/
.service .page_text .img_box {
  width: 100%;
}
.service .page_text .text_contencts {
  flex: 1;
}
.service .page_text .text_contencts p {
  margin: 0;
}
.service .page_text .text_contencts h4 {
  font-size: clamp(16px, 2.9vw, 18px);
}
@media screen and (min-width: 768px) {
  .service .page_text .img_box {
    width: 40%;
  }
}

/*折込広告掲載基準/プライバシーポリシー/サイト利用条件
--------------------------*/
section.documents .page_all_text {
  text-align: left;
}
.documents-ttl {
  margin: 2rem 0 1rem;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  border-left: 8px solid var(--LB);
  font-weight: bolder;
  font-weight: bolder;
  font-size: clamp(24px, 2.9vw, 25px);
}
.documents .disabled br {
  display: none;
}
.documents span.right {
  text-align: right;
  width: 100%;
  display: block;
}
.documents .wrap {
  background: var(--bg-off_wht);
  padding: 2% 5%;
  display: block;
}
.documents .documents-subttl1 {
  position: relative;
  padding-left: 25px;
  margin: 2rem 0 1rem;
  padding: 0.3rem 0.3rem 0.3rem 2rem;
  font-weight: bolder;
  font-size: clamp(18px, 2.9vw, 20px);
}
.documents .documents-subttl1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; /* 四角の幅 */
  height: 15px; /* 四角の高さ */
  background-color: var(--sub-color); /* 四角の色 */
}
.documents .documents_text_bl {
  color: var(--primary-color);
  font-weight: 600;
}

/*テーブル*/
.documents table {
  width: 100%;
}
.documents table,
.documents td,
.documents th {
  border: 1px solid #595959;
  border-collapse: collapse;
}
.documents td,
.documents th {
  padding: 3px;
  width: 30px;
  height: 25px;
}
.documents th {
  background: var(--bg-sub);
}

/*リストマーカー*/
/*数字*/
.documents-wrap ol {
  padding: 5px 0 0 40px;
}
.documents-wrap li {
  list-style-type: decimal;
}
/*小文字アルファベット*/
ol .disabled.lower-latin {
  list-style-type: none;
  counter-reset: list-counter;
}
.disabled.lower-latin li {
  counter-increment: list-counter;
  list-style-type: none;
  position: relative;
  padding-left: 0;
}
.disabled.lower-latin li::before {
  content: counter(list-counter, lower-alpha) ") ";
  margin-right: 10px;
  position: absolute;
  left: -20px;
  top: 0;
}

.documents-ttl {
  scroll-margin-top: 100px; /* 固定ヘッダーの高さに合わせる */
}

/*採用情報
--------------------------*/
.other .page-top.recruit img {
  object-position: top left;
}
.other .recruit-btn .btn {
  width: 100%;
  margin: 1em auto 3em;
  padding: 1em 2em;
  text-align: center;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .other .recruit-btn .btn {
    width: auto;
    margin: 3em auto;
    font-size: 100%;
  }
}

/*問合わせ
--------------------------*/
.other .page-top.contact img {
  object-position: 0 65%;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

/*ボタンの設定*/
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  animation: opa1 1s 0.4s both;
  position: fixed; /*スクロールに追従しない(固定で表示)為の設定*/
  right: 20px; /*右からの配置場所指定*/
  bottom: 20px; /*下からの配置場所指定*/
  font-size: 1.5rem; /*文字サイズ*/
  background: var(
    --primary-color
  ); /*背景色。css冒頭のprimary-colorを読み込みます。*/
  color: var(--primary-inverse-color);
  width: 60px; /*幅*/
  line-height: 60px; /*高さ*/
  border-radius: 50%; /*円形にする*/
}
