@charset "utf-8";

/* ---------------------- */
/* base
/* ---------------------- */

:root {
  --c-orange: #ffa82c; /* ベース：オレンジ*/
  --c-d-orange: #ff8a00; /* 濃いアクセント：オレンジ*/
  --c-bg-orange: #fff4e8; /* 背景色：うすいオレンジ*/
  --gradient-o-right: linear-gradient( to right, rgb(255,138,0) 0%, rgb(255,198,59) 100%); /*グラデーション オレンジ 右へ濃→薄*/
  --gradient-y-left: linear-gradient( to right, rgb(255,250,166) 0%, rgb(255,184,83) 100%); /*グラデーション 黄色 左へ濃→薄*/
  --c-black: #333333;
} 

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 115px; /*ヘッダーの高さ分設定*/
  overflow: auto;
}
body {
  position: relative;
  font: 1.8rem/2 "Noto Sans JP","M PLUS 1p",'NotoSansCJKjp', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: var(--c-black);
  font-weight: 500;
  -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: var(--c-black);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  transition: all 0.2s 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;
  }
  .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;
 }
}

/* ****************************************************************************************************
   * アニメーション設定
**************************************************************************************************** */


/* ****************************************************************************************************
   * inview
**************************************************************************************************** */
[class*="inview-"] { opacity:0; visibility:hidden;transition: 0.55s transform .1s, 0.55s opacity .1s; }
@media (min-width:769px) {
  .inview-up { transform:translate3d(0,30px,0) }
  .inview-down { transform:translate3d(0,-15px,0) }
  .inview-left { transform:translate3d(30px,0,0) }
  .inview-right { transform:translate3d(-30px,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 }


/* ****************************************************************************************************
   * 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-green { 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.8rem;
}

table.default > tbody {
  border-radius: 10px;
/*  border: 1px solid var(--c-orange);*/
}


table.default > thead > tr > th,
table.default > tbody > tr > th,
table.default > tbody > tr > td {
  padding: 0.5em;
}

table.default > thead > tr > th {
/*  background: #fff;*/
  text-align: left;
}
table.default > thead > tr > th:nth-child(1) {
  color: var(--c-orange);
}

table.default > tbody > tr > th {
/*  background: #fff;*/
  text-align: left;
}
table.default > tbody > tr > td {
/*  background: #fff;*/
  text-align: left;
}
table.default > thead > tr > th[scope="col"] {
/*  background: #fff;*/
  color: var(--c-orange);
  text-align: left;
  vertical-align: center;
}
table.default > tbody > tr > th[scope="row"] {
/*  background: #fff;*/
  font-weight: bold;
  text-align: left;
  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"] {
  border-bottom: 0;
}


/* テーブルスクロール*/
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;
}

}

/* ----------------------------------------------------------------------------------------------------
   * テーブル
/* ------------------------------------------------------------------------------------------------- */

#main .table-wrap {
  max-width: 1080px;
  margin: 40px auto 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 角丸 テーブル
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#main table.radius {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
}
#main table.radius tbody tr th {
  background: var(--c-orange);
  color: #fff;
  text-align: left;
  padding: 1em 2em;
  border-bottom: 1px solid #fff;
}
#main table.radius tbody tr td {
  background: #f6f6f6;
  padding: 1em;
  border-bottom: 1px solid #cccccc;
}
#main table.radius tbody tr:last-child th,
#main table.radius tbody tr:last-child td {
  border-bottom: 0;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main table.radius tbody tr th {
    padding: 1em;
  }
  #main table.radius tbody tr td {
    padding: 1em;
    border-bottom: 0;
    margin-bottom: 0.5em;
  }
}


/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * レスポンシブ テーブル
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::: ブレイクポイント（スマホ表示時） :::::::: */

@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 {
  margin-top: 60px;
  text-align: center;
}
.btn {
  position: relative;
  width: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  background: #fff;
  color: var(--c-black);
  border-radius: 60px;
  padding: 0.8em 1em 0.8em 2em;
  transition: 0.6s;
  text-align: left;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.btn > * {
  display: block;
  position: relative;
  z-index: 1;
}
.btn span {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--c-orange);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn span::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.2s;
  margin-left: -4px;
}
.btn:hover {
  opacity: 1;
  background: var(--c-black);
  color: #fff;
}
.btn:hover span::after {
  margin-left: 0;
}

/* 逆カラー（オレンジ背景）*/
.btn.c-org {
  background: var(--c-orange);
  color: #fff;
}
.btn.c-org span {
  background: #fff;
}
.btn.c-org span::after {
  border-color: var(--c-orange);
}
.btn.c-org:hover {
  background: var(--c-black);
  color: #fff;
}

/* 戻るボタン*/
.btn.return {
  justify-content: flex-start;
  padding: 0.8em 2em 0.8em 1em;
}
.btn.return span {
  margin-right: 1em;
}
.btn.return span::after {
  border: 0;
  border-bottom: solid 2px var(--c-orange);
  border-left: solid 2px var(--c-orange);
  margin-left: 3px;
}
.btn.return:hover span::after {
  margin-left: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  .link-btn {
    margin-top: 30px;
  }
  .btn {
    /*padding: 0.5em 0.5em 0.5em 1em;*/
    padding: 0.6em 1em 0.6em 2em;
  }
  /*
  .btn span {
    width: 25px;
    height: 25px;
  }*/
}


/* ****************************************************************************************************
   * ページャー
**************************************************************************************************** */

div.pager-archive {
  margin-top: 90px;
  overflow: hidden;
}

div.pager-archive ul {
  list-style: none;
  position: relative;
  left: 50%;
  float: left;
  display: flex;
  align-items: center;
}
div.pager-archive ul li ~ li {
  margin: 0 0.5em 0.5em;
}
div.pager-archive ul li {
  margin: 0 1px;
  position: relative;
  left: -50%;
  float: left;
  background: #fff4e8;
  color: var(--c-orange);
  font-size: 1.6rem;
  margin-bottom: 0.5em;
  border-radius: 5px;
}
div.pager-archive ul li:hover,
div.pager-archive ul li:hover {
  opacity: 1;
  color: #fff !important;
  background: var(--c-orange) !important;
  border-radius: 5px;
}


div.pager-archive ul li a {
  background: var(--c-l-green);
  border-radius: 5px;
  color: var(--c-orange);
  display: block;
  padding: 0.1em 0.2em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  div.pager-archive {
    margin-top: 40px;
    overflow: hidden;
  }
  div.pager-archive ul {
    list-style: none;
    position: relative;
    left: 50%;
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ドット
/* ------------------------------------------------------------------------------------------------- */

div.pager-archive ul li.dot {
  border: 0;
  background: none;
}
div.pager-archive ul li.dot:hover {
  border: 0;
  color: var(--c-orange) !important;
  background: none !important;
}


/* ----------------------------------------------------------------------------------------------------
   * 前へ/次へ
/* ------------------------------------------------------------------------------------------------- */

div.pager-archive ul li.prev,
div.pager-archive ul li.next {
  background: none;
}
div.pager-archive ul li.prev a,
div.pager-archive ul li.next a {
  padding: 0.1em 0.8em;
  background: none;
}
div.pager-archive ul li.next a{
  color: var(--c-orange);
}
div.pager-archive ul li.prev a:hover,
div.pager-archive ul li.next a:hover{
  opacity: 1;
  color: #fff;
  background: var(--c-orange);
  border-radius: 10px;
}
div.pager-archive ul li.prev.nolink a,
div.pager-archive ul li.next.nolink a {
}


div.pager-archive ul li.prev.nolink:hover,
div.pager-archive ul li.next.nolink:hover {
  background: transparent !important;
  color: inherit !important;
}
div.pager-archive ul li.prev.nolink a:hover,
div.pager-archive ul li.next.nolink a:hover {
  background: #fff !important;
  color: var(--c-orange) !important;
}

/* ----------------------------------------------------------------------------------------------------
   * 現在の番号
/* ------------------------------------------------------------------------------------------------- */

div.pager-archive ul li.num {}

div.pager-archive ul li.num.current {}
div.pager-archive ul li.num.current a {
  color: #fff;
  background: var(--c-orange);
}
div.pager-archive ul li.current a:hover {
  background: var(--c-orange);
}

div.pager-archive ul li.num a {
  text-decoration: none;
  display: block;
  font-size: 1.0em;
  padding: 0 12px;
  color: var(--c-orange);
}
div.pager-archive ul li.num:hover{}
div.pager-archive ul li.num a:hover{
  opacity: 1;
  color: #fff;
  background: var(--c-orange);
}

/* ****************************************************************************************************
   * フロートクリア
**************************************************************************************************** */

.clearfix:after { content:''; display:block; clear:both; }

.clear { clear:both; }


/* ****************************************************************************************************
   * 画像（style.cssから移動）
**************************************************************************************************** */

/* キャプション */

.wp-caption {
  width: auto !important;
}

.wp-caption.aligncenter {
  text-align: center;
}

.wp-caption-text {
  margin-top: 0.5em;
  line-height: 1.5;
  color: #333;
  font-size: 93%;
  text-align: center;
}

/* 左寄せ */

.alignleft {
  margin: 0 2em 0.5em 0;
  float: left;
}

.alignleft + p {
  margin-top: 0;
}

/* 右寄せ */

.alignright {
  margin: 0 0 0.5em 2em;
  float: right;
}

.alignright + p {
  margin-top: 0;
}

/* 中央寄せ */

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
  display: table;
}