@charset "UTF-8";
/* -------------------------------
	table
-------------------------------- */
table {
  line-height: 1.5;
}

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #555555;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #555555;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1em 0;
}
.table-design-1 > tbody > tr > th {
  color: var(--primary);
  padding-left: 1em;
}
.table-design-1 > tbody > tr > td {
  padding-left: 2em;
}

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th {
  background: #eee;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .table-inline colgroup {
    display: none !important;
  }
  .table-inline > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-inline > tbody > tr > th, .table-inline > tbody > tr > td {
    width: 100% !important;
    display: block;
  }

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-style-1 {
  list-style: none;
  padding: 0;
}
.list-style-1 > li {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: dotted 1px #aaa;
}
.list-style-1 > li:last-child {
  margin-bottom: 0;
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

figure {
  margin-bottom: 0;
  height: 100%;
  position: relative;
  z-index: 0;
}

.figure_linlk_1 {
  color: #fff;
  --padding: 10px;
  width: calc(100% - 40px);
  aspect-ratio: 129 / 104;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.figure_linlk_1:before {
  content: "";
  position: absolute;
  left: calc(0px - (var(--padding) / 2));
  top: calc(0px - (var(--padding) / 2));
  z-index: -1;
  width: 100%;
  height: 100%;
  border: solid 1px #cecece;
}
.figure_linlk_1 > .photo {
  position: absolute;
  left: calc(var(--padding) / 2);
  top: calc(var(--padding) / 2);
  z-index: -2;
  width: 100%;
  height: 100%;
}
.figure_linlk_1 figcaption {
  padding: calc(var(--padding) * 2.5);
}
.figure_linlk_1 figcaption .ttl {
  font-size: calc(var(--padding) * 2.4);
  line-height: normal;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.figure_linlk_1 figcaption .ttl i {
  color: #fff;
  font-size: 0.208334em;
  letter-spacing: normal;
  line-height: 1;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 1.5em;
}
a > .figure_linlk_1:before, a > .figure_linlk_1 > .photo {
  transition: all 0.3s ease;
}
a > .figure_linlk_1:hover:before {
  left: 0;
  top: 0;
}
a > .figure_linlk_1:hover > .photo {
  left: 0;
  top: 0;
}

.figure_linlk_2 {
  color: #fff;
  --padding: 10px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.figure_linlk_2 > .photo {
  position: relative;
  z-index: -1;
}
.figure_linlk_2 > .photo:before {
  content: "";
  position: absolute;
  inset: var(--padding);
  z-index: 10;
  border: solid 1px #cecece;
}
.figure_linlk_2 figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: calc(var(--padding) * 2.5);
}
.figure_linlk_2 figcaption .ttl {
  font-size: calc(var(--padding) * 2.4);
  line-height: normal;
  display: flex;
  align-items: center;
  margin: 0;
  transition: opacity 0.3s ease;
}
.figure_linlk_2 figcaption .ttl i {
  color: #fff;
  font-size: 0.208334em;
  letter-spacing: normal;
  line-height: 1;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 1.5em;
}
a > .figure_linlk_2 > .photo img {
  transform: scale(1);
  transition: all 0.3s ease;
}
a > .figure_linlk_2:hover > .photo img {
  transform: scale(1.2);
  transition: all 1s ease;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(svg) */
.img-font {
  width: auto;
  height: 1em;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* objectの位置 */
.object-lt {
  object-position: left top;
}

.object-lb {
  object-position: left bottom;
}

.object-rt {
  object-position: right top;
}

.object-rb {
  object-position: right bottom;
}

.object-cc {
  object-position: center center;
}

@media print, screen and (min-width: 576px) {
  .object-sm-lt {
    object-position: left top;
  }

  .object-sm-lb {
    object-position: left bottom;
  }

  .object-sm-rt {
    object-position: right top;
  }

  .object-sm-rb {
    object-position: right bottom;
  }

  .object-sm-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 768px) {
  .object-md-lt {
    object-position: left top;
  }

  .object-md-lb {
    object-position: left bottom;
  }

  .object-md-rt {
    object-position: right top;
  }

  .object-md-rb {
    object-position: right bottom;
  }

  .object-md-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 992px) {
  .object-lg-lt {
    object-position: left top;
  }

  .object-lg-lb {
    object-position: left bottom;
  }

  .object-lg-rt {
    object-position: right top;
  }

  .object-lg-rb {
    object-position: right bottom;
  }

  .object-lg-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1200px) {
  .object-xl-lt {
    object-position: left top;
  }

  .object-xl-lb {
    object-position: left bottom;
  }

  .object-xl-rt {
    object-position: right top;
  }

  .object-xl-rb {
    object-position: right bottom;
  }

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1400px) {
  .object-xxl-lt {
    object-position: left top;
  }

  .object-xxl-lb {
    object-position: left bottom;
  }

  .object-xxl-rt {
    object-position: right top;
  }

  .object-xxl-rb {
    object-position: right bottom;
  }

  .object-xxl-cc {
    object-position: center center;
  }
}
/**/
.photo img, .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	画像拡大
-------------------------------- */
a[data-lightbox]:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  color: #222;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  width: 2em;
  border-radius: 50%;
  margin-top: -1em;
  margin-left: -1em;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity .3s ease;
}
a[data-lightbox]:hover:after {
  opacity: 1;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

.btn-icon-r {
  padding-right: 2em;
}
.btn-icon-r i {
  right: 1.2em;
}

.btn-map {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-map:hover {
  opacity: 0.65;
}

.btn-more {
  color: #000;
  font-weight: 900;
  line-height: normal;
  min-width: 15em;
  height: 4em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  border: none;
  background-image: linear-gradient(325deg, #e6d3ac 0%, #f3dfb6 57%, #ffebbf 100%);
  transition: letter-spacing 0.3s ease;
}
.btn-more .line {
  flex: 0 0 4em;
  height: 0.35em;
  margin-left: 0.75em;
  border-bottom: solid 1px currentColor;
  position: relative;
  transition: flex 0.3s ease, transform 0.3s ease;
}
.btn-more .line:after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 0;
  width: 1px;
  height: 0.5em;
  background-color: currentColor;
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
}
.btn-more:hover {
  letter-spacing: 0.15em;
}
.btn-more:hover .line {
  flex: 0 0 3em;
  transform: translateX(1em);
}

/* file icon */
.link-icon:before {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
}
.link-icon[href$=".pdf"]:before {
  content: "\f1c1";
}
.link-icon[href$=".xls"]:before, .link-icon[href$=".xlsx"]:before {
  content: "\f1c3";
}
.link-icon[href$=".doc"]:before, .link-icon[href$=".docx"]:before {
  content: "\f1c2";
}
.link-icon [target="_blank"]:before {
  content: "\f35d";
  font-size: 0.875em;
}

/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-top: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 20px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone img {
  width: 0.8em;
  margin-right: 10px;
  margin-top: 0.2em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background-color: #f3f3f3;
}

/* --▼text-- */
/* --▼font -- */
.fs-xxs {
  font-size: 0.75em !important;
}

.fs-sm {
  font-size: 0.875em !important;
}

.fs-md {
  font-size: 1.2em !important;
}

.fs-lg {
  font-size: 1.250em !important;
}

.f-feature {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fwn {
  font-weight: 700 !important;
}

.fwb {
  font-weight: 900 !important;
}

@media print, screen and (min-width: 992px) {
  .fs-md {
    font-size: 1.4em !important;
  }

  .fs-lg {
    font-size: 1.5em !important;
  }
}
/* --▼margin-- */
/* space */
.mt-50 {
  margin-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
}

.mb-50 {
  margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
}

.mtb-50 {
  margin-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
}

.mt-60 {
  margin-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
}

.mb-60 {
  margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
}

.mtb-60 {
  margin-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
}

.mt-70 {
  margin-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
}

.mb-70 {
  margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
}

.mtb-70 {
  margin-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
}

.mt-80 {
  margin-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
}

.mb-80 {
  margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
}

.mtb-80 {
  margin-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
}

.mt-90 {
  margin-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
}

.mb-90 {
  margin-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
}

.mtb-90 {
  margin-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  margin-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
}

.mt-100 {
  margin-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
}

.mb-100 {
  margin-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
}

.mtb-100 {
  margin-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  margin-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
}

.mt-120 {
  margin-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
}

.mb-120 {
  margin-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
}

.mtb-120 {
  margin-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  margin-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
}

.mt-160 {
  margin-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
}

.mb-160 {
  margin-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
}

.mtb-160 {
  margin-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  margin-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
}

.pt-50 {
  padding-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
}

.pb-50 {
  padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
}

.ptb-50 {
  padding-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
}

.pt-60 {
  padding-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
}

.pb-60 {
  padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
}

.ptb-60 {
  padding-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
}

.pt-70 {
  padding-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
}

.pb-70 {
  padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
}

.ptb-70 {
  padding-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
}

.pt-80 {
  padding-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
}

.pb-80 {
  padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
}

.ptb-80 {
  padding-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
}

.pt-90 {
  padding-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
}

.pb-90 {
  padding-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
}

.ptb-90 {
  padding-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  padding-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
}

.pt-100 {
  padding-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
}

.pb-100 {
  padding-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
}

.ptb-100 {
  padding-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  padding-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
}

.pt-120 {
  padding-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
}

.pb-120 {
  padding-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
}

.ptb-120 {
  padding-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  padding-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
}

.pt-160 {
  padding-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
}

.pb-160 {
  padding-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
}

.ptb-160 {
  padding-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  padding-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
}

@media print, screen and (min-width: 992px) {
  .mt-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  }

  .mb-lg-50 {
    margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  }

  .mtb-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
    margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  }

  .mt-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  }

  .mb-lg-60 {
    margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  }

  .mtb-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
    margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  }

  .mt-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  }

  .mb-lg-70 {
    margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  }

  .mtb-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
    margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  }

  .mt-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  }

  .mtb-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
    margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  }

  .mt-lg-90 {
    margin-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  }

  .mtb-lg-90 {
    margin-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
    margin-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  }

  .mt-lg-100 {
    margin-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  }

  .mb-lg-100 {
    margin-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  }

  .mtb-lg-100 {
    margin-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
    margin-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  }

  .mt-lg-120 {
    margin-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  }

  .mb-lg-120 {
    margin-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  }

  .mtb-lg-120 {
    margin-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
    margin-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  }

  .mt-lg-160 {
    margin-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  }

  .mb-lg-160 {
    margin-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  }

  .mtb-lg-160 {
    margin-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
    margin-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  }
}
@media print, screen and (min-width: 992px) {
  .pt-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  }

  .pb-lg-50 {
    padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  }

  .ptb-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
    padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1225), 50px);
  }

  .pt-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  }

  .pb-lg-60 {
    padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  }

  .ptb-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
    padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1225), 60px);
  }

  .pt-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  }

  .pb-lg-70 {
    padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  }

  .ptb-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
    padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1225), 70px);
  }

  .pt-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  }

  .ptb-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
    padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1225), 80px);
  }

  .pt-lg-90 {
    padding-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  }

  .ptb-lg-90 {
    padding-top: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
    padding-bottom: min(calc(28px + 62 * (100vw - 375px) / 1225), 90px);
  }

  .pt-lg-100 {
    padding-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  }

  .pb-lg-100 {
    padding-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  }

  .ptb-lg-100 {
    padding-top: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
    padding-bottom: min(calc(30px + 70 * (100vw - 375px) / 1225), 100px);
  }

  .pt-lg-120 {
    padding-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  }

  .pb-lg-120 {
    padding-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  }

  .ptb-lg-120 {
    padding-top: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
    padding-bottom: min(calc(36px + 84 * (100vw - 375px) / 1225), 120px);
  }

  .pt-lg-160 {
    padding-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  }

  .pb-lg-160 {
    padding-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  }

  .ptb-lg-160 {
    padding-top: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
    padding-bottom: min(calc(48px + 112 * (100vw - 375px) / 1225), 160px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

.mr-full {
  margin-right: -15px;
}

@media print, screen and (min-width: 576px) {
  .ml-full, .ml-sm-full {
    margin-left: calc((510px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full {
    margin-right: calc((510px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-full, .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - var(--app-w)) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-half {
    margin-left: calc((930px - var(--app-w)) / 4);
  }

  .mr-lg-half {
    margin-right: calc((930px - var(--app-w)) / 4);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-lg-half, .ml-xl-half {
    margin-left: calc((1110px - var(--app-w)) / 4);
  }

  .mr-lg-half, .mr-xl-half {
    margin-right: calc((1110px - var(--app-w)) / 4);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

/* ---  --- */
.fs-16-24 {
  font-size: min(calc(16px + 8 * (100vw - 320px) / 880), 24px);
}

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  --color: var(--primary);
  color: var(--color);
  line-height: normal;
  display: flex;
  align-items: center;
}
.title-1:after {
  content: "";
  flex: 0 0 2.1875em;
  height: 1px;
  background-color: currentColor;
  margin-left: 0.375em;
}
.title-1.center {
  justify-content: center;
}

.title-2 {
  line-height: 1.5;
  border-left: solid 0.2em var(--primary);
  padding-left: 0.5em;
}

.title-hh-1 {
  --color: var(--primary);
  font-size: min(calc(34px + 30 * (100vw - 375px) / 1225), 64px);
  display: grid;
  grid-template-columns: auto;
  justify-content: flex-start;
}
.title-hh-1 > .en {
  color: var(--color);
  line-height: normal;
  text-transform: uppercase;
  display: block;
}
.title-hh-1 > .jp {
  font-size: 0.4375em;
  display: flex;
  align-items: center;
}
.title-hh-1 > .jp::before, .title-hh-1 > .jp::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background-color: currentColor;
  display: block;
  opacity: 0.5;
}
.title-hh-1 > .jp::before {
  margin-right: .5em;
}
.title-hh-1 > .jp::after {
  display: none;
  margin-left: .5em;
}
.title-hh-1.center {
  justify-content: center;
}
.title-hh-1.center > .jp::after {
  display: block;
}

.ttl-fs-1 {
  font-size: min(calc(34px + 30 * (100vw - 375px) / 1225), 64px);
}

.title-hh-1 > .en {
  line-height: normal;
  text-transform: uppercase;
  display: block;
}

/* -------------------------------
	bootstrap
-------------------------------- */
.container-fluid-xl {
  max-width: 1600px;
  width: 100%;
  padding-left: calc(15px + 50 * (100vw - 375px) / 1225);
  padding-right: calc(15px + 50 * (100vw - 375px) / 1225);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1600px) {
  .container-fluid-xl {
    padding-left: 65px;
    padding-right: 65px;
  }
}

/* --- row --- */
.row-gallery {
  margin-left: calc(-5px - 10 * (100vw - 320px) / 880);
  margin-right: calc(-5px - 10 * (100vw - 320px) / 880);
}
.row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
  padding-left: calc(5px + 10 * (100vw - 320px) / 880);
  padding-right: calc(5px + 10 * (100vw - 320px) / 880);
  margin-bottom: calc(10px + 20 * (100vw - 320px) / 880);
}
@media print, screen and (min-width: 1200px) {
  .row-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}

/* --- gap --- */
.gap-y-10 {
  gap: 10px 0;
}

.gap-y-20 {
  gap: 20px 0;
}

.gap-y-30 {
  gap: 30px 0;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: calc(var(--app-h) * 0.6);
  background-color: #fff;
  position: relative;
  z-index: 0;
  /* 1文字演出用 */
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: var(--app-h);
  }
}
#mainvisual .mv-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  filter: blur(6px);
}

.mainvisual_image {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-color: #efefef;
  z-index: -1;
}
.mainvisual_image > div {
  width: 100%;
  height: 100%;
}
.mainvisual_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainvisual_content {
  padding-top: 50px;
}
@media print, screen and (min-width: 992px) {
  .mainvisual_content {
    padding-top: 80px;
  }
}
.mainvisual_content .mainvisual_content_inner {
  color: #fff;
  font-size: min(calc(18px + 30 * (100vw - 375px) / 1225), 48px);
  line-height: normal;
  padding: 2em 1.66667em;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 99999;
  transform: translateY(-50%);
}
.mainvisual_content .mainvisual_content_inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(65deg, #0c2442 0%, #1a466b 100%);
  opacity: 0;
}
.mainvisual_content .mainvisual_content_inner h2 {
  font-size: 1em;
  letter-spacing: 0.08em;
  text-shadow: 0.05em 0.05em 0.3em rgba(0, 0, 0, 0.8);
  margin: 0;
}
.mainvisual_content .mainvisual_content_inner .intro-rule {
  margin: 0.5em 0;
  border-top: solid 1px #fff;
  height: 0;
}
.mainvisual_content .mainvisual_content_inner h3 {
  font-size: 0.75em;
  letter-spacing: 0.08em;
  margin: 0;
}
.mainvisual_content .mainvisual_content_inner p {
  font-weight: 900;
  font-size: 0.416667em;
  margin: 0.5em 0 0;
}

.mainvisual_content_inner {
  opacity: 0;
}

.fast_opening .mainvisual_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--app-w);
  height: var(--app-h);
  z-index: 99000;
  background-color: #1a466b;
  background: linear-gradient(65deg, #0c2442 0%, #1a466b 100%);
}

.home.main_last_ami .mainvisual_bg {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.home.main_last_ami .mainvisual_content_inner:before {
  opacity: 1;
}
.home #header {
  opacity: 0;
  transform: translateY(-100%);
}
.home.complete #header {
  opacity: 1;
  transform: translateY(0%);
  transition: all 1s ease;
}
.home.load_already #header {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}
.home.load_already .mainvisual_bg {
  display: none;
}
.home.load_already .mainvisual_content_inner {
  animation: mainvisual_content_inner_ami .6s ease 0s alternate forwards;
}
.home.load_already .mainvisual_content_inner:before {
  opacity: 1;
}

@keyframes mainvisual_content_inner_ami {
  from {
    transform: translate(10%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, -50%);
    opacity: 1;
  }
}
/**/
.scroll {
  display: none;
  position: absolute;
  right: clamp(10px, 1.875vw, 30px);
  bottom: clamp(10px, 1.875vw, 30px);
  z-index: 20;
}
@media print, screen and (min-width: 768px) {
  .scroll {
    font-size: 16px;
    display: block;
  }
}
.scroll .scroll-text {
  color: #fff;
  text-align: center;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.scroll .scroll-border {
  position: relative;
  width: 100%;
  height: 7.5em;
  margin-top: 2em;
  overflow: hidden;
}
.scroll .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 3.25em;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}

@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_history {
  padding: min(calc(50px + 110 * (100vw - 375px) / 1225), 160px) 0;
  background-color: #f3f3f3;
  overflow: hidden;
}
.home_history p {
  margin-bottom: 2em;
}
.home_history p:last-child {
  margin-bottom: 0;
}
.home_history .txt2 {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 1200px) {
  .home_history .txt2 {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 992px) {
  .home_history .photo {
    width: min(40.3125vw, 645px);
    margin-left: -15px;
    position: relative;
    z-index: 0;
  }
  .home_history .photo:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(65deg, #0c2442 0%, #1a466b 100%);
    z-index: -1;
    transform: translate(34.8837%, 19.2307%);
  }
}

/* ---  --- */
.home_service {
  color: #fff;
  padding: min(calc(50px + 110 * (100vw - 375px) / 1225), 160px) 0;
  background-image: linear-gradient(-65deg, #0c2442 0%, #1a466b 100%);
}
.home_service .figure_linlk_1 {
  --padding: min(calc(10px + 10 * (100vw - 375px) / 393), 20px);
  max-width: 645px;
}
@media print, screen and (min-width: 768px) {
  .home_service .figure_linlk_1 {
    --padding: min(calc(10px + 10 * (100vw - 768px) / 832), 20px);
  }
}

/* ---  --- */
.home_link .figure_linlk_2 {
  --padding: min(calc(10px + 10 * (100vw - 375px) / 393), 20px);
}
@media print, screen and (min-width: 768px) {
  .home_link .figure_linlk_2 {
    --padding: min(calc(10px + 10 * (100vw - 768px) / 832), 20px);
  }
}

/* ---  --- */
.page_contact {
  padding: min(calc(50px + 100 * (100vw - 375px) / 1225), 150px) 0;
  background-color: #fff;
}

.page_contact_box {
  color: #fff;
  --padding: 40px;
  padding: var(--padding);
  height: 100%;
  background: linear-gradient(45deg, #0c2442 0%, #1a466b 100%);
  position: relative;
  z-index: 0;
}
.page_contact_box:before {
  content: "";
  position: absolute;
  inset: calc(var(--padding) / 2);
  z-index: -1;
  border: solid 1px #fff;
}
.page_contact_box h3 {
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 0.75em;
  margin-bottom: 1rem;
  border-bottom: solid 1px #fff;
}
.page_contact_box .telphone {
  font-size: 36px;
  justify-content: center;
}
.page_contact_box .btn {
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.page_contact_box .btn i {
  color: #fff;
  font-size: 0.33334em;
  letter-spacing: normal;
  line-height: 1;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 1.5em;
}
.page_contact_box .btn:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 768px) {
  .page_contact_box {
    --padding: min(calc(20px + 20 * (100vw - 768px) / 832), 40px);
  }
  .page_contact_box h3 {
    font-size: min(calc(20px + 16 * (100vw - 768px) / 832), 36px);
  }
  .page_contact_box .telphone {
    font-size: min(calc(20px + 28 * (100vw - 768px) / 832), 48px);
  }
  .page_contact_box .btn {
    font-size: min(calc(18px + 22 * (100vw - 768px) / 832), 40px);
  }
}

/* -------------------------------
	事務所紹介
-------------------------------- */
.about_outline {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .about_outline .photo {
    width: min(45vw, 720px);
    margin-left: min(calc(15px + 110 * (100vw - 375px) / 1225), 125px);
    position: relative;
    z-index: 0;
  }
  .about_outline .photo:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(65deg, #0c2442 0%, #1a466b 100%);
    z-index: -1;
    transform: translate(34.8837%, 19.2307%);
  }
}

/**/
.loop_splide .splide__list {
  gap: clamp(5px, 1.33334vw, 20px);
}

.loop_splide_photo {
  width: clamp(120px, 26vw, 390px);
  aspect-ratio: 78 / 59;
}
.loop_splide_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	取扱業務
-------------------------------- */
.business_navi {
  padding: 50px 0;
  border-bottom: solid 1px #ccc;
}

.business_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.business_navi_list > li {
  flex: 0 0 50%;
  padding: 0 1px;
  border-left: solid 1px #ccc;
}
.business_navi_list > li:last-child {
  border-right: solid 1px #ccc;
}
.business_navi_list > li .btn {
  font-size: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
}
.business_navi_list > li .btn i {
  font-size: min(calc(5px + 5 * (100vw - 375px) / 1225), 10px);
  letter-spacing: normal;
  line-height: 1;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border: solid 1px currentColor;
  border-radius: 50%;
  margin-left: 1.5em;
}
.business_navi_list > li .btn:hover {
  background-color: #efefef;
}

/* ---  --- */
.business_tab {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 0;
}

.business_tab_content {
  padding: 20px 15px;
}
@media print, screen and (min-width: 992px) {
  .business_tab_content {
    padding: 2rem 1rem;
  }
  .business_tab_content .photo {
    margin-right: min(calc(15px + 35 * (100vw - 992px) / 608), 50px);
  }
}

/* -------------------------------
	アコーディオン
-------------------------------- */
.accordion-box > .ttl {
  color: #fff;
  font-weight: 900;
  font-size: min(calc(18px + 10 * (100vw - 375px) / 1225), 28px);
  line-height: 1.5;
  padding: 0.5em 3em 0.5em 1.5em;
  background: linear-gradient(65deg, #0c2442 0%, #1a466b 100%);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.accordion-box > .ttl .accordion_plus, .accordion-box > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.accordion-box > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.accordion-box > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #fff;
}
.accordion-box > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.accordion-box > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.accordion-box.active > .ttl .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-box.active > .ttl .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.accordion-box > .column {
  background-color: #fff;
}

/* -------------------------------
	弁護士紹介
-------------------------------- */
/* ---  --- */
.attorneys_staff_photo {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.attorneys_staff_photo .bg {
  background: linear-gradient(65deg, #0c2442 0%, #1a466b 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.attorneys_staff_photo h4 {
  color: #fff;
  margin: 0;
}
.attorneys_staff_photo h4 > .jp {
  display: block;
}
.attorneys_staff_photo h4 > .en {
  font-size: 0.64em;
  display: block;
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .attorneys_staff_photo {
    aspect-ratio: 4/3;
    height: 100%;
  }
}

.attorneys_staff_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.attorneys_staff_box .attorneys_staff_box_item {
  display: grid;
  grid-template-columns: 7em 1fr;
  border-bottom: solid 1px #ccc;
  padding: 10px;
}

.attorneys_staff_content {
  margin-bottom: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}
.attorneys_staff_content:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .attorneys_staff_content:nth-child(odd) .attorneys_staff_photo .bg {
    left: calc(-15px - 50 * (100vw - 375px) / 1225);
  }
  .attorneys_staff_content:nth-child(even) .row > div:first-child {
    order: 13;
    margin-left: auto;
  }
  .attorneys_staff_content:nth-child(even) .attorneys_staff_photo .bg {
    right: calc(-15px - 50 * (100vw - 375px) / 1225);
  }
}
@media print, screen and (min-width: 992px) {
  .attorneys_staff_content:nth-child(odd) .attorneys_staff_box {
    padding-left: 30px;
  }
  .attorneys_staff_content:nth-child(even) .attorneys_staff_box {
    padding-right: 30px;
  }
}
@media print, screen and (min-width: 1600px) {
  .attorneys_staff_content:nth-child(odd) .attorneys_staff_photo .bg {
    left: calc((1470px - 100vw) / 2);
  }
  .attorneys_staff_content:nth-child(even) .attorneys_staff_photo .bg {
    right: calc((1470px - 100vw) / 2);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  color: #fff;
  background-color: #f3f3f3;
}

.tel_contact_box {
  color: #fff;
  --padding: 40px;
  padding: var(--padding);
  height: 100%;
  background: linear-gradient(45deg, #0c2442 0%, #1a466b 100%);
  position: relative;
  z-index: 0;
}
.tel_contact_box:before {
  content: "";
  position: absolute;
  inset: calc(var(--padding) / 2);
  z-index: -1;
  border: solid 1px #fff;
}
.tel_contact_box h3 {
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 0.75em;
  margin-bottom: 1rem;
  border-bottom: solid 1px #fff;
}
.tel_contact_box .telphone {
  font-size: 36px;
  justify-content: center;
  padding: 0.5em 0;
}
.tel_contact_box .btn {
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.tel_contact_box .btn i {
  color: #fff;
  font-size: 0.33334em;
  letter-spacing: normal;
  line-height: 1;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 1.5em;
}
.tel_contact_box .btn:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_box {
    --padding: min(calc(20px + 20 * (100vw - 768px) / 832), 40px);
  }
  .tel_contact_box h3 {
    font-size: min(calc(20px + 16 * (100vw - 768px) / 832), 36px);
  }
  .tel_contact_box .telphone {
    font-size: min(calc(20px + 28 * (100vw - 768px) / 832), 48px);
  }
  .tel_contact_box .btn {
    font-size: min(calc(18px + 22 * (100vw - 768px) / 832), 40px);
  }
}

#contactform {
  /**/
}
#contactform .form-control {
  border-color: #eee;
  background-color: #f6f6f6;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .custom-select {
  box-shadow: none !important;
}
#contactform .custom-select:focus {
  border-color: #ccc;
}
#contactform input[type="file"] {
  font-size: 15px;
  letter-spacing: normal;
}
#contactform input[type="file"]::-webkit-file-upload-button {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  #contactform .select-inline, #contactform .p-region {
    width: auto;
    display: inline;
  }
}
#contactform .radio_group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
}
#contactform .radio_group > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .radio_group {
    gap: 0.25em 1.5em;
  }
  #contactform .radio_group > label {
    flex: 0 0 auto;
  }
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  font-weight: 500;
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  padding: 0.15em 0.75em;
  border-radius: 3px;
  background-color: var(--danger);
  margin-top: -.75em;
  position: absolute;
  right: 0;
  top: 50%;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 8em !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .table-contact > tbody > tr > th + td, .table-contact > tbody > tr > td + td {
    margin-top: .5em;
  }
}

.img-hisu {
  margin: -.2em .5em 0 0;
}

/*  */
.agree {
  text-align: center;
  margin-top: 20px;
}

.buttons {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.buttons .btn {
  font-size: 15px;
  margin: 0.3125em 0.625em;
  width: 260px;
  display: block;
  cursor: pointer;
}
@media print, screen and (min-width: 1200px) {
  .buttons .btn {
    font-size: 1rem;
  }
}

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-size: 0.9375rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@media screen {
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    --translate-y: 50px;
    --translate-y-on: 0;
    --translate-x: 100px;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }

  .amn-fade-up {
    transform: translateY(var(--translate-y));
  }
  .amn-fade-up.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--translate-y) * -1));
  }
  .amn-fade-down.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-left {
    transform: translateX(var(--translate-x));
  }
  .amn-fade-left.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--translate-x) * -1));
  }
  .amn-fade-right.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .space {
    width: 0.5em;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-1 > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * マスクエフェクト
 * ============================= */
@media screen {
  .amn-lr-open {
    --mask-duration: 0.5s cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: var(--primary);
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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