/* ------------------------------
General Styles
--------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap');

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, Arial, Helvetica, sans-serif;
  color: #222222;
  font-size: 62.5%;
  scroll-padding-top: 70px;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  display: flex;
  flex-flow: column;
}

ul, ul li, ol, ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

select {
  -webkit-appearance: none;
  /* Chrome および Safari でデフォルトスタイルを解除 */
  -moz-appearance: none;
  /* Firefox でデフォルトスタイルを解除 */
}

/* ----------------------------
メディアクエリ
------------------------------ */
/*
SPファーストで記述

幅768px以下 スマホサイズ

@media screen and (min-width:768px)
幅769px以上

@media screen and (min-width:1024px)
幅1025px以上〜 PCサイズ-- */
.sp {
  display: block !important;
}

.tab {
  display: none !important;
}

.sp-tab {
  display: block !important;
}

.tab-pc {
  display: none !important;
}

.pc {
  display: none !important;
}

@media screen and (min-width:768px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: block !important;
  }

  .sp-tab {
    display: block !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

@media screen and (min-width:1024px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: none !important;
  }

  .sp-tab {
    display: none !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: block !important;
  }
}

/* ----------------------------
font
------------------------------ */
h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

p, a, ul li, ol li , dt, dd{
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
}

a {
  text-decoration: none;
  cursor: pointer;
  word-wrap: break-word;
}

/* ------------------------------
Transition elsements
------------------------------ */
a, button {
  -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.button:hover {
  cursor: pointer !important;
}

a:hover {
  opacity: 0.7;
  cursor: pointer !important;
}

/* ------------------------------
スクロールで表示
------------------------------ */
/* ふわっと */
.fadeIn-content {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ------------------------------
header
------------------------------ */
header{
position: fixed;
z-index: 100;
top: 16px;
left: 16px;
width: calc(100% - 32px);
max-width: 1000px;
background: #fff;
border-radius: 50px;
padding: 8px 16px;
margin: 0 auto;
box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.15);
}

.header-wrapper{
  display: grid;
  place-items: center;
  grid-template-columns:39px auto 24px;
  grid-template-areas:"logo inquiry menu";
  gap:16px;
}

.header-btn{
  grid-area: logo;
  justify-self: start;
}

.inquiry-btn{
  grid-area: inquiry;
  justify-self: end;
}

.inquiry-btn{
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(0, 187, 194), rgb(141, 215, 100));
  padding: 8px 24px;
  border-radius: 50px;
}

/* ---ハンバーガーメニュー--- */
.menu-btn{
  width: 27px;
  height: 23px;
  grid-area: menu;
  justify-self: end;
  z-index: 101;
  border: none;
  background: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.menu-btn span{
width: 27px;
height: 3px;
border-radius: 50px;
background: #132E2F;
position: absolute;
left: 0;
}

.menu-btn span:first-child{
  top: 3px;
}

.menu-btn span:nth-child(2n){
  top: 50%;
}

.menu-btn span:last-child{
  bottom: 0;
}

.header-menu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 56px 24px 80px;
  background: #F4F4F4;
  z-index: 99;
  transform: translateX(100vw);
  transition: transform 0.6s ease;
}

.header-menu.is-active{
  transform: translateX(0);
}

/* ---header内部メニュー--- */
.menu-item a{
  display: block;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1;
  color: #132E2F;
  font-weight: 700;
  padding: 24px 0;
  border-bottom: 1px solid #D6DBE3;
}

@media screen and (min-width:768px) {
  .header-wrapper{
    grid-template-columns: 172px auto 24px;
  }
}

@media screen and (min-width:1024px) {
  header{
    left: 50%;
    transform: translateX(-50%);
  }
  .header-wrapper{
  grid-template-columns:172px auto 172px;
  grid-template-areas:"logo menu inquiry";
  gap:20px;
}

.inquiry-btn{
  font-size: 1.8rem;
  padding: 12px 32px;
}

.inquiry-btn:hover{
  opacity: 1;
  background: linear-gradient(-90deg, rgb(0, 187, 194), rgb(141, 215, 100));
}

/* ---ハンバーガーメニュー--- */
.menu-btn{
  display: none;
}

.header-menu{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  position:unset;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  transform: unset;
  transition: unset;
}

.header-menu.is-active{
  transform: none;
}

/* ---header内部メニュー--- */
.menu-item a{
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.25;
  padding: 0;
  border-bottom: none;
}
}

/* ------------------------------
hero-area
------------------------------ */
.hero-area{
  background: url(../images/bg.jpeg) no-repeat center / cover;
  padding: 100px 0 32px;
}

.hero-area-wrapper{
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-area-txt{
  width: 100%;
  max-width: 457px;
}

.hero-area-txt .sub-ttl{
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 0;
}

.hero-area-txt .sub-ttl span{
  padding: 0 8px;
  color: #79E09F;
}

@media screen and (min-width:768px) {
.hero-area-wrapper{
  flex-direction: row;
  gap: 32px;
  justify-content: center;
}

.hero-area-txt{
  width: 60%;
  max-width:fit-content;
}

.hero-area-txt .sub-ttl{
  margin: 24px 0 0;
}
}

@media screen and (min-width:1024px) {
.hero-area{
  padding: 137px 0 12px;
}

.hero-area-wrapper{
  justify-content: left;
  max-width: 1000px;
}

.hero-area-txt .sub-ttl{
  font-size: 2.4rem;
}
}

/* ------------------------------
trouble-area
------------------------------ */
.trouble-area-wrapper{
  width: calc(100% - 96px);
  margin: 40px auto 64px;
}

.trouble-area-ttl{
  margin: 0 auto 24px;
}

.trouble-area-ttl .sub-ttl{
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color:#00BBC2;
  text-align: center;
  margin: 0 auto 10px;
}

.trouble-area-ttl h2{
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 700;
  color:#132E2F;
  text-align: center;
}

.trouble-wrapper{
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.trouble-cnt-wrapper{
width: 100%;
background: #fff;
border-radius: 16px;
padding: 0 24px 24px;
box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.15);
position: relative;
}

.icon-nayami{
  width: 64px;
  height: 64px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.pict-nayami{
  width: 120px;
  height: auto;
  margin: 56px auto 16px;
}

.txt-nayami{
  font-size: 1.6rem;
  text-align: 1.5;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width:768px) {
.trouble-wrapper{
  max-width: 816px;
  flex-direction: row;
  flex-wrap: wrap;
}
.trouble-cnt-wrapper{
  width: calc(50% - 12px);
}
}

@media screen and (min-width:1024px) {
.trouble-area-wrapper{
  max-width: 1000px;
  margin: 96px auto 86px;
  background: url(../images/bgtxt_trouble.svg) no-repeat bottom left / 72px 330px;
}

.trouble-area-ttl{
  margin: 0 auto 70px;
}

.trouble-area-ttl .sub-ttl{
  font-size: 2.4rem;
}

.trouble-area-ttl h2{
  font-size: 4rem;
}

.trouble-wrapper{
  flex-wrap: nowrap;
  align-items: stretch;
}

.trouble-cnt-wrapper{
padding: 61px 8px 24px;
}

.icon-nayami{
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pict-nayami{
  width: 120px;
  height: auto;
  margin: 0 auto 16px;
}
}

/* ------------------------------
anxiety-area
------------------------------ */
.anxiety-area-ttl h2{
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 24px 24px 16px;
  background: url(../images/bg.jpeg) no-repeat center / cover;
  position: relative;
}

.anxiety-area-ttl h2::after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 16px solid #fff;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: calc(50% - 9px);
}

.anxiety-area-ttl .sub-ttl{
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 32px 16px 0;
}

.anxiety-area-ttl .sub-ttl span{
  color: #00BBC2;
}

.anxiety-area-wrapper{
  width: calc(100% - 32px);
  max-width: 800px;
  margin: 40px auto 0;
  background: #F4F4F4;
  border-radius: 24px;
  padding: 24px 16px 16px;
  position: relative;
}

.anxiety-area-wrapper h3{
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  color: #828DA4;
  padding: 0 0 16px 0;
  margin: 0 auto;
  border-bottom: 3px dotted #828DA4;
}

.pict_anxiety{
  margin: 24px auto 16px;
  width: calc(100% - 200px);
  max-width: 200px;
}

.anxiety-list{
  width: fit-content;
  margin: 0 auto;
}

.anxiety-list li{
  font-weight: 700;
  margin: 0 0 16px 0;
  padding: 0 0 0 28px;
  background: url(../images/checkmark_dark.svg) no-repeat left top 6px / 20px 19px;
}

@media screen and (min-width:768px) {
.pict_anxiety{
  max-width: 150px;
}
}

@media screen and (min-width:1024px) {
.anxiety-area-ttl h2{
  font-size: 3.2rem;
  padding: 56px 24px 33px;
}

.anxiety-area-ttl h2::after{
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 30px solid #fff;
  left: calc(50% - 18px);
}

.anxiety-area-ttl .sub-ttl{
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 24px auto 40px;
}

.anxiety-area-wrapper{
  padding: 40px 64px 24px;
}

.anxiety-area-wrapper h3{
  font-size: 2.4rem;
  margin: 0 auto 32px;
}

.pict_anxiety{
  margin: 0;
  width: 150px;
  position: absolute;
  left: -45px;
  bottom: 0;
}

.anxiety-list li{
  margin: 0 0 24px 0;
  padding: 0 0 0 30px;
}
}

/* ------------------------------
solution-area 
------------------------------ */
.solution-area{
  margin-top: -10px;
  z-index: 10;
}

.yajirushi{
  width: 100px;
  height: auto;
  margin: 0 auto;
}

.solution-area-ttl h2{
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 16px auto 0;
  color: #132E2F;
}

.solution-area-ttl h2 span{
  color: #00BBC2;
}

.solution-cnt{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto 64px;
}

.solution-cnt-1{
  margin: 32px auto 64px;
}

.solution-cont-pict{
  width: 100%;
  border-radius: 16px;
} 

.solution-cnt-txt h3{
  font-size: 2.4rem;
  line-height:  1.25;
  color: #132E2F;
  font-weight: 700;
  padding: 0 0 0 43px;
  background: url(../images/checkmark_light.svg)no-repeat top 3px left / 35px 30px;
}

.solution-cnt-txt ul{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px auto 0;
}

.solution-cnt-txt ul li{
  line-height: 1.25;
  font-weight: 500;
  padding: 0 0 0 18px;
  position: relative;
}

.solution-cnt-txt ul li::before{
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, rgb(0, 187, 194), rgb(141, 215, 100));
  border-radius: 50px;
  position: absolute;
  top: 5px;
  left: 0;
}

@media screen and (min-width:1024px) {
.solution-area{
  max-width: 1000px;
  background: url(../images/bgtxt_solution.svg) no-repeat bottom left;
  margin: -10px auto 132px;
}

.solution-area-ttl h2{
  font-size: 4rem;
  margin: 32px auto 0;
}

.solution-cnt{
  width: 1000px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.solution-cnt-1{
  margin: 80px auto 64px;
}

.solution-cnt-2{
  flex-direction: row;
}

.solution-cnt-txt h3{
  padding: 4px 0 4px 43px;
  background: url(../images/checkmark_light.svg) no-repeat top 4px left / 35px 30px;
}

.solution-cont-pict{
  width: 480px;
}

.solution-cnt-txt ul{
  gap: 24px;
}
}

/* ------------------------------
usecase-area
------------------------------ */
.usecase-area h2{
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight:700;
  color: #132E2F;
  text-align: center;
  margin: 0 auto 40px;
}

.usecase-area-wrapper{
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.usecase-cnt{
  border-radius: 16px;
  padding: 40px 16px;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.15);
}

.usecase-cnt-ttl{
  text-align: center;
  margin: 0 auto 32px;
}

.company-logo{
  width: auto;
  height: 40px;
  margin: 0 auto 24px;
}

.usecase-cnt-ttl h3{
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 auto 8px;
}

.usecase-cnt-ttl .url{
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 500;
  color: #222222;
}

.usecase-cnt h4{
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  color: #132E2F;
  margin: 0 auto 32px;
  padding: 16px 0;
  border-top: 2px solid #132E2F;
  border-bottom: 2px solid #132E2F;
}

.usecase-btn{
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: calc(100% - 32px);
  max-width: 450px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgb(0, 187, 194), rgb(141, 215, 100));
  margin: 40px auto 64px;
  padding: 24px 16px;
  position: relative;
}

.usecase-btn::after{
  content: '';
  display: block;
  width: 10px;
  height: 18px;
  background: url(../images/icon_arrow_right_w.svg) no-repeat;
  position: absolute;
  top: 40%;
  right: 16px;
}

/* ---slick--- */
.slider{
  position: relative;
}
.slick-arrow{
  border: none;
  background: transparent;
  width: 10px;
  height: 18px;
  position: absolute;
  top:25%;
  z-index:10;
}

.slick-arrow:hover{
cursor: pointer;
}


.prev-arrow{
  background: transparent url(../images/icon_arrow_left_g.svg) no-repeat;
  left: 8px;
}

.next-arrow{
  background: transparent url(../images/icon_arrow_right_g.svg) no-repeat;
  right: 8px;
}

.usecase-pict{
  width: 100%;
  border-radius: 16px;
  margin: 0 auto 24px;
}

.slick-dots li.slick-active button:before{
  background: #00BBC2 !important;
}

@media screen and (min-width:600px) {
.slick-arrow{
  top:35%;
}
}

@media screen and (min-width:1024px) {
.usecase-area h2{
  font-size: 4rem;
  margin: 0 auto 80px;
}

.usecase-area-wrapper{
  max-width: 1000px;
  flex-direction: row;
}

.usecase-cnt{
  width: 50%;
  padding: 40px;
}

.usecase-btn{
  margin: 80px auto 100px;
}

.usecase-btn:hover{
  opacity: 1;
  background: linear-gradient(-90deg, rgb(0, 187, 194), rgb(141, 215, 100));
}

/* ---slick--- */
.slick-arrow{
  top:30%;
}
}

/* ------------------------------
usecase-area
------------------------------ */
.flowtouse-area{
  background: url(../images/bg.jpeg) no-repeat center / cover;
}

.flowtouse-area-wrapper{
  width: calc(100% - 32px);
  max-width: 960px;
  border-radius: 24px;
  margin: 40px auto;
  padding: 40px 16px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.15);
}

.flowtouse-area-wrapper h2{
  font-size: 3.2rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  color: #132E2F;
  margin: 0 auto 40px;
}

.flowtouse-step-wrapper{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-box{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step{
  width: 100%;
  background: #00BBC2;
  font-family: "Oswald", "Hiragino Kaku Gothic ProN", Meiryo, Arial, Helvetica, sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 12px;
  position: relative;
}

.step::after{
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 14px solid #00BBC2;
  border-bottom: 0;
  position: absolute;
  bottom: -14px;
  left: calc(50% - 8px);
}

.step-box-txt h3{
  font-size: 1.8rem;
  line-height: 1.25;
  color: #132E2F;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 16px;
}

.step-box-txt ul li{
  padding: 0 0 0 20px;
  position: relative;
}

.step-box-txt ul li::before{
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background:#00BBC2;
  position: absolute;
  top: 6px;
  left: 0;
}

@media screen and (min-width:1024px) {
.flowtouse-area-wrapper{
  margin: 80px auto;
  padding: 64px 80px 80px;
}

.flowtouse-area-wrapper h2{
  font-size: 4rem;
  margin: 0 auto 80px;
}

.flowtouse-step-wrapper{
  position: relative;
}

.flowtouse-step-wrapper::after{
  display: block;
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  left: 168px;  
  background: linear-gradient(
  0deg,
  rgba(0, 187, 194, 0.5) 0%,
  rgba(103, 207, 163, 0.5) 73%,
  rgba(141, 215, 151, 0.5) 100%

);
  border-radius: 50px;
  z-index: 0;
}

.step-box{
  display: flex;
  flex-direction: row;
  gap: 106px;
  z-index: 1;
}

.step-box-txt{
  margin: 16px 0 0 0;
}

.step{
  max-width: 147px;
  height: fit-content;
  font-size: 2.4rem;
  padding: 12px 40px;
}

.step::after{
  bottom: calc(50% - 8px);
  right: -14px;
  left: auto;
  transform: rotate(-90deg);
}

.step-box-txt h3{
  text-align: left;
  margin: 0 0 24px -90px;
  padding:0 0 0 90px;
  background: url(../images/ten.svg) no-repeat left 10px top 50%;
}

.step-box-txt ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

}

/* ------------------------------
qa-areay
------------------------------ */
.qa-area{
  width: calc(100% - 32px);
  max-width: 880px;
  margin: 64px auto 0;
}

.qa-area h2{
  font-size: 3.2rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  color: #132E2F;
  margin: 0 auto 40px; 
}

.qa-area-wrapper dt{
  color: #132E2F;
  font-weight: 700;
  padding:0 0 16px 40px;
  background: url(../images/icon-Q.svg) no-repeat top left / 32px 32px; 
}

.qa-area-wrapper dd{
  margin: 0 0 24px 0; 
  padding: 0 0 24px 40px;
  border-bottom: 3px dotted #828DA4;
  background: url(../images/icon-A.svg) no-repeat top left / 32px 32px; 
}


@media screen and (min-width:1024px) {
.qa-area{
  margin: 100px auto 0;
}

.qa-area h2{
  font-size: 4rem;
  margin: 0 auto 80px; 
}

.qa-area-wrapper dt{
  padding:0 0 24px 40px;
}

.qa-area-wrapper dd{
  margin: 0 0 32px 0; 
  padding: 0 0 24px 40px;
}
}

/* ------------------------------
footer
------------------------------ */
footer{
  background: #132E2F;
  margin: 160px auto 0;
}

.footer-wrapper{
  padding: 16px;
  text-align: center;
}

.footer-wrapper a p{
  font-size: 1rem;
  color: #fff;
}

@media screen and (min-width:1024px) {
.footer-wrapper{
  padding: 20px;
}

.footer-wrapper a p{
  font-size: 1.6rem;
}
}

/* ------------------------------
interview
--------------------------------- */
.info-page{
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 100px auto 0;
}

.info-headline-wrapper{
  margin: 0 auto 24px;
}

.info-headline-wrapper h1{
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 700;
  color: #132E2F;
  margin: 0 auto 16px;
}

.info-headline-wrapper .company-name{
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 500;
}

.info-img-wrapper{
  width: 100%;
  margin: 0 auto 24px;
}

.info-img-wrapper img{
  width: 100%;
  margin: 0 auto 16px;
  border-radius: 4px;
}

.info-img-wrapper .pict-note{
  font-size: 1rem;
  line-height: 1.25;
}

.overview-area{
  width: 100%;
  background: #F4F4F4;
  padding:16px;
  font-weight: 500;
  border-radius: 4px;
}

.interview-paragraph{
  margin: 40px auto 0;
}

.interview-paragraph h2{
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 10px;
}

.interview-paragraph h2::before{
  content: '';
  display: inline-block;
  width: 5px;
  height: 20px;
  background: linear-gradient(0deg, rgb(0, 187, 194), rgb(141, 215, 100));
  position: absolute;
  top: 3px;
  left: 0;
}

.interview-answer-area{
  margin: 24px auto 0;
}

.interview-answer-area ul{
  margin: 24px auto;
}

.interview-answer-area ul li{
  margin: 0 0 8px 0;
  padding: 0 0 0 16px;
  position: relative;
}

.interview-answer-area ul li::before{
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: linear-gradient(0deg, rgb(0, 187, 194), rgb(141, 215, 100));
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 11px;
}

.interview-answer-area ul li:last-child{
  margin: 0;
}

.interview-img-wrapper{
  margin: 24px auto 0;
}

.interview-img-wrapper picture img{
  width: 100%;
  border-radius: 4px;
}

.interview-note{
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 24px auto 0;
}

@media screen and (min-width:1024px) {
.info-page{
  margin: 137px auto 0;
}

.info-headline-wrapper{
  margin: 0 auto 32px;
}

.info-headline-wrapper h1{
  font-size: 3.2rem;
}

.info-headline-wrapper .company-name{
  font-size: 1.6rem;
}

.info-img-wrapper{
  width: 100%;
  margin: 0 auto 32px;
}

.info-img-wrapper .pict-note{
  font-size: 1.2rem;
}

.overview-area{
  padding:24px;
}
.interview-paragraph{
  margin: 48px auto 0;
}

.interview-paragraph h2{
  font-size: 1.8rem;
}

.interview-paragraph h2::before{
  top: 5px;
}

.side-by-side-wrapper{
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.side-by-side-left{
  flex-direction: row-reverse;
}

.side-by-side-wrapper .interview-answer-area p{
  width: 600px;
}

.interview-answer-area{
  margin: 24px auto 0;
}

.interview-img-wrapper{
  margin: 32px auto 0;
}

.interview-note{
  font-size: 1.2rem;
}
}