@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*===================================
  基本設定
===================================*/
body,
#wrapper{
  min-width:440px!important;
  font-size:15px;
}
.text-f{
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 3px;
}
.c-01 {
  color: #222222;
}
.c-02 {
  color: #202f55;
}
.c-03 {
  color: #d0853d;
}
.c-04 {
  color: #000;
}
.bgc-01{
  background: #eeeeee;
}
.bgc-02{
  background: #202f56;
}
.bgc-ss{
  background: rgba(255,255,255,0.5);
}
/* 共通コンテンツ間隔 */
.area {
  padding-top: 80px;
  padding-bottom: 80px;
}
.areasp {
  padding-top: 150px;
  padding-bottom:150px;
}
@media (max-width: 599px) {
  .area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .areasp {
    padding-top: 80px;
    padding-bottom:80px;
  }
}
.area.ori{
  padding-top: 0;
}
/* 共通要素読み込みコメント（取り込み後削除） */
[class*='load-'] {
  position: relative;
  min-height: 50px;
  border: 3px solid #00bcd4;
}
[class*='load-']:before {
  position: absolute;
  z-index: 100;
  display: block;
  background: #00bcd4;
  color: #ff0;
  content: '共通要素';
  text-align: center;
  font-weight: bold;
}
/*===================================
  共通ブロック　block-cmn
==================================*/
/* 共通ブロック１ */
/*===================================
  共通タイトル　ttl-cmn
===================================*/
/* 共通タイトル１ */
.ttl-cmn01 {
  text-align: center;
  font-size:26px;
}
@media (max-width: 599px) {
  .ttl-cmn01 {
    font-size: 24px;
  }
}
/*===================================
  共通リスト　list-cmn
==================================*/
/* 共通リスト１ */
/*===================================
  共通ボタン btn-cmn
===================================*/
/* 共通ボタン１ */
.btn-cmn01 {
  max-width: 180px;
  margin-top: 50px;
}
.btn-cmn01 a {
  display: block;
  padding: 5px 20px;
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
}
.btn-cmn01 a:after {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f054";
  font-weight: 600;
  font-family: 'Font Awesome 5 Free';
}
.btn-cmn01.btn-back a:after {
  content: "\f053";
  right: inherit;
  left: 5px;
}
/*===================================
  他共通エレメント -cmn
===================================*/
/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.pagettl {
  font-size: 12px;
  padding: 0 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
/**
ヘッダー
header
*/
.header {
  background: #fff;
}
.header .contents {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
.header .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.header .right .tel .logo-img{
  display: inline-block;
  background: #202f55;
  height: 30px;
  width: 30px;
  padding: 5px;
  border-radius: 5px;
  margin-right: 10px;
}
.header .right .txt {
  margin-right: 10px;
  line-height: 120%;
}
.header .right .txtin {
  display: block;
}

.header .right .m-btn .logo-img{
  width: 30px;
  line-height: 0;
  margin-right: 10px;
}
@media (max-width: 1024px) {
  .header .right .m-btn .logo-img,
  .header .right .tel .logo-img{
    margin-right: 0;
  }
  .header .right .tel .logo-img{
    background: none;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
  
  .header .right .tel .logo-img img {
    background: none;
    height: 100%;
    width: 100%;
    padding: 8px;
    border-radius: 0;
}
  .header .contents{
    display: contents;
  }
  .header {
    padding: 5px 0;
  }
  .header .right .fix {
    position: relative;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 10;
  }
  .overlay .header .right .fix{
    z-index: initial;
  }
  .header .right .tel{
    margin-right: 10px;
    font-size: 13px;
  }
  .header .right .tel a{
    height: 45px;
    width: 45px;
    background: #202f55;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  .header .right .m-btn{
    margin-right: 10px;
  }
}
/* 下部固定コンテンツ */
.fix-bottom {
  display: none;
}
@media (max-width: 1024px) {
  .fix-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 250;
    display: -webkit-box;
    display: flex;
    width: 100%;
  }
  .fix-bottom .item {
    width: 50%;
    text-align: center;
  }
  .fix-bottom a {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    height: 100%;
    padding: 10px 5px;
  }
  .fix-bottom .tel {
    background: #000;
    color: #fff;
    font-size: 13px;
  }
  .fix-bottom .tel a:before {
    margin-right: 5px;
    content: '\f879';
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
  }
  .fix-bottom .contact {
    background: #eee;
    color: #000;
  }
  .fix-bottom .contact a:before {
    margin-right: 5px;
    content: '\f0e0';
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
  }
}
/**
グローバルナビ
gnav
*/
.gnav {
  position: relative;
  z-index: 100;
  padding: 10px 0;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: auto;
  background: #fff;
  box-shadow: 0 0 5px 0 #999;
}
.gnav .wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.gnav .navlogo img {
  max-height: 40px;
}
.gnav .list01 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.gnav .item01 {
  text-align: center;
  font-size: 13px;
}
.gnav .item01 > a,
.gnav .item01 .itemin {
  display: block;
  cursor: pointer;
  padding: 5px;
}
.gnav .item01.-parent {
  position: relative;
}
.gnav .item01.-parent:hover .list02 {
  visibility: visible;
  opacity: 1;
}
.gnav .list02 {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  padding-top: 10px;
  width: 320px;
  background: rgba(255,255,255,0.8) content-box;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.gnav .item02 a {
  display: block;
  padding: 5px;
  transition:none;
}
.gnav .item02 a:hover{
  background: #202f55;
  color: #fff;
}
@media (max-width: 1024px) {
  .gnav .item02 a:hover{
    background: none;
    color: #666;
  }
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    overflow: auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-overflow-scrolling: touch;
    padding: 110px 30px;
  }
  .gnav.action {
    z-index: 250;
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  .gnav .navlogo {
    margin-bottom: 20px;
    width: 100%;
  }
  .gnav .navlogo .logo{
    display: inline-block;
  }
  .gnav .item01 {
    margin: 0 0 10px 0;
    min-height: 40px;
    width: 100%;
    text-align: left;
  }
  .gnav .list02 {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
    padding-left: 20px;
    padding-top: 0;
    background: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .gnav .list02 a {
    position: relative;
    padding: 2px 0 2px 20px;
  }
  .gnav .list02 a:before {
    position: absolute;
    top: 13px;
    left: 0;
    display: block;
    width: 10px;
    height: 1px;
    background: #000;
    content: '';
  }
}
@media (max-width: 599px) {
  .gnav{
    max-width: 100%;
  }
}
[data-element-id] .header.fixed {
  position: relative;
}
/* ハンバーガーメニュー  */
.toggle {
  position: relative;
  top: 0px;
  right: 0px;
  z-index: 251;
  width: 45px;
  height: 45px;
  background: #202f55;
  cursor: pointer;
  display: none;
  border-radius: 5px;
}
.toggle .bar {
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  margin-top: -1px;
  padding: 0;
  width: 28px;
  height: 2px;
  background: #fff;
  text-indent: 9999px;
  transition: ease 0.4s;
  -webkit-transition: ease 0.4s;
}
.toggle .bar:before,
.toggle .bar:after {
  position: absolute;
  left: 0;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  content: '';
}
.toggle .bar:before {
  top: -10px;
}
.toggle .bar:after {
  top: 10px;
}
.toggle.active .bar {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.toggle.active .bar:after,
.toggle.active .bar:before {
  top: 0;
  left: 0;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .toggle {
    display: block !important;
    flex-shrink: 0;
  }
}
.overlay{
  overflow: hidden;
}
/* .overlay:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 249;
  width: 100%;
  height: 100vh;
  background: #000;
  content: '';
  opacity: 0.3;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
} */
/*トップへ戻る*/
.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  text-align: center;
  font-size:18px;
  line-height: 40px;
  cursor: pointer;
}
.totop:before {
  content: '\f077';
  font-weight: bold;
  font-family: 'Font Awesome 5 Free';
}
@media (max-width: 1024px) {
  .totop {
    right: 10px;
    bottom: 10px;
  }
}
/**
フッター
footer
*/
.footer .copy {
  padding: 5px 0;
  padding-bottom: 80px;
  text-align: center;
}
/**
フッターナビ
fnav
*/
.fnav {
  padding: 50px 0;
}
.fnav .wrap {
  display: -webkit-box;
  display: flex;
}
.fnav .list01 {
  width: 50%;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
.fnav .item {
  margin-bottom: 10px;
  padding-right: 10px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.fnav .item a {
  position: relative;
  display: block;
  padding-left: 12px;
}
.fnav .item a:before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  content: '';
}
.fnav .list02 {
  width: 50%;
}
.fnav .datawrap {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
.fnav .datattl {
  position: relative;
  margin-bottom: 10px;
  padding-left: 12px;
}
.fnav .datattl:before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  content: '';
}
.fnav .data {
  margin-bottom: 5px;
  padding-right: 10px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.fnav .data a {
  position: relative;
  padding-left: 12px;
}
.fnav .data a:before {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  background: #000;
  content: '';
}
@media (max-width: 1024px) {
  .fnav .wrap {
    flex-wrap: wrap;
  }
  .fnav .list01 {
    margin-bottom: 10px;
    width: 100%;
  }
  .fnav .list02 {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .fnav .list01 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .fnav .datawrap {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
/**
2カラムページ
*/
.column2 .inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
/* .column2 .side {
  width: 200px;
}
.column2 .mainwrap {
  width: calc(100% - 250px);
} */
.column2 .side {
  width: 260px;
}
.column2 .mainwrap {
  width: calc(100% - 300px);
}
.column2 .mainwrap.new{
      padding: 30px;
    border: solid 3px #202f55;
    background: #fff;
    border-radius: 10px;
}
@media (max-width: 1024px) {
  .column2 .inner {
    flex-wrap: wrap;
  }
  .column2 .side {
    -webkit-box-ordinal-group: 4;
            order: 3;
    margin-bottom: 50px;
    width: 100%;
  }
  .column2 .mainwrap {
    -webkit-box-ordinal-group: 3;
            order: 2;
    margin-bottom: 50px;
    width: 100%;
  }
}
@media (max-width: 599px) {
  .column2 .side.bgc{
    width: 100%;
    display: block;
  }
}
/* サイドメニュー */
.side .list {
  margin-bottom: 30px;
}
/* .side.bgc .list{
  margin-bottom: 30px;
  margin-right: -999rem;
  padding: 3em 2em 3em 1em;
  padding-right: 995rem;
  border-radius: 10px 0 0 10px;
 background: #ffffff;
    border: solid 3px #202f55;
} */
.side.bgc .list{
    margin-bottom: 30px;
    padding: 30px 10px;
    border-radius: 10px;
    background: #ffffff;
    border: solid 3px #202f55;
}
@media (max-width: 1024px) {
  .side {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap;
  }
  .side .list {
    width: 48%;
  }
  .side.bgc .list {
    margin-right: 0;
    padding: 30px 10px;
    border-radius: 10px;
  }
}
@media (max-width: 599px) {
  .side .list {
    width: 100%;
  }
}
.list-side .datattl {
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 2em;
  background: #202f55;
  color: #fff;
  text-align: center;
  font-size:18px;
}
.list-side .data {
  margin-bottom: 10px;
  padding-left: 10px;
}
.list-side a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.list-side a:before {
  position: absolute;
  left: 0;
  content: '>';
}
.list-side .sub-datawrap{
  padding-left: 1.5rem;
}
.list-side .sub-datawrap a:before{
  position: absolute;
  left: 0;
  content: '-';
}
@media (max-width: 1024px) {
  .list-side.type-archive .datawrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .list-side.type-archive .datawrap .datattl {
    width: 100%;
  }
  .list-side.type-archive .datawrap .data {
    width: 48%;
  }
}
/*===================================
  各個別コンテンツ
===================================*/
/**
トップ
*/
/*ホームビジュアル（トップ）*/
.homevisual {
  position: relative;
}
.homevisual .img {
  position: relative;
  min-height: 300px;
  max-height: 700px;
}
.homevisual .img:before {
  position: relative;
  z-index: -1;
  display: block;
  padding-top: 40%;
  content: '';
}
.homevisual .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
/*IE対策*/
.homevisual .head {
    font-weight: bold;
    height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    color: #fff;
    letter-spacing: 6px;
    font-size:36px;
}

@media (max-width: 599px) {
  .homevisual .head {
    font-size:26px;
  }
}
/* A-BiSUスライダー用 */
.mainimg {
  position: relative;
  overflow: hidden;
}
.mainimg img {
  width: 100%;
}
.mainimg .uk-slidenav-position {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.mainimg .uk-slidenav-position:after {
  display: block;
  padding-top: 50%;
  content: '';
}
.mainimg .uk-slideshow {
  position: absolute;
  top: 0;
  height: 100% !important;
}
.mainimg .uk-slideshow li {
  height: 100% !important;
}
.mainimg .uk-slideshow .uk-flex {
  height: 100%;
}
.mainimg .uk-slideshow img {
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
/*IE対策*/
/* スリックスライダー（トップ） */
.slick01 {
  padding: 0 20px;
}
.slick01.slick-dotted {
  margin-bottom: 50px;
}
.slick01 .slick-dots {
  bottom: -40px;
  left: 0;
}
@media (max-width: 1024px) {
  .slick01 .btn-slick,
  .new-sp-slider .btn-slick{
    left: 80%;
  }
}
@media (max-width: 599px) {
  .slick01 {
    padding: 0 10px;
  }
  .slick01 .btn-slick,
  .new-sp-slider .btn-slick{
    font-size:18px;
    left: 65%;
  }
}
/**
下層共通
*/
/* トップビジュアル（下層共通） */

.topvisual {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.topvisual .img {
height: 100vh;
background: #202f55;
}
.topvisual .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  opacity: 0.8;
}
.topvisual .head {
  position: absolute !important;
  width: 96%;
  max-width: 1000px;
  text-align: center;
  top: 50%;
  left: 50%;
  font-weight: bold;
  font-size: 34px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 599px) {
  .topvisual .head {
    font-size: 24px;
  }
}
/* パンくずリスト */
.breadcrumbs {
  padding: 30px 0;
  background: rgba(255,255,255,0.8);
}

.breadcrumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
}

.breadcrumbs-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.breadcrumbs-list li {
  display: inline;
  font-size: 13px;
  letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
  font-weight: bold;
  color: #202f55;
}

.breadcrumbs-list li+li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .breadcrumbs {
      padding: 20px 0;
      font-size: 13px;
  }

  .breadcrumbs-box {
      flex-direction: column;
      align-items: flex-start;
  }

  .breadcrumbs-list {
      width: 90%;
      margin-top: 1em;
  }

  .breadcrumbs li {
      font-size: 12px;
  }

  .breadcrumbs li+li::before {
      width: 8px;
      height: 8px;
      margin: 0 5px 1px;
  }
}

@media (max-width: 599px) {
  .breadcrumbs {
      padding: 15px 0;
      font-size: 12px;
  }

  .breadcrumbs li+li::before {
      width: 6px;
      height: 6px;
  }
}
/* ページネーション */
.pagenation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.pagenation .item {
  margin: 0 10px;
}
.pagenation .prev {
  position: relative;
  margin-right: 20px;
}
.pagenation .prev a:before {
  content: "\f053";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  padding: 2px 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #202f55;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
.pagenation .next {
  position: relative;
  margin-left: 20px;
}
.pagenation .next a:before {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  padding: 2px 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #202f55;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
.pagenation a,
.pagenation .now {
  font-weight: bold;
}
.pagenation .number a,
.pagenation .now {
    display: block;
    padding: 2px 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #202f55;
    text-align: center;
    font-size:18px;
    line-height: 35px;
}
.pagenation .number a:hover,
.pagenation .now,
.pagenation .next a:hover:before,
.pagenation .prev a:hover:before {
  background: #202f55;
  color: #fff;
  opacity: 1;
}
.pagenation .next a:hover,
.pagenation .prev a:hover{
  opacity: 1;
}

.event-area.new .pagenation a{
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .pagenation .item {
    margin: 0 5px;
  }
  .pagenation .prev {
    margin-right: 10px;
  }
  .pagenation .next {
    margin-left: 10px;
  }
}
/**
各下層ページ
*/
/* 記事一覧ページ */
.list-article .cate span {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 5px;
  margin: 0 5px 2px 0px;
}
.list-article .cate .cate1 {
  background: #00f;
}
/* 記事詳細ページ */
.articledtl01 .cate span {
  display: inline-block;
  background: #202f55;
  color: #fff;
  padding: 0 5px;
  margin: 0 5px 2px 0px;
}
.articledtl01 .cate .cate1 {
  background: #00f;
}
/* ギャラリー */
.list-gallery01 a {
  display: block;
  position: relative;
}
.list-gallery01 .img {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.list-gallery01 .block-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 10px;
  overflow: hidden;
  visibility: hidden;
}
.list-gallery01 .cate {
  font-size: 13px;
  margin-bottom: 5px;
}
.list-gallery01 .head {
  font-size: 16px;
}
.list-gallery01 a:hover {
  opacity: 1;
}
.list-gallery01 a:hover .img {
  opacity: 0.5;
}
.list-gallery01 a:hover .block-txt {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 599px) {
  .list-gallery01 .block-txt {
    display: none;
  }
  .list-gallery01 .head {
    font-size: 13px;
  }
}
/* ギャラリー詳細 */
.gallerydtl01 .thumbnail {
  cursor: pointer;
}
/* フォーム */
.form .box {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 0;
  border-bottom: 2px solid #999;
}
.form .datattl {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
  width: 200px;
  color: #000;
  font-weight: bold;
      margin-top: 5px;
    margin-bottom: 5px;
}
.form .require {
  display: inline-block;
  margin-left: 10px;
  padding: 0 0.5rem;
  background: #202f55;
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
  letter-spacing: 3px;
}
.form .data {
  padding-left: 50px;
  width: 100%;
  color: #222;
}
.form .data input {
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  width: 100%;
  border: 1px solid #999;
}
.form .data input[type='number'] {
  width: 100%;
}
.form .data select {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #999;
  color: inherit;
}
.form .data textarea {
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  height: 170px;
  border: 1px solid #999;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.form .data01 div {
  display: inline-block;
}
.form .btn {
  margin-top: 30px;
}
.form .btn button {
  margin: 10px 20px;
  padding: 0.2em;
  width: 200px;
  border: none;
  border-radius: 2em;
  background: #000;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.form .btn button:hover {
  opacity: 0.6;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .form .item {
    flex-wrap: wrap;
  }
  .form .datattl {
    display: block;
    margin-bottom: 10px;
  }
  .form .data {
    padding-left: 0;
  }
}
@media (max-width: 599px) {
  .form .box {
    flex-wrap: wrap;
  }
  .form .datattl {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */

.form .data input[type="checkbox"]{
  padding-left: 50px;
}

.form .data input[type="checkbox"] + label::before{
  content: "";
  width: 25px;
  height: 25px;
  border: 2px solid #202f55;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 0;
}

.form .data input[type="checkbox"] label:hover {
  cursor: pointer;
}

.form .data input[type="checkbox"] {
  display: none;
}

.form .data input[type="checkbox"]:checked+label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #202f55;
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
}

.form .data input[type="checkbox"]+label {
  margin-left: 10px;
  display: inline-block;
  padding: 5px 10px 5px 35px;
  position: relative;
  color: #222;
}

.acc-content{
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 80px;
}

.acc-content dt input[type="checkbox"]{
  padding-left: 50px;
}

.acc-content dt input[type="checkbox"] + label::before{
  content: "";
  width: 25px;
  height: 25px;
  border: 2px solid #202f55;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 0;
}

.acc-content dt input[type="checkbox"] label:hover {
  cursor: pointer;
}

.acc-content dt input[type="checkbox"] {
  display: none;
}

.acc-content dt input[type="checkbox"]:checked+label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #202f55;
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
}

.acc-content .search-check {
    display: flex;
    flex-wrap: wrap;
}

.acc-content dt input[type="checkbox"]+label {
    margin-left: 10px;
    display: inline-block;
    padding: 5px 10px 5px 35px;
    position: relative;
    width: calc(20% - 10px);
    font-size: 16px;
}
@media (max-width: 1024px) {
  .acc-content dt input[type="checkbox"]+label{
        width: calc(50% - 10px);
  }
}
@media (max-width: 599px) {
  .acc-content dt input[type="checkbox"]+label{
        width: 100%;
  }
}
.acc-content .box{
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: dotted 3px #ccc;
}
.acc-content .tit{
position: relative;
padding-left: 1rem;
font-weight: bold;
letter-spacing: 3px;
color: #222;
margin-bottom: 5px;
font-size:18px;
}
.acc-content .tit::after{
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #202f55;
}

.detail-content-text h2 {
  font-size:20px;
  margin-bottom: 20px;
      margin-top: 50px;
  font-weight: bold;
  padding: 0.5em;
  border-bottom: 3px solid  #202f56;
  letter-spacing: 2px;
}

.detail-content-text h3 {
  font-size:18px;
  font-weight: bold;
  margin-bottom: 20px;
      margin-top: 50px;
  color: #fff;
  padding: 0.5em 1em;
 background: #202f56;
  letter-spacing: 2px;
}

.detail-content-text h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
      margin-top: 50px;
  color:  #202f56;
  letter-spacing: 2px;
}
.detail-content-text ol{
  counter-reset: count 0;
}
.detail-content-text ol li{
      margin: 10px 0;
    padding-left: 20px;
    font-size: 14px;
    color: #000;
    position: relative;
}
.detail-content-text ol li::before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: #202f56;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.detail-content-text ul li{
  margin: 10px 0;
    padding-left: 20px;
    font-size: 14px;
    color: #000;
    position: relative;
}

.detail-content-text ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
   background: #202f56;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.detail-content-text ol li marker{
  display: none;
}

.d-none-tb,
.d-none-sp{
  display: block;
}
.d-b-tb,
.d-b-sp{
  display: none;
}
@media (max-width: 1024px) {
  .d-b-tb{
    display: block;
  }
  .d-none-tb{
    display: none;
  }
}
@media (max-width: 599px) {
.d-none-sp{
  display: none;
}
.d-b-sp{
  display: block;
}
}

.l-text1{
  letter-spacing:1px;
}
.l-text2{
  letter-spacing:2px;
}
.l-text3{
  letter-spacing:3px;
}
.l-text5{
  letter-spacing:5px;
}
.text-02{
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: inherit;
  -webkit-line-clamp: 2;
}

.top-movie {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: -100;
  overflow:hidden;
}

[data-element-id] .top-movie {
  background-image: url('/import/tenant_1/153.121.77.57/html/images/ksmv.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
        max-height: 700px;
}

.movie-box {
  width: 100%;
  height: 100%;
  background: #000;
}

.movie-box video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
}

.news-area{
  background: rgba(44,58,93,0.9);
  color: #fff;
}

.news-area .box{
  display: flex;
  align-items: center;
}

.news-area .box .m-ttl{
  flex-shrink: 0;
  margin-right: 50px;
  padding-right: 50px;
  position: relative;
  font-size:26px;
  letter-spacing: 3px;
  text-shadow: none;
}

.news-area .box .m-ttl::after{
  content: "";
  background: #fff;
  height: 110%;
  width: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0 , -50%);
}

.news-area .text-box{
  width: 80%;
}

.news-area .text-box .date{
letter-spacing: 3px;
margin-right: 30px;
flex-shrink: 0;
}

.news-area .text-box a{
  display: flex;
}

.news-area .btn a{
  display: block;
  width: 170px;
  letter-spacing: 3px;
  border: solid 1px;
  border-radius: 5px;
  padding: 1rem 0;
  text-align: center;
}

[data-element-id].news-slider-mk2 .box{
  display:none;
}

[data-element-id].news-slider-mk2 .box:first-child{
  display:block;
}

.bg-img{
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.bg-img img{
  height: 100%;
    width: 100%;
    object-fit: cover;
}

.bg-img-mk2{
  background-image: url(/import/tenant_1/153.121.77.57/html/images/ks1_4.webp);
  background-repeat:repeat-y;
  background-size:100%;
}

.bg-img02 {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 80%;
  width: 100%;
}

.bg-img02 img{
  height: 100%;
    width: 100%;
    object-fit: cover;
}

.bg-c{
  background: #eeeeee;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: skewY(4deg);
}

.bg-c01 {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: skewY(4deg);
}

.c-p01 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
  margin-bottom: -60px;
    z-index: 1;
}
.header .right .m-btn a,
.m-btn a,
.m-btn button{
  background: #202f55;
  color: #fff;
  border-radius: 10px;
  height: 60px;
  display: block;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 5px;
}
.m-btn a{
      width: 280px;
}
.m-btn button{
  border: none;
}
.bnr-area02{
  position: relative;
  z-index: 1;
}
.bnr-area02 .m-btn a:hover,
.volunteer-area .m-btn a:hover,
.news-area .btn a:hover,
.bnr-area .m-btn a:hover,
.m-btn a:hover,
.m-btn button:hover{
  background: #D0853D;
}
.m-btn.c a,
.m-btn button{
margin: auto;
}

.m-btn.long a{
  width: 95%;
}

.m-btn.ori a{
  width: 420px;
}

.m-ttl{
  text-shadow: 0 0 4px white;
}

.volunteer-area .m-ttl,
.bnr-area .m-ttl,
.bnr-area02 .m-ttl{
  text-shadow: none;
}

.m-ttl .ja{
    font-size: 48px;
    letter-spacing: 8px;
    font-weight: 500;
    color: #222;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
}
.m-ttl .ja.s48{
  font-size: 48px;
  letter-spacing: 6px;
}
.voice-area .m-ttl .ja,
.bnr-area .m-ttl .ja,
.volunteer-area .m-ttl .ja{
  text-align: left;
}

.m-ttl .ja.s{
  font-size:28px;
}

.m-ttl .en{
  font-size:18px;
  letter-spacing: 6px;
  color: #202f55;
  font-weight: bold;
}

.bg-g{
  z-index: 1;
      margin-top: -4%;
    margin-bottom: -4%;
}
.bg-b{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bg-b .text{
display: initial;
    background: #414e6e;
    color: #fff;
    padding: 0 0.5rem;
    margin-bottom: 10px;
    text-align: center;
    line-height: 2;
}

.service .box{
  position: relative;
  background: #000;
}

.service .box .img{
  opacity: 0.8;
}

.service .box .text-box{
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding-right: 10px;
  color: #fff;
  letter-spacing: 3px;
}

.service .box .text-box .ttl{
  font-size:26px;
  margin-bottom: 15px;
}

.service .box .text-box .sb-ttl{
  position: relative;
  padding-left: 3rem;
}
.service .box .text-box .sb-ttl::after{
  content: "";
  background: #fff;
  position: absolute;
  width: 2rem;
  top: 50%;
  left: 0;
  height: 1px;
}

.box-s{
  -webkit-box-shadow: 0px 2px 5px #d5d5d5;
    box-shadow: 0px 2px 5px #d5d5d5;
}

.works .box{
    -webkit-box-shadow: 0px 2px 5px #d5d5d5;
    box-shadow: 0px 2px 5px #d5d5d5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.works .box .txtbox {
    flex-grow: 1;
}

.works .name{
  font-weight: bold;
  font-size: 16px;
}

.works .cat{
  border-top: solid 1px #ccc;
  padding-top: 10px;
  margin-top: 10px;
  color: #202f55;
  display: flex;
  flex-wrap: wrap;
}

.works .cat span:nth-child(n+2){
  position: relative;
  margin-left: 0.5rem;
  padding-left: 0.7rem;
}

.works .cat span:nth-child(n+2)::after{
  content: "/";
  position: absolute;
  top: 0;
  left: 0;
}

.y-btn a{
  display: block;
  background: #ff0000;
  padding: 1rem;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

.y-btn .img{
  margin-right: 30px;
}

.slick-arrow{
  position: absolute;
  top: -40%;
  left: 89%;
  background: #202f55;
  display: flex!important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  border-radius: 5px;
}
.btn-next.slick-arrow{
  right: 0;
  left: initial;
}
.voice-area li{
  position: relative;
}

.voice-area .img img{
  -webkit-mask-image: url('/import/tenant_1/153.121.77.57/html/images/house.webp');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('/import/tenant_1/153.121.77.57/html/images/house.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.voice-area .cat{
  background: rgba(255,255,255,0.5);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: solid 2px #202f55;
    position: absolute;
    top: 0;
    left: 10%;
    padding: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-area .text-box{
  background: #202f55;
  width: 80%;
  margin-left: auto;
  padding: 0.5rem;
  color: #fff;
  position: relative;
  bottom: 0;
  right: 0;
  margin-top: 10px;
}

.text-01{
  position: relative;
  padding-left: 3rem;
  color: #202f55;
  letter-spacing: 3px;
  font-size:18px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: bold;
}
.text-01::after {
  content: "";
  background: #202f55;
  position: absolute;
  width: 2rem;
  top: 50%;
  left: 0;
  height: 1px;
}


.up-left-1000 {
  margin-left: calc(50% - 500px);
}
.up-right-1000 {
  margin-right: calc(50% - 500px);
}
[class*=up-fxd-even]>.up-left-1000:nth-child(even),
[class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
  margin-left: 0;
  margin-right: calc(50% - 500px);
}
[class*=up-fxd-even]>.up-right-1000:nth-child(even),
[class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
  margin-right: 0;
  margin-left: calc(50% - 500px);
}
@media (max-width: 1024px) {
  
  .header .right .m-btn a{
height: 45px;
width: 45px;
border-radius: 5px;
  }
  .up-left-1000 {
    margin-left: 2%;
  }
  .up-right-1000 {
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-left-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
    margin-left: 0;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
    margin-right: 0;
    margin-left: 2%;
  }
}
@media (max-width: 599px) {
  .m-btn.ori a{
  width: 100%;
  letter-spacing: 2px;
}
  .l-text5{
  letter-spacing:3px;
}
.m-btn.sp45 button{
      width: 45%;
}
  .up-left-1000 {
    margin-right: 2%;
  }
  .up-right-1000 {
    margin-left: 2%;
  }
  [class*=up-fxd-even]>.up-left-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
    margin-left: 2%;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
    margin-right: 2%;
    margin-left: 2%;
  }
}
.bnr-area .m-ttl .ja,
.bnr-area .m-ttl .en,
.bnr-area02 .m-ttl .ja,
.bnr-area02 .m-ttl .en{
  color: #fff;
}

.bnr-area .tbox.new{
  width: 70%;
}
.bnr-area02 .tbox{
  text-align: center;
}

.bnr-area .m-btn a,
.bnr-area02 .m-btn a{
  background: none;
  border: solid 1px;
  color: #fff;
  border-radius: 10px;
  height: 60px;
  display: block;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 3px;
}

.staff-area .imgs li:nth-child(odd){
margin-top:20px;
}

.staff-area .text{
  position: relative;
  padding: 30px 30px 30px 0;
  color: #fff;
  z-index: 1;
}
.staff-area .text::after{
  content: "";
position: absolute;
top: 0;
right: 0;
background: #414e6e;
width: 1000%;
height: 100%;
z-index: -1;
}

.bg-c02{
  content: "";
  position: absolute;
  bottom: 5%;
  right: 0;
  background: #eeeeee;
  width: 80%;
  height: 35%;
}

.volunteer-area .box {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.volunteer-area .box .img-box{
  width: 50%;
}
.volunteer-area .box .img {
  width: 110%;
  position: relative;
}
.volunteer-area .box .img:before {
  position: relative;
  z-index: -1;
  display: block;
  padding-top: 70%;
  content: '';
}
.volunteer-area .box .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
.volunteer-area .box .txt-box {
  position: relative;
  width: 50%;
  padding: 30px;
  background: rgba(44,58,93,0.9);
  color: #fff;
}

.volunteer-area .box .txt-box .m-ttl .ja,
.volunteer-area .box .txt-box .m-ttl .en{
color: #fff;
}
.volunteer-area .box .head {
  margin: 0 auto 30px;
  text-align: center;
  font-weight: bold;
  font-size: 48px;
  display: flex;
  flex-direction: column;
  letter-spacing: 2px;
}
.volunteer-area .m-btn a{
  background: none;
  border: solid 1px;
  color: #fff;
  max-width: 400px;
}
@media (max-width: 599px) {
  .volunteer-area .box{
    margin: 30px 0 0;
  }
  .volunteer-area .box .img-box{
    width: 100%;
  }
  .volunteer-area .box .txt-box{
    width: 100%;
    margin: 20px 0 0;
  }
  .volunteer-area .box .img{
    width: 100%;
  }
  .volunteer-area .box .head {
    font-size: 24px;
  }
  .topvisual .img:before{
    padding-top: 100%;
  }
}

.event-area .item a{
  background: #eeeeee;
    padding: 20px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
}
.event-area.new .item a{
  justify-content: space-between;
  align-items: center;
}

.end-cat {
  background: #202f55;
    color: #fff;
    padding: 0.5rem;
border:solid 2px #202f55;
border-radius: 5px;
}
.end-cat.end{
  color: #202f55;
  background: #fff;
  width:125px;
  text-align:center;
}

.event-area .item .date{
  flex-shrink: 0;
  margin-right: 15px;
}
.event-area .item .cat{
  color: #202f55;
  flex-shrink: 0;
  margin-right: 15px;
  border: solid 1px;
      border-radius: 5px;
  padding: 0 0.5rem;
}

.blog .img{
  position: relative;
}

.blog .date{
  background: #202f55;
  color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0.5rem;
  font-size: 13px;
}

.contact-area .box{
  background: rgba(32,47,85,0.9);
  text-align: center;
  padding: 50px;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.contact-area .box .cat .item{
  border: solid 1px;
  border-radius: 100px;
  padding: 0 0.5rem;
  margin-right: 0.5rem;
  width: 100px;
  display: inline-block;
}

.contact-area .tel{
  font-size: 56px;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-area .tel a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-area .tel .logo-img{
  width: 50px;
  height: 50px;
  padding: 3px;
  display: inline-flex;
  border: solid 1px;
  border-radius: 5px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
}

.logo>a{
  display:inline-block;
  width:100%;
  height:100%
}

.logo02>a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo02 .kewpie {
    width: 17%;
}

.logo>a>img{
  display:inline-block;
  object-fit:contain;
  object-position:center;
  width:100%;
  height:100%
}

.contact-area .m-btn a{
    max-width: 500px;
    margin: auto;
}

.contact-area .bgc-gr{
  filter: blur(4px);
  scale: 1.01;
}
.contact-area.new .box{
  max-width: 1000px;
  text-align:left;
}
.contact-area.new .box .m-ttl{
  text-shadow: none;
}
.contact-area.new .box .m-ttl .ja,
.contact-area.new .box .m-ttl .en{
  color: #fff;
}

.contact-area.new .tel {
  font-size: 48px;
}

@media (max-width: 1024px) {
  .contact-area.new .tel {
    font-size: 38px;
}
.contact-area.new .box .m-ttl .ja{
  letter-spacing: 2px;
}
}

@media (max-width: 599px) {
  .contact-area.new .box{
    padding: 50px 15px;
  }
  .contact-area.new .tel {
    font-size:26px;
  }
}

.footer .map{
padding-top: 30%;
}
.map.acc{
  padding-top: 30%;
}

.f-right{
  position: relative;
}

.f-right:after{
content: "";
    position: absolute;
    top: -10%;
    left: -9%;
    height: 110%;
    width: 1px;
    background: #202f55;
}

.f-right .tel{
  margin-bottom: 20px;
}

.f-right .logo-img{
    display: inline-flex;
    background: #202f55;
    height: 40px;
    width: 40px;
    padding: 5px;
    border-radius: 5px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}

.bb-line{
  border-bottom: solid 1px #222;
  color: #222;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer .bb-line{
  letter-spacing: 6px;
}
.copy{
  position: relative;
}
.copy .sns {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    display: flex;
    color: #222;
    font-size: 44px;
}

.header .sns{
    display: flex;
    justify-content: flex-end;
    color: #222;
    font-size:24px;
    text-align: right;
}
.header .gnav .sns{
  display: none;
}

.up-d-con{
  display: contents;
}


.cats-btn{
  position: fixed;
  right: 20px;
  top: 60%;
  z-index: 10;
/*   transition:.3s; */
}



[data-element-id].cats-btn{
  transform:translateX(0%);
  opacity:1;
}



.cats-btn .img{
  margin-bottom: 5px;
}

.cats-btn a{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #d0853d;
  color: #fff;
  border: solid 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  font-size:18px;
  letter-spacing: 3px;
  position: relative;
  transition:.3s;
}

.cats-btn a::after{
  content: "";
  background: #d0853d;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0.7;
  z-index: -1;
  scale: 1.1;
}

.cats-btn.ab a{
  border:none;
}

.cats-btn.ab a::before{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 2px dotted #2e83fa;
  border-bottom: 2px dotted #2ed2fa;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: all .7s cubic-bezier(.645,.045,.355,1);
  transition: all .7s cubic-bezier(.645,.045,.355,1);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 0;
}

.cats-btn.ab a:hover::before{
  -webkit-transform: translate(-50%, -50%) rotate(-220deg);
    transform: translate(-50%, -50%) rotate(-220deg);
}
@media (max-width: 1024px) {
  .header .sns{
    display: none;
  }
  .header .gnav .sns{
    display: flex;
  }
  .m-ttl .ja.s48,
  .m-ttl .ja{
    font-size: 38px;
    line-height: 1.5;
  }
  .bnr-area .tbox.new{
    width: 100%;
  }
  .event-area .item a{
    flex-wrap: wrap;
  }
  
.volunteer-area .m-btn a{
  width: 100%;
  font-size: 14px;
}

.guide-area .m-btn a{
  font-size: 14px;
  width: 100%;
}
.service .box .text-box .ttl{
  font-size:20px;
}
}

@media (max-width: 599px) {
  .f-right:after {
    top: -13%;
    left: 0;
    height: 1px;
    width: 100%;
  }
  .footer .bb-line{
  letter-spacing: 3px;
}

.news-area .text-box .date {
    letter-spacing:0;
    margin-right:10px;
    flex-shrink: 0;
}

.news-area .text-box a{
  margin-top:10px;
}

  .news-area .text-box a .ttl{
  width:calc(100% - 86px)
  }
  
  .bnr-area .tbox{
    width: 100%;
  }
.m-btn.sp-c a{
  margin: auto;
}
.news-area .box{
  flex-wrap: wrap;
}
.news-area .box >*{
  width: 100%;
}
.news-area{
  padding: 6px 0;
}
.news-area .box .m-ttl{
  text-align: center;
  margin-right: 0;
  padding-right: 0;
  padding-bottom: 5px;
  font-size:22px;
  margin-top:-5px;
}
.news-area .box .m-ttl::after{
  height: 2px;
  width: 50px;
  top: 100%;
  right: initial;
  left: 50%;
  transform: translate(-50% , 0%);
}
.news-area .text-box{
  margin-right: 0;
}
.news-area .btn a{
  margin: auto;
}
.m-ttl .ja.s48,
.m-ttl .ja{
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.m-ttl .ja.pattern-01 {
  font-size: 22px;
}
.m-ttl .en {
  letter-spacing: 5px;
}
.service .box .text-box {
  bottom: 10px;
  left: 10px;
}
.service .box .text-box .ttl{
  font-size: 16px;
}
.service .box .text-box .sb-ttl {
  padding-left: 2rem;
  font-size: 12px;
}
.service .box .text-box .sb-ttl::after{
  width: 1.5rem;
}
.m-btn a,
.m-btn button{
  height: 50px;
}
.contact-area .box{
  padding: 15px;
}
.contact-area .box .cat .item{
  width: 90px;
}
.contact-area .tel {
  font-size: 38px;
}
.m-btn.long a{
  width: 100%;
}
.footer .map {
  padding-top: 60%;
}
.map.acc{
  padding-top: 60%;
}
.copy .sns {
  position: relative;
    width: fit-content;
    margin-bottom: 50px;
}
}
.company02box{
  max-width: 800px;
  margin: 0 auto;
}
.company02box .list .item:first-of-type {
  border-top:2px solid #ccc;
}

.company02box .item {
  padding: 1.5em 3em;
  border-bottom:2px solid #ccc;
}

.company02box dl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.company02box .item dt {
  font-weight: 700;
  width: 7em;
}

.company02box .item dt + dd {
  width: calc(100% - 8em);
}

@media (max-width: 599px) {
  .company02box .item dt{
    width: 100%;
    margin-bottom: 10px;
  }
  .company02box .item dt + dd {
    width: 100%;
}
  .resume-sec-list .resume-text{
    padding: 5px 0 25px 25px;
  }
  .company02box .item {
      padding: 1.5em 1.5em;
  }
}

.bg-border {
  background: #fff;
  position: relative;
  overflow: hidden;
  outline: 1px solid #000;
    outline-offset: 2px;
}

.markerY {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0 0 0 / 0)), color-stop(70%, #f1eb49));
  background-image: linear-gradient(rgba(0 0 0 / 0) 70%, #f1eb49 70%);
}

.border-b{
  position: relative;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.border-b::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ccc;
  height: 2px;
}

.timeline {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}
.timeline li {
  display: flex;
}
  .timeline-date {
    position: relative;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-right: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
        flex-shrink: 0;
  }
.timeline-content{
  margin-bottom: 50px;
}
  .timeline .ttl{
    font-size:18px;
    font-weight: bold;
    color: #222;
    padding-top: 10px;
    margin-bottom: 10px;
  }

  .timeline-date:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #202f55;
    position: absolute;
    right: -5px;
    top: 20px;
    transform: translate(0,-50%);
    border-radius: 100%;
    z-index: 1;
  }

  .timeline-date::after{
    content: '';
    width: 2px;
    height: 100%;
    background: #a9bff7;
    position: absolute;
    right: 0px;
    top: 20px;
  }

  .timeline li:not(:first-child) .timeline-date::after{
    top: 20px;
  }
  .timeline li:last-child .timeline-date::after{
    content: none;
  }

  .bnr{
    position: relative;
  }
  
  .bnr .ttl{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 98%;
    text-align: center;
  }

  @media (max-width: 599px) {
    .timeline-date{
      font-size:24px;
      margin-right: 20px;
      padding-right: 20px;
    }
    .timeline .ttl{
      font-size: 14px;
    }
    .bnr .ttl{
      font-size:18px;
    }
  }

.flow-area .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}

.flow-area .img{
  width: 35%;
}
.flow-area .img .num{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  background: #202f55;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  top: -10%;
  left: -5%;
}

.flow-area .text-box{
width: 60%;
}

.flow-area .text-box .ttl{
  color: #202f55;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .flow-area .img .num{
    font-size: 32px;
    width: 70px;
    height: 70px;
    top: -50px;
    left: -1%;
  }
}
@media (max-width: 599px) {
  .flow-area .img,
  .flow-area .text-box{
    width: 100%;
    }
    .flow-area .img .num{
      font-size:26px;
      width: 60px;
    height: 60px;
    top: -40px;
    left: 0%;
    }
}
.link-area{
  padding: 30px;
    border: solid 3px #202f55;
  background: #fff;
  border-radius: 10px;
}
.link-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.link-box a{
  display: block;
}
.link-box .h2{
  margin-bottom: 5px;
  margin-top: 30px;
}
.link-box .h3{
  margin-left: 1rem;
  margin-bottom: 5px;
  width: 100%;
}
.link-box .h4{
  margin-left: 2rem;
}

.link-box .h4.last{
 margin-bottom: 15px;  
}

.plan-area .item01 .ttl-box{
  background: #0099cc;
}
.plan-area .item01 .year-box .sb-ttl{
  color: #0099cc;
}

.plan-area .item02 .ttl-box{
  background: #000000;
}
.plan-area .item02 .year-box .sb-ttl{
  color: #000000;
}

.plan-area .item03 .ttl-box{
  background: #865aa2;
}
.plan-area .item03 .year-box .sb-ttl{
  color: #865aa2;
}

.plan-area .item04 .ttl-box{
  background: #006878;
}
.plan-area .item04 .year-box .sb-ttl{
  color: #006878;
}

.plan-area .item05 .ttl-box{
  background: #0067b6;
}
.plan-area .item05 .year-box .sb-ttl{
  color: #0067b6;
}

.plan-area .item06 .ttl-box{
  background: #8dc21f;
}
.plan-area .item06 .year-box .sb-ttl{
  color: #8dc21f;
}

.plan-area .item07 .ttl-box{
  background: #ef8300;
}
.plan-area .item07 .year-box .sb-ttl{
  color: #ef8300;
}

.plan-area .ttl-box {
  color: #fff;
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  outline: 1px solid #fff;
    outline-offset: -5px;
}

.plan-area .ttl-box .ttl{
  font-size:28px;
  font-weight: bold;
  margin-right: 30px;
  width: 50%;
  letter-spacing: 6px;
}

.plan-area .text-box .ttl{
  font-size:18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.plan-area .year-box .sb-ttl{
  background: #fff;
  border-radius: 5px;
  padding: 0.5rem;
  letter-spacing: 3px;
  font-weight: bold;
}

.plan-area .year-box .year{
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .plan-area .ttl-box .ttl{
    width: 70%;
  }
  .cats-btn{
  right: 10px;
     right: 10px;
    bottom: 70px;
    top: initial;
    transition: none;
  }
  .cats-btn a{
    width: 110px;
    height: 110px;
    font-size: 13px;
    letter-spacing: 2px;
  }
}

@media (max-width: 599px) {
  .plan-area .ttl-box .ttl {
    width: 100%;
    margin-right: 0;
    font-size: 24px;
    margin-bottom: 10px;
}

  .cats-btn{
  transform:translateX(130%);
  opacity:0;
  transition:.3s;
}

.cats-btn.scrolled{
  transform:translateX(0%);
  opacity:1;
  transition:.3s;
}

.cats-btn .img{
  width: 25px;
}
.cats-btn a{
  width: 90px;
  height: 90px;
  font-size: 12px;
  letter-spacing: 1px;
}
}

.title-left-deco {
  position: relative;
  margin-bottom: 15px;
  padding-bottom:  5px;
  border-bottom: solid 3px #dfe3ed;
  font-size:18px;
  font-weight: bold;
}
.title-left-deco::before {
content: '';
height: 3px;
width: 50px;
display:  block; 
position:  absolute;
background-color: #202f55;
bottom: -3px; 
left:  0;
}

.border-10{
  border-radius: 10px;
  overflow: hidden;
}
.li-text {
  padding: 5px 0;
  padding-left: 15px;
  font-weight: bold;
  color: #fff;
  background: #202f55;
  position: relative;
  margin-bottom: 30px;
  font-size:24px;
  letter-spacing: 3px;
}
.li-text::after {
  content: "";
  width: 3px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 5px;
}
.dot-text{
  padding: 30px;
  border-radius: 15px;
  background: #fff;
}
.dot-text li {
  margin-bottom: 10px;
  padding-left: 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  position: relative;
}
.dot-text li:last-child{
  margin-bottom: 0;
}
.dot-text li::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border: 8px solid #202f55;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.dot-text-s li {
  padding-left: 1rem;
  position: relative;
}
.dot-text-s li::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 0;
  background: #222;
}
.bg-f{
  position: relative;
}
.bg-f::after {
  content: "";
  position: absolute;
  background: #fbfbfb;
  border-radius: 0 10px 10px 0;
  height: 100%;
  top: 0px;
  right: -10%;
  z-index: -1;
  width: 100vw;
}

.point-area li.bg-f:nth-child(even):after{
  border-radius: 10px 0 0 10px;
  left: -10%;
}
.point-area table{
  width: 100%;
}

.point-area table th {
  background: #999999;
  text-align: center;
  width: 50%;
  padding: 20px;
  color: #fff;
  border: 1px solid #ccc;
  font-size: 16px;
}

.point-area table td {
  padding: 20px;
  font-size: 14px;
  width: 50%;
  border: 1px solid #ccc;
}

@media (max-width: 599px) {
  .bg-f::after{
    width: 200vw;
    right: -10px;
    border-radius: 0;
  }
  .point-area li.bg-f:nth-child(even):after {
    left: -10px;
    border-radius: 0;
}
.li-text{
  font-size:18px;
}
}

.faq-box{
  background: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 5px #d5d5d5;
  box-shadow: 0px 2px 5px #d5d5d5;
}

.faq-inner{
  padding:30px 55px 30px 30px;
  position:relative;
}

.faq-box.pattern-01 .faq-inner {
  padding:30px 30px 30px 30px;
}

.faq-list .faq-box .faq-inner .text{
  font-size:18px;
  color: #222;
      padding-left: 35px;
    position: relative;
}

.faq-list .faq-box .faq-inner span{
  font-size:22px;
  color:#202f55;
  display:inline-block;
  text-align:center;
  position: absolute;
    top: 0;
    left: 0;
    line-height: 25px;
}
.faq-box .ans{
  display: none;
    padding: 30px;
    background: #f9f9f9;
    color: #333;
}

.faq-box.pattern-01 .ans {
    display: block;
}
.faq-box .ans span{
  font-size:20px;
  color:#202f55;
  display: inline-block;
  text-align: center;
  line-height: 25px;
  position: absolute;
    top: 0;
    left: 0;
}
.faq-box .ans .text{
  color: #222;
  position: relative;
  padding-left: 35px;
  font-size: 16px;
}
.plas::before,
.plas::after{
  content: '';
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background: #202f55;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.plas::after{
  background: #202f55;
    -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.plas.is-parent::after{
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 599px) {
  .faq-list .faq-box .faq-inner div,
  .faq-box .ans .text{
font-size: 14px;
  }
  .faq-list .faq-box .faq-inner span,
  .faq-box .ans span{
    line-height: 20px;
  }
}

.form .data input[type="radio"]{
  padding-left: 50px;
}

.form .data input[type="radio"] + label::before{
  content: "";
  width: 25px;
  height: 25px;
  border: 2px solid #202f55;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 0;
}

.form .data input[type="radio"] label:hover {
  cursor: pointer;
}

.form .data input[type="radio"] {
  display: none;
}

.form .data input[type="radio"]:checked+label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #202f55;
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
}

.form .data input[type="radio"]+label {
  margin-left: 10px;
  display: inline-block;
  padding: 5px 10px 5px 35px;
  position: relative;
}

.zoom-in-img .img {
  overflow: hidden;
}

.zoom-in-img img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.zoom-in-img a:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.works-detail th {
  background: #202f55;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}

.works-detail td {
  border: solid 1px #ccc;
  padding: 10px;
  background: #fff;
}

.works-detail table {
  width: 100%;
}

.tbl-r th {
  padding: 10px;
  width: 102px;
}

.tbl-r td {
  padding: 10px;
}

.tbl-r02 tr{
  display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.tbl-r02 th {
  padding: 10px;
  display: block;
  width: 100%;
}

.tbl-r02 td {
  padding: 10px;
  width: 50%;
  display: block;
}
.tbl-r02 td.left{
  background: #edf9fd;
}

@media (max-width: 599px) {
 .works-detail th {
    border-bottom: none;
  }
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  
  .tbl-r {
    width: 80%;
  }
  .tbl-r th,
  .tbl-r td {
    display: block;
    width: 100%;
  }
  .tbl-r02 td{
    width: 100%;
  }
}

.works-detail .ttl{
  font-size: 24px;
  font-weight: bold;
  padding-left: 1rem;
  position: relative;
}
.works-detail .ttl::after{
content: "";
position: absolute;
top: 0;
left: 0;
height: 35px;
width: 5px;
background: #202f55;
}

.works-detail .cat span{
  background: #202f55;
  color: #fff;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0 0.5rem;
  display: inline-block;
}

.text-h {
  position: relative;
  padding: 0.2em 1em;
  background: #202f55;
  margin-bottom: 30px;
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  display:inline-block;
}

.text-h:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #202f55;
  width: 0;
  height: 0;
}

.lintext {
  padding-left: 10px;
  border-left: solid 4px #202f55;
}

.check {
  max-width: 800px;
  padding: 30px;
  border-radius: 15px;
  background: #fff;
}

.check li {
  margin-bottom: 10px;
  padding-left: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  position: relative;
}

.check li:last-child {
  margin-bottom: 0;
}

.check li:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #202f55;
  position: absolute;
  top: 6px;
  left: 0;
}

.check li:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 3px;
  left: 5px;
}

.list_guide05 .item {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list_guide05 .item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.list_guide05 .datattl {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 5px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #202f55;
}

.list_guide05 .data {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 10px 20px;
  border: solid 1px #202f55;
  background: #fff;
}

@media (max-width: 599px) {
  .underlayer .ja {
      font-size:24px;
  }

  .list_guide05 .item {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }

  .list_guide05 .datattl {
      width: 100%;
  }

  .list_guide05 .data {
      padding: 10px;
      font-size: 13px;
  }
  .up-d-contents\@sp {
    display: contents;
  }
  
  .works-detail .ttl{
  font-size:20px
}
}

.staff-box .subtit{
  background: #202f55;
  color: #fff;
  border-radius: 10px;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 3px;
  padding: 0 0.5rem;
  margin-bottom: 10px;
}
.link-box a{
  position: relative;
}
.link-box a::before {
  background: #202f55;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.link-box a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.br10 img{
  filter: drop-shadow(10px 10px 1px #8d8d8d);
}
.md-01{
  position: relative;
      font-size:18px;
    font-weight: bold;
    color: #222;
    padding-top: 10px;
    padding-left: 1.5rem;
    margin-bottom: 10px;
}
.md-01:after{
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    height: 1rem;
    width: 1rem;
    background: #202f55;
}
@media (max-width: 599px) {
  .md-01{
    font-size: 16px;
    padding-left:1em;
  }
  .md-01:after{
    width:0.8em;
    height:0.8em;
    top:0.9em;
}
}
[data-ab-test-block]{
        right: 1%;
    bottom: 7%;
    position: absolute;
  }
  
  [data-element-id] [data-ab-test-contents]{
    position: relative;
         border: 3px solid #2ca09a;
         padding: 10px;
}
[data-element-id] [data-ab-test-contents] a{
  margin-top: 20px;
}
[data-element-id] [data-ab-test-contents] li{
  padding-top: 20px;
}
[data-element-id] [data-ab-test-contents]::before {
    content: "Aパターン";
    width: 100%;
    display: block;
    padding: 0.5em 0.2em;
    font-size: 10px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #2ca09a;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] [data-ab-test-contents]+[data-ab-test-contents] {
    border: 3px solid #24ac50;
}

[data-element-id] [data-ab-test-contents]+[data-ab-test-contents]::before {
    content: "Bパターン";
    background-color: #24ac50;
    z-index: 1;
}

[data-element-id] .up-d-none{
    display: inline-block;
    border: solid 3px #000;
    position: relative;
}
[data-element-id] .up-d-none:before{
    content: "モバイル用";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #000;
        text-shadow: none;
}

[data-element-id] .fead-order>* {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

[data-element-id] .gnav .list02{
 visibility: visible;
    opacity: 1;
    padding-top: 0;
    position: relative;
    top: 0;
    border: solid 3px #ff9900;
        width: 325px;
}

[data-element-id] .gnav .list02:before{
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #ff9900;
        text-shadow: none;
        content: "";
}
[data-element-id] .gnav .list02.card-01:before{
  content: "当社について";
}
[data-element-id] .gnav .list02.card-02:before{
  content: "外装塗装について";
}
[data-element-id] .gnav .list02.card-03:before{
  content: "新着情報";
}

[data-element-id] .cats-btn{
  position: relative;
  right: 0;
  top: 0;
}

[data-element-id] .homevisual{
      pointer-events: none;
}

[data-element-id] .homevisual .head{
  pointer-events: auto;
      margin-top: -700px;
}

[data-element-id] .slick01{
  display: flex;
      flex-wrap: wrap;
    justify-content: center;
}

[data-element-id] .slick01 > div{
 display: contents;
}

[data-element-id] .voice-area li{
  width: 30%;
}
[data-element-id] .event-area .item .date,
[data-element-id] .event-area .item .cat,
[data-element-id] .news-area .text-box .date{
  flex-shrink: 1;
}

[data-element-id] .topvisual{
      position: relative;
    z-index: 0;
}

[data-element-id] .topvisual .img {
    height: 700px;
}
[data-element-id] .faq-box .ans{
  display: block;
}

.case-3-ori [class*='gallery_']{
display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
}
.case-3-ori .photo_gallery{
text-align: center;
    width: calc(33.3333% - 30px);
    margin: 0 30px 30px 0;
}
.case-3-ori .photo_gallery .photo{
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .case-3-ori [class*='gallery_'] {
    width: calc(100% + 10px);
}
  .case-3-ori .photo_gallery{
        text-align: left;
    width: calc(49.999% - 10px);
    margin: 0 10px 30px 0;
    font-size: 13px;
}

.homevisual .head.top-ttl {
    font-size: 26px;
    letter-spacing:3px;
}

.homevisual .head {
flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: calc(100vh - 250px);
}

.bg-b .text{
  text-align:left;
  letter-spacing:0.5px;
}

.sp-blk{
  display:block;
}
}



/*sp時限定slick用*/
.new-sp-slider{
  position:relative;
}
.new-sp-slider>*{
  opacity:1!important;
}
.new-sp-slider>.slick-list.draggable{
  width:100%!important;
}

.new-sp-slider .btn-slick{
  top:-35%;
}

.new-sp-slider .fa-arrow-left.btn-back{
  left:0;
  right:auto;
}

.img-new-bnr{
  display:inline-block;
  width:100%;
  position:relative;
  padding:30px 45px;
  background-color:#000;
  overflow:hidden;
  color:#fff!important;
}

.img-new-bnr>div{
  z-index: 1;
  position: relative;
}

.img-new-bnr>img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:inline-block;
  position:absolute;
  top:0;
  left:0;
  transition: 0.3s ease-in-out;
}

.img-new-bnr:hover img{
  transform: scale(1.3);
  transition: 0.3s ease-in-out;
}


.new-btn-001{
  background: none;
    border: solid 1px;
    color: #fff;
    border-radius: 10px;
    height: 60px;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 3px;
}

.bg-txts{
  background-image:url(/import/tenant_1/153.121.77.57/html/images/ks1_4.webp);
  border-radius:10px;
}

@media(max-width:599px){
  .slick01>li:nth-child(5),
  .slick01>li:nth-child(6){
    display:none!important;
  }
  
  .new-btn-001{
    height: 50px;
}

.img-new-bnr>a{
  padding:30px 20px;
}

}

.column2.ori-blog .mainwrap.new{
  margin-bottom: 30px;
}

.column2.ori-blog .inner{
  flex-wrap: wrap;
}

.column2.ori-blog .side,
.column2.ori-blog .mainwrap {
    width: 100%;
}

.column2.ori-blog .side{
  display: flex;
  justify-content: space-between;
}
.column2.ori-blog .side.bgc .list{
  width: 48%;
}
@media(max-width:599px){
  .column2.ori-blog .side.bgc .list{
  width: 100%;
}
}

.bgc-w{
  background-color:#fff;
  margin-top:-1px;
}

.bgc-mm{
  background: rgba(255,255,255,0.8);
  margin-top:0px;
}
.inner,
.inner1100,
.inner1200,
.inner1300,
.inner1400,
.inner1500,
.inner500,
.inner600,.inner700,
.inner800,
.inner900{
    width:calc(100% - 40px);
    margin-left:auto;
    margin-right:auto;
}

.no-inner{
  padding-left:10px;
  padding-right:10px;
}

.new-features{
  background-color:#fff;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  position:relative;
  box-shadow: 0 0 4px #999;
  margin-top:50px;
}

.new-features::after {
    content: "";
    display: inline-block;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border: 1px solid #DB9400;
}

.new-features>h3{
    font-size: 18px;
    color: #222222;
    margin: 15px 0;
    padding-left: 2rem;
    position: relative;
}

.nf-ball{
    display: inline-block;
    width: 27px;
    text-align: center;
    height: 27px;
    line-height: 27px;
    color: #fff;
    background-color: #202f55;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    left: 0;
}

@media(max-width:599px){
.new-features{
  margin-top:30px;
}

.new-features>h3{
  font-size:16px;
}

.new-features::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
}

.nf-ball{
  width:24px;
  height:24px;
  line-height:24px;
}

.column2 .mainwrap.new {
  padding:15px;
}
}

[data-element-id].new-features::after {
    z-index: -1;
}

.cmn-cat-01 {
    color: #202f55;
    border: solid 1px;
    border-radius: 5px;
    padding: 0 0.5rem;
    display: inline-block;
    font-size: 14px;
}
.thankswall_contents .icon01:before {
    display:none;
}


@media(max-width:599px){
  .detail-content-text .ytb-lnk-bnr .ytb-title {
    mpadding:0.5em 0;
}
}
[data-common-area]:hover:before{
  z-index: 1;
}


/* 2023/10/24 */
.pos100 {
    position: relative;
    z-index: 100;
}

/* 2024/11/26 */


.homevisual{
  height: 100%;
}

.movie-area{
  position: relative;
  background-color: #000;
}

.movie-area video{
  opacity: .6;
  width: 100%;
}

.homevisual .inner{
    position: absolute;
    height: 100%;
    bottom: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.news-area {
    background: rgba(44, 58, 93);
    color: #fff;
}

@media screen and (min-width:1025px) {
.homevisual .inner {
    position: absolute;
    height: 100%;
    bottom: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
    width: -webkit-fill-available;
    right: auto;
}
}



/* 2025.03.17 */

.spring-img{
  width: 75%;
    margin: 0rem auto 2rem;
    padding-top: 2rem;
}


@media (max-width: 599px) {
.spring-img {
    width: 95%;
    margin: 0rem auto 2rem;
    padding-top: 0rem;
}
}

/*20260622*/

.area.area-b300 {
  padding-bottom: 300px;
}

.top-youtube {
  position: absolute;
  width: 80%;
  left: 10%;
}

.youtubeflex {
  display: flex;                 
  /* justify-content: space-between; 
  gap: 20px;      */                
  width: 100%;
}

.youtubeflex div {
  width: 32%;
  margin: auto;
}

.youtubeflex iframe {
  width:100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 599px) {
  .area.area-b300 {
    padding-bottom: 750px;
  }
  
  .top-youtube {
    width: 90%;
    left: 5%;
  }
  
  .youtubeflex {
    display: block;       
  }
  
  .youtubeflex div {
    width: 100%;
    margin: 10px auto;
  }
  
  .youtubeflex iframe {
    width: 100%;
  }
  
 .youtubeflex iframe:last-child {
    margin-bottom: 0;
  }
}
