@charset "utf-8";
/* ------------------------------------------------------------
html5
------------------------------------------------------------ */
article, aside, canvas, details, figcaption, figure, header, footer, hgroup, menu, nav, section, summary {
  display: block;
}
/* ------------------------------------------------------------
base
------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, dialog, figcaption, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  box-sizing: border-box;
}
address {
  font-style: normal;
}
xli {
  padding-left: 1em; /*1em（1文字）分、右に動かす*/
  text-indent: -1em; /*最初の行だけ1em（1文字）分、左に動かす*/
}
img, a img {
  border: 0;
}
img {
  vertical-align: top;
  width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul, ol {
  margin: 0 0 0 0;
  padding: 0;
}
.clickable {
  cursor: pointer;
}
/*ページTOPへボタン*/
.pagetop {
  bottom: 25px;
  display: none;
  position: fixed;
  right: 25px;
  z-index: 100;
}
.pagetop__btn {
  background-color: #ddd;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
  font-size: 12px;
  transition: all 0.3s ease;
}
.pagetop__btn:hover {
  opacity: 0.7;
  background-color: #00947A;
}
/* ------------------------------------------------------------
  COMMEN CLASS
------------------------------------------------------------ */
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
/*
基本設定css
*/
html {
  font-size: 62.5%;
}
body {
  color: #333;
  background-color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}
p {
  line-height: 1.7;
}
main {
  width: 100%;
  overflow: hidden;
}
/* ------------------------------------------------------------
スクロールCSS
------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/* -------------------------------------------------------------------- 
Indent
-------------------------------------------------------------------- */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.wrapper {
  overflow: hidden;
  margin: 0 auto;
}
/*マウスオーバー時ゆっくり透過*/
.fade {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.fade:hover {
  opacity: 0.4;
  filter: alpha(opacity=90);
}
/* ------------------------------------------------------------
PC用設定
------------------------------------------------------------ */
.pc {
  display: block;
}
.tb {
  display: none;
}
.sp {
  display: none;
}
.tbsp {
  display: none;
}
.pctb{
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
/* ------------------------------------------------------------
共通パーツ
------------------------------------------------------------ */
.link-btn {
  max-width: 320px;
  min-width: 290px;
  text-align: center;
  position: relative;
  display: block;
  color: #00947A;
  background-color: #fff;
  text-decoration: none;
  border: solid #00947A 1px;
  box-shadow: 2px 2px 6px rgb(9 35 64 / 14%);
  padding: 19px 65px 19px 35px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: padding .5s cubic-bezier(.19, 1, .22, 1), color .5s ease, background .5s ease, opacity .5s ease;
  border-radius: 32px;
  margin: 0 auto 5px;
}
.link-btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #00947A;
  border-right: 2px solid #00947A;
  transform: translate(0, -50%) rotate(45deg);
  transition: border .5s ease;
}
.link-btn:hover {
  color: #fff;
  background: #00947A;
  ;
}
.link-btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.txt-link {
  color: #00947A;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.txt-link:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------
共通headingタグ
------------------------------------------------------------ */
h1 {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1.5;
}
h1 span {
  font-size: 26px;
}
h1::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  top: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(../../image/icon-interviews.png);
  background-repeat: no-repeat;
  background-size: contain;
}
h1::after {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  top: 170%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(../../image/header-bottom.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

/* h2 {
  font-size: 32px;
  font-weight: bold;
  color: #00947A;
  text-align: center;
  margin: 80px 0 0;
} */
/* ------------------------------------------------------------
header
------------------------------------------------------------ */
header {
  width: 100%;
}
/* ------------------------------------------------------------
パンくず
------------------------------------------------------------ */
.breadcrumbs {
  background-color: #f8f8f8;
  padding: 16px 20px;
}
.links {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs ul {
  display: flex;
  font-size: 1.4rem;
}
.links li span {
  margin: 0 10px;
}
.links li a {
  color: #00947A;
}
@media screen and (max-width: 768px) {
  .breadcrumbs ul {
    display: inline;
  }
  .breadcrumbs ul li {
    display: inline;
    line-height: 1.8;
  }
}
@media screen and (max-width: 640px) {
  .breadcrumbs {
    margin: 0 auto;
    padding: 2vw 4vw;
  }
}

/* ------------------------------------------------------------
main
------------------------------------------------------------ */
.mv_wrap {
  width: 100%;
  min-height: 280px;
  background-image: url(../../image/bg-downloads.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 130px;
}
.content_wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 0;
}

.info_lead{
  font-size: 3.6rem;
  color: #00947A;
  font-weight: bold;
  margin-bottom: 50px;
}
.info_flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.info_detail_block{
  background: #F0F3F5;
  padding: 20px 26px;
  width: 55%;
}
.info_detail_box div{
  display: flex;
  align-items: center;
}
.info_detail_box dt{
  background-color: #333333;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  width: 25%;
  padding: 10px 0;
  text-align: center;
  margin-right: 15px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info_detail_box div:not(:last-child) {
    margin-bottom: 10px;
}
.info_detail_box dd{
  width: 75%;
  font-weight: bold;
  padding: 10px 0;
  font-size: 14px;
}
.info_detail_box dd a,.interview_answer a{
  color: #006EB0;
  text-decoration: underline;
}
.info_detail_box dd span{
  font-weight: bold;
  border: 1px solid #333333;
  border-radius: 15px;
  padding: 8px 13px;
  margin-right: 10px;
}
.info_name_box{
  background: #fff;
  text-align: center;
  padding: 18px 0;
  margin-bottom: 20px;
}
.info_name_box img{
  width: 163px;
}
.info_name{
  font-size: 1.8rem;
  font-weight: bold;
}
.info_image_block{
  width: 42%;
}
.info_image_block img{
  border-radius: 10px;
}
.info_text{
  font-size: 18px;
  margin-bottom: 60px;
}
.info_summary_block{
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
}
.task_box{
  width: 45%;
  padding: 40px 25px;
  border: 1px solid #707070;
  border-radius: 10px;
  position: relative;
}
.task_box::after{
  content: "";
  display: block;
  width: 24px;
  height: 45px;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../image/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.result_box{
  width: 45%;
  padding: 40px 25px;
  border: 1px solid #EA5550;
  border-radius: 10px;
}
.task_head{
  text-align: center;
  color: #fff;
  background-color: #333333;
  margin-bottom: 30px;
  font-weight: bold;
}
.result_head{
  text-align: center;
  color: #fff;
  background-color: #EA5550;
  margin-bottom: 30px;
  font-weight: bold;
}
.task_box ul li{
  font-weight: bold;
  margin-bottom: 20px;
}
.result_text{
  font-weight: bold;
  color: #EA5550;
  position: relative;
  padding-left: 35px;
}
.result_text::before{
  content: "";
  display: block;
  width: 31px;
  height: 27px;
  left: 0;
  position: absolute;
  background-image: url(../image/icon_crown.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* インタビュー中身 */
.content_wrap_interview {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
.interview_wrap{
  background: #F0F3F5;
}
.interview_wrap p{
  font-size: 1.8rem;
}
.interview_unit{
  margin-bottom: 60px;
}
p.interview_query{
  font-size: 2.2rem;
  font-weight: bold;
}
.interview_query{
  margin-bottom: 10px;
  position: relative;
  padding: 0 0 0 25px;
}
.interview_query::before{
  content:url('../image/q_line.svg');
  position: absolute;
  top:-7px;
  left: 0;
}
.unit_img_l{
  width: 70%;
  margin: 40px auto 0;
}
.moive{
  width: 70%;
  margin: 40px auto 0;
}
.youtube {
  width: 100%;
  /* aspect-ratio: 16 / 9; */
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
.interview_unit .flex{
  display: flex;
  justify-content: space-between;
}
.flex_text{
  width: 65%;
}
.flex_img{
  width: 32%;
}
.youtube_op ,.youtube_ed {
  aspect-ratio: 16 / 9;
}
.youtube_ed {
  margin-top: 40px;
}
.youtube_text {
  margin-bottom: 10px;
}
.flex_img p,.unit_img_l p {
  font-size: 1.4rem;
  text-align: right;
  margin-top: 5px;
}

.comment_box{
  background-color: #ffffff;
  border:#F0F3F5 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 40px;
  border-radius: 14px;
  position: absolute;
  bottom:-90px;
}
.comment_img{
  width: 15%;
}
.comment_text_box{
  width: 80%;
}
p.comment_ttl{
  font-weight: bold;
  font-size: 16px;
}
p.comment_text{
  font-size: 14px;
}

/* そのほかのお客様の声を聞く */
.other_interview_wrap{
  margin-top: 120px;
}
.content_wrap h2{
  font-size: 3.8rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1.5;
}
.content_wrap h2::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  top: 170%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(../../image/header-bottom.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.voice_block{
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.voice_block li{
  width: calc((100% - 60px) / 3);
}
.voice_item {
  background-color: #FFF;
  display: block;
  margin-bottom: 60px;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
  transition: all 0.3s;
  position: relative;
  top: 0;
}
.voice_item:hover {
  top: -5px;
  box-shadow: 0 8px 6px rgb(0 0 0 / 10%);
}
.voice_text {
    padding: 30px 25px;
}
.voice_client {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.voice_tag {
  margin-top: 15px;
}
.tag_item {
    font-size: 1.3rem;
    line-height: 1;
    padding: 8px 14px;
    border: 1px solid #707070;
    border-radius: 15px;
    display: inline-block;
}

.voice_link_btn {
  max-width: 320px;
  min-width: 290px;
  text-align: center;
  position: relative;
  display: block;
  background-color: #fff;
  text-decoration: none;
  border: solid #CDD6DD 1px;
  box-shadow: 2px 2px 6px rgb(9 35 64 / 14%);
  padding: 19px 65px 19px 35px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: padding .5s cubic-bezier(.19, 1, .22, 1), color .5s ease, background .5s ease, opacity .5s ease;
  border-radius: 60px;
  margin: 0 auto 5px;
}
.voice_link_btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translate(0, -50%) rotate(45deg);
  transition: border .5s ease;
}
.voice_link_btn:hover {
  color: #fff;
  background: #00947A;
}
.voice_link_btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}



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

タブレット768px以下の
 設定はここから
                
---------------------------*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
  .tbsp {
    display: block;
  }
  .pctb {
    display: block;
}
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw;
  }
  h1 {
    font-size: 2.5rem;
  }
  .mv_wrap {
    min-height: 200px;
    padding-top: 60px;
  }
  
  h1::before {
    width: 50px;
    height: 50px;
    top: -30px;
  }
  h1::after {
    top: 190%;
  }
  .content_wrap {
    max-width: 90%;
    padding: 60px 0;
  }
  .info_lead{
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  .info_flex{
    margin-bottom: 40px;
  }
  .info_detail_block{
    padding: 20px 20px;
  }
  .info_detail_box dt{
    padding: 8px 0;
    margin-right: 10px;
  }
  .info_detail_box div:not(:last-child) {
    margin-bottom: 10px;
  }
  .info_detail_box dd{
    padding: 5px 0;
  }
  .info_detail_box dd a{
    word-break: break-all;
  }
  
  .info_name_box{
    padding: 12px 0;
    margin-bottom: 16px;
  }
  .info_name_box img{
    width: 163px;
  }
  .info_name{
    font-size: 1.6rem;
  }
  .info_text{
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
  .info_summary_block{
    font-size: 1.6rem;
  }
  .info_detail_box dd span {
    border-radius: 15px;
    padding: 5px 10px;
}
  .task_box{
    padding: 30px 20px;
  }
  .result_box{
    padding: 30px 20px;
  }
  .task_head{
    margin-bottom: 20px;
  }
  .result_head{
    margin-bottom: 20px;
  }
  .task_box ul li{
    font-weight: bold;
    margin-bottom: 20px;
  }
  .result_text{
    padding-left: 30px;
  }
  .result_text::before{
    width: 25px;
  }
  
  /* インタビュー中身 */
  .content_wrap_interview {
    max-width: 90%;
    padding: 60px 0;
  }
  .interview_wrap p{
    font-size: 1.6rem;
  }
  .interview_unit{
    margin-bottom: 60px;
  }
  p.interview_query{
    font-size: 2.0rem;
  }
  
  .unit_img_l{
    width: 70%;
    margin: 40px auto 0;
  }
  .moive{
    width: 70%;
    margin: 40px auto 0;
  }
  .youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .youtube iframe {
    width: 100%;
    height: 100%;
  }
  .interview_unit .flex{
    display: flex;
    justify-content: space-between;
  }
  .flex_text{
    width: 52%;
  }
  .flex_img{
    width: 45%;
  }
  .comment_box{
    padding: 30px;
    bottom:-170px;
  }
  .flex_img p,.unit_img_l p {
    font-size: 1.3rem;
  }
  .youtube_text {
    margin-bottom: 0px;
  }
  .youtube_ed {
    margin-top: 15px;
}

  /* そのほかのお客様の声を聞く */
  .other_interview_wrap{
    margin-top: 170px;
  }
  .content_wrap h2{
    font-size: 3rem;
  }
  .content_wrap h2::after {
    content: "";
    display: block;
    width: 45%;
    height: 100%;
    top: 170%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    background-image: url(../../image/header-bottom.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .voice_block{
    flex-wrap: wrap;
    width: 90%;
    margin: 80px auto;
  }
  .voice_block li{
    width: calc((100% - 30px) / 2);
  }
  .voice_item {
    margin-bottom: 40px;
  }
  .voice_item:hover {
    top: -5px;
    box-shadow: 0 8px 6px rgb(0 0 0 / 10%);
  }
  .voice_text {
      padding: 25px 20px;
  }
}
/*--------------------------

スマホ640px以下の
 設定はここから
                
---------------------------*/
/*ウィンドウ幅が0～640pxの場合にCSSを適用*/
@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
  .tbsp {
    display: block;
  }
  .pctb {
    display: none;
  }
  
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 4vw;
}
  .mv_wrap {
    min-height: 200px;
    padding-top: 20px;
  }
  h1 {
    font-size: 2rem;
    margin-top: 10%;
    top: 15px;
  }
  h1::after {
    width: 80%;
    top: 170%;
}
  .content_wrap {
    max-width: 95%;
    padding: 40px 0;
  }
  .info_lead {
    font-size: 2.0rem;
    margin-bottom: 20px;
}
.info_flex {
    flex-direction: column;
    margin-bottom: 30px;
}
.info_detail_block {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 10px;
}
.info_image_block {
    width: 100%;
}
.info_text {
    margin-bottom: 30px;
}
.info_summary_block {
    flex-direction: column;
}
.task_box {
    width: 100%;
    padding: 15px;
    margin-bottom: 40px;
}
.task_head {
    margin-bottom: 10px;
}
.task_box ul li {
    margin-bottom: 10px;
}
.task_box ul li:last-child{
  margin-bottom: 0;
}
.task_box::after {
    width: 24px;
    height: 45px;
    right: 45%;
    top: 100%;
    background-image: url(../image/arrow.svg);
    transform: rotate( 90deg );
}
.result_box {
    width: 100%;
    padding: 15px;
}
.result_head {
    margin-bottom: 10px;
}
.content_wrap_interview {
    padding: 40px 0;
}
p.interview_query {
  font-size: 1.8rem;
}
.unit_img_l {
    width: 100%;
    margin-top: 10px;
}
.interview_unit {
    margin-bottom: 30px;
}
.moive {
  width: 100%;
  margin-top: 10px;
}
.interview_unit .flex {
  flex-direction: column;
}
.flex_text {
  width: 100%;
}
.flex_img {
  width: 100%;
  margin-top: 10px;
}
.comment_box {
  align-items: center;
  padding: 20px;
  position: static;
  flex-direction: column;
}
.comment_text_box {
  width: 100%;
}
.comment_img {
  width: 20%;
  margin-bottom: 10px;
}
p.comment_ttl{
  text-align: center;
  margin-bottom: 10px;
}
.other_interview_wrap {
  margin-top: 0px;
}
.content_wrap h2 {
  font-size: 2.0rem;
}
.voice_block {
  width: 90%;
  margin: 40px auto 0;
  flex-direction: column;
}
.voice_block li {
  width: 100%;
}
}