/**------------------------------------------------------------
 *
 * CSS - common -
 *
 ------------------------------------------------------------**/
/**-------------------------------------------------------------------
 * Main CSS
 -------------------------------------------------------------------*/
/********** font setting **********/
html,
body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "ヒラギノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 'KozGoPro-Light', '小塚ゴシック Pro L', 'Kozuka Gothic Pro Light', Meiryo, sans-serif;
  font-size: 12px;
  font-feature-settings: "palt" 1;
}
@media print {
  html,
  body {
    font-size: 10px;
    line-height: 2rem;
  }
}
p {
  margin: 0;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
ul {
  margin: 0;
}
/********** Bootstrap 対策 **********/
@media print {
  a[href]:after {
    content: "" !important;
  }
  abbr[title]:after {
    content: "" !important;
  }
}
/********** view setting **********/
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  /* webkit スマートメディア向け文字サイズ自動調整機能の初期化 */
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  min-width: 1366px;
  -webkit-print-color-adjust: exact;
}
@media screen and (max-width: 810px) {
  body {
    width: 100vW;
    min-width: 375px;
  }
}
@media print {
  body {
    zoom: 0.6;
    -webkit-print-color-adjust: exact;
  }
}
@media print and (-ms-high-contrast: none) {
  body {
    zoom: 1.8;
    width: 1200px;
    transform: scale(0.5);
    transform-origin: 0 0;
  }
}
@media print, screen and (min-width: 811px) {
  body .sp_only {
    display: none;
  }
}
@media screen and (max-width: 810px) {
  body .pc_only {
    display: none;
  }
}
.page_maxwidth_container {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 811px) {
  .page_maxwidth_container {
    width: 1366px;
  }
}
@media screen and (max-width: 810px) {
  .page_maxwidth_container {
    width: 100vW;
  }
}
.contents_maxwidth_container {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 811px) {
  .contents_maxwidth_container {
    width: 1240px;
  }
}
@media screen and (max-width: 810px) {
  .contents_maxwidth_container {
    width: calc(100vW - 30px);
  }
}
.article_maxwidth_container {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 811px) {
  .article_maxwidth_container {
    width: 960px;
  }
}
@media screen and (max-width: 810px) {
  .article_maxwidth_container {
    width: calc(100vW - 30px);
  }
}
.article_minwidth_container {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 811px) {
  .article_minwidth_container {
    width: 840px;
  }
}
@media screen and (max-width: 810px) {
  .article_minwidth_container {
    width: calc(100vW - 30px);
  }
}
.contents_page h1 {
  text-align: left;
}
.textboxTheme {
  margin: 0;
  padding: 0;
  background-color: #F0F0F0 !important;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #999;
}
.textboxTheme::-webkit-input-placeholder {
  /* Edge */
  color: #666;
}
.textboxTheme:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}
.textboxTheme::placeholder {
  color: #666;
}
.buttonTheme {
  margin: 0;
  padding: 0;
  background-color: #333 !important;
  border: none;
  border-radius: 0;
  color: white !important;
  text-align: center;
  cursor: pointer;
}
.buttonTheme:hover,
.buttonTheme:active,
.buttonTheme:focus {
  color: white;
}
.buttonTheme:hover {
  background-color: #666;
}
.buttonTheme:active {
  background-color: #EA2935;
}
.button_flame {
  position: relative;
  width: 260px;
  height: 50px;
  margin: 80px auto;
  border: solid 1px #EA2935;
  background-color: #FFF;
}
@media screen and (max-width: 810px) {
  .button_flame {
    width: 200px;
    height: 40px;
    margin: 50px auto;
  }
}
.button_flame > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  color: #EA2935;
}
@media screen and (max-width: 810px) {
  .button_flame > a {
    font-size: 1.1rem;
  }
}
.button_flame > a p::after {
  content: "";
  position: absolute;
  top: calc((50px - 14px) / 2);
  right: 10px;
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: solid 2px #EA2935;
  border-right: solid 2px #EA2935;
  transform: rotate(-45deg);
}
@media screen and (max-width: 810px) {
  .button_flame > a p::after {
    top: calc((40px - 12px) / 2);
    width: 10px;
    height: 10px;
    border-bottom: solid 1px #EA2935;
    border-right: solid 1px #EA2935;
  }
}
.button_flame > a:hover {
  background-color: #EA2935;
}
.button_flame > a:hover p {
  color: #FFF;
}
.button_flame > a:hover p::after {
  border-color: #FFF;
}
main input[type="checkbox"] {
  display: none;
}
main input[type="checkbox"] + label {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 810px) {
  main input[type="checkbox"] + label {
    padding-left: 1.6rem;
    font-size: 1rem;
  }
}
main input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin: auto 0;
  background-color: white;
  border: solid 2px #666;
  border-radius: 4px;
}
@media screen and (max-width: 810px) {
  main input[type="checkbox"] + label::before {
    width: 1.4rem;
    height: 1.4rem;
    margin: auto 0;
  }
}
main input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  display: block;
  width: 12px;
  height: 8px;
  margin: auto 0;
  border: none;
  border-left: solid 3px #EA2935;
  border-bottom: solid 3px #EA2935;
  transform: rotate(-45deg);
}
@media screen and (max-width: 810px) {
  main input[type="checkbox"]:checked + label::after {
    width: 10px;
    height: 6px;
  }
}
main input[type="radio"] {
  display: none;
}
main input[type="radio"] + span {
  position: relative;
  padding-left: 24px;
}
main input[type="radio"] + span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto 0;
  border: solid 2px #666;
  border-radius: 16px;
  box-shadow: 1px 1px 2px #999 inset;
}
main input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto 0;
  background-color: #EA2935;
  border: solid 1px white;
  border-radius: 8px;
  box-shadow: 1px 1px 2px #999;
}
body {
  background-repeat: no-repeat;
}
@media screen and (max-width: 810px) {
  body {
    background-size: 100%;
  }
}
/**-------------------------------------------------------------------
 * Header part
 -------------------------------------------------------------------*/
/* sp時ハンバーガーメニュー表示時表示固定設定 */
@media screen and (max-width: 810px) {
  body[data-headermenu-flag="true"] {
    /* メニュー表示時のスクロール固定設定 */
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }
  body[data-headermenu-flag="true"] header #header_main {
    height: 100vh;
    max-height: 100vh;
    padding-bottom: 50px;
    overflow: scroll;
    background-color: #FFF;
  }
  body[data-headermenu-flag="true"] header #header_main .header_main_upper {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
  }
  body[data-headermenu-flag="true"] header #header_main .header_main_upper #header_menu_view_swich {
    background-image: url(../images/commons/header_menu_sp_hamburger_close.svg);
  }
  body[data-headermenu-flag="true"] header #header_main .header_main_lower {
    margin-top: 75px;
  }
}
#header_main {
  position: relative;
}
@media print, screen and (min-width: 811px) {
  #header_main .header_main_upper {
    display: flex;
  }
  #header_main #header_link_items {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
  }
  #header_main #header_link_items #header_main_upper_links {
    position: absolute;
    top: 0;
    right: 140px;
    width: 275px;
  }
  #header_main #header_link_items #header_main_upper_links > ul {
    display: flex;
    justify-content: space-between;
  }
  #header_main #header_link_items #header_main_upper_links > ul > li {
    width: 132px;
    height: calc(48px - 6px);
    border-top: solid 6px #EA2935;
  }
  #header_main #header_link_items #header_main_upper_links > ul > li > a {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  #header_main #header_link_items #header_main_upper_links > ul > li > a:hover {
    background: linear-gradient(to bottom, #FFF, #f6bc66);
  }
  #header_main #header_link_items #header_main_upper_links > ul > li > a > p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
  }
  #header_main #header_link_items #header_main_upper_links > ul > li > a > p > img {
    margin-left: 4px;
    vertical-align: middle;
  }
  #header_main #header_link_items #tri_link {
    position: absolute;
    top: 0;
    right: 0;
  }
  #header_main #header_link_items #tri_link:hover {
    opacity: 0.7;
  }
  #header_main .header_main_lower {
    height: 60px;
  }
  #header_main .header_main_lower > ul {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
  }
  #header_main .header_main_lower > ul > li {
    width: calc(100% / 5);
    height: 40px;
    border-left: solid 1px #000;
  }
  #header_main .header_main_lower > ul > li:last-of-type {
    border-right: solid 1px #000;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(40px + 4px + 6px);
    padding-bottom: 4px;
    border-bottom: solid 6px rgba(0, 0, 0, 0);
    text-align: center;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > a {
    text-decoration: none;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > a > p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4rem;
    color: #000;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > a > p > span {
    font-size: 1rem;
    font-weight: 700;
    color: #EA2935;
  }
  #header_main .header_main_lower > ul > li[data-page_type_select="true"] > .header_navmenu_title {
    border-bottom: solid 6px #EA2935;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 0;
    min-width: 1366px;
    opacity: 0;
    filter: drop-shadow(0px 7px 7px rgba(0, 0, 0, 0.2));
    overflow: hidden;
    z-index: 100;
    transition: all 300ms ease-in-out 0s;
  }
  #header_main .header_main_lower > ul > li:hover > .header_navmenu_title {
    border-bottom: solid 6px #EA2935;
  }
  #header_main .header_main_lower > ul > li:hover > .header_navmenu_sub {
    padding-top: 9px;
    height: calc(200px + 9px);
    opacity: 1;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner {
    width: 100%;
    border-top: solid 1px #666;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul {
    display: flex;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li {
    display: flex;
    width: calc(1240px - 370px - 1px);
    height: 200px;
    justify-content: left;
    align-items: center;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li:first-of-type {
    width: calc(333px + 63px);
    padding-left: calc(63px);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li:first-of-type .header_navmenu_subtitle > p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.2rem;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li:first-of-type .header_navmenu_subtitle > p .header_navmenu_subtitle_en {
    font-size: 1.6rem;
    color: #EA2935;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: calc(2.4rem * 4);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul > li {
    padding-left: 8px;
    padding-right: 8px;
    border-left: dashed 1px #000;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul > li a {
    text-decoration: none;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul > li a:hover p {
    border-radius: 10px;
    background: linear-gradient(to right, #f6bc66, rgba(255, 255, 255, 0));
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul > li a p {
    padding-left: 8px;
    padding-right: 8px;
    line-height: 2.4rem;
    color: #333;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_2 > ul li {
    width: 320px;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_3 > ul {
    height: calc(2.4rem * 3);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_3 > ul li {
    width: 242px;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_3 > ul li > ul > li {
    width: 100%;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_5 > ul li {
    width: 156px;
  }
}
@media screen and (max-width: 810px) {
  #header_main {
    height: 75px;
    overflow: hidden;
    transition: all 300ms ease-in-out 0s;
  }
  #header_main .header_main_upper {
    width: 100%;
    height: 75px;
    padding-left: 0;
  }
  #header_main .header_main_upper #site_name {
    padding-left: 16px;
    padding-top: 18px;
  }
  #header_main .header_main_upper #header_menu_view_swich {
    position: absolute;
    top: 22px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-image: url(../images/commons/header_menu_sp_hamburger_open.svg);
    background-size: cover;
  }
  #header_main #header_main_upper_links {
    width: 100%;
    height: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #header_main #header_main_upper_links > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  #header_main #header_main_upper_links > ul > li {
    width: 100%;
    height: 40px;
  }
  #header_main #header_main_upper_links > ul > li:first-of-type {
    border-right: solid 1px #333;
  }
  #header_main #header_main_upper_links > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  #header_main #header_main_upper_links > ul > li > a > p {
    font-size: 1.2rem;
    color: #666;
  }
  #header_main #header_main_upper_links > ul > li > a > p > img {
    margin-left: 4px;
    vertical-align: middle;
  }
  #header_main #tri_link {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  #header_main #header_sns_link {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #header_main #header_sns_link > ul {
    display: flex;
    justify-content: space-between;
    width: 80px;
  }
  #header_main .header_main_lower {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  #header_main .header_main_lower > ul > li {
    width: 100%;
    border-top: solid 1px #666;
  }
  #header_main .header_main_lower > ul > li:last-of-type {
    border-bottom: solid 1px #666;
  }
  #header_main .header_main_lower > ul > li a {
    text-decoration: none;
    color: #000;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > a > p {
    font-size: 1.3rem;
    line-height: 1.4rem;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > a > p > .header_navmenu_eng {
    font-size: 1rem;
    color: #EA2935;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > .header_nav_sub_menu_view_swich {
    width: 20px;
    height: 20px;
    background-size: cover;
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > .header_nav_sub_menu_view_swich.header_has_sub_menu_close {
    background-image: url(../images/commons/header_menu_sp_tab_close.svg);
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > .header_nav_sub_menu_view_swich.header_has_sub_menu_open {
    background-image: url(../images/commons/header_menu_sp_tab_open.svg);
  }
  #header_main .header_main_lower > ul > li .header_navmenu_title > .header_nav_sub_menu_view_swich.header_has_not_sub_menu {
    background-image: url(../images/commons/header_menu_sp_tab_link.svg);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  #header_main .header_main_lower > ul > li[data-menu_select="true"] > .header_navmenu_sub {
    height: auto;
    padding-bottom: 35px;
  }
  #header_main .header_main_lower > ul > li[data-menu_select="true"] > .header_navmenu_sub > .header_navmenu_sub_inner > ul {
    overflow: hidden;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul {
    width: 100%;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li {
    padding-left: 16px;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li:first-of-type {
    display: none;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li a p {
    font-size: 1.2rem;
    line-height: 2.9rem;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li > ul > li > ul > li {
    padding-left: 16px;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_2 > ul {
    height: calc(2.9rem * 7);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_2 > ul li {
    width: 320px;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_3 > ul {
    width: 100%;
    height: calc(2.9rem * 8);
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_3 > ul li {
    width: 100%;
  }
  #header_main .header_main_lower > ul > li > .header_navmenu_sub > .header_navmenu_sub_inner > ul > li.header_nav_sub_innerblock_5 > ul {
    display: flex;
    flex-direction: column;
    height: calc(2.9rem * 7);
    justify-content: space-between;
  }
}
/* contents page */
@media print, screen and (min-width: 811px) {
  .contents_header {
    position: relative;
    width: 100%;
    height: 200px;
    padding: 3px 0;
    background-image: url("/images/common_header_img_2x.png") !important;
    background-size: cover;
    background-position-x: center;
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
  }
  .contents_header::before,
  .contents_header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #FFF;
  }
  .contents_header::before {
    top: 0;
  }
  .contents_header::after {
    bottom: 0;
  }
  .contents_header > ul {
    display: flex;
    height: 100%;
    align-items: center;
    width: 1240px;
    margin: 0 auto;
  }
  .contents_header > ul > li > p {
    font-size: 1.45rem;
    line-height: 2.4rem;
  }
  .contents_header > ul > li:first-of-type {
    width: 430px;
    display: flex;
    align-items: center;
  }
  .contents_header > ul > li:first-of-type > img {
    width: 55px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
  }
  .contents_header > ul > li:first-of-type > p {
    font-size: 1.85rem;
    font-weight: bold;
    line-height: 2rem;
  }
  .contents_header > ul > li:first-of-type > p > span.span_title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2rem;
  }
  .contents_header > ul > li:first-of-type > p > span.title_eng_type {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.08rem;
    color: #EA2935;
  }
}
@media screen and (max-width: 810px) {
  .contents_header {
    position: relative;
    width: 100%;
    height: 160px;
    background-image: url("/images/common_header_img_sp_2x.png");
    background-color: white;
    background-size: cover;
    background-position-x: center;
  }
  .contents_header > ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    padding: 16px 15px;
  }
  .contents_header > ul li p {
    font-size: 1.1rem;
    line-height: 1.6rem;
    text-shadow: 1px 0 1px #FFF, 0 1px 1px #FFF, -1px 0 1px #FFF, 0 -1px 1px #FFF;
  }
  .contents_header > ul > li:first-of-type {
    display: flex;
    margin-top: 10px;
    align-items: center;
  }
  .contents_header > ul > li:first-of-type > img {
    max-width: 40px;
    height: auto;
    margin-right: 15px;
    vertical-align: middle;
  }
  .contents_header > ul > li:first-of-type p {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .contents_header > ul > li:first-of-type p > span.span_title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
  }
  .contents_header > ul > li:first-of-type p .title_eng_type {
    font-size: 1.1rem;
    line-height: 1.5rem;
    color: #EA2935;
  }
}
/* breadcrumb */
@media print, screen and (min-width: 811px) {
  .breadcrumb {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background-color: transparent;
    border-radius: 0;
  }
  .breadcrumb > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 1240px;
    margin: 0 auto;
  }
  .breadcrumb > ul > li p {
    font-size: 1.2rem;
  }
  .breadcrumb > ul > li p a {
    text-decoration: none;
    color: #000;
  }
  .breadcrumb > ul > li:not(:last-of-type) p::after {
    content: '\FF1E';
    margin: 0 4px;
  }
}
@media screen and (max-width: 810px) {
  .breadcrumb {
    width: 100%;
    padding: inherit;
    margin-bottom: inherit;
    background-color: transparent;
    border-radius: 0;
  }
  .breadcrumb > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100vW - 30px);
    margin: 0 auto;
    padding: 10px 0;
  }
  .breadcrumb > ul > li p {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
  .breadcrumb > ul > li p a {
    text-decoration: none;
    color: #000;
  }
  .breadcrumb > ul > li:not(:last-of-type) p::after {
    content: "＞";
    margin: 0 4px;
  }
}
/**-------------------------------------------------------------------
 * Contents part
 ------------------------------------------------------------------**/
/* main contents area */
main.contents_page ol {
  list-style-type: decimal;
}
main.contents_page ol > li > ol {
  list-style-type: lower-alpha;
}
main.contents_page ol > li > ol > li > ol {
  list-style-type: lower-roman;
}
@media print, screen and (min-width: 811px) {
  main.contents_page {
    display: flex;
    justify-content: space-between;
    width: 960px;
    margin: 0 auto;
    padding: 50px 0;
  }
  main.contents_page .contents_page_left_sidebar {
    position: sticky;
    top: 0;
    width: 230px;
    height: 100%;
  }
  main.contents_page section {
    width: 650px;
  }
  main.contents_page nav {
    border-top: solid 4px #EA2935;
    background-color: #FFF;
  }
  main.contents_page nav ul.contents_nav_block li {
    position: relative;
    margin: 2px 0;
    background-color: #F0F0F0 !important;
  }
  main.contents_page nav ul.contents_nav_block li a {
    display: block;
    padding: 18px 10px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
  }
  main.contents_page nav ul.contents_nav_block li a:hover {
    color: #EA2935;
  }
  main.contents_page nav ul.contents_nav_block li a p {
    font-size: 1.3rem;
  }
  main.contents_page nav ul.contents_nav_block li[data-target_flag="true"] a p {
    font-weight: bold;
    color: #EA2935 !important;
  }
  main.contents_page nav ul.contents_nav_block li[data-target_flag="true"]::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    border-top: solid 1px #EA2935;
    border-right: solid 1px #EA2935;
    transform: rotate(45deg);
  }
  main.contents_page #update_infomation {
    margin: 10px 0 10px;
    padding: 6px 0 10px;
    border-top: solid 6px #EA2935;
    border-bottom: solid 6px #EA2935;
  }
  main.contents_page #update_infomation p {
    font-size: 1.2rem;
    line-height: 120%;
  }
  main.contents_page #update_infomation p a,
  main.contents_page #update_infomation p span {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 160%;
    color: #EA2935 !important;
  }
  main.contents_page #update_infomation > p:first-of-type {
    position: relative;
    padding-left: 80px;
    font-size: 1rem;
  }
  main.contents_page #update_infomation > p:first-of-type::before {
    content: "NEW";
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 70px;
    border-radius: 2px;
    font-size: 1.1rem;
    line-height: 22px;
    background-color: #EA2935 !important;
    color: white !important;
    text-align: center;
  }
  main.contents_page #update_infomation .nci_banner {
    position: relative;
    margin-top: 10px;
    padding: 13px 10px;
    background-color: #F0F0F0 !important;
    border-top: dashed 1px black;
  }
  main.contents_page #update_infomation .nci_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: white !important;
  }
  main.contents_page #update_infomation .nci_banner p a {
    color: #EA2935 !important;
  }
  main.contents_page #update_infomation .nci_banner p a::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url("/images/type/guidlines_pict.svg") !important;
    background-size: contain;
    vertical-align: middle;
  }
  main.contents_page #update_infomation .nci_banner p span {
    margin: 0 4px;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 100%;
    vertical-align: middle;
  }
  main.contents_page section > h1:first-of-type {
    margin-bottom: 0px;
  }
  main.contents_page section article h1 {
    margin: 100px 0 20px;
    padding: 26px 20px;
    background-color: #999 !important;
    border-bottom: solid 10px #EA2935;
    font-size: 1.6rem;
    font-weight: bold;
    color: #FFF !important;
  }
  main.contents_page section p,
  main.contents_page section li,
  main.contents_page section dd {
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.04rem;
  }
  main.contents_page section p {
    margin: 20px 0 10px;
  }
  main.contents_page section a {
    text-decoration: underline;
    color: #EA2935;
  }
  main.contents_page section small {
    display: inline-block;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
  main.contents_page section ul.contents_review {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
  main.contents_page section ul.contents_review > li {
    width: 40%;
    text-align: center;
  }
  main.contents_page section ul.contents_review > li h3 {
    font-size: 1.4rem;
    color: #EA2935;
  }
  main.contents_page section ul.contents_review > li a {
    text-decoration: none;
  }
  main.contents_page section ul.contents_review > li a p {
    color: black;
  }
  main.contents_page section ul.contents_review > li a:hover {
    opacity: 0.5;
  }
  main.contents_page section ul.contents_review > li img {
    margin: 6px 0;
  }
  main.contents_page section ul.contents_review > li p {
    margin: 0;
    line-height: 2rem;
    text-align: center;
  }
  main.contents_page section ul.contents_review > li p .english_word {
    font-size: 1rem;
    line-height: 1rem;
    color: #EA2935;
  }
  main.contents_page section ul.contents_review.title {
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    border-top: solid 1px #999;
  }
  main.contents_page section ul.contents_review.title > li {
    width: inherit;
  }
  main.contents_page section ul.contents_review.title > li:first-of-type {
    width: 34%;
  }
  main.contents_page section ul.contents_review.title + p {
    margin-top: 0;
  }
  main.contents_page section .contents h2 {
    font-size: 1.6rem;
  }
  main.contents_page section .contents h3 {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  main.contents_page section .contents ul.contents_ul_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list {
    display: flex;
    flex-direction: column;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li {
    width: 100%;
    border-bottom: solid 1px #999;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li:first-of-type {
    width: 35%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li {
    width: 65%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul {
    flex-direction: column;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li {
    width: 100%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li:not(:last-of-type) {
    border-bottom: solid 1px #999;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li > ul > li:first-of-type {
    width: 60%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li > ul > li {
    width: 40%;
  }
  main.contents_page section .contents ol {
    padding-left: 3rem;
  }
  main.contents_page section .contents ol li {
    padding-left: 0.2rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  main.contents_page section .contents dl dt {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  main.contents_page section .contents dl dd p {
    margin: 6px 0;
  }
  main.contents_page section .contents dl.dl_accordion > dt,
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="false"] {
    position: relative;
    cursor: pointer;
    padding: 20px 10px;
    background-color: #F0F0F0 !important;
    font-size: 1.6rem;
    font-weight: bold;
    color: #EA2935;
  }
  main.contents_page section .contents dl.dl_accordion > dt::after,
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="false"]::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 27px;
    height: 27px;
    margin: auto 0;
    background-image: url("/images/commons/accordion_close_pict_27x27.svg");
    background-size: cover;
  }
  main.contents_page section .contents dl.dl_accordion > dt + dd,
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="false"] + dd {
    height: 0;
    margin: 0 0 10px;
    padding: 0;
    border-bottom: solid 1px black;
    transition: padding 300ms ease-out 0s;
    overflow: hidden;
  }
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="true"]::after {
    background-image: url("/images/commons/accordion_open_pict_27x27.svg");
  }
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="true"] + dd {
    padding: 16px 0 16px;
    height: auto;
  }
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="true"] + dd > p:not(:first-of-type) {
    padding: 10px 0 0;
  }
  main.contents_page section .contents dl.dl_accordion > dd > dl > dt {
    margin: 20px 0 0;
    font-size: 1.6rem;
    font-weight: bold;
  }
  main.contents_page section .contents dl.dl_accordion > dd ol {
    padding-left: 40px;
  }
  main.contents_page section aside.contents_supplement {
    margin: 20px 10px;
    border: solid 10px #F0F0F0;
    border-radius: 6px;
  }
  main.contents_page section aside.contents_supplement .contents_review.title {
    margin-top: 0;
    padding: 20px 0;
    border: none;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li {
    width: inherit;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li p {
    font-size: 1.3rem;
    line-height: 1.4rem;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li:first-of-type {
    width: 34%;
  }
  main.contents_page section aside.contents_supplement .contents_review.title + p {
    margin-top: 0;
  }
  main.contents_page section aside.contents_supplement h4 {
    padding: 10px 30px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  main.contents_page section aside.contents_supplement > p {
    padding: 10px 30px;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  main.contents_page section aside.contents_supplement ul.contents_ul_flex {
    margin: 0 0 30px;
    padding: 0 20px;
    justify-content: stretch;
  }
  main.contents_page section aside.contents_supplement ul.contents_ul_flex li {
    width: 190px;
    min-width: 80px;
    padding: 0 20px;
  }
  main.contents_page section aside.contents_supplement ul.contents_ul_flex li p {
    margin: 0;
    font-size: 1.2rem;
  }
  main.contents_page section aside.contents_caution {
    margin-top: 80px;
  }
  main.contents_page section aside.contents_caution h2 {
    margin: 30px 0;
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: solid 1px #999;
  }
  main.contents_page section aside.contents_caution h2 img {
    margin-right: 5px;
    vertical-align: middle;
  }
  main.contents_page section aside.contents_other_info {
    margin: 40px 0;
    padding: 20px 0;
    border-top: dashed 1px #999;
  }
  main.contents_page section aside.contents_other_info h2 {
    margin: 40px 0 10px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #EA2935;
  }
}
@media screen and (max-width: 810px) {
  main.contents_page .contents_page_left_sidebar {
    width: calc(100vW - 30px);
    margin: 20px auto;
  }
  main.contents_page .contents_page_left_sidebar nav {
    border-top: solid 4px #EA2935;
    background-color: #FFF;
  }
  main.contents_page .contents_page_left_sidebar nav ul.contents_nav_block li {
    position: relative;
    margin: 2px 0;
    background-color: #F0F0F0;
  }
  main.contents_page .contents_page_left_sidebar nav ul.contents_nav_block li a {
    display: block;
    padding: 13px 13px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
  }
  main.contents_page .contents_page_left_sidebar nav ul.contents_nav_block li a p {
    font-size: 1.3rem;
  }
  main.contents_page .contents_page_left_sidebar nav ul.contents_nav_block li[data-target_flag="true"] a {
    color: #EA2935;
  }
  main.contents_page .contents_page_left_sidebar nav ul.contents_nav_block li[data-target_flag="true"] a p {
    font-weight: bold;
  }
  main.contents_page .contents_page_left_sidebar nav ul.contents_nav_block li[data-target_flag="true"]::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    border-top: solid 1px #EA2935;
    border-right: solid 1px #EA2935;
    transform: rotate(45deg);
  }
  main.contents_page #update_infomation {
    margin: 40px 0 10px;
    padding: 6px 0 10px;
    border-top: solid 6px #EA2935;
    border-bottom: solid 6px #EA2935;
  }
  main.contents_page #update_infomation p {
    font-size: 1.2rem;
    line-height: 120%;
  }
  main.contents_page #update_infomation p a,
  main.contents_page #update_infomation p span {
    margin-right: 6px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 160%;
    color: #EA2935;
  }
  main.contents_page #update_infomation > p:first-of-type {
    position: relative;
    padding-left: 80px;
    font-size: 1.2rem;
  }
  main.contents_page #update_infomation > p:first-of-type::before {
    content: "NEW";
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 70px;
    border-radius: 2px;
    font-size: 1.1rem;
    line-height: 22px;
    background-color: #EA2935;
    color: white;
    text-align: center;
  }
  main.contents_page #update_infomation .nci_banner {
    position: relative;
    margin-top: 10px;
    padding: 13px 10px;
    background-color: #F0F0F0;
    border-top: dashed 1px black;
  }
  main.contents_page #update_infomation .nci_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: white;
  }
  main.contents_page #update_infomation .nci_banner p a::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url("/images/type/guidlines_pict.svg");
    background-size: contain;
    vertical-align: middle;
  }
  main.contents_page #update_infomation .nci_banner p span {
    margin: 0 4px;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 100%;
    vertical-align: middle;
  }
  main.contents_page section {
    width: calc(100vW - 30px);
    margin: 40px auto;
  }
  main.contents_page section p,
  main.contents_page section li,
  main.contents_page section dd {
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 1.1rem;
    line-height: 2rem;
    margin: 4px 0;
  }
  main.contents_page section a {
    text-decoration: underline;
    color: #EA2935;
  }
  main.contents_page section h1 {
    display: none;
  }
  main.contents_page section h1 + p {
    margin: 30px 0;
    padding: 26px 0;
    font-size: 1.7rem;
    text-align: center;
    border-bottom: solid 1px #999;
  }
  main.contents_page section h1 + p + p {
    font-size: 1.3rem;
  }
  main.contents_page section small {
    display: inline-block;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 1rem;
    line-height: 1.3rem;
  }
  main.contents_page section ul.contents_review {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
  main.contents_page section ul.contents_review > li {
    width: 40%;
    text-align: center;
  }
  main.contents_page section ul.contents_review > li h3 {
    font-size: 1.4rem;
    line-height: 2rem;
    color: #EA2935;
  }
  main.contents_page section ul.contents_review > li a {
    text-decoration: none;
  }
  main.contents_page section ul.contents_review > li a p {
    color: black;
  }
  main.contents_page section ul.contents_review > li img {
    width: 56px;
    margin: 0 0;
  }
  main.contents_page section ul.contents_review > li p {
    margin: 0;
    line-height: 1.5rem;
    text-align: center;
  }
  main.contents_page section ul.contents_review > li p .english_word {
    font-size: 1rem;
    color: #EA2935;
  }
  main.contents_page section ul.contents_review.title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: solid 1px #999;
  }
  main.contents_page section ul.contents_review.title > li {
    width: 100%;
  }
  main.contents_page section ul.contents_review.title > li:last-of-type p {
    color: #EA2935;
  }
  main.contents_page section ul.contents_review.title + p {
    margin-top: 0;
  }
  main.contents_page section .contents h2 {
    margin: 60px 0 20px;
    padding: 18px 14px;
    background-color: #999;
    border-bottom: solid 6px #EA2935;
    font-size: 1.3rem;
    font-weight: bolder;
    letter-spacing: 0.1rem;
    color: #FFF;
  }
  main.contents_page section .contents:first-child > h2 {
    margin-top: 0;
  }
  main.contents_page section .contents h3 {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  main.contents_page section .contents ul.contents_ul_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list {
    display: flex;
    flex-direction: column;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list li {
    margin: 0;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li {
    width: 100%;
    border-bottom: solid 1px #999;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li:first-of-type {
    width: 35%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li {
    width: 65%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul {
    flex-direction: column;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li {
    width: 100%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li:not(:last-of-type) {
    border-bottom: solid 1px #999;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li > ul > li:first-of-type {
    width: 60%;
  }
  main.contents_page section .contents ul.contents_ul_table.support_browser_list > li > ul > li > ul > li > ul > li {
    width: 40%;
  }
  main.contents_page section .contents ol {
    padding-left: 3rem;
  }
  main.contents_page section .contents ol li {
    margin: 0 0;
    padding-left: 0.2rem;
  }
  main.contents_page section .contents dl dt {
    font-size: 1.3rem;
    line-height: 3rem;
  }
  main.contents_page section .contents dl dd p {
    margin: 2px 0;
  }
  main.contents_page section .contents dl.dl_accordion > dt,
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="false"] {
    position: relative;
    cursor: pointer;
    padding: 4px 50px 4px 10px;
    background-color: #F0F0F0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #EA2935;
  }
  main.contents_page section .contents dl.dl_accordion > dt::after,
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="false"]::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 16px;
    height: 16px;
    margin: auto 0;
    background-image: url("/images/commons/accordion_close_pict_27x27.svg");
    background-size: cover;
  }
  main.contents_page section .contents dl.dl_accordion > dt + dd,
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="false"] + dd {
    margin: 0 0 6px;
    padding: 0;
    border-bottom: solid 1px black;
    transition: padding 300ms ease-out 0s;
  }
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="true"]::after {
    background-image: url("/images/commons/accordion_open_pict_27x27.svg");
  }
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="true"] + dd {
    padding: 10px 0 10px;
    height: auto;
  }
  main.contents_page section .contents dl.dl_accordion > dt[data-accordion_target="true"] + dd > p:not(:first-of-type) {
    padding: 10px 0 0;
  }
  main.contents_page section .contents dl.dl_accordion > dd > dl > dt {
    margin: 20px 0 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  main.contents_page section .contents dl.dl_accordion > dd ol {
    padding-left: 40px;
  }
  main.contents_page section aside.contents_supplement {
    margin: 20px 0;
    padding: 0 10px 10px;
    border: solid 10px #F0F0F0;
    border-radius: 6px;
  }
  main.contents_page section aside.contents_supplement .contents_review.title {
    margin-top: 0;
    padding: 20px 0;
    border: none;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li {
    width: inherit;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li p {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li p .english_word {
    font-size: 0.9rem;
  }
  main.contents_page section aside.contents_supplement .contents_review.title > li:last-of-type p {
    color: #EA2935;
  }
  main.contents_page section aside.contents_supplement .contents_review.title + p {
    margin-top: 0;
  }
  main.contents_page section aside.contents_supplement h4 {
    padding: 6px 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  main.contents_page section aside.contents_supplement > p {
    margin: 8px 0;
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
  main.contents_page section aside.contents_supplement ul.contents_ul_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 10px;
  }
  main.contents_page section aside.contents_supplement ul.contents_ul_flex li {
    width: 150px;
    margin: 0;
    padding: 0 10px;
  }
  main.contents_page section aside.contents_supplement ul.contents_ul_flex li p {
    margin: 0;
  }
  main.contents_page section aside.contents_caution {
    margin: 20px 0;
  }
  main.contents_page section aside.contents_caution h2 {
    margin: 20px 0;
    padding: 16px 0;
    font-size: 1.7rem;
    text-align: center;
    border-bottom: solid 1px #999;
  }
  main.contents_page section aside.contents_caution h2 img {
    width: 35px;
    margin-right: 5px;
    vertical-align: middle;
  }
  main.contents_page section aside.contents_caution p {
    font-size: 1.1em;
    line-height: 1.6rem;
  }
  main.contents_page section aside.contents_other_info {
    margin: 30px 0;
    padding: 20px 0;
    border-top: dashed 1px #999;
  }
  main.contents_page section aside.contents_other_info h2 {
    margin: 20px 0 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #EA2935;
  }
}
@media print {
  main.contents_page .contents_page_left_sidebar {
    position: relative;
  }
}
@media print and (-ms-high-contrast: none) {
  main.contents_page .contents_page_left_sidebar {
    position: static;
  }
}
@media print, screen and (min-width: 811px) {
  main.full_width_contents {
    padding: 30px 0;
  }
}
main.full_width_contents h1 {
  margin: 60px 0 20px;
  background-color: #999 !important;
  font-weight: bold;
  line-height: 100%;
  color: white !important;
}
@media print, screen and (min-width: 811px) {
  main.full_width_contents h1 {
    padding: 26px 20px;
    border-bottom: solid 10px #EA2935;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
  main.full_width_contents h1:first-of-type {
    margin-top: 0;
  }
}
@media screen and (max-width: 810px) {
  main.full_width_contents h1 {
    padding: 18px 14px;
    border-bottom: solid 6px #EA2935;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
  main.full_width_contents h1:first-of-type {
    margin-top: 20px;
  }
}
main.full_width_contents h2 {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05rem;
  color: #EA2935 !important;
}
@media print, screen and (min-width: 811px) {
  main.full_width_contents h2 {
    margin: 30px 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 810px) {
  main.full_width_contents h2 {
    margin: 20px 0;
    font-size: 1.5rem;
  }
}
main.full_width_contents h3 {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media print, screen and (min-width: 811px) {
  main.full_width_contents h3 {
    margin: 20px 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 810px) {
  main.full_width_contents h3 {
    margin: 20px 0;
    font-size: 1.4rem;
  }
}
main.full_width_contents p {
  line-height: 160%;
  text-align: center;
}
@media print, screen and (min-width: 811px) {
  main.full_width_contents p {
    font-size: 1.3rem;
    font-weight: bold;
  }
}
@media screen and (max-width: 810px) {
  main.full_width_contents p {
    font-size: 1.2rem;
    font-weight: normal;
  }
}
@media print, screen and (min-width: 811px) {
  main.full_width_contents .full_page_title_block {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 810px) {
  main.full_width_contents .full_page_title_block {
    margin-bottom: 30px;
  }
}
/**-------------------------------------------------------------------
 * Footer part
 ------------------------------------------------------------------**/
footer {
  height: 878px;
}
@media screen and (max-width: 810px) {
  footer {
    height: auto;
  }
}
#footer_main {
  position: relative;
}
#footer_main #to_top {
  position: relative;
  height: 80px;
}
#footer_main #to_top > .over_the_top_button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  text-align: right;
  background-color: #EA2935;
  opacity: 0;
  transition: opacity 200ms ease-in-out 0s;
  z-index: 100;
}
#footer_main #to_top > .over_the_top_button > a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
}
#footer_main #to_top > .over_the_top_button > a > p {
  margin: 14px;
  font-size: 1.2rem;
  color: #FFF;
}
#footer_main #to_top > .over_the_top_button > a::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: calc((80px - 20px) / 2);
}
@media screen and (max-width: 810px) {
  #footer_main #to_top {
    position: relative;
    width: calc(100vW - 30px);
    height: 48px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer_main #to_top > .over_the_top_button {
    right: 0;
    width: 48px;
    height: 48px;
  }
  #footer_main #to_top > .over_the_top_button > a > p {
    margin: 6px;
    font-size: 0.8rem;
    color: #FFF;
  }
  #footer_main #to_top > .over_the_top_button > a::after {
    content: "";
    width: 14px;
    height: 14px;
    border-top: solid 1px white;
    border-right: solid 1px white;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: calc((48px - 14px) / 2);
  }
}
#footer_main > img {
  height: calc(318px / 2);
}
#footer_main > .footer_image_area {
  width: 100%;
  height: 159px;
  background-image: url(/images/commons/footer_img_2x.png) !important;
  background-position-x: center;
  background-size: cover;
}
@media screen and (max-width: 810px) {
  #footer_main > .footer_image_area {
    height: 80px;
    background-image: url(/images/commons/footer_img_2x.png);
    background-position: right 10% center;
  }
}
#footer_main > #footer_nav {
  width: 100%;
  background-color: #666 !important;
}
@media print, screen and (min-width: 811px) {
  #footer_main > #footer_nav > .footer_nav_area {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  #footer_main > #footer_nav > .footer_nav_area > .footer_nav_title {
    display: flex;
    justify-content: space-between;
  }
  #footer_main > #footer_nav > .footer_nav_area > .footer_nav_title > ul {
    display: flex;
    width: calc(40px * 2 + 20px);
    justify-content: space-between;
  }
  #footer_main > #footer_nav > .footer_nav_area > .footer_nav_title > ul > li {
    width: 40px;
    height: 40px;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav {
    height: 340px;
    margin-top: 40px;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul {
    display: flex;
    border-right: dashed 1px #FFF;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li {
    padding-left: 8px;
    padding-right: 10px;
    border-left: dashed 1px #FFF;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li:nth-of-type(2) {
    flex-grow: 1;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li:nth-of-type(3) {
    flex-grow: 4;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li:nth-of-type(4) {
    flex-grow: 1;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li a {
    color: #FFF !important;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li > p {
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 1.4rem;
    color: #FFF !important;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 306px;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li > ul > li p {
    padding-left: 8px;
    font-size: 1.2rem;
    line-height: 2.5rem;
    color: #FFF !important;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li > ul > li p > a {
    text-decoration: none;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li > ul > li p > a:hover {
    text-decoration: underline;
  }
  #footer_main > #footer_nav > .footer_nav_area > nav > ul > li > ul > li > ul > li {
    padding-left: 1rem;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution > img {
    margin-right: 6px;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution > p {
    line-height: 1.6rem;
    color: #FFF !important;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution > p > a {
    color: #FFF !important;
  }
}
@media screen and (max-width: 810px) {
  #footer_main > #footer_nav > .footer_nav_area {
    height: auto;
    padding-top: 25px;
    padding-bottom: 30px;
  }
  #footer_main > #footer_nav > .footer_nav_area > .footer_nav_title > a > img {
    width: 68%;
  }
  #footer_main > #footer_nav > .footer_nav_area > .footer_nav_title > ul {
    display: none;
  }
  #footer_main > #footer_nav > .footer_nav_area nav {
    display: none;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution {
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution > img {
    width: 30px;
    height: 30px;
    margin-right: 6px;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution > p {
    font-size: 0.8rem;
    line-height: 1.4rem;
    color: #FFF;
  }
  #footer_main > #footer_nav > .footer_nav_area .footer_nav_caution > p > a {
    color: #FFF;
  }
}
#footer_main > address {
  font-style: normal;
}
@media print, screen and (min-width: 811px) {
  #footer_main > address {
    display: flex;
    padding-top: 34px;
    align-items: center;
  }
  #footer_main > address > img {
    margin-right: 44px;
  }
  #footer_main > address > p {
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 810px) {
  #footer_main > address {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #footer_main > address > img {
    width: 100%;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #footer_main > address > p {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}
#footer_main .copyright {
  padding-top: 16px;
  padding-bottom: 14px;
}
@media print, screen and (min-width: 811px) {
  #footer_main .copyright > p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 810px) {
  #footer_main .copyright > p {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
}
/*# sourceMappingURL=common.css.map */