@charset "UTF-8";
/*====================================================
////webフォント読み込み
====================================================*/
@import url("http://fonts.cdnfonts.com/css/sora-3");
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@800&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Righteous&display=swap");
/*====================================================
////フォントサイズ設定
====================================================*/
html {
  font-size: 62.5%;
}

@media screen and (min-width: 1151px) and (max-width: 1980px) {
  html {
    font-size: 0.5050505051vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1151px) {
  html {
    font-size: 0.8680555556vw;
  }
}
/*====================================================
////アニメーション設定
====================================================*/
/*====================================================
////common
====================================================*/
/* ---------- 基本設定 ----------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #343434;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
}
/* ---------- レスポンシブ切り替え ----------*/
.only-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

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

/*======================= PC =======================*/
/*====================================================
////Fixed contents
====================================================*/
/*======================= PC =======================*/
/*====================================================
////header
====================================================*/
/*======================= PC =======================*/
/*====================================================
////footer
====================================================*/
/*======================= PC =======================*/
/*-------------------------------------------------------------

////リキッドレイアウト

-------------------------------------------------------------*/
/* ルートフォントサイズを10pxに設定*/
html {
  font-size: 62.5%;
}

/* 375px以下 */
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
/* 769px以上～インナー幅未満 */
@media screen and (min-width: 768px) and (max-width: 1150px) {
  html {
    font-size: 0.8695652174vw;
  }
}
/*-------------------------------------------------------------

////共通設定

-------------------------------------------------------------*/
/*カラー変数*/
:root {
  --red: #b80018;
  --blue: #0068b7;
  --skyblue: #c0daed;
  --lightblue: #edf4fa;
  --yellow: #fff100;
  --black: #000000;
  --white: #ffffff;
  --roboto: "Roboto", sans-serif;
}

body {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  color: var(--black);
  font-size: 1.6rem;
}

a {
  transition: all 0.3s ease;
}

img {
  width: 100%;
  height: auto;
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
  /*PCでは電話発信無効*/
  a[href^="tel:"] {
    pointer-events: none;
  }
  a:hover {
    opacity: 0.6;
  }
}
/*-------------------------------------------------------------

////共通クラス

-------------------------------------------------------------*/
/*====================================================
////class .hidden-sp
====================================================*/
.hidden-sp {
  display: block;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}
/*====================================================
////class .hidden-pc
====================================================*/
.hidden-pc {
  display: none;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block;
  }
}
/*====================================================
////class .hidden-sp
====================================================*/
.inb {
  display: inline-block;
}

/*====================================================
////class .inner
====================================================*/
.inner {
  width: 100%;
  max-width: 113rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* ////////// mobile ////////// */
/*====================================================
////class .sa
(スクロールアニメーション用クラス※要JavaScript)
====================================================*/
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa-left {
  transform: translate(-5rem, 0);
}

.sa-right {
  transform: translate(5rem, 0);
}

.sa-up {
  transform: translate(0, 5rem);
}

.sa-down {
  transform: translate(0, -5rem);
}

.sa-scaleUp {
  transform: scale(0.7);
}

.sa-scaleDown {
  transform: scale(1.5);
}

.sa-rotateL {
  transform: rotate(180deg);
}

.sa-rotateR {
  transform: rotate(-180deg);
}

.delay-01 {
  transition-delay: 0.1s;
}

.delay-02 {
  transition-delay: 0.2s;
}

.delay-03 {
  transition-delay: 0.3s;
}

.delay-04 {
  transition-delay: 0.4s;
}

.delay-05 {
  transition-delay: 0.5s;
}

.delay-06 {
  transition-delay: 0.6s;
}

.delay-07 {
  transition-delay: 0.7s;
}

.delay-08 {
  transition-delay: 0.8s;
}

.delay-09 {
  transition-delay: 0.9s;
}

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

////共通パーツ

-------------------------------------------------------------*/
/*====================================================
////class .pc-fixed-btn
====================================================*/
.pc-fixed-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.pc-fixed-btn__contact {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.8rem 3rem;
  background-color: var(--red);
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.375;
  color: var(--white);
}

.pc-fixed-btn__contact::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3.2rem;
  background-image: url(../img/calculator-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 1.9rem;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .pc-fixed-btn {
    display: none;
  }
}
/*====================================================
////class .sp-fixed-btn
====================================================*/
.sp-fixed-btn {
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: var(--red);
}

.sp-fixed-btn__tel {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.sp-fixed-btn__tel::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2.5rem;
  background-image: url(../img/tel-icon_white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
}

.sp-fixed-btn__contact {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.2rem 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}

.sp-fixed-btn__contact::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2.5rem;
  background-image: url(../img/mail-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
}

.sp-fixed-btn__contact::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
  .sp-fixed-btn {
    display: none;
  }
}
/*====================================================
////class .btn
====================================================*/
.btn {
  display: inline-block;
  width: 44rem;
  max-width: 100%;
  padding: 2.5rem 6rem;
  border-radius: 4.4rem;
  background-color: var(--red);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-top: solid 0.3rem var(--white);
  border-right: solid 0.3rem var(--white);
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: rotate(45deg);
  margin-top: -0.8rem;
}

.btn--small {
  width: 37rem;
  padding: 1.9rem 5rem;
  border-radius: 3.9rem;
  font-size: 2.4rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn--small::after {
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  right: auto;
  left: 3.7rem;
  transform: rotate(-135deg);
  margin-top: -0.6rem;
}

.btn--white {
  border: 2px solid var(--black);
  background-color: var(--white);
  color: var(--black);
}

.btn--white::after {
  border-top: solid 0.3rem var(--black);
  border-right: solid 0.3rem var(--black);
}

.btn--blue {
  border: 2px solid var(--blue);
  background-color: var(--blue);
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.8rem;
    width: 29.5rem;
    padding: 1.5rem 4rem;
  }
  .btn::after {
    width: 1rem;
    height: 1rem;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    right: 3rem;
    margin-top: -0.4rem;
  }
  .btn--small {
    font-size: 1.8rem;
    width: 24rem;
    padding: 0.8rem 4rem;
  }
  .btn--small::after {
    right: auto;
    left: 2.5rem;
    transform: rotate(-135deg);
  }
  .btn--white {
    border: 2px solid var(--black);
    background-color: var(--white);
    color: var(--black);
  }
  .btn--white::after {
    border-top: solid 2px var(--black);
    border-right: solid 2px var(--black);
  }
  .btn--blue {
    border: 2px solid var(--blue);
    background-color: var(--blue);
  }
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
  .btn:hover {
    opacity: 0.6;
  }
}
/*====================================================
////class .form
====================================================*/
.form {
  width: 100%;
  max-width: 84rem;
  margin-inline: auto;
}

.form *::placeholder {
  color: #cccccc;
}

.form__item {
  display: flex;
  align-items: flex-start;
}

.form__item dt {
  width: 26rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1.5rem;
  padding-right: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.form__item dt .form__required {
  display: block;
  padding: 0.2rem 1.4rem;
  background-color: var(--red);
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
  margin-left: 2rem;
}

.form__item dd {
  width: calc(100% - 26rem);
}

.form__item dd input {
  display: block;
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
}

.form__item dd textarea {
  display: block;
  width: 100%;
  height: 20rem;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
}

.form__item + .form__item {
  margin-top: 2rem;
}

.form__checkbox-label {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 3rem;
  margin-top: 4rem;
  margin-left: 26rem;
  cursor: pointer;
  user-select: none;
}

.form__checkbox {
  display: none;
}

.form__checkmark {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 2rem;
  width: 2rem;
  background: var(--white);
  border: 1px solid var(--black);
}

.form__checkmark::after {
  content: "";
  position: absolute;
  border: solid var(--black);
  border-width: 0 0.3rem 0.3rem 0;
  left: 0.5rem;
  top: -0.1rem;
  width: 0.8rem;
  height: 1.6rem;
  transform: rotate(45deg);
  opacity: 0;
}

.form__checkbox-label .form__checkbox:checked + .form__checkmark::after {
  opacity: 1;
}

.form__checkbox-label a {
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
}

.form__checkbox-label a::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/external-link.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.2rem;
  margin-right: 0.5rem;
}

.form__btn {
  text-align: center;
  margin-top: 8rem;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
  }
  .form__item dt {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }
  .form__item dt .form__required {
    display: block;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 1rem;
  }
  .form__item dd {
    width: 100%;
    margin-top: 1rem;
  }
  .form__item dd input {
    padding: 1rem;
  }
  .form__item dd textarea {
    height: 15rem;
    padding: 1rem;
  }
  .form__item + .form__item {
    margin-top: 2rem;
  }
  .form__checkbox-label {
    margin-left: 0;
  }
  .form__btn {
    margin-top: 4rem;
  }
}
/*====================================================
////class .page-top
====================================================*/
.page-top {
  width: 5rem;
  height: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.page-top a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  position: relative;
}

.page-top a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  margin: auto;
  transform: rotate(-45deg);
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

/*====================================================
////class .section-title
====================================================*/
.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  color: var(--blue);
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.8rem;
  }
}
/*====================================================
////class .marker
====================================================*/
.marker--yellow {
  position: relative;
  z-index: 0;
}

.marker--yellow::before {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background-color: var(--yellow);
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  z-index: -1;
}

/*====================================================
////class .referrer-err
====================================================*/
.referrer-err {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--red);
  padding-top: 5rem;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .referrer-err {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--red);
    padding-top: 5rem;
  }
}
/*-------------------------------------------------------------

////ヘッダー

-------------------------------------------------------------*/
/*====================================================
////class .header
====================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 8rem;
  background-color: var(--white);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: inherit;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header__logo {
  width: 26.3rem;
}

.header__logo a {
  display: block;
}

.header__logo a img {
  image-rendering: -webkit-optimize-contrast;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .header {
    height: 6rem;
  }
  .header__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .header__logo {
    width: 21rem;
  }
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
  .header__logo a:hover {
    opacity: 1;
  }
}
/*-------------------------------------------------------------

////グローバルナビゲーション

-------------------------------------------------------------*/
/*====================================================
////class .pc-nav
====================================================*/
.pc-nav {
  height: 8rem;
}

.pc-nav__inner {
  height: inherit;
  display: flex;
  align-items: center;
}

.pc-nav__list {
  height: inherit;
  display: flex;
}

.pc-nav__item {
  height: inherit;
}

.pc-nav__item a {
  height: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 1.5rem 0;
}

.pc-nav__tel {
  height: inherit;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem 0;
}

.pc-nav__tel-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.pc-nav__tel-number {
  font-family: var(--roboto);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
}

.pc-nav__tel-number::before {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background-image: url(../img/tel-icon_blue.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.4rem;
}

.pc-nav__download {
  display: block;
  padding: 1.1rem 0.8rem;
  border: 2px solid var(--red);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  text-align: center;
  min-width: 13.2rem;
}

.pc-nav__contact {
  display: block;
  padding: 1.1rem 0.8rem;
  border: 2px solid var(--red);
  background-color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-align: center;
  margin-left: 1rem;
  min-width: 13.2rem;
}

@media screen and (max-width: 767px) {
  .pc-nav {
    display: none;
  }
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
  .pc-nav__item a:hover {
    opacity: 1;
    color: var(--blue);
  }
}
/*====================================================
////class .sp-nav
====================================================*/
.sp-nav {
  position: fixed;
  top: 6rem;
  right: -28rem;
  z-index: 100;
  width: 28rem;
  height: calc(100vh - 6rem);
  background-color: var(--blue);
  transition: all 0.3s ease;
}

.sp-nav__inner {
  width: 28rem;
  height: 100%;
  padding-top: 0.5rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sp-nav__list {
  width: 100%;
  border-bottom: 1px solid #4b94cc;
}

.sp-nav__item + .sp-nav__item {
  border-top: 1px solid #4b94cc;
}

.sp-nav__item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 0;
  color: var(--white);
}

.sp-nav__tel {
  display: block;
  margin-top: 2rem;
}

.sp-nav__tel-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.sp-nav__tel-number {
  font-family: var(--roboto);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.sp-nav__tel-number::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background-image: url(../img/tel-icon_white02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
}

.sp-nav__reception-hours {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 0.5rem;
}

.sp-nav__download {
  display: block;
  width: 100%;
  padding: 1.4rem 1rem;
  background-color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  text-align: center;
  margin-top: 2rem;
}

.sp-nav__contact {
  display: block;
  width: 100%;
  padding: 1.4rem 1rem;
  background-color: var(--red);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-align: center;
  margin-top: 1rem;
}

.sp-nav.open {
  right: 0;
}

.sp-nav.open .sp-nav__inner {
  position: fixed;
  width: 28rem;
  height: calc(100vh - 6rem);
  overflow: auto;
}

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

////ハンバーガーメニュー

-------------------------------------------------------------*/
/*====================================================
////class .hamburger
====================================================*/
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  background: var(--blue);
}

.hamburger__btn {
  position: relative;
  width: 2.5rem;
  height: 2.3rem;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 2.5rem;
  height: 0.2rem;
  background: var(--white);
  transition: all 0.5s ease;
}

.hamburger span:nth-of-type(1) {
  width: 100%;
  top: 0;
}

.hamburger span:nth-of-type(2) {
  width: 100%;
  top: 1rem;
}

.hamburger span:nth-of-type(3) {
  width: 100%;
  top: 2rem;
}

/* ハンバーガーメニュークリック時 */
.hamburger.open .hamburger__btn {
  width: 3.5rem;
  height: 2.3rem;
}

.hamburger.open span:nth-of-type(1) {
  top: 1rem;
  transform: rotate(-225deg);
}

.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
  top: 1rem;
  transform: rotate(225deg);
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
/*-------------------------------------------------------------

////フッター

-------------------------------------------------------------*/
/*====================================================
////class .footer
====================================================*/
.footer {
  width: 100%;
  background-color: var(--black);
}

.footer__inner {
  width: 100%;
  padding: 4rem 1.5rem 2rem;
}

.footer__logo {
  display: block;
  width: 12.5rem;
  margin-inline: auto;
}

.footer__company {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  text-align: center;
  margin-top: 3rem;
}

.footer__access {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  text-align: center;
}

.footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-top: 4rem;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .footer__inner {
    width: 100%;
    padding: 4rem 1.5rem 7.4rem;
  }
  .footer__company {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .footer__access {
    font-size: 1.4rem;
  }
  .footer__copyright {
    font-size: 1rem;
  }
}
/*-------------------------------------------------------------

////メインコンテンツ

-------------------------------------------------------------*/
/*====================================================
////class  .main
====================================================*/
.main {
  padding-top: 8rem;
  overflow: hidden;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .main {
    padding-top: 6rem;
  }
}
/*-------------------------------------------------------------

////メインビュー

-------------------------------------------------------------*/
/*====================================================
////class .mv
====================================================*/
.mv {
  width: 100%;
  /* height: calc(100vh - 8rem); */
  height: 68.8rem;
  background-image: url(../img/mv-bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.mv__inner {
  width: 100%;
  /* height: calc(100vh - 8rem); */
  height: 68.8rem;
  position: relative;
}

.mv__textArea {
  /* padding-top: calc(( 80/ 1366) * 100vw); */
  padding-top: 8rem;
}

.mv__license {
  width: 22rem;
}

.mv__title {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  margin-top: 1rem;
}

.mv__list {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.mv__list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 16rem;
  background-color: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  animation: fade-in 0.8s ease 0.1s 1 normal forwards;
  opacity: 0;
}

.mv__list-item:nth-child(2) {
  animation: fade-in 0.8s ease 0.3s 1 normal forwards;
}

.mv__list-item:nth-child(3) {
  animation: fade-in 0.8s ease 0.5s 1 normal forwards;
}

.mv__list-item + .mv__list-item {
  margin-left: 2rem;
}

.mv__contact {
  display: none;
}

.mv__img {
  width: 42.1rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.mv__caption {
  position: relative;
  max-width: 1396px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 0;
}

.mv__caption-svg {
  position: absolute;
  right: 24px;
  bottom: 5px;
}

.mv__caption-svg svg {
  width: 23em;
  height: 24px;
}

.mv__caption-svg text {
  stroke: #fff;
  fill: #000;
}

.mv__caption-svg > svg > use:nth-of-type(1) {
  stroke-width: 4px;
  paint-order: stroke;
  stroke-linejoin: round;
  stroke: #fff;
}

.mv__caption-svg > svg > use:nth-of-type(2) {
  stroke-width: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translate(0, 5rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .mv {
    /* height: calc(100vh - 6rem); */
    height: 69.8rem;
    background-image: url(../img/mv-bg_sp.jpg);
  }
  .mv__inner {
    /* height: calc(100vh - 6rem); */
    height: 69.8rem;
  }
  .mv__textArea {
    padding-top: 2rem;
  }
  .mv__license {
    width: 16.4rem;
    margin-inline: auto;
  }
  .mv__title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    text-align: center;
  }
  .mv__list {
    margin-top: 2rem;
    justify-content: center;
  }
  .mv__list-item {
    width: 9.5rem;
    height: 9.5rem;
    font-size: 1.3rem;
  }
  .mv__list-item + .mv__list-item {
    margin-left: 1rem;
  }
  .mv__contact {
    display: block;
    margin-top: 2rem;
  }
  .mv__contact a {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
    padding: 0.8rem 3rem;
    background-color: var(--red);
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.375;
    color: var(--white);
  }
  .mv__contact a::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 3.2rem;
    background-image: url(../img/calculator-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 1.9rem;
  }
  .mv__img {
    width: 28rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .mv__caption {
    max-width: 100%;
    font-size: 12px;
  }
  .mv__caption-svg {
    position: absolute;
    right: 5px;
    bottom: 0;
  }
}
/*-------------------------------------------------------------

////CRACK SCANNERについて

-------------------------------------------------------------*/
/*====================================================
////class .about
====================================================*/
.about {
  width: 100%;
  background-image: url(../img/about-bg_pc.jpg);
  background-repeat: repeat-x;
  background-position: top;
  background-size: contain;
}

.about__inner {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.about__title {
  width: 50rem;
  margin-inline: auto;
}

.about__text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 6rem;
}

.about__text + .about__text {
  margin-top: 0;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .about {
    background-image: url(../img/about-bg_sp.jpg);
  }
  .about__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
  }
  .about__title {
    width: 31.5rem;
    margin-inline: auto;
  }
  .about__text {
    font-size: 1.8rem;
    line-height: 1.777;
    margin-top: 3rem;
  }
  .about__text + .about__text {
    margin-top: 2rem;
  }
}
/*-------------------------------------------------------------

////特長

-------------------------------------------------------------*/
/*====================================================
////class .feature
====================================================*/
.feature__inner {
  padding-top: 8rem;
  padding-bottom: 16rem;
}

.feature__title--big {
  font-size: 5.5rem;
}

.feature__list {
  margin-top: 5.6rem;
}

.feature__item {
  display: flex;
}

.feature__textArea {
  width: 47.2727272727%;
}

.feature__number {
  display: block;
  font-family: var(--roboto);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--skyblue);
}

.feature__sub-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
}

.feature__text {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

.feature__text--small {
  font-size: 1.4rem;
  vertical-align: top;
}

.feature__notice {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
}

.feature__img {
  width: 47.2727272727%;
  margin-left: 5.4545454545%;
  margin-top: 4.6rem;
}

.feature__item + .feature__item {
  margin-top: 7.4rem;
}

.feature__item--re {
  flex-direction: row-reverse;
}

.feature__item--re .feature__img {
  margin-right: 5.4545454545%;
  margin-left: 0;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .feature__inner {
    padding-top: 3rem;
    padding-bottom: 6rem;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
  }
  .feature__title .inb {
    line-height: 1;
  }
  .feature__title--big {
    font-size: 4.4rem;
  }
  .feature__list {
    margin-top: 3rem;
  }
  .feature__item {
    flex-direction: column;
  }
  .feature__textArea {
    width: 100%;
  }
  .feature__number {
    font-size: 6rem;
    margin-right: 1.6rem;
  }
  .feature__sub-title {
    font-size: 2rem;
    display: flex;
    align-items: center;
  }
  .feature__text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .feature__text--small {
    font-size: 1.2rem;
  }
  .feature__notice {
    margin-top: 0.6rem;
    font-size: 1.2rem;
  }
  .feature__img {
    width: 100%;
    max-width: 31.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
  }
  .feature__item + .feature__item {
    margin-top: 3.3rem;
  }
  .feature__item--re {
    flex-direction: column;
  }
  .feature__item--re .feature__img {
    margin-right: auto;
    margin-left: auto;
  }
}
/*-------------------------------------------------------------

////開発会社

-------------------------------------------------------------*/
/*====================================================
////class .development-company
====================================================*/
.development-company {
  width: 100%;
  background-color: var(--lightblue);
}

.development-company__inner {
  padding-top: 8rem;
  padding-bottom: 16rem;
}

.development-company__read {
  margin-top: 4rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.development-company__list {
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8rem;
}

.development-company__item {
  width: 100%;
  background-color: var(--white);
  padding: 2rem 4rem 3rem 4rem;
  display: flex;
  align-items: center;
}

.development-company__item + .development-company__item {
  margin-top: 2rem;
}

.development-company__logo {
  width: 21.7391304348%;
}

.development-company__body {
  width: 73.9130434783%;
  margin-left: 4.347826087%;
}

.development-company__name {
  font-size: 2.2rem;
  font-weight: 700;
}

.development-company__text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .development-company__inner {
    padding-top: 3rem;
    padding-bottom: 6rem;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
  }
  .development-company__read {
    margin-top: 3rem;
    font-size: 1.6rem;
    text-align: start;
  }
  .development-company__list {
    margin-top: 2rem;
  }
  .development-company__item {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    flex-direction: column;
  }
  .development-company__item + .development-company__item {
    margin-top: 1.5rem;
  }
  .development-company__logo {
    width: 20rem;
  }
  .development-company__body {
    width: 100%;
    margin-left: 0;
  }
  .development-company__name {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
  .development-company__text {
    margin-top: 1.1rem;
    font-size: 1.4rem;
  }
}
/*-------------------------------------------------------------

////CTA

-------------------------------------------------------------*/
/*====================================================
////class .cta
====================================================*/
.cta {
  width: 100%;
  background-image: url(../img/cta-bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 8rem 0;
  position: relative;
}

.cta__inner {
  width: 100%;
  background-color: var(--white);
  padding: 5rem 5rem 6rem 5rem;
}

.cta__title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}

.cta__text {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
}

.cta__info {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 4rem;
  border-right: 1px solid var(--black);
}

.cta__tel-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.cta__tel-number {
  font-family: var(--roboto);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.cta__tel-number::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-image: url(../img/tel-icon_blue.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
}

.cta_reception-hours {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.8rem;
}

.cta__btn {
  display: block;
  width: 40rem;
  max-width: 100%;
  padding: 2.5rem 6.8rem;
  border-radius: 1rem;
  background-color: var(--red);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  text-align: center;
  margin-left: 4rem;
  position: relative;
}

.cta__btn::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-top: solid 0.3rem var(--white);
  border-right: solid 0.3rem var(--white);
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: rotate(45deg);
  margin-top: -0.8rem;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .cta {
    background-image: url(../img/cta-bg_sp.jpg);
    padding: 1.5rem 0 6rem;
  }
  .cta__inner {
    padding: 1.5rem 1.5rem 3rem 1.5rem;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
  }
  .cta__title {
    font-size: 2.2rem;
  }
  .cta__text {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
  .cta__info {
    margin-top: 2rem;
    flex-direction: column;
  }
  .cta__tel {
    padding-right: 0;
    border-right: none;
  }
  .cta__tel-text {
    font-size: 1.6rem;
  }
  .cta__tel-number {
    font-size: 3.8rem;
  }
  .cta__tel-number::before {
    width: 3.4rem;
    height: 3.4rem;
  }
  .cta_reception-hours {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
  .cta__btn {
    width: 31.5rem;
    padding: 1rem 5.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-left: 0;
    margin-top: 2rem;
  }
  .cta__btn::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    right: 2rem;
    transform: rotate(45deg);
    margin-top: -0.7rem;
  }
}
/*-------------------------------------------------------------

////おすすめの導入先

-------------------------------------------------------------*/
/*====================================================
////class .destinations
====================================================*/
.destinations {
  width: 100%;
  background-color: var(--lightblue);
}

.destinations__inner {
  padding-top: 8rem;
  padding-bottom: 16rem;
}

.destinations__list {
  margin-top: 8rem;
  display: flex;
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.destinations__item {
  width: 28%;
}

.destinations__item + .destinations__item {
  margin-left: 8%;
}

.destinations__img {
  width: 100%;
}

.destinations__subtitle {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.destinations__text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .destinations__inner {
    padding-top: 3rem;
    padding-bottom: 6rem;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
  }
  .destinations__list {
    margin-top: 3rem;
    flex-direction: column;
  }
  .destinations__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .destinations__item + .destinations__item {
    margin-left: 0;
    margin-top: 4rem;
  }
  .destinations__img {
    width: 20rem;
    margin-inline: auto;
  }
  .destinations__subtitle {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
  .destinations__text {
    margin-top: 1.1rem;
    font-size: 1.4rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
/*-------------------------------------------------------------

////検出のメカニズム

-------------------------------------------------------------*/
/*====================================================
////class .mechanism
====================================================*/
.mechanism {
  position: relative;
  overflow: hidden;
}

.mechanism__inner {
  padding-top: 8rem;
  padding-bottom: 16rem;
}

.mechanism__list {
  margin-top: 14rem;
}

.mechanism__item + .mechanism__item {
  margin-top: 14rem;
}

.mechanism__textArea {
  width: 73.3rem;
  position: relative;
  z-index: 0;
}

.mechanism__textArea::after {
  content: "";
  display: block;
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 100vw;
  height: 34.5rem;
  background-color: var(--blue);
  z-index: -1;
}

.mechanism__subtitle {
  font-size: 3.3rem;
  font-weight: 700;
  color: var(--white);
}

.mechanism__text {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 2rem;
}

.mechanism__img {
  margin-top: 4rem;
  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
}

.mechanism__item--re .mechanism__textArea {
  margin-left: auto;
}

.mechanism__item--re .mechanism__textArea::after {
  right: auto;
  left: -6rem;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 767px) {
  .mechanism__inner {
    padding-top: 3rem;
    padding-bottom: 6rem;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
  }
  .mechanism__list {
    margin-top: 5rem;
  }
  .mechanism__item + .mechanism__item {
    margin-top: 6rem;
  }
  .mechanism__textArea {
    width: 100%;
  }
  .mechanism__textArea::after {
    content: "";
    display: block;
    position: absolute;
    top: -2rem;
    right: 0;
    width: 100vw;
    height: 19.2rem;
  }
  .mechanism__subtitle {
    font-size: 2rem;
  }
  .mechanism__text {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    padding-right: 1.5rem;
  }
  .mechanism__img {
    margin-top: 3rem;
  }
  .mechanism__item--re .mechanism__textArea {
    margin-left: 0;
  }
  .mechanism__item--re .mechanism__textArea::after {
    right: 0;
    left: auto;
  }
}
/*-------------------------------------------------------------

////専門家の声

-------------------------------------------------------------*/
/*====================================================
////class .expert-voice
====================================================*/
.expert-voice {
  background-color: #EDF4FA;
}
.expert-voice__inner {
  padding-top: 2.8rem;
  padding-bottom: 6rem;
}
.expert-voice__wrap {
  background-color: #fff;
  padding: 2rem 1.5rem 2.1rem 1.5rem;
  margin-top: 3rem;
}
.expert-voice__person--img {
  width: 25.7%;
  margin: 0 auto;
}
.expert-voice__text {
  margin-top: 1.5rem;
}
.expert-voice__text--affiliation {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 600;
}
.expert-voice__text--name {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 600;
}
.expert-voice__text--name span {
  font-size: 2rem;
  line-height: 1.2;
  display: inline-block;
}
.expert-voice__text--intro {
  background-color: #EDF4FA;
  margin-top: 1rem;
  padding: 1rem 1rem 1.6rem 1rem;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
.expert-voice__text--intro .head {
  font-weight: 600;
  color: #0068B7;
}
.expert-voice__text--intro .body {
  margin-top: 0.3rem;
}
.expert-voice__lead {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 1.7rem;
}
.expert-voice__table {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.95rem;
}
.expert-voice__table th, .expert-voice__table td {
  width: 25%;
  text-align: center;
}
.expert-voice__table .th01,
.expert-voice__table .th02,
.expert-voice__table .th03,
.expert-voice__table .th04 {
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-weight: 400;
  aspect-ratio: 79/48;
}
.expert-voice__table .th02,
.expert-voice__table .th04 {
  font-weight: 600;
  color: #fff;
}
.expert-voice__table .th01,
.expert-voice__table .th04 {
  padding: 1.4rem 0;
}
.expert-voice__table .th02,
.expert-voice__table .th03 {
  padding: 0.5rem 0;
}
.expert-voice__table .th01,
.expert-voice__table .th03 {
  background-color: #E6E6E6;
}
.expert-voice__table .th02 {
  background-color: #0068B7;
}
.expert-voice__table .th04 {
  background-color: #B80018;
}
.expert-voice__table td {
  padding: 0.55rem 0;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  border-bottom: 1px solid #E6E6E6;
}
.expert-voice__table .td-body01,
.expert-voice__table .td-body03 {
  color: #000;
}
.expert-voice__table .td-body02 {
  color: #0068B7;
}
.expert-voice__table .td-body04 {
  color: #B80018;
}

.expert-voice-date {
  margin-top: 2.5rem;
}
.expert-voice-date__head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.expert-voice-date__head--title {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 600;
}
.expert-voice-date__head--att {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

@media screen and (min-width: 768px) {
  .expert-voice__inner {
    padding-top: 8rem;
    padding-bottom: 16rem;
  }
  .expert-voice__wrap {
    padding: 5rem 5rem 6.1rem 5rem;
    max-width: 100rem;
    margin: 8rem auto 0 auto;
    box-sizing: border-box;
  }
  .expert-voice__person {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .expert-voice__person--img {
    width: 15.5555555556%;
    max-width: 14rem;
    margin: 0 auto 0 0;
  }
  .expert-voice__text {
    width: calc(100% - 2rem - 15.5555555556%);
    margin-top: 0;
  }
  .expert-voice__text--affiliation {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 600;
  }
  .expert-voice__text--name {
    margin-top: 0.4rem;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 600;
  }
  .expert-voice__text--name span {
    font-size: 2.4rem;
    line-height: 1.1666666667;
    display: inline-block;
  }
  .expert-voice__text--intro {
    margin-top: 1.4rem;
    padding: 1rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .expert-voice__text--intro .body {
    margin-top: 0;
  }
  .expert-voice__lead {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .expert-voice__table {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
  }
  .expert-voice__table th, .expert-voice__table td {
    width: 25%;
    text-align: center;
  }
  .expert-voice__table .th01,
  .expert-voice__table .th02,
  .expert-voice__table .th03,
  .expert-voice__table .th04 {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    font-weight: 400;
    aspect-ratio: auto;
  }
  .expert-voice__table .th01,
  .expert-voice__table .td-body01 {
    width: 14.2857142857%;
    max-width: 10rem;
  }
  .expert-voice__table .th02,
  .expert-voice__table .th03,
  .expert-voice__table .th04,
  .expert-voice__table .td-body02,
  .expert-voice__table .td-body03,
  .expert-voice__table .td-body04 {
    width: 28.5714285714%;
    max-width: 20rem;
  }
  .expert-voice__table .th02,
  .expert-voice__table .th04 {
    font-weight: 600;
    color: #fff;
  }
  .expert-voice__table .th01,
  .expert-voice__table .th04 {
    padding: 0.3rem 0;
  }
  .expert-voice__table .th02,
  .expert-voice__table .th03 {
    padding: 0.3rem 0;
  }
  .expert-voice-date {
    width: 77.7777777778%;
    max-width: 70rem;
    margin: 4.5rem auto 0 7.5%;
  }
  .expert-voice-date__head--title {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .expert-voice-date__head--att {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .expert-voice-date__head--att:last-of-type {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
/*-------------------------------------------------------------

////セクション名

-------------------------------------------------------------*/
/*====================================================
////class
====================================================*/
/* ////////// mobile ////////// */
/* ////////// PC ////////// */
/* ////////// tablet ////////// *//*# sourceMappingURL=style.css.map */