@charset "UTF-8";
/* ------------------------------------------------------------------
intial set
------------------------------------------------------------------ */
/* メイン */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;600;700&display=swap');
/* 数字 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* 英語 明朝体 */
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
/* ja 明朝体 */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');
/* 英字 ゴシック体 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  font-size: 62.5%;
}

/* 10px */
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  color: #333;
  height: 100%;
  background: #fff;
  box-sizing: border-box;
}

.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: #006dd2;
  text-decoration: none;
}

a:hover {
  outline: 0;
  color: #0047ff;
  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.6rem;
    line-height: 1.8em;
  }

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

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

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


/* ------------------------------------------------------------------
mv
------------------------------------------------------------------ */
/* wrap */
.mv_container {

}

.mv_container .mv_wrapper {
  position: relative;
}

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

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

.mv__midashi {
  margin-bottom: 0px;
}

.mv__text {
  margin-top: 40px;
}

.mv__midashi h1{
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 0em;
}

.mv__midashi p{
  margin-bottom: .5em;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 0em;
  line-height: 1.6;
}
.slide-in {
  text-align: center;
  font-weight: bold;
  animation: slideIn 1s ease-out;
}

@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_container {

  }

  .mv-box {
    position: relative;
    overflow: hidden;
  }

  .text-box {
    padding: 30px 0;
    width: 600px;
  }

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

  .mv__midashi p{
    font-size: 4.0rem;
  }

}

@media(min-width:1024px) {

  .mv_container {
    margin-top: -104px;
    padding: 0px 0px 0;
  }

  .mv_wrapper {
    margin: 0 auto;
    width:  100%;

  }

  .text-box {
    width: 78%;
  }

  .mv__midashi img{
    width: 84%;
  }

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

  .mv__midashi p{
    font-size: 5.0rem;
  }

}

@media(min-width:1280px) {

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

  .mv__midashi p{
    font-size: 6.2rem;
  }
}

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

  .mv__midashi p{
    font-size: 7.4rem;
  }
}

@media(min-width:1728px) {
  .mv__midashi img{
    width: 80%;
  }

}

@media(min-width:1920px) {


}

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


}

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

  .mv-box {
    position: relative;
  }

  .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__midashi h1{
    text-align: center;
    color: #fff;
    -moz-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    -webkit-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    -ms-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    font-size: 2.8rem;
  }

  .mv__midashi p{
    font-size: 2.4rem;
  }

}

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

}

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

}

@media only screen and (max-width: 360px) {
  .mv__midashi h1{
    font-size: 2.4rem;
  }

  .mv__midashi p {
    font-size: 2.2rem;
  }
}

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

  .mv__midashi p {
    font-size: 2.2rem;
  }
}

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

.inner {
  max-width: 1360px;
  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: 1200px;
    margin: 0 auto;
    padding: 0 0px;
  }

  .innerBox {
    width: 880px;
  }

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

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

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

  .inner {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
  }

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

@media(min-width:1920px) {
  .max_container {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
  }
}

@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: 60px 0 60px;
  }
}

@media only screen and (max-width: 450px) {
  .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: 450px) {
  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: 450px) {
  .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
------------------------------------------------------------------ */
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 {
  border-radius: 1em;
  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 {
  text-align: center;
}

.errorBox p {
  font-size: 1.4rem;
  line-height: 2em;
  margin: 0px 0 100px;
}

.errorBox a {
  text-decoration: underline;
}

.errorBox .btn {
  width: 150px;
  text-decoration: none;
  margin-bottom: 100px;
}

/* ------------------------------------------------------------------
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;
  text-transform: uppercase;
  letter-spacing: normal;
  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_blue.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_blue.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-top: -8px;
}

a.btn_ripples_gold {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  color: #fff;
  background-color: #cc9d58;
}

a.btn_ripples_gold:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 2.5s infinite;
  color: #fff;
}

@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-blue, .btn-blue:focus, .btn-blue:active {
  background-color: #006dd2;
  color: #fff;
}

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

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

.btn-blue-o:hover {
  background-color: #fff151;
  color: #006dd2;
  border: solid 1px #006dd2;
}

.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;
}

.btn_circle, .btn_circle:focus, .btn_circle:active{
  position: relative;
  background-color: #fff151;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  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;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.btn_circle:hover {
  background-color: #006dd2;
}

.circle_arrow_left::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/arrow_right_blue.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
  margin-left: -10px;
}

.circle_arrow_left:hover::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/arrow_right_yellow.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
  margin-left: -10px;
}

.btn-gradient {
  display: block;
  cursor: pointer;
  text-align: center;
  background-image: linear-gradient(to right, #a59dc5 2%, #c185bd 100%);
  background-size: 150% auto;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}

.btn-gradient:hover {
    background-position: right center;
}

.link_line_pink {
  display: block;
  font-size: 1.6rem;
  position: relative;
  width: 170px;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
}

.link_line_pink a, .link_line_pink a:focus, .link_line_pink a:active{
  color: #ed699c;
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.link_line_pink a:hover {
  color: #a59dc5;
}

.link_line_pink::before {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ed699c;
  bottom: -1px;
}

.link_line_pink::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #a59dc5;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.link_line_pink:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

a.arrow_right_pink {
  width: 170px;
  height: 40px;
  line-height: 40px;
  padding: 0 1em;
  display: block;
  position: relative;
}

a.arrow_right_pink::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  background: url(../img/arrow_right_pink.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
  transition: opacity .7s;
}

a.arrow_right_pink:hover::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  background: url(../img/arrow_right_lpink.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
  transition: opacity .7s;
}

@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;
  }

  a.arrow_right_orange {
    width: 190px;
  }
}

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

  .link_line_pink {
    font-size: 120%;
  }

  a.arrow_right_orange::after {
    width: 16px;
    height: 16px;
    background: url(../img/arrow_right_orange.svg) no-repeat 0 0;
    background-size: 16px 16px;
    margin-top: -7px;
  }
}

/* ------------------------------------------------------------------
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 {
  background: #006dd2;
  padding: 80px 0 80px;
}

footer .inner {
  position: relative;
}

.f_menu ul li {
  font-size: 1.3rem;
  letter-spacing: .1em;
  font-weight: 400;
  margin-bottom: 1em;
  padding-left: 2em;
}

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

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

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

.f_logo {
  width: 200px;
}

.f_logo img{
  margin-bottom: 20px;
}

.f_logo h4{
  font-size: 1.8rem;
  letter-spacing: .1em;
  margin-bottom:.5em;
}

.f_logo p{
  margin: 0;
  line-height: 1.8;
}

.footer__bottom_wrapper{
  margin-top: 40px;
  padding-top: 20px;
  border-top: solid 1px rgba(255, 255, 255, .4);
}

footer .copy {
  font-family: "Manrope", serif;
  letter-spacing: .1em;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
}

@media(min-width:768px) {
  .f_menu ul li{
    font-size: 1.3rem;
  }

  footer .c-flex {
    display: block;
  }

}

@media(min-width:1024px) {
  footer .c-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap:wrap;
  }

  .f_logo {
    width: 300px;
  }

  .f_logo img{
    width: 100%;
    margin-left: 0;
  }

  .footer__logo_wrapper{
    width: 30%;
  }

  .footer__menu_wrapper{
    width: 70%;
  }

  .f_menu ul{
    display: flex;
    justify-content: flex-end;
    flex-wrap:wrap;
  }

  .f_menu ul li {
    font-size: 1.4rem;
  }

}

@media(min-width:1280px) {
  .f_logo {
    width: 320px;
  }

  .f_menu ul li {
    font-size: 1.6rem;
  }

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

@media(min-width:1366px) {
  .f_logo {
    width: 360px;
  }

  .f_menu ul li {
    font-size: 1.65rem;
  }

}

@media(min-width:1920px) {

  .f_logo {
    width: 260px;
  }

  .f_menu ul li {
    font-size: 1.76rem;
  }

}

@media only screen and (max-width: 1023px) {
  .f_logo {
    width: 100%;
    margin-bottom: 30px;
  }
  .f_logo img{
    width: 70%;
  }

  .f_logo h4{
    text-align: center;
  }

  .f_logo p{
    text-align: center;
  }
  .f_menu ul li{
    padding-left: 0
  }

  footer .copy{
    margin-top: 30px;
    text-align: center;
  }
}

@media only screen and (max-width: 736px) {
  footer {
    padding: 60px 0 40px;
  }

  .f_menu ul li {
    width: 100%;
    margin-left: 0;
    display: block;
    font-size: 1.5rem;
    margin-bottom: 2em;
  }

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

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

}

@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;
  flex-wrap:wrap;
  height: 36px;
  font-family: "Manrope", serif;
  font-weight: 600;
}

.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: transparent;
  margin: 0 5px 0 0 !important;
  color: #006dd2;
  text-align: center;
  transition: .3s;

}

.wp-pagenavi a:hover {
  background: #fc8314;
  color: #fff;
}

.wp-pagenavi span.current {
  color: #006dd2;
  background: #fff151;
  border-radius: 50%;
}

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

  .wp-pagenavi a, .wp-pagenavi span {

  }
}

/* ------------------------------------------------------------------
ページトップへ
------------------------------------------------------------------ */
.scroll-top {
  z-index: 99;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
}

.scroll-top .btn:before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url('../img/arrow-buttom.png') no-repeat 0 0;
  background-size: 14px 14px;
  margin-top: -7px;
  margin-left: -7px;
}

.scroll-top .btn:hover:before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url('../img/arrow-white.png') no-repeat 0 0;
  background-size: 14px 14px;
  margin-top: -7px;
  margin-left: -7px;
}

.scroll-top .btn {
  border-radius: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 30px;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-indent: 200%;
  white-space: nowrap;
}

.scroll-top .btn:focus {
  outline: 0;
}

@media(min-width:768px) {
  .scroll-top {}
}

@media only screen and (max-width: 736px) {
  .scroll-top {
    position: fixed;
    right: 8px;
    bottom: 65px;
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 390px) {
  .scroll-top {
    width: 30px;
    height: 30px;
  }

  .scroll-top .btn {
    width: 30px;
    height: 30px;
  }
}

/* ------------------------------------------------------------------
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: 450px) {
  .loading-animation img {
    width: 50vw;
  }
}
