@charset "UTF-8";
/*
Theme Name: LEGALUS
Author: LEGALUS
Author URI: https://legalus.jp/
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&family=Noto+Serif+JP:wght@200..900&display=swap');
/* Variables */
:root {
  /* color */
  --color-theme1: #0f5779;
  /* background */
  --color-background: #ffffff;
  --color-surface: #eaf7fc;
  /* primary */
  --color-primary: var(--color-theme1);
  --color-primary-darker: #0b425c;
  --color-primary-dark: #113545;
  --color-primary-light: #317a9c;
  --color-primary-pale: #a6bfcd;
  --color-primary-super-pale: #d7e3e8;
  /* secondary */
  --color-secondary: #899b97;
  --color-secondary-darker: #677371;
  --color-secondary-dark: #545958;
  --color-secondary-light: #adbab8;
  --color-secondary-pale: #d2dddb;
  --color-secondary-super-pale: #eef9f7;
  /* other color */
  --color-effect: ;
  --color-error: #ff3737;
  --color-focus: var(--color-effect);
  --color-separator: rgba(0, 0, 0, 0.1);
  --color-gray: #7f7f7f;
  --color-gray-light: #aaaaaa;
  --color-gray-super-pale: #ebebeb;
  --color-black: #333333;
  --color-white: #ffffff;
  /* font */
  --font-size-default: 16px;
  --font-family: ;
  /* size */
  --header-height: 60px;
  --max-content-width: 1280px;
  --drawer-menu-width: 300px;
  /* round */
  --round-large: 10px;
  --round-medium: 6px;
  --round-small: 4px;
  /* others */
  --opacity-hover: 0.75;
  --opacity-disabled: 0.5;
  --box-shadow-default: 0 2px 3px 3px rgba(94, 20, 20, 0.15);
  --box-shadow-hover: 0 4px 6px 6px rgba(94, 20, 20, 0.15);
  --scroll-margin: 10px;
  /** parts */
  --bottom-float-show: 28px;
}

/* html, body */
html {
  font-size: var(--font-size-default);
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  color: var(--color-on-background);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
body.shadow {
  overflow-y: hidden;
}
:target {
  scroll-margin-top: calc(var(--header-height) + var(--scroll-margin));
}

/* global */
strong {
  font-weight: bold;
  font-size: 1.1em;
}
span.small {
  font-size: 0.8em;
}
span.big {
  font-size: 1.2em;
}
span.liner {
  background: linear-gradient(to right, var(--color-secondary-light) 0%, var(--color-secondary-super-pale) 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
}
p + p {
  margin-top: .5rem;
}
a {
  transition: all .5s;
}

/* align */
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-justify {
  text-align: justify;
}

/* margin-box */
.margin-box.small {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.margin-box.medium {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.margin-box.large {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.margin-box.x-large {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Button */
.button,
.button-2 {
  margin-top: 1.5rem;
}
.button a {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  transition: all .5s;
}
.button-2 a,
.button-2 .form-button {
  display: inline-block;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  transition: all .5s;
  cursor: pointer;
}

/* title */
h2.h2-ttl {
  position: relative;
  font-size: 1.5em;
  color: var(--color-primary-darker);
  padding-bottom: .25rem;
  margin-bottom: 2rem;
}
h2.h2-ttl::before {
  content: '';
  width: 3rem;
  height: 2px;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  bottom: 0;
}
h2.h2-ttl.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
h2.h2-ttl.align-right::before {
  left: 100%;
}
h3.h3-ttl {
  font-size: 1.25em;
  border-left: 4px solid var(--color-secondary);
  padding:  .5rem;
  margin-bottom: .75rem;
}

/* icon */
i[class|="lf21"] {
  font-size: 1.25rem;
  color: var(--color-primary);
  vertical-align: middle;
}
i[class|="lf21"].large {
  font-size: 2rem;
}
i[class|="lf21"].hidden {
  display: none;
}

/* .images */
.images {
  overflow: hidden;
}
.images img {
  width: 100%;
  max-width: 528px;
  vertical-align: bottom;
  transition: all .5s;
}
.images.border-images img {
  border: 1px solid var(--color-primary);
}
.eyecatch img {
  display: block;
  margin: auto;
}

/* flex */
.flexbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexbox.flexleft {
  justify-content: left;
}
.flexbox.flexleft > * {
  margin-right: 1rem;
}
.flexbox.column-2 > * {}
.flexbox.column-3 > * {}
.flexbox.column-4 > * {}

/* color */
.colored {
  background: var(--color-surface) !important;
}
.colored.primary {
  background: var(--color-primary) !important;
}

/* .large-text */
.large-text p {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--color-secondary);
}

/* .note */
.note {
  padding: .5rem;
  background-color: red;
  color: var(--color-white);
  margin-bottom: .5rem;
  display: inline-block;
  position: relative;
}
.note::before {
  content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxuczpzZXJpZj0iaHR0cDovL3d3dy5zZXJpZi5jb20vIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjI7Ij48ZyB0cmFuc2Zvcm09Im1hdHJpeCgxLjQ0NDAzLDAsMCwxLjQ0NDAzLC03LjEwNDQ2LC04LjMxNjEyKSI+PHBhdGggaWQ9ImFsZXJ0IiBkPSJNMTUuMTkyLDguOTYxQzE1LjM3Miw4LjY5MSAxNS42NzUsOC41MjkgMTYsOC41MjlDMTYuMzI1LDguNTI5IDE2LjYyOCw4LjY5MSAxNi44MDgsOC45NjFDMTguNzc5LDExLjkxOCAyMy44MzIsMTkuNDk4IDI1Ljk5NCwyMi43NDFDMjYuMTkyLDIzLjAzOSAyNi4yMTEsMjMuNDIyIDI2LjA0MiwyMy43MzdDMjUuODczLDI0LjA1MyAyNS41NDQsMjQuMjUgMjUuMTg2LDI0LjI1TDYuODE0LDI0LjI1QzYuNDU2LDI0LjI1IDYuMTI3LDI0LjA1MyA1Ljk1OCwyMy43MzdDNS43ODksMjMuNDIyIDUuODA4LDIzLjAzOSA2LjAwNiwyMi43NDFDOC4xNjgsMTkuNDk4IDEzLjIyMSwxMS45MTggMTUuMTkyLDguOTYxWk0xNiwyMC41QzE2LjU1MiwyMC41IDE3LDIwLjk0OCAxNywyMS41QzE3LDIyLjA1MiAxNi41NTIsMjIuNSAxNiwyMi41QzE1LjQ0OCwyMi41IDE1LDIyLjA1MiAxNSwyMS41QzE1LDIwLjk0OCAxNS40NDgsMjAuNSAxNiwyMC41Wk0xNywxMi45OTdDMTcsMTIuNDQ3IDE2LjU1MywxMiAxNi4wMDMsMTJMMTUuOTk3LDEyQzE1LjQ0NywxMiAxNSwxMi40NDcgMTUsMTIuOTk3TDE1LDE4LjUwM0MxNSwxOS4wNTMgMTUuNDQ3LDE5LjUgMTUuOTk3LDE5LjVMMTYuMDAzLDE5LjVDMTYuNTUzLDE5LjUgMTcsMTkuMDUzIDE3LDE4LjUwM0wxNywxMi45OTdaIiBzdHlsZT0iZmlsbDojZmZmZmZmOyIvPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  width: 1.25rem;
  display: inline-block;
}

/* .contents-box */
.contents-box ul li {
  list-style: none;
  padding: 1rem;
  background-color: var(--color-secondary-super-pale);
  margin-bottom: 1rem;
}
.contents-box.gray ul li {
  background: var(--color-gray-super-pale);
}
.contents-box ul li h3 {
  background: none;
  padding: 0;
}

/* header */
header {
  width: 100%;
  background-color: var(--color-primary);
  display: flex;
  position: fixed;
  flex-wrap: nowrap;
  align-items: center;
  z-index: 99999;
  left: 0;
  top: 0;
  box-shadow: var(--box-shadow-default);
  height: var(--header-height);
  line-height: 1;
}
header i[class|="lf21"] {
  color: var(--color-white);
}
header a,
header .header-menu-btn {
  text-decoration: none;
  color: var(--color-white);
  display: inline-block;
  font-size: 1rem;
}
header .header-title {
  text-align: left;
  flex-basis: auto;
  flex-grow: 1;
  color: var(--color-white);
  padding-left: calc(var(--header-height) / 6);
  line-height: 1.125rem;
}
header .header-title a small {
  font-size: .75em;
}
header .header-item {
  white-space: nowrap;
  border-right: solid 1px var(--color-white);
  padding: 0 0.75rem;
}
header .header-item a,
header .header-menu-btn {
  text-align: center;
}
header .header-item p {
  font-size: 0.95rem;
  padding: 0.25rem 0 0.5rem 0;
}
header .header-item span.english {
  display: block;
  font-size: calc(var(--header-height) * 0.17);
  color: var(--color-secondary-super-pale);
  padding: 0.25rem 0;
}
header .header-item span.bg-img {
  width: 2rem;
  height: 2rem;
}
header .header-tel p {
  font-size: 0;
}
header .header-tel p > span {
  display: inline-block;
  vertical-align: middle;
}
header .header-tel p > span.bg-img {
  width: 1.5rem;
  height: 1.5rem;
}
header .header-tel p > span.tel-num {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-primary);
}
header .header-tel p > span.biz-time {
  font-size: 0.75rem;
  padding-top: 0.3rem;
  color: var(--color-gray-dark);
}
header .header-menu-btn {
  cursor: pointer;
  border-right-style: none;
}

/* Drawer menu */
#drawer-menu {
  display: block;
  position: fixed;
  width: var(--drawer-menu-width);
  top: var(--header-height);
  right: calc((var(--drawer-menu-width) * -1) - 10px);
  background-color: var(--color-background);
  color: var(--color-on-surface);
  z-index: 998;
  box-shadow: var(--box-shadow-default);
  font-size: 0;
  transition: right .3s ease;
}
#drawer-menu.show {
  right: 0;
}
#drawer-menu .scrollable {
  height: calc(100vh - var(--header-height));
}
#drawer-menu .office-info {
  padding: 1rem .5rem;
}
#drawer-menu .office-info p {
  margin: 0.15rem 0 .5rem .5rem;
}
#drawer-menu .office-info p span {
  display: inline-block;
  vertical-align: middle;
}
#drawer-menu .office-info i[class|="lf21"] {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--color-primary-darker);
}
#drawer-menu .office-info p span.tel-num {
  font-size: 1.1rem;
  color: var(--color-primary-darker);
  font-weight: bold;
}
#drawer-menu .office-info p.biz-time {
  font-size: 0.9rem;
}
#drawer-menu ul li a {
  padding: 1rem .5rem;
  color: var(--color-primary);
  width: 100%;
}
#drawer-menu ul li a,
#drawer-menu li.parent >  {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 1rem;
  display: block;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  line-height: 1.5;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem 1rem;
}
#drawer-menu li.parent >  {
  background-position: right 0.16rem center;
  cursor: pointer;
}
#drawer-menu ul {
  list-style: none;
  border-top: solid 1px var(--color-separator);
}
#drawer-menu ul li {
  font-size: 0;
  padding: 0.25rem;
  border-bottom: solid 1px var(--color-separator);
}
#drawer-menu ul li p {
  font-size: 1rem;
}
.contents ul.sitemap span.english,
#drawer-menu ul li span.english {
  display: block;
  font-size: 0.825rem;
  padding: 0.1rem 0 0 0.5rem;
  color: var(--color-primary);
}
#drawer-menu ul li ul {
  margin-left: 1.8rem;
}
#drawer-menu ul li.parent ul {
  display: none;
}
#drawer-menu ul li ul li a {
  padding-left: 0;
}
#drawer-menu ul li ul li:last-child {
  border-bottom-style: none;
}
#drawer-menu ul li.parent.show ul {
  display: block;
}
#drawer-menu ul li.parent ul li,
#drawer-menu ul li.parent ul li a {
  transition-property: opacity,padding;
  transition-duration: .25s;
  transition-timing-function: linear;
  opacity: 1;
}
#drawer-menu ul li.parent.close ul li,
#drawer-menu ul li.parent.close ul li a {
  opacity: 0;
  padding: 0;
}
#drawer-menu .scrollable > ul {
  margin-bottom: 128px;
}

/* Shadow */
#shadow {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 990;
}
body.shadow #shadow {
  display: block;
}
body.shadow.all #shadow {
  z-index: 9990;
  top: 0;
  background-color: rgba(0, 0, 0, 0.15);
}
body.shadow main,
body.shadow footer,
body.shadow .shadow-blur,
body.shadow.all header,
body.shadow.all #drawer-menu {
  filter: blur(6px);
}

.lf21-close {
  display: none;
}
body.shadow .lf21-menu {
  display: none;
}
body.shadow .lf21-close {
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0;
}
.breadcrumbs.block {
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.breadcrumbs.block + .block {
  padding-top: 0;
}
.breadcrumbs ol {
  list-style: none;
}
.breadcrumbs ol li {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumbs ol li a {
  display: inline-block;
  text-decoration: none;
}
.breadcrumbs ol li:after {
  content: '>';
  padding: 0 0.8rem;
}
.breadcrumbs ol li:last-child:after {
  content: '';
  padding: 0;
}
.breadcrumbs ol li:after,
.breadcrumbs ol li span {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.4;
}

/* Pagenation */
nav.pagination {
  display: block;
  margin: 1rem 0 2rem 0;
}
nav.pagination .nav-links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
nav.pagination .nav-links .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  /* border-radius: 50%; */
  text-decoration: none;
  font-size: 1rem;
  overflow: hidden;
  margin: 0 0.25rem;
  color: var(--color-primary-darker);
}
nav.pagination .nav-links a.page-numbers.prev,
nav.pagination .nav-links a.page-numbers.next {
  font-weight: bold;
}
nav.pagination .nav-links .page-numbers:first-child {
  margin-left: 0;
}
nav.pagination .nav-links .page-numbers:last-child {
  margin-right: 0;
}
nav.pagination .nav-links span.current {
  background-color: var(--color-primary-darker);
  color: var(--color-white);
  box-shadow: none;
}
nav.pagination .nav-links span.dots {
  box-shadow: none;
}

/* category-tags */
.category-tags {
  display: block;
  font-size: 0;
}
.category-tags > span {
  display: inline-block;
  vertical-align: middle;
  font-size: .75rem;
  background-color: var(--color-secondary-light);
  line-height: 1;
  padding: 0.5rem 0.825rem;
  text-decoration: none;
  color: var(--color-white);
  margin: 0.4rem;
}

/* sns share */
.sns-share-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  font-size: 0;
  background-color: var(--color-secondary-light);
  border-radius: var(--round-medium);
  margin: 0.5rem auto;
}
.sns-share-box span {
  display: inline-block;
  vertical-align: middle;
}
.sns-share-box span.bg-img {
  width: 1.6rem;
  height: 1.6rem;
}
.sns-share-box span.sns-title {
  font-size: 1rem;
  color: var(--color-on-background);
  margin-left: 0.5rem;
  display: none;
}
.sns-share-box > a {
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  white-space: nowrap;
  margin: 0.5rem;
  text-decoration: none;
}
.sns-share-box a i[class|="lf21"] {
  font-size: 1.5rem;
}
.sns-share-box a.sns-twitter {
  border-color: rgb(0, 0, 0);
}
.sns-share-box a.sns-facebook {
  border-color: rgb(23,120,242);
}
.sns-share-box a.sns-hatena {
  border-color: rgb(5,163,222);
}
.sns-share-box a.sns-line {
  border-color: rgb(6,199,85);
}
.sns-share-box a.sns-copy {
  border-color: rgb(115,115,115);
}
.sns-share-box a.sns-copy i[class|="lf21"] {
  color: #737373;
}

/* main */
main {
  margin-top: var(--header-height);
}

/* #mv */
#mv {
  position: relative;
}
#mv #mv-slider {
  width: 100%;
  height: calc(100vh - var(--header-height));
  opacity: .5;
}
#mv .mv-ttl {
  position: absolute;
  color: var(--color-primary-darker);
  width: 100%;
  text-align: center;
  top: calc(50% - var(--header-height));
  left: 0;
}
#mv .mv-ttl span {
  font-size: 1.75em;
}

/* section */
section {
  padding: 3rem 0;
  position: relative;
}
section .wrapper {
  padding: 0 1rem;
  position: relative;
  z-index: 99;
}

/* .category-wrapper, .category-box */
.category-wrapper .category-box {
  padding: 1.5rem;
  background: var(--color-background);
}
.category-wrapper .category-box + .category-box {
  margin-top: 2rem;
}
.category-wrapper .category-box h2.h2-ttl {
  margin-bottom: 1rem;
}

/* #greeting */
#greeting {
  z-index: 999;
  background: var(--color-background);
}
/* #greeting::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 200%;
  background: var(--color-background);
  transform: skew(0, -6.28deg);
  z-index: -2;
}
#greeting::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: skew(0, 6.28deg);
  z-index: -3;
} */

/* .profile-wrap */
.profile-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.profile-wrap .profile-box a {
  text-decoration: none;
}

/* .columns-list */
.columns-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columns-list li {
  width: 48%;
  list-style: none;
  margin-bottom: 2rem;
}
.columns-list li a {
  text-decoration: none;
  color: #333;
  transition: all .5s;
}
.columns-list li a .post-item .post-desc {
  margin-top: .5rem;
}
.columns-list li a .post-item .post-desc p.day {
  font-size: .75em;
  color: var(--color-gray);
}
.category-tags > span {
  margin-left: 0;
  background: var(--color-secondary);
}

/* .history */
.history li {
  list-style: none;
}
.history li a {
  text-decoration: none;
  color: var(--color-primary-darker);
}
.history li a dl {
  transition: all .5s;
  margin-bottom: 1.5rem;
}
.history li a dl dd {
  margin-left: 1rem;
}
.history.bordered li dl {
  border-bottom: 1px solid var(--color-secondary-light);
  padding-bottom: .25rem;
  margin-bottom: .75rem;
  transition: all .5s;
}

.flow dl {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.flow dl dt {
  position: relative;
}
.flow dl dt::before {
  content: '';
    width: 5px;
    height: calc(100% + 2rem);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    z-index: -1;
}
.flow dl:last-child dt::before {
  display: none;
}
.flow dl dt span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow dl dd {
  width: 100%;
  max-width: calc(100% - 3rem);
}
.flow dl dd h3 {
  margin-top: 0;
}

/* #g-map */
#g-map {
  margin-bottom: -2rem;
  height: 350px;
  overflow: hidden;
}
#g-map.block {
  margin-bottom: 1rem;
}
#g-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: calc(350px + 300px);
  margin-top: -150px;
}
.place-card.place-card-large {
  display: none !important;
}

/* #cta */
#cta {
  background: var(--color-secondary-pale);
}
.block + #cta {
  margin-top: 3rem;
}

/* .cta-button */
.cta-button {
  text-align: center;
}
.cta-button a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  margin-top: 2rem;
  background: var(--color-primary);
  color: var(--color-white);
}
.cta-button a i {
  color: var(--color-white);
}

/* table */
table {
  width: 100%;
  border-collapse: collapse;
}
table tr th,
table tr td {
  padding: 1rem;
}
table tr .row {
  text-align: center;
  vertical-align: middle;
  border-left: 2px solid var(--color-gray);
}
table.table-1 {
  table-layout: fixed;
}
table.table-1 thead tr th {
  background: var(--color-primary-darker);
  color: var(--color-white);
  text-align: center;
}
table.table-1 tbody tr th {
  border-bottom: 2px solid var(--color-primary-darker);
  background: var(--color-primary-super-pale);
}
table.table-1 tbody tr td {
  border-bottom: 2px solid var(--color-gray);
}
table.table-2 tr th {
  color: var(--color-primary-darker);
  border-bottom: 2px solid var(--color-primary);
  white-space: nowrap;
}
table.table-2 tr td {
  border-bottom: 2px solid var(--color-gray);
}

/* .block */
.block {
  padding: 1rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
  font-size: 1rem;
  text-align: left;
}
.block h2 {
  font-size: 1.25rem;
  padding: 0 0 0 .325rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-primary);
}
.block h3 {
  padding: .5rem .5rem;
  border-bottom: 3px solid var(--color-secondary-pale);
  background: var(--color-primary-super-pale);
  margin: 1rem auto .5rem;
}
.block h4 {
  margin: 1rem auto .5rem;
  color: var(--color-primary-darker);
  border-bottom: 2px solid var(--color-primary-darker);
  padding-bottom: .25rem;
}
.block p {
  line-height: 1.5;
}

/* block privacy */
.block.privacy {
  margin-bottom: 3rem;
}
.block.privacy ul {
  padding: .75rem 1rem;
}

/* .contents */
.contents {
  padding-left: .5rem;
}
.contents.no-indent {
  padding-left: 0;
}
.contents + .contents {
  margin-top: 1rem;
}
.contents.box + .contents.box {
  margin-top: 2.5rem;
}
.contents.text p {
  line-height: 1.7;
  font-size: 1rem;
}
.contents.text p.br {
  height: 0.75rem;
  font-size: 0.5rem;
}
.contents.text.p-margin p + p {
  margin-top: 0.75rem;
}
.contents.list ul,
.contents.list ol {
  margin-left: 1.5rem;
}
.contents.list ul {
  list-style: disc;
}
.contents .notes ul {
  margin-bottom: 1rem;
  margin-left: 0;
}
.contents.list ul li,
.contents.list ol li {
  padding: 0.25rem 0;
  font-size: 1rem;
  line-height: 1.5;
}
.contents.list ol.order-list > li {
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-position: left 0.5rem bottom;
  padding-bottom: 1.4rem;
}
.contents.list ol.order-list > li:last-child {
  background-image: none;
  padding-bottom: 0.25rem;
}
.contents.list .additional {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.contents.post-contents a,
.contents.faq a,
.contents.text p a,
.contents.list ul li a,
.contents.list ol li a {
  text-decoration: none;
  font-weight: bold;
  color: var(--color-secondary);
}
.contents p.tel-info span,
.contents ul.link-list span {
  display: inline-block;
  vertical-align: middle;
}
.contents p.tel-info span {
  font-size: 1.2rem;
}
.contents p.tel-info span.bg-img,
.contents ul.link-list span.bg-img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
}
.contents p + h2,
.contents p + h3 {
  margin-top: 2rem;
}
.contents ul.link-list,
.contents ul.link-list li ul {
  list-style: none;
}
.contents ul.link-list li {
  padding: 0.25rem 0;
}
.contents ul.link-list li ul {
  margin-left: 1.8rem;
}
.contents ul.link-list a {
  display: block;
  text-decoration: none;
  color: var(--color-secondary-dark);
  font-size: 1rem;
  padding: 0.5rem 0;
}
.contents .map-wrapper {
  font-size: 0;
  margin-bottom: 2rem;
}
.contents .map-wrapper iframe {
  width: 100%;
  overflow: hidden;
  border: solid 1px var(--color-primary-light);
}
.contents.form .error-info {
  padding: 1rem;
  border: solid 2px var(--color-effect);
  border-radius: var(--round-medium);
  margin: 1rem 0;
}
.contents.form .error-info p {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-error);
}
.contents.image-with-text {
  display: flex;
  margin-bottom: 1rem;
}
.contents.image-with-text .image-box {
  font-size: 0;
}
.contents.image-with-text .image-box img {
  box-shadow: var(--box-shadow-default);
  width: 100%;
  max-width: 280px;
}
.contents.image-with-text .text-box {
  flex: 1;
  padding: 0 0 1rem 1rem;
  border-bottom: solid 1px var(--color-primary-light);
}
.contents.cta {
  margin-top: 1rem;
}
.contents .info {
  padding-top: 0.5rem;
}
.contents ul + .info {
  padding-left: 1.5rem;
}
.contents p.caption {
  margin-bottom: 0.25rem;
}
.contents.faq dl {
  padding-left: 1rem;
}
.contents.faq dl dt,
.contents.faq dl dd,
.contents.def dl dt,
.contents.def dl dd {
  display: block;
  line-height: 1.6;
}
.contents.faq dl dt {
  font-size: 1.1rem;
  font-weight: bold;
}
.contents.faq dl dt:before {
  content: 'Q';
  margin: 0 0.4rem 0 -1.3rem;
  color: var(--color-primary);
}
.contents.faq dl dd {
  padding: 0.25rem 0 0.5rem 1.4rem;
}
.contents.faq dl dd:before {
  content: 'A';
  margin: 0 0.4rem 0 -1.3rem;
  color: var(--color-primary);
  font-weight: bold;
}
.contents.def dl dt {
  font-weight: bold;
  color: var(--color-primary);
  opacity: 0.9;
}
.contents.def dl dd {
  padding: 0 0 0.75rem 1rem;
}
.contents.def dl dd:last-child {
  padding-bottom: 0.25rem;
}
.contents.table-no-border table {
  border-collapse: collapse;
  border-style: none;
}
.contents.table-no-border table th,
.contents.table-no-border table td {
  font-size: 1rem;
  padding: 0.25rem;
  border-style: none;
}
.contents.table-no-border table th {
  font-weight: bold;
  padding-right: 0.5rem;
}
.contents.images img {
  margin: 0.4rem;
}
.contents.images img.clickable {
  cursor: pointer;
  box-shadow: var(--box-shadow-default);
}

/* .page-mv */
.page-mv {
  position: relative;
  width: 100%;
  background: url(./assets/images/page/page-mv.webp) no-repeat;
  background-size: cover;
  background-position: center;
  height: 140px;
}
.page-mv h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
  line-height: 1em;
}
.page-mv h1 .en {
  font-size: .5em;
  color: var(--color-secondary-dark);
}

/* post-list-item, post-last-update */
.post-thumbnail {
  font-size: 0;
}
.post-thumbnail > img,
.post-thumbnail.no-image {
  overflow: hidden;
  object-fit: cover;
}
ul.post-list .post-thumbnail {
  margin-bottom: 0.5rem;
}
ul.post-list .post-thumbnail img {
  width: 100%;
  height: auto;
  border: 2px solid var(--color-primary);
}
ul.post-list .post-thumbnail.no-image {
  background-image: url(./assets/images/common/ogp-no-image_300px.webp);
  background-size: cover;
  width: 150px;
  height: 79px;
}
.post-list-item .post-item-last-updated {
  font-size: 0.9rem;
  color: var(--color-primary);
}
.post-list-item .post-item-title {
  font-size: 1rem;
  font-weight: bold;
}
.post-last-updated {
  text-align: right;
  font-size: 1rem;
  color: var(--color-primary);
}

/* columns-content */
.columns-content p {
  margin-bottom: 1.25em;
}
.columns-content ul {
  padding: 1rem 1rem 1rem 2rem;
  background-color: var(--color-secondary-super-pale);
  margin-bottom: 2rem;
}
.columns-content ul li {
  margin-bottom: 1.25rem;
}
.columns-content ul li:last-child {
  margin-bottom: 0;
}

ul.columns-cat-list li {
  list-style: none;
  margin-bottom: 1rem;
}
ul.columns-cat-list li a {
  text-decoration: none;
  padding: .25rem;
  color: var(--color-secondary-dark);
}

ul.columns-archive-list li {
  list-style: none;
  margin-bottom: 1rem;
}
ul.columns-archive-list li:last-child {
  margin-bottom: 0;
}
ul.columns-archive-list li a {
  text-decoration: none;
  color: var(--color-primary);
}
ul.columns-archive-list li a p.title {
  margin-left: 1rem;
  font-weight: bold;
}

/* prifile-contents */
.profile-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.profile-contents .images {
  text-align: right;
}
.profile-contents .profile-box {
  text-align: center;
}

/* notes */
.notes {
  padding: 1rem;
  border-radius: .5rem;
  background-color: var(--color-primary-super-pale);
  margin: .5rem auto;
  text-align: left;
}
.notes p {
  font-size: .9em;
  color: var(--color-primary-dark);
}
.notes ul li {
  margin-left: 1rem;
  color: var(--color-primary-dark);
}

/* .history */
.history dl {
  display: flex;
  flex-wrap: nowrap;
}
.history dl dt,
.history dl dd {
  display: block;
  line-height: 2;
}
.history dl dt {
  font-weight: bold;
  white-space: nowrap;
  width: fit-content;
  text-align: right;
  color: var(--color-primary);
}
.history.short dl dt {
  width: 80px;
  text-align: left;
}
.history dl dd {
  flex: 1;
  padding-left: 1rem;
  text-align: left;
}

/* .lawyer-name */
.lawyer-name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: var(--color-black);
  margin-top: 1rem;
}
.lawyer-name .bengo {
  margin-right: .5rem;
  font-weight: bold;
  color: var(--color-secondary);
}
.lawyer-name .name {
  font-size: 1.25rem;
}
.lawyer-name .name .name-en {
  font-size: .5em;
}

/* office swiper */
.office-gallery-box {
  position: relative;
}
.office-gallery-box .swiper.office-swiper {
  width: 100%;
  height: auto;
}
.office-gallery-box .swiper.office-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: var(--color-white);
}
.office-gallery-box .swiper.office-swiper .swiper-slide img {
  width: 100%;
}
.office-gallery-box .swiper-pagination-bullet-active {
  background-color: var(--color-primary-darker);
}
.office-gallery-box .office-gallery-nav .swiper-button-prev,
.office-gallery-box .office-gallery-nav .swiper-button-next {
  background: var(--color-primary-darker);
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
}
.office-gallery-box .office-gallery-nav .swiper-button-prev {
  left: -.5rem;
}
.office-gallery-box .office-gallery-nav .swiper-button-next {
  right: -.5rem;
}
.office-gallery-box .office-gallery-nav .swiper-button-prev::after,
.office-gallery-box .office-gallery-nav .swiper-button-next::after {
  color: var(--color-white);
  font-size: 1rem;
}

/* .images-list */
.images-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* office gallery lightbox */
.office-gallery .office-gallery-item {
  cursor: pointer;
}
.office-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(154, 154, 154, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.office-gallery-lightbox.show {
  opacity: 1;
  visibility: visible;
}
.office-gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.office-gallery-lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}
.office-gallery-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.office-gallery-lightbox-close:hover {
  opacity: 1;
}
body.lightbox-open {
  overflow: hidden;
}

/* .sitemap-list */
.sitemap-list li {
  list-style: none;
  margin-bottom: .5rem;
}
.sitemap-list li:last-child {
  margin-bottom: 0;
}
.sitemap-list li a {
  text-decoration: none;
  color: var(--color-primary-dark);
  padding: .25rem;
  position:relative;
  padding-right: 1rem;
}
.sitemap-list li a:before{
  content: "";
	display: block;
	position: absolute;
	border-right: 1px solid var(--color-primary-dark);
	border-top: 1px solid var(--color-primary-dark);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
  height: 8px;
	right: 0;
  top: 50%;
	margin-top: -3.5px;
  transition: all .5s;
}
.sitemap-list li a:after{
  content: "";
	display: block;
	position: absolute;
	width: 12px;
	border-bottom: 1px solid var(--color-primary-dark);
	right: 0;
  top: 50%;
  transition: all .5s;
}

/* form */
input,
select,
textarea {
  appearance: none;
  -webkit-appearance : none;
  border: solid 1px var(--color-primary);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: var(--color-on-background);
  line-height: 1.5;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
select {
  padding-right: 2rem;
  background-repeat: no-repeat;
  background-size: 1.3rem 1.3rem;
  background-position: right 0.5rem center;
  background-color: transparent;
  background-color: #fff;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxuczpzZXJpZj0iaHR0cDovL3d3dy5zZXJpZi5jb20vIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjI7Ij48ZyB0cmFuc2Zvcm09Im1hdHJpeCgxLjAzODg4LDAsMCwxLjAzODg4LC0wLjYyMjA4NiwwLjc5MjYzOCkiPjxwYXRoIGlkPSJpbnZlcnRlZC10cmlhbmdsZSIgZD0iTTE2Ljg2NCwyNS40MTRDMTYuNjY5LDI1LjY5OCAxNi4zNDUsMjUuODY4IDE2LDI1Ljg2OEMxNS42NTUsMjUuODY4IDE1LjMzMSwyNS42OTggMTUuMTM2LDI1LjQxNEwyLjQ2Myw2Ljk3NkMyLjI0Miw2LjY1NSAyLjIxNyw2LjIzOCAyLjM5OSw1Ljg5NEMyLjU4LDUuNTQ5IDIuOTM3LDUuMzMzIDMuMzI3LDUuMzMzTDI4LjY3Myw1LjMzM0MyOS4wNjMsNS4zMzMgMjkuNDIsNS41NDkgMjkuNjAxLDUuODk0QzI5Ljc4Myw2LjIzOCAyOS43NTgsNi42NTUgMjkuNTM3LDYuOTc2TDE2Ljg2NCwyNS40MTRaIiBzdHlsZT0iZmlsbDojNzhhNWNkOyIvPjwvZz48L3N2Zz4=);
}
.form-block {
  margin: 0.25rem 0 1rem 0;
}
.form-block label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.5rem 0;
}
.form.confirm .form-block label {
  color: var(--color-primary-darker);
}
.form-block label span.required {
  font-size: .825em;
  padding: .25em;
  background: var(--color-error);
  color: var(--color-white);
  margin-left: .25rem;
}
.form-block input,
.form-block textarea {
  width: 100%;
  background-color: #fff;
}

.form-block textarea {
  min-height: 240px;
}
.form-block p.note {
  padding-top: 0.25rem;
}
.form-block input,
.form-block select,
.form-block textarea {
  transition: background-color .3s ease;
}
.form-block input.error,
.form-block select.error,
.form-block textarea.error {
  background-color: #ffdddd;
  animation-duration: 0.2s;
  animation-iteration-count: infinite;
  animation-name: shaking;
  animation-timing-function: linear;
}
.form-block p.form-input-value {
  padding-left: 1rem;
}
.form-bottom-block {
  margin: 1rem 0;
}
p.require-note {
  color: var(--color-error);
  font-size: .825rem;
}
.form-bottom-block p.note {
  font-size: 1rem;
  font-weight: bold;
}
.form-bottom-block p a {
  text-decoration: none;
  color: var(--color-secondary-dark);
}
.form-block input[type="datetime-local"] {
  text-align: left;
  min-height: 42px;
}
input[type="hidden"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
@keyframes shaking {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10px, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(10px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* footer */
footer {
  background: var(--color-primary);
  padding-top: 2rem;
}
footer .footer-title {
  padding: 1rem;
  text-align: center;
}
footer .footer-title a {
  text-decoration: none;
  color: var(--color-white);
}
footer .footer-contact {
  padding: 0 2rem 2rem;
}
footer .footer-contact .footer-tel {
  padding: 1rem;
  background: var(--color-primary-pale);
  color: var(--color-primary-darker);
  font-size: 1.25rem;
  font-weight: bold;
}
footer .footer-contact .footer-desc {
  margin-top: .5rem;
  color: var(--color-white);
  font-size: .825em;
  text-align: center;
}
footer .footer-contact .footer-sns {
  margin-top: 1rem;
}
footer .footer-contact .footer-sns ul {
  display: flex;
  justify-content: right;
}
footer .footer-contact .footer-sns ul li {
  list-style: none;
  margin-left: .5rem;
}
footer .footer-contact .footer-sns ul li a {
  text-decoration: none;
}
footer .footer-contact .footer-sns ul li a i[class|="lf21"] {
  font-size: 2.25rem;
}
footer .footer-menu-bg {
  padding: .5rem;
  background: var(--color-primary-dark);
}
footer .footer-menu-bg ul {
  display: flex;
  justify-content: center;
}
footer .footer-menu-bg ul li {
  list-style: none;
  line-height: normal;
}
footer .footer-menu-bg ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: .675em;
  margin: 0 .5rem;
}
footer .footer-copyright {
  padding: .5rem;
  background: var(--color-white);
}
footer .footer-copyright p {
  font-size: .575em;
  text-align: center;
  color: var(--color-primary);
}

/* to Top */
a.to-top-button {
  display: block;
  position: fixed;
  right: -60px;
  bottom: var(--bottom-float-show);
  z-index: 5;
  transition-property: right, bottom;
  transition-timing-function: ease;
  transition-duration: .3s;
  cursor: pointer;
  text-decoration: none;
  width: 3rem;
  height: 3rem;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: all .5s;
}
a.to-top-button.show {
  right: 1rem;
}
a.to-top-button i[class|="lf21"] {
  color: var(--color-white);
  font-size: 1.5rem;
}

/* For Tablet */
@media screen and (min-width:768px) {
  /* .page-mv */
  .page-mv {
    height: 240px;
  }
  /* .block */
  .block {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  /* .way-box */
  .way-box {
    width: calc(50% - .75rem);
  }

  /* .contents-box */
  .contents-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contents-box ul li {
    width: 48%;
  }

  /* section */
  section .wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  /* #category .category-wrapper, .category-box */
  #category {
    z-index: 999;
  }
  .category-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .category-wrapper .category-box + .category-box {
    margin-top: 0;
  }
  .category-wrapper .category-box h2.h2-ttl {
    margin-bottom: 1rem;
  }

  /* .profile-wrap */
  .profile-wrap {
    grid-template-columns: 1fr 1fr;
  }

  /* .profile-wrapper */
  .profile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .profile-wrapper .profile-box.images {
    width: 55%;
  }
  .profile-wrapper .profile-box.desc {
    width: 40%;
  }

  /* office swiper */
  .office-gallery-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .office-gallery-box .swiper.office-swiper {
    width: 80%;
  }
  .office-gallery-box .office-gallery-nav {
    position: relative;
    width: 18%;
  }
  .office-gallery-box .office-gallery-nav .swiper-button-prev {
    left: 10%;
  }
  .office-gallery-box .office-gallery-nav .swiper-button-next {
    right: 10%;
  }

  .images-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* form */
  .form-block {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .form-block label {
    width: 60%;
  }
  .require-box {
    width: 100%;
  }

  /* footer */
  footer .footer-copyright p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1023px) {
  .sp-hidden {
    display: none !important;
  }
}

/* For PC */
@media screen and (min-width: 1024px) {
  /* ホバーアニメーションはこちら */
  header .header-title a:hover,
  .profile-wrap .profile-box a:hover,
  .columns-list li a:hover,
  .sns-share-box a:hover,
  ul.columns-archive-list li a:hover {
    opacity: .7;
  }
  header .header-item a:hover {
    background-color: var(--color-primary-darker);
  }
  #drawer-menu ul li a:hover {
    background-color: var(--color-primary-super-pale);
  }
  .button a:hover {
    background-color: var(--color-secondary);
  }
  .profile-wrap .profile-box a:hover .images img,
  ul.post-list li a:hover .post-thumbnail img {
    transform: scale(1.1);
  }
  .office-gallery .office-gallery-item:hover img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .history li a:hover dl {
    background-color: var(--color-primary-super-pale);
  }
  footer .footer-menu ul li a:hover {
    color: var(--color-secondary-light);
  }
  a.to-top-button:hover {
    background-color: var(--color-secondary-dark);
  }
  .cta-button a:hover {
    background-color: var(--color-secondary);
    transform: scale(1.05);
  }
  .sitemap-list li a:hover {
    opacity: .7;
  }
  .sitemap-list li a:hover::before,
  .sitemap-list li a:hover::after {
    right: -5px;
  }
  ul.columns-cat-list li a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  nav.pagination .nav-links .page-numbers:not(.current):hover {
    background-color: var(--color-primary-pale);
  }

  .pc-hidden {
    display: none !important;
  }

  /* .block */
  .block {
    max-width: 980px;
  }
  
  /* .way-box */
  /* .way-box {
    width: calc(33.333333% - .75rem);
  } */ 

  /* section */
  section .wrapper {
    max-width: 980px;
  }

  /* swiper */
  .office-swiper {
    display: flex;
  }
  .office-gallery-nav {
    position: relative;
  }

  /* form */
  .form-block label {
    width: 35%;
  }
  .require-box {
    width: 100%;
  }

  /* footer */
  footer .footer-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    padding: 2rem 0 4rem;
    margin: auto;
  }
  footer .footer-title {
    width: 30%;
    text-align: left;
  }
  footer .footer-address {
    font-size: .85em;
    margin-top: .5rem;
    color: var(--color-white);
    text-align: left;
  }
  footer .footer-menu {
    display: flex;
    justify-content: right;
    width: 40%;
  }
  footer .footer-menu ul {
    margin-left: 1rem;
  }
  footer .footer-menu ul li {
    list-style: none;
    margin: .75rem .5rem;
  }
  footer .footer-menu ul li a {
    text-decoration: none;
    color: var(--color-white);
    padding: .25rem;
  }
  footer .footer-contact {
    width: 25%;
    padding: 0;
  }
  footer .footer-contact .footer-desc {
    text-align: left;
  }
}

/* For Wide Screen */
@media screen and (min-width: 1680px) {
  :root {
    --drawer-menu-width: 500px;
    --font-size-default: 1vw;
    --header-height: 5vw;
  }

  .images img {
    max-width: 100%;
  }

  /* section common */
  section .wrapper {
    max-width: 65%;
  }

  /* #profile */
  #profile .profile-wrap .profile-box {
    width: 100%;
  }

  /* block */
  .block {
    max-width: 65%;
  }
  .page-mv {
    height: 25vh;
  }
  .profile-wrap > .profile-box {
    width: 48%;
  }

  /* footer */
  footer .footer-wrapper {
    max-width: 65%;
  }
  footer .footer-menu ul li a {
    font-size: .925rem;
  }
}