@charset "UTF-8";

/* COMMON */
@font-face {
  font-family: "Futura Std";
  src: url("../fonts/Futura.ttc") format('woff');
  font-style: normal;
}

html {
  font-size: 62.5%;
  color: #000;
}

body {
  margin: 0;
  display: block;
  width: 100%;
  color: #231815;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  height: 100%;
  font-size: 1.5rem;
}

.page {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

p {
  font-size: 1.6rem;
  /* 16px */
  line-height: 2.0em;
  margin: 0 0 .5em;
}

ol {
  padding: 0;
}

a, a:focus, a:active, a.active {
  outline: 0;
  color: #969ba0;
  text-decoration: none;
}

a:hover {
  outline: 0;
  color: #e72420;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 600;
  line-height: 1.6em;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

dd {
  margin-left: 0;
}

.img-centered {
  margin: 0 auto;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media(min-width:768px) {
  p {
    font-size: 1.2rem;
  }

  ul {
    font-size: 1.2rem;
  }
}

@media(min-width:1024px) {
  p {
    font-size: 1.5rem;
  }

  ul {
    font-size: 1.5rem;
  }
}

@media(min-width:1280px) {
  p {
    font-size: 1.65rem;
  }

  ul {
    font-size: 1.65rem;
  }
}

@media(min-width:1366px) {
  p {
    font-size: 1.75rem;
  }

  ul {
    font-size: 1.75rem;
  }
}

@media(min-width:1920px) {
  p {
    font-size: 1.76rem;
    line-height: 2.9;
  }

  ul {
    font-size: 1.76rem;
  }
}

@media only screen and (max-width: 736px) {
  p {
    font-size: 1.4rem;
    line-height: 1.8em;
  }

  ul, ol {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 360px) {
  p {
    font-size: 1.28rem;
  }

  ul, ol {
    font-size: 1.28rem;
  }
}

/* ------------------------------------------------------------------
mv
------------------------------------------------------------------ */
/* wrap */
.mv_container .mv_wrapper {
  position: relative;
}

/* overlay */
.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(66, 33, 11, 0.24);
}

.mv-box {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.mv-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.text-box {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.mv__midashi {
  margin-bottom: 0px;
}

.mv__midashi h1 {
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 0em;
}

.mv_logo {
  width: 200px !important;
  margin-bottom: 2em;
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in-text {
  position: relative;
  opacity: 0;
  /* 初めは透明に設定 */
  transform: translateY(100%);
  /* 下からスライドするために位置を下に設定 */
  animation: fadeInFromBottom 2s forwards;
  /* フェードインアニメーションの設定 */
}

@keyframes fadeInFromBottom {
  to {
    opacity: 1;
    /* アニメーション終了時に完全に表示 */
    transform: translateY(0);
    /* アニメーション終了時の位置 */
  }
}

@media(min-width:768px) {
  .mv__midashi h1 {
    font-size: 2.0rem;
  }
}

@media(min-width:1024px) {
  .mv_container {
    padding: 0px 0px 0;
  }

  .mv__midashi h1 {
    font-size: 2.0rem;
  }
}

@media(min-width:1280px) {
  .mv__midashi h1 {
    font-size: 2.4rem;
  }

  .mv_logo {
    width: 340px !important;
  }
}

@media(min-width:1366px) {}

@media(min-width:1728px) {}

@media(min-width:1920px) {}

@media only screen and (max-width: 1023px) {
  .mv_container {
    margin-top: 0px;
  }

  .mv-box {
    height: 100vh;
  }

  .text-box {
    top: 50%;
    width: 86%;
    left: 50%;
    margin-left: -43%;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }

  .mv_logo {
    width: 240px !important;
  }

  .mv__midashi h1 {
    font-size: 1.9rem;
  }
}

@media only screen and (max-width: 540px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 390px) {}

@media only screen and (max-width: 360px) {
  .mv_logo {
    width: 220px !important;
  }

  .mv__midashi h1 {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 320px) {

}

/* ------------------------------------------------------------------
inner
------------------------------------------------------------------ */
.inner, .header-inner, .innerBox {
  margin-left: auto;
  margin-right: auto;
}

.inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.shadowBox {
  background: #fff;
  -moz-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  -webkit-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  box-shadow: 0 0 14px 0px rgba(115, 115, 115, .4);
}

.white_bg {
  background-color: #fff;
}

.under-page-inner {
  padding: 100px 0 100px;
  background: #fff;
}

@media(min-width:768px) {
  .header-inner {
    margin-left: -15px;
    margin-right: -15px;
  }

  .innerBox {
    padding: 0px 0;
  }

  .under-page-inner {
    padding: 70px 0 70px;
  }

  .c-flex {
    display: flex;
    flex-wrap: wrap;
  }
}

@media(min-width:1024px) {
  .innerBox {
    width: 782px;
  }

  .under-page-inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 140px 0 140px;
  }

  .breadcrumb .c-flex {
    display: flex;
  }

  .TitleWrapper {
    width: 32.6551724137931%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    position: -webkit-sticky;
    position: sticky;
    padding-bottom: 84px;
    top: 160px;
    padding-left: 60px;
  }

  .TextWrapper {
    padding-bottom: 84px;
    width: 68.3448275862069%;
    height: auto;
  }
}

@media(min-width:1280px) {
  .inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0px;
  }

  .innerBox {
    width: 880px;
  }

  .TitleWrapper {
    padding-left: 100px;
  }
}

@media(min-width:1366px) {}

@media(min-width:1920px) {
  .innerBox {
    width: 880px;
  }

  .under-page-inner {
    padding: 100px 0 100px;
  }
}

@media(min-width:1920px) {}

@media only screen and (max-width: 1023px) {
  .max_container {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 736px) {
  .inner, .max_container {
    width: 100%;
    padding: 0 5.333333333333334vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .header-inner {
    padding: 0px 15px 0;
  }

  .innerBox {
    padding: 0px 0px;
  }

  .under-page-inner {
    padding: 80px 0 60px;
  }
}

@media only screen and (max-width: 540px) {
  .TitleWrapper {
    width: 100%;
    position: relative;
    top: 0;
    padding-bottom: 5.333333333333334vw;
  }

  .TextWrapper {
    width: 100%;
    padding-bottom: 6.066666666666666vw;
    border: none;
  }

  .flex-sp {
    display: flex;
    justify-content: space-between;
  }
}

/* ------------------------------------------------------------------
リスト カラム
------------------------------------------------------------------ */
ul.list-3-column, ol.list-3-column, ul.list-2-column, ul.list-4-column, ol.list-4-column, ul.list-5-column, ul.list-6-column {
  letter-spacing: -.4em;
  text-align: center;
}

ul.list-3-column li, ol.list-3-column li, ul.list-2-column li, ul.list-4-column li, ol.list-4-column li, ul.list-5-column li, ul.list-6-column li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

ul.list-3-column li, ol.list-3-column li {
  width: 31%;
  margin-left: 3.5%;
  margin-bottom: 3.5%;
}

ul.list-3-column li:first-child, ol.list-3-column li:first-child {
  margin-left: 0;
}

ul.list-3-column li:nth-child(3n+1), ol.list-3-column li:nth-child(3n+1) {
  margin-left: 0;
}

ul.list-2-column li {
  width: 48%;
  margin-left: 4%;
  margin-bottom: 3.5%;
}

ul.list-2-column li:first-child {
  margin-left: 0;
}

ul.list-2-column li:nth-child(odd) {
  margin-left: 0;
}

ul.list-4-column li, ol.list-4-column li {
  width: 23.5%;
  margin-left: 2%;
  margin-bottom: 2%;
}

ul.list-4-column li:first-child, ol.list-4-column li:first-child {
  margin-left: 0;
}

ul.list-4-column li:nth-child(4n), ol.list-4-column li:nth-child(4n) {
  margin-right: 0;
}

ul.list-4-column li:nth-child(4n+5), ol.list-4-column li:nth-child(4n+5) {
  margin-left: 0;
}

ul.list-5-column li {
  width: 18.4%;
  margin-left: 2%;
  margin-bottom: 2%;
}

ul.list-5-column li:first-child {
  margin-left: 0;
}

ul.list-5-column li:nth-child(5n) {
  margin-right: 0;
}

ul.list-5-column li:nth-child(5n+6) {
  margin-left: 0;
}

ul.list-6-column li {
  width: 15%;
  margin-left: 2%;
  margin-bottom: 2%;
}

ul.list-6-column li:first-child {
  margin-left: 0;
}

@media(min-width:768px) {
  ul.list-6-column li:nth-child(6n) {
    margin-right: 0;
  }

  ul.list-6-column li:nth-child(6n+7) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 736px) {
  ul.list-3-column li, ol.list-3-column li, ul.list-2-column li {
    display: block;
  }

  ul.list-3-column li, ol.list-3-column li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }

  ul.list-2-column li {
    width: 100%;
    margin-left: 0%;
  }
}

@media only screen and (max-width: 414px) {
  ul.list-4-column li, ol.list-4-column li, ul.list-5-column li, ul.list-6-column li {
    display: inline-block;
  }

  ul.list-4-column li, ol.list-4-column li, ul.list-5-column li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 15px;
  }

  ul.list-4-column li:first-child, ol.list-4-column li:first-child, ul.list-5-column li:first-child {
    margin-left: 0;
  }

  ul.list-4-column li:nth-child(2n), ol.list-4-column li:nth-child(2n), ul.list-5-column li:nth-child(2n) {
    margin-right: 0;
  }

  ul.list-4-column li:nth-child(2n+3), ol.list-4-column li:nth-child(2n+3), ul.list-5-column li:nth-child(2n+3) {
    margin-left: 0;
  }

  ul.list-6-column li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 15px;
  }

  ul.list-6-column li:first-child {
    margin-left: 0;
  }

  ul.list-6-column li:nth-child(2n) {
    margin-right: 0;
  }

  ul.list-6-column li:nth-child(2n+3) {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------
高さそろえる　flex
------------------------------------------------------------------ */
ul.list-2-flex li:first-child, ol.list-2-flex li:first-child, ul.list-3-flex li:first-child, ul.list-4-flex li:first-child, ul.list-5-flex li:first-child, ul.list-6-flex li:first-child {
  margin-left: 0;
}

ul.list-2-flex, ol.list-2-flex, ul.list-3-flex, ul.list-4-flex, ul.list-5-flex, ul.list-6-flex {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 667px) and (max-width: 1021px) {
  ul.list-4-flex, ul.list-5-flex, ul.list-6-flex {
    flex-wrap: wrap;
  }

  ul.list-3-flex li, ul.list-4-flex li, ul.list-5-flex li, ul.list-6-flex li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
  }

  ul.list-3-flex li:nth-child(even), ul.list-4-flex li:nth-child(even), ul.list-5-flex li:nth-child(even), ul.list-6-flex li:nth-child(even) {
    margin-left: 4%;
  }

  ul.list-3-flex li:nth-child(odd), ul.list-4-flex li:nth-child(odd), ul.list-5-flex li:nth-child(odd), ul.list-6-flex li:nth-child(odd) {
    margin-left: 0%;
  }
}

@media(min-width:667px) {
  ul.list-2-flex li, ol.list-2-flex li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
  }

  ul.list-2-flex li:nth-child(odd), ol.list-2-flex li:nth-child(odd) {
    margin-left: 0;
  }

  .flexInner {
    padding: 40px 30px;
  }
}

@media(min-width:1024px) {
  ul.list-3-flex li {
    width: 31%;
    margin-left: 3.5%;
    margin-bottom: 30px;
    box-sizing: border-box;
    overflow: hidden;
  }

  ul.list-3-flex li:nth-child(3n) {
    margin-right: 0;
  }

  ul.list-3-flex li:nth-child(3n+4) {
    margin-left: 0;
  }

  ul.list-4-flex li {
    width: 23.5%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  ul.list-4-flex li:nth-child(4n) {
    margin-right: 0;
  }

  ul.list-4-flex li:nth-child(4n+5) {
    margin-left: 0;
  }

  ul.list-5-flex li {
    width: 18.4%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  ul.list-5-flex li:nth-child(5n) {
    margin-right: 0;
  }

  ul.list-5-flex li:nth-child(5n+6) {
    margin-left: 0;
  }

  ul.list-6-flex li {
    width: 15.8333%;
    margin-left: 1%;
    margin-bottom: 2%;
  }

  ul.list-6-flex li:nth-child(6n) {
    margin-right: 0;
  }

  ul.list-6-flex li:nth-child(6n+7) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 540px) {
  ul.list-3-flex {
    display: block;
  }

  ul.list-4-flex li, ul.list-5-flex li, ul.list-6-flex li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
  }

  ul.list-4-flex li:nth-child(odd), ul.list-5-flex li:nth-child(odd), ul.list-6-flex li:nth-child(odd) {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------
横スライド
------------------------------------------------------------------ */
ul.beside_slide_3_column, ul.beside_slide_4_column, ul.beside_slide_5_column {
  letter-spacing: -.4em;
  text-align: center;
}

ul.beside_slide_3_column li, ul.beside_slide_4_column li, ul.beside_slide_5_column li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

@media(min-width:1024px) {
  ul.beside_slide_3_column li {
    width: 31%;
    margin-left: 3.5%;
    margin-bottom: 3.5%;
  }

  ul.beside_slide_3_column li:first-child {
    margin-left: 0;
  }

  ul.beside_slide_3_column li:nth-child(3n) {
    margin-right: 0;
  }

  ul.beside_slide_3_column li:nth-child(3n+4) {
    margin-left: 0;
  }

  ul.beside_slide_4_column li {
    width: 23.5%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  ul.beside_slide_4_column li:first-child {
    margin-left: 0;
  }

  ul.beside_slide_4_column li:nth-child(4n) {
    margin-right: 0;
  }

  ul.beside_slide_4_column li:nth-child(4n+5) {
    margin-left: 0;
  }

  ul.beside_slide_5_column li {
    width: 18.4%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  ul.beside_slide_5_column li:first-child {
    margin-left: 0;
  }

  ul.beside_slide_5_column li:nth-child(5n) {
    margin-right: 0;
  }

  ul.beside_slide_5_column li:nth-child(5n+6) {
    margin-left: 0;
  }
}

@media (768px <=width <=1023px) {
  ul.beside_slide_3_column li, ul.beside_slide_4_column li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
  }

  ul.beside_slide_3_column li:first-child, ul.beside_slide_4_column li:first-child {
    margin-left: 0;
  }

  ul.beside_slide_3_column li:nth-child(2n), ul.beside_slide_4_column li:nth-child(2n) {
    margin-right: 0;
  }

  ul.beside_slide_3_column li:nth-child(2n+3), ul.beside_slide_4_column li:nth-child(2n+3) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 540px) {
  .slider_responsive {
    width: 100%;
    overflow-y: hidden;
  }

  ul.beside_slide_3_column, ul.beside_slide_4_column, ul.beside_slide_5_column {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }

  ul.beside_slide_3_column li, ul.beside_slide_4_column li, ul.beside_slide_5_column li {
    vertical-align: top;
    text-align: center;
    width: 70%;
    white-space: normal;
    display: inline-block;
    margin: 0 10px;
  }
}

/* ------------------------------------------------------------------
flex teble
------------------------------------------------------------------ */
.f_t__th {
  color: #333;
  font-weight: 500;
  background: #f6f9fd;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  padding: 20px 15px;
}

.f_t__td {
  width: 100%;
  padding: 20px 15px;
}

@media(min-width:1024px) {
  ul.flex_table li:first-child {
    border-top: solid 1px #006dd2;
  }

  ul.flex_table li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #006dd2;
  }

  .f_t__th {
    width: 24%;
    padding: 30px;
  }

  .f_t__td {
    width: 76%;
    padding: 30px;
  }
}

@media only screen and (max-width: 1023px) {}

/* ------------------------------------------------------------------
リストteble
------------------------------------------------------------------ */
ul.teble-list li {
  border-bottom: solid 1px #ced7e2;
  display: table;
  width: 100%;
  line-height: 1.8em;
}

ul.teble-list li:first-child {
  border-top: solid 1px #ced7e2;
}

ul.teble-list li div {
  display: table-cell;
  vertical-align: middle;
  padding: 12px 20px;
}

ul.teble-list li div:first-child {
  background: #f2f4f7;
  width: 24%;
  text-align: center;
  letter-spacing: 1px;
  border-left: solid 1px #ced7e2;
  font-weight: 600;
  color: #717071;
}

ul.teble-list li div:last-child {
  border-right: solid 1px #ced7e2;
}

/* -----teble-listライン----- */
ul.teble-listLine {
  line-height: 1.8em;
}

ul.teble-listLine li {
  display: table;
  width: 100%;
}

ul.teble-listLine li div {
  display: table-cell;
  vertical-align: middle;
  padding: 30px 15px;
}

ul.teble-listLine li div:first-child {
  letter-spacing: .5px;
  border-bottom: solid 1px #ed699c;
  font-weight: 500;
  text-align: center;
  padding: 30px 15px;
  text-align: left;
  letter-spacing: .1em;
}

ul.teble-listLine li div:last-child {
  border-bottom: solid 1px #71706a;
}

@media(min-width:768px) {
  ul.teble-listLine li div:first-child {
    width: 30%;
  }

  /* -----teble-listライン----- */
  ul.teble-listLine li div {
    vertical-align: top;
  }

  ul.teble-listLine li:first-child div:first-child {
    border-top: solid 1px #006dd2;
    color: #333;
  }

  ul.teble-listLine li:first-child div:last-child {
    border-top: solid 1px #e5eaf0;
  }

  ul.teble-listLine li div:first-child {
    border-bottom: solid 1px #006dd2;
    color: #333;
  }

  ul.teble-listLine li div:last-child {
    border-bottom: solid 1px #e5eaf0;
  }

  ul.teble-listLine li:last-child div:first-child {
    border-bottom: solid 1px #006dd2;
  }

  ul.teble-listLine li:last-child div:last-child {
    border-bottom: solid 1px #e5eaf0;
  }
}

@media(min-width:1024px) {
  ul.teble-listLine li div:first-child {
    text-align: center;
    width: 26%;
  }
}

@media(min-width:1280px) {}

@media only screen and (max-width: 736px) {
  ul.teble-list li {
    display: block;
    border: 0;
  }

  ul.teble-list li:first-child {
    border: 0;
  }

  ul.teble-list li div {
    display: block;
    padding: 10px 10px 20px;
  }

  ul.teble-list li div:first-child {
    width: 100%;
    text-align: left;
    padding: 8px 10px;
    border-right: solid 0px #c8d2dd;
    border-left: solid 0px #c8d2dd;
  }

  ul.teble-list li div:last-child {
    border-left: solid 0px #c8d2dd;
    border-right: solid 0px #e9e9e9;
  }

  ul.teble-list li:first-child div {
    border-top: solid 0px #c8d2dd;
  }

  ul.teble-list li:last-child div {
    border-bottom: solid 0px #c8d2dd;
  }

  /* -----teble-listライン----- */
  ul.teble-listLine li {
    display: block;
    border: 0;
  }

  ul.teble-listLine li:first-child {
    border: 0;
  }

  ul.teble-listLine li div {
    display: block;
  }

  ul.teble-listLine li div:first-child {
    text-align: center;
    padding: 10px 10px;
    border-top: solid 1px #006dd2;
    border-bottom: dotted 1px #c8d2dd;
  }

  ul.teble-listLine li div:last-child {
    border-bottom: solid 0px #eee;
    padding: 10px 10px 30px;
  }

  ul.teble-listLine li:last-child div:last-child {
    border-bottom: solid 1px #006dd2;
  }
}

/* ------------------------------------------------------------------
bootsytap teble
------------------------------------------------------------------ */
.table-bordered {
  border: 1px solid #ccc;
}

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
  border: 1px solid #ccc;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  padding: 13px;
  text-align: center;
  vertical-align: middle;
}

.table>thead:first-child>tr:first-child>th:first-child {
  background: #fff;
}

.table>tbody>tr>th {
  text-align: center;
  vertical-align: middle;
}

.table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
  border-bottom-width: 1px;
}

.table>thead>tr>th {
  vertical-align: middle;
  text-align: center;
  background: #3F5262;
  color: #fff;
}

.table-bordered {
  font-size: 1.3rem;
}

@media only screen and (max-width: 736px) {
  .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 13px 8px;
  }
}

/* ------------------------------------------------------------------
leftBox/rightBox
------------------------------------------------------------------ */
.leftBox {
  width: 100%;
}

.rightBox {
  width: 100%;
}

@media(min-width:1024px) {
  .leftBox {
    float: left;
    width: 48%;
    margin-left: 0%;
  }

  .rightBox {
    float: left;
    width: 48%;
    margin-left: 4%;
  }
}

/* ------------------------------------------------------------------
img
------------------------------------------------------------------ */
.flex-item {
  flex-basis: 100%;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
  margin: 0 auto;
}

.image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photaria {
  margin-left: auto;
  margin-right: auto;
}

.photaria img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
}

.phot-disc {
  display: block !important;
  font-size: 1.18rem;
  margin: .3em 0 .5em;
  text-align: center;
}

/* -----画像トリミング・角丸.3em----- */
.fix-phot-radius {
  position: relative;
  width: 100%;
  /*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
  padding-top: 100%;
  /*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
  overflow: hidden;
  /*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
  margin: 0 auto;
  -moz-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -o-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -ms-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  transition: border-radius .2s linear, color .2s linear, border .2s linear;
}

.fix-phot-radius img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;
}

.fix-phot-top {
  position: relative;
  width: 100%;
  padding-top: 66.666666%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 0;
  -moz-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -o-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -ms-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  transition: border-radius .2s linear, color .2s linear, border .2s linear;
}

.fix-phot-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;
}

.blog-phot, .trimming-photo {
  background: url(../img/nophoto.png) no-repeat top center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  position: relative;
  width: 100%;
  /*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
  padding-top: 100%;
  /*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
  overflow: hidden;
  /*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
  margin: 0 auto;
}

.trimming-photo {
  padding-top: 75%;
}

.blog-phot img, .trimming-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 140%;
  max-height: 140%;
}

.article::after {
  content: "";
  display: block;
  clear: both;
}

.photoLeft {
  width: 240px;
  float: left;
  margin-right: 40px;
  margin-bottom: 30px;
}

.photoRight {
  width: 300px;
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.photoLeft img, .photoRight img {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
}

.scale {
  margin-left: auto;
  margin-right: auto;
}

.scale img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
}

@media(min-width:768px) {
  .scale {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .scale img {
    width: 100%;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
  }

  .scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media only screen and (max-width: 736px) {
  .photoLeft {
    width: 170px;
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .photoRight {
    margin-left: 15px;
    margin-bottom: 5px;
  }
}

.shadow {
  -moz-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  -webkit-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  box-shadow: 0 0 14px 0px rgba(115, 115, 115, .4);
}

/* ------------------------------------------------------------------
youtube
------------------------------------------------------------------ */
.youtube_frame{
  position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.youtube_frame iframe{
  position: absolute;
      top: 50%;
      left: 50%;
      /* 16:9の比率を保つため、幅100vwに対して高さは56.25vw */
      width: 100vw;
      height: 56.25vw;
      /* 画面より小さい場合の対処（全画面埋め尽くし） */
      min-height: 100vh;
      min-width: 177.77vh; /* 16/9 * 100 */
      transform: translate(-50%, -50%);
}

video {
  width: 100%;
  /*max-width: 500px;*/
}

#topYoutube {
  border-radius: 6px;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.youtube {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.image-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 736px) {
  #topYoutube {
    margin: 15px 0;
    padding: 15px;
  }
}

/* ------------------------------------------------------------------
404
------------------------------------------------------------------ */
.errorBox .not {
  font-family: "Futura Std", sans-serif;
  font-weight: 400;
  position: relative;
  color: #ebedf0;
  line-height: 1;
}

.errorBox .not::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ebedf0;
}

.errorBox h2{
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 1.87735vw;
  letter-spacing: 0.05em;
  margin-left: -0.1875vw;
}

.errorBox .text {
  font-size: 0.8761vw;
  letter-spacing: 0.05em;
  margin-top: 1.375vw;
  line-height: 2.5;
}

.errorBox .back a{
  display: block;
  color: #2c1b1e;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  moz-transition: background-color .2s linear, color .2s linear, border .2s linear;
    -webkit-transition: background-color .2s linear, color .2s linear, border .2s linear;
    -o-transition: background-color .2s linear, color .2s linear, border .2s linear;
    -ms-transition: background-color .2s linear, color .2s linear, border .2s linear;
    transition: background-color .2s linear, color .2s linear, border .2s linear;
}

.errorBox .back a::after{
  transition: background-color 0.6s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0.3s;
}

.errorBox .back a::after{
  content: "";
  width: 11px;
  height: 2px;
  background-color: #2c1b1e;
  position: relative;
  display: inline-block;
  margin-left: 0.7vw;
  top: -0vw;
  vertical-align: middle;
}

.errorBox .back a:hover{
  color: #e72420;
}

.errorBox .back a:hover::after{
  background-color: #e72420;
}

@media(min-width:1024px) {
  .errorBox .not {
    font-size: 4.38048vw;
    margin-bottom: 2.75vw;
    margin-left: -0.0625vw;
    padding-bottom: 1.875vw;
  }

  .errorBox .back{
    margin-top: 2.3125vw;
    font-weight: 600;
  }

  .errorBox .back a{
    font-size: 1.32641vw;
    font-weight: 600;
  }
}

@media only screen and (max-width: 1023px) {
  .errorBox .not {
    font-size: 14.0vw;
    margin-bottom: 8.26667vw;
    margin-left: -0.13333vw;
    padding-bottom: 6.4vw;
  }

  .errorBox h2{
    font-size: 6.66667vw;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-left: -0.4vw;
  }

  .errorBox .text{
    font-size: 3.2vw;
    letter-spacing: 0.05em;
    margin-top: 5.86667vw;
    line-height: 2;
  }

  .errorBox .back{
    display: flex;
    margin-top: 6.4vw;
  }

  .errorBox .back a {
    display: block;
    position: relative;
    border: 1px solid #ebedf0;
    padding: 1.86667vw 12.26667vw 1.6vw 12.26667vw;
    font-size: 4vw;
  }

}

/* ------------------------------------------------------------------
margin　スクロール
------------------------------------------------------------------ */
.mb-box {
  margin-bottom: 80px;
}

.mb-box:last-child {
  margin-bottom: 0px;
}

.scrollBox {
  margin-top: -120px;
  padding-top: 120px;
}

.mb8 {
  margin-bottom: 8px;
}

.mb10 {
  margin-bottom: 10px;
}

a.anchor {}

@media only screen and (max-width: 736px) {
  .mb-box {
    margin-bottom: 40px;
  }

  .scrollBox {
    margin-top: -50px;
    padding-top: 50px;
  }
}

/* ------------------------------------------------------------------
inline-block
------------------------------------------------------------------ */
.need_container {
  text-align: center;
}

.needsBox {
  display: inline-block;
  text-align: left;
}

/* ------------------------------------------------------------------
headerボタン
------------------------------------------------------------------ */
.mail__icon::before {
  display: block;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 25px;
  top: 50%;
  background: url(../img/mail_icon.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
}

/* ------------------------------------------------------------------
ボタン
------------------------------------------------------------------ */
.btn {
  position: relative;
  line-height: 44px;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  -moz-border-radius: .1em;
  -webkit-border-radius: .1em;
  -o-border-radius: .1em;
  -ms-border-radius: .1em;
  border-radius: .1em;
  border: 0px solid transparent;
  padding: 0px 0 0 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -moz-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -o-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -ms-transition: background-color .2s linear, color .2s linear, border .2s linear;
  transition: background-color .2s linear, color .2s linear, border .2s linear;
}

.btn:focus, .btn:active, .btn.active {
  outline: 0;
  color: #fff;
}

.btn a {
  text-decoration: none !important;
}

.btn:hover {
  background: #fff;
}

.radius {
  -moz-border-radius: 60px !important;
  -webkit-border-radius: 60px !important;
  -o-border-radius: 60px !important;
  -ms-border-radius: 60px !important;
  border-radius: 60px !important;
}

.arrow_btn::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: .1em;
  top: 50%;
  background: url(../img/arrow_right_black.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-top: -8px;
}

.arrow_btn:hover::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: .1em;
  top: 50%;
  background: url(../img/arrow_right_green.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-top: -8px;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 #cc9d58;
  }

  70% {
    box-shadow: 0 0 0 10px rgb(204 157 88 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(204 157 88 / 0%);
  }
}

.btn-black-o, .btn-black-o:focus, .btn-black-o:active {
  background-color: transparent;
  color: #000;
  border: solid 1px #000;
}

.btn-black-o:hover {
  background-color: transparent;
  color: #000;
  border: solid 1px #000;
}

.btn-white-o, .btn-white-o:focus, .btn-white-o:active {
  background-color: transparent;
  color: #fff;
  border: solid 1px #fff;
}

.btn-white-o:hover {
  background-color: transparent;
  color: #fff;
  border: solid 1px #fff;
}



.btn-green, .btn-green:focus, .btn-green:active {
  background-color: #7ea53a;
  color: #fff;
}

.btn-green:hover {
  background-color: #000000;
  color: #fff;
}

.btn-blue, .btn-blue:focus, .btn-blue:active {
  background-color: #0455bf;
  color: #fff;
}

.btn-blue:hover {
  background-color: #0039df;
  color: #fff;
}

.btn-blue-o, .btn-blue-o:focus, .btn-blue-o:active {
  background-color: #fff;
  color: #0455bf;
  border: solid 1px #0455bf;
}

.btn-blue-o:hover {
  background-color: #0455bf;
  color: #fff;
  border: solid 1px #0455bf;
}

.btn-lblue, .btn-lblue:focus, .btn-lblue:active {
  background-color: #b1bac1;
  color: #fff;
}

.btn-lblue:hover {
  background-color: #909da6;
  color: #fff;
}

.btn-white, .btn-white:focus, .btn-white:active {
  background-color: #fff;
  color: #006dd2;
}

.btn-white:hover {
  background-color: #fff151;
  color: #006dd2;
}

.btn-dblue, .btn-dblue:focus, .btn-dblue:active {
  background-color: #005e88;
  color: #fff;
}

.btn-dblue:hover {
  background-color: #7faec3;
  color: #fff;
}

.link_border{
  position: relative;
  display: block;
  -moz-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -o-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -ms-transition: background-color .2s linear, color .2s linear, border .2s linear;
  transition: background-color .2s linear, color .2s linear, border .2s linear;
  color: #000;
  border-bottom: solid 1px;
  padding: .5em .1em;
  font-size: 1.6rem;
}

.link_border::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #7ea53a;
  transition: .3s;
}

.link_border:hover{
  color: #7ea53a;
}

.link_border:hover::after {
  width: 100%;
}

@media(min-width:1024px) {
  .btn {
    font-size: 1.7rem;
  }
  .tp_conv_btn {
    transition: filter 0.3s;
  }

  .tp_conv_btn:hover {
    filter: brightness(110%);
  }
}

@media(min-width:1280px) {
  .btn {
    font-size: 1.65rem;
  }
}

@media(min-width:1920px) {
  .btn {
    font-size: 1.86rem;
  }

}

@media only screen and (max-width: 320px) {
  .btn {
    font-size: 1.54rem;
  }

}
/* ------------------------------------------------------------------
fontsize color 蛍光マーカー
------------------------------------------------------------------ */
.toptex {
  font-weight: 600;
  line-height: 2.0em;
  font-size: 2.0rem;
}

.yellow_line_narrow {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #fdf64d 0%) repeat scroll 0 0;
}

.purple_line_narrow {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #cbb2da 0%) repeat scroll 0 0;
}

.purple_line_narrow {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #cbb2da 0%) repeat scroll 0 0;
}

.mint_line_narrow {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #9ecdcf 0%) repeat scroll 0 0;
}

.lyellow_line_narrow {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #ffeb00 0%) repeat scroll 0 0;
}

del {
  background-image: linear-gradient(#e70000, #e70000);
  background-position: 0 60%;
  background-size: 100% 4px;
  background-repeat: repeat-x;
  text-decoration: none;
  padding: 0 2px;
}

.label {
  display: inline-block;
  padding: .2em .5em .3em;
  line-height: 1;
  font-size: 88%;
  border-radius: 0em;
  margin-left: 2px;
  margin-right: 2px;
}

.label-purple {
  background: #cbb2da;
}

.label-mint {
  background: #9ecdcf;
}

.label-block {
  background: rgba(0, 0, 0, 0.4);
}

.text-red {
  color: #db2d0a;
}

.text-white {
  color: #fff;
}

.text-yellow {
  color: #ffd700;
}

.text-block {
  color: #28292C;
}

.text-pink {
  color: #d86c9a;
}

.text-blue {
  color: #5380c3;
}

.text-purple {
  color: #d4c4df;
}

.text-mint {
  color: #9dd7d9;
}

.text-yellow {
  color: #eacb99;
}

.text_l {
  font-size: 130%;
}

.md-center {
  text-align: center;
  display: block;
}

.kome {
  display: block;
  font-size: 70%;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 0;
}

.kome1 {
  display: block !important;
  font-size: 11px;
  line-height: 1em;
  font-weight: 400;
}

.kome3 {
  font-size: 12px;
  line-height: 34px;
  font-weight: 400;
}

.grayBox {
  padding: 10px 10px 0;
  border: solid 1px #eee;
  border-radius: .2em;
  margin-top: 10px;
}

.grayBox p {
  font-size: 1.1rem;
}

@media only screen and (max-width: 736px) {
  .toptex {
    line-height: 1.6em;
    font-size: 1.5rem;
  }

  .kome1 {
    line-height: 2em;
    margin-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .md-center {
    text-align: left;
  }
}

@media only screen and (max-width: 320px) {
  .toptex {
    font-size: 1.23rem;
  }

  .text_l {
    font-size: 121%;
  }
}

/* ------------------------------------------------------------------
footer
------------------------------------------------------------------ */
footer {
  width: 100vw;
  position: relative;
  background: #000;
  padding: 140px 0 60px;
}

footer .inner {
  position: relative;
}

.f_menu ul li {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  margin-bottom: 1em;
  font-size: 1.55rem;
}


.f_menu ul li a {
  display: block;
  color: #fff;
}

.f_menu ul li a:hover {
  color: #f4ecde;
  text-decoration: underline;
}

.f_logo img {
  width: 7.32vw;
  margin-bottom: 1.8vw;
  height: auto !important;
}

.footer__logo_wrapper p {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
}

.footer__logo_wrapper a {
  color: #fff;
}

.footer__logo_wrapper {
  margin-top: 40px;
  padding-top: 20px;
}

.footer__bottom_wrapper {
  padding-top: 120px;
}

.f_menu_bottom ul {
  display: flex;
}

.f_menu_bottom ul li {
  padding-left: 2em;
  font-size: 1.2rem;
}

.f_menu_bottom ul li a {
  display: block;
  color: #fff;
}

.f_menu_bottom ul li:first-child {
  padding-left: 0;
}

footer .copy {
  font-family: "Futura Std", sans-serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
}

@media(min-width:768px) {
  footer .c-flex {
    display: block;
  }
}

@media(min-width:1024px) {
  footer .inner {
    max-width: 68%;
  }

  footer .c-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer__logo_wrapper {
    width: 26%;
  }

  .footer__menu_wrapper {
    width: 65%;
  }
}

@media(min-width:1280px) {
  footer .copy {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 1023px) {
  footer {
    padding: 100px 0 140px;
    margin-bottom: 0px;
  }

  .footer__logo_wrapper {
    margin-top: 100px;
    padding-top: 0px;
  }

  .footer__bottom_wrapper {
    padding-top: 100px;
  }
  .f_logo h4 {
    text-align: center;
  }

  .f_menu ul li {
    width: 100%;
    margin-left: 0;
    display: block;
    font-size: 1.5rem;
    text-align: center;
  }

  .f_menu ul li a {
    display: block;
    margin-bottom: 2em;
  }

  .f_logo p {
    text-align: center;
  }

  .footer_mail{
    font-size: 1.2rem;
  }

  .f_logo img {
    width: 75px;
  }

  .f_menu_bottom ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0px;
  }

  .f_menu_bottom ul li {
    font-size: 10px;
    text-align: center;
    padding: 0 !important;
  }

  footer .copy {
    margin-top: 30px;
    text-align: center;
    font-size: 2.66667vw;
  }
}

@media only screen and (max-width: 320px) {
  .f_menu ul li {
    font-size: 1.23rem;
  }

  footer .copy {
    font-size: .8rem;
  }
}


/* ------------------------------------------------------------------
パンくず
------------------------------------------------------------------ */
.breadcrumb_wrapper {
  background: #fff;
}

ol.breadcrumb {
  list-style-type: none;
  display: flex;
}

.breadcrumb {
  padding: 20px 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  font-size: 1.3rem;
  border-radius: 0;
  white-space: nowrap;
  overflow-x: hidden;
  font-weight: 400;
}

.breadcrumb li {
  position: relative;
  padding: 0 0 0 1.6em;
  color: #333;
}

.breadcrumb li a {
  display: inline-block;
  color: #0455bf;
  text-decoration: none;
  position: relative;
  transition: .3s;
}

.breadcrumb li a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #089aef;
  transition: .3s;
}

.breadcrumb li a:hover::after {
  width: 100%;
}

.breadcrumb li a:hover {
  color: #089aef !important;
}

.breadcrumb li:first-child {
  padding-left: 0;
}

.breadcrumb>li+li:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-top: 1px solid #b3b9cd;
  border-right: 1px solid #b3b9cd;
  position: absolute;
  top: calc(50% - 3.5px);
  left: 3px;
  transform: rotate(45deg);
  padding: 0;
}

@media(min-width:768px) {
  .breadcrumb_wrapper {
    border-top: solid 1px #e5ceab;
    padding-top: 40px;
  }
}

@media(min-width:1024px) {}

@media(min-width:1280px) {}

@media only screen and (max-width: 736px) {
  ol.breadcrumb {
    display: none;
  }
}

/* ------------------------------------------------------------------
ページナビ
------------------------------------------------------------------ */
.wp-pagenavi {
  margin: 40px 0 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 40px;
  font-family: "Futura Std", sans-serif;
  font-weight: 400;
}

.wp-pagenavi a, .wp-pagenavi span {
  display: block;
  height: 40px;
  line-height: 40px;
  background: transparent;
  text-align: center;
  margin: 0 1em!important;
  color: #969ba0;
  transition: color 0.2s;
  transition: .3s;
}

.wp-pagenavi a:hover {
  color: #e72420;
  border-bottom: 1px solid #e72420;
}

.wp-pagenavi span.current {
  color: #000;
    border-bottom: 1px solid #000;
}

@media only screen and (max-width: 736px) {
  .wp-pagenavi {
    margin: 20px 0px 0px 0px;
  }

}

/* ------------------------------------------------------------------
ページトップへ
------------------------------------------------------------------ */
.scroll-top {
  z-index: 99;
}

.page_btn{
  line-height: 1;
  position: absolute;
  writing-mode: vertical-rl;
  color: #fff;
  letter-spacing: .1em;
  font-family: "Futura Std", sans-serif;
  height: 155px;
  font-size: 0.95vw;
}

.page_btn:before {
  display: block;
  content: "";
  width: 52.7px;
  height: 52.7px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: url('../img/pagetop.svg') no-repeat 0 0;
  background-size: 52.7px 52.7px;
  margin-left: -26.35px;
}

a.page_btn, a.page_btn:focus, a.page_btn:active, a.page_btn.active {
  color: #fff;
}

a.page_btn:hover {
  color: #fff;
}

@media(min-width:1024px) {
  .page_btn{
    right: 66px;
    bottom:90px;
  }
}


@media only screen and (max-width: 1023px) {
  .page_btn{
    height: 110px;
    right: 26px;
    bottom: 20px;
    font-size: 10px;
  }

  .page_btn:before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    margin-left: -20px;
  }
}

@media only screen and (max-width: 390px) {

}

/* ------------------------------------------------------------------
selection
------------------------------------------------------------------ */
::-moz-selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, .2);
}

::selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(0, 0, 0, .1);
}

img::selection {
  background: 0 0;
}

img::-moz-selection {
  background: 0 0;
}

/* ------------------------------------------------------------------
非表示
------------------------------------------------------------------ */
.hidden_aria {
  display: none !important;
}

/* ------------------------------------------------------------------
非表示
------------------------------------------------------------------ */
@media only screen and (max-width: 1023px) {
  .hidden_pc {
    display: none !important;
  }
}

@media(min-width:1024px) {
  .brmd:before {
    content: "\A";
    white-space: pre;
  }

  .hidden_sp {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1021px) {
  .brmd_pad:before {
    content: "\A";
    white-space: pre;
  }
}

@media only screen and (max-width: 1023px) {
  .brxs:before {
    content: "\A";
    white-space: pre;
  }
}

/* ------------------------------------------------------------------
改行
------------------------------------------------------------------ */
.sp {
  display: none !important;
}

@media screen and (max-width:767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* ------------------------------------------------------------------
Loading
------------------------------------------------------------------ */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation img {
  width: 20vw;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5vh);
  }

  to {
    opacity: 1;
    transform: translateY(-10vh);
  }
}

@media only screen and (max-width: 540px) {
  .loading-animation img {
    width: 50vw;
  }
}
