@charset "utf-8";

/*カラー設定*/
:root {
    --black: #000000;
    --black-gray: #333333;
    --white: #ffffff;
    --red: #ff0000;
    --blue: #0000ff;
    --light-blue: #bfcae2;
    --yellow: #ffff00;
    --green: #008000;
    --green2: #1D9E48;
    --grad1: rgba(255, 255, 255, 0.7);
    --grad2: rgba(255, 255, 255, 0.9); 
    --official-color: var(--black);
    --main-color: var(--white);
    --sub-color: var(--white);
    --bg-color1: var(--white);
    --bg-color2: var(--black);
    --bg-color3: var(--light-blue);
    --txt-main-color: var(--black);
    --txt-sub-color: var(--white);
    --accessories-color: var(--green);
    --border-color1: var(--black-gray);
    --grad-color1: var(--grad1);
}

/*文字サイズ制御*/
.fs30{
    font-size: 30px;
}
@media screen and (max-width: 300px) {
    .fs30 {
		font-size: 100%;
    }
}
.fs28{
    font-size: 28px;
}
.fs26{
    font-size: 26px;
}
.fs24{
    font-size: 24px;
}
.fs22{
    font-size: 22px;
}
.fs20{
    font-size: 20px;
}
.fs18{
    font-size: 18px;
}
.fs16{
    font-size: 16px;
}
.fs15{
    font-size: 15px;
}
.fs14{
    font-size: 14px;
}

.font-s {
    font-size: 80%
}
  
@media (max-width: 750px) {
    .font-s {
      font-size: 1.2rem;
      line-height: 1.8em
    }
}

/*文字種設定*/ 
.en {
    font-family: Cinzel, serif;
    font-weight: 400;
    font-style: normal
}

/*配置設定*/
.block{
    display: block;
}

.inline-block{
    display: inline-block;
}

.flex{
    display: flex;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-left{
    display: flex;
    justify-content: left;
    align-items: center;
}
.flex-right{
    display: flex;
    justify-content: right;
    align-items: center;
}
.flex-around{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txt-center{
    text-align: center;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right:auto;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.txt-left {
    text-align: left
}

.left {
    text-align: left;
    margin-right: auto;
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em
}

.txt-right {
    text-align: right
}

.right {
    text-align: right;
    margin-left: auto;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em
}
  
  .gallery {
    margin: 0 0 11.5px
  }
  
  .clearfix {
    overflow: hidden;
    *zoom: 1
  }
  
  .fL {
    float: left
  }
  
  .fR {
    float: right
  }
  
  .figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center
  }

  .gallery-item {
    display: inline-block;
    padding: 1.79104477%;
    text-align: center;
    vertical-align: top;
    width: 100%
  }
  
  .gallery-columns-2 .gallery-item {
    max-width: 50%
  }
  
  .gallery-columns-3 .gallery-item {
    max-width: 33.33333%
  }
  
  .gallery-columns-4 .gallery-item {
    max-width: 25%
  }
  
  .gallery-columns-5 .gallery-item {
    max-width: 20%
  }
  
  .gallery-columns-6 .gallery-item {
    max-width: 16.66667%
  }
  
  .gallery-columns-7 .gallery-item {
    max-width: 14.28571%
  }
  
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%
  }
  
  .gallery-columns-9 .gallery-item {
    max-width: 11.11111%
  }
  
  .gallery-icon img {
    margin: 0 auto
  }
  
  .gallery-caption {
    display: block
  }
  
  .gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
    display: none
  }

/*幅の定義*/
:root {
    --width-max: 100%;
    --width-column: 700px;
    --width-pc: 1280px;
    --width-tab: 1024px;
    --width-sp: 300px;
}
.max-width-column{
    max-width: var(--width-column, auto);
}
/*高さの定義*/
:root {
    --height-max: 100%;
    --height-column: 700px;
}
.min-height-column{
    max-height: var(--height-column, auto);
}

/*奥行きの定義*/
.layer99{
    z-index: 99;
}
.layer02{
    z-index: 2;
}
.layer01{
    z-index: 1;
}
.layer00{
    z-index: 0;
}

/*間隔の定義*/
.mT20 {
    margin-top: 2rem
  }
  
  .mT40 {
    margin-top: 4rem
  }
  
  .mT60 {
    margin-top: 6rem
  }
  
  .mT80 {
    margin-top: 8rem
  }
  
  .mB20 {
    margin-bottom: 2rem
  }
  
  .mB40 {
    margin-bottom: 4rem
  }
  
  .mB60 {
    margin-bottom: 6rem
  }
  
  .mB80 {
    margin-bottom: 8rem
  }

/*ボタンの定義*/
.btn {
    text-align: center
  }
  
  .btn a, .btn input {
    padding: 2rem 4rem;
    border: 0.1rem solid #000;
    color: #000;
    text-align: center;
    line-height: 1;
    display: inline-block;
    position: relative
  }
  
  .btn a:after, .btn input:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-top: #000 0.1rem solid;
    border-right: #000 0.1rem solid;
    -moz-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s
  }
  
  .btn a:hover:after, .btn input:hover:after {
    right: -1rem
  }
  
  .btn a:after, .btn input:after {
    right: 2rem;
    width: 1.2rem;
    height: 1.2rem
  }
  
  .btn a:hover, .btn input:hover {
    background: #000;
    color: #fff
  }
  
  .btn a:hover:after, .btn input:hover:after {
    right: 2rem;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff
  }

  @media (max-width: 750px) {
    .btn {
      width: 90%;
      margin: 0 auto
    }
    .btn a, .btn input {
      width: 100%;
      padding: 1.5rem 1rem;
      font-weight: bold;
      font-size: 1.6rem
    }
    .btn a:hover, .btn input:hover {
      background: #000;
      color: #fff
    }
  }

  /*特殊ボタンの定義*/
  .bT {
    position: relative
  }
  
  .bT:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, #f7f7f7, #000000);
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s
  }
  
  .bT:hover:before {
    height: .4rem
  }
  
  .bB {
    position: relative
  }
  
  .bB:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #000;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s
  }
  
  .bB:hover:before {
    height: .1rem
  }
  
  @media (max-width: 750px) {
    .bT:before {
      content: none
    }
  }

  /*矢印の定義*/
  .arrow, #pagination .single .next a, #pagination .page-list .next {
    display: inline-block;
    position: relative
  }
  
  .arrow:after, #pagination .single .next a:after, #pagination .page-list .next:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-top: #000 0.1rem solid;
    border-right: #000 0.1rem solid;
    -moz-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s
  }
  
  .arrow:hover:after, #pagination .single .next a:hover:after, #pagination .page-list .next:hover:after {
    right: -1rem
  }
  
  /*見出し文字設定*/
  #page-default h1, #archive h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: .5rem;
    text-shadow: 0 0 0.2rem #000;
    color: #fff
  }
  
  #page-default h1 span, #archive h1 span {
    display: block;
    font-family: Cinzel, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem;
    color: #fff;
    line-height: 1.3
  }
  
  #page-default h2, #archive h2 {
    margin-bottom: 3rem;
    padding: 2rem 0;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: left;
    line-height: 1;
    border-top: 0.2rem solid #000;
    border-bottom: 0.2rem solid #000;
    word-break: break-all
  }
  
  #page-default p+h2, #page-default ul+h2, #archive p+h2, #archive ul+h2 {
    margin-top: 3rem
  }
  
  #page-default h3, #archive h3 {
    margin-bottom: 3rem;
    padding: .5rem 2.6rem;
    font-size: 2.2rem;
    font-weight: bold;
    display: inline-block;
    position: relative
  }
  
  #page-default h3:before, #page-default h3:after, #archive h3:before, #archive h3:after {
    content: '';
    width: .2rem;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
    background: #000
  }
  
  #page-default h3:before, #archive h3:before {
    left: .5rem
  }
  
  #page-default h3:after, #archive h3:after {
    right: .5rem
  }
  
  #page-default p+h3, #page-default ul+h3, #archive p+h3, #archive ul+h3 {
    margin-top: 3rem
  }
  
  #page-default h4, #archive h4 {
    margin-bottom: 3rem;
    padding-left: 1.2rem;
    font-size: 2rem;
    font-weight: bold;
    border-left: 0.4rem solid #000;
    line-height: 1
  }
  
  #page-default p+h4, #page-default ul+h4, #archive p+h4, #archive ul+h4 {
    margin-top: 3rem
  }
  
  #page-default h5, #archive h5 {
    margin-bottom: 3rem;
    font-size: 1.8rem
  }
  
  #page-default p+h5, #page-default ul+h5, #archive p+h5, #archive ul+h5 {
    margin-top: 3rem
  }
  
  #page-default .heading, #archive .heading {
    margin-bottom: 3rem;
    font-size: 4rem;
    letter-spacing: .3rem
  }
  
  @media (max-width: 750px) {
    #page-default h1, #archive h1 {
      font-size: 7vw;
      text-shadow: 0 0 0.5rem #fff
    }
    #page-default h1 span, #archive h1 span {
      font-size: 11vw
    }
    #page-default h2, #archive h2 {
      font-size: 5vw
    }
    #page-default h3, #archive h3 {
      font-size: 5vw
    }
    #page-default h4, #archive h4 {
      padding: 1rem 2rem;
      font-size: 4.5vw
    }
    #page-default h5, #archive h5 {
      font-size: 4.5vw
    }
    #page-default .heading, #archive .heading {
      font-size: 2.5rem
    }
  }

/*ページ設定*/
  .inner {
    width: 92%;
    max-width: 120rem;
    margin: 0 auto
  }

/*端末サイズ別表示設定*/
/*
  .sp {
    display: none
  }
  
  @media (max-width: 750px) {
    .sp {
      display: block
    }
  }
  
  .tab {
    display: none
  }
  
  @media (min-width: 751px) and (max-width: 1024px) {
    .tab {
      display: block
    }
  }
  
  @media (max-width: 750px) {
    .tab {
      display: none
    }
  }
  
  @media (min-width: 751px) and (max-width: 1024px) {
    .pc {
      display: block
    }
  }
  
  @media (max-width: 750px) {
    .pc {
      display: none
    }
  }
*/
/*画像設定*/

  @media (min-width: 1025px) {
    .figure:hover img {
      transform: scale(1.1, 1.1);
      -webkit-transform: scale(1.1, 1.1);
      -moz-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
      -o-transform: scale(1.1, 1.1)
    }
  }
  
  .figure img {
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    vertical-align: bottom;
    display: block
  }
  
  .icon-phone:before {
    content: "\e902"
  }
  
  .icon-map-pin:before {
    content: "\e901"
  }
  
  .icon-mail:before {
    content: "\e900"
  }

/*その他*/
  .wp-caption {
    border: none;
    text-align: left;
    background-color: transparent;
    padding: 0;
    margin: 0 0 11.5px;
    border-radius: 0;
    max-width: 100%
  }
  
  .wp-caption-text {
    color: #a3a3a3;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.4
  }
  

  
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden
}
  
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}


/*SNS*/
.sns.flex {
    position: relative;
}
footer .inner> .sns.flex {
    justify-content: left;
}
.sns.flex .ico-x, .sns.flex .ico-line, .sns.flex .ico-instagram, .sns.flex .ico-youtube {
    height: 100%;
    padding: 20px;
}
.sns.flex .ico-x:hover, .sns.flex .ico-line:hover, .sns.flex .ico-instagram:hover, .sns.flex .ico-youtube:hover {
    opacity: 0.5;
}
.sns.flex .ico-x {
    background: url(../img/common/logo-x_blk.svg) no-repeat center center;
    background-size: 20px;
}
.sns.flex .ico-line {
    background: url(../img/common/logo-line.svg) no-repeat center center;
    background-size: 20px;
}
.sns.flex .ico-instagram {
    background: url(../img/common/logo-instagram.svg) no-repeat center center;
    background-size: 20px;
}
.sns.flex .facebook:before, .sns.flex .instagram:before, .sns.flex .youtube:before, .sns.flex .line:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    font-size: 2.4rem;
}
/*
.sns.flex .facebook:before {
    content: "";
}
.sns.flex .instagram:before {
    content: "\f16d";
}
.sns.flex .youtube:before {
    content: "";
}
.sns.flex .line:before {
    content: "";
}
*/