@charset "UTF-8";
/*-- settingフォルダまとめ用 --*/
:root {
  --color-primary: #b90a1a;
  --color-accent: #F3A332;
  --color-white: #ffffff;
  --color-white-rgb: 255,255,255;
  --color-black: #000000;
  --color-black-rgb: 0,0,0;
  --color-black-2: #111111;
  --color-gray-1: #252525;
  --color-gray-2: #525252;
  --color-gray-3: #cccccc;
  --color-gray-4: #f6f6f6;
  --color-blue: #4285f4;
  --color-background: var(--color-white);
  --color-text: var(--color-gray-2);
  --color-link: var(--color-blue);
  --color-btn: var(--color-accent);
  --color-tit: var(--color-gray-1);
  --color-assort: var(--color-primary);
  --color-table: var(--color-primary);
  --color-tableline: var(--color-gray-3);
  --color-footer: var(--color-primary);
  --color-list: var(--color-primary);
  --color-bg: var(--color-gray-4);
  --section-padding-sp: 40px 8px;
  --section-padding-pc: 80px 30px;
  --section-padding: var(--section-padding-sp);
  --border-radius-sp: 60px;
  --border-radius-pc: 60px;
  --border-radius: var(--border-radius-sp);
}

/*-- settingフォルダまとめ用 --*/
/* ブレイクポイント設定
--------------------------*/
/*==========================
 mixin設定
==========================*/
/*==========================
common - 共通
==========================*/
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%;
  font-weight: normal;
}

body {
  width: 100%;
  min-width: 300px;
  background-color: var(--color-background);
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 1px;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}
@media (min-width: 768px) {
  body {
    --border-radius: var(--border-radius-pc);
    --section-padding: var(--section-padding-pc);
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  body.open {
    overflow: hidden;
    height: 100%;
  }
}

a {
  color: var(--color-link);
  transition: 0.4s;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: var(--color-text);
  }
  a:hover {
    opacity: 0.6;
  }
}

img {
  width: 100%;
}

.font-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb64 {
  margin-bottom: 64px !important;
}
@media (max-width: 767px) {
  .mb64 {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .spHdn {
    display: none;
  }
}

@media (min-width: 768px) {
  .pcHdn {
    display: none;
  }
}

.btn {
  position: relative;
  margin: 0 auto;
  height: 60px;
  text-align: center;
}
.btn a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  height: 100%;
  font-size: clamp(1.8rem, 1.427rem + 0.98vw, 2.4rem);
  line-height: 56px;
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius);
  transition: all 0.5s;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 42%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 32px;
  z-index: 99;
  transition: all 0.5s;
}
@media (hover: hover) {
  .btn a:hover {
    opacity: 1;
    color: var(--color-primary);
    background: var(--color-white);
  }
  .btn a:hover::before {
    border-color: var(--color-primary);
  }
}
.btn .tel a {
  background-color: #fff;
  border-color: #b0b0b0;
  color: #000;
  font-size: 1.6rem;
}
.btn .tel a::before {
  content: none;
}
.btn.map {
  max-width: 260px;
}
.btn.map02 {
  max-width: 160px;
  height: 45px;
  margin: 12px 0 0 0;
}
.btn.map02 a {
  padding-right: 8px;
  line-height: 41px;
  font-size: clamp(1.6rem, 1.476rem + 0.327vw, 1.8rem);
}
.btn.map02 a::before {
  right: 20px;
  top: 38%;
}
@media (max-width: 767px) {
  .btn.map02 {
    margin: 12px auto 0;
  }
}
.btn.contact {
  height: 80px;
}
.btn.contact a {
  line-height: 76px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.flex div {
  width: 48%;
}
.flex.contact div {
  height: 80px;
}

.btn-map {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.85em;
  font-weight: bold;
  padding: 0.6em 0.8em;
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  margin: 0.5em 0 0 0;
}
.btn-map span {
  position: relative;
  display: inline-block;
  padding: 0 1em 0 0;
}
.btn-map span::before, .btn-map span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-out;
}
.btn-map span::after {
  content: "";
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* keyv - キーヴィジュアル
--------------------------*/
#keyv {
  padding-top: 66px;
}
#keyv div {
  position: relative;
}
#keyv div a img {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 16%;
  max-width: 268px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  #keyv {
    padding-top: 54px;
  }
  #keyv div a img {
    bottom: 46%;
    left: 82%;
    width: 30%;
    aspect-ratio: 1/1;
  }
}

/* main - メインコンテンツ
--------------------------*/
.contents {
  position: relative;
  width: 100%;
}

.contents-bg {
  background-color: #ffeef0;
}

.contents-inn {
  padding: var(--section-padding);
}
@media (min-width: 768px) {
  .contents-inn {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.inner {
  padding: 40px 8px;
  max-width: 1040px;
}
@media (min-width: 768px) {
  .inner {
    margin: 0 auto;
    padding: 80px 30px;
  }
}

.movie-box {
  margin: 0 auto;
  max-width: 560px;
}
.movie-box .movie {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie-box .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#access p {
  font-size: clamp(1.6rem, 1.103rem + 1.307vw, 2.4rem);
  line-height: 2;
  margin: 0 0 48px;
  text-align: center;
}
@media (max-width: 767px) {
  #access p {
    line-height: 1.5;
    margin: 0 0 32px;
  }
}

#point {
  padding-bottom: 80px;
}
#point p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

#merit .list01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#merit .list01 li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  width: calc((100% - 32px) / 3);
  height: 100%;
  aspect-ratio: 1;
  background-color: #fff;
}
#merit .list01 li:nth-child(3n) {
  margin-right: 0;
}
#merit .list01 li:nth-child(n+4) {
  margin-top: 16px;
}
#merit .list01 li figure {
  max-width: min(200px, 15vw);
  margin: 0 auto 16px;
}
#merit .list01 li figure img {
  max-width: 100%;
  height: auto;
}
#merit .list01 li p {
  font-weight: bold;
  text-align: center;
  font-size: clamp(1.6rem, 1.103rem + 1.307vw, 2.4rem);
  line-height: 1.3;
  color: var(--color-primary);
}
#merit .list01 li p .small {
  font-size: clamp(1.3rem, 1.114rem + 0.49vw, 1.6rem);
}
#merit .list01 li p.line02 {
  line-height: 2.6;
}
@media (max-width: 767px) {
  #merit .list01 li {
    width: calc(50% - 4px);
    margin-right: 0;
  }
  #merit .list01 li figure {
    max-width: min(200px, 25vw);
  }
  #merit .list01 li:nth-child(n+3) {
    margin-top: 8px;
  }
}

.aspect-ratio-10x3 {
  --aspect-ratio-sp: 10 / 3;
  --aspect-ratio-pc: 10 / 3;
}
.aspect-ratio-10x3 img {
  aspect-ratio: var(--aspect-ratio-pc);
}

.aspect-ratio-200x165 {
  --aspect-ratio-sp: 200 / 165;
  --aspect-ratio-pc: 200 / 165;
}
.aspect-ratio-200x165 img {
  aspect-ratio: var(--aspect-ratio-pc);
}

.contents-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.275em;
}
.contents-ttl span.ja {
  font-size: clamp(2.4rem, 1.407rem + 2.614vw, 4rem);
  color: var(--color-primary);
}
.contents-ttl span.en {
  font-size: clamp(1.4rem, 1.276rem + 0.327vw, 1.6rem);
  font-family: メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic Medium", "Yu Gothic", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--color-accent);
}

.contents-subttl {
  margin-bottom: 16px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  text-align: center;
  color: var(--color-tit);
  font-weight: bold;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--color-assort);
}
@media (min-width: 768px) {
  .contents-subttl {
    margin-bottom: 28px;
    font-size: 2.4rem;
  }
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.d-flex li {
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .d-flex li {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .d-flex.flex-2-sp-item li {
    width: calc(50% - 8px);
  }
}
@media (min-width: 768px) {
  .d-flex.flex-2-item li {
    width: calc(50% - 16px);
  }
  .d-flex.flex-3-item li {
    width: calc(33.3333333333% - 21px);
  }
  .d-flex.flex-4-item li {
    width: calc(25% - 24px);
  }
}

.layout-table-normal dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
  width: 100%;
}
.layout-table-normal dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--color-table);
  padding: 12px 8px;
  width: 100%;
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .layout-table-normal dt {
    padding: 24px;
    width: 180px;
  }
}
.layout-table-normal dd {
  background-color: var(--color-background);
  border: solid 1px var(--color-table);
  margin-left: 0;
  padding: 12px 8px;
  vertical-align: top;
  width: 100%;
}
@media (min-width: 768px) {
  .layout-table-normal dd {
    margin-left: 6px;
    padding: 24px;
    flex: 1;
  }
}
.layout-table-line dl {
  display: flex;
  border-bottom: solid 1px var(--color-table);
  width: 100%;
}
.layout-table-line dl:last-child {
  border-bottom: none;
}
.layout-table-line dt {
  padding: 16px 8px;
  width: 100px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .layout-table-line dt {
    padding: 24px;
    width: 180px;
  }
}
.layout-table-line dd {
  border-left: solid 1px var(--color-table);
  padding: 16px 8px;
  vertical-align: middle;
  flex: 1;
}
@media (min-width: 768px) {
  .layout-table-line dd {
    padding: 24px;
  }
}
.layout-table-column {
  border: 1px solid var(--color-tableline);
  border-collapse: collapse;
  background: var(--color-background);
  width: 100%;
}
.layout-table-column th, .layout-table-column td {
  padding: 12px 8px;
  border: 1px solid var(--color-tableline);
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .layout-table-column th, .layout-table-column td {
    padding: 12px;
  }
}
.layout-table-column thead {
  background: var(--color-table);
  color: var(--color-white);
}

/*==========================
image-box - パララックス
==========================*/
.image-box .image-box-area {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 768px) {
  .image-box .image-box-area {
    height: 330px;
    background-attachment: fixed;
  }
}
.image-box .image-box-area.n-01 {
  background-image: url(../img/top/parallax-ph-001.jpg);
}

/*==========================
sliding - スライド
==========================*/
.sliding {
  overflow: hidden;
}
.sliding .sliding-area {
  height: 200px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-repeat: repeat-x;
  background-size: cover;
}
@media (min-width: 768px) {
  .sliding .sliding-area {
    height: 288px;
  }
}
.sliding .sliding-area.n-01 {
  background-image: url(../../lp/img/top/sliding-ph-001.jpg);
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2970px 0;
  }
}
/*==========================
header - ヘッダー
==========================*/
#header {
  position: fixed;
  background: var(--color-background);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 66px;
  display: flex;
  justify-content: space-between;
  z-index: 10000;
}
@media (max-width: 767px) {
  #header {
    display: block;
    height: 54px;
  }
}
#header .header-logo {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
#header .header-logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 50px;
}
@media (max-width: 767px) {
  #header .header-logo {
    padding: 7px 0;
  }
  #header .header-logo img {
    max-width: 209px;
    max-height: 40px;
  }
}
#header nav {
  display: flex;
}
@media (min-width: 768px) {
  #header nav {
    flex-direction: row-reverse;
    font-weight: bold;
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  #header nav {
    font-size: 1.4rem;
  }
}
#header nav a {
  display: table-cell;
  height: 66px;
  vertical-align: middle;
  line-height: 1.5;
  color: var(--color-text);
}
@media (min-width: 768px) {
  #header nav a {
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  #header nav a {
    padding: 15px 0;
  }
}
#header .header-btn {
  margin-right: 60px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #header .header-btn {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #header .header-btn {
    position: fixed;
    top: 0;
    right: 54px;
    margin: 0;
  }
}
#header .header-btn a {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 15px 16px;
}
@media (min-width: 768px) {
  #header .header-btn a {
    padding: 20px 12px;
  }
}
@media (min-width: 992px) {
  #header .header-btn a {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  #header .header-btn a {
    height: 54px;
    font-size: 1.2rem;
    padding: 0 10px;
  }
}
#header .header-nav ul {
  display: flex;
}
#header .header-nav ul li {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  #header .header-nav ul li {
    margin-right: 10px;
    white-space: nowrap;
    display: block;
    width: auto;
  }
}
@media (min-width: 992px) {
  #header .header-nav ul li {
    margin-right: 40px;
  }
}
#header .menu-btn {
  position: fixed;
  display: block;
  background-color: var(--color-white);
  width: 54px;
  height: 54px;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
}
#header .menu-btn::before, #header .menu-btn::after {
  position: absolute;
  display: block;
  width: 28px;
  transition: all 0.3s ease;
}
#header .menu-btn::before {
  content: "";
  background-color: var(--color-primary);
  border: none;
  height: 2px;
  top: 17px;
  left: 13px;
}
#header .menu-btn::after {
  content: "";
  border-top: solid 2px var(--color-primary);
  border-bottom: solid 2px var(--color-primary);
  height: 10px;
  top: 26px;
  left: 13px;
}
@media (min-width: 768px) {
  #header .menu-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .open #header .menu-btn {
    transition: all 0.3s ease;
  }
  .open #header .menu-btn::before, .open #header .menu-btn::after {
    background-color: var(--color-primary);
    border: none;
    height: 2px;
    top: 25px;
    transform: translateX(-75%);
  }
  .open #header .menu-btn::before {
    content: "";
    transform: rotate(-45deg);
  }
  .open #header .menu-btn::after {
    content: "";
    transform: rotate(45deg);
  }
  .open #header .menu-box {
    position: fixed;
    top: 54px;
    left: 0;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 20px;
    overflow: scroll;
  }
  .open #header .menu-box li {
    display: block;
    width: 100%;
    border-bottom: 1px dotted var(--color-gray-3);
  }
  .open #header .menu-box li a {
    position: relative;
    height: auto;
    padding: 24px 20px 24px 20px;
    color: var(--color-primary);
    display: block;
    text-align: center;
  }
  .open #header .menu-box li a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(45deg) translateX(-50%);
  }
}

/*==========================
footer - フッター
==========================*/
#footer {
  background-color: var(--color-footer);
  padding: 15px 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #footer {
    padding: 10px 10px 60px 10px;
  }
}
#footer .copyright {
  line-height: 1;
}
#footer small {
  color: var(--color-white);
  font-size: 1rem;
}
#footer .ga-pdf a {
  color: var(--color-white);
  text-decoration: none;
}
#footer .ga-pdf a:hover {
  text-decoration: underline;
}

#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
}
#page-top a {
  position: relative;
  display: block;
  background-color: var(--color-accent);
  border-radius: var(--border-radius);
  width: 52px;
  height: 52px;
  overflow: hidden;
}
#page-top a::before {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 2px var(--color-white);
  border-right: solid 2px var(--color-white);
  width: 20px;
  height: 20px;
  transform: rotate(315deg);
  top: calc(50% - 5px);
  left: calc(50% - 10px);
}
@media (max-width: 767px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }
}

/*==========================
list - 求人一覧
==========================*/
#list .list-box > li {
  background: var(--color-background);
  border: 2px solid var(--color-list);
  padding: 8px;
}
@media (min-width: 768px) {
  #list .list-box > li {
    padding: 16px;
  }
}
#list .list-box .icon-koyo {
  justify-content: flex-start;
}
#list .list-box .icon-koyo span {
  border: 1px solid var(--color-list);
  padding: 0 8px;
  color: var(--color-list);
  font-size: 1.2rem;
  margin: 0 8px 8px 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #list .list-box .icon-koyo span {
    padding: 6px 16px;
  }
}
#list .list-box .list-ttl {
  margin: 8px 0 16px;
}
#list .list-box dl {
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #list .list-box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: 1px solid var(--color-list);
  }
}
#list .list-box dl dt, #list .list-box dl dd {
  padding: 4px 8px;
}
@media (min-width: 768px) {
  #list .list-box dl dt, #list .list-box dl dd {
    padding: 16px;
  }
}
#list .list-box dl dt {
  width: 100%;
  background: var(--color-list);
  color: var(--color-white);
}
@media (min-width: 768px) {
  #list .list-box dl dt {
    width: 114px;
    background: var(--color-background);
    color: var(--color-list);
    border-bottom: 1px solid var(--color-list);
  }
}
#list .list-box dl dd {
  width: 100%;
}
@media (min-width: 768px) {
  #list .list-box dl dd {
    width: calc(100% - 114px);
    border-bottom: 1px solid var(--color-list);
  }
}
#list .list-box .list-btn {
  justify-content: center;
}
#list .list-box .list-btn li {
  border: 2px solid var(--color-list);
  text-align: center;
  width: 100%;
  margin: 0 12px 8px;
}
@media (min-width: 768px) {
  #list .list-box .list-btn li {
    width: calc(50% - 24px);
  }
}
#list .list-box .list-btn li a {
  display: block;
  padding: 8px;
  color: var(--color-list);
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #list .list-box .list-btn li a {
    padding: 16px;
  }
}

/*==========================
faq - よくある質問
==========================*/
#faq .faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}
#faq .faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 15px 35px 15px 15px;
  background: var(--color-background);
  cursor: pointer;
  border: 1px solid var(--color-assort);
}
@media (min-width: 768px) {
  #faq .faq-q {
    padding: 20px 60px 20px 25px;
  }
}
#faq .faq-q:not(:first-child) {
  margin-top: 20px;
}
#faq .faq-q:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--color-assort);
  border-right: solid 2px var(--color-assort);
  transform: rotate(135deg);
}
@media (min-width: 768px) {
  #faq .faq-q:after {
    right: 20px;
  }
}
#faq .faq-q.open:after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: var(--color-white);
}
@media (min-width: 768px) {
  #faq .faq-q:hover:after {
    border-color: var(--color-white);
  }
}
#faq .faq-a {
  display: none;
  padding: 15px 30px 15px 15px;
  position: relative;
  background-color: var(--color-background);
  border: 1px solid var(--color-assort);
}
@media (min-width: 768px) {
  #faq .faq-a {
    padding: 20px 15px 20px 25px;
  }
}
#faq .flex {
  display: flex;
}
#faq .flex p {
  margin-top: 2px;
  margin-left: 6px;
  width: 100%;
}
@media (min-width: 768px) {
  #faq .flex p {
    margin-top: 4px;
    margin-left: 8px;
  }
}
#faq .flex.step .before {
  width: 10rem;
}
@media (max-width: 767px) {
  #faq .flex.step {
    display: block;
  }
  #faq .flex.step p {
    margin: 0;
  }
}
#faq .before {
  color: var(--color-assort);
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #faq .before {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  #faq .faq-container .faq-q:hover {
    background-color: var(--color-assort);
    color: var(--color-white);
  }
  #faq .faq-container .faq-q:hover .before {
    color: var(--color-white);
  }
}
#faq .faq-container .faq-q:active,
#faq .faq-container .faq-q.open {
  background-color: var(--color-assort);
  color: var(--color-white);
}
#faq .faq-container .faq-q:active .before,
#faq .faq-container .faq-q.open .before {
  color: var(--color-white);
}
#faq .faq-container .faq-q:hover i:before,
#faq .faq-container .faq-q:hover i:active,
#faq .faq-container .faq-q:active,
#faq .faq-container .faq-q.open {
  background-color: var(--color-assort);
  color: var(--color-white);
}
#faq .faq-container .faq-q:hover i:before .before,
#faq .faq-container .faq-q:hover i:active .before,
#faq .faq-container .faq-q:active .before,
#faq .faq-container .faq-q.open .before {
  color: var(--color-white);
}
#faq .faq-container .faq-q.open i {
  color: var(--color-text);
}

/*==========================
 案件別スタイル
==========================*/
#contents2 {
  background: url("../img/top/contents2-bg.png") repeat;
}

#contents3 {
  background: url("../img/top/contents3-bg-left.png") left top no-repeat, url("../img/top/contents3-bg-right.png") right bottom no-repeat, var(--color-background);
  background-size: 50% auto, 50% auto;
}
@media (min-width: 768px) {
  #contents3 {
    background-size: 620px 420px, 693px 400px;
  }
}

#mensetsu {
  background: var(--color-bg);
}

#list {
  background: var(--color-bg);
}

#contact {
  background: url("../img/top/contact-bg.jpg") center/cover no-repeat;
}
#contact .tel {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-top: 24px;
}
#contact .tel a {
  color: var(--color-text);
  font-size: 2rem;
}
@media (min-width: 768px) {
  #contact .tel a {
    font-size: 3.2rem;
  }
}/*# sourceMappingURL=style.css.map */