@charset "utf-8";

/*
Theme Name: 馬と獅子
*/

/* RESET
----------------------------------------------------------------------------------------------------*/
html, 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, li,
fieldset, form, label, legend,
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,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 100rem;
  --black: #212121;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.8em;
  color: var(--black);
  height: 100%;
  font-family: YakuHanMP, "Hiragino Mincho ProN",YuMincho,serif;
  font-weight: 400;
  position: relative;
  background: #FDFDFD;
  letter-spacing: .05em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

.en {
  font-family: "EB Garamond", serif;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: var(--black);
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
h2.en,h3.en,h4.en,h5.en {
  font-weight: 400;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_container {
  max-width: 124.6rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

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

.text-center {
  text-align: center !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
}
#header.scroll {
  /*background: rgba(255,255,255,.95);*/
  background: transparent;
  backdrop-filter: blur(5px);
}
#header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

#header-logo {
  position: relative;
  z-index: 9999;
}
#header-logo img {
  transition: .3s;
}
.global-nav__wrapper {
  position: relative;
}
.global-nav__content {
  position: relative;
  z-index: 2;
}
.global-nav__list li a {
  letter-spacing: .15em;
}
.site-header__social {
  position: fixed;
  z-index: 99;
}
.site-header__social .social-list {
  display: flex;
  align-items: center;
}
.site-header__social .social-list__item:last-child {
  margin-right: 0;
}
.site-header__social .social-list__item img {
  transition: .3s;
}

@media only screen and ( max-width : 767px ) {
  #header {
    padding: 1.5rem;
  }
  header.hidden {
    transform: translateY(-8rem) !important;
  }
  #header-logo img {
    width: 8rem;
  }
  .site-header__social {
    top: 1.5rem;
    left: 1.5rem;
  }
  .site-header__social .social-list__item {
    margin-right: 1rem;
  }
  .site-header__social .social-link--instagram img {
    width: 2.4rem;
  }
  .site-header__social .social-link--note img {
    width: 5rem;
  }

  #menu-btn.active {
    right: 1rem;
    top: .6rem;
  }

  #menu-btn {
    transition: .3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 2rem;
    right: 1.5rem;
    width: 2.4rem;
    height: 1.5rem;
  }
  #menu-btn.active {
    top: 5rem;
    right: 5rem;
  }

  .menu-trigger {
    vertical-align: middle;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transition: all .5s;
  }
  #menu-btn.active .menu-trigger span {
    /*background-color: #fff;*/
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(3) {
  }
  #menu-btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(.7rem) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: .7rem;
    left: auto;
    right: 0;
  }
  #menu-btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu-btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-.7rem) rotate(45deg);
  }

  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, .2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
  .overlay.open {
    width: 100%;
    height: 100vh;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  #global-nav {
    height: calc(100vh - 4rem);
    overflow: auto;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 101;
    transition: all .2s;
    width: calc(100% - 4rem);
    border-radius: 2rem;
    border: .2rem solid #fff;
    opacity: 0;
    visibility: hidden;
    background: #f5f5f5;
  }
  #global-nav.open {
    opacity: 1;
    visibility: visible;
  }
  #global-nav {
    padding: 12rem 0 2rem;
  }
  .global-nav__list {
    padding: 0 3.6rem;
  }
  .global-nav__content {
    position: relative;
    padding-bottom:3.6rem;
  }
  .global-nav__list li {
    margin-bottom: 3.5rem;
    font-size: 1.6rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #menu-btn,
  #header .overlay {
    display: none;
  }
  #header {
    padding: 3rem 6rem;
  }
  #header.hidden {
    transform: translateY(-11rem) !important;
  }
  #header-logo img {
    width: 10rem;
  }
  .site-header__social {
    top: 4rem;
    right: 4rem;
  }
  .site-header__social .social-list__item {
    margin-right: 2rem;
  }
  .site-header__social .social-list__item a:hover img {
    transform: scale(.9);
  }
  .site-header__social .social-link--instagram img {
    width: 3rem;
  }
  .site-header__social .social-link--note img {
    width: 6rem;
  }
  #global-nav {
    padding: 0 6rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: var(--black);
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global-nav__list li {
    font-size: 1.4rem;
    margin-right: 6rem;
  }
  .global-nav__list li:last-child {
    margin-right: 0;
  }
  .global-nav__list li a {
    color: #fff;
  }
}



/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom,  rgba(253,253,253,1) 0%,rgba(214,214,214,1) 100%);
}
#footer .container {
  position: relative;
}
.footer__company-logo {
  margin: 0 auto 3rem;
}
.footer__company-logo a,
.footer__company-logo img {
  display: block;
}

.site-footer__copy {
  text-align: center;
  letter-spacing: .2em;
}

@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 5rem 0;
  }
  .footer__company-logo {
    width: 20rem;
    margin-bottom: 3.5rem;
  }
  .site-footer__copy {
    font-size: 1rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 10rem 0 18rem;
  }
  .footer__company-logo {
    width: 28.7rem;
  }
  .site-footer__copy {
    font-size: 1.2rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  position: relative;
  margin: 0 auto;
  max-width: 30rem;
  letter-spacing: .15em;
  height: 6rem;
  background: #fff;
}
.btn:after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  z-index: -1;
  transition: .4s;
}
.btn:hover:after {
  width: 100%;
}
.btn:before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(./img/next-arrow.svg) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  z-index: 2;
}
#pan {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .15em;
}

@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 10rem 0;
  }
  .grecaptcha-badge {
    bottom: 80px !important;
    z-index: 10;
  }
}
/* ---------------------------------------------------------------------------------------------

　   NEWS

--------------------------------------------------------------------------------------------- */
.news-list .news-item {
  border-bottom: 1px solid #E2E2E2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.more-link {
  font-size: 1.3rem;
  letter-spacing: .2em;
}
.news-list .news-readmore {
  letter-spacing: .2em;
  font-size: 1.2rem;
  text-align: right;
}
.more-link span,
.news-list .news-readmore span {
  display: inline-block;
  position: relative;
  padding-left: 1.4rem;
  transition: .3s;
}
.more-link:hover span {
  letter-spacing: .3em;
}
.more-link span:before,
.news-list .news-readmore span:before {
  content: "";
  width: .6rem;
  height: .6rem;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news-list .news-date,
.news-list .news-title,
.news-list .news-readmore {
  position: relative;
  z-index: 2;
}
.news-list .news-date {
  font-size: 1.2rem;
  letter-spacing: .2em;
}
.news-list .news-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and ( max-width : 767px ) {
  .news-list .news-item {
    padding: 1.5rem 0;
  }
  .news-list .news-item-wrapper:first-of-type a {
    border-top: 1px solid #E2E2E2;
  }
  .news-list .news-date {
    margin-bottom: .5rem;
  }
  .news-list .news-readmore {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  .news-list .news-item {
    height: 8rem;
  }
  .news-list .news-item:before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: #f5f5f5;
    top: 0;
    left: 0;
    transition: .6s;
  }
  .news-list .news-item:hover:before {
    width: 100%;
  }
  .news-list .news-title {
    width: calc(100% - (12rem + 13rem));
    padding-right: 3rem;
  }
  .news-list .news-date {
    width: 12rem;
    padding-left: 1rem;
  }
  .news-list .news-readmore {
    width: 13rem;
    padding-right: 1rem;
  }
  .news-list .news-item:hover .news-readmore {
    letter-spacing: .3em;
  }
}


/* ---------------------------------------------------------------------------------------------

　   pagenavi

--------------------------------------------------------------------------------------------- */


.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-pagenavi .pages,
.previouspostslink,
.nextpostslink {
  display: none;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 6rem;
  height: 6rem;
  background: none;
  text-align: center;
  line-height: 6rem;
  margin: 0 1rem;
  color: var(--black);
  font-weight: 700;
  font-size: 2.4rem;
  border: 1px solid var(--black) !important;
}
.wp-pagenavi .current {
}
.wp-pagenavi .page:hover {
  background: var(--black);
  color: #fff;
}
.wp-pagenavi .current {
  background: var(--black);
  color: #fff;
}
@media only screen and ( max-width : 767px ) {
  .wp-pagenavi {
    margin-top: 5rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 4rem;
    height: 4rem;
    line-height: 3.5rem;
    margin: 0 .5rem;
    font-size: 1.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .wp-pagenavi {
    margin-top: 10rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 6rem;
    height: 6rem;
    line-height: 5rem;
    margin: 0 1rem;
    font-size: 2.4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

