@charset "UTF-8";
/*-- settingフォルダまとめ用 --*/
:root {
  --color-primary: #bc353d;
  --color-accent: #2195e8;
  --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: #333333;
  --color-gray-3: #cccccc;
  --color-gray-4: #f6f6f6;
  --color-gray-5: #313131;
  --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-gray-5);
  --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: 4px;
  --border-radius-pc: 4px;
  --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;
}

@media (max-width: 767px) {
  .spHdn {
    display: none;
  }
}

@media (min-width: 768px) {
  .pcHdn {
    display: none;
  }
}

.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  background: var(--color-btn);
  color: var(--color-white);
  padding: 16px;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.4;
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  .btn a {
    padding: 24px 16px;
    width: 60%;
  }
}

.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: 54px;
}

/* main - メインコンテンツ
--------------------------*/
.contents {
  position: relative;
  width: 100%;
}

.contents-inn {
  padding: var(--section-padding);
}
@media (min-width: 768px) {
  .contents-inn {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.inner {
  padding: 40px 8px;
  background: rgba(var(--color-white-rgb), 0.8);
}
@media (min-width: 768px) {
  .inner {
    margin: 0 auto;
    padding: 80px 30px;
  }
}

.contents-ttl {
  margin-bottom: 32px;
  font-size: 2.4rem;
  color: var(--color-tit);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .contents-ttl {
    margin-bottom: 56px;
    font-size: 3.6rem;
  }
}
.contents-ttl::after {
  content: "";
  display: block;
  background: var(--color-assort);
  margin: 12px auto 0;
  width: 40px;
  height: 1px;
}

.contents-subttl {
  margin-bottom: 16px;
  font-size: 1.8rem;
  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%;
}
@media (max-width: 767px) {
  .d-flex li {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .d-flex li:nth-child(n+3) {
    margin-top: 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 {
  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: 328px;
  }
}
.sliding .sliding-area.n-01 {
  background-image: url(../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%;
  display: flex;
  justify-content: space-between;
  z-index: 10000;
}
#header .header-logo {
  height: 54px;
  padding: 10px 5px;
}
@media (min-width: 768px) {
  #header .header-logo {
    height: 54px;
    padding: 8px;
  }
}
#header .header-logo img {
  width: auto;
  height: 100%;
}
#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: block;
  height: 54px;
  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;
  }
}
#header .header-btn a {
  background: var(--color-btn);
  color: var(--color-white);
  padding: 15px 8px;
}
@media (min-width: 768px) {
  #header .header-btn a {
    padding: 20px 12px;
  }
}
@media (min-width: 992px) {
  #header .header-btn a {
    padding: 15px 20px;
  }
}
#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: 16px;
  }
}
#header .menu-btn {
  position: fixed;
  display: block;
  background-color: var(--color-black-2);
  width: 60px;
  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-background);
  border: none;
  height: 2px;
  top: 17px;
  left: 16px;
}
#header .menu-btn::after {
  content: "";
  border-top: solid 2px var(--color-white);
  border-bottom: solid 2px var(--color-white);
  height: 10px;
  top: 26px;
  left: 16px;
}
@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-background);
    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: rgba(var(--color-black-rgb), 0.8);
    padding: 20px;
    overflow: scroll;
  }
  .open #header .menu-box li {
    display: block;
    width: 100%;
    border-bottom: 1px dotted var(--color-white);
  }
  .open #header .menu-box li a {
    position: relative;
    height: auto;
    padding: 16px 20px 16px 10px;
    color: var(--color-white);
  }
  .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: 10px 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-footer);
  border: solid 4px var(--color-white);
  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);
}

/*==========================
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);
}

/*==========================
 案件別スタイル
==========================*/
main {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #eaf4fd calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #eaf4fd calc(100% - 1px));
  background-size: 15px 15px;
  background-repeat: repeat;
  background-position: center center;
}

#entry-area {
  background: #ffffff;
}

/*
#contents1 {
        background-image: linear-gradient(0deg, transparent calc(100% - 1px), #eaf4fd calc(100% - 1px)),linear-gradient(90deg, transparent calc(100% - 1px), #eaf4fd calc(100% - 1px));
        background-size: 15px 15px;
        background-repeat: repeat;
        background-position: center center;
}

#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;
    @include mq(tb) {
        background-size: 620px 420px, 693px 400px;
    }
}
#mensetsu {
    background: var(--color-bg);
}
#table-column {
    //    background: var(--color-background);
}
#list {
    background: var(--color-bg);
}
#faq {
    //    background: var(--color-background);
}
#contact {
    // 背景画像100％
    background: url("../img/top/contact-bg.jpg")center / cover no-repeat;
    .tel {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-top: 24px;
        a {
            color: var(--color-text);
            font-size: 2rem;
            @include mq(tb) {
                font-size: 3.2rem;
            }
        }
    }
}
*/
#contents1 {
  display: block;
  padding-top: 8px;
  margin-top: -8px;
  background: #fff;
}

#contents2 {
  /*/ 背景画像の繰り返し
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #eaf4fd calc(100% - 1px)),linear-gradient(90deg, transparent calc(100% - 1px), #eaf4fd calc(100% - 1px));
  background-size: 15px 15px;
  background-repeat: repeat;
  background-position: center center;*/
}
@media (min-width: 768px) {
  #contents2 .flex-2-item li:last-child {
    margin: 32px auto 0 auto;
  }
}

#contents3 {
  background: url("../img/top/contents3-bg-left.png") left top no-repeat, url("../img/top/contents3-bg-right.png") right bottom no-repeat, #fff;
  background-size: 50% auto, 50% auto;
}
@media (min-width: 768px) {
  #contents3 {
    background-size: 620px 420px, 693px 400px;
  }
}

#mensetsu {
  background: #f6f6f6;
}

#list {
  background: url("../img/top/list-bg.jpg") bottom/cover no-repeat;
}
#list .list-box li.list-btn-oubo {
  border: solid 2px #2195e8;
}
#list .list-box li.list-btn-oubo a {
  background: #2195e8;
  color: #ffffff;
}

#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: #333333;
  font-size: 2rem;
}
@media (min-width: 768px) {
  #contact .tel a {
    font-size: 3.2rem;
  }
}

.shift-ttl {
  position: absolute;
  top: -6vw;
  left: 0;
}
@media (min-width: 768px) {
  .shift-ttl {
    top: -2vw;
  }
}

.anchor {
  display: block;
  padding-top: 8px;
  margin-top: -8px;
}

#contents4 {
  position: relative;
  top: -3%;
}

.office-about-list {
  margin: 0 auto;
  padding-top: 16%;
}
@media (min-width: 768px) {
  .office-about-list {
    max-width: 960px;
    padding-top: 5vw;
  }
}

.list-box {
  margin: 0 auto;
  padding-top: 24%;
}
@media (min-width: 768px) {
  .list-box {
    max-width: 960px;
    padding-top: 6vw;
  }
}

.office-about-item {
  border: solid 2px #bc353d;
  border-radius: 6px;
  background: #FFF;
  padding: 40px 0;
  font-weight: bold;
}
.office-about-item p {
  background: #bc353d;
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
  color: #FFF;
}
@media (min-width: 768px) {
  .office-about-item p {
    font-size: 2.8rem;
  }
}
.office-about-item dl {
  padding: 20px;
}
.office-about-item dt {
  width: 60px;
  padding: 4px;
}
.office-about-item dd {
  width: calc(100% - 60px);
  padding: 4px;
}

.table-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.google-map {
  text-align: center;
  margin: 0 auto;
}

.map-btn {
  background: #bc353d;
  font-size: 1.6rem;
  padding: 12px 80px;
  border-radius: 50vh;
  color: #fff;
}

.link-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 16px;
  position: relative;
  width: calc(100% - 30px);
  line-height: 1;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(0deg, #b81313, #f41d1d);
  border-radius: 50vh;
  box-shadow: 0px 6px 0px -2px #5d0909;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .link-btn a {
    padding: 20px;
    max-width: 400px;
    font-size: 2.4rem;
  }
}
.link-btn a::before {
  content: "";
  position: absolute;
  top: 42%;
  right: 32px;
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
.link-btn a:hover {
  opacity: 1;
  box-shadow: 0 0 #fff;
  transform: translateY(1px);
}

#entry-area {
  padding: 8px;
}
@media (min-width: 768px) {
  #entry-area {
    padding: 32px;
  }
}/*# sourceMappingURL=style.css.map */