@charset "UTF-8";
/* --

 top.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル


-- */
.company .rinen__wrap:after, .content__wrap .inner:after {
  content: "";
  display: table;
  clear: both;
}

/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(-1px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
/*-----------------------------------

	$content

-----------------------------------*/
.breadcrumbs {
  background: #f7f7f7;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8em 2%;
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  font-weight: 300;
}
@media screen and (max-width: 640px) {
  .breadcrumbs ul {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.breadcrumbs ul a {
  color: #666;
}
.breadcrumbs ul li:first-child a span {
  display: none;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: "/";
  padding: 0 1em;
}

.content__mv {
  width: 100%;
  height: 360px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.content__mv .inner {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .content__mv {
    height: 240px;
  }
}
@media screen and (max-width: 640px) {
  .content__mv {
    height: 180px;
  }
}
.company .content__mv {
  background-image: url("../images/company/contents-mv.jpg");
}
.item .content__mv {
  background-image: url("../images/item/contents-mv.jpg");
}
.flow .content__mv {
  background-image: url("../images/flow/contents-mv.jpg");
}
.content__title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content__title h2 {
  font-size: 36px;
  font-size: 3.6rem;
  color: #fff;
}
.content__title h2 span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fdf200;
  display: block;
}
@media screen and (max-width: 768px) {
  .content__title h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .content__title h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .content__title h2 span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.content__title-02 {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
}
.content__title-02 span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fdf200;
  display: block;
  padding-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .content__title-02 {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .content__title-02 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .content__title-02 span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.content__title-sub {
  background: #2eb3b3;
  font-size: 24px;
  font-size: 2.4rem;
  color: #fff;
  padding: 0.4em 1em 0.5em;
  border-radius: 6px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .content__title-sub {
    font-size: 20px;
    font-size: 2rem;
    padding: 0.3em 0.8em 0.4em;
  }
}
@media screen and (max-width: 640px) {
  .content__title-sub {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 0.6em;
  }
}
.content__wrap {
  padding: 6.25% 0;
}
.content__wrap .main {
  float: left;
  width: 72%;
}
.content__wrap .sidebar {
  float: right;
  width: 24%;
}
@media screen and (max-width: 768px) {
  .content__wrap .main,
.content__wrap .sidebar {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .content__wrap {
    padding: 10% 0;
  }
}
.content__page {
  padding: 6.25% 0;
}
@media screen and (max-width: 640px) {
  .content__page {
    padding: 10% 0;
  }
}

.cta {
  padding: 4.1% 0;
  background: #eaf7f7;
  text-align: center;
}
.cta h2 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
}
.cta h2 + p {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .cta h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .cta h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .cta h2 + p {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.cta__wrap {
  padding-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .cta__wrap {
    padding-top: 1em;
  }
}
.cta__unit {
  width: 31%;
  background: #fff;
  border-radius: 20px;
  padding: 2em 1em;
}
.cta__unit dt {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 0.8em;
}
.cta__unit dt img {
  width: 90%;
  max-width: 236px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .cta__unit:not(.top .cta__unit) {
    width: 100%;
  }
  .cta__unit:not(.top .cta__unit):not(:last-child) {
    margin-bottom: 10px;
  }
  .cta__unit:not(.top .cta__unit) dl {
    display: table;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .cta__unit:not(.top .cta__unit) dt, .cta__unit:not(.top .cta__unit) dd {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
  }
  .cta__unit:not(.top .cta__unit) dt {
    padding-bottom: 0;
  }
  .cta__unit:not(.top .cta__unit) dt img {
    width: 80%;
  }
  .top .cta__unit {
    width: 49%;
  }
}
@media screen and (max-width: 640px) {
  .cta__unit {
    width: 100%;
    padding: 1em 2%;
  }
  .cta__unit:first-child {
    margin-bottom: 10px;
  }
  .cta__unit:not(.top .cta__unit) dl {
    display: block;
    width: 100%;
  }
  .cta__unit:not(.top .cta__unit) dt, .cta__unit:not(.top .cta__unit) dd {
    display: block;
    width: 100%;
  }
  .cta__unit:not(.top .cta__unit) dt {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 0.4em;
  }
  .cta__unit:not(.top .cta__unit) dt img {
    max-width: 200px;
  }
  .top .cta__unit {
    width: 100%;
  }
}
.cta__tel {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
}
.cta__tel i {
  margin-right: 0.3em;
}
@media screen and (max-width: 768px) {
  .cta__tel {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.cta__mail {
  font-weight: 500;
}
.cta__mail a {
  background: #fdf200;
  border: 1px solid #fdf200;
  border-radius: 30px;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  line-height: 1;
  padding: 1em 0.4em;
}
.cta__mail a:hover {
  color: #353535;
  background: none;
  border-color: #353535;
}
.cta__mail img {
  width: 16px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.4em;
  margin-bottom: 0.1em;
}
.cta__line {
  font-weight: 500;
}
.cta__line a {
  background: #31ae36;
  border: 1px solid #31ae36;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  line-height: 1;
  padding: 1em 0.4em;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.cta__line a::after {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cta__line a:hover {
  color: #353535;
  background: none;
  border-color: #353535;
}
.cta__line img {
  width: 16px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.4em;
  margin-bottom: 0.1em;
}

.btn-flow {
  text-align: center;
  padding: 5% 0;
}
.item .btn-flow {
  padding-bottom: 5%;
}
.btn-flow img {
  width: 90%;
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*-----------------------------------

	$company

-----------------------------------*/
.company .rinen {
  background: #f7f7f7;
  padding: 6.25% 0;
  position: relative;
}
.company .rinen::after {
  content: "";
  display: block;
  width: 30px;
  border-top: 30px solid #f7f7f7;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 100%;
}
@media screen and (max-width: 640px) {
  .company .rinen::after {
    width: 15px;
    border-width: 15px;
  }
}
.company .rinen__wrap {
  width: 100%;
}
.company .rinen__unit.title {
  float: left;
  padding-right: 4%;
}
.company .rinen__unit.title h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.company .rinen__unit.text {
  padding-left: 4%;
  border-left: 1px solid #353535;
  overflow: hidden;
}
.company .rinen__unit.text li {
  font-size: 18px;
  font-size: 1.8rem;
}
.company .rinen__unit.text li:not(:last-child) {
  padding-bottom: 2.4em;
}
@media screen and (max-width: 1024px) {
  .company .rinen__unit.title h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .company .rinen__unit.text li {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .company .rinen__unit.text li:not(:last-child) {
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 640px) {
  .company .rinen__unit.title {
    float: none;
    text-align: center;
    padding: 0 0 1em;
  }
  .company .rinen__unit.title h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .company .rinen__unit.text {
    padding-left: 0;
    border-left: none;
    overflow: auto;
  }
  .company .rinen__unit.text ul {
    padding-left: 25px;
  }
  .company .rinen__unit.text li {
    font-size: 13px;
    font-size: 1.3rem;
    list-style: disc;
  }
  .company .rinen__unit.text li:not(:last-child) {
    padding-bottom: 0.5em;
  }
}
.company .outline {
  padding: 6.25% 0;
}
.company .outline .tbl-01 {
  margin-bottom: 4em;
}
@media screen and (max-width: 640px) {
  .company .outline .tbl-01 {
    margin-bottom: 2em;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.company .outline .list-bullet {
  font-size: 13px;
  font-size: 1.3rem;
}