/* Minification failed. Returning unminified contents.
(333,13): run-time error CSS1033: Expected closing bracket, found '~'
(333,15): run-time error CSS1031: Expected selector, found '='
(333,15): run-time error CSS1025: Expected comma or open brace, found '='
(337,13): run-time error CSS1033: Expected closing bracket, found '~'
(337,15): run-time error CSS1031: Expected selector, found '='
(337,15): run-time error CSS1025: Expected comma or open brace, found '='
 */
/*!
 * ress.css • v1.1.1
 * MIT License
 * github.com/filipelinhares/ress
 */

/* # =================================================================
   # Global selectors
   # ================================================================= */

html {
    box-sizing: border-box;
    overflow-y: scroll;
    /* All browsers without overlaying scrollbars */
    -webkit-text-size-adjust: 100%;
    /* iOS 8+ */
}

*,
::before,
::after {
    box-sizing: inherit;
}

::before,
::after {
    text-decoration: inherit;
    /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
    vertical-align: inherit;
}

/* Remove margin, padding of all elements and set background-no-repeat as default */
* {
    background-repeat: no-repeat;
    /* Set `background-repeat: no-repeat` to all elements */
    padding: 0;
    /* Reset `padding` and `margin` of all elements */
    margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */

/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
    display: none;
    height: 0;
}

hr {
    overflow: visible;
    /* Show the overflow in Edge and IE */
}

:focus {
    outline: none;
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

summary {
    display: list-item;
    /* Add the correct display in all browsers */
}

small {
    font-size: 100%;
    /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
    display: none;
    /* Add the correct display in IE */
}

abbr[title] {
    border-bottom: 1px dotted;
    /* Add a bordered underline effect in all browsers */
    text-decoration: none;
    /* Remove text decoration in Firefox 40+ */
}

a {
    background-color: transparent;
    /* Remove the gray background on active links in IE 10 */
    -webkit-text-decoration-skip: objects;
    /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
    outline-width: 0;
    /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    /* Specify the font family of code elements */
}

b,
strong {
    font-weight: bolder;
    /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
    font-style: italic;
    /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
    background-color: #ff0;
    color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"] [role="button"] {
    cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
    cursor: default;
}

[type="number"] {
    width: auto;
    /* Firefox 36+ */
}

[type="search"] {
    -webkit-appearance: textfield;
    /* Safari 8+ */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    /* Safari 8 */
}

textarea {
    overflow: auto;
    /* Internet Explorer 11+ */
    resize: vertical;
    /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    /* Specify font inheritance of form elements */
}

optgroup {
    font-weight: bold;
    /* Restore the font weight unset by the previous rule. */
}

button {
    overflow: visible;
    /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
/* Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4 */
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* Correct the inability to style clickable types in iOS */
}

button,
select {
    text-transform: none;
    /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
    border: none;
    color: inherit;
}

/* Style select like a standard input */
select {
    height: 1.8em;
}

select::-ms-expand {
    display: none;
    /* Internet Explorer 11+ */
}

select::-ms-value {
    color: currentColor;
    /* Internet Explorer 11+ */
}

legend {
    border: 0;
    /* Correct `color` not being inherited in IE 8/9/10/11 */
    color: inherit;
    /* Correct the color inheritance from `fieldset` elements in IE */
    display: table;
    /* Correct the text wrapping in Edge and IE */
    max-width: 100%;
    /* Correct the text wrapping in Edge and IE */
    white-space: normal;
    /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* Correct the inability to style clickable types in iOS and Safari */
    font: inherit;
    /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
    -webkit-appearance: textfield;
    /* Correct the odd appearance in Chrome and Safari */
    outline-offset: -2px;
    /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */

img {
    border-style: none;
    /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
    vertical-align: baseline;
}

svg:not(:root) {
    overflow: hidden;
    /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
    display: inline-block;
    /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */

/* Hide content from screens but not screenreaders */
@media screen {
    [hidden ~ ="screen"] {
        display: inherit;
    }

    [hidden ~ ="screen"]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important;
    }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
    cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
    cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
    cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */

/* Specify text selection background color and omit drop shadow */

::-moz-selection {
    background-color: #b3d4fc;
    /* Required when declaring ::selection */
    color: #000;
    text-shadow: none;
}

::selection {
    background-color: #b3d4fc;
    /* Required when declaring ::selection */
    color: #000;
    text-shadow: none;
}

@charset "UTF-8";
/*　基本色　*/
/*　マスターワイズ　*/
/*　clearする　*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* ボディ設定 */
html {
  font-size: 62.5%;
  line-height: 1;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  /*　デバイスフォント最適化　*/
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 1.5rem;
}

* {
  /*　リンク設定　*/
  /* 電話番号 */
  /* 選択色 */
}
* a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
* a:hover {
  text-decoration: none;
}
* a[href^=tel] {
  pointer-events: none;
}
*::-moz-selection {
  background-color: #111;
  color: #fff;
}
*::selection {
  background-color: #111;
  color: #fff;
}

:focus {
    outline: revert;
}

.object_sp {
  display: none;
}

/* ヘッダー */
header {
  /* ロゴ */
}
header #ttl_site,
header #ttl_site_en {
  width: calc(980px / 3);
  height: calc(96px / 3);
  text-indent: -9999px;
  margin: 0 auto;
}
header #ttl_site span,
header #ttl_site_en span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/ttl_site.svg);
  background-size: contain;
  background-position: center center;
}
header #ttl_site_en span {
  background-image: url(../img/ttl_site_en.svg);
}
header #inner_header {
  position: relative;
  width: 1100px;
  margin: 20px auto;
}

/* グローバルナビゲーション */
#nav_global {
  width: 100%;
  font-size: 1.6rem;
  border-top: 1px solid #dadada;
  /* SP用ナブコン */
}
#nav_global dt {
  display: none;
}
#nav_global ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 1100px;
  list-style: none;
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  margin: 0 auto;
}
#nav_global li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: calc(100% / 4);
}
#nav_global .is_current a {
  color: #fff;
  background-color: #111;
}
#nav_global a {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  font-family: "Noto Sans Medium", sans-serif;
  padding: 24px 0;
}
#nav_global a:before {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: -1;
  opacity: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #111;
}
#nav_global a:hover {
  color: #fff;
  opacity: 1;
}
#nav_global a:hover:before {
  top: 0;
  opacity: 1;
}

/* アサイド */
aside {
  width: auto;
  text-align: center;
  color: #fff;
  background-color: #a4b7c5;
  padding: 80px 0;
}
aside h2 {
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  font-size: 2.2rem;
  margin: 0 0 28px;
}
aside #list_address {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: 840px;
  font-family: "Roboto", sans-serif;
  font-size: 3.8rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  list-style: none;
  padding: 20px 0;
  margin: 0 auto 30px;
}
aside #list_address li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 0.5em;
}
aside #list_address span {
  display: block;
  width: auto;
  font-size: 2.4rem;
  margin: 0 0.5em 0 0;
}
aside .btn_cmn_02 {
  border: 1px solid #fff;
}
aside .btn_cmn_02:hover {
  border-color: #111;
}

/* フッター  */
footer {
  width: auto;
  min-width: 1100px;
  font-family: YakuHanJP, "Noto Sans Medium", sans-serif;
  text-align: center;
  background-color: #f2f2f2;
  padding: 60px 0;
  margin: 0 auto;
}
footer nav {
  width: 100%;
  margin: 0 0 25px;
}
footer nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: auto;
  list-style: none;
}
footer nav li {
  margin: 0 2em;
}
footer nav a:hover {
  text-decoration: underline;
}
footer #txt_copyright {
  width: 100%;
  font-size: 1.3rem;
  font-family: sans-serif;
}

/*　レスポンシブ対応（ブレークポイント 414px） */
@media screen and (max-width: 414px) {
  .object_sp {
    display: block;
    width: auto;
  }

  .object_pc {
    display: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  body {
    font-size: 1.4rem;
  }

  * {
    /* 電話番号 */
  }
  * a[href^=tel] {
    pointer-events: auto;
  }

  /* ヘッダー */
  header {
    height: 40px;
    background-color: #fff;
    padding: 0px 4%;
    margin: 0;
    /* ロゴ */
  }
  header #ttl_site,
header #ttl_site_en {
    width: calc(1494px / 6);
    height: calc(140px / 6);
    margin: 15px 0 0;
  }
  header #ttl_site_en {
    width: calc(1692px / 6);
    height: calc(140px / 6);
  }
  header #inner_header {
    display: block;
    width: 100%;
    margin: 0;
  }
  header #list_header {
    position: absolute;
    top: 2px;
    right: 45px;
    font-size: 1.1rem;
  }
  header #list_header a {
    border: 1px solid #111;
    padding: 5px 10px;
  }
  header #list_header a:before {
    content: none;
  }
  header #list_header a:hover {
    color: #fff;
    background-color: #111;
    border-color: #111;
  }

  /* グローバルナビゲーション */
  #nav_global {
    width: 100%;
    border: none;
    /* SP用ナブコン */
  }
  #nav_global dt {
    position: fixed;
    z-index: 1002;
    top: 12px;
    right: 4%;
    display: block;
    width: auto;
    font-size: 3rem;
  }
  #nav_global dt.is_open {
    opacity: 0.2;
  }
  #nav_global dd {
    position: fixed;
    z-index: 1001;
    top: 55px;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #fff;
  }
  #nav_global ul {
    display: block;
    width: 100%;
    margin: 0;
  }
  #nav_global li {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  #nav_global li:before, #nav_global li:last-child:after {
    content: none;
  }
  #nav_global .is_current a {
    color: inherit;
    background-color: transparent;
  }
  #nav_global a {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    overflow: hidden;
    font-family: "Noto Sans Medium", sans-serif;
    padding: 24px 4%;
  }
  #nav_global a:before {
    content: none;
  }
  #nav_global a:after {
    font-family: FontAwesome;
    content: "";
    float: right;
  }
  #nav_global a:hover {
    color: inherit;
    opacity: 1;
  }

  /* アサイド */
  aside {
    padding: 30px 0;
  }
  aside h2 {
    font-size: 1.3rem;
    margin: 0 0 28px;
  }
  aside #list_address {
    display: block;
    width: 90%;
    font-size: 2.8rem;
    padding: 8px 0;
    margin: 0 auto 30px;
  }
  aside #list_address li {
    -webkit-box-pack: center;
            justify-content: center;
    margin: 12px 0;
  }
  aside #list_address span {
    display: block;
    width: auto;
    font-size: 2rem;
    margin: 0 0.5em 0 0;
  }
  aside .btn_cmn_02 {
    width: 60%;
    margin: 0 auto;
  }

  /* フッター  */
  footer {
    width: auto;
    min-width: 100%;
    padding: 20px 0;
    margin: 0;
  }
  footer nav {
    display: none;
  }
}
@charset "UTF-8";
/*　基本色　*/
/*　マスターワイズ　*/
/* グローバルナビゲーション */
#nav_global li:first-child.is_current a {
  color: #111;
  background-color: #fff;
}

/*　パンくずリスト　＿＿＿＿＿　*/
#list_bread {
  display: -webkit-box;
  display: flex;
  width: 1100px;
  list-style: none;
  font-size: 1.4rem;
  margin: 0 auto 40px;
}
#list_bread li:not(:last-child) {
  width: auto;
}
#list_bread li:not(:last-child):after {
  font-family: FontAwesome;
  content: "";
  margin: 0 10px;
}
#list_bread a {
  color: inherit;
}

/* ページタイトル */
#ttl_page {
  width: 100%;
  text-align: center;
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  font-size: 2.8rem;
  background-color: #f2f2f2;
  padding: 70px 0;
  margin: 0 0 10px;
}

#wrapper {
  width: 880px;
  line-height: 2;
  margin: 0 auto 60px;
}

main p,
main ol,
main ul,
main table,
main dl {
  margin: 1.5em 0 1em;
}
main table {
  margin: 1.5em 0;
}
main figure {
  margin: 0 0 1em;
}
main a {
  text-decoration: underline;
  color: #111;
}
main .btn_english {
  width: auto;
  text-align: right;
  margin: 0 auto;
}
main .btn_english a {
  display: inline-block;
  width: auto;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #111;
  border-radius: 15px;
  padding: 5px 20px;
}
main .btn_english a:before {
  font-family: FontAwesome;
  content: "";
  margin: 0 8px 0 0;
}
main .btn_english a:hover {
  color: #fff;
  background-color: #111;
  border-color: #111;
}
main .table_history {
  width: 100%;
}
main .table_history th,
main .table_history td {
  vertical-align: top;
  text-align: left;
  padding: 10px 20px;
}
main .table_history th {
  white-space: nowrap;
  border-right: 2px solid #ddd;
  padding-left: 0;
}
main .list_policy {
  font-family: YakuHanJP, "Noto Sans Medium", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0 22px;
}
main .list_policy li {
  margin: 0 0 10px;
}
main .txt_policy {
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  font-size: 2rem;
}
main .list_flex_2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
  list-style: none;
}
main .list_flex_2 li {
  width: 48%;
  margin: 0 0 20px;
}
main .list_flex_2 img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
main #crmWebToEntityForm {
  border: 1px solid #ddd;
}
main #crmWebToEntityForm input,
main #crmWebToEntityForm textarea {
  width: 100%;
  border-radius: 3px;
  padding: 2px 5px;
}
main #crmWebToEntityForm textarea {
  height: 15em;
}

/*　レスポンシブ対応（ブレークポイント 414px） */
@media screen and (max-width: 414px) {
  img {
    max-width: 100%;
    height: auto;
  }

  #list_bread {
    display: none;
  }

  /* ページタイトル */
  #ttl_page {
    font-size: 2rem;
    text-align: left;
    line-height: 1.6;
    padding: 36px 4%;
    margin: 0 0 30px;
  }

  #wrapper {
    width: 94%;
  }

  main .btn_english {
    position: fixed;
    z-index: 1000;
    bottom: 4%;
    right: 4%;
    width: 94%;
    text-align: right;
    margin: 0 auto;
  }
  main .btn_english a {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
  }
}
@charset "UTF-8";
/*　基本色　*/
/*　マスターワイズ　*/
/* 読み上げ文字 */
.vi {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

#mihon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  line-height: 1;
  width: 1279px;
  margin: auto;
  display: block;
}
#mihon img {
  width: 100%;
  height: auto;
  opacity: 0.5;
}

/* 一括初期化 ＿＿ */
/* フォーム部品 */
form {
  /* ナンバーのスピンボタン消去 */
}
form input[type=text],
form input[type=number],
form input[type=tel],
form input[type=email],
form textarea {
  border: 1px solid #ccc;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 1.6rem;
  line-height: 1.6rem;
  border-radius: 4px;
  padding: 6px;
}
form input[type=text]:focus,
form input[type=number]:focus,
form input[type=tel]:focus,
form input[type=email]:focus,
form textarea:focus {
  background-color: #f8f8f8;
}
form input[type=number]::-webkit-outer-spin-button,
form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form input[type=number] {
  -moz-appearance: textfield;
}
form textarea {
  width: 100%;
  height: 6em;
}
form select {
  min-width: 30%;
  height: 40px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 1.6rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
form input[type=radio] {
  margin: 0 0.5em 0 4px;
}
form label:hover {
  cursor: pointer;
}

/* フォーム用リスト- セレクト・チェックボックス用 */
.list_select {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: auto;
  list-style: none;
  margin: 0;
}
.list_select li {
  margin: 0 1em 0 0;
}

/* フォーム用リスト- セレクト用 */
.list_select_2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: auto;
  list-style: none;
  margin: 0;
}
.list_select_2 li {
  margin: 0 0 10px;
}

/* フォーム用リスト- 均等配置 */
.list_select_3 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
  list-style: none;
  margin: 0;
}
.list_select_3 li {
  width: 50%;
  margin: 2px 0;
}

/* フォーム用リスト- 送信用 */
#list_submit {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: auto;
  list-style: none;
}
#list_submit li {
  margin: 0 10px;
}

/* フォーム用テーブル */
.table_form {
  width: 100%;
  margin: 0 0 28px;
}
.table_form th,
.table_form td {
  text-align: left;
  padding: 18px 0;
}
.table_form th {
  width: 30%;
  vertical-align: middle;
  padding: 18px 10px 18px 0;
}
.table_form td {
  width: auto;
  word-break: break-word;
}
.table_form tr {
  border-top: 1px dotted #ddd;
}
.table_form tr:last-child {
  border-bottom: 1px dotted #ddd;
}
.table_form span {
  font-weight: normal;
}
.table_form .v_align_top {
  vertical-align: top;
}

/* 必須項目 */
.item_required:after {
  content: "必須";
  display: inline-block;
  width: auto;
  color: #f44336;
  line-height: 1;
  font-size: 1.4rem;
  border: 1px solid #f44336;
  background-color: #fff;
  padding: 3px;
  margin: 0 8px;
}

/*テーブル*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table ul,
table ol {
  margin-top: 0;
  margin-bottom: 0;
}

/*ヘッディング*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
}

/*パラグラフ*/
p {
  margin: 0;
  padding: 0;
}

/*　水平線　*/
hr {
  width: auto;
  height: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  margin: 3em 0;
}

/*　アドレス　*/
address {
  font-style: normal;
}

/*　ページネーション　＿＿＿＿＿　*/
#page_nation {
  width: 100%;
  text-align: center;
}
#page_nation .wp-pagenavi {
  display: inline-block;
  width: auto;
  height: auto;
  text-align: center;
  color: #522d27;
  font-weight: normal;
  line-height: 1;
}
#page_nation .wp-pagenavi .extend,
#page_nation .wp-pagenavi a,
#page_nation .wp-pagenavi .pages,
#page_nation .wp-pagenavi span {
  display: inline-block;
  width: auto;
  color: #111;
  background-color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  margin: 0 3px;
}
#page_nation .wp-pagenavi a {
  color: #111;
  text-decoration: none;
}
#page_nation .wp-pagenavi a:hover {
  opacity: 1;
  background-color: #111;
  color: #fff;
}
#page_nation .wp-pagenavi a:visited {
  color: #111;
}
#page_nation .wp-pagenavi .first {
  display: none;
}
#page_nation .wp-pagenavi .pages {
  color: #646464;
  background-color: transparent;
}
#page_nation .wp-pagenavi .current {
  font-weight: bold;
  background-color: #111;
  color: #fff;
}

/*　現在準備中です。　＿＿＿＿＿　*/
#under {
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 10em 0;
}
#under:before {
  display: block;
  font-size: 3rem;
  color: #f39c12;
  content: "";
  font-weight: normal;
  font-family: FontAwesome;
  padding: 0 0 0.3em;
}

/*　iframe	＿＿＿＿＿＿＿＿＿＿　*/
.iframe_cmn_1 {
  width: 100%;
  height: 450px;
  border: none;
}

/*　フレックスボックス	＿＿＿＿＿＿＿＿＿＿　*/
.flex_box_1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  flex-wrap: wrap;
  list-style: none;
}

.flex_box_2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.flex_box_3 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}

/*　イメージフローティング	＿＿＿＿＿＿＿＿＿＿　*/
.float_left {
  float: left;
  margin-right: 50px;
}

.float_right {
  float: right;
  margin-left: 50px;
}

/* 見出し	＿＿＿＿＿＿＿＿＿＿　*/
.ttl_cmn_02 {
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  font-size: 2.3rem;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  padding: 0 0 12px;
  margin: 1.8em 0 1em;
}

.ttl_cmn_03 {
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  font-size: 2rem;
  line-height: 1;
  border-left: 4px solid #111;
  padding: 0 0 0 10px;
  margin: 1.8em 0 1em;
}
.ttl_cmn_03 sup {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
}

.ttl_cmn_04 {
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  font-size: 1.7rem;
  line-height: 1.6;
  text-indent: -1.2em;
  margin: 1.6em 0 0.5em 1.2em;
}
.ttl_cmn_04:before {
  content: "●";
  color: #111;
  margin: 0 4px 0 0;
}

/*　ボタンモジュール	＿＿＿＿＿＿＿＿＿＿　*/
/* 共通ボタン */
.btn_cmn_01,
.btn_cmn_02 {
  display: inline-block;
  width: auto;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  line-height: 1;
  border: 1px solid #111;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none !important;
  padding: 15px 70px;
}
.btn_cmn_01:hover,
.btn_cmn_02:hover {
  color: #fff;
  background-color: #111;
}

/* ボタン２ */
.btn_cmn_02 {
  position: relative;
}
.btn_cmn_02:after {
  position: absolute;
  right: 20px;
  font-family: FontAwesome;
  content: "";
}

/* 一覧に戻る */
.btn_back {
  position: relative;
  font-family: YakuHanJP, "Noto Sans Regular", sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1;
  border: 1px solid #222;
}
.btn_back:before {
  position: absolute;
  left: 20px;
  font-family: FontAwesome;
  content: "";
}
.btn_back:hover {
  color: #fff;
  background-color: #222;
}

/* 背景付き送信ボタン */
.submit_back,
.submit_next {
  width: auto;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
  line-height: 1;
  border: 1px solid #333;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 15px 70px;
}
.submit_back:hover,
.submit_next:hover {
  color: #fff;
  background-color: #111;
  border: 1px solid #111;
  cursor: pointer;
}

.submit_back {
  color: #222;
  border: 1px solid #222;
  background-color: #fff;
  background-position: 6% center;
}
.submit_back:hover {
  color: #fff;
  background-color: #222;
  border: 1px solid #222;
  cursor: pointer;
}

/*テーブル	＿＿＿＿＿＿＿＿＿＿　*/
.table_cmn_01 {
  width: 100%;
}
.table_cmn_01 th,
.table_cmn_01 td {
  vertical-align: top;
  text-align: left;
  border: 1px solid #ddd;
  padding: 10px 13px;
}
.table_cmn_01 thead th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #E1EDF9;
}
.table_cmn_01 tbody th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #F0F6FC;
}

/* 交互に白黒 */
.table_cmn_02 {
  width: 100%;
}
.table_cmn_02 th,
.table_cmn_02 td {
  vertical-align: top;
  text-align: left;
  padding: 8px 15px;
}
.table_cmn_02 th {
  white-space: nowrap;
}
.table_cmn_02 tr:nth-child(odd) {
  background-color: #f2f2f2;
}

/* リスト	＿＿＿＿＿＿＿＿＿＿　*/
.list_cmn_01 {
  margin-left: 22px;
}

.list_cmn_02 {
  list-style: none;
}

/* 注意リスト */
.list_caution {
  list-style: none;
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin-left: 0 !important;
}
.list_caution li:before {
  content: "※";
  font-family: sans-serif;
}

/*　テキストコントロール	＿＿＿＿＿＿＿＿＿＿　*/
body {
  /* アライン */
  /* フォントサイズ */
  /* フォントカラー */
  /* アイコン塁 */
}
body .align_left {
  text-align: left;
}
body .align_right {
  text-align: right;
}
body .align_center {
  text-align: center;
}
body .font_small {
  font-size: 0.9em;
}
body .font_large {
  font-size: 1.5em;
}
body .color_red {
  color: #f44336;
}
body .icon_arrow:before {
  font-family: FontAwesome;
  content: "";
  color: #111;
  margin: 0 4px 0 0;
}

/* マージン	＿＿＿＿＿＿＿＿＿＿　*/
body .mar00 {
  margin-bottom: 0px;
}
body .mar05 {
  margin-bottom: 5px;
}
body .mar10 {
  margin-bottom: 10px;
}
body .mar15 {
  margin-bottom: 15px;
}
body .mar20 {
  margin-bottom: 20px;
}
body .mar25 {
  margin-bottom: 25px;
}
body .mar30 {
  margin-bottom: 30px;
}
body .mar40 {
  margin-bottom: 40px;
}
body .mar50 {
  margin-bottom: 50px;
}
body .mar60 {
  margin-bottom: 60px;
}
body .mar70 {
  margin-bottom: 70px;
}
body .mar80 {
  margin-bottom: 80px;
}

/* サイズ補正用	＿＿＿＿＿＿＿＿＿＿　*/
#wrapper .width05 {
  width: 5%;
}
#wrapper .width10 {
  width: 10%;
}
#wrapper .width15 {
  width: 15%;
}
#wrapper .width20 {
  width: 20%;
}
#wrapper .width25 {
  width: 25%;
}
#wrapper .width30 {
  width: 30%;
}
#wrapper .width40 {
  width: 40%;
}
#wrapper .width50 {
  width: 50%;
}
#wrapper .width50_2 {
  width: 48%;
}
#wrapper .width60 {
  width: 60%;
}
#wrapper .width70 {
  width: 70%;
}
#wrapper .width80 {
  width: 80%;
}
#wrapper .width90 {
  width: 90%;
}
#wrapper .width100 {
  width: 100%;
}

/*　レスポンシブ対応（ブレークポイント 414px） */
@media screen and (max-width: 414px) {
  /*　トップページに戻る　*/
  #pageTop {
    display: none;
  }
  #pageTop a {
    display: none;
  }

  /* マージン	*/
  body .mar60,
body .mar70,
body .mar80 {
    margin-bottom: 40px;
  }

  /*　サイズ補正用　*/
  body .width60,
body .width70,
body .width80,
body .width90,
body .width100 {
    width: auto;
  }

  /* フォーム用テーブル */
  .table_form {
    width: 100%;
    margin: 0 0 28px;
  }
  .table_form tr,
.table_form th,
.table_form td {
    display: block;
    width: 100%;
  }
  .table_form th,
.table_form td {
    text-align: left;
    padding: 0;
  }
  .table_form th {
    width: 100%;
    padding: 0;
    margin: 0 0 10px;
  }
  .table_form tr {
    border-top: 1px dotted #ddd;
    padding: 20px 0;
  }
  .table_form tr:last-child {
    border-bottom: 1px dotted #ddd;
  }
  .table_form input,
.table_form textarea {
    width: 100%;
  }
  .table_form .color_red {
    font-family: sans-serif;
  }

  /* フォーム用リスト- セレクト・チェックボックス用 */
  .list_select {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    list-style: none;
    margin: 0;
  }
  .list_select li {
    margin: 0 1em 0 0;
  }

  /* フォーム用リスト- セレクト用 */
  .list_select_2 {
    display: block;
  }
  .list_select_2 li {
    width: 100%;
    margin: 0 0 10px;
  }

  /* フォーム用リスト- 均等配置 */
  .list_select_3 {
    display: block;
    margin: 0;
  }
  .list_select_3 li {
    width: 100%;
    margin: 10px 0;
  }

  /* フォーム用リスト- 送信用 */
  #list_submit {
    flex-wrap: wrap;
    gap: 24px;
  }
  #list_submit li {
    margin: 10px 0;
  }

  /* 見出し	＿＿＿＿＿＿＿＿＿＿　*/
  .ttl_cmn_02 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .ttl_cmn_02.mar30 {
    margin-bottom: 20px;
  }

  .ttl_cmn_03 {
    font-size: 1.7rem;
    line-height: 1.4;
    padding: 0 0 0 8px;
  }
  .ttl_cmn_03.mar30 {
    margin-bottom: 20px;
  }

  /*　イメージフローティング	＿＿＿＿＿＿＿＿＿＿　*/
  .float_right,
.float_left {
    float: none;
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }

  /*テーブル	＿＿＿＿＿＿＿＿＿＿　*/
  .table_cmn_01 {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* 交互に白黒 */
  .table_cmn_02 {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /*　ページネーション　＿＿＿＿＿　*/
  #page_nation {
    margin: 40px 0 0;
  }
  #page_nation .wp-pagenavi .pages,
#page_nation .wp-pagenavi .last,
#page_nation .wp-pagenavi .extend {
    display: none;
  }

  /* 共通ボタン */
  .btn_cmn_01,
.btn_cmn_02 {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    padding: 15px 0;
  }

  .btn_cmn_list {
    width: 140px;
    padding: 15px 0;
  }
}
@charset "UTF-8";
@font-face {
	font-family: 'Noto Sans Regular';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/NotoSansCJKjp-Regular.woff2) format('woff2'), url(../fonts/NotoSansCJKjp-Regular.woff) format('woff'), url(../fonts/NotoSansCJKjp-Regular.otf) format('opentype')
}
@font-face {
	font-family: 'Noto Sans Medium';
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/NotoSansCJKjp-Medium.woff2) format('woff2'), url(../fonts/NotoSansCJKjp-Medium.woff) format('woff'), url(../fonts/NotoSansCJKjp-Medium.otf) format('opentype')
}
@font-face {
	font-family: 'Noto Sans Bold';
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/NotoSansCJKjp-Bold.woff2) format('woff2'), url(../fonts/NotoSansCJKjp-Bold.woff) format('woff'), url(../fonts/NotoSansCJKjp-Bold.otf) format('opentype')
}
@font-face {
	font-family: 'Noto Sans Black';
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/NotoSansCJKjp-Black.woff2) format('woff2'), url(../fonts/NotoSansCJKjp-Black.woff) format('woff'), url(../fonts/NotoSansCJKjp-Black.otf) format('opentype')
}
