@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
}

img.climg {
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width:800px) {
  img.climg {
    image-rendering: auto;
  }
}

.test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
.onmouse {
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
}

.onmouse:hover {
  opacity: 0.6;
}

html {
  overflow-y: scroll;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

img {
  border: 0;
  vertical-align: bottom;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
  text-align: left;
  line-height: 160%;
  color: #333;
  font-feature-settings: "palt";
}

.clearfix {
  zoom: 1;
  clear: both;
}

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

/* link_nomal */
a {
  text-decoration: none;
  /*color: #333;*/
  color: white;
}

a:link {
  text-decoration: none;
  /*color: #333;*/
  color: white;
}

a:visited {
  text-decoration: none;
  /*color: #333;*/
  color: white;
}

a:hover {
  text-decoration: none;
  /*color: #333;*/
  color: white;
}

a:active {
  text-decoration: none;
  color: #333;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/**テキスト揃え**/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

.pc_only900 {
  display: block;
}

.sp_only900 {
  display: none;
}

.pc_only900_inline {
  display: inline-block;
}

.sp_only900_inline {
  display: none;
}

.pc_only1100 {
  display: block;
}

.sp_only1100 {
  display: none;
}

.pc_only1100_inline {
  display: inline-block;
}

.sp_only1100_inline {
  display: none;
}

@media screen and (max-width:900px) {
  .pc_only900 {
    display: none;
  }
  .sp_only900 {
    display: block;
  }
  .pc_only900_inline {
    display: none;
  }
  .sp_only900_inline {
    display: inline-block;
  }
}
@media screen and (max-width:1100px) {
  .pc_only1100 {
    display: none;
  }
  .sp_only1100 {
    display: block;
  }
  .pc_only1100_inline {
    display: none;
  }
  .sp_only1100_inline {
    display: inline-block;
  }
}
@media screen and (max-width:800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
.fade__up {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 30px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__top {
  -webkit-transition: all 0.6s linear 0.05s;
  transition: all 0.6s linear 0.05s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__top.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__big {
  -webkit-transition: all 1.2s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 1.2s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: scale(1.075);
}
.fade__big.active {
  opacity: 1;
  transform: scale(1);
}

.anime_a_time1 {
  clip-path: inset(0% 0% 100% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time1 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time1.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time2 {
  clip-path: inset(0% 100% 0% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time2 {
    transition: clip-path 1s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  }
}
.anime_a_time2.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time3 {
  clip-path: inset(0% 0% 0% 100% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time3 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time3.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time4 {
  clip-path: inset(100% 0% 0% 0% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time4 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time4.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.delay1 {
  transition-delay: 0s;
}

.delay2 {
  transition-delay: 0.3s;
}

.delay3 {
  transition-delay: 0.6s;
}

.delay4 {
  transition-delay: 0.9s;
}

.delay5 {
  transition-delay: 1.2s;
}

html.no-webp .backgrond_webp {
  background-image: url(../images/pc.jpg);
}
@media screen and (max-width:800px) {
  html.no-webp .backgrond_webp {
    background-image: url(../images/sp.jpg);
  }
}

.backgrond_webp {
  width: 100%;
  max-width: 680px;
  height: 420px;
  background-image: url(../images/pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:800px) {
  .backgrond_webp {
    background-image: url(../images/sp.webp);
  }
}

/*****************************************/
.f60 {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f60 {
    font-size: 7.2vw;
  }
}

.f50 {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f50 {
    font-size: 8vw;
  }
}

.f40 {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width:800px) {
  .f40 {
    font-size: 7.5vw;
  }
}

.f38 {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f38 {
    font-size: 7vw;
  }
}

.f36 {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f36 {
    font-size: 6.5vw;
  }
}

.f34 {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f34 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f32 {
    font-size: 5.7vw;
  }
}

.f30 {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f30 {
    font-size: 5vw;
  }
}

.f28 {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f28 {
    font-size: 4.9vw;
  }
}

.f26 {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f26 {
    font-size: 4.8vw;
  }
}

.f24 {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f24 {
    font-size: 4.6vw;
  }
}

.f22 {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f22 {
    font-size: 4.5vw;
  }
}

.f20 {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f20 {
    font-size: 4.4vw;
  }
}

.f18 {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f18 {
    font-size: 4.2vw;
  }
}

.f16 {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f16 {
    font-size: 3.4vw;
  }
}

.f14 {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f14 {
    font-size: 3.2vw;
  }
}

.f13 {
  font-size: 13px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f13 {
    font-size: 2.6vw;
  }
}

.f12 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f12 {
    font-size: 2.5vw;
  }
}

.f10 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f10 {
    font-size: 2.4vw;
  }
}

/*****************************************/
@media print {
  body {
    min-width: 1200px;
  }
  .fade__up {
    opacity: 1;
  }
  .fade__in {
    opacity: 1;
  }
}
/*****************************************/
header.toppc {
  width: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0 40px 0;
  z-index: 9999;
  font-family: "Noto Serif JP", serif;
  transition: all 0.4s ease-out 0.01s;
}
header.toppc.backgd {
  /*background-color: black;*/
  /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0) 100%);*/
}
header.toppc .topback_white {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  /*background-color: #fff;*/
  background: black;
}
header.toppc .topback_plan {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width:800px) {
  header.toppc .topback_white {
    height: 50px;
  }
  header.toppc .topback_plan {
    height: 50px;
  }
}
@media screen and (max-width:800px) {
  header.toppc {
    padding: 15px 0 50px 0;
  }
}
header.toppc .h1title {
  width: 110px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width:1100px) {
  header.toppc .h1title {
    width: 90px;
  }
}
@media screen and (max-width:800px) {
  header.toppc .h1title {
    width: 60px;
  }
}
header.toppc .h1title_topnew {
  width: 110px;
  position: absolute;
  top: 15px;
  left: 0;
}
@media screen and (max-width:1100px) {
  header.toppc .h1title_topnew {
    width: 90px;
  }
}
@media screen and (max-width:800px) {
  header.toppc .h1title_topnew {
    width: 80px;
    top: 5px;
  }
}
header.toppc .menubt {
  width: 80px;
  margin-left: 20px;
  transition: all 0.4s ease-out 0.01s;
}
header.toppc .menubt:hover {
  cursor: pointer;
  opacity: 0.7;
}
header.toppc .header__in {
  width: 96%;
  text-align: right;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width:800px) {
  header.toppc .header__in {
    width: 94%;
  }
}
header.toppc ul {
  width: 75%;
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width:800px) {
  header.toppc ul {
    display: none;
  }
}
header.toppc ul li {
  display: inline-block;
  margin-left: 2%;
}
header.toppc ul li a {
  color: #000;
}
header.toppc ul li:nth-child(1) {
  margin-right: 1em;
}
header.toppc ul li:nth-child(1) a {
  /*color: #000;*/
  color: white;
  display: inline-block;
  width: 100%;
  padding: 0.55em 0.5em 0.55em 0em;
  line-height: 100%;
}
#home header.toppc ul li:nth-child(1) a {
  color: white;
}
header.toppc ul li:nth-child(1) i {
  font-size: 80%;
}
header.toppc ul li:nth-child(2) {
  margin-right: 1em;
}
header.toppc ul li:nth-child(2) a {
  /*color: #000;*/
  color: white;
  display: inline-block;
  width: 100%;
  padding: 0.55em 0.5em 0.55em 0em;
  line-height: 100%;
}
#home header.toppc ul li:nth-child(2) a {
  color: white;
}
header.toppc ul li:nth-child(2) i {
  font-size: 80%;
}
header.toppc ul li:nth-child(3) {
  background-color: #ea5504;
}
header.toppc ul li:nth-child(3).topnew {
  /*background-color: #004098;*/
  background: #752c39;
  /*background: white;*/
}
#home header.toppc ul li:nth-child(3).topnew {
  /*background: white;*/
  /*background: linear-gradient(45deg,  #dc150e 0%,#c40a0a 6%,#b00300 15%,#960002 26%,#b40816 39%,#be1030 49%,#a40800 58%,#8c0700 68%,#b40816 80%,#8e1100 100%);*/
  /*background: linear-gradient(135deg,  #dc150e 0%,#8e1100 100%);*/
  background: #752c39;
}
header.toppc ul li:nth-child(3) a {
  color: #fff;
  /*color: black;*/
  display: inline-block;
  width: 100%;
  padding: 0.55em 1.5em 0.55em 1.5em;
  line-height: 100%;
}
/*#home header.toppc ul li:nth-child(3) a {
  color: black;
}*/
header.toppc ul li:nth-child(4) {
  background-color: #ab1d22;
}
header.toppc ul li:nth-child(4).topnew {
  /*background-color: #222;*/
  background:#947748;
}
#home header.toppc ul li:nth-child(4).topnew {
  /*background-color: #222;*/
  background:#947748;
  /*background: linear-gradient(135deg, #DAAF08 0%, #B67B03 100%);*/
  /*background:#B67B03;*/
  /*background: #222;*/
}
header.toppc ul li:nth-child(4) a {
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 0.55em 1.5em 0.55em 1.5em;
  line-height: 100%;
}
#home header.toppc ul li:nth-child(4) a {
  color: white;
}
#head_SP {
  height: 60px;
}
@media screen and (max-width:800px) {
  #head_SP {
    height: 0px;
  }
}

header.otehrpc {
  width: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0;
  z-index: 9999;
  font-family: "Noto Serif JP", serif;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width:800px) {
  header.otehrpc {
    display: none;
  }
}
header.otehrpc .header__in {
  width: 96%;
  text-align: right;
  margin: 0 auto;
}
header.otehrpc ul {
  width: 75%;
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}
header.otehrpc ul li {
  display: inline-block;
  margin-left: 2%;
}
header.otehrpc ul li a {
  color: #000;
}
header.otehrpc ul li:nth-child(1) {
  margin-right: 1em;
}
header.otehrpc ul li:nth-child(1) a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 0.55em 0.5em 0.55em 0em;
  line-height: 100%;
}
header.otehrpc ul li:nth-child(1) i {
  font-size: 80%;
}
header.otehrpc ul li:nth-child(2) {
  margin-right: 1em;
}
header.otehrpc ul li:nth-child(2) a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 0.55em 0.5em 0.55em 0em;
  line-height: 100%;
}
header.otehrpc ul li:nth-child(2) i {
  font-size: 80%;
}
header.otehrpc ul li:nth-child(3) {
  background-color: #ea5504;
}
header.otehrpc ul li:nth-child(3) a {
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 0.55em 1.5em 0.55em 1.5em;
  line-height: 100%;
}
header.otehrpc ul li:nth-child(4) {
  background-color: #ab1d22;
}
header.otehrpc ul li:nth-child(4) a {
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 0.55em 3em 0.55em 3em;
  line-height: 100%;
}

footer {
  background-color: #000;
  position: relative;
  z-index: 5;
}
footer .pcfooter {
  width: 100%;
  padding: 60px 0 100px 0;
}
footer .pcfooter.toponly {
  padding-bottom: 30px;
}
footer .pcfooter .section__in {
  width: 90%;
  max-width: 940px;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px auto;
  align-items: flex-end;
}
footer .pcfooter .section__in .fl01 {
  width: 31.2%;
}
footer .pcfooter .section__in .ft02 {
  width: 30%;
  margin-left: 3%;
  margin-right: 3%;
}
footer .pcfooter .section__in .ftx03 {
  line-height: 120%;
  color: #fff;
}
footer .pc_copy {
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
footer .fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .fb.jc-center {
  justify-content: center;
}
footer .fb.no-wrap {
  flex-wrap: nowrap;
}
footer .fb.jc-around {
  justify-content: space-around;
}
footer .fb.align-top {
  align-items: flex-start;
}
footer .fb.jc-start {
  justify-content: flex-start;
}
footer .fb.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .inner {
  max-width: 1000px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
footer .footer {
  letter-spacing: 0;
}
@media screen and (max-width:800px) {
  footer .footer {
    padding-bottom: 75px;
  }
}
footer .footer__phone {
  border-top: solid 1px #666;
  border-bottom: solid 1px #666;
  padding-top: 30px;
  padding-bottom: 30px;
  /**/
  background-color: #000;
  color: #fff;
  /**/
}
footer .footer__phone.topunders {
  border-top: 0;
}
footer .footer__phone.sliderbox_on {
  margin-bottom: 60px;
  /*
  border-top: none;
  border-bottom: none;
  color: #fff;
  background-color: #002b6d;
  */
}
@media screen and (max-width:800px) {
  footer .footer__phone {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
footer .footer__gallery {
  font-size: 14px;
  font-weight: 700;
}
footer .footer__num {
  max-width: 269px;
  width: 26.9%;
  margin-right: 10px;
  margin-left: 10px;
}
@media screen and (max-width:800px) {
  footer .footer__num {
    width: 48vw;
    margin-top: 5px;
  }
}
footer .footer__hour {
  font-size: 11px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  footer .footer__hour {
    margin-top: 5px;
  }
}
footer .footer__free {
  display: inline-block;
  border: solid 1px #fff;
  margin-top: 2px;
  margin-right: 2px;
  padding-right: 2px;
  padding-left: 2px;
}
footer .footer__time {
  font-size: 12px;
}
footer .footer__company {
  padding-top: 25px;
  padding-bottom: 40px;
  background-color: #000;
  color: #fff;
}
@media screen and (max-width:800px) {
  footer .footer__company {
    padding-top: 20px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width:800px) {
  footer .footer__company.toponly {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
footer .footer__name {
  font-size: 13px;
  margin-top: 10px;
}
@media screen and (max-width:800px) {
  footer .footer__name {
    font-size: 11px;
  }
}
footer .footer__logo {
  max-width: 184px;
  width: 100%;
  margin-left: 10px;
}
footer .footer__cp {
  font-size: 12px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width:800px) {
  footer .footer__cp {
    margin-top: 20px;
  }
}

#spfootnav {
  position: fixed;
  width: 100%;
  height: 65px;
  background-color: #3D3A39;
  display: flex;
  justify-content: space-between;
  z-index: 190;
  bottom: 0;
  left: 0;
  display: none;
}
@media screen and (max-width:800px) {
  #spfootnav {
    display: flex;
  }
}
#spfootnav a.link01, #spfootnav a.link02, #spfootnav a.link03, #spfootnav a.link04, #spfootnav a.link05 {
  width: 25%;
  display: flex;
  align-items: center;
}
#spfootnav a.link01 span, #spfootnav a.link02 span, #spfootnav a.link03 span, #spfootnav a.link04 span, #spfootnav a.link05 span {
  width: 100%;
  display: inline-block;
}
#spfootnav a.link01 span figure, #spfootnav a.link02 span figure, #spfootnav a.link03 span figure, #spfootnav a.link04 span figure, #spfootnav a.link05 span figure {
  width: 68px;
  margin: 0 auto;
}
#spfootnav a.link03 {
  /*width: 50%;*/
  width: 33.3333333333%;
  background-color: #ea5504;
}
#spfootnav a.link03.topnew {
  background-color: #947748;
}
#spfootnav a.link04 {
  /*width: 50%;*/
  width: 33.3333333333%;
  background-color: #ab1d22;
}
#spfootnav a.link04.topnew {
  /*background-color: #004098;*/
  background-color: #752c39;
}
#spfootnav a.link05 {
  /*width: 50%;*/
  width: 33.3333333333%;
  background-color: #ab1d22;
}

#spfootnav a.link05.topnew {
  /*background-color: #004098;*/
  background-color: #222;
}

#footer_contents {
  width: 100%;
  position: relative;
}
#footer_contents figure {
  overflow: hidden;
  background-color: #000;
}
#footer_contents h2 {
  width: 24.5%;
  position: absolute;
  z-index: 10;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#footer_text {
  width: 100%;
  position: relative;
  padding: 60px 0;
  text-align: center;
  background-color: #000;
}
@media screen and (max-width:800px) {
  #footer_text {
    padding: 25px 0;
  }
}
#footer_text .base_text {
  width: 70%;
  max-width: 564px;
  margin: 0 auto;
}

#attens_contents {
  width: 100%;
  padding: 30px 0;
  position: relative;
  z-index: 20;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
#attens_contents.back_black {
  background-color: #000;
}
#attens_contents.tops {
  background-color: rgba(0, 0, 0, 0.85);
}
#attens_contents .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#attens_contents .section__in p {
  line-height: 160%;
  color: #fff;
}
#attens_contents .section__in p.text_black {
  color: #000;
}

/**********************************/
#navigation_menu {
  width: 360px;
  position: fixed;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 99999;
  overflow: hidden;
  height: 0;
  transition: all 0.4s ease-in-out 0.01s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#navigation_menu.active {
  height: 100vh;
}
@media screen and (max-width:800px) {
  #navigation_menu {
    width: 100%;
  }
}
#navigation_menu .navin {
  width: 100%;
  padding: 20px 30px 30px 30px;
  background-color: #221815;
}
@media screen and (max-width:800px) {
  #navigation_menu .navin {
    width: 100%;
    min-height: 100vh;
    padding: 5vw 5vw 150px 5vw;
  }
}
#navigation_menu .close_menu {
  width: 20px;
  margin: 0 0 20px auto;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
#navigation_menu .close_menu:hover {
  cursor: pointer;
  opacity: 0.6;
}
#navigation_menu .close_menu2 {
  width: 20px;
  margin: 30px auto 0 auto;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  display: none;
}
#navigation_menu .close_menu2:hover {
  cursor: pointer;
  opacity: 0.6;
}
@media screen and (max-width:800px) {
  #navigation_menu .close_menu2 {
    display: block;
  }
}
#navigation_menu ul.menuin {
  width: 100%;
  margin-bottom: 40px;
}
.header-bnr__img {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width:800px) {
  #navigation_menu ul.menuin.f14 {
    font-size: 4.15vw;
  }
}
@media screen and (max-width:800px) {
  #navigation_menu ul.menuin {
    width: 100%;
    margin: 0 auto 30px auto;
  }
}
#navigation_menu ul.menuin a, #navigation_menu ul.menuin span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: "Noto Serif JP", serif;
}
#navigation_menu ul.menuin a span.eng, #navigation_menu ul.menuin span span.eng {
  width: 50%;
  border-right: 1px solid #666;
  color: #fff;
  padding: 0.5em 0;
  display: inline-block;
  position: relative;
}
#navigation_menu ul.menuin a span.eng.newicon::after, #navigation_menu ul.menuin span span.eng.newicon::after {
  content: "NEW";
  padding: 0.1em 0.5em 0.2em 0.5em;
  background-color: #ab1d22;
  color: #fff;
  font-size: 10px;
  vertical-align: 2px;
  margin-left: 0.75em;
  position: absolute;
  right: 0.4em;
  top: 0.5em;
}
@media screen and (max-width:800px) {
  #navigation_menu ul.menuin a span.eng.newicon::after, #navigation_menu ul.menuin span span.eng.newicon::after {
    right: 0.7em;
    top: 0.55em;
    font-size: 2.4vw;
  }
}
#navigation_menu ul.menuin a span.jpn, #navigation_menu ul.menuin span span.jpn {
  width: 50%;
  color: #fff;
  padding: 0.5em 0 0.5em 1em;
}
#navigation_menu a.entry {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.7em 0;
  line-height: 100%;
  color: #fff;
  background-color: #ea5504;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
}
#navigation_menu a.entry.topnew {
  /*background-color: #222;*/
  background-color: #947748;
  margin-bottom: 0;
  border: 1px solid #fff;
}
@media screen and (max-width:800px) {
  #navigation_menu a.entry.f14 {
    font-size: 4.5vw;
  }
}
#navigation_menu a.raijyo {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.7em 0;
  line-height: 100%;
  color: #fff;
  /*background-color: #ab1d22;*/
  font-family: "Noto Serif JP", serif;
}
#navigation_menu a.raijyo.topnew {
  background-color: #752c39;
  border: 1px solid #ccc;
  color: #fff;
  margin-bottom: 15px;
}
#home #navigation_menu a.raijyo.topnew {
  background-color: #752c39;
}
@media screen and (max-width:800px) {
  #navigation_menu a.raijyo.f14 {
    font-size: 4.5vw;
  }
}

#menu_back {
  width: 100%;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  pointer-events: none;
  opacity: 0;
}
#menu_back.active {
  opacity: 1;
  pointer-events: auto;
}

#footer_nav {
  width: 100%;
  /*background-color: #fff;*/
  background-color: black;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 10;
}
#footer_nav .section__in {
  width: 96%;
  max-width: 860px;
  margin: 0 auto;
  /*border-top: 1px solid #dfdfdf;*/
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer_nav .section__in br {
  display: inline-block;
}
#footer_nav .section__in .prev {
  width: 50%;
  /*border-right: 1px solid #ccc;*/
  border-right: 1px solid white;
  padding: 50px 25px 50px 50px;
  display: inline-block;
  font-weight: 500;
  position: relative;
  opacity: 0;
  transition: all 0.4s ease-out 0.2s;
  /*color: #000;*/
  color: white;
}
@media screen and (max-width:800px) {
  #footer_nav .section__in .prev {
    padding: 5vw 2vw 5vw 7vw;
  }
}
#footer_nav .section__in .prev.active {
  opacity: 1;
}
#footer_nav .section__in .prev::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url("../images/prev_bt_w.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#footer_nav .section__in .prev:hover {
  opacity: 0.5;
}
#footer_nav .section__in .prev div {
  transform: translate(30px, 0px);
  transition: all 0.4s ease-out 0.2s;
}
#footer_nav .section__in .prev div.active {
  transform: translate(0, 0);
  opacity: 1;
}
#footer_nav .section__in .prev.long {
  width: 100%;
  /*border-right: 0px solid #ccc;*/
  border-right: 0px solid white;
}
#footer_nav .section__in .prev.nolink {
  display: none;
}
#footer_nav .section__in .prev .bigs {
  font-size: 20px;
  line-height: 100%;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width:800px) {
  #footer_nav .section__in .prev .bigs {
    font-size: 3.6vw;
  }
}
#footer_nav .section__in .prev .bigs.l2 {
  line-height: 120%;
}
#footer_nav .section__in .prev .minis {
  font-size: 13px;
  line-height: 100%;
  display: inline-block;
}
@media screen and (max-width:800px) {
  #footer_nav .section__in .prev .minis {
    font-size: 2.6vw;
  }
}
#footer_nav .section__in .next {
  width: 50%;
  padding: 50px 50px 50px 25px;
  display: inline-block;
  text-align: right;
  position: relative;
  transition: all 0.4s ease-out 0.2s;
  opacity: 0;
  /*color: #000;*/
  color: white;
}
@media screen and (max-width:800px) {
  #footer_nav .section__in .next {
    padding: 5vw 7vw 5vw 2vw;
  }
}
#footer_nav .section__in .next.active {
  opacity: 1;
}
#footer_nav .section__in .next::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url("../images/next_bt_w.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#footer_nav .section__in .next:hover {
  opacity: 0.5;
}
#footer_nav .section__in .next div {
  transform: translate(-30px, 0px);
  transition: all 0.4s ease-out 0.2s;
}
#footer_nav .section__in .next div.active {
  transform: translate(0, 0);
}
#footer_nav .section__in .next.long {
  width: 100%;
}
#footer_nav .section__in .next.nolink {
  display: none;
}
#footer_nav .section__in .next .bigs {
  font-size: 20px;
  line-height: 100%;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width:800px) {
  #footer_nav .section__in .next .bigs {
    font-size: 3.6vw;
  }
}
#footer_nav .section__in .next .bigs.l2 {
  line-height: 120%;
}
#footer_nav .section__in .next .minis {
  font-size: 13px;
  line-height: 100%;
  display: inline-block;
}
@media screen and (max-width:800px) {
  #footer_nav .section__in .next .minis {
    font-size: 2.6vw;
  }
}

#under_images {
  position: relative;
  width: 100%;
  aspect-ratio: 1664 / 750;
}
#under_images picture {
  position: absolute;
  aspect-ratio: 1664 / 750;
  width: 100%;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 14s;
}
#under_images picture:nth-child(1) {
  animation-name: slider_1;
  animation-delay: -2s;
}
#under_images picture:nth-child(2) {
  animation-name: slider_1;
  animation-delay: 5s;
  opacity: 0;
}
@keyframes slider_1 {
  0%{opacity: 0;}
  50%{opacity: 1;}
  100%{opacity: 0;}
}
@media screen and (max-width:800px) {
  #under_images {
    aspect-ratio: 1296 / 826;
  }
  #under_images picture {
    aspect-ratio: 1296 / 826;
  }
}

#under_color {
  width: 100%;
  position: relative;
  z-index: 5;
  height: 40px;
  background: url(../images/top2024/under_color.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:800px) {
  #under_color {
    font-size: 2.6vw;
    height: 15px;
  }
}

/********************************/
#underNav {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000;
  padding-bottom: 100px;
}
@media screen and (max-width:800px) {
  #underNav {
    padding-bottom: 37.5px;
  }
}
#underNav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#underNav ul li {
  width: 33.3333333333%;
  border-right: 0px solid #fff;
  border-bottom: 0px solid #fff;
  overflow: hidden;
}
#underNav ul li:nth-child(3n) {
  border-right: 0;
}
@media screen and (max-width:800px) {
  #underNav ul li {
    width: 50%;
    border-right: 0;
    border-bottom: 0;
    height: 28vw;
  }
}
#underNav ul li a {
  display: block;
  position: relative;
}
@media screen and (max-width:800px) {
  #underNav ul li a {
    width: 100%;
    height: 28vw;
  }
}
#underNav ul li a::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
@media screen and (max-width:800px) {
  #underNav ul li a::before {
    background-color: rgba(0, 0, 0, 0.45);
  }
}
#underNav ul li a figure {
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
@media screen and (max-width:800px) {
  #underNav ul li a figure {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
  }
}
#underNav ul li a:hover figure {
  transform: scale(1.06);
}
@media screen and (max-width:800px) {
  #underNav ul li a:hover figure {
    transform: translate(0%, -50%) scale(1);
  }
}
#underNav ul li a:hover::before {
  background-color: rgba(0, 0, 0, 0.75);
}
@media screen and (max-width:800px) {
  #underNav ul li a:hover::before {
    background-color: rgba(0, 0, 0, 0.45);
  }
}
#underNav ul li a .underNav__text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#underNav ul li a .underNav__text .underNav__en {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: "EB Garamond", serif;
  font-size: 36px;
}
@media screen and (max-width:800px) {
  #underNav ul li a .underNav__text .underNav__en {
    font-size: 5.5vw;
    line-height: 100%;
  }
}
#underNav ul li a .underNav__text .underNav__jp {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 17px;
  font-family: "Noto Serif JP", serif;
  padding: 0.75em 0 0.5em 0;
}
@media screen and (max-width:800px) {
  #underNav ul li a .underNav__text .underNav__jp {
    font-size: 3vw;
    padding: 0.25em 0 0.25em 0;
  }
}
#underNav ul li a .underNav__text .underNav__btn {
  width: 55%;
  display: inline-block;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.65em 0 0.7em 0;
  line-height: 100%;
  margin-top: 0.5em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:800px) {
  #underNav ul li a .underNav__text .underNav__btn {
    width: 75%;
    font-size: 2.4vw;
  }
}

#section01_renews {
  width: 100%;
  /*background-color: #fff;*/
  background-color: black;
  padding: 130px 0 75px 0;
  color: white;
}
@media screen and (max-width:1200px) {
  #section01_renews {
    padding: 120px 0 60px 0;
  }
}
@media screen and (max-width:800px) {
  #section01_renews {
    padding: 125px 0 30px 0;
  }
}
#section01_renews h1.renewtitle {
  margin: 0 auto 50px auto;
  text-align: center;
}
@media screen and (max-width:1200px) {
  #section01_renews h1.renewtitle {
    margin: 0 auto 40px auto;
  }
}
@media screen and (max-width:800px) {
  #section01_renews h1.renewtitle {
    margin: 0 auto 35px auto;
  }
}
#section01_renews h1.renewtitle figure {
  width: 48%;
  max-width: 190px;
  margin: 0 auto 18px auto;
}
@media screen and (max-width:1200px) {
  #section01_renews h1.renewtitle figure {
    width: 15.8333333333%;
  }
}
@media screen and (max-width:800px) {
  #section01_renews h1.renewtitle figure {
    width: 48%;
  }
}
#section01_renews h1.renewtitle span {
  display: block;
  text-align: center;
  line-height: 100%;
}
#section01_renews .base_text {
  text-align: center;
  line-height: 175%;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:1200px) {
  #section01_renews .base_text {
    font-size: 2vw;
  }
}
@media screen and (max-width:800px) {
  #section01_renews .base_text {
    font-size: 3.85vw;
  }
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(../images/overlay.png) repeat 0 0;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
  margin: 0px 0 0px 0;
}

#cboxTopLeft {
  display: none;
  width: 21px;
  height: 0px;
  background: url(../images/common/cbox-controls.png) no-repeat -101px 0;
}

#cboxTopRight {
  display: none;
  width: 21px;
  height: 0px;
  background: url(../images/common/cbox-controls.png) no-repeat -130px 0;
}

#cboxBottomLeft {
  display: none;
  width: 21px;
  height: 21px;
  background: url(../images/common/cbox-controls.png) no-repeat -101px -29px;
}

#cboxBottomRight {
  display: none;
  width: 21px;
  height: 21px;
  background: url(../images/common/cbox-controls.png) no-repeat -130px -29px;
}

#cboxMiddleLeft {
  width: 0px;
  background: url(images/controls.png) left top repeat-y;
}

#cboxMiddleRight {
  width: 0px;
  background: url(images/controls.png) right top repeat-y;
}

#cboxTopCenter {
  display: none;
  height: 0px;
  background: url(images/border.png) 0 0 repeat-x;
}

#cboxBottomCenter {
  display: none;
  height: 0px;
  background: url(images/border.png) 0 -29px repeat-x;
}

#cboxContent { /*background:#fff*/
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 0px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

#cboxLoadingOverlay {
  background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/common/cbox-controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(../images/common/cbox-controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/common/cbox-controls.png) no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}
/****************************************/
/*#advertiser {
  background: black!important;
  color: white!important;
}
#advertiser a:link, #advertiser a:visited {
  color: white!important;
}*/
/****************************************/
/*# sourceMappingURL=style.css.map */