@charset "utf-8";

/* ---------------------- */
/* base
/* ---------------------- */

:root {
  --c-brown: #a2805b;
  --c-black: #000000;
  --c-light: #d8d0be;
  --c-bg: #efece7;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 115px; /*ヘッダーの高さ分設定*/
  overflow: auto;
}
body {
  font: 1.6rem/2 Ryumin Regular KL,"リュウミン R-KL","Noto Serif","Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
  color: #000000;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-size-adjust: 100%;
}

a {
  color:#000000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  transition: all 0.25s ease-in-out 0.0s;
  -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

.align-left {
  text-align: left !important;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  body {
    min-width: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  body {
    font-size: 1.5rem;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 表示／非表示
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* ブレイクポイントを超える場合に表示 */

.show-pc {
  position: fixed;
  top: -100%;
  left: -100%;
  z-index: -99999;
}

/* * ブレイクポイント ･････････････････ */

@media screen and (min-width:737px) {

  .show-pc {
    position: static;
    z-index: inherit;
  }

}

/* ブレイクポイント以下の場合に表示 */

/* * ブレイクポイント ･････････････････ */

@media screen and (min-width:737px) {

  .show-sp {
    position: fixed;
    top: -100%;
    left: -100%;
    z-index: -99999;
  }

}


/* ****************************************************************************************************
   * 共通 PC /スマホ表示振り分け
**************************************************************************************************** */

.pc-content {}

.sp-content {
  display: none !important;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

 .pc-content {
   display: none !important;
 }
 .sp-content {
   display: block !important;
 }
}

/* ****************************************************************************************************
   * アニメーション設定
**************************************************************************************************** */

/*ふわふわ*/
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fuwafuwa {
  animation: 3s fuwafuwa infinite;
}

/* ゆらゆら*/
.yurayura {
  animation-name: yurayura;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 3s;
  transform-origin: center bottom !important;
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}

/* きらきら*/
.star {
	animation: flashing 4s infinite;
}
@keyframes flashing {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.fuwafuwa,
.yurayura,
.star {
  animation: none;
  transform: none;
  transition: unset;
}
}

/* 交互にふわふわ*/
@keyframes fuwafuwa01 {
  0% {
    transform: translate(0, 45%)rotate(0)scaleY(0.99)translate(0, -45%);
  }
  25% {
    transform: translate(0, 45%)rotate(2deg)translate(0, -45%);
  }
  50% {
    transform: translate(0, 45%)rotate(0)scaleY(0.99)translate(0, -45%);
  }
  75% {
    transform: translate(0, 45%)rotate(-2deg)translate(0, -45%);
  }
  100% {
    transform: translate(0, 45%)rotate(0)scaleY(0.99)translate(0, -45%);
  }
}
.fuwafuwa-1-1 {
  animation: fuwafuwa01 2s infinite ease-in-out;
}
.fuwafuwa-1-2 {
  animation: fuwafuwa01 2.4s infinite .3s ease-in-out;
}
.fuwafuwa-1-3 {
  animation: fuwafuwa01 1.8s infinite .6s ease-in-out;
}

/* はねる*/
.bownd {
  animation: bownd 3s ease infinite;
}
@keyframes bownd {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

/* ピコピコ*/
.pikopiko {
  animation: pikopiko 1s steps(2, start) infinite;
}

@keyframes pikopiko {
  0% {
    transform: rotate(2deg);
  }
  to {
    transform: rotate(-1deg);
  }
}

/* ****************************************************************************************************
   * inview
**************************************************************************************************** */
[class*="inview-"] { opacity:0; visibility:hidden;transition: 1.2s transform, 1.2s opacity;}
@media (min-width:769px) {
  .inview-up { transform:translate3d(0,3%,0) }
  .inview-down { transform:translate3d(0,-30px,0) }
  .inview-left { transform:translate3d(3%,0,0) }
  .inview-right { transform:translate3d(-3%,0,0) }
}
.inview-active { transform:translate3d(0,0,0); opacity:1; visibility:visible; }
.delay1 { transition-delay:.1s }
.delay2 { transition-delay:.2s }
.delay3 { transition-delay:.3s }
.delay4 { transition-delay:.4s }
.delay5 { transition-delay:.5s }
.delay6 { transition-delay:.6s }
.delay7 { transition-delay:.7s }
.delay8 { transition-delay:.8s }
.delay9 { transition-delay:.9s }
.delay10 { transition-delay:1s }

@media (min-width:769px) {
  .inview-up1 {
    transform:translate3d(0,3%,0);
    opacity: 0;
    transition-duration: 1.0s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    will-change: transition;
  }
}
.inview-active1 { transform:translate3d(0,0,0); opacity:1; visibility:visible; }

/* ****************************************************************************************************
   * div
**************************************************************************************************** */

.column + * { margin-top:20px; }

* + .column { margin-top:20px; }

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .column + * { margin-top:40px; }

  * + .column { margin-top:40px; }

}

/* ****************************************************************************************************
   * テキスト
**************************************************************************************************** */

.color-red { color:#f00; }
.color-orange { color:#ff6e1e; }

.align-l { text-align:left !important; }
.align-c { text-align:center !important; }
.align-r { text-align:right !important; }

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.align-c { text-align:left !important; }

}

/* ****************************************************************************************************
   * 画像
**************************************************************************************************** */

.inline-left  { margin-right:4.70%; margin-bottom:0.75em; float:left; }
.inline-right { margin-left:4.70%; margin-bottom:0.75em; float:right; }

.inline-left img,
.inline-right img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.valign-t { vertical-align:top; }
.valign-m { vertical-align:middle; }
.valign-b { vertical-align:bottom; }

/* ****************************************************************************************************
   * リスト
**************************************************************************************************** */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ul
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

ul.default,
ul.default li {
  margin: 0;
  padding: 0;
}

ul.default {
  margin-left: 1.25em;
}

ul.default li {
  list-style: disc;
}

ul.default li ~ li {
  margin-top: 0.5em;
}

ul.default + * { margin-top:1.5em; }

* + ul.default { margin-top:1.5em; }


/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ol
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

ol.default,
ol.default li {
  margin: 0;
  padding: 0;
}

ol.default {
  margin-left: 1.75em;
}

ol.default li {
  list-style: decimal;
}

ol.default li ~ li {
  margin-top: 0.5em;
}

ol.default + * { margin-top:1.5em; }

* + ol.default { margin-top:1.5em; }

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * dl
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

dl.default,
dl.default dt,
dl.default dd {
  margin: 0;
  padding: 0;
}

dl.default dt {
  font-weight: inherit;
}

dl.default dd {
  margin-top: 0.5em;
  margin-left: 2.25em;
  display: list-item;
  list-style: disc;
}

dl.default + * { margin-top:1.5em; }

* + dl.default { margin-top:1.5em; }


/* ****************************************************************************************************
   * table
**************************************************************************************************** */

table { font-size:inherit; empty-cells:show; }

table.default + * { margin-top:0.75em; }

* + table.default { margin-top:0.75em; }

table.default { 
  border-collapse: collapse;
  width: 100%;
  font-size: 1.6rem;
  border-top: solid 1px #aaaaaa;
}

table.default th {
  font-weight: normal;
}

table.default > thead > tr > th,
table.default > tbody > tr > th,
table.default > tbody > tr > td {
  padding: 0.2em;
}

table.default > tbody > tr > th {
  border-bottom: solid 1px #aaaaaa;
  background: var(--c-bg);
  color: var(--c-black);
  text-align: center;
  font-weight: bold;
}

table.default > tbody > tr > td {
  border: solid 1px #aaaaaa;
  background: #fff;
  color: #333333;
  text-align: center;
  padding: 0.7em 0.5em;
}
table.default > tbody > tr > th[scope="col"] {
  border: solid 1px #aaaaaa;
  background: var(--c-bg);
  color: var(--c-black);
  font-weight: bold;
  text-align: center;
  vertical-align: center;
}
table.default > tbody > tr > th[scope="row"] {
  border: solid 1px #aaaaaa;
  background: #fbf8f2;
  color: var(--c-black);
  font-weight: bold;
  text-align: center;
  vertical-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

table.default { 
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
}

table.default > tbody > tr > th,
table.default > tbody > tr > td {
  padding: 5px 10px 10px;
}

table.default > tbody > tr > th[scope="row"] {}


/* テーブルスクロール*/
table .scroll-hint {
  width: 100% !important;
}
table .scroll-hint + div {
  width: 100% !important;
  margin-top: 1em;
}

table .scroll-hint > * {
  min-width: 820px;
/*  display: flex;*/
  margin-top: 0 !important;
}

table .scroll-hint-icon {
  top: 10px !important;
  left: 10px !important;
}

}


/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * レスポンシブ テーブル
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::: ブレイクポイント（スマホ表示時） :::::::: */

@media screen and (max-width:736px) {

  table.flex-table {
    display: block;
  }

  table.flex-table > thead {
    display: none;
  }

  table.flex-table > tbody {
    display: block;
  }

  table.flex-table > tbody > tr {
    display: block;
    background: transparent !important;
  }

  table.flex-table > tbody > tr ~ tr {
    padding-top: 1em;
    border-top: none;
  }

  table.flex-table > tbody > tr > th {
    padding: 0.25em 0.5em;
  }

  table.flex-table > tbody > tr > th[scope="col"] {
    display: none;
  }

  table.flex-table > tbody > tr > th[scope="row"] {
    width: 100%;
    text-align: left;
    display: block;
  }

  table.flex-table > tbody > tr > td {
    padding: 0.5em 0;
    text-align: left;
    display: block;
    border: none;
  }

  table.flex-table > thead ~ tbody > tr > td::before {
    content: attr(data-th);
    margin-bottom: 0.5em;
    padding: 0.25em 0.5em;
    border: solid 1px #d2bbc3;
    background: #fff6fb;
    display: block;
  }

  table.flex-table > tbody > tr > td ~ td::before {
    margin-top: 1em;
  }

  table.flex-table > tbody > tr > td:empty {
    height: 1em;
  }

  table.flex-table caption {
    display: block;
  }

}

/* * ブレイクポイント ･････････････････ */

@media screen and (max-width:736px) {

table.default:not(.no-responsive),
table.default:not(.no-responsive) tbody,
table.default:not(.no-responsive) tr,
table.default:not(.no-responsive) tr > * {
  width: 100%;
  display: block;
}


table.default:not(.no-responsive) tr ~ tr {
  margin-top: 20px;
}

table.default:not(.no-responsive) tr > th {
  margin-bottom: 5px;
  padding: 5px 10px 2px;
}

table.default:not(.no-responsive) tr > td {
/*  border: none;*/
}

table.default:not(.no-responsive) caption {
  display: block;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0.5em;
}

}


/* ****************************************************************************************************
   * layout
**************************************************************************************************** */

[class*="layout-flex"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: stretch;
}

.layout-flex-2 > * {
  width: 48%;
}

.layout-flex-2 > *:nth-child(n+3) {
  margin-top: 40px;
}

.layout-flex-3 > * {
  width: 30%;
  padding: 0.5em 1%;
}

.layout-flex-4 > * {
  width: 23%;
}

.layout-flex-4 > *:nth-child(n+5) {
  margin-top: 30px;
}

@media (max-width:736px) {
  .layout-flex-2 > * {
    width: 100%;
  }
  .layout-flex-2 > *~* {
    margin-top: 40px;
  }
  .layout-flex-3 > * {
    width: 50%;
  }
  .layout-flex-4 > * {
    width: 49%;
  }
  .layout-flex-4 > *:nth-child(n+3) {
    margin-top: 30px;
  }
}

/* ****************************************************************************************************
   * ボタン
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 通常ボタン
/* ------------------------------------------------------------------------------------------------- */

.link-btn {
  text-align: center;
}

.btn {
  position: relative;
  width: 300px;
  margin: 0 auto;
  display: block;
  color: var(--c-black);
  text-align: center;
  padding: 0.8em 1em;
  font-size: 1.8rem;
  line-height: 1.5;
  background: #fff;
  border: 1px solid var(--c-brown);
}

.btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px var(--c-black);
  border-right: solid 1px var(--c-black);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -7px;
  transition: 0.2s right;
}

.btn:hover {
  background: var(--c-brown);
  color: #fff;
  opacity: 1;
}
.btn > * {
  display: block;
  position: relative;
  z-index: 1;
}
.btn:hover:after {
  right: 10px;
  border-color: #fff;
}

/* 戻る*/

.btn.return::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-bottom: solid 1px var(--c-black);
  border-left: solid 1px var(--c-black);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: auto;
  left: 20px;
  margin-top: -7px;
  transition: 0.2s left;
}
.btn.return:hover:after {
  right: auto;
  left: 10px;
  border-color: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  .link-btn {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn {
    width: 300px;
    padding: 0.5em;
    font-size: 1.6rem;
  }
  .btn::after {
    content: '';
    width: 6px;
    height: 6px;
    background-size: 6px 6px;
    border: 0px;
    border-top: solid 1px var(--c-black);
    border-right: solid 1px var(--c-black);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -4px;
    transition: 0.2s right;
  }
}

/* ****************************************************************************************************
   * ページャー
**************************************************************************************************** */

div.pager-archive {
  margin-bottom: 40px;
  overflow: hidden;
}

div.pager-archive ul {
  list-style: none;
  position: relative;
  left: 50%;
  float: left;
}
div.pager-archive ul li ~ li {
  margin: 0 0.5em;
}
div.pager-archive ul li {
  margin: 0 1px;
  position: relative;
  left: -50%;
  float: left;
  color: var(--c-brown);
  font-size: 1.6rem;
}
div.pager-archive ul li a {
  color: var(--c-brown);
}

div.pager-archive ul li.prev,
div.pager-archive ul li.next{
  padding: 0.3em 0.8em;
}
div.pager-archive ul li.prev.nolink a,
div.pager-archive ul li.next.nolink a {
  color: #333333;
}
div.pager-archive ul li.next a{
  color: var(--c-brown);
}
div.pager-archive ul li.prev.nolink a:hover,
div.pager-archive ul li.next.nolink a:hover{
  opacity: 0.7;
}
div.pager-archive ul li.prev a:hover,
div.pager-archive ul li.next a:hover{
  text-decoration:underline;
  background: inherit;
}

div.pager-archive ul li.num {
  background: var(--c-bg);
}

/* ----------------------------------------------------------------------------------------------------
   * 現在の番号
/* ------------------------------------------------------------------------------------------------- */

div.pager-archive ul li.num.current {
  background: var(--c-brown);
  color: #fff !important;
}
div.pager-archive ul li.num.current a {
  color: #fff !important;
}
div.pager-archive ul li.current a:hover {}

div.pager-archive ul li.num a {
  text-decoration: none;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 0 10px;
  color: var(--c-brown);
}
div.pager-archive ul li.num:hover{
}
div.pager-archive ul li.num a:hover{
  color: #fff;
  background: var(--c-brown);
  opacity: 1;
}
div.pager-archive ul li.dot{
  padding-top: 10px;
  margin: 0 1em;
}

/* ****************************************************************************************************
   * フロートクリア
**************************************************************************************************** */

.clearfix:after { content:''; display:block; clear:both; }

.clear { clear:both; }

