@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;&display=swap');

/* -----------------------------------------------------------
 =reset and default css
----------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, code, del, em, img, q, small, strong, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, article, aside, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, a, input, textarea { 
  margin: 0; padding: 0; border: 0; outline: 0; 
  vertical-align: baseline; 
  background: transparent; 
}

html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; }

body { 
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif; 
  font-weight: 400;
  font-size: 15px; 
  line-height: 1; 
  color: #000; 
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section { 
  display: block; 
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* link ------------------------------- */
a { color: #000; text-decoration: none; }
a:hover { color: var(--blue1); text-decoration: none; /* transition: all .3s; */ }
a:hover img { opacity: .7; transition: all .3s; }
a:visited { text-decoration: none; }
a[href^="tel:"] { 
  display: inline-block; pointer-events: none; color: #FFF; 
}
.u_line { text-decoration: underline !important; }

/* form ------------------------------- */
input:focus, textarea:focus { outline: none; }

/* table ------------------------------- */
table { border-collapse: collapse; border-spacing: 0; }

/* list ------------------------------- */
ul { list-style: none; }

/* alignment ------------------------------- */
.tCenter { text-align: center; }
.tLeft { text-align: left; }
.tRight { text-align: right; }

.mgCenter { margin-left: auto; margin-right: auto; }

.fx_left { display: flex; justify-content: flex-start; }
.fx_center { display: flex; justify-content: center; }
.fx_right { display: flex; justify-content: flex-end; }
.fx_top { display: flex; align-items: flex-start; }
.fx_middle { display: flex; align-items: center; }
.fx_bottom { display: flex; align-items: flex-end; }
.fx_column { flex-direction: column; }

/* image ------------------------------- */
img { max-width: 100%; vertical-align: middle; }

/* width ------------------------------- */
.w_50 { width: 50%; }
.w_100 { width: 100%; }

/* margin -------------------------------- */
.mg_0 { margin: 0 !important; }

.mgT0 { margin-top: 0 !important; }
.mgB0 { margin-bottom: 0 !important; }
.mgR0 { margin-right: 0 !important; }
.mgL0 { margin-left: 0 !important; }

/* padding -------------------------------- */
.pd_0 { padding: 0 !important; }

.pdT0 { padding-top: 0 !important; }
.pdB0 { padding-bottom: 0 !important; }
.pdR0 { padding-right: 0 !important; }
.pdL0 { padding-left: 0 !important; }

/* custom property -------------------------*/
:root {
  --black: #000;
  --gray1: #6D6866;
  --gray03: #b2b2b2;
  /* --gray_d: #ddd; */
  --gray_e4: #e4e4e4;
  --gray_e: #eee;
  --gray_f7: #f7f7f7;
  --blue1: #0186D1;
  --blue2: #055dac;
  /* --green1: #4DDAA4; */
}

/* Color ---------------------------------*/
.font_white { color: #fff; }
.font_black { color: var(--black); }
.font_gray1 { color: var(--gray1); }
.font_blue1 { color: var(--blue1); }

.bg_white { background: #fff; }
.bg_black { background: var(--black); }
.bg_gray1 { background: var(--gray1); }
.bg_blue1 { background: var(--blue1); }

/* Font ---------------------------------*/
.font_bold { font-weight: 700; }
.fw_500 { font-weight: 500; }
.fw_400 { font-weight: 400 !important;}

.font_40px { font-size: 40px; }

.pdl_1_tl_-1 {
  padding-left: 1em;
  text-indent: -1em;
}
.pdl_2_tl_-1 {
  padding-left: 2em;
  text-indent: -1em;
}
.pdl_25_tl_-25 {
  padding-left: 2.55em;
  text-indent: -2.55em;
}

.pointer {
  cursor :pointer;
}

/* display -------------------------------- */
.none { display: none; }
.block { display: block; }
.inline_block { display: inline-block; }
.shrink_0 { flex-shrink: 0; }
.z_index_1 { z-index: 1;}

.nopc_w1000 { display: none; }
.nopc_w900 { display: none; }
.nopc_w800 { display: none; }
.nopc_w767 { display: none; }
@media print,screen and (max-width: 1000px) {
  .nopc_w1000 { display: block; } 
  .nosp_w1000 { display: none; }
}
@media print,screen and (max-width: 900px) {
  .nopc_w900 { display: block; } 
  .nosp_w900 { display: none; }
}
@media print,screen and (max-width: 800px) {
  .nopc_w800 { display: block; } 
  .nosp_w800 { display: none; }
}
@media print,screen and (max-width: 767px) {
  .nopc_w767 { display: block; } 
  .nosp_w767 { display: none; }
}

/* ページ内リンク調整用 --------------------*/
html {
  scroll-padding-top: 150px;
}

@media (max-width: 1070px) {
  html { scroll-padding-top: 125px; }
}
@media (max-width: 880px) {
  html { scroll-padding-top: 95px; }
}
@media (max-width: 767px) {
  html { scroll-padding-top: 60px; }
}
@media print,screen and (max-width: 767px) and (max-height: 600px) {
  html { scroll-padding-top: 50px; }
}


/* ここから本文共通部分スタイル ---------------------------*/
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}


/* 本文スタイル ヘッダー -------------------*/
header { 
  position: fixed;
  z-index: 1000;
  background: white;
  width: 100%;
  height: 150px;
}
.header_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
.header_logo_box { 
  max-height: 50px; 
}
main { 
  padding-top: 150px;
}


/* ドロップダウンメニュー 開始 ----------------------*/
/* メインメニュー */
.ddmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2em;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 18px;
}

.ddmenu > li {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  padding: 1em 0;
}
.ddmenu > li:hover:not(.current) {
  color: var(--blue1);
}
.ddmenu > li:hover .ddmenu_sub {
  display: block;;
}

/* サブメニュー */
.ddmenu_sub {
  position: absolute;
  z-index: 999;
  display: none;
  top: 100%;
  left: 0;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.33;
  width: calc(16em + 3.7em);
  padding: 0.6em 1.2em;
}
.ddmenu_sub::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  background-color: var(--blue2);
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.ddmenu_sub li {
  width: 100%;
  padding: 0.5em 0;
}
.ddmenu_sub li a {
  position: relative;
  display: block;
  text-align: left;
  color: white;
  padding-left: 1em;
}
.ddmenu_sub li a:hover {
  opacity: 0.7;
}
.ddmenu_sub li a::before {
  position: absolute;
  content: url(../images/arrow_right_01.svg);
  top: 1px;
  left: 0;
}
/* ドロップダウンメニュー 終了 ----------------------*/

@media (max-width: 1370px) {
  .ddmenu {
    max-width: 19em;
  }
  .ddmenu > li {
    padding: 0.75em 0;
  }
  .ddmenu_sub {
    left: -3em;
  }
}
@media (max-width: 1070px) {
  main {
    padding-top: 125px;
  }
  header { 
    height: 125px;
  }
  .header_box {
    gap: 40px;
    padding: 0 40px;
  }
  .header_logo_box img {
    height: 40px;
  }
  .ddmenu {
    font-size: 15px;
  }
  .ddmenu_sub {
    font-size: 13px;
  }
}
@media (max-width: 880px) {
  main {
    padding-top: 95px;
  }
  header { 
    height: 95px;
  }
  .header_box {
    gap: 30px;
    padding: 0 30px;
  }
  .header_logo_box img {
    height: 33px;
  }
  .ddmenu {
    font-size: 13px;
  }
  .ddmenu_sub {
    font-size: 11px;
  }
}
@media print,screen and (max-width: 767px) {
  main { 
    padding-top: 60px;
  }
  header { 
    height: 60px;
  }
  .header_box {
    padding: 0 0 0 15px;
  }
  .header_logo_box img {
    height: 25px;
  }
}
@media print,screen and (max-width: 767px) and (max-height: 600px) {
  main { 
    padding-top: 50px;
  }
  header { 
    height: 50px;
  }
}

/* ハンバーガーメニュー 開始 ----------------------*/
body{
  overflow-x: hidden;
}
.hamburger {
  height: 60px;
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: var(--blue1);
  font-size: 8px;
  letter-spacing: 0.1em;
  padding-top: 16px;
}
.hamburger > div {
  position: relative;
  width: 24px;
  height: 16px;
  margin-bottom: 8px;
}
.hamburger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 1px;
  background-color: var(--blue1);
  transition: .3s;
}
.hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  opacity: 0;/* 透明にする */
}
.hamburger.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}

/* スライドメニュー */
.slide_menu {
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: calc(100% - 60px);
  padding: 3px 28px 28px;
  top: 60px;
  left: 0;
  transform: translateX(100%);
  transition: .4s;

  font-weight: 700;
  font-size: 16px;
  line-height: 1.5625;
}
.slide_menu > li {
  position: relative;
  display: block;
  border-top: 1px dotted var(--blue1);
}
.slide_menu > li:last-child {
  border-bottom: 1px dotted var(--blue1);
}
.slide_menu > li:has(:not(a)),
.slide_menu > li:not(:has(a)),
.slide_menu > li > a {
  display: block;
  padding: 12px 12px 12px 28px;
}
.slide_menu > li:not(.current):hover,
.slide_menu > li:not(.current) a:hover {
  color: var(--blue1);
}
.slide_menu > li::before {
  position: absolute;
  content: url(../images/arrow_right_03.svg);
  width: 8px;
  top: 12px;
  left: 12px;
}
/* 右から飛び出す */
.slide_menu.active{
  transform: translateX(0);
}
summary {
	display: block;
  cursor: pointer;
}
summary::-webkit-details-marker {
	display: none;
}
/* スライドサブメニュー */
.slide_menu ul {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.185185;
  width: fit-content;
  padding: 11px 0 8px;
}
.slide_menu ul li {
  position: relative;
  padding: 8px 8px 8px 13px;
}
.slide_menu ul li::before {
  position: absolute;
  content: "┗";
  color: var(--blue1);
  top: 7.5px;
  left: -6px;
}
/* ハンバーガーメニュー 終了 ----------------------*/



/* ここから各ページのスタイル ---------------------------*/

/* TOP ---------------------------*/
/* スライドショー */
.top_slide img {
  width: 100%;
}
/* ページ玉 */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 5px !important;
}
/* ページ玉（非表示ページ） */
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: #fff;
  opacity: .5;
}

/* アイコンリンク */
.icon_link {
  display: flex;
  justify-content: center;
  gap: 87.5px;
  margin: 50px 0 77px;
}
.icon_link a {
  background-image: linear-gradient(#4ddaa4e6, #0186d1 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  height: 150px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 21px 0 18px;
  transition: all .3s;
}
/* メンバーと出版・メディアのアイコン位置 */
.icon_link li:nth-last-child(-n+2) a {
  padding-top: 36px;
}
.icon_link a:hover {
  opacity: 0.7;
}
@media (max-width:1300px) {
  .icon_link {
    gap: 50px;
  }
}
@media (max-width:1100px) {
  .icon_link {
    scale: 0.8;
    margin: 25px 0 54px;
  }
}
@media (max-width:900px) {
  .icon_link {
    scale: 0.7;
    margin: 15px 0 40px;
  }
}
@media (max-width: 767px) {
  .top_slide img {
    aspect-ratio: 750 / 550;
  }
  /* ページ玉 */
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 4px !important;
  }
  /* 玉少し下げる */
  .swiper-horizontal>.swiper-pagination-bullets {
    bottom: var(--swiper-pagination-bottom, 3px);
  }

  .icon_link {
    scale: initial;
    gap: 1px;
    /* margin: 0px 0 53px; */
    margin: 0px 0 7.06666667vw;
  }
  .icon_link li {
    width: calc((100% - 4px) / 5);
  }
  .icon_link a {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    /* font-size: 18px; */
    font-size: 2.4vw;
    /* padding: 21px 0 18px; */
    padding: 2.8vw 0 2.4vw;
  }
  /* 4・5番目の画像の上下位置 */
  .icon_link li:nth-last-child(-n+2) a {
    /* padding-top: 36px; */
    padding-top: 4.8vw;
  }
  /* 3番目までの画像 */
  .icon_link li:nth-child(-n+3) img {
    /* height: 79px; */
    height: 10.53333333vw;
  }
  /* 4・5番目の画像 */
  .icon_link li:nth-last-child(-n+2) img {
    /* height: 55px; */
    height: 7.33333333vw;
  }
}



/* お知らせ --------------------------------*/
.news {
  padding: 0 5.33vw;
}
/* 見出し */
.headling_2 {
  color: var(--blue1);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 45px;
}
/* 英字 */
.headling_english {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 15px 0 40px;
}
/* お知らせ一覧 */
.news_list {
  max-width: 1000px;
  margin: 23px auto 30px;
}
/* 表の体裁 */
.news_list li {
  border-bottom: 1px dashed var(--gray03);
}
/* 文字まわり */
.news_list li:not(:has(a)),
.news_list a {
  display: flex;
  font-size: 16px;
  line-height: 1.5;
  padding: 0.78em 0;
}
/* 日時 */
.news_list span {
  color: var(--blue1);
  font-weight: 500;
  margin-right: 2em;
}
/* 矢印 */
.news_list a::after {
  content: url(../images/arrow_right_03.svg);
  display: inline-block;
  width: 0.625em;
  height: 1em;
  margin: 0.125em 0 0 0.5em;
}

/* 過去のニュース */
.news_past {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto 45px;
  transition: all .3s;
}
/* 青丸 */
.circle_blue_60px {
  background: var(--blue1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all .3s;
}
a:hover .circle_blue_60px {
  opacity: 0.7;
}
/* 右白矢印 */
.arrow_right {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 3px;
  margin: 8.5px 0;
  border-radius: 100px;
  background-color: #fff;
  transition: all .3s;
}
.arrow_right::before,
.arrow_right::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 15px;
  height: 3px;
  border-radius: 100px;
  background-color: #fff;
  transform-origin: calc(100% - 1.5px) 50%;
  transition: all .3s;
}
a:hover .arrow_right,
a:hover .arrow_right::before,
a:hover .arrow_right::after {
  opacity: 0.7;
}
.arrow_right::before {
  transform: rotate(45deg);
}
.arrow_right::after {
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  /* 見出し */
  .headling_2 {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-top: 36px;
  }
  /* 英字 */
  .headling_english {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 12px 0 32px;
  }
  /* お知らせ一覧 */
  .news_list {
    max-width: 1000px;
    margin: 19px auto 24px;
  }
  /* 文字まわり */
  .news_list li:not(:has(a)),
  .news_list a {
    font-size: 13px;
  }
  /* 過去のニュース */
  .news_past {
    gap: 16px;
    font-size: 15px;
    margin: 0 auto 36px;
  }
  /* 青丸 */
  .circle_blue_60px {
    scale: 0.8;
    margin: -6px;
  }
}
@media (max-width: 767px) {
  /* 見出し */
  .headling_2 {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-top: 36px;
  }
  /* 英字 */
  .headling_english {
    font-size: 13px;
    letter-spacing: 0.1em;
    margin: 9px 0;
  }
  /* お知らせ一覧 */
  .news_list {
    margin: 15px auto;
  }
  /* 過去のニュース */
  .news_past {
    gap: 14px;
    font-size: 14px;
    margin: 0 auto 25px;
  }
    /* 青丸 */
  .circle_blue_60px {
    scale: 0.7;
    margin: -9px;
  }
}



/* サービス --------------------------*/
.service {
  padding: 0 5.333333vw;
}
.service .headling_2 {
  padding-top: 30px;
}
.service_list {
  display: flex;
  justify-content: center;
  gap: 55px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin: 50px auto 75px;
}
.service_list li {
  position: relative;
  background: #FAFAFA;
  max-width: 330px;
  width: 100%;
  border-radius: 20px;
  border: 2px solid #d9d9d9;
  padding: 24px 0 25px;
  transition: all .3s;
}
.service_list li:hover {
  opacity: .5;
}
.service_list li::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 50%;
  translate: -50%;
  background: var(--blue1);
  width: 66.666%;
  height: 5px;
}
.service_list img {
  display: inline-block;
  margin-bottom: 25px;
}

@media (max-width: 1100px) {
  .service_list {
    scale: 0.9;
    margin: 25px -20px 54px;
  }
}
@media (max-width: 900px) {
  .service_list {
    scale: 0.8;
    margin: 15px -20px 40px;
  }
}
@media (max-width: 768px) {
  .service_list {
    scale: initial;
    margin: 20px 0 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 16px;
  }
  .service_list li {
    max-width: 270px;
    padding: 20px 0 20px;
  }
  .service_list img {
    margin-bottom: 20px;
  }
}

/* モーダルウィンドウ ---------*/
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgb(0 0 0 /.4);
  justify-content: center;
  align-items: center;
  padding: 3.3333vw;
}
.modal-box {
  transform: translateY(5px);
  background-color: white;
  max-width: 600px;
  width: 93.3333%;
  height: fit-content;
  border-radius: 50px;
  filter: drop-shadow(5px 5px 10px rgb(0 0 0 / .3));
  animation-name: modalopen;
  animation-duration: 1s;
}
.modal-box > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.modalClose { /* ✕マークの丸 */
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--blue1);
  width: 60px; 
  height: 60px;
  border-radius: 50%;
  transform: rotate(45deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all ease-in-out .3s;
}
div:hover.modalClose {
  transform: scale(0.8) rotate(45deg);
}

.modalClose > div:first-child,
.modalClose > div:last-child { /* ✕マーク */
  width: 37px; 
  height: 4px;
  border-radius: 2px;
  background-color: white;
  transition: all ease-in-out .3s;
}
.modalClose > div:last-child {
  margin-top: -3px;
  transform: rotate(90deg);
}

div:hover.modalClose > div:first-child,
div:hover.modalClose > div:last-child { /* ✕マーク hover */
  transform: scale(0.85);
}
div:hover.modalClose > div:last-child {
  transform: rotate(90deg);
}

.modal_content {
  padding: 50px 50px 50px;
  text-align: center;
}
.modal_title {
  font-weight: 700;
  font-size: 30px;
}
.modal_img {
  display: inline-block;
  height: 164px;
  margin: 46px 0 37px;
}
.modal_text {
  text-align: left;
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
}

@media (max-width:900px) {
  .modal-box {
    scale: 0.8;
  }
}
@media (max-width:767px) {
  .modal-box {
    scale: initial;
    inset: 0;
    margin: auto;
    transform: translateY(0px);
    max-width: 335px;
    border-radius: 30px;
  }
  
  .modalClose { /* ✕マークの丸 */
    top: 20px;
    right: 20px;
    width: 25px; 
    height: 25px;
  }
  
  .modalClose > div:first-child,
  .modalClose > div:last-child { /* ✕マーク */
    width: 15px; 
    height: 2px;
    border-radius: 1px;
  }
  .modalClose > div:last-child {
    margin-top: -2px;
  }
    
  .modal_content {
    padding: 50px 39px 33px;
  }
  .modal_title {
    font-size: 20px;
  }
  .modal_img {
    height: 132px;
    margin: 36px 0 28px;
  }
  .modal_text {
    font-size: 15px;
    line-height: 1.8;
  }  
}


/* 事業案内 --------------------------*/
section.business {
  background: url(../images/business_bg.jpg) center/cover;
  padding: 0.1px 5.33vw;
}
/* 事業案内一覧 */
.business_list {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 63px auto 90px;
}
/* 事業案内一覧 背景画像 */
.business_list li:nth-child(1) a {
  background: url(../images/business_link_bg01.jpg) center/cover;
}
.business_list li:nth-child(2) a {
  background: url(../images/business_link_bg02.jpg) center/cover;
}
.business_list li:nth-child(3) a {
  background: url(../images/business_link_bg03.jpg) center/cover;
}
.business_list li:nth-child(4) a {
  background: url(../images/business_link_bg04.jpg) center/cover;
}
/* 事業案内一覧 一コマ */
.business_list li a {
  position: relative;
  display: block;

  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;

  max-width: 530px;
  width: 530px;
  aspect-ratio: 530 / 200;
  border-radius: 10px;
  padding: 16px 0 0 25px;
  transition: all .3s;
}
.business_list li a:hover {
  opacity: 0.7;
}
/* 白丸 */
.circle_white_40px {
  position: absolute;
  right: 20px;
  bottom: 15px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}
/* 右青矢印 */
.arrow_right_blue {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  margin: 5.6px 0;
  border-radius: 9999px;
  background-color: #0186d1;
  transition: all .3s;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0186d1;
  transform-origin: calc(100% - 1px) 50%;
}
.arrow_right_blue::before,
.arrow_right_blue::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0186d1;
  transform-origin: calc(100% - 1px) 50%;
  transition: all .3s;
}
.arrow_right_blue::before {
  transform: rotate(45deg);
}
.arrow_right_blue::after {
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  /* 事業案内一覧 */
  .business_list {
    scale: 0.8;
    margin: -75px auto -10px;
  }
}
@media (max-width: 767px) {
  /* 事業案内一覧 */
  .business_list {
    scale: initial;
    /* margin: 32px auto 80px; */
    margin: 32px auto 10.6666666vw;
    /* gap: 30px; */
    gap: 4vw;
  }
  /* 事業案内一覧 背景画像 */
  .business_list li:nth-child(1) a {
    background: url(../images/business_link_bg01_sp.jpg) center/cover;
  }
  .business_list li:nth-child(2) a {
    background: url(../images/business_link_bg02_sp.jpg) center/cover;
  }
  .business_list li:nth-child(3) a {
    background: url(../images/business_link_bg03_sp.jpg) center/cover;
  }
  .business_list li:nth-child(4) a {
    background: url(../images/business_link_bg04_sp.jpg) center/cover;
  }
  /* 事業案内一覧 一コマ */
  .business_list li a {
    /* font-size: 30.34px; */
    font-size: 4.04vw;
    letter-spacing: 0.1em;

    max-width: initial;
    /* width: 670px; */
    width: 89.33333333333333vw;
    aspect-ratio: 690 / 150;
    /* border-radius: 13px; */
    border-radius: 1.73333333vw;
    /* padding: 26px 0 0 32px; */
    padding: 3.4666666vw 0 0 4.26666666vw;
  }
  /* 白丸 */
  .circle_white_40px {
    /* right: 30px; */
    right: 4vw;
    bottom: 50%;
    translate: 0 50%;
    /* width: 40px; */
    width: 5.3333333vw;
    /* height: 40px; */
    height: 5.3333333vw;
  }
    /* 右青矢印 */
  .arrow_right_blue {
    /* width: 20px; */
    width: 2.6666666vw;
    /* height: 2px; */
    height: 0.266666666vw;
    margin: 0.746666666vw 0;
  }
  .arrow::before,
  .arrow::after {
    /* top: calc(50% - 1px); */
    top: calc(50% - 0.133333333vw);
    /* width: 10px; */
    width: 1.3333333vw;
    /* height: 2px; */
    height: 0.266666666vw;
    transform-origin: calc(100% - 1px) 50%;
  }
  .arrow_right_blue::before,
  .arrow_right_blue::after {
    /* top: calc(50% - 1px); */
    top: calc(50% - 0.133333333vw);
    /* width: 10px; */
    width: 1.3333333vw;
    /* height: 2px; */
    height: 0.266666666vw;
    /* transform-origin: calc(100% - 1px) 50%; */
    transform-origin: calc(100% - 0.133333333vw) 50%;
  }

}

/* フッター --------------------------*/
footer {
  padding: 0 5.33333vw;
}
.footer_box {
  max-width: 1100px;
  margin: 30px auto;
}
.footer_logo {
  height: 30px;
}
/* 横並び */
.addrees_compliance {
  display: flex;
  gap: 64px;
  line-height: 24px;
  margin: 30px 0 55px;
}
/* 住所 */
.address {
  flex-shrink: 0;
  font-size: 14px;
  letter-spacing: 0.05em;
}
/* リンク */
.compliance_link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46em 2em;
  font-size: 13px;
}
/* 青丸分のアキ */
.compliance_link li {
  position: relative;
  padding-left: 1em;
}
/* 先頭の青丸 */
.compliance_link li::before {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  left: 0;
  background: var(--blue1);
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
}
.copyright {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
}

@media (max-width:1300px) {
  .compliance_link {
    max-width: 25em;
  }
}
@media (max-width:950px) {
  /* 横並び */
  .addrees_compliance {
    flex-direction: column;
    gap: 22px;
    line-height: 22px;
    margin: 30px 0 40px;
  }
  .compliance_link {
    max-width: 49em;
  }
}
@media (max-width: 768px) {
  .footer_logo {
    max-height: 30px;
    height: 100%;
  }
  /* 横並び */
  .addrees_compliance {
    flex-direction: column;
    gap: 22px;
    line-height: 22px;
    margin: 30px 0 40px;
  }
  /* 住所 */
  .address {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  /* リンク */
  .compliance_link {
    font-size: 12px;
    max-width: 25em;
  }
  .copyright {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
  }
}



/* トップへ戻る --------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: min(60px, 5.3vw);
  bottom: min(100px, 12vw);
  z-index: 100;
}
.pagetop .circle_blue_60px {
  rotate: -90deg;
}

@media (max-width: 767px) {
  /* .pagetop {
    bottom: 110px;
  } */
}



/* 中面 -------------------------------*/

/* 中面TOP ----------*/
.inside_top_img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 1920px) {
  .inside_top_img {
    height: 15.625vw;
  }
}
@media (max-width: 1280px) {
  .inside_top_img {
    height: 23.4375vw;
  }
}
@media (max-width: 767px) {
  .inside_top_img {
    height: initial;
  }
}
.inside_top_read {

}
.inside_content {
  padding: 55px 5.333333vw 100px;
}
/* お知らせページ */
.inside_content .news_list {
  margin-top: 0px;
  margin-bottom: 0px;
}
.inside_content_wrap_w1100px {
  max-width: 1100px;
  margin: 0 auto;
}
/* 金融注意書き */
.business_list_text_read {
  text-align: center;
  color: var(--blue1);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  margin-top: -45px;
  margin-bottom: 60px;
}

/* 表横並び */
.business_list_article {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin: 0 auto;
}
/* 2列 */
@media (max-width: 1250px) {
  .business_list_article {
    max-width: 715px;
  }
}
/* 1列 */
@media (max-width: 820px) {
  .business_list_article {
    max-width: 330px;
  }
}
a.business_list_article_link {
  display: block;
  max-width: 330px;
}
/* ホバー時 */
a.business_list_article_link:hover {
  color: initial;
}
a.business_list_article_link:hover p {
  opacity: 0.7;
}
a.business_list_article_link:hover .circle_blue_60px {
  opacity: initial;
}
  /* 研修画像 */
.business_list_article_img {
  aspect-ratio: 330 / 220;
  border-radius: 10px;
  overflow: hidden;
}
.business_list_article_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.business_list_article_link:hover img {
  scale: 1.15;
}
/* 研修名 */
.business_list_article_title {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  margin: 1em 0 0.8em;
  padding-right: 1em;
}
/* 青丸白矢印 */
.business_list_article_title .circle_blue_60px {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -23.3333333%;
  scale: 0.4666666;
  margin: -16px;
}
/* 対象 */
.business_list_article_target {
  font-size: 18px;
  line-height: 1.555555;
  padding-left: 4em;
  text-indent: -4em;
}
@media (max-width: 1000px) {
  .business_list_text_read {
    text-align: left;
  }
}
@media (max-width: 767px) {
  /* タイトルリードSP用 */
  .inside_top_read {
    background: #088ecb;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 5.333333vw;
  }
  .inside_content {
    padding: 30px 5.333333vw 50px;
  }
  .business_list_text_read {
    font-size: 15px;
    margin-top: -20px;
    margin-bottom: 30px;
  }
  .business_list_article {
    gap: 25px;
  }
  .business_list_article_img {
    aspect-ratio: 330 / 165;
  }
  .business_list_article_title {
    font-size: 20px;
    margin: 0.6em 0 0.45em;
  }
  /* 対象 */
  .business_list_article_target {
    font-size: 14px;
  }
}


/* 事業案内の内容紹介 ------------------*/
.case_management_bg {
  background: #EBF3F3;
  margin-bottom: 10px;
}
.case_newgeneration_bg {
  background: #EBF3F3;
  margin-bottom: 10px;
}
.case_diversity_bg {
  background: #EBF3F3;
  margin-bottom: 10px;
}
.case_finance_bg {
  background: #EBF3F3;
  margin-bottom: 10px;
}
.case_title_box {
  line-height: 1.3;
  border-left: 10px solid var(--blue1);
  padding-left: 40px;
  margin-bottom: 40px;
}
.case_title_box + .case_text_group {
  margin-bottom: 75px;
}
/* タイトル上段文字 */
.case_title_text_s {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 1em;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.case_title_text_s li:not(:first-child) {
  position: relative;
  padding-left: 1.625em;
}
/* 右矢印 */
.case_title_text_s li::before {
  position: absolute;
  content: url(../images/arrow_right_02.svg);
  width: 0.625em;
  height: 1em;
  top: 0.13em;
  left: 0.05em;
}
/* タイトル中段文字 */
.case_title_text_l {
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 0.05em;
  margin: 0.8em 0;
}
/* タイトル下段文字 */
.case_title_text_m {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 1em;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.case_title_text_m li:not(:first-child) {
  position: relative;
  padding-left: 2em;
}
/* ／ */
.case_title_text_m li::before {
  position: absolute;
  content: "／";
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
}

.case_img_top {
  margin-bottom: 55px;
}

.case_text_group {
  display: flex;
  flex-direction: column;
  gap: 75px;
  max-width: 800px;
  margin: 0 auto 40px;
}
/* 青見出し */
.case_text_heading {
  color: var(--blue1);
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin-bottom: 0.9666666em;
}
.case_box_white {
  position: relative;
  background: #fff;
  padding: 0.1px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(1, 134, 209, 0.25) ;
}
/* 青罫線 */
.case_box_white::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  background: var(--blue1);
  top: 0;
  left: calc(50% - 75px);
}
/* 文章（句読点あり） */
.case_box_text {
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  text-align: center;

  width: fit-content;
  margin: calc(65px - 0.5em) auto calc(60px - 0.5em);
  padding: 0 2.6em;
}
/* 箇条書き */
.case_box_text_list {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;

  width: fit-content;
  margin: calc(65px - 0.25em) auto calc(60px - 0.25em);
  padding: 0 3.7em;
  display: flex;
  flex-direction: column;
  gap: 0.8888888em;
}
.lh_180 {
  line-height: 1.8;
}
.case_box_text_list.lh_180 {
  gap: 1.2em;
}
.case_box_text_list li {
  position: relative;
  padding-left: 1em;
}
.case_box_text_list li::before {
  position: absolute;
  content: "・";
  left: 0;
}
/* 補足 */
.case_box_text_list .aside {
  font-weight: 400;
  font-size: 15px;
}
.case_box_text_list .aside::before,
.case_box_text_list .content_none::before {
  content: "";
}
.case_box_text_list .content_none {
  line-height: 1.8;
  padding-left: 0;
}

@media (max-width: 767px) {
  .case_management_bg {
    margin-bottom: 0;
  }
  .case_title_box {
    line-height: 1.2;
    border-left: 7px solid var(--blue1);
    padding-left: 25px;
    margin-bottom: 30px;
  }
  /* タイトル上段文字 */
  .case_title_text_s {
    font-size: 15px;
  }
  /* タイトル中段文字 */
  .case_title_text_l {
    font-size: 32px;
  }
  /* タイトル下段文字 */
  .case_title_text_m {
    font-size: 16px;
  }

  .case_img_top {
    margin-bottom: 35px;
  }

  .case_text_group {
    gap: 30px;
    margin: 0 auto;
  }
  /* 青見出し */
  .case_text_heading {
    font-size: 22px;
  }
  .case_box_white {
    box-shadow: 0 0 20px rgba(1, 134, 209, 0.25) ;
  }
  /* 青罫線 */
  .case_box_white::before {
    width: 120px;
    height: 4px;
    left: calc(50% - 60px);
  }
  /* 文章（句読点あり） */
  .case_box_text {
    text-align: left;
    font-size: 18px;
    margin: calc(34px - 0.5em) auto calc(30px - 0.5em);
    padding: 0 1.5em;
  }
  /* 箇条書き */
  .case_box_text_list {
    font-size: 15px;
    margin: calc(37px - 0.25em) auto calc(33px - 0.25em);
    padding: 0 1.7em;
  }
}



/* 会社概要 ------------------*/
/* 挨拶本文 */
.message_txt_box {
  text-align: justify;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 35px 50px 75px;
}
/* 社名 */
.message_company_name {
  text-align: right;
  /* color: var(--blue1); */
  margin-top: 35px;
}
/* 社長名 */
.message_president_name {
  text-align: right;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 0.5em;
}

/* 会社概要表 */
.company_overview_list {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2.2222222;
  border-top: 1px solid var(--gray03);
  margin: 0 50px 50px;
}
/* 横並び */
.company_overview_list > div {
  display: flex;
  border-bottom: 1px solid var(--gray03);
  padding: 0.5277777em 0;
}
/* 項目名 */
.company_overview_list dt {
  flex-shrink: 0;
  color: var(--blue1);
  width: 200px;
}
/* あおぞら銀行ロゴ部分 */
.banner_box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 50px;
}
.banner {
  flex-shrink: 0;
  background: url(../../corporate/images/ptrn_group.png) repeat 0 0;
  padding: 10px;
}
.banner h2 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-left: solid 5px #B5DEF5;
  margin: 0 0 10px 5px ;
  padding: 5px 0 5px 5px;
}
.banner_text {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  /* 挨拶本文 */
  .message_txt_box {
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 35px 0 55px;
  }
  /* 社名 */
  .message_company_name {
    font-size: 14px;
    margin-top: 28px;
  }
  /* 社長名 */
  .message_president_name {
    font-size: 17px;
    letter-spacing: 0.1em;
    margin-top: 0.3em;
  }

  /* 会社概要表 */
  .company_overview_list {
    font-size: 15px;
    letter-spacing: 0.1em;
    margin: 30px 0 20px;
  }
  /* 項目名 */
  .company_overview_list dt {
    width: 6.8em;
  }
  /* あおぞら銀行ロゴ部分 */
  .banner_box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 0 0;
  }
  .banner_text {
    max-width: 225px;
    font-size: 13px;
  }
}



/* 研修実績 ------------------*/
/* 研修実績表 */
.achv_table {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  max-width: 1000px;
  margin: 30px auto 0;
}
/* 横並び */
.achv_table li {
  display: grid;
  grid-template-columns: minmax(6.5em, 13em) minmax(4em, 7em) minmax(8em, 1fr) 5em 4em;
  gap: 2em;
  border-bottom: 1px solid var(--gray03);
  padding: 0.77em 1em;
}
/* 項目名 */
.achv_table li:first-child {
  position: sticky;
  top: 150px;
  background: #fff;
  border-top: 1px solid var(--gray03);
  color: var(--blue1);
  font-weight: 500;
}
/* 表の文字の並び方 */
.achv_table li div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* 表の3列目 */
.achv_table li div:nth-of-type(3) {
  padding-right: 1em;
}
/* 左揃え */
.achv_table li div:nth-of-type(1),
.achv_table li div:nth-of-type(3) {
  align-items: flex-start;
  text-align: left;
}
.achv_table li div:nth-of-type(3) {
  padding-left: 1em;
}

@media (max-width: 1070px) {
  .achv_table li:first-child { top: 125px; }
}
@media (max-width: 1000px) {
  .achv_table li {
    grid-template-columns: 8em 4em minmax(8em, 1fr) 5em 4em;
  }
}
@media (max-width: 880px) {
  .achv_table li:first-child { top: 95px; }
}
@media (max-width: 820px) {
  .achv_table li div:nth-of-type(3) {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .achv_table {
    max-width: 19.4em;
    border-top: 1px solid var(--gray03);
    font-size: 15px;
    line-height: 1.4;
    margin-top: 0;
  }
  .achv_table li {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    padding: 0.7em;
  }
  .achv_table li:first-child {
    display: none;
  }
  .achv_table li div {
    position: relative;
    display: block;
    text-align: left;
    padding-left: 5em !important;
  }
  .achv_table li div::before {
    position: absolute;
    left: 0;
    width: 4em;
    color: var(--blue1);
    text-align-last: justify;
    font-weight: 500;
  }
  .achv_table li div:nth-child(1):before {
    content: "実施年月";
  }
  .achv_table li div:nth-child(2):before {
    content: "業態";
  }
  .achv_table li div:nth-child(3):before {
    content: "テーマ";
  }
  .achv_table li div:nth-child(4):before {
    content: "実施形式";
  }
  .achv_table li div:nth-child(5):before {
    content: "参加人数";
  }
  .achv_table li div:last-child {
    text-align: left;
  }
  .achv_table br.nopc_w1000 {
    display: none;
  }

}
@media print,screen and (max-width: 767px) and (max-height: 600px) {
  .achv_table li:first-child { top: 50px; }
}



/* メンバー ------------------*/
.member_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 35px;
}
/* 顔写真と文章の並び */
.member_list li {
  background: var(--gray_f7);
  display: flex;
}
.member_list_img {
  background: var(--gray_e4);
  width: 300px;
  height: fit-content;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
div:has(.member_list_text_box_name) {
  width: 100%;
}
.member_list_text_box_name {
  position: relative;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;

  width: 100%;
  padding: 32px 40px 32px 50px;
  border-bottom: 2px solid var(--blue1);
}
.member_list_furigana {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 1.1em;
}
.member_list_english {
  position: absolute;
  color: var(--blue1);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  top: 45px;
  right: 58px;
}
.member_list_text_box_body {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 22px 40px 30px 50px;
}
.member_list_text_box_body p {
  padding-left: 1em;
  text-indent: -1.05em;
}
@media (max-width: 1100px) {
  .member_list_english {
    position: static;
    display: block;
    margin-top: 0.7em;
    margin-bottom: 1.3em;
  }
  .member_list_furigana {
    margin-top: 0.7em;
  }
}
@media (max-width: 900px) {
  .member_list_furigana {
    display: block;
  }
}
@media (max-width: 850px) {
  /* 顔写真と文章の並び */
  .member_list li {
    flex-direction: column;
  }
  .member_list_img {
    max-width: 200px;
    margin: 0 auto;
    flex-shrink: 1;
    width: fit-content;
  }
  .member_list_text_box_name {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .member_list {
    gap: 20px;
    margin-top: 0;
  }
  .member_list_text_box_name {
    font-size: 24px;
    letter-spacing: 0.05em;
    padding: 22px 20px;
  }
  .member_list_furigana {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .member_list_english {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .member_list_text_box_body {
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 18px 20px 22px 35px;
  }
}



/* 出版・メディア ------------------*/
/* メディア本文 */
.media_text_body {
  font-size: 18px;
  line-height: 2;
}
.media_list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 63px;
}
@media (max-width: 767px) {
  .media_text_body {
    font-size: 15px;
  }
  .media_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }
  .media_list img {
    max-width: 200px;
  }
}



/* 必ずお読みいただきたいこと ------------------*/
.compliance {
  font-size: 16px;
  line-height: 1.8;
}
.compliance h2 {
  color: var(--blue1);
  font-size: 30px;
  line-height: 1.3;
  margin: 2em 0 0.5em;
}
.compliance h3 {
  color: var(--blue1);
  font-size: 23px;
  line-height: 1.3;
  text-indent: -1.13em;
  padding-left: 1.13em;
  margin: 1.75em 0 0.5em;
}
.compliance h4 {
  line-height: 1.3;
  font-size: 17px;
  margin: 1.25em 0 0.5em;
}
@media (max-width: 767px) {
  .compliance {
    font-size: 14px;
  }
  .compliance h2 {
    font-size: 21px;
  }
  .compliance h3 {
    font-size: 18px;
  }
  .compliance h4 {
    font-size: 15px;
  }
}

/* 数字なしリスト */
.compliance ul {
  margin-top: 1em;
}
.compliance ul li {
  position: relative;
  line-height: 1.5;
  padding-left: 2em;
  margin: 0.75em 0;
}
/* 青玉 */
.compliance ul li::before {
  position: absolute;
  content: "";
  top: 0.55em;
  left: 1.1em;
  background: var(--blue1);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
}

/* 数字付きリスト */
.compliance ol {
  margin-top: 1em;
  padding-left: 1.8em;
}
.compliance ol:first-child {
  margin-top: 0;
}
.compliance ol li {
  line-height: 1.5;
  margin: 0.75em 0;
  padding-left: 0.2em;
}
a.link_text {
  color: var(--blue1);
  text-decoration: underline;
}
a.link_text:hover {
  opacity: 0.7;
}

/* 補足 */
.compliance aside,
.aside,
.border_top_gray03 {
  margin-top: 1em;
  border-top: 1px dashed var(--gray03);
  padding-top: 1em;
}
.compliance aside small {
  display: block;
}
.compliance dl {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}
.compliance dl + dl {
  margin-top: 0;
}
.compliance dt {
  font-weight: 700;
  flex-shrink: 0;
}

/* 本サイトご利用にあたり ----------*/
.about_table {
  margin: 1.5em;
}
.about_table tr {
  border-top: 1px solid var(--gray03);
}
.about_table tr:last-child {
  border-bottom: 1px solid var(--gray03);
}
.about_table th {
  background: var(--gray_e);
  width: 17em;
}
.about_table th,
.about_table td {
  padding: 1em 2em;
}

@media (max-width: 767px) {
  .about_table {
    margin: 2em;
  }
  .about_table th,
  .about_table td {
    display: block;
    padding: 0.75em 2em;
    width: initial;
  }
}


/* 外部リンク中継ページ ----------*/
.lh_150 {
  line-height: 1.5;
}
.message_txt_box:has(.window_close) {
  text-align: center;
}
/* 閉じる・移動するボタン */
.window_close,
.move {
  font-weight: 700;
  font-size: 24px;
  line-height: 4;
  padding: 0 2em;
}
@media (max-width: 767px) {
  .message_txt_box:has(.window_close) {
   padding-bottom: 0;
  }
  .window_close,
  .move {
    display: block;
    font-size: 18px;
    line-height: 3;
  }
  .window_close {
    margin-top: 1.5em;
  }
}