@charset "UTF-8";
/*====================================
　早見表
  $conts-width
  $color-yellow  $color-blue
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width
  flex-column  flex-center
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)
  fs(max,1000～768px,768～480px,480～320px,min)  fs2(max,min)
  mt(max,min) mb mtb  pt pb ptb

====================================*/
/*====================================*/
/*----------------------------------
  Structure
----------------------------------
0. タグ設定
  0.1. ページサイズ
1. ヘッダー
  1.1	ナビゲーション
  1.2 見出し
2. コンテンツ
  2.1. トップへ戻る
3. フッター

====================================*/
/*----------------------------------
	0. タグ設定
------------------------------------*/
/* ------ ベース ------- */
html {
  font-size: 62.5%;
}

body {
  font-size: clamp(14px, 2.917vw, 18px);
  font-weight: normal;
  line-height: 1.9em;
  color: #fff;
  font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  background: url(../images/bg.png) no-repeat top center #3b1c10;
}

/* ------ link ------- */
a {
  color: rgb(255, 251, 178);
  text-decoration: none;
}

a:visited {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

a.textlinkUl {
  text-decoration: underline;
}

a img {
  border: none;
  border: 0;
}

a:hover img.link {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

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

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
/*----------------------------------
	1. ヘッダー
------------------------------------*/
#site-header {
  /*background-color: rgba(255, 255, 255, 0.7);*/
}

.header-inner {
  margin: 0 auto;
  padding: clamp(10px, 1.302vw, 40px) 4%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header-titles .logo img {
    width: clamp(160px, 33.333vw, 230px);
  }
}

.header-titles {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .header-titles {
    width: clamp(160px, 33.333vw, 230px);
  }
}
.header-titles .logo {
  line-height: 0;
}
.header-titles .logo a:hover {
  text-decoration: none;
}

/* メイン画像  ----------------------*/
.mainimg {
  position: relative;
}
.mainimg .mainimage__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 480px) {
  .mainimg .mainimage__title {
    width: 94%;
  }
}
.mainimg .slick-slide img {
  width: 100%;
}

/*----------------------------------
	1.1. ナビゲーション
------------------------------------*/
/* フォントサイズ */
/* フォントの色 */
/* SP版背景 */
/* SP版ハンバーガーメニューの色 */
#nav li a {
  display: block;
  color: #000;
  position: relative;
  font-size: clamp(18px, 2.344vw, 20px);
}

#nav li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#nav .menu-item-has-children > a:after,
#nav .menu-item-has-children > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 1px;
  background: #000;
  transition: 0.2s;
}

#nav .menu-item-has-children > a:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

#nav .menu-item-has-children > a.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

#nav .menu-item-has-children > a.open:after {
  background: transparent;
}

#nav .menu-item-has-children .sub-menu {
  display: none;
}

.overlay {
  width: 0;
  height: 0;
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
  background: rgba(0, 0, 0, 0.7);
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

#main {
  transition: all 0.5s;
  min-height: 100vh;
}
#main.open {
  position: fixed;
  width: 100%;
}

#menu_btn {
  top: 2.5%;
  right: 1.5%;
  transition: 0.3s;
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 8px;
}
@media screen and (max-width: 1440px) {
  #menu_btn {
    top: 2.2%;
  }
}
@media screen and (max-width: 1360px) {
  #menu_btn {
    top: 8px;
  }
}
@media screen and (max-width: 768px) {
  #menu_btn {
    top: 1.8%;
    width: 40px;
    height: 40px;
  }
}

.menu-trigger {
  width: 36px;
  height: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .menu-trigger {
    width: 28px;
    height: 23px;
  }
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.5s;
  backface-visibility: hidden;
  overflow: hidden;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 14px;
}
@media screen and (max-width: 768px) {
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

#menu_btn.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
}
#menu_btn.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-14px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}

#nav {
  width: 280px;
  height: 100%;
  overflow: auto;
  padding: 90px 0;
  background-color: rgba(59, 28, 16, 0.9294117647);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  transform: translate(280px);
  transition: all 0.5s;
}
#nav.open {
  transform: translateZ(0);
}
#nav li {
  padding: 0 20px;
}
#nav li a {
  position: relative;
  padding: 20px;
  color: #fff;
}

#nav .menu-item-has-children > a:first-of-type {
  position: relative;
  padding-right: 2em;
}
#nav .menu-item-has-children > a.open:first-of-type {
  color: #000;
}
#nav .menu-item-has-children .sub-menu {
  margin-bottom: 20px;
}
#nav .menu-item-has-children .sub-menu li {
  padding: 0;
  margin-bottom: 20px;
}
#nav .menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
#nav .menu-item-has-children .sub-menu li a {
  padding: 0 20px 0 30px;
}

@media print, screen and (min-width: 769px) {
  /*#menu_btn,.overlay {
    display: none;
  }*/
  #nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
  }
  #nav li {
    position: relative;
  }
  #nav li:not(:last-child) {
    margin-right: 10px;
  }
  #nav li a {
    padding: 0.5em;
  }
  #nav .current-menu-item a {
    color: #fff;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type,
  #nav .current-menu-item a {
    color: #fff;
  }
  #nav .current-menu-item li a {
    color: #fff;
  }
  #nav li ul.sub-menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 140px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color: #fff;
    padding: 0.5em 20px;
    font-size: 90%;
  }
  #nav li ul.sub-menu li a:hover {
    color: #83759a;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  #nav ul {
    justify-content: center;
    margin: auto;
  }
  #nav li a {
    padding: 1.5em 0.5em;
  }
}
/*----------------------------------
	1.2. 見出し
------------------------------------*/
p {
  margin-bottom: 1em;
}

.h-style01 {
  font-size: clamp(48px, 6.25vw, 60px);
  font-weight: 100;
  color: #fff;
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.3em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .h-style01 {
    font-size: clamp(32px, 6.667vw, 36px);
  }
}

.h-style02 {
  font-size: clamp(23px, 2.995vw, 28px);
  line-height: 2;
  letter-spacing: 0.34em;
  font-weight: normal;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .h-style02 {
    font-size: clamp(19px, 3.958vw, 23px);
  }
}

.h-style03 {
  display: inline-block;
  font-size: clamp(14px, 2.917vw, 18px);
  line-height: 2;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0.7em;
  border-bottom: solid 1px #555;
  padding-right: 1.5em;
}
@media screen and (max-width: 768px) {
  .h-style03 {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}

.h-style04 {
  margin-bottom: 40px;
  font-size: clamp(18px, 2.344vw, 22px);
  font-weight: 500;
  padding: 1rem 2rem;
  border-top: 2px solid #e95513;
  border-bottom: 2px solid #e95513;
  background-color: #ffffff;
  color: #e95513;
  text-align: center;
  background-color: rgba(229, 84, 19, 0.0588235294);
}

.h-style05 {
  display: block;
  font-size: clamp(13px, 2.708vw, 14px);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  color: #6e6e6e;
  border-radius: 6px;
}

.h-style06 {
  position: relative;
  padding: 0.5em 0.7em;
  border-radius: 10px;
  background-color: #f6abab;
  color: #fff;
  margin-bottom: 30px;
}
.h-style06:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  width: 0;
  height: 0;
  border: 11px solid transparent;
  border-top: 11px solid #f6abab;
}

.h-style07 {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
  font-size: clamp(30px, 3.906vw, 34px);
  line-height: 1.3em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .h-style07 {
    font-size: clamp(24px, 5vw, 30px);
  }
}
.h-style07:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 4px;
  background-color: #446689;
}

.h-style08 {
  text-align: center;
}
.h-style08 span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  color: #e95513;
  font-size: clamp(30px, 3.906vw, 34px);
  line-height: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .h-style08 span {
    font-size: clamp(24px, 5vw, 30px);
  }
}
.h-style08 span:before, .h-style08 span:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 1.5em;
  height: 1px;
  background-color: #e95513;
}
.h-style08 span:before {
  left: 100%;
}
.h-style08 span:after {
  right: 100%;
}

/*== 線がループして伸縮 */
.btn-style01 {
  text-align: right;
  padding-right: 0.5em;
}
.btn-style01 a {
  font-size: clamp(14px, 2.917vw, 18px);
  line-height: 2;
  letter-spacing: 0.08em;
  position: relative;
  color: #000;
  padding: 10px 0;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*線の設定*/
  /*ペンの設定*/
  /*線と矢印を繰り返しアニメーション*/
}
@media screen and (max-width: 768px) {
  .btn-style01 a {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}
.btn-style01 a span {
  display: inline-block;
  padding: 0 1em 0 1.5em;
}
.btn-style01 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.btn-style01 a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 20px;
  height: 10px;
  background: url(../images/icon-pen.svg) no-repeat center;
  background-size: cover;
}
.btn-style01 a::before {
  animation: arrowlong01 2s ease infinite;
}
.btn-style01 a::after {
  animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 104%;
    opacity: 1;
  }
  100% {
    width: 104%;
    opacity: 0;
  }
}
@keyframes arrowlong02 {
  0% {
    left: 0;
    opacity: 0;
  }
  20% {
    left: 0;
    opacity: 1;
  }
  80% {
    left: 102%;
    opacity: 1;
  }
  100% {
    left: 102%;
    opacity: 0;
  }
}
/*----------------------------------
	2. コンテンツ
------------------------------------*/
#page .entry-content {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.conts__width-m {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .conts__width-m {
    max-width: 92%;
  }
}

.conts__width-s {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .conts__width-s {
    max-width: 92%;
  }
}

.conts__cell--0 {
  padding: 0;
}

.conts__cell--tb20 {
  padding: 20px 0;
}

.conts__cell--t20 {
  padding-top: 20px;
}

.conts__cell--b20 {
  padding-bottom: 20px;
}

.conts__cell--tb40 {
  padding: 40px 0;
}

.conts__cell--t40 {
  padding-top: 40px;
}

.conts__cell--b40 {
  padding-bottom: 40px;
}

.conts__cell--tb60 {
  padding: 60px 0;
}

.conts__cell--t60 {
  padding-top: 60px;
}

.conts__cell--b60 {
  padding-bottom: 60px;
}

.conts__cell--tb80 {
  padding: 80px 0;
}

.conts__cell--t80b40 {
  padding: 80px 0 40px;
}

.conts__cell--t80 {
  padding-top: 80px;
}

.conts__cell--b80 {
  padding-bottom: 80px;
}

.conts__inner {
  padding-left: 4%;
  padding-right: 4%;
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.conts__titlebg {
  padding-top: clamp(50px, 6.51vw, 60px);
  padding-bottom: 1px;
  background: url(../images/bg-title01.png) no-repeat left top, url(../images/bg-title01-repeat.png) repeat-x;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) {
  .conts__titlebg {
    padding-top: clamp(40px, 5.208vw, 50px);
  }
}

/*----------------------------------
	3. フッター
------------------------------------*/
#site-footer {
  padding: 40px 0;
}
#site-footer .conts__inner {
  border-top: 1px solid #fff;
  padding-top: 30px;
}

.footer-move {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 60px;
}

.footer-nav {
  margin-bottom: 60px;
}
.footer-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 680px) {
  .footer-nav ul li {
    width: 50%;
    margin-bottom: 10px;
    text-align: center;
  }
}
.footer-nav a {
  color: #fff;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  max-width: 150px;
}

.footer-menu-wrapper {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding-top: 40px;
}

@media (max-width: 699px) {
  .footer-menu-wrapper {
    width: 96%;
  }
}
.footer-info {
  max-width: 1000px;
  margin: 0 auto 50px;
}

@media (max-width: 1000px) {
  .footer-info {
    width: 96%;
  }
}
.footer-info address {
  font-style: normal;
  font-size: 1.6rem;
  color: #000;
}

.footer-copyright {
  text-align: center;
  color: #ffffff;
  padding: 25px 0;
  margin: 0;
  font-size: 12px;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

.pagetop:hover {
  opacity: 0.5;
}

.column-box__title {
  width: 35%;
}

.column-box__body {
  width: 65%;
}/*# sourceMappingURL=base.css.map */