/* -----------------------------------
  common
----------------------------------- */
:root {
  /* space */
  --space: 80px;
  --space-xs: calc(var(--space) * 1/8); /* 10px */
  --space-sm: calc(var(--space) * 1/4); /* 20px */
  --space-md: calc(var(--space) * 2/4); /* 40px */
  --space-lg: calc(var(--space) * 3/4); /* 60px */
}
@media screen and (max-width: 960px) {
  :root {
    /* space */
    --space: 15.385vw;
    --space-xs: calc(var(--space) * 1/6); /* 10px */
  }
}

html {
  font-size: 62.5%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  html {
    font-size: 100%;
  }
}
body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #07132C;
}

.fs_xs { font-size: 1.6rem; }
.fs_sm { font-size: 2.0rem; }
.fs_md { font-size: 2.4rem; }
.fs_lg { font-size: 2.8rem; }
.fs_xl { font-size: 3.2rem; }
.fs_big  { font-size: 4.0rem; }
.fw_b { font-weight: bold; }
.ta_center { text-align: center; }
.ta_left { text-align: left; }
.ta_right { text-align: right; }
@media screen and (max-width: 960px) {
  .fs_xs { font-size: 3.077vw; }
  .fs_sm { font-size: 3.590vw; }
  .fs_md { font-size: 4.103vw; }
  .fs_lg { font-size: 4.615vw; }
  .fs_xl { font-size: 6.154vw; }
  .fs_big  { font-size: 10.256vw; }
}

.mgn_top_xs { margin-top: var(--space-xs); }
.mgn_top_sm { margin-top: var(--space-sm); }
.mgn_top_md { margin-top: var(--space-md); }
.mgn_top_lg { margin-top: var(--space-lg); }
.mgn_top_xl { margin-top: var(--space); }
.mgn_bottom_xs { margin-bottom: var(--space-xs); }
.mgn_bottom_sm { margin-bottom: var(--space-sm); }
.mgn_bottom_md { margin-bottom: var(--space-md); }
.mgn_bottom_lg { margin-bottom: var(--space-lg); }
.mgn_bottom_xl { margin-bottom: var(--space); }
.mgn_left_xs { margin-left: var(--space-xs); }
.mgn_left_sm { margin-left: var(--space-sm); }
.mgn_left_md { margin-left: var(--space-md); }
.mgn_left_lg { margin-left: var(--space-lg); }
.mgn_left_xl { margin-left: var(--space); }
.mgn_right_xs { margin-right: var(--space-xs); }
.mgn_right_sm { margin-right: var(--space-sm); }
.mgn_right_md { margin-right: var(--space-md); }
.mgn_right_lg { margin-right: var(--space-lg); }
.mgn_right_xl { margin-right: var(--space); }

.pdg_top_xs { padding-top: var(--space-xs); }
.pdg_top_sm { padding-top: var(--space-sm); }
.pdg_top_md { padding-top: var(--space-md); }
.pdg_top_lg { padding-top: var(--space-lg); }
.pdg_top_xl { padding-top: var(--space); }
.pdg_bottom_xs { padding-bottom: var(--space-xs); }
.pdg_bottom_sm { padding-bottom: var(--space-sm); }
.pdg_bottom_md { padding-bottom: var(--space-md); }
.pdg_bottom_lg { padding-bottom: var(--space-lg); }
.pdg_bottom_xl { padding-bottom: var(--space); }
.pdg_left_xs { padding-left: var(--space-xs); }
.pdg_left_sm { padding-left: var(--space-sm); }
.pdg_left_md { padding-left: var(--space-md); }
.pdg_left_lg { padding-left: var(--space-lg); }
.pdg_left_xl { padding-left: var(--space); }
.pdg_right_xs { padding-right: var(--space-xs); }
.pdg_right_sm { padding-right: var(--space-sm); }
.pdg_right_md { padding-right: var(--space-md); }
.pdg_right_lg { padding-right: var(--space-lg); }
.pdg_right_xl { padding-right: var(--space); }

.wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space) 20px;
}

.sp { display: none; }
@media screen and (max-width: 960px) {
  .pc { display: none; }
  .sp { display: block; }
  br.sp { display: inline-block; }
}

a.txt_link {
  color: #1C4394;
  text-decoration: underline;
}
a.link_blank {
  position: relative;
  padding-right: 40px;
}
a.link_blank::after {
  position: absolute;
  right: 16px;
  bottom: 5px;
  content: '';
  display: block;
  background-image: url('../images/icon_blank.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 960px) {
  a.link_blank {
    position: relative;
    padding-right: 10.256vw;
  }
  a.link_blank::after {
    right: 4.103vw;
    bottom: 0.513vw;
    width: 4.103vw;
    height: 4.103vw;
  }
}



/* -----------------------------------
  header
----------------------------------- */
.main-visual {
  width: 100%;
  height: 100vh;
  background: url('../images/mv_pc.jpg') no-repeat right/cover;
  position: relative;
}
header .wrapper {
  padding: var(--space-sm);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.sitename {
  width: 350px;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: bold;
}
.pc_menu {
  width: calc(100% - 350px);
  padding-top: 4px;
}
.pc_menu ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
.pc_menu li {
  color: #ffffff;
  font-weight: bold;
  margin-left: var(--space-md);
}

header .h1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
header .h1 p {
  background: #ffffff;
  padding: 10px 40px 10px 120px;
  margin-bottom: 14px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 3px;
}
header .h1 p span {
  font-size: 1.8rem;
}
header .h1 h1 {
  background: #C3B087;
  padding: 18px 40px 22px 120px;
  color: #ffffff;
  font-size: 5.0rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 5px;
}
header .h1 h1 span {
  font-size: 8.0rem;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
header .h1 h1 span::before {
  position: absolute;
  left: 0;
  bottom: 8px;
  content: '';
  display: block;
  background-image: url('../images/kakko_l.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 36px;
  height: 71px;
}
header .h1 h1 span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  background-image: url('../images/kakko_r.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 36px;
  height: 71px;
}
header .mv_contact {
  padding: 44px 0 86px 120px;
}
@media screen and (max-width: 1500px) {
  header .h1 p {
    padding: 10px 40px 10px 6.667vw;
  }
  header .h1 h1 {
    padding: 18px 40px 22px 6.667vw;
  }
  header .mv_contact {
    padding: 2vw 0 2.667vw 6.667vw;
  }
}
@media screen and (max-width: 1200px) {
  .sitename {
    width: 29.167vw;
    font-size: 2.333vw;
  }
  .pc_menu {
    width: calc(100% - 29.167vw);
    padding-top: 0.333vw;
  }
  .pc_menu li {
    font-size: 2vw;
  }
  header .h1 p {
    margin-bottom: 1.167vw;
    font-size: 1.833vw;
    letter-spacing: 0.25vw;
  }
  header .h1 p span {
    font-size: 1.5vw;
  }
  header .h1 h1 {
    font-size: 4.167vw;
    letter-spacing: 0.417vw;
  }
  header .h1 h1 span {
    font-size: 6.667vw;
    padding: 0 3.333vw;
  }
  header .h1 h1 span::before {
    bottom: 0.667vw;
    width: 3vw;
    height: 5.917vw;
  }
  header .h1 h1 span::after {
    width: 3vw;
    height: 5.917vw;
  }
}
@media screen and (max-width: 960px) {
  .main-visual {
    height: auto;
    background: url('../images/mv_sp.jpg') no-repeat top/100%;
  }
  .main-visual .wrapper {
    aspect-ratio: 156 / 169;
    position: relative;
  }
  .sitename {
    width: 100%;
    font-size: 5.128vw;
  }
  nav.menu .sitename {
    position: absolute;
    top: 0;
    left: 0;
    padding: var(--space-sm) 0 0  var(--space-sm);
  }
  .pc_menu {
    display: none;
  }
  header .h1 {
    position: static;
  }
  header .h1_txt {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffffff;
    padding: 1.026vw 5.128vw 2.051vw;
    margin-bottom: 8.178vw;
    font-size: 4.103vw;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1px;
  }
  header .h1_txt span {
    font-size: 3.077vw;
  }
  header .h1 h1 {
    padding: 7.692vw 0;
    font-size: 6.154vw;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.513vw;
  }
  header .h1 h1 span {
    font-size: 8.205vw;
    padding: 0 5.128vw;
  }
  header .h1 h1 span::before {
    bottom: 2.051vw;
    width: 3.59vw;
    height: 7.179vw;
  }
  header .h1 h1 span::after {
    width: 3.59vw;
    height: 7.179vw;
  }
  header .mv_contact {
    display: none;
  }
}



/* -----------------------------------
  button
----------------------------------- */
a.contact_btn {
  display: inline-block;
  width: 100%;
  max-width: 432px;
  background: #ffffff;
  color: #5B4414;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 86px;
  padding-bottom: 4px;
  box-shadow: 8px 10px 0 #C3B087;
  transition: .2s;
}
a.contact_btn:hover {
  background: #C3B087;
  box-shadow: unset;
  transform: translate(7px, 9px);
}
a.contact_btn:active {
  background: #A89875;
}
a.contact_btn span {
  position: relative;
  padding-right: 26px;
}
a.contact_btn span::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  content: '';
  display: block;
  background-image: url('../images/icon_blank.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 960px) {
  a.contact_btn {
    max-width: 77.949vw;
    font-size: 6.154vw;
    line-height: 14.872vw;
    padding-bottom: 0.513vw;
    box-shadow: 1.538vw 2.051vw 0 #C3B087;
  }
  a.contact_btn:hover {
    background: #ffffff;
    box-shadow: 1.538vw 2.051vw 0 #C3B087;
    transform: unset;
  }
  a.contact_btn span {
    padding-right: 6.667vw;
  }
  a.contact_btn span::after {
    bottom: 2.051vw;
    width: 4.103vw;
    height: 4.103vw;
  }
}

/* floating button ---------------- */
#scrollButton {
  display: none;
  position: fixed;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
}
#scrollButton .floating_btn {
  display: block;
  background: #ffffff;
  color: #222222;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 15px 40px 15px 32px;
  border-radius: 8px 0 0 8px;
  border-left: 16px solid #C3B087;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: .2s;
}
#scrollButton .floating_btn:hover {
  background: #C3B087;
}
#scrollButton .floating_btn:active {
  background: #A89875;
}
#scrollButton .floating_btn span {
  position: relative;
  padding-right: 26px;
}
#scrollButton .floating_btn span::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  content: '';
  display: block;
  background-image: url('../images/icon_blank.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 960px) {
  #scrollButton {
    width: 100%;
    bottom: 0;
    transform: none;
  }
  #scrollButton .floating_btn {
    width: 100%;
    font-size: 5.128vw;
    line-height: 15.385vw;
    padding: 0 5.128vw;
    border-radius: 0;
    border-left: none;
    transition: none;
    text-align: center;
  }
  #scrollButton .floating_btn:hover {
    background: #ffffff;
  }
  #scrollButton .floating_btn:active {
    background: #A89875;
  }
  #scrollButton .floating_btn span {
    padding-right: 6.667vw;
  }
  #scrollButton .floating_btn span::after {
    bottom: 1.282vw;
    width: 4.103vw;
    height: 4.103vw;
  }
}

/* sp contact --------------------- */
.sp_contact {
  padding: 6.154vw 11.026vw 8.205vw;
  background: url('../images/bg_sp_contact.png') no-repeat center/cover;
}



/* -----------------------------------
  sp menu
----------------------------------- */
.hamburger {
  display: none;
  position: fixed;
  top: 5.128vw;
  right: 5.128vw;
  width: 10.256vw;
  height: 8.974vw;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 1.026vw;
  background: #ffffff;
  margin: 2.051vw 0;
  border-radius: 0.513vw;
  transition: 0.4s;
}

/* アニメーション（×に変形） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(2.051vw, 2.051vw);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2.308vw, -2.308vw);
}

/* メニュー（初期状態は非表示） */
.menu {
  display: none;
  background: #133160;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 20.513vw;
  padding-bottom: 10.256vw;
  box-shadow: 0 1.026vw 1.538vw rgba(0,0,0,0.1);
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.menu ul li {
  padding: 5.128vw 0;
}
.menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 6.154vw;
  display: block;
}

/* オーバーレイ：背景暗くする */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 999; /* メニューより下、ハンバーガーより下 */
}

@media screen and (max-width: 960px) {
  .hamburger {
    display: block;
  }
  nav.menu {
    display: none;
  }
}



/* -----------------------------------
  contents
----------------------------------- */
.rinen_txt {
  font-size: 4.0rem;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .rinen_txt {
    font-size: 5.128vw;
  }
}

/* bg blue ------------------------ */
.bg_blue {
  background: #133160;
  color: #ffffff;
}
.bg_blue h2 {
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1;
}
.bg_blue .h2_txt {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: var(--space-xs);
}
.bg_blue h3 {
  border-bottom: 5px solid #C3B087;
  display: inline-block;
  font-weight: bold;
  margin-bottom: var(--space-sm);
}
@media screen and (max-width: 960px) {
  .bg_blue h2 {
    font-size: 5.128vw;
  }
  .bg_blue .h2_txt {
    font-size: 3.077vw;
    margin-top: var(--space-xs);
  }
  .bg_blue h3 {
    font-size: 6.154vw;
  }
}

/* column ------------------------- */
.main_column {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
}
.main_column .main_column_left {
  width: 320px;
}
.main_column .main_column_right {
  width: calc(100% - 320px);
}
.main_column .main_column_right section {
  margin-top: var(--space-md);
}
.main_column .main_column_right section:first-child {
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .main_column {
    flex-flow: row wrap;
  }
  .main_column .main_column_left {
    width: 100%;
    margin-bottom: var(--space-md);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  .main_column .main_column_left h2 {
    padding-right: 2.564vw;
  }
  #about .main_column .main_column_left h2 img {
    width: 23.077vw;
  }
  #program .main_column .main_column_left h2 img {
    width: 34.359vw;
  }
  .main_column .main_column_right {
    width: 100%;
  }
}

/* ul ----------------------------- */
.dots_ul {
  list-style: disc;
  padding-left: 4rem;
}
.dots_ul li {
  font-size: 2.3rem;
  font-weight: 400;
  margin-top: 8px;
}
.dots_ul li:first-child {
  margin-top: 0;
}
.tokuten {
  display: flex;
  flex-flow: row wrap;
}
.tokuten li {
  width: calc((100% - 20px) / 2);
  max-width: 320px;
  background: #C3B087;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 28px;
  margin-top: var(--space-sm);
  margin-right: 20px;
}
.tokuten li:first-child, .tokuten li:nth-child(2) {
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .dots_ul {
    padding-left: 5.128vw;
  }
  .dots_ul li {
    font-size: 3.590vw;
  }
  .tokuten li {
    width: 100%;
    max-width: 100%;
    padding: 4.103vw;
    margin-top: var(--space-xs);
    margin-right: 0;
    font-size: 4.103vw;
  }
  .tokuten li:nth-child(2) {
    margin-top: var(--space-xs);
  }
}

/* program ------------------------ */
.program_about {
  display: flex;
  flex-flow: row nowrap;
  font-weight: bold;
}
.program_about div {
  display: flex;
  flex-flow: row nowrap;
  font-weight: bold;
  position: relative;
  margin-right: 50px;
}
.program_about div::after {
  position: absolute;
  right: -40px;
  bottom: 16px;
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #ffffff;
  transform: rotate(-60deg);
}
.program_about div:last-child {
  margin-right: 0;
}
.program_about div:last-child::after {
  display: none;
}
.program_list li {
  margin-top: var(--space-sm);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.program_list li .program_list_icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  margin-right: var(--space-sm);
  color: #133160;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
}
.program_list li .program_list_icon .program_date_1 {
  width: 100%;
  font-size: 2.4rem;
}
.program_list li .program_list_icon .program_date_2 {
  width: 100%;
  font-size: 1.2rem;
}
.program_list li .program_list_icon .program_date_2 span {
  color: #9E2121;
}
@media screen and (max-width: 960px) {
  .program_about div {
    font-size: 4.103vw;
    margin-right: 10.256vw;
  }
  .program_about div::after {
    right: -7.692vw;
    bottom: 3.077vw;
    width: 5.128vw;
  }
  .program_list li {
    margin-top: 8.205vw;
    display: block;
  }
  .program_list li .program_list_icon {
    width: 51.282vw;
    height: 12.821vw;
    margin-right: 0;
    margin-bottom: 4.103vw;
    align-items: center;
    padding: 0 2.564vw;
  }
  .program_list li .program_list_icon .program_date_1 {
    width: 50%;
    font-size: 6.154vw;
  }
  .program_list li .program_list_icon .program_date_2 {
    width: 50%;
    font-size: 3.077vw;
  }
}



/* -----------------------------------
  results
----------------------------------- */
#results h2 {
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: var(--space-sm);
}
#results h2::before, #results h2::after {
  position: absolute;
  top: 50%;
  content: '';
  width: calc((100% - 128px) / 2);
  height: 1px;
  background: #133160;
}
#results h2::before {
  left: 0;
}
#results h2::after {
  right: 0;
}
#results .h2_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: var(--space-sm);
}
@media screen and (max-width: 960px) {
  #results h2 {
    font-size: 4.103vw;
  }
  #results h2::before, #results h2::after {
    width: calc((100% - 24.615vw) / 2);
  }
  #results .h2_txt {
    font-size: 3.59vw;
  }
}

/* slider ------------------------- */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 56 / 42;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
}
.slider {
  display: flex;
  /* width: 300%; */
  height: 100%;
  transition: transform 0.5s ease;
}
.slide {
  width: 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.slide_navi {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: calc(50% + -20px);
  transform: translateY(-50%);
  content: '';
  width: 30px;
  height: 50px;
}
.prev { left: 0; }
.next { right: 0; }
.prev::before, .next::before {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  content: '';
  width: 20px;
  height: 20px;
  border-top: 4px solid #133160;
  border-right: 4px solid #133160;
}
.prev::before {
  transform: rotate(225deg);
  left: 10px;
}
.next::before {
  transform: rotate(45deg);
  right: 10px;
}
.pagination {
  position: absolute;
  bottom: 0;
  width: calc(100% - 80px);
  text-align: center;
}
.pagination span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.pagination .active {
  background: #333;
}
@media screen and (max-width: 960px) {
  .slide_navi {
    padding: 0 5.128vw 7.692vw;
  }
  .prev, .next {
    top: calc(50% + -2.564vw);
    width: 6.41vw;
    height: 10.256vw;
  }
  .prev { left: -2.564vw; }
  .next { right: -2.564vw; }
  .prev::before, .next::before {
    margin-top: -2.564vw;
    width: 4.103vw;
    height: 4.103vw;
    border-top: 0.769vw solid #133160;
    border-right: 0.769vw solid #133160;
  }
  .prev::before {
    transform: rotate(225deg);
    left: 1.538vw;
  }
  .next::before {
    transform: rotate(45deg);
    right: 1.538vw;
  }
  .pagination {
    width: calc(100% - 10.256vw);
  }
  .pagination span {
    width: 2.051vw;
    height: 2.051vw;
  }
}



/* -----------------------------------
  detail
----------------------------------- */
#detail h2 {
  font-size: 3.2rem;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
  padding-bottom: var(--space-sm);
}
#detail dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border-bottom: 1px solid #cccccc;
}
#detail dl dt {
  width: 20%;
  padding: 24px;
  font-weight: bold;
}
#detail dl dd {
  width: 80%;
  padding: 24px;
  font-size: 2.0rem;
}
@media screen and (max-width: 960px) {
  #detail h2 {
    font-size: 6.154vw;
    padding-bottom: var(--space-sm);
  }
  #detail dl dt {
    width: 100%;
    padding: 4.103vw 2.051vw 0;
    font-size: 5.128vw;
  }
  #detail dl dd {
    width: 100%;
    padding: 0 2.051vw 4.103vw;
    font-size: 4.103vw;
  }
}



/* -----------------------------------
  footer
----------------------------------- */
footer .bg_black {
  background: #07132C;
  color: #ffffff;
}
footer .bg_black .wrapper {
  padding: var(--space-sm);
}
footer .address {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
footer .address .address_left {
  width: 480px;
  font-size: 2.0rem;
  font-weight: bold;
  padding-right: 20px;
}
footer .address .address_right {
  width: calc(100% - 480px);
  font-size: 1.6rem;
}
footer .address .address_right dl {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
footer .address .address_right dl dt {
  width: 90px;
  padding: 4px 0;
}
footer .address .address_right dl dd {
  width: calc(100% - 90px);
  padding: 4px 0;
}
@media screen and (max-width: 960px) {
  footer .bg_black .wrapper {
    padding-top: 10.256vw;
    padding-bottom: 25.641vw;
  }
  footer .address .address_left {
    width: 100%;
    font-size: 4.103vw;
    padding-right: 0;
    padding-bottom: var(--space-sm);
    text-align: center;
  }
  footer .address .address_right {
    width: 100%;
  }
  footer .address .address_right dl dt {
    width: 16.667vw;
    font-size: 3.59vw;
  }
  footer .address .address_right dl dd {
    width: calc(100% - 16.667vw);
    font-size: 3.59vw;
  }
}
