@charset "utf-8";

/** ***************************************************************************
 * リセット
 * ************************************************************************* */

* { text-shadow:none; outline:none; box-sizing:border-box; }

body { max-width:100%; margin:0; padding:0; -webkit-text-size-adjust:none; }

body * { max-width:100%; }

article, aside, footer, header, main, menu, nav, section { margin:0; padding:0; display:block; }

h1, h2, h3, h4, h5, h6 { margin:0; padding:0; font:inherit; }

a { -webkit-tap-highlight-color:rgba(0, 0, 0, 0); }

strong, em, small, address { margin:0; padding:0; font:inherit; }

pre { word-break:break-all; white-space:pre-wrap; }

:where(ul[class]), :where(ul[class]) li { margin:0; padding:0; list-style:none;}

:where(ol[class]), :where(ol[class]) li { margin:0; padding:0; list-style:none; }

:where(dl[class]), :where(dl[class]) dt, :where(dl[class]) dd { margin:0; padding:0; }

img { height:auto; border:none; vertical-align:bottom; }

:where(a[href]) img { transition:filter 0.3s ease-in-out 0.0s; }

:where(a[href]):hover img { filter:brightness(105%) contrast(110%); }

p { margin:0; padding:0; }

p + * { margin-top:1.125rem; }

* + p { margin-top:1.125rem; }

@media screen and (min-width:768px) {

  p + * { margin-top:1.5rem; }

  * + p { margin-top:1.5rem; }

}

/** ***************************************************************************
 * 定数
 * ************************************************************************* */

:root {

  /**
   * 配色
   */

  /* コーポレートカラー */
  --color-corporate-1: 0, 61, 123;

  /* アクセントカラー */
  --color-accent-1: 219, 111, 16;

  /* リンク色 */
  --color-link-1: 0, 61, 123;

}

/** ***************************************************************************
 * タイトル
 * ************************************************************************* */

[class*="title-style"] + * {
  margin-top: 0;
}

/**
 * 1
 */

[class*="title-style-1"] {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 1.65em;/*1.75em*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

[class*="title-style-1"]::before {
  content: '';
  width: 1em;
  height: 1em;
  margin-right: 0.375em;
  border-radius: 9999px;
  background-color: rgb(var(--color-accent-1));
  flex-shrink: 0;
}

@media screen and (min-width:768px) {

  [class*="title-style-1"] {
    width: auto;
    margin-bottom: 10px;
    font-size: 1.1em;/*0.975em  0.875em*/
    font-weight: 500;
  }

}

/** ***************************************************************************
 * テーブル
 * ************************************************************************* */

/**
 * 1
 */

.table-style-1 {
  border-collapse: collapse;
}

.table-style-1 > tbody > tr > th {
  padding-left: 1em;
  padding-right: 1em;
  font-weight: normal;
  border-top: 1px solid #e7e1dc;
  border-bottom: 1px solid #e7e1dc;
}

.table-style-1 > tbody > tr > td {
  padding-left: 1em;
  padding-right: 1em;
  border-top: 1px solid #e7e1dc;
  border-bottom: 1px solid #e7e1dc;
}


/** ***************************************************************************
 * 表示／非表示
 * ************************************************************************* */

@media screen and (max-width:767px) {

  [pc] {
    display: none !important;
  }

}

@media screen and (min-width:768px) {

  [sp] {
    display: none !important;
  }

}
