@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Black";
  src: url("../fonts/NotoSansCJKjp-Black.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "DelaGothicOne-Regular";
  src: url("../fonts/DelaGothicOne-Regular.ttf");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
/* キーフレーム（短く細かく動かす — ジョジョの擬音感） */
@keyframes dododo {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -1px) rotate(-0.6deg);
  }
  20% {
    transform: translate(2px, 0px) rotate(0.8deg);
  }
  30% {
    transform: translate(-1px, 1px) rotate(-0.4deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(0.3deg);
  }
  50% {
    transform: translate(-2px, 0px) rotate(-0.9deg);
  }
  60% {
    transform: translate(1px, 1px) rotate(0.6deg);
  }
  70% {
    transform: translate(-1px, 0px) rotate(-0.3deg);
  }
  80% {
    transform: translate(2px, -1px) rotate(0.9deg);
  }
  90% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* 強め（振幅大きめ） */
@keyframes dododo-strong {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-3px, -2px) rotate(-1.2deg);
  }
  20% {
    transform: translate(4px, 0px) rotate(1.6deg);
  }
  30% {
    transform: translate(-3px, 2px) rotate(-1deg);
  }
  40% {
    transform: translate(3px, -2px) rotate(0.8deg);
  }
  50% {
    transform: translate(-4px, 0px) rotate(-1.6deg);
  }
  60% {
    transform: translate(3px, 2px) rotate(1.2deg);
  }
  70% {
    transform: translate(-2px, 0px) rotate(-0.7deg);
  }
  80% {
    transform: translate(4px, -2px) rotate(1.8deg);
  }
  90% {
    transform: translate(-3px, 2px) rotate(-1.1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* ソフト（振幅小さめ・遅め）*/
@keyframes dododo-soft {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  12% {
    transform: translate(-1px, 0px) rotate(-0.3deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(0.4deg);
  }
  37% {
    transform: translate(-1px, 1px) rotate(-0.2deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  62% {
    transform: translate(1px, 0px) rotate(0.3deg);
  }
  75% {
    transform: translate(-1px, -1px) rotate(-0.4deg);
  }
  87% {
    transform: translate(1px, 1px) rotate(0.2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/*	font-size  cmn
------------------------------------ */
/************************************************

  SP layout

************************************************/
/*	cmn parts  SP
------------------------------------ */
.com-inner {
  padding: 50px 15px;
}

.com-md-inner {
  padding: 50px 15px;
}

.no-sb {
  margin: 30px auto 0;
}

.com-ib {
  display: inline-block;
}

.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}

.anchor-mp {
  margin: -70px auto 0;
  padding-top: 70px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin-top: 15px;
}

/*  共通パーツ
------------------------------------ */
.com-box {
  border-width: 3px;
}
.com-box02 {
  border-width: 3px;
  box-shadow: 4px 4px #000;
}

.com-lg {
  font-size: 2rem !important;
  text-shadow: rgb(4, 0, 0) 2px 0px 0px, rgb(4, 0, 0) 1.75517px 0.958851px 0px, rgb(4, 0, 0) 1.0806px 1.68294px 0px, rgb(4, 0, 0) 0.141474px 1.99499px 0px, rgb(4, 0, 0) -0.832294px 1.81859px 0px, rgb(4, 0, 0) -1.60229px 1.19694px 0px, rgb(4, 0, 0) -1.97998px 0.28224px 0px, rgb(4, 0, 0) -1.87291px -0.701566px 0px, rgb(4, 0, 0) -1.30729px -1.5136px 0px, rgb(4, 0, 0) -0.421592px -1.95506px 0px, rgb(4, 0, 0) 0.567324px -1.91785px 0px, rgb(4, 0, 0) 1.41734px -1.41108px 0px, rgb(4, 0, 0) 1.92034px -0.558831px 0px, rgb(4, 0, 0) 0 -2px 0;
}

.com-tel-link {
  background-size: 18px;
  padding-left: 27px;
  font-size: 2.5rem;
}

.news-post-tag {
  margin-left: 15px;
}
.news-post-tag-txt {
  margin: 0 5px 5px 0;
  font-size: 1.3rem;
}
.news-post-ttl {
  margin-top: 5px;
}
.news-post-flx {
  display: block;
}
.news-post-ttl {
  margin: 4px 0 0;
}

.com-tag {
  flex-direction: column;
  align-items: center;
}
.com-tag-item {
  width: 100%;
}
.com-tag-item:nth-of-type(n+2) {
  margin-top: 15px;
}

/* =========================================

  main  SP

========================================= */
/* ent  SP
------------------------------------ */
.ent-mv {
  width: 100%;
  padding: 0 15px;
}
.ent-mv-item {
  width: 100%;
  padding: 50% 0 5%;
}
.ent-mv-link {
  padding: 20px 0;
  background-position: calc(100% - 13px) calc(100% - 21px);
}
.ent-mv-ttl-ja {
  font-size: 2rem;
}
.ent-news-ttl {
  padding-left: 15px;
}
.ent-news-ttl-ja {
  margin-top: 18px;
}
.ent-news-btn {
  width: 179px;
  height: 45px;
  line-height: 45px;
}
.ent-copy {
  padding: 6px 0;
}
.ent-copy-txt, .ent-copy-link {
  font-size: 1.3rem;
}

/* top-about  SP
------------------------------------ */
#top-about .about-go-l {
  width: 18%;
  top: 20px;
  left: 6px;
}
#top-about .about-go-r {
  bottom: auto;
  top: 119px;
}
#top-about .about-catch {
  width: 100%;
  padding-top: 22%;
}

/* top-character  SP
------------------------------------ */
#top-character .character-inner {
  padding: 50px 15px;
}
#top-character .character-lead {
  margin-top: 25px;
  border-width: 3px;
}
#top-character .character-list-item:nth-of-type(n+2) {
  margin-top: 20px;
}
#top-character .character-list-koma {
  width: 100%;
  padding-top: 73.77%;
  position: relative;
  right: auto;
  left: auto;
  top: auto;
}
#top-character .character-list-inner {
  margin: -20px auto 0;
  position: relative;
}
#top-character .character-list-contents {
  text-align: right;
}
#top-character .character-list-ttl {
  display: inline-block;
}
#top-character .character-list-ttl::before {
  width: 100%;
  height: 60px;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
  top: 20px;
}
#top-character .character-list-ttl::after {
  width: 100%;
  height: 60px;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
  top: 25px;
}
#top-character .character-list-ttl02::before {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 50px 100%);
}
#top-character .character-list-ttl02::after {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 50px 100%);
}
#top-character .character-list-ttl-class {
  text-align: left;
}
#top-character .character-list-ttl-class img {
  height: 45px;
}
#top-character .character-list-ttl-name {
  margin-top: -4px;
}
#top-character .character-list-ttl-name img {
  height: 60px;
}
#top-character .character-list-table {
  margin-top: 20px;
}
#top-character .character-list-table tr:nth-of-type(n+2) {
  margin-top: 15px;
}
#top-character .character-list-table th {
  width: 100px;
  height: 27px;
  line-height: 27px;
}
#top-character .character-list-table td {
  padding-left: 15px;
  line-height: 1.9;
}
#top-character .character-list-txt {
  margin-top: 20px;
  text-align: left;
}
#top-character .left {
  width: 52.4%;
}
#top-character .right {
  width: 72.5%;
}

/* top-works  SP
------------------------------------ */
#top-works .works-list {
  margin-top: 30px;
}
#top-works .works-list-item:nth-of-type(n+2) {
  margin: 100px auto 0;
}
#top-works .works-list-imgs {
  width: 100%;
  position: relative;
}
#top-works .works-list-imgs02 {
  text-align: right;
}
#top-works .works-list-chara {
  position: relative;
}
#top-works .works-list-chara01 {
  width: 40%;
  top: auto;
  left: auto;
  z-index: 3;
}
#top-works .works-list-chara02 {
  width: 65%;
  top: auto;
  right: auto;
  text-align: right;
  margin-left: auto;
}
#top-works .works-list-img01 {
  width: 84%;
  top: 8%;
  right: -15px;
}
#top-works .works-list-img02 {
  width: 84%;
  top: -21%;
  left: -15px;
}
#top-works .works-list-ttl::before {
  width: 80%;
  height: 104px;
  left: -1px;
  top: -24px;
  box-shadow: 10px 7px #fea025;
  transform: skew(-20deg, -5deg);
}
#top-works .works-list-ttl02 {
  padding-left: 20%;
}
#top-works .works-list-ttl02::before {
  left: auto;
  right: 15px;
}
#top-works .works-list-fuki {
  padding: 15px 10px;
  text-align: center;
}
#top-works .works-list-fuki::before {
  width: 56px;
  height: 58px;
  top: -54px;
  right: auto;
  left: 43%;
}
#top-works .works-list-fuki .ac {
  font-size: 1.8rem;
}

/* top-charm  SP
------------------------------------ */
#top-charm .charm-inner {
  padding-bottom: 10px;
}
#top-charm .charm-inner02 {
  padding-top: 0;
  padding-bottom: 0;
}
#top-charm .charm-ttl-ja {
  margin: 5px auto 0;
}
#top-charm .charm-fuki {
  margin: -15px auto 0;
}
#top-charm .charm-list {
  margin-top: -59px;
}
#top-charm .charm-list-item {
  padding: 15px;
  border-width: 3px;
}
#top-charm .charm-list-ttl-ja {
  padding: 0;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
#top-charm .charm-list-ttl-ja .ac {
  font-size: 2.5rem;
}
#top-charm .charm-list-ttl-num {
  left: -44px;
  top: -24px;
}
#top-charm .charm-list-ttl-num img {
  height: 50px;
}
#top-charm .charm-list-txt {
  margin-top: 15px;
  line-height: 2;
}
#top-charm .charm-list-txt .ac {
  font-size: 1.8rem;
}
#top-charm .charm-chara {
  margin: 10px auto 0;
}
#top-charm .charm-chara-illu {
  display: block;
  width: 89%;
  margin-left: auto;
  position: relative;
  right: auto;
  top: auto;
}
#top-charm .charm-chara-go {
  width: 86%;
  right: 5%;
  top: auto;
  bottom: 16%;
}

/* top-data  SP
------------------------------------ */
#top-data {
  margin: -65px auto 0;
}
#top-data .data-bg {
  background-size: 45px;
}
#top-data .data-inner {
  padding-top: 100px;
}
#top-data .data-ttl-en img {
  height: 62px;
}
#top-data .data-list {
  max-width: 350px;
}
#top-data .data-list-item:nth-of-type(n+2) {
  margin: 30px auto 0;
}
#top-data .data-list-box {
  min-height: 180px;
}
#top-data .data-list-box-lg {
  min-height: 293px;
}
#top-data .data-list-box-ttl {
  font-size: 2.3rem;
  padding-right: 25px;
}
#top-data .data-list-box-illu01 {
  width: 145px;
  top: 22px;
  left: calc(50% - 108px);
}
#top-data .data-list-box-illu02 {
  width: 161px;
  top: 41px;
  right: 0px;
}
#top-data .data-list-box-illu03 {
  width: 236px;
  margin: auto;
  top: 41px;
  left: 0;
  right: 0;
}
#top-data .data-list-box-illu04 {
  width: 129px;
  top: 22px;
  right: calc(50% - 115px);
}
#top-data .data-list-box-illu05 {
  width: 155px;
  left: calc(50% - 94px);
  top: 51px;
}
#top-data .data-list-box-illu06 {
  width: 129px;
  top: 69px;
  left: 17%;
}
#top-data .data-list-box-illu07 {
  width: 77px;
  bottom: 28px;
  left: calc(50% - 124px);
}
#top-data .data-list-box-illu08 {
  width: 142px;
  top: 54px;
  left: 6px;
}
#top-data .data-list-box-illu09 {
  width: 74px;
  top: 193px;
  left: 38px;
}
#top-data .data-list-box-illu10 {
  width: 119px;
  left: 11px;
  bottom: 25px;
}
#top-data .data-list-box-illu11 {
  width: 111px;
  left: 13px;
  bottom: 33px;
}
#top-data .data-list-box-txt {
  font-size: 2.5rem;
}
#top-data .data-list-box-txt01 {
  padding-top: 86px;
  padding-right: 14px;
  font-size: 2.5rem;
}
#top-data .data-list-box-txt02 {
  padding: 90px 0 0 50px;
}
#top-data .data-list-box-txt03 {
  padding: 193px 0 0;
}
#top-data .data-list-box-txt04 {
  padding: 72px 0 0 45px;
}
#top-data .data-list-box-txt05 {
  padding: 62px 0 0 0;
  text-align: center;
}
#top-data .data-list-box-txt06 {
  padding: 102px 0 0 51px;
}
#top-data .data-list-box-txt07 {
  padding: 19px 0 0 43px;
}
#top-data .data-list-box-txt08 {
  padding: 116px 0 0 89px;
}
#top-data .data-list-box-txt09 {
  padding: 42px 0 30px 109px;
}
#top-data .data-list-box-txt10 {
  padding: 81px 18px 0 0;
}
#top-data .data-list-box-txt11 {
  padding: 71px 19px 0 0;
}

/* top-career  SP
------------------------------------ */
#top-career .career-list {
  margin: 20px auto 0;
}
#top-career .career-list-arw {
  display: none;
  width: 1110px;
  height: 214px;
  top: 237px;
  left: -6px;
}
#top-career .career-list-item {
  flex-shrink: 0;
}
#top-career .career-list-item:nth-of-type(n+2) {
  margin-left: 20px;
}
#top-career .career-list-height01 {
  padding-top: 100px;
}
#top-career .career-list-height02 {
  padding-top: 150px;
}
#top-career .career-list-height03 {
  padding-top: 200px;
}
#top-career .career-list-height04 {
  padding-top: 250px;
}
#top-career .career-list {
  flex-direction: column;
  align-items: center;
}
#top-career .career-list::before {
  content: none;
}
#top-career .career-list-item {
  width: 100%;
  max-width: none;
}
#top-career .career-list-item:nth-of-type(n+2) {
  margin: 30px auto 0;
}
#top-career .career-list-graph {
  height: auto;
}
#top-career .career-list-height {
  display: none;
  border-width: 3px;
}
#top-career .career-list-height01 {
  padding-top: 50px;
}
#top-career .career-list-height02 {
  padding-top: 80px;
}
#top-career .career-list-height03 {
  padding-top: 110px;
}
#top-career .career-list-height04 {
  padding-top: 140px;
}
#top-career .career-list-sp-bg {
  margin: -24px auto 0;
  padding: 15px;
  border: 3px solid transparent;
  box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.23);
}
#top-career .career-list-sp-bg01 {
  background: linear-gradient(#ffd653, #ffd653) padding-box, linear-gradient(45deg, #ff5613, #ffd653) border-box;
}
#top-career .career-list-sp-bg02 {
  background: linear-gradient(#ffb736, #ffb736) padding-box, linear-gradient(45deg, #ff5613, #ffd653) border-box;
}
#top-career .career-list-sp-bg03 {
  background: linear-gradient(#ff7e22, #ff7e22) padding-box, linear-gradient(45deg, #ff5613, #ffd653) border-box;
}
#top-career .career-list-sp-bg04 {
  background: linear-gradient(#ff3413, #ff3413) padding-box, linear-gradient(45deg, #ff5613, #ffd653) border-box;
}
#top-career .career-list-ttl04 {
  max-width: 244px;
}
#top-career .career-list-txt {
  min-height: 1px;
}
#top-career .career-list-txt04 {
  color: #fff;
}
#top-career .career-list-box {
  margin: 30px auto 0;
  padding: 0;
}
#top-career .career-list-box dt {
  font-size: 1.8rem;
}

/* top-salary  SP
------------------------------------ */
#top-salary .salary-ttl {
  justify-content: center;
}
#top-salary .salary-ttl-ja {
  margin-left: 15px;
}
#top-salary .salary-list {
  display: block;
}
#top-salary .salary-list-item {
  width: 80%;
  padding-top: 133px;
}
#top-salary .salary-list-item:nth-of-type(n+2) {
  margin: 30px auto 0;
}
#top-salary .salary-list-item:last-of-type {
  margin-top: 40px;
  margin-right: 0;
}
#top-salary .salary-list-ttl {
  left: 11px;
}
#top-salary .salary-list-ttl-lg {
  top: -27px;
}
#top-salary .salary-list-ttl img {
  height: 129px;
}
#top-salary .salary-list-price {
  font-size: 1.8rem;
}
#top-salary .salary-list-price .lg {
  font-size: 2.7rem;
}

/* top-person  SP
------------------------------------ */
#top-person .person-bg {
  background-size: 45px;
}
#top-person .person-img {
  width: 323px;
  margin: 0;
  position: absolute;
  top: 115px;
  bottom: auto;
  right: -76px;
}
#top-person .person-list {
  margin-top: 100px;
}
#top-person .person-list-item {
  width: 95%;
  border-width: 4px;
  padding: 9px 10px 9px 35px;
}
#top-person .person-list-item:nth-of-type(n+2) {
  margin-top: 40px;
}
#top-person .person-list-item:nth-of-type(2n) {
  margin-left: 20px;
}
#top-person .person-list-item img {
  height: 70px;
  top: -45px;
  left: -17px;
}
#top-person .person-list-txt {
  line-height: 1.6;
  font-size: 1.8rem;
}

/* top-job  SP
------------------------------------ */
#top-job .job-ttl-en img {
  height: 22px;
}
#top-job .job-list {
  margin-top: 20px;
  padding: 25px 15px;
}
#top-job .job-list-table {
  margin-top: 5px;
}

/* top-flow  SP
------------------------------------ */
#top-flow .flow-chara {
  width: 66%;
  margin: 15px auto 0;
  position: relative;
}
#top-flow .flow-list {
  margin: -35px auto 0;
}
#top-flow .flow-list-box::before {
  top: 14px;
  left: 14px;
}
#top-flow .flow-list-ttl {
  margin-left: -11px;
}
#top-flow .flow-list-ttl-step img {
  height: 70px;
}
#top-flow .flow-list-ttl-ja {
  width: 226px;
  height: 40px;
  padding: 0 23px;
  line-height: 40px;
}

/* top-entry  SP
------------------------------------ */
#top-entry .entry-box {
  padding: 20px 15px;
}
#top-entry .entry-tel-link {
  padding-left: 24px;
}
#top-entry .entry-tel-note {
  margin-top: 8px;
}

/* top-message  SP
------------------------------------ */
#top-message .message-inner {
  padding-bottom: 55%;
}
#top-message .message-chara01 {
  width: 49%;
  left: 20%;
  z-index: 5;
}
#top-message .message-chara02 {
  width: 55%;
  left: -48px;
  z-index: 6;
}
#top-message .message-chara03 {
  width: 36%;
  right: 15px;
  z-index: 7;
}
#top-message .message-txt-box {
  background: #fff;
  border: 2px solid #000000;
  padding: 15px;
}
#top-message .message-txt-box::before {
  content: none;
  width: 170%;
  height: 170%;
  margin: auto;
  background-size: 100% 100%;
  top: -25%;
  left: -32%;
}
#top-message .message-catch {
  width: 100%;
  margin: 50px auto 0;
}
#top-message .message-catch::before {
  content: "";
  width: 130%;
  height: 300%;
  background: url(../img/top/message-fuki.png) no-repeat center/100% 100%;
  position: absolute;
  left: -15%;
  top: -66%;
}
#top-message .com-txt .lg {
  font-size: 1.8rem;
}

/* top-news  SP
------------------------------------ */
#top-news .news-left {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
#top-news .news-btn {
  width: 166px;
  padding: 8px 0;
  font-size: 1.4rem;
}
#top-news .news-list {
  margin: 30px auto 0;
}
#top-news .news-list-link {
  padding: 15px;
  border-width: 3px;
}
#top-news .news-list-time {
  font-size: 1.8rem;
}
#top-news .news-list-ttl {
  font-size: 1.6rem;
}
#top-news .news-list-tag-txt {
  font-size: 1.3rem;
}

/* top-company  SP
------------------------------------ */
#top-company .company-box {
  padding: 15px 10px;
}

/* =========================================

sub layout  SP

========================================= */
/* work  SP
------------------------------------ */
#work .work-list {
  margin-top: 25px;
}
#work .work-list-item:nth-of-type(n+2) {
  margin-top: 40px;
}
#work .work-list-img {
  margin: 15px auto 0;
  position: static;
}
#work .work-list-con {
  margin-top: 20px;
}
#work .work-list-btn {
  margin: 25px auto 0;
}
#work .job-ttl-en img {
  height: 24px;
}
#work .job-box {
  height: auto;
  padding: 60% 15px 15px;
}
#work .job-box-img {
  width: 90%;
  margin: auto;
  top: -60px;
  left: 0;
  right: 0;
}
#work .job-box-ttl {
  padding: 5px 10px;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.5;
}
#work .job-box-ttl-sm {
  display: inline-block;
  line-height: 1;
}
#work .job-box-ttl-num {
  width: 63px;
  height: 44px;
  padding: 11px 0 0 10px;
  text-align: left;
  font-size: 2.5rem;
  top: -39px;
}

/* flow  SP
------------------------------------ */
#flow .flow-inner {
  padding-bottom: 0;
}
#flow .flow-ttl-fuki {
  position: static;
  text-align: left;
}
#flow .flow-ttl-fuki img {
  height: 108px;
}
#flow .flow-list::before {
  margin: auto;
  left: 0;
  right: 0;
}
#flow .flow-list-item {
  flex-direction: column;
  align-items: center;
}
#flow .flow-list-time {
  width: 100%;
  padding: 15px 0;
  font-size: 2rem;
}
#flow .flow-list-contents {
  margin: 20px auto 0;
}
#flow .flow-list-box {
  padding: 15px;
  flex-direction: column-reverse;
  align-items: center;
}
#flow .flow-list-img {
  margin: 0 auto 10px;
}
#flow .flow-list-detail {
  margin: 0 auto 0;
}
#flow .flow-list-txt {
  margin-top: 10px;
}
#flow .flow-chara {
  display: flex;
  margin: 25px auto 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
}
#flow .flow-chara-fuki {
  position: static;
}
#flow .flow02 {
  background: #c5ebff;
}

/* news  SP
------------------------------------ */
#news .news-post-flx {
  margin-top: 15px;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
#news .news-post-tag {
  margin-top: 5px;
}
#news .news-post-tag li {
  margin: 0 0 10px 10px;
}
#news .news-post-tag-txt {
  margin: 0;
}
#news .com-news {
  max-width: 380px;
}
#news .com-news-link {
  flex-direction: column;
  align-items: center;
}
#news .com-news-img {
  width: 80%;
  padding-top: 48%;
}
#news .com-news-con {
  margin: auto;
  padding: 15px 0 0;
}
#news .com-news-txt-index {
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
}/*# sourceMappingURL=style_sp.css.map */