@charset "UTF-8";
body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul,
fieldset, form, label, legend, input, textarea, button, select, option,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  line-height: 1;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "游明朝", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  background: #000000;
}

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

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

iframe {
  width: 100%;
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}

a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  color: #DBBE4F;
}

li {
  list-style: none;
}

em, address {
  font-style: normal;
}

i {
  position: relative;
}

.font-chiaro {
  font-family: fot-chiaro-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.shuei {
  font-family: dnp-shuei-nmincho-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font_s {
  font-size: 12px;
  font-size: 0.75rem;
}

/*---------------------------------------------------------
汎用
---------------------------------------------------------*/
.wrap {
  position: relative;
  width: 70vw;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .wrap {
    width: 90vw;
  }
}

.wrap_inner {
  max-width: 830px;
  margin: auto;
}

.navi_open {
  overflow: hidden;
}

.sp_only {
  display: none;
}

.tab_only {
  display: none;
}

.flex {
  display: flex;
}

.col {
  display: flex;
  align-items: normal;
  flex-wrap: wrap;
}

.photo {
  position: relative;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.photo:after {
  display: block;
  content: "";
  padding-top: 64.5161290323%;
}

.photo_img {
  position: relative;
  overflow: hidden;
}
.photo_img:before {
  display: block;
  content: "";
  padding-top: 53%;
}
.photo_img img {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.img_vertical:before {
  padding-top: 133.2258064516% !important;
}

.ml_auto {
  margin-left: auto;
}

.col_between {
  justify-content: space-between;
}

.col_center {
  justify-content: center;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: end;
}

.v_top {
  vertical-align: top;
}

.hr_red {
  border-top: 4px solid #473D17;
}

.text_l {
  text-align: left !important;
}

.text_r {
  text-align: right !important;
}

.text_c {
  text-align: center;
}

.clear {
  clear: both;
}

.animated {
  opacity: 0;
}

.red {
  color: #C30D23;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px;
}

@media all and (max-width: 780px) {
  .sp_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
  .sp_mb30 {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 780px) {
  .sp_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
  .sp_mb30 {
    margin-bottom: 30px;
  }
}
.item, a {
  transition: all 0.2s ease-in-out;
}

/* -----------------------------------------------------
カラム設定
----------------------------------------------------- */
.col {
  display: flex;
  flex-wrap: wrap;
}
.col_2 > * {
  width: calc(50% - 60px);
}

.col_3 > * {
  width: calc(33.33333% - 30px);
}

.col_4 > * {
  width: calc(25% - 30px);
}

@media all and (max-width: 780px) {
  .col_2 > * {
    width: 100%;
  }
  .col_3 > * {
    width: 100%;
  }
  .col_4 > * {
    width: 100%;
  }
}
@media all and (max-width: 780px) {
  .col_2 > * {
    width: 100%;
  }
  .col_3 > * {
    width: 100%;
  }
  .col_4 > * {
    width: 100%;
  }
}

/* -----------------------------------------------------
アニメーション用
----------------------------------------------------- */
.invisible {
  opacity: 0;
  transition: all 1s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.navi_open {
  overflow: hidden;
}

.fadeInUp {
  animation: fadeInUp 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadeOutDown {
  animation: fadeOutDown 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeOutDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

/* -----------------------------------------------------------
スマホナビ
----------------------------------------------------------- */
.toggle {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin-left: auto;
  line-height: 25px;
  z-index: 102;
  /* ≡ */
}
.toggle:before,
.toggle i, .toggle:after {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.35s ease-in-out;
}
.toggle:before {
  top: 0%;
}
.toggle i {
  top: 50%;
}
.toggle:after {
  top: 100%;
}
@media all and (max-width: 780px) {
  .toggle {
    display: block;
    margin-left: auto;
  }
}
@media all and (max-width: 780px) {
  .toggle {
    display: block;
    margin-left: auto;
  }
}

#open {
  display: none;
  /* :checked 擬似クラスを使って、#openがチェック状態になった時に、#navi_mainが「right: 0;」になります。 */
  /* ≡ > ×アニメーション */
}
#open:checked ~ #navi_main {
  visibility: visible;
  opacity: 1;
}
#open:checked ~ .toggle:before {
  top: 45%;
  transform: rotate(315deg);
}
#open:checked ~ .toggle i {
  width: 0;
}
#open:checked ~ .toggle:after {
  top: 45%;
  transform: rotate(-315deg);
}

/* BG */
.bgclose {
  display: none;
}

#open:checked ~ .bgclose {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  text-indent: -999999px;
  overflow: hidden;
  cursor: pointer;
}

/* -----------------------------------------------------------
メインナビ
----------------------------------------------------------- */
.navi {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.navi .sns_btn {
  display: flex;
}
.navi .sns_btn a {
  display: inline-block;
  margin-left: 15px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #0A1C3B;
}
@media all and (max-width: 780px) {
  .navi .sns_btn {
    display: none;
  }
}
@media all and (max-width: 780px) {
  .navi .sns_btn {
    display: none;
  }
}

#navi_main {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-y: auto;
  background: #473D17;
}
#navi_main ul {
  width: 100%;
  padding: 0 5vw;
  flex-direction: column;
  text-align: center;
}
#navi_main ul > li {
  line-height: 1;
}
#navi_main ul > li a {
  padding: 15px;
  display: block;
  color: #000;
  font-family: lato, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
#navi_main ul > li a:hover {
  color: #FFF3C4;
}
#navi_main ul > li a em {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
#navi_main .navi_sns_btn {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/*パンくず ----------------------------------------- */
.breadcrumbs {
  padding: 10px 3% 30px;
  font-size: 14px;
  font-size: 0.875rem;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs a {
  color: #FFCA3A;
}
.breadcrumbs a:after {
  margin: 0 10px;
  content: "/";
  display: inline-block;
  color: #000;
}
@media all and (max-width: 780px) {
  .breadcrumbs {
    display: none;
  }
}
@media all and (max-width: 780px) {
  .breadcrumbs {
    display: none;
  }
}

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 40px auto;
  text-align: center;
}
.pagination li {
  text-align: center;
}
.pagination li span, .pagination li a {
  display: block;
  margin: 0 2.5px;
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 2px;
  background: #D6D6D6;
}
.pagination li span:hover, .pagination li a:hover {
  color: #FFCA3A;
  background: #005DAA;
}
.pagination li:before {
  display: none;
}
.pagination li .prev:hover, .pagination li .next:hover {
  color: #FFCA3A;
  background-color: transparent;
}
.pagination li .prev {
  margin-right: 10px;
  color: #D6D6D6;
  width: auto;
  height: auto;
  background: none;
}
.pagination li .prev i {
  margin-right: 10px;
}
.pagination li .next {
  margin-left: 10px;
  color: #005DAA;
  width: auto;
  height: auto;
  background: none;
}
.pagination li .next i {
  margin-left: 10px;
}
.pagination li .current {
  background: #005DAA;
}
.pagination .btn_line-orn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 216px;
  padding: 14px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.085em;
}
@media all and (max-width: 780px) {
  .pagination .btn_line-orn {
    width: 180px;
    padding: 13px 0;
  }
}
@media all and (max-width: 780px) {
  .pagination .btn_line-orn {
    width: 180px;
    padding: 13px 0;
  }
}
@media all and (max-width: 780px) {
  .pagination {
    margin: 0 auto 30px;
  }
}
@media all and (max-width: 780px) {
  .pagination {
    margin: 0 auto 30px;
  }
}

.more_btn {
  padding: 0.5em 1em;
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #fff;
}
.more_btn:before {
  margin-top: -3px;
  margin-right: 10px;
  vertical-align: middle;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  height: 4px;
  width: 4px;
  border-color: #fff;
  transform: rotate(-45deg);
}
.more_btn:hover {
  color: #DBBE4F;
  border: 1px solid #DBBE4F;
}
.more_btn:hover:before {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  height: 4px;
  width: 4px;
  border-color: #DBBE4F;
  transform: rotate(-45deg);
}

.btn_area {
  margin-top: 30px;
  text-align: center;
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 30px 30px 0;
  opacity: 1;
  transition: all 0.5s ease;
}
.header .logo {
  transition: all 0.5s ease;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1;
}
@media all and (max-width: 780px) {
  .header {
    padding: 20px 20px;
  }
  .header .logo {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
  }
}
@media all and (max-width: 780px) {
  .header {
    padding: 20px 20px;
  }
  .header .logo {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
  }
}

.header_home .logo {
  opacity: 0;
}

.header_home.DownMove {
  background: rgba(0, 0, 0, 0.8);
}
.header_home.DownMove .logo {
  opacity: 1;
}

.DownMove {
  padding: 30px 30px 30px;
}
@media all and (max-width: 780px) {
  .DownMove {
    padding: 20px 20px;
  }
}
@media all and (max-width: 780px) {
  .DownMove {
    padding: 20px 20px;
  }
}

/*
上に上がる動き　*/
.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-200%);
  }
}
/*
下に下がる動き　*/
.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=first.css.map */