@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*=========================================================
　変数
=========================================================*/
/*=========================================================
　共通
=========================================================*/
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
}
body.non-active {
  height: 100%;
  overflow: hidden;
}

p {
  font-size: 16px;
  margin-top: 0em;
  margin-bottom: 0em;
}

a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.btn {
  background: #141e41;
  font-weight: 700;
  padding: 6px 30px;
  color: #fff !important;
  border-radius: 24px;
  line-height: 1em;
}

.container {
  width: 80%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1200px;
  }
}

section {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 600px) {
  section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}

/*=========================================================
　header
=========================================================*/
header {
  padding: 12px 50px 12px 56px;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 90px;
  z-index: 100;
  background: #fff;
}
@media screen and (max-width: 900px) {
  header {
    padding-left: 8px;
    padding-right: 24px;
  }
}
header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
header .nav .logo {
  width: 224.3222px;
  height: auto;
}
@media screen and (max-width: 600px) {
  header .nav .logo {
    width: 180px;
  }
}
header .nav .logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
header .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
header .menu__line1 {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}
header .menu__line1 p a {
  color: #727171;
  font-size: 10px;
}
header .menu__line1 ul {
  display: flex;
  align-items: center;
  padding-left: 0;
}
header .menu__line1 ul li {
  padding: 6px;
  list-style: none;
  border-left: 0.2316px solid #b5b5b6;
  border-top: 0.2316px solid #b5b5b6;
  border-bottom: 0.2316px solid #b5b5b6;
  display: flex;
}
header .menu__line1 ul li:last-child {
  border-right: 0.2316px solid #b5b5b6;
}
header .menu__line1 ul li a {
  color: #b5b5b6;
  font-size: 10.8px;
  font-family: "din-2014", sans-serif;
}
header .menu__line1 ul li a.current {
  color: #231815;
}

/*=========================================================
　footer
=========================================================*/
.footer {
  margin-top: 80px;
  padding: 0px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer .copyright {
  font-size: 10px;
  text-align: center;
}
@media (max-width: 900px) {
  .footer .copyright {
    font-size: 9px;
  }
}
@media (max-width: 600px) {
  .footer .copyright {
    font-size: 6px;
  }
}
.footer .cookie__consent {
  position: fixed;
  left: 0;
  bottom: 0px;
  transition: all 0.5s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  width: 100%;
  justify-content: center;
  border-top: 1px solid #fff;
  background: rgb(233, 85, 19);
}
@media (max-width: 900px) {
  .footer .cookie__consent {
    flex-wrap: wrap;
    row-gap: 24px;
  }
}
.footer .cookie__consent.is-show {
  opacity: 1;
}
.footer .cookie__consent__txt {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  color: #fff;
  font-size: 12px;
  line-height: 1.5em;
}
@media (max-width: 900px) {
  .footer .cookie__consent__txt {
    flex: none;
  }
}
.footer .cookie__consent__txt a {
  color: #141e41;
  text-decoration: underline;
}
.footer .cookie__consent__btn {
  width: 150px;
}
.footer .cookie__consent__btn button {
  width: 100%;
  border: 0px solid #e95513;
  border-radius: 50px;
  background: #fff;
  padding: 8px 12px;
  color: #000;
}

/*=========================================================
　main
=========================================================*/
.top {
  /*========== mv ==========*/
  /*========== service ==========*/
  /*========== voice ==========*/
  /*========== tuor ==========*/
}
.top .mv {
  height: calc(100vh - 90px);
  margin-top: 90px;
  padding: 20px 50px 44px 56px;
  text-align: center;
}
@media (max-width: 900px) {
  .top .mv {
    padding: 24px 62px;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .top .mv {
    padding: 24px 24px 0;
  }
}
.top .mv img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .top .mv img {
    height: auto;
  }
}
.top .service__wrapper {
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 62px;
}
@media (max-width: 600px) {
  .top .service__wrapper {
    padding: 0 24px;
  }
}
.top .service__wrapper__inner {
  display: flex;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.45);
  margin-bottom: 55px;
  border-radius: 16px;
  width: 100%;
  min-height: 420px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner {
    margin-bottom: 40px;
    min-height: 308px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner {
    flex-wrap: wrap;
  }
}
.top .service__wrapper__inner__illust {
  width: 42%;
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__illust {
    width: 40%;
    border-radius: 0px 0 0px 0px;
    padding-right: 24px;
  }
}
.top .service__wrapper__inner__illust img {
  width: 100%;
  height: 100%;
  border-radius: 16px 0 0 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__illust img {
    border-radius: 0px 0 0px 0px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.top .service__wrapper__inner__txt {
  width: 58%;
  position: relative;
  background: #e95513;
  border-radius: 0 16px 16px 0;
  padding: 60px 60px 60px 70px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner__txt {
    padding: 44px 46px 50px 52px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__txt {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 0px;
    background: #fff;
    border-radius: 16px;
  }
}
.top .service__wrapper__inner__txt .num {
  position: absolute;
}
.top .service__wrapper__inner__txt .num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .service__wrapper__inner__txt .ttl {
  margin-bottom: 45px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner__txt .ttl {
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__txt .ttl {
    margin-bottom: 0px;
    width: 60%;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    border-radius: 16px 0 0 0;
  }
}
.top .service__wrapper__inner__txt .ttl h2 {
  font-size: 24px;
  color: #fff;
  line-height: 2em;
  margin: -12px 0;
  font-weight: 700;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner__txt .ttl h2 {
    font-size: 17.6px;
    margin: -9px 0;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__txt .ttl h2 {
    color: #e95513;
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__txt .detail {
    background: #e95513;
    padding: 24px;
    border-radius: 0 0 0 16px;
  }
}
.top .service__wrapper__inner__txt .detail p {
  font-size: 14px;
  color: #fff;
  line-height: 2.3em;
  letter-spacing: -0.01em;
  margin: -16px 0;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner__txt .detail p {
    font-size: 10px;
    margin: -12px 0;
    letter-spacing: 0em;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner__txt .detail p {
    margin: 0px;
    font-size: 13.2px;
    line-height: 1.9em;
  }
}
.top .service__wrapper__inner__txt .detail p.note {
  font-size: 9px;
  margin: 16px 0 -10.35px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner__txt .detail p.note {
    font-size: 6px;
  }
}
.top .service__wrapper__inner.service01 .service__wrapper__inner__txt .num {
  width: 52px;
  height: 132px;
  top: 0;
  left: 0;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner.service01 .service__wrapper__inner__txt .num {
    width: 38px;
    height: 97px;
    top: -2px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner.service01 .service__wrapper__inner__txt .num {
    width: 28px;
    height: 60px;
    top: 12px;
    left: 24px;
  }
}
.top .service__wrapper__inner.service02 .service__wrapper__inner__txt {
  padding-bottom: 38px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner.service02 .service__wrapper__inner__txt {
    padding-bottom: 0px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner.service02 .service__wrapper__inner__txt {
    padding-bottom: 0px;
  }
}
.top .service__wrapper__inner.service02 .service__wrapper__inner__txt .num {
  width: 91px;
  height: 135px;
  top: -2px;
  left: -4px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner.service02 .service__wrapper__inner__txt .num {
    width: 68px;
    height: 99px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner.service02 .service__wrapper__inner__txt .num {
    width: 52px;
    height: 60px;
    top: 12px;
    left: 24px;
  }
}
.top .service__wrapper__inner.service03 .service__wrapper__inner__txt {
  padding-top: 26px;
  padding-bottom: 18px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner.service03 .service__wrapper__inner__txt {
    padding-top: 20px;
    padding-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner.service03 .service__wrapper__inner__txt {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.top .service__wrapper__inner.service03 .service__wrapper__inner__txt .num {
  width: 91px;
  height: 138px;
  top: -2px;
  left: -4px;
}
@media (max-width: 900px) {
  .top .service__wrapper__inner.service03 .service__wrapper__inner__txt .num {
    width: 67px;
    height: 101px;
  }
}
@media (max-width: 600px) {
  .top .service__wrapper__inner.service03 .service__wrapper__inner__txt .num {
    width: 48px;
    height: 60px;
    top: 12px;
    left: 24px;
  }
}
.top .service__wrapper__inner.service03 .service__wrapper__inner__txt .ttl {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .top .service__wrapper__inner.service03 .service__wrapper__inner__txt .ttl {
    margin-bottom: 0px;
  }
}
.top .service__wrapper__inner.service03 .service__wrapper__inner__txt .detail p {
  letter-spacing: -0.05em;
}
.top .voice {
  background: #fcf4e0;
}
@media (max-width: 900px) {
  .top .voice {
    padding-bottom: 28px;
  }
}
@media (max-width: 748px) {
  .top .voice {
    padding-bottom: 100px;
  }
}
.top .voice__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  max-width: 998px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 62px;
}
@media (max-width: 900px) {
  .top .voice__wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    -moz-column-gap: 36px;
         column-gap: 36px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper {
    padding: 0 24px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(9, 1fr);
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}
.top .voice__wrapper__inner {
  position: relative;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.ttl {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.top .voice__wrapper__inner.ttl h2 {
  font-size: 100px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.ttl h2 {
    font-size: 110px;
  }
}
@media (max-width: 600px) {
  .top .voice__wrapper__inner.ttl h2 {
    font-size: 80px;
  }
}
.top .voice__wrapper__inner.ttl p {
  font-size: 40px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.ttl p {
    font-size: 44px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.ttl p {
    font-size: 28px;
  }
}
.top .voice__wrapper__inner .content {
  background: #fff;
  border: 2.4px solid;
  padding: 20px 23px;
  position: absolute;
  border-radius: 9px;
}
.top .voice__wrapper__inner .content p {
  font-size: 12px;
  line-height: 1.75em;
  margin: -6px 0;
  font-weight: 700;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner .content p {
    font-size: 13.2px;
  }
}
.top .voice__wrapper__inner .content:after {
  content: "";
  position: absolute;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice01 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice01 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.top .voice__wrapper__inner.voice01 .content {
  border-color: #00b28a;
  top: 20px;
  left: 0;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice01 .content {
    top: -2px;
    left: auto;
    right: -6px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice01 .content {
    top: auto;
    right: auto;
  }
}
.top .voice__wrapper__inner.voice01 .content:after {
  background: url(../img/face-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -18px;
  right: 20px;
  width: 35.43px;
  height: 43.5689px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice01 .content:after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice02 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice02 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.top .voice__wrapper__inner.voice02 .content {
  border-color: #ff8cb2;
  top: 0;
  left: -16px;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice02 .content {
    top: 6px;
    left: 12px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice02 .content {
    top: auto;
    left: auto;
    padding-left: 30px;
  }
}
.top .voice__wrapper__inner.voice02 .content:after {
  background: url(../img/face-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -12px;
  right: 10px;
  width: 40.1813px;
  height: 41.7371px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice02 .content:after {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice03 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice03 {
    grid-column: 1/2;
    grid-row: 8/9;
  }
}
.top .voice__wrapper__inner.voice03 .content {
  border-color: #2ea7e0;
  left: 14px;
  top: 7px;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice03 .content {
    top: 54px;
    left: 22px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice03 .content {
    top: auto;
    left: auto;
  }
}
.top .voice__wrapper__inner.voice03 .content:after {
  background: url(../img/face-03.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -30px;
  right: 30px;
  width: 35.43px;
  height: 37.4413px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice03 .content:after {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice04 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice04 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.top .voice__wrapper__inner.voice04 .content {
  border-color: #ffd000;
  padding-right: 30px;
  top: 0;
  left: 10px;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice04 .content {
    top: 40px;
    left: 22px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice04 .content {
    top: auto;
    left: auto;
  }
}
.top .voice__wrapper__inner.voice04 .content:after {
  background: url(../img/face-04.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 35.43px;
  height: 39.8174px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice04 .content:after {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice05 {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice05 {
    grid-column: 1/2;
    grid-row: 9/10;
  }
}
.top .voice__wrapper__inner.voice05 .content {
  border-color: #00b28a;
  right: 0;
  top: 0;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice05 .content {
    top: -28px;
    left: 50px;
    right: auto;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice05 .content {
    top: auto;
    left: auto;
  }
}
.top .voice__wrapper__inner.voice05 .content:after {
  background: url(../img/face-05.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -12px;
  right: 3px;
  width: 37.4132px;
  height: 35.43px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice05 .content:after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice06 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice06 {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
.top .voice__wrapper__inner.voice06 .content {
  border-color: #ff7d2b;
  left: 10px;
  bottom: 4px;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice06 .content {
    top: 51px;
    left: auto;
    right: 0;
    bottom: auto;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice06 .content {
    top: auto;
    right: auto;
  }
}
.top .voice__wrapper__inner.voice06 .content:after {
  background: url(../img/face-06.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -22px;
  right: 30px;
  width: 35.43px;
  height: 42.5833px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice06 .content:after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice07 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice07 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}
.top .voice__wrapper__inner.voice07 .content {
  border-color: #2ea7e0;
  padding-right: 30px;
  left: 0;
  bottom: 0;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice07 .content {
    top: -16px;
    left: 10px;
    bottom: auto;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice07 .content {
    top: auto;
    left: auto;
  }
}
.top .voice__wrapper__inner.voice07 .content:after {
  background: url(../img/face-07.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 35.43px;
  height: 35.43px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice07 .content:after {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice08 {
    grid-column: 2/3;
    grid-row: 4/5;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice08 {
    grid-column: 1/2;
    grid-row: 7/8;
  }
}
.top .voice__wrapper__inner.voice08 .content {
  border-color: #ff8cb2;
  top: 17px;
  left: 46px;
}
@media (max-width: 900px) {
  .top .voice__wrapper__inner.voice08 .content {
    top: -24px;
    left: 22px;
  }
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice08 .content {
    top: auto;
    left: auto;
  }
}
.top .voice__wrapper__inner.voice08 .content:after {
  background: url(../img/face-08.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -20px;
  right: 20px;
  width: 35.6521px;
  height: 38.7685px;
}
@media (max-width: 748px) {
  .top .voice__wrapper__inner.voice08 .content:after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
}
.top .tour h2 {
  font-size: 22px;
  text-align: center;
  padding: 0 62px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.3em;
}
@media (max-width: 900px) {
  .top .tour h2 {
    font-size: 17.6px;
  }
}
@media (max-width: 600px) {
  .top .tour h2 {
    padding: 0 24px;
  }
}
.top .tour__content {
  max-width: 679px;
  padding: 0 62px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}
@media (max-width: 600px) {
  .top .tour__content {
    padding: 0 24px;
  }
}
.top .tour__content:last-child {
  margin-bottom: 0px;
}
.top .tour__content__img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}
.top .tour__content__img__inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .tour__content__img__inner.ttl {
  background: #e95513;
  padding: 30px 20px;
}
.top .tour__content__img__inner.ttl h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.8em;
  margin: -10px 0;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .top .tour__content__img__inner.ttl h3 {
    font-size: 16px;
  }
}
.top .tour__content__img__inner.ttl p {
  font-size: 12px;
  line-height: 1.75em;
  margin: -4.5px 0;
  color: #fff;
}
.top .tour__content.tour03 .tour__content__img__inner.ttl {
  grid-column: 1/3;
}
.top .tour__content__voice {
  margin-bottom: 36px;
}
.top .tour__content__voice__wrapper__inner {
  width: 100%;
  margin-bottom: 20px;
}
.top .tour__content__voice__wrapper__inner:last-child {
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .top .tour__content__voice__wrapper__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.top .tour__content__voice__wrapper__inner .content {
  background: #fff;
  border: 2.4px solid;
  padding: 20px 23px;
  border-radius: 9px;
  display: inline-block;
  position: relative;
}
.top .tour__content__voice__wrapper__inner .content p {
  font-size: 12px;
  line-height: 1.75em;
  margin: -6px 0;
  font-weight: 700;
}
.top .tour__content__voice__wrapper__inner .content:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top .tour__content__voice__wrapper__inner.tour-voice01 .content {
  border-color: #8fc31f;
  padding-right: 34px;
  left: 51%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .top .tour__content__voice__wrapper__inner.tour-voice01 .content {
    left: auto;
    transform: none;
  }
}
.top .tour__content__voice__wrapper__inner.tour-voice01 .content:after {
  background: url(../img/face-09.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: -20px;
  width: 43.5895px;
  height: 43.1498px;
}
.top .tour__content__voice__wrapper__inner.tour-voice02 .content {
  border-color: #ffc8cc;
  padding-left: 34px;
  left: 45%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .top .tour__content__voice__wrapper__inner.tour-voice02 .content {
    left: auto;
    transform: none;
  }
}
.top .tour__content__voice__wrapper__inner.tour-voice02 .content:after {
  background: url(../img/face-10.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -20px;
  width: 35.43px;
  height: 39.5269px;
}
.top .tour__content__voice__wrapper__inner.tour-voice03 .content {
  border-color: #ffd000;
  padding-right: 34px;
  left: 51%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .top .tour__content__voice__wrapper__inner.tour-voice03 .content {
    left: auto;
    transform: none;
  }
}
.top .tour__content__voice__wrapper__inner.tour-voice03 .content:after {
  background: url(../img/face-11.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: -20px;
  width: 35.0529px;
  height: 43.993px;
}
.top .tour__content__voice__wrapper__inner.tour-voice04 .content {
  border-color: #00b28a;
  padding-left: 34px;
  left: 52%;
  transform: translateX(-50%);
}
.top .tour__content__voice__wrapper__inner.tour-voice04 .content:after {
  background: url(../img/face-12.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -20px;
  width: 35.6521px;
  height: 38.7685px;
}
.top .tour__content__btn {
  text-align: center;
}

/*=========================================================
　SUBPAGE
=========================================================*/
.subpage .pageheader {
  background: #e95513;
  margin-top: 90px;
  padding-top: 92px;
  padding-bottom: 92px;
  padding-left: 62px;
  padding-right: 62px;
}
.subpage .pageheader h1 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

/*=========================================================
　英語のみ
=========================================================*/
.en h1, .en h2, .en h3, .en h4, .en h5, .en p {
  font-family: "din-2014", sans-serif;
}
.en .service__wrapper__inner__txt {
  padding: 72px 30px 70px 65px;
}
@media (max-width: 600px) {
  .en .service__wrapper__inner__txt {
    padding: 0;
  }
}
.en .service__wrapper__inner__txt .detail p {
  font-size: 13px;
}
.en .voice__wrapper__inner .content {
  padding: 23px 20px;
}
.en .top .voice__wrapper {
  row-gap: 16px;
}

/*# sourceMappingURL=style.css.map */