@charset "UTF-8";
/* ==================================================

 reset

================================================== */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}


h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}


ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

embed, object, iframe {
  border: 0;
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled], [type=button][disabled], [type=reset][disabled], [type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ==================================================

 変数

================================================== */
@media screen and (max-width: 1023px) {
  :root {
    --fs_ss: 1.2rem;
    --fs_sm: 1.2rem;
    --fs_md: 1.4rem;
    --fs_lg: 1.6rem;
    --fs_xl: 1.8rem;
    --fs_xxl: 2.0rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --fs_ss: 1.2rem;
    --fs_sm: 1.4rem;
    --fs_md: 1.6rem;
    --fs_lg: 1.8rem;
    --fs_xl: 2.0rem;
    --fs_xxl: 2.2rem;
  }
}
/* ==================================================

 共通パーツ

================================================== */
/* html/body/全体 */
html {
  height: 100%;
  font-size: 62.5%;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

body {
  height: 100%;
  font-family: Noto Sans JP, YuGothic, Yu Gothic, Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", メイリオ, Meiryo, sans-serif;
  font-size: 1.6em;
  color: #393e40;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4em;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: メイリオ, Meiryo, Noto Sans JP, YuGothic, Yu Gothic, Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", sans-serif;
  }
}
#container, #main_container {
  width: 100%;
}

.site_base_w {
  width: 100%;
  max-width: 1200px;
}

/* display */
.d_block {
  display: block;
}

.d_inline_block {
  display: inline-block;
}

.d_none {
  display: none;
}

.d_table {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 0;
}
.d_table .d_cell {
  display: table-cell;
  font-size: var(--fs_md);
  vertical-align: middle;
}

.clearfix::after {
  display: block;
  content: "";
  height: 0;
  clear: both;
  visibility: hidden;
}

/* margin */
.my_auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx_auto {
  margin-left: auto;
  margin-right: auto;
}

.ml_auto {
  margin-left: auto;
}

.mr_auto {
  margin-right: auto;
}

.mt_5 {
  margin-top: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_5 {
  margin-bottom: 5px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.ml_5 {
  margin-left: 5px;
}

.ml_10 {
  margin-left: 10px;
}

.ml_20 {
  margin-left: 20px;
}

.mr_5 {
  margin-right: 5px;
}

.mr_10 {
  margin-right: 10px;
}

.mr_20 {
  margin-right: 20px;
}

/* padding */
.p_5 {
  padding: 5px;
}

.p_10 {
  padding: 10px;
}

.p_15 {
  padding: 15px;
}

.p_20 {
  padding: 20px;
}

/* size */
.w_100 {
  width: 100%;
}

/* color */
.white {
  color: #fff;
}

.black {
  color: #393e40;
}

.gray {
  color: #999;
}

.red {
  color: #c7000b;
}

.bg_white {
  background-color: #fff;
}

.bg_black {
  background-color: #393e40;
}

.bg_gray {
  background-color: #f2f2f2;
}

.bg_red {
  background-color: #c7000b;
}

.bg_dark_mask {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* text */
.fs_ss {
  font-size: var(--fs_ss);
}

.fs_sm {
  font-size: var(--fs_sm);
}

.fs_md {
  font-size: var(--fs_md);
}

.fs_lg {
  font-size: var(--fs_lg);
}

.fs_xl {
  font-size: var(--fs_xl);
}

.fs_xxl {
  font-size: var(--fs_xxl);
}

.bold {
  font-weight: bold;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_just {
  text-align: justify;
}

.ls_0 {
  letter-spacing: 0;
}

.txt_ind {
  padding-left: 1em;
  text-indent: -1em;
}

.txt_elli {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.txt_link {
  display: inline-block;
  position: relative;
  width: auto;
  font-weight: bold;
  transition: color 0.3s ease-out;
}
.txt_link::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #c7000b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 1024px) {
  .txt_link:hover {
    color: #c7000b;
  }
  .txt_link:hover::after {
    transform: scale(1, 1);
  }
}

@media screen and (max-width: 1023px) {
  #outer .txt_link {
    color: #c7000b;
  }
  #outer .txt_link::after {
    transform: scale(1, 1);
  }
}

/* border */
.border {
  border: 1px #ccdee5 solid;
}

.border_top {
  border-top: 1px #ccdee5 solid;
}

.border_bottom {
  border-bottom: 1px #ccdee5 solid;
}

.border_left {
  border-left: 1px #ccdee5 solid;
}

.border_right {
  border-right: 1px #ccdee5 solid;
}

.border_red {
  border: 1px #c7000b solid;
}

.border_red_top {
  border-top: 1px #c7000b solid;
}

.border_red_bottom {
  border-bottom: 1px #c7000b solid;
}

.border_red_left {
  border-left: 1px #c7000b solid;
}

.border_red_right {
  border-right: 1px #c7000b solid;
}

/* パンくず */
.breadcrumbs {
  margin-bottom: 40px;
  padding: 10px 0;
}
@media screen and (max-width: 1023px) {
  .breadcrumbs {
    margin-bottom: 0;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 479px) {
  .breadcrumbs {
    padding: 10px;
  }
}
.breadcrumbs .txt_link {
  font-size: var(--fs_sm);
  font-weight: normal;
}
.breadcrumbs .arrow {
  display: inline-block;
  margin: 0 10px;
  width: auto;
}

/* btn */
.btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  width: 50%;
  font-size: var(--fs_lg);
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  color: #fff;
  background-color: #c7000b;
  border: 1px #c7000b solid;
  transition: background 0.3s;
}
.btn:hover {
  color: #c7000b;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 10px 0;
    width: 90%;
  }
}

.btn.disabled_btn {
  color: #999;
  background-color: #393e40;
  border: 1px #393e40 solid;
  pointer-events: none;
}

/* top h1 */
.article_top_wrap {
  position: relative;
  background: no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .article_top_wrap {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .article_top_wrap {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .article_top_wrap {
    margin-bottom: 20px;
  }
}
.article_top_wrap::before {
  display: block;
  content: "";
}
@media screen and (min-width: 1024px) {
  .article_top_wrap::before {
    padding-top: 25%;
  }
}
@media screen and (max-width: 1023px) {
  .article_top_wrap::before {
    padding-top: 37.5%;
  }
}
.article_top_wrap div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1023px) {
  .article_top_wrap div {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .article_top_wrap div {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.article_top_wrap div .title_txt_box {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1.2em;
  font-size: 4rem;
}
@media screen and (max-width: 1023px) {
  .article_top_wrap div .title_txt_box {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .article_top_wrap div .title_txt_box {
    font-size: 3rem;
  }
}
@media screen and (max-width: 479px) {
  .article_top_wrap div .title_txt_box {
    font-size: 2.2rem;
  }
}
.article_top_wrap div .title_txt_box span {
  display: block;
  font-size: 4rem;
}
@media screen and (max-width: 1023px) {
  .article_top_wrap div .title_txt_box span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .article_top_wrap div .title_txt_box span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 479px) {
  .article_top_wrap div .title_txt_box span {
    font-size: 2.2rem;
  }
}
.article_top_wrap div .title_txt_box span:nth-child(2) {
  animation-delay: 0.03s;
}
.article_top_wrap div .title_txt_box span:nth-child(3) {
  animation-delay: 0.06s;
}
.article_top_wrap div .title_txt_box span:nth-child(4) {
  animation-delay: 0.09s;
}
.article_top_wrap div .title_txt_box span:nth-child(5) {
  animation-delay: 0.12s;
}
.article_top_wrap div .title_txt_box span:nth-child(6) {
  animation-delay: 0.15s;
}
.article_top_wrap div .title_txt_box span:nth-child(7) {
  animation-delay: 0.18s;
}
.article_top_wrap div .title_txt_box span:nth-child(8) {
  animation-delay: 0.21s;
}
.article_top_wrap div .title_txt_box span:nth-child(9) {
  animation-delay: 0.24s;
}
.article_top_wrap div .title_txt_box span:nth-child(10) {
  animation-delay: 0.27s;
}
.article_top_wrap div .title_txt_box span:nth-child(11) {
  animation-delay: 0.3s;
}
.article_top_wrap div .title_txt_box span:nth-child(12) {
  animation-delay: 0.33s;
}
.article_top_wrap div .title_txt_box span:nth-child(13) {
  animation-delay: 0.36s;
}
.article_top_wrap div .title_txt_box span:nth-child(14) {
  animation-delay: 0.39s;
}
.article_top_wrap div .title_txt_box span:nth-child(15) {
  animation-delay: 0.42s;
}
.article_top_wrap div .title_txt_box span:nth-child(16) {
  animation-delay: 0.45s;
}
.article_top_wrap div .title_txt_box span:nth-child(17) {
  animation-delay: 0.48s;
}
.article_top_wrap div .title_txt_box span:nth-child(18) {
  animation-delay: 0.51s;
}
.article_top_wrap div .title_txt_box span:nth-child(19) {
  animation-delay: 0.54s;
}
.article_top_wrap div .title_txt_box span:nth-child(20) {
  animation-delay: 0.57s;
}

/* animate付き見出し */
.animate_head_line {
  font-size: 0;
}
.animate_head_line span {
  display: inline-block;
}
.animate_head_line span:nth-child(2) {
  animation-delay: 0.03s;
}
.animate_head_line span:nth-child(3) {
  animation-delay: 0.06s;
}
.animate_head_line span:nth-child(4) {
  animation-delay: 0.09s;
}
.animate_head_line span:nth-child(5) {
  animation-delay: 0.12s;
}
.animate_head_line span:nth-child(6) {
  animation-delay: 0.15s;
}
.animate_head_line span:nth-child(7) {
  animation-delay: 0.18s;
}
.animate_head_line span:nth-child(8) {
  animation-delay: 0.21s;
}
.animate_head_line span:nth-child(9) {
  animation-delay: 0.24s;
}
.animate_head_line span:nth-child(10) {
  animation-delay: 0.27s;
}
.animate_head_line span:nth-child(11) {
  animation-delay: 0.3s;
}
.animate_head_line span:nth-child(12) {
  animation-delay: 0.33s;
}
.animate_head_line span:nth-child(13) {
  animation-delay: 0.36s;
}
.animate_head_line span:nth-child(14) {
  animation-delay: 0.39s;
}
.animate_head_line span:nth-child(15) {
  animation-delay: 0.42s;
}
.animate_head_line span:nth-child(16) {
  animation-delay: 0.45s;
}
.animate_head_line span:nth-child(17) {
  animation-delay: 0.48s;
}
.animate_head_line span:nth-child(18) {
  animation-delay: 0.51s;
}
.animate_head_line span:nth-child(19) {
  animation-delay: 0.54s;
}
.animate_head_line span:nth-child(20) {
  animation-delay: 0.57s;
}

/* box */
section .section_title {
  font-size: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  animation-fill-mode: forwards;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  section .section_title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1023px) {
  section .section_title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  section .section_title {
    margin-bottom: 20px;
  }
}
section .section_title span {
  display: inline-block;
  line-height: 1.2em;
  font-size: 4rem;
}
@media screen and (max-width: 1023px) {
  section .section_title span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  section .section_title span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 479px) {
  section .section_title span {
    font-size: 2.2rem;
  }
}
section .section_title span:nth-child(2) {
  animation-delay: 0.03s;
}
section .section_title span:nth-child(3) {
  animation-delay: 0.06s;
}
section .section_title span:nth-child(4) {
  animation-delay: 0.09s;
}
section .section_title span:nth-child(5) {
  animation-delay: 0.12s;
}
section .section_title span:nth-child(6) {
  animation-delay: 0.15s;
}
section .section_title span:nth-child(7) {
  animation-delay: 0.18s;
}
section .section_title span:nth-child(8) {
  animation-delay: 0.21s;
}
section .section_title span:nth-child(9) {
  animation-delay: 0.24s;
}
section .section_title span:nth-child(10) {
  animation-delay: 0.27s;
}
section .section_title span:nth-child(11) {
  animation-delay: 0.3s;
}
section .section_title span:nth-child(12) {
  animation-delay: 0.33s;
}
section .section_title span:nth-child(13) {
  animation-delay: 0.36s;
}
section .section_title span:nth-child(14) {
  animation-delay: 0.39s;
}
section .section_title span:nth-child(15) {
  animation-delay: 0.42s;
}
section .section_title span:nth-child(16) {
  animation-delay: 0.45s;
}
section .section_title span:nth-child(17) {
  animation-delay: 0.48s;
}
section .section_title span:nth-child(18) {
  animation-delay: 0.51s;
}
section .section_title span:nth-child(19) {
  animation-delay: 0.54s;
}
section .section_title span:nth-child(20) {
  animation-delay: 0.57s;
}
section .section_box {
  position: relative;
  transition: padding 0.3s;
  overflow: hidden;
}
section .section_box::before {
  display: block;
  content: "";
  width: 100%;
  background: no-repeat center center;
  background-size: cover;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section .section_box::before {
    padding-top: 75%;
  }
}
@media screen and (max-width: 767px) {
  section .section_box::before {
    padding-top: 37.5%;
  }
}
section .section_box:hover::before {
  transform: scale(1.2);
}
section .section_box a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
  section .section_box a {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
section .section_box a span {
  font-size: 2.8rem;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: 1.5em;
}
@media screen and (max-width: 1199px) {
  section .section_box a span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  section .section_box a span {
    font-size: 2rem;
    color: #c7000b;
  }
}
section .section_box a span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  margin: auto;
  width: 30%;
  height: 4px;
  background: #c7000b;
  border-radius: 2px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1023px) {
  section .section_box a span::after {
    bottom: -5px;
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 1024px) {
  section .section_box:hover a {
    width: calc(100% - 30px);
    height: calc(100% - 30px );
  }
  section .section_box:hover a span {
    color: #c7000b;
  }
  section .section_box:hover a span::after {
    transform: scale(1, 1);
  }
}

/* コンテンツ内追従メニュー */
.sub_menu_wrap {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.5s;
  opacity: 0;
  z-index: 10;
}
.sub_menu_wrap.active {
  transform: translateY(0%);
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .sub_menu_wrap .sub_menu_list li {
    float: left;
    width: 20%;
  }
  .sub_menu_wrap .sub_menu_list li a {
    padding: 10px 0;
    color: #fff;
    transition: opacity 0.3s;
  }
  .sub_menu_wrap .sub_menu_list li a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1023px) {
  .sub_menu_wrap .sub_menu_title {
    padding: 10px 0;
    line-height: 2.4rem;
  }
  .sub_menu_wrap .sub_menu_title::after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    margin-left: 10px;
    content: "";
    font-size: 2rem;
    font-weight: 900;
    vertical-align: middle;
  }
  .sub_menu_wrap .sub_menu_title.open::after {
    content: "";
  }
  .sub_menu_wrap .sub_menu_list {
    background-color: #fff;
  }
  .sub_menu_wrap .sub_menu_list li {
    border-bottom: 1px #ccdee5 solid;
  }
  .sub_menu_wrap .sub_menu_list li a {
    padding: 10px 0;
    line-height: 2.4rem;
    color: #c7000b;
    background-color: #fff;
    transition: opacity 0.3s;
  }
  .sub_menu_wrap .sub_menu_list li a:hover {
    opacity: 0.8;
  }
}

/* formパーツ */
input[type=text], input[type=tel], input[type=email], textarea, select {
  display: inline-block;
  padding: 10px 15px;
  width: 100%;
  font-size: var(--fs_md);
  color: #393e40;
  background-color: #fff;
  border: 1px #ccdee5 solid;
  border-radius: 5px;
}

textarea {
  min-width: 100%;
  max-width: 100%;
}

input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, textarea:focus, textarea:focus {
  background-color: #f7ebec;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

select::-ms-expand {
  display: none;
}

.form_select {
  position: relative;
}
.form_select::before, .form_select::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  margin-top: auto;
  margin-bottom: auto;
  width: 10px;
  height: 2px;
  background-color: #393e40;
  border-radius: 1px;
}
.form_select::before {
  right: 16px;
  transform: rotate(45deg);
}
.form_select::after {
  right: 10px;
  transform: rotate(-45deg);
}

.control_form input[type=radio],
.control_form input[type=checkbox] {
  display: inline;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}
.control_form input[type=radio] ~ .control_txt::before,
.control_form input[type=checkbox] ~ .control_txt::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #f2f2f2;
  border: 2px #f2f2f2 solid;
  vertical-align: bottom;
}
.control_form input[type=radio] ~ .control_txt::before {
  border-radius: 50%;
}
.control_form input[type=radio]:checked ~ .control_txt::before,
.control_form input[type=checkbox]:checked ~ .control_txt::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-width='3' points='2,7.3 7.3,12.7 18,2 '/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 3px 4px;
  background-size: 80%;
  background-color: #c7000b;
  border: 2px #c7000b solid;
}
.control_form input[type=radio]:checked ~ .control_txt,
.control_form input[type=checkbox]:checked ~ .control_txt,
.control_form .control_txt:hover {
  cursor: pointer;
  color: #c7000b;
}
.control_form .control_txt {
  display: inline-block;
  position: relative;
  padding-left: 2.8rem;
  vertical-align: middle;
  transition: all 0.3s;
}

.required {
  display: inline-block;
  margin-left: 5px;
  padding: 4px 8px 6px;
  font-size: var(--fs_ss);
  color: #fff;
  background-color: #c7000b;
  border-radius: 5px;
}

#announcement {
  margin: 40px 0;
  padding: 20px;
  height: 300px;
  border: 1px #ccc solid;
  border-radius: 5px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  #announcement {
    margin: 20px 0 30px;
  }
}
#announcement h4 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #announcement h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 479px) {
  #announcement h4 {
    font-size: 1.6rem;
  }
}
#announcement .txt_box {
  margin: 20px 0;
}
#announcement ol li:not(:last-child) {
  margin-bottom: 20px;
}

/* other */
.round {
  border-radius: 5px;
}

/* ==================================================

 共通ヘッダー

================================================== */
header {
  /*position: fixed;*/
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  header {
    display: block;
    background-color: #fff;
  }
}
header .header_box {
  display: flex;
  flex-wrap: wrap;
  /*position: absolute;*/
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 1023px) {
  header .header_box {
    align-items: center;
  }
}
header .header_box .logo {
  padding: 15px 20px;
  width: 35%;
  z-index: 10;
}
@media screen and (max-width: 479px) {
  header .header_box .logo {
    padding: 10px 15px;
    width: 40%;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  header .header_box .logo {
    width: 40%;
  }
}
header .header_box .logo .logo_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .header_box .logo .logo_box img {
  max-width: 300px;
  vertical-align: middle;
}
header .header_box .head_btn {
  width: 65%;
}
@media screen and (max-width: 479px) {
  header .header_box .head_btn {
    padding: 10px 15px;
    width: 60%;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  header .header_box .head_btn {
    width: 60%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  header .header_box .head_btn {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .head_btn .btn_menu {
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (max-width: 1023px) {
  header .header_box .head_btn .btn_menu {
    z-index: 10;
  }
  header .header_box .head_btn .btn_menu .btn_icon {
    display: block;
    position: relative;
    width: 40px;
    min-height: 40px;
    cursor: pointer;
    z-index: 10;
  }
  header .header_box .head_btn .btn_menu .btn_icon span {
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #c7000b;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
    z-index: 10;
  }
  header .header_box .head_btn .btn_menu .btn_icon span:nth-child(2) {
    top: 18px;
  }
  header .header_box .head_btn .btn_menu .btn_icon span:last-child {
    top: 32px;
  }
  header .header_box .head_btn .btn_menu .btn_icon.active span:first-child, header .header_box .head_btn .btn_menu .btn_icon.active span:nth-child(2), header .header_box .head_btn .btn_menu .btn_icon.active span:last-child {
    background-color: #c7000b;
    top: 20px;
    right: 10px;
  }
  header .header_box .head_btn .btn_menu .btn_icon.active span:first-child {
    transform: rotate(-45deg);
  }
  header .header_box .head_btn .btn_menu .btn_icon.active span:nth-child(2), header .header_box .head_btn .btn_menu .btn_icon.active span:last-child {
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu {
    width: 100%;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item {
    float: left;
    width: 20%;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item a {
    position: relative;
    display: block;
    padding: 15px 0;
    line-height: 50px;
    transition: all 0.3s ease-out;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    margin: auto;
    width: 70%;
    height: 4px;
    background: #c7000b;
    border-radius: 2px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item a:hover {
    color: #c7000b;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item a:hover::after {
    transform: scale(1, 1);
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 20px 0;
    width: 100%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.9);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title, header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list {
    width: calc(100% / 3);
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    font-size: 4.6rem;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title a {
    display: inline-block;
    position: relative;
    width: auto;
    font-weight: bold;
    transition: color 0.3s ease-out;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #c7000b;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title a:hover {
    color: #c7000b;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list {
    border-left: 2px #c7000b solid;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li {
    padding: 0 20px;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li:not(:last-child) {
    margin-bottom: 15px;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li a {
    display: inline-block;
    position: relative;
    width: auto;
    font-weight: bold;
    transition: color 0.3s ease-out;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #c7000b;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li a:hover {
    color: #c7000b;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li .inner_list_title {
    display: block;
    padding: 5px;
    color: #fff;
    background-color: #c7000b;
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box::before, header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box::after {
    display: block;
    position: absolute;
    top: 0;
    width: 9999px;
    height: 100%;
    content: "";
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box::before {
    left: -9999px;
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box::after {
    right: -9999px;
  }
}
@media screen and (min-width: 1024px) {
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:hover .inner_menu_box {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  header .header_box .slide_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-100%);
    transition: transform 0.5s;
    opacity: 0;
  }
  header .header_box .slide_menu .inner_menu_wrap {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item {
    background-color: #fff;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item {
    position: relative;
    border-bottom: 1px #ccdee5 solid;
    transition: background-color 0.3s;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item a {
    display: inline-block;
    padding: 10px;
    font-size: var(--fs_lg);
    font-weight: bold;
    line-height: 24px;
    color: #c7000b;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item::after {
    position: absolute;
    top: 0;
    right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "";
    font-size: 2rem;
    font-weight: 900;
    line-height: 44px;
    color: #c7000b;
    transition: all 0.3s;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item.open {
    background-color: #c7000b;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item.open a, header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item.open::after {
    color: #fff;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .nav_item.open::after {
    position: absolute;
    top: 0;
    right: 10px;
    content: "";
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:last-child .nav_item::after {
    content: "";
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:last-child .nav_item a {
    display: block;
    text-align: left;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:last-child .nav_item.open {
    background-color: #fff;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:last-child .nav_item.open a, header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:last-child .nav_item.open::after {
    color: #c7000b;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item:last-child .nav_item.open::after {
    content: "";
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box {
    border-bottom: 2px #ccdee5 solid;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .mega_title {
    display: none;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list li:not(:last-child) {
    border-bottom: 1px #ccdee5 solid;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list a, header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list .inner_list_title {
    display: block;
    padding: 10px;
    font-size: var(--fs_md);
    line-height: 24px;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list a {
    position: relative;
    font-weight: bold;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list a::after {
    position: absolute;
    top: 0;
    right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "";
    font-size: 2rem;
    font-weight: 900;
    line-height: 44px;
  }
  header .header_box .slide_menu .inner_menu_wrap .inner_menu_item .inner_menu_box .inner_menu_list .inner_list_title {
    color: #c7000b;
    background-color: #f2f2f2;
    border-top: 1px #ccdee5 solid;
  }
  header .header_box .slide_menu.active {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* ==================================================

 共通フッター

================================================== */
footer {
  position: relative;
}
@media screen and (min-width: 1024px) {
  footer .goto_top {
    display: block;
    position: absolute;
    top: -70px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: var(--fs_xl);
    line-height: 50px;
    border: 1px #c7000b solid;
    transition: all 0.3s;
  }
  footer .goto_top:hover {
    color: #c7000b;
    background-color: #fff;
  }
}
@media screen and (max-width: 1023px) {
  footer .goto_top {
    display: block;
    width: 100%;
    height: 30px;
    font-size: var(--fs_xl);
    line-height: 30px;
  }
}
footer .site_map_wrap, footer .privacy_wrap {
  width: 100%;
  max-width: 1200px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  footer .site_map_wrap, footer .privacy_wrap {
    padding: 0 20px;
  }
}
footer .site_map_wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .site_map_wrap {
    display: none;
  }
}
footer .site_map_wrap .site_map_list {
  float: left;
  width: 25%;
}
footer .site_map_wrap .site_map_list .list_title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 2rem;
  font-size: var(--md);
}
footer .site_map_wrap .site_map_list .list_title::before {
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/symbol_icon.svg");
}
footer .site_map_wrap .site_map_list dd {
  margin-bottom: 10px;
  padding-left: 2rem;
}
footer .site_map_wrap .site_map_list dd a {
  font-weight: normal;
}
footer .site_map_wrap .site_map_list dd + dt {
  margin: 30px 0 10px;
  padding-left: 2rem;
}
footer .privacy_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .privacy_wrap {
    margin-bottom: 10px;
  }
}
footer .privacy_wrap .privacy_box {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  footer .privacy_wrap .privacy_box {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  footer .privacy_wrap .privacy_box {
    margin-top: 10px;
    padding: 0 40px;
    width: 100%;
  }
}
footer .privacy_wrap .privacy_box img {
  float: left;
  width: 15%;
}
footer .privacy_wrap .privacy_box figcaption {
  float: left;
  padding-left: 20px;
  width: 85%;
}
footer .privacy_wrap .privacy_box figcaption a {
  margin-top: 10px;
}
footer .privacy_wrap .sns_box {
  width: 50%;
  text-align: right;
}
footer .privacy_wrap .sns_box img {
  width: 7%;
}
footer .privacy_wrap .sns_box img:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  footer .privacy_wrap .sns_box {
    width: 30%;
  }
  footer .privacy_wrap .sns_box img {
    width: 15%;
  }
}
@media screen and (max-width: 767px) {
  footer .privacy_wrap .sns_box {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}
footer .link_wrap, footer .copyright {
  padding: 15px 0;
}
footer .link_wrap a, footer .copyright a {
  font-weight: normal;
}