@charset "utf-8";

:root {
  --color-font: #363636;
  --color-cta: #3BAF58;
  --color-main: #E3332A;
  --color-accent: #FFD600;
  --color-bg: #F4F1EA;
  --color-hover: #FFEE95;
  --color-light-gray:#F0F0F0;
  --color-light-gray2:#F5F5F5;
  --color-light-gray3:#EDEDED;
  --color-light-beige:#F9F8F5;
  --width-img-max: 480px;
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

input,
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  color: var(--color-font);
  font-weight: 500;
}
a {
  color: var(--color-font);
}


h1,h2,h3,h4 {
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}


img {
  height: auto;
}

@media all and (min-width: 1080px) {

  a:where(:hover,:focus),
  button:where(:hover,:focus) {
    opacity: 0.7;
  }
}


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

	layout

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

.l-wrapper {
  background: #fff;
  padding-top: 0;
}

.l-main {
  width: 100%;
  margin-top: 80px;
  background:none;
}

.l-section {
  width: 100%;
}

.l-section-inner {
  width: 1080px;
  margin: 0 auto;
  padding: 0;
  clear: both;
  position: relative;
}
.l-section-inner.page-inner {
  padding: min(7%,76px) 40px min(8.4%,84px);
}

.l-section-inner.page-inner-inquiry {
  padding: 8px 0 128px;
}
/*webフォントが入ってないページがあるためheader,footerは従来のまま*/
.l-header,.l-footer {
  font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic ProN, 'ヒラギノ角ゴ ProN W3',
  'Helvetica Neue', Arial, 'メイリオ', Meiryo, YuGothic, sans-serif;
}

@media all and (max-width: 1080px) {
  .l-section-inner {
    width: 100%;
    margin: 0 auto;
  }

  .l-section-inner.page-inner {
    padding: 7% 16px 10.5%;
  }


  .l-main {
    margin-top: 45px;
  }
}/*media*/


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

	module

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


.ttl-large {
  margin-bottom: 0.9em;
  font-size: clamp(28px,3.4vw,34px);
  font-weight:700;
  text-align: center;
  line-height: 1.5;
}

.ttl-large > div:not(.ttl-large-sub,.ttl-baloon-wrap){
  margin: 0 0 0.3em;
  word-break: keep-all;
}

.ttl-large-sub {
  color: var(--color-main);
  font-size: 0.7em;
  font-weight: 700;
  text-align: center;
}

.ttl-large-sub-smaller {
  margin-top: 0.5em;
  color: var(--color-font);
  font-size: 0.58em;
  text-align: center;
}


.ttl-medium {
  margin-bottom: 5%;
  font-size: clamp(22px,2.6vw,26px);
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  line-height: 2;
}

.ttl-medium-desc {
  font-size: 0.75em;
}

.ttl-baloon-wrap {
  margin-bottom: 20px;
  text-align: center;
}

.ttl-baloon {
  min-width:240px;
  display: inline-block;
  position: relative;
  padding: 8px 1em;
  background: var(--color-main);
  color: #fff;
  border-radius: 100px;
  font-size: clamp(20px,2.4vw,24px);
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}

.ttl-baloon__num {
  min-width: 4em;
  font-size: clamp(18px,3.4vw,34px);
  line-height: 1;
}

.ttl-baloon::after {
  content: '';
  display: block;
  border: 30px solid transparent;
  border-width: 30px 10px;
  border-top-color: var(--color-main);
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
}

@media all and (max-width: 768px) {
  .ttl-large {
    margin-bottom: 0.7em;
    font-size: min(5vw,30px);
    text-align: left;
  }
  .ttl-large-sub,
  .ttl-large-sub-smaller {
    font-size: 3.9vw;
    text-align: left;
  }
  .ttl-medium {
    font-size: min(5vw,22px);
  }
  .ttl-baloon-wrap {
    margin-bottom: 16px;
   text-align: left;
  }
  .ttl-baloon {
    min-width: 155px;
    font-size: min(3.8vw,18px);
  }
  .ttl-baloon::after {
    border-width: 16px 5px;
    position: absolute;
    bottom: -30px;
    /* left: 20%; */
  }
  .ttl-baloon__num {
    min-width: 4em;
    font-size: clamp(18px,3.4vw,34px);
    line-height: 1;
  }

  /*pcのとき吹き出しでspのとき角丸になる*/
  .ttl-baloon-square-wrap {
    width: 100%;
    margin-bottom: 5.5%;
    display: flex;
    justify-content: flex-start;
    flex-flow: row nowrap;
    gap: 16px;
  }

  .ttl-baloon-square-wrap .ttl-baloon-wrap {
    margin-bottom: 0;
  }
  .ttl-baloon-square-wrap .ttl-baloon {
    height: 50px;
    padding: 0.7em 0.5em;
    min-width: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    font-size: 18px;
    border-radius: 14px;
  }

  .ttl-baloon-square-wrap .ttl-baloon::after {
    display: none;
  }

  .ttl-baloon-square-wrap .ttl-medium {
    margin-bottom: 0;
    line-height: 1.55;
  }
}/*media*/

/*ボタンwrap*/
.btn-group {
  gap: 36px;
}

/*デフォルトのボタン*/
.btn-default {
  width: calc(100% - 6px);
  max-width: 440px;
  height: 76px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border-radius: 100px;
  background: var(--color-main);
  border: 3px solid var(--color-main);
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}

.btn-default:where(:hover,:focus) {
  opacity: 1;
  background: #fff;
  border: 3px solid var(--color-main);
  color: var(--color-main);
}

.btn-default:where(:hover,:focus).btn-arrow::after  {
  background-image: url(../svg/icon_arrows_2_e3332a.svg);
}

.btn-group > a, .btn-group > button {
  margin-left: 0;
  margin-right: 0;
}

/**/


.btn-default__icon span {
  position: relative;
}

.btn-default__icon span.icon-before::before,
.btn-default__icon span.icon-after::after {
  content: '';
  aspect-ratio: 1/1;
  width: clamp(28px,3vw,36px);
  height: auto;
  background: url(../svg/icon_dl_363636.svg) left center / 100% auto no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform:translate(110%,-50%);
}

.btn-default__icon span.icon-before{
  margin-right: clamp(-28px,-3vw,-36px)
}
.btn-default__icon span.icon-after{
  margin-left: clamp(-28px,-3vw,-36px)
}

.btn-default__icon span.icon-before::before {
  left: 0;
  right: auto;
  transform:translate(-130%,-50%);
}

/*資料ダウンロード(無料)ボタン*/
.btn-default__document {
  border: 3px solid var(--color-font);
  background: #fff;
  color: var(--color-font);
}

.btn-default__document.btn-default__icon span::before {
  background: url(../svg/icon_note_363636.svg) left center / 100% auto no-repeat;
}

.btn-default__document.btn-arrow::after,
.btn-default__report.btn-arrow::after  {
  background-image: url(../svg/icon_arrows_2_363636.svg);
}


.btn-default__document:where(:hover,:focus) {
  background-color: var(--color-hover);
}


/*ニュースや調査レポートのボタン*/
.btn-default__report {
  border-color: var(--color-font);
  background: #fff;
  color: var(--color-font);
}

.btn-default__report span.icon-before::before {
  background-image: url(../svg/icon_report_363636.svg);
  right: 0;
}

.btn-default__report:where(:hover,:focus) {
  background-color: var(--color-hover);
}

/*無料で相談ボタン*/

.btn-default__contact {
  border-color: var(--color-cta);
  background: var(--color-cta);
  color: #fff;
}

.btn-default__contact span.icon-before::before {
  background-image: url(../svg/icon_mail_fff.svg);
  right: 0;
}

.btn-default__contact:where(:hover,:focus) {
  border-color: var(--color-cta);
  background-color: #fff;
  color: var(--color-cta);
}

.btn-default__contact:where(:hover,:focus) span.icon-before::before{
  background-image: url(../svg/icon_mail_3baf58.svg);
}

.btn-default__contact.btn-arrow:where(:hover,:focus)::after {
  background-image: url(../svg/icon_arrows_2_3baf58.svg);
}

/**/

.btn-arrow {
  position: relative;
  cursor: pointer;
}
.btn-arrow::after {
  display: block;
  content: '';
  width: 16px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: url(../svg/icon_arrows_2_fff.svg) center center / 100% auto no-repeat;
}

.btn-small {
  padding: 8px 40px;
  display: inline-flex;
  color: #fff;
  font-size: 14px;
  background: var(--color-font);
  border-radius: 100px;
  line-height: 1;
  position: relative;
}

.btn-small.btn-arrow::after {
  width: 6px;
  height: 11px;
  right: 8px;
}

.page-inner .btn-group:last-of-type {
  margin-top: min(5%,50px);
}

.btn-group a + *, .btn-group button + * {
  margin-top: 0;
}
/* @media all and (max-width: 1080px) {



} */

@media all and (max-width: 768px) {
  .btn-group {
    gap: min(4vw,24px);
  }
  .btn-default {
    height: 54px;
    padding: 0 32px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(16px, 3.3vw, 24px);
  }
  .btn-arrow::after {
    width: 11px;
    height: 19px;
    right: 20px;
  }
  .mv-cta-btn .btn-arrow::after {
    display: none;
  }
}

/*グリッドの枠
================================*/

/*PC3 SP2の枠*/

.grid-list {
  width: 100%;
  display: grid;
}

.grid-list__3_2 {
  grid-template-columns: repeat(3,1fr);
  gap: 35px 8vw;
}

.grid-list-item {
  width: 100%;
  padding: 0 0;
}

.grid-list-item figure img {
  width: 100%;
  margin-bottom: 2em;
}

.grid-content {
  color: var(--color-main);
  font-weight: 700;
  font-size: min(1.6vw,18px);
  text-align: center;
}

.grid-content h3 {
  font-weight: 700;
  font-size: min(1.6vw,18px)
}

.grid-content .text-smaller {
  width: 100%;
  color: var(--color-font);
  font-weight: 500;
}


@media all and (min-width: 1081px), print {
  .grid-list__3_2 {
    gap: 35px 143px;
  }
}/*media*/


@media all and (max-width: 768px) {
  .grid-list__3_2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-content h3 {
    font-size: 18px;
  }
}/*media*/



/*全幅と半分幅が同居しているリスト
================================*/

.flex-list-all-half {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}

.flex-list-all-half-item {
  width: 100%;
  border-top: 3px solid var(--color-light-gray3);
}

.flex-list-all-half-item:first-child {
  border-top: none;
}


.flex-list-all-half-item-inner {
  width: 100%;
  padding: min(4.6vw,50px) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row nowrap;
}

.flex-list-all-half-item .ttl-medium{
  text-align: left;
}

.flex-list-all-half-item.flex-list-all-half-item__half {
  width: 50%;
}

.flex-list-all-half-item__half {
  display: block;
}

.flex-list-all-half img {
  width: 100%;
}

.cont-text{
  width: 44.5%;
}

.cont-img{
  width: 50%;
}

.flex-list-all-half-item__half .cont-text {
  width: 100%;
  padding-right: 0;
}

.flex-list-all-half-item__half figure {
  margin: 40px auto 0;
  max-width: var(--width-img-max);
}

.flex-list-all-half-item__half.left .flex-list-all-half-item-inner {
  padding-right: 34px;
}
.flex-list-all-half-item__half.right .flex-list-all-half-item-inner {
  padding-left: 34px;
  border-left: 3px solid var(--color-light-gray3);
}


/*特徴・魅力のパーツ*/

@media all and (min-width: 769px),print {
  .flex-list-all-half__border-box .flex-list-all-half-item {
    border: 3px solid var(--color-light-gray3);
  }

  .flex-list-all-half__border-box .flex-list-all-half-item:first-child {
    border-top: 3px solid var(--color-light-gray3);
  }

  .flex-list-all-half__border-box .flex-list-all-half-item + li {
    margin-top: min(8%,80px);
  }

  .flex-list-all-half__border-box .flex-list-all-half-item-inner {
    padding:0 min(4%,40px) min(7%,70px);
  }

  .flex-list-all-half__border-box .flex-list-all-half-item:nth-child(odd) .flex-list-all-half-item-inner {
    flex-flow: row-reverse nowrap;
  }

  .flex-list-all-half__border-box .ttl-baloon-wrap {
    margin-bottom: 0;
    transform: translateY(-50%);
  }

  .flex-list-all-half__border-box .ttl-medium {
    margin-bottom: 4%;
  }

  .flex-list-all-half__border-box .cont-img {
    width: 51%;
    padding-top: min(7%,70px);
  }

  .flex-list-all-half__border-box .cont-text {
    width: 38%;
    padding-right: 0;
  }
}/*media*/

@media all and (max-width: 768px) {
  .flex-list-all-half-item-inner {
    display: block;
    padding: 9.7% 0;
  }
  .flex-list-all-half-item.flex-list-all-half-item__half {
    width: 100%;
  }
  .flex-list-all-half-item__half {
    border-top-width: 3px;
  }

  .flex-list-all-half-item-inner .cont-text {
    width: 100%;
    padding-right: 0;
  }
  .flex-list-all-half-item-inner .cont-img {
    width: 100%;
    max-width: var(--width-img-max);
    margin: 0 auto 1em;
  }


  /**/
  .flex-list-all-half__border-box .flex-list-all-half-item:first-child .flex-list-all-half-item-inner{
    padding-top: 0;
  }
  .flex-list-all-half__border-box .cont-img {
    margin-top: 7%;
  }

  .flex-list-all-half__border-box + .btn-group {
    margin-top: 0;
  }

  .flex-list-all-half-item:first-child .flex-list-all-half-item-inner {
    padding-top: 0;
  }
  .flex-list-all-half-item__half.left .flex-list-all-half-item-inner {
    padding-right: 0;
  }
  .flex-list-all-half-item__half.right .flex-list-all-half-item-inner {
    padding-left: 0;
    border-left: none;
  }

}/*media*/

/*流れ
================================*/
.section-flow {
  background: var(--color-light-beige);
}
.flow {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  gap:25px;
}

.flow-item {
  width: 100%;
  position: relative;
}

.flow-item::before{
  content: '';
  width: 40px;
  height: 52px;
  display: block;
  background: url(../svg/icon_triangle_round.svg) center center / 100% auto no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform:translate(60%,-50%) rotate(-90deg);
  z-index: 1;
}
.flow-item:last-child::before{
  content: none;
}
.flow-content {
  width: 100%;
  height: 100%;
  padding: min(2vw,22px) min(1.6vw,16px);
  overflow: hidden;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.flow-num {
  margin-bottom: 0.1em;
  font-family: 'Impact', "Noto Sans JP",sans-serif;
  color: var(--color-font);
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.13;
}

.flow-text {
  width: 100%;
  height: 56px;
  color: var(--color-font);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.flow-img {
  width: 100%;
  display: block;
  margin: min(8%, 8px) auto 0;
}


@media all and (max-width: 768px) {
  .flow {
    flex-flow: row wrap;
    gap: 14px;
  }
  .flow-item {
    width: calc((100% - (14px * 2)) / 3);
  }
  .flow-item:nth-child(3)::before{
    content: none;
  }
  .flow-item:nth-child(4)::after{
    content: '';
    width: 26px;
    height: 36px;
    display: block;
    background: url(../svg/icon_triangle_round.svg) center center / 100% auto no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform:translate(-110%,-50%) rotate(-90deg);
    z-index: 1;
  }
  .flow-item::before{
    width: 26px;
    height: 36px;
  }
  .flow-content {
    padding: clamp(10px,2.6vw,20px);
  }
  .flow-num {
    font-size: clamp(20px,5vw,30px);
  }
  .flow-text {
    height: auto;
    min-height: 42px;
    font-size: clamp(12px,3.5vw,18px);
    font-feature-settings: "palt";
  }
  .flow-img {
    margin-top: 13%;
  }
}/*media*/


/*バナー
================================*/
.bnr-link {
  display: inline-block;
  max-width: 438px;
  width: 100%;
  border:2px solid var(--color-font);
}

.bnr-link img {
  width: 100%;
  height: auto;
  display: block;
}


/*タグ
================================*/

.tag {
  min-width: 140px;
  display: inline-block;
  padding: 0.5em 1em;
  background: var(--color-font);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  text-align: center;
}

.tag-semi-round {
  display: inline-block;
  min-width: 120px;
  padding: 0 0;
  border-radius: 7px;
  border: 3px solid var(--color-main);
  background: var(--color-main);
  line-height: 26px;
  color: #fff;
  text-align: center;
  font-size: 22px;
}

@media all and (max-width:768px) {
  .tag {
    min-width: 120px;
    font-size: 12px;
  }
  .tag-semi-round {
    min-width: 80px;
    font-size: 16px;
  }
}/*media*/


/*テキスト
================================*/


.text-intro {
  width: 100%;
  margin-bottom: 5%;
  font-size: clamp(14px,2.8vw,20px);
  line-height: 1.9;
  text-align: center;
  word-break: keep-all;/*wbrがあるのが前提*/
}

.text {
  font-size: clamp(14px,3.5vw,16px);
  line-height: 1.8;
}

.text-smaller {
  font-size: clamp(12px,2.4vw,14px);
  line-height: 1.8;
}

.text-larger {
  font-size: clamp(16px,2.6vw,20px);
  line-height: 1.8;
}

@media all and (min-width: 1080px), print {
}/*media*/

@media all and (max-width:768px) {
  .text-intro {
    margin-bottom: 8%;
    text-align: left;
  }
}/*media*/


@media all and (max-width: 1080px) {

}/*media*/

/*
	チェックのアイコン
================================*/
.icon-check {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
}

.icon-check img {
  display: block;
}


/*
	カルーセルとカード型リスト
================================*/
.cardlist {
  width: 100%;
  padding: 0 0 0;
}
.swiper-button-prev, 
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-next, 
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next, 
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  z-index: 10;
  cursor: pointer;

  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.swiper-button-next:where(:hover,:focus), 
.swiper-button-prev:where(:hover,:focus) {
  opacity: 0.8;
}
.swiper-button-prev::before,.swiper-button-next::before  {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  border: 4px solid var(--color-font);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.swiper-button-prev::after, 
.swiper-rtl .swiper-button-next::after {
  content: '';
  display: block;
}
.swiper-button-next::after, 
.swiper-rtl .swiper-button-prev::after {
  content: '';
  display: block;
}
.swiper-button-next::after, 
.swiper-button-prev::after {
  width: 14px;
  height: 23px;
  background: url(../svg/icon_arrows_2_363636.svg) center center / 100% auto no-repeat;
  /* -webkit-transform: rotate(45deg);
  transform: rotate(45deg); */
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.swiper-button-prev::after {
  transform: translate(-50%, -50%) scale(-1,1);
}
.cardlist .swiper-slide {
  /*max-width: 344px;*/
  padding: 8px 16px;
}

.cardlist .post-item {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  background: #FFFFFF;
  color: var(--color-font);
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 24%);
}
.cardlist .post-item::after {
  content: "";
  display: block;
  width:26px;
  height:26px;
  position: absolute;
  right: 15px;
  bottom: 20px;
  background: url(../svg/icon_circle_arrow_363636.svg) left center / 100% auto no-repeat;
}
.cardlist.swiper .post-item {
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 24%);
}
.cardlist.column .post-item {
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 24%);
}
.cardlist .card-thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
  /* border-bottom: 1px solid #E8E8E5; */
  position: relative;
}
.cardlist .card-thumbnail img {
  transition: 0.3s transform 0s ease-in;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}
.card-thumbnail figcaption div{
  /* display: inline; */
  display: inline-block;
  line-height: 24px;
  background: var(--color-main);
  padding: 0 0.5em;
  color: #fff;
}
.cardlist .post-item:where(:hover,:focus) {
  opacity: 1;
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 32%);
  position: relative;
}
.cardlist .post-item:where(:hover,:focus) img {
  transform: scale(1.08);
}
.cardlist .post-item:where(:hover,:focus)::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFBA35;
  opacity: 0.2;
  z-index: 1;
}
.cardlist .post-item__nolink:where(:hover,:focus) {
  pointer-events: none;
}
.cardlist .post-item__nolink:where(:hover,:focus) img {
  transform: scale(1);
}
.cardlist .post-item__nolink:where(:hover,:focus)::before {
  content: none;
}
.cardlist .post-title-wrap {
  width: 100%;
  padding: min(8%,20px);
}
.cardlist .post-category-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8%;
}
.cardlist .category {
  display: inline-block;
  font-size: 1.4rem;
  border-radius: 100px;
  background-color: #FFFFFF;
  border: 2px solid var(--color-font);
  color: var(--color-font);
  padding: 6px 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}
.cardlist .post-category-wrap .date {
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  font-display: swap;
}
.cardlist .post-title-wrap .title {
  line-height: 1.5;
  font-size: 1.6rem;
  height: 7.2rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media all and (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev{
    padding: 9px;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    width:calc(100% - 18px);
    height:calc(100% - 18px);
  }
  .swiper-button-next::after {
    transform: translate(-50%, -50%) scale(0.7);
  }
  .swiper-button-prev::after {
    transform: translate(-50%, -50%) scale(-1,0.7);
  }
}

/*スライダーと同じ見た目でスライダーではない一覧*/
.cardlist .cardlist-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  gap: min(3.33vw,36px);
}

.cardlist-inner-item {
  width: calc(100% / 3);
  padding: 8px 8px;
}

.cardlist-inner .post-item {
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 24%);
}

.cardlist-inner .post-item::after {
  content: none;
}

.cardlist-inner .card-thumbnail {
  height: 200px;
  border-radius: 0;
}

.cardlist-inner .card-thumbnail img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.cardlist-inner .card-thumbnail__padding {
  height: auto;
  padding: 0 min(20%,30px) min(8%,30px);
}

.card-thumbnail figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
}

.cardlist .cardlist-inner-item .title{
  padding: 9.5% 5%;
  height: auto;
  font-size: min(2vw,18px);
  line-height: 1.5;
}

.cardlist .cardlist-inner-item .title em{
  font-size: 1.4em;
}

.cardlist-inner-item .text-smaller{
  padding: 0 5% 8%;
}

.cardlist-inner-item .btn-small {
  margin: 0 8% 8% auto;
}
@media all and (max-width: 1080px) {
  .cardlist {
    padding: 0 0 5%;
  }
}
@media all and (max-width: 768px) {

  .cardlist .cardlist-inner {
    display: block;
    max-width: var(--width-img-max);
    margin-left: auto;
    margin-right: auto;
  }

  .cardlist-inner-item  {
    width: calc(100% + 16px);
    margin-bottom: 8%;
    margin-left: -8px;
    margin-right: -8px;
  }

  .cardlist-inner-item:last-child  {
    margin-bottom: 0;
  }

  .cardlist-inner-item .post-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column nowrap;
  }

  .cardlist-inner-item .post-item .title{
    width: 100%;
    padding: 20px;
    font-size: min(5vw,22px)
  }
  .cardlist-inner-item .post-item .text-smaller{
    padding: 20px 50px 20px 20px;
    position: relative;
  }
  .cardlist-inner-item .post-item .text-smaller::after{
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    top:50%;
    right: 15px;
    margin-top: -13px;
    background: url(../svg/icon_circle_arrow_363636.svg) left center / 100% auto no-repeat;
  }
  .cardlist-inner .btn-small{
    display: none;
  }
}

/*
	タイトルが吹き出しでborderの囲いがある
================================*/
.baloon-frame {
  margin-top: 10%;
  padding: 6% 4% 4%;
  border: 3px solid var(--color-light-gray3);
  position: relative;
}

.baloon-frame .ttl-medium {
  transform: translate(-50%,calc(-50% + 10px));
  position: absolute;
  top: 0;
  left: 50%;
}

.baloon-frame .ttl-baloon {
  min-width: 713px;
}


@media all and (max-width: 768px) {
  .baloon-frame {
    margin-top: 15%;
    padding: 20% 16px 8%;
  }

  .baloon-frame .ttl-baloon {
    min-width: auto;
  }

  .baloon-frame .ttl-baloon-wrap{
    text-align: center;
  }

}/*media*/



/*
	top,サービス,メーカーのMV部
================================*/

.l-section.mainvisual {
  height: 50vw;
  max-height: 569px;
  margin: 0 auto;
  background-image: url(../svg/mainvisual_bg.svg);
  background-color: var(--color-light-gray3);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.mainvisual .l-section-inner {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  /* height: 500px; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.mv-title-service {
  width: auto;
  height: clamp(30px,5.5vw,55px)
}

.mv-img-inner {
  width: calc((526 / 1000) * 100%);
}

@media all and (max-width:1080px) {
  .mainvisual .l-section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media all and (max-width:768px) {
  .l-section.mainvisual {
    width: 100%;
    max-height: none;
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .mainvisual .l-section-inner {
    display: block;
    max-height: none;
  }
  .mv-img-inner {
    width: 100%;
  }

}/*media*/
/*
	mv-text-inner
================================*/
.mv-text-inner {
  /* text-align: center; */
  max-width: 690px;
  width: calc((690 / 1000) * 100%);
  text-align: left;
}

.mv-title-prefix {
  width: fit-content;
  padding: 10px 16px;
  margin-bottom: 2.5%;
  font-size: min(2.6vw,28px);
  color: #fff;
  background: var(--color-main);
}

.mv-title-prefix span{
  font-weight: 500;
  font-size: 60%;
}

.mv-title-wrap {
  margin: 0 0 3%;
}

/* .mv-title-logo {
  width: calc((226 / 690) * 100%);
} */

.mv-title-main {
  font-size: min(5vw,52px);
  font-weight: 900;
  color: var(--color-font);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.mv-title-sub {
  font-size: min(4.4vw,44px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.mv-title-main span,
.mv-title-sub span {
  font-size: 0.88em;
}

.mv-text {
  font-size: min(1.8vw,20px);
  line-height: 1.5;
}

.mv-text span {
  font-size: 0.8em;
}

@media all and (max-width:768px) {
  .mv-text-inner {
    width: 100%;
    margin: 0 auto;
  }
  .mv-title-prefix {
    margin-left:auto;
    margin-right:auto;
    font-size: max(2.6vw,26px);
  }
  .mv-title-wrap {
    max-width: var(--width-img-max);
    margin: 0 auto;
  }
  .mv-text-inner .mv-text-no1 {
    display: block;
    margin: 0 auto 4%;
  }
  .mv-title-catch-wrap {
    width: fit-content;
    margin: 0 auto;
  }
  .mv-title-sub {
    width: fit-content;
    margin-top: 14px;
    font-size: clamp(22px,6vw,28px);
    margin-left:auto;
    margin-right:auto;
  }
  .mv-title-sub span {
    font-size: 82%;
  }
  .mv-title-main {
    width: fit-content;
    font-size: max(32px,6vw);
    text-align: center;
    margin-left:auto;
    margin-right:auto;
  }
  .mv-text {
    margin-top: 2%;
    font-size: clamp(12px,4vw,18px);
    text-align: center;
  }
}/*media*/
/*
	mv-img-inner
================================*/
.mv-img-inner {
  text-align: center;
  width: 54%;
  position: absolute;
  right: -16%;
  bottom: 0;
}
.mv-img-inner img {
  width: 100%;
  height: auto;
}
.mv-notice {
  margin-top: 2%;
  font-size: 1.2rem;
  text-align: left;
  color: var(--color-font);
}
@media all and (max-width:768px) {
  .mv-img-inner {
    width: 100%;
    height: auto;
    position: relative;
    right: auto;
    top: auto;
  }
  .mv-img-inner img {
    width: 100%;
    height: auto;
  }
  .mv-notice {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding:  0;
    font-size: 1rem;
    text-align: center;
  }
}/*media*/
/*
	mv-cta-btn
================================*/
.mv-cta-btn {

  max-width: 500px;
  width: 100%;
  margin: 3% 0 0 0;
}

.mv-cta-btn .btn-default {
}
.mv-cta-btn .btn-default {
  height: 60px;
  background-color: var(--color-accent);
  color: var(--color-font);
  border-color: var(--color-font);
}

.mv-cta-btn .btn-default::after {
  background-image: none;
}

.mv-cta-btn .btn-default:where(:hover,:focus) {
  background: var(--color-hover);
}

.mv-cta-btn .btn-default.btn-default__dl {
  background-color: #fff;
  color: var(--color-font);
}
.mv-cta-btn .btn-default.btn-default__dl:hover {
  background-color: var(--color-hover);
}
.mv-cta-btn .btn-default:last-child {
  margin-top: min(2vw,28px);
}

@media all and (max-width: 768px) {
  .mv-cta-btn {
    max-width: 500px;
    width: 100%;
    height: auto;
    position: relative;
    justify-content: space-between;
    gap: 16px;
    margin: 3% auto 0;
    top: 0;
    padding: 0 0;
  }
  .mv-cta-btn .btn-default {
    height: 54px;
  }

  .mv-cta-btn .btn-default:last-child {
    margin-top: 16px;
  }

}/*media*/

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

	top-company

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

/*
	企業ロゴ
================================*/
.l-section.top-company {
  background-color: #FFFFFF;
  padding-top: 28px;
  padding-bottom: 28px;
}

.l-section.top-company .ttl-medium{
  margin-bottom: 28px;
  font-size: min(4vw,20px);
  line-height: 1.1;
}

.top-company-list .swiper.swiper-container .swiper-wrapper {
  transition-timing-function: linear;
}
.top-company-list .swiper.swiper-container .swiper-wrapper .swiper-slide {
  height: 80px;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}
.top-company-list .swiper.swiper-container .swiper-wrapper .swiper-slide img {
  width: auto;
  max-width: none;
}
/*ロゴがぼける&重なるので調整*/
.logo-suntory {
  max-height: 26px;
}
.logo-shiseido {
  max-height: 26px;
}
.logo-sandrag {
  max-height: 30px;
}
.logo-asbee {
  max-height: 34px;
}
.logo-saraya {
  max-height: 30px;
}
/**/
@media all and (max-width: 1080px) {
  .top-company-list .swiper.swiper-container .swiper-wrapper .swiper-slide {
    height: 35px;
  }
  .top-company-list .swiper.swiper-container .swiper-wrapper .swiper-slide img {
    height: 100%;
  }
}
@media all and (max-width: 768px) {
}
@media all and (max-width: 480px) {
}


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

	area-cta

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

.l-section.area-cta {
  background: var(--color-bg);
  position: relative;
}

.l-section.area-cta .btn-group {
  margin-top: 50px;
}

.area-cta .ttl-large .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-cta .ttl-large .icon img {
  width: 48px;
  margin-right: 0.2em;
}

.area-cta .text-intro {
  text-align: center;
}
@media all and (max-width: 1080px) {
 
}
@media all and (max-width: 768px) {
  .area-cta .ttl-large {
    text-align: center;
  }
  .area-cta .ttl-large .icon {
    flex-flow: column wrap;
  }
  
  .area-cta .ttl-large .icon img {
    height: 44px;
    margin-bottom: 8px;
    margin: 0 auto 8px;
  }
  .area-cta .ttl-large-sub-smaller {
    text-align: center;
  }
  .l-section.area-cta .btn-group  {
    margin-top: 6%;
  }
  .l-section.area-cta .btn-group a + * {
    margin-top: 0;
  }
}

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

	追従バナー

================================*/
.l-aside-bnr {
  width: 300px;
  position:fixed;
  left: 0;
  bottom:0;
  z-index: 100;
  animation-name: bnrActive;
  animation-duration: 0.7s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.l-aside-bnr.is-hide {
  animation-name: bnrHide;
  animation-duration: 0.3s;
}
.aside-bnr-close{
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-flow: row nowrap;
  cursor: pointer;
  color: var(--color-font);
}
.aside-bnr-close span{
  width: 25px;
  height: 25px;
  font-size: 20px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border: 1px solid var(--color-font);
  background: #fff;
}

.l-aside-bnr aside a{
  display: block;
}
.aside-bnr-img{
  width: 100%;
  height: auto;
  display: block;
}

@keyframes bnrActive {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bnrHide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@media all and (max-width:768px), print {
  .l-aside-bnr {
    width: 100%;
  }
  .aside-bnr-inner {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
}

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

	パンくず

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

.l-breadcrumbs {
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin: 0 auto 1%;
}
.l-section .breadcrumbs {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 8px 16px 0;
  color: var(--color-font);
  text-align: left;
}

.breadcrumbs li {
  position: relative;
  display: inline;
  padding: 0 5px 0 0;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.4;
}
.breadcrumbs li:last-child {
  padding: 0;
  display: inline-block;
}
.breadcrumbs li a {
  display: inline;
  font-size: 13px;
  line-height: 1.4;
  color: #077bd4;
  word-break: break-all;
}


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

	utility

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


em {
  color: var(--color-main);
  font-style: normal;
}
.u-font-weight-normal {
  font-weight: 500 !important;
}
.u-font-weight-bold {
  font-weight: 700 !important;
}
.u-font-weight-extrabold {
  font-weight: 900 !important;
}
.u-no-keepall {
  word-break: normal !important;
}


.u-align-left {
  text-align: left !important;
}
.u-align-right {
  text-align: right !important;
}
.u-align-center {
  text-align: center !important;
}

/*pcが真ん中でspが左寄せ*/
.u-align-center-left {
  text-align: center;
}
/**/
.u-pt0 {
  padding-top: 0 !important;
}
.u-pb0 {
  padding-bottom: 0 !important;
}
.u-mt0 {
  margin-top: 0 !important;
}
.u-mt05 {
  margin-top: 0.5em !important;
}
.u-mt10 {
  margin-top: 1em !important;
}
.u-mt20 {
  margin-top: 2em !important;
}
.u-mt30 {
  margin-top: 3em !important;
}
.u-mb0 {
  margin-bottom: 0 !important;
}
.u-mb05 {
  margin-bottom: 0.5em !important;
}
.u-mb10 {
  margin-bottom: 1em !important;
}
.u-mb20 {
  margin-bottom: 2em !important;
}
.u-mb30 {
  margin-bottom: 3em !important;
}


.u-bg-main {
  background-color: var(--color-main) !important;
}

.u-bg-font {
  background-color: var(--color-font) !important;
}

.u-bg-light-beige {
  background-color: var(--color-light-beige) !important;
}
.u-bg-light-gray {
  background-color: var(--color-light-gray) !important;
}

.u-bg-green {
  background-color: #00BB83 !important;
}
.u-bg-blue {
  background-color: #194FDC !important;
}
.u-bg-white {
  background-color: #fff !important;
}
/*吹き出し用*/
.u-bg-green::after {
  border-top-color: #00BB83;
}
.u-bg-blue::after {
  border-top-color: #194FDC;
}
/**/

.u-bg-white {
  background-color: #fff !important;
}

.u-cl-main {
  color: var(--color-main) !important;
}
.u-cl-font {
  color: var(--color-font) !important;
}
.u-cl-white {
  color: #fff !important;
}
.u-cl-yellow {
  color: #FAFF00 !important;
}


.u-border-main {
  border-color: var(--color-main) !important;
}

.u-border-font {
  border-color: var(--color-font) !important;
}

.u-border-light-beige {
  border-color: var(--color-light-beige) !important;
}
.u-border-light-gray {
  border-color: var(--color-light-gray) !important;
}

.u-is-md {
  display: none;
}
.u-is-pc {
  display: block;
}


@media all and (max-width: 768px) {
  .u-align-center-left {
    text-align: left;
  }
  .u-is-md {
    display: block;
  }
  .u-is-pc {
    display: none;
  }
}/*media*/



