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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1.5em 0;
}
.table-design-1 > tbody > tr > th {
  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-icon-1 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: flex-start;
}
.list-icon-1 > li {
  padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 1em;
  margin-bottom: 1em;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.list-icon-1 > li > i {
  position: absolute;
  left: 0.25em;
  transform: scale(1.25);
}
.list-icon-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_caption_1 > img {
  display: block;
  max-width: inherit;
  width: 100%;
  border-radius: 5px;
}
.figure_caption_1 figcaption {
  font-size: 0.875em;
  margin-top: 0.5em;
  padding: 0 0.5em;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(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%;
  }
}
.img-radius-5 {
  border-radius: 5px;
}

/* 画像を枠に収める */
.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: 1600px) {
  .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-1 {
  --color: #fff;
  --bg-cr: #0190d3;
  --icon: "\f061";
  color: var(--color);
  font-weight: 700;
  text-align: left;
  padding: 1.5em 1.8125em;
  padding-right: 4.75em !important;
  border-radius: 0.625em;
  border: solid 1px var(--bg-cr);
  background-color: var(--bg-cr);
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-1::after {
  content: var(--icon);
  color: var(--bg-cr);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  right: 1.8125em;
  width: 3em;
  height: 3em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-top: -1.5em;
  background-color: var(--color);
  transform: scale(0.5);
  transform-origin: right center;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-1:hover {
  color: var(--bg-cr);
  background-color: var(--color);
}
.btn-1:hover::after {
  color: var(--color);
  background-color: var(--bg-cr);
}

.btn-2 {
  color: #0190d3;
  padding: 0 0.15em 0.3em;
  border-bottom: solid 1px currentColor;
  border-radius: 0;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0 1em;
  align-items: center;
  transition: letter-spacing 0.3s ease;
}
.btn-2::after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875em;
}
.btn-2:hover {
  color: #0190d3;
  letter-spacing: 0.2em;
}

/* 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;
}

/* --- keyframes --- */
@keyframes arrow-out-in {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column .inner {
  margin: auto 0;
}

/* -------------------------------
	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 {
  font-weight: 800;
  line-height: 1.2;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	無限ループ
-------------------------------- */
.text-loop {
  --s: 60s;
  overflow: hidden;
}
.text-loop__box {
  display: flex;
  width: 100vw;
}
.text-loop__item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: .25em;
}
.text-loop__item:nth-child(odd) {
  animation: text_loop var(--s) calc(var(--s) * -0.5) linear infinite;
}
.text-loop__item:nth-child(even) {
  animation: text_loop2 var(--s) linear infinite;
}

@keyframes text_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------------
	アコーディオン
-------------------------------- */
.accordion-box > .accordion-box-ttl {
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.accordion-box > .accordion-box-ttl .accordion_plus, .accordion-box > .accordion-box-ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.accordion-box > .accordion-box-ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -0.75em;
}
.accordion-box > .accordion-box-ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #0190d3;
}
.accordion-box > .accordion-box-ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.accordion-box > .accordion-box-ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.accordion-box.active > .accordion-box-ttl .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-box.active > .accordion-box-ttl .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}

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

.bg-cr-2 {
  background-color: #f2f2f2;
}

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

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

.fs-md {
  font-size: 1.125em !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: 400 !important;
}

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

.fs-size-1 {
  font-size: 1rem;
}
@media print, screen and (min-width: 992px) {
  .fs-size-1 {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.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 {
  padding-left: 0.75em;
  position: relative;
}
.title-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25em;
  height: 100%;
  border-radius: 1em;
  background-color: #0190d3;
}

.title-2 {
  color: #003954;
  display: flex;
  justify-content: center;
}
.title-2::before {
  content: "";
  width: 0.5em;
  height: 1.5em;
  margin-right: 1.25em;
  transform: skewX(-28deg);
  background-color: #0190d3;
  transform-origin: left bottom;
}
.title-2 > .in {
  display: block;
  flex: 1 1 0;
}
.title-2.left {
  justify-content: flex-start;
}

.title-hh-1 {
  color: #003954;
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  color: #0190d3;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.title-hh-1 > .fs-en::before {
  content: "";
  width: 0.44445em;
  height: 0.44445em;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.title-hh-1 > .fs-jp {
  font-size: 22px;
  display: block;
}
@media print, screen and (min-width: 992px) {
  .title-hh-1 > .fs-en {
    font-size: 16px;
  }
  .title-hh-1 > .fs-jp {
    font-size: clamp(24px, calc(24px + 16 * (100vw - 992px) / 608), 40px);
  }
}
.title-hh-1.ttl-xxl > .fs-en {
  font-size: 12px;
}
.title-hh-1.ttl-xxl > .fs-jp {
  font-size: 28px;
}
@media print, screen and (min-width: 768px) {
  .title-hh-1.ttl-xxl > .fs-en {
    font-size: 14px;
  }
  .title-hh-1.ttl-xxl > .fs-jp {
    font-size: 36px;
  }
}
@media print, screen and (min-width: 992px) {
  .title-hh-1.ttl-xxl > .fs-en {
    font-size: clamp(14px, calc(14px + 4 * (100vw - 992px) / 608), 18px);
  }
  .title-hh-1.ttl-xxl > .fs-jp {
    font-size: clamp(36px, calc(36px + 24 * (100vw - 992px) / 608), 60px);
  }
}
.title-hh-1.center {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}

.title-hh-2 {
  color: #003954;
  font-size: 1rem;
}
.title-hh-2 > .fs-jp {
  font-size: 16px;
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.title-hh-2 > .fs-jp::before {
  content: "";
  width: 0.44445em;
  height: 0.44445em;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.title-hh-2 > .fs-en {
  color: #0190d3;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-2.center {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
@media print, screen and (min-width: 992px) {
  .title-hh-2 > .fs-jp {
    font-size: clamp(16px, calc(16px + 2 * (100vw - 992px) / 608), 18px);
  }
  .title-hh-2 > .fs-en {
    font-size: clamp(40px, calc(40px + 40 * (100vw - 992px) / 608), 80px);
  }
}

.ttl-fs-1 {
  color: #003954;
  font-size: 28px;
}
@media print, screen and (min-width: 768px) {
  .ttl-fs-1 {
    font-size: 36px;
  }
}
@media print, screen and (min-width: 992px) {
  .ttl-fs-1 {
    font-size: clamp(36px, calc(36px + 24 * (100vw - 992px) / 608), 60px);
  }
}

.ttl-fs-2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .ttl-fs-2 {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 992px) {
  .ttl-fs-2 {
    font-size: clamp(18px, calc(18px + 10 * (100vw - 992px) / 608), 28px);
  }
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: -15px;
}
@media print, screen and (min-width: 992px) {
  :root {
    --container-padding: clamp(30px, 8.125vw, 130px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1600px) {
  :root {
    --edge: calc((1470px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 576px) {
  .container-fluid-xl {
    max-width: 540px;
  }
}
@media print, screen and (min-width: 768px) {
  .container-fluid-xl {
    max-width: 720px;
  }
}
@media print, screen and (min-width: 992px) {
  .container-fluid-xl {
    max-width: 1600px;
    padding-left: calc(var(--container-padding) / 2);
    padding-right: calc(var(--container-padding) / 2);
  }
}

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

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

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

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

.ww-col-10 {
  width: 100%;
}
@media print, screen and (min-width: 1200px) {
  .ww-col-10 {
    width: calc((100% + 30px) * 10 / 12 - 30px);
    margin-inline: auto;
  }
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  --margin-top: 50px;
  margin-top: var(--margin-top);
  margin-left: 15px;
  margin-right: 15px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 1200px) {
  #mainvisual {
    --margin-top: 120px;
  }
}

.mainvisual_content {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to top, rgba(0, 109, 160, 0.3) 0%, rgba(1, 144, 211, 0) 100%);
}
.mainvisual_content .inner {
  color: #fff;
  margin: auto 0 0;
  padding-left: 30px;
  padding-bottom: 30px;
  pointer-events: auto;
}
.mainvisual_content .inner .fs-en {
  font-size: 14px;
  text-shadow: 0px 0px 25px rgba(0, 33, 76, 0.3);
}
.mainvisual_content .inner h2 {
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0px 0px 25px rgba(0, 33, 76, 0.3);
}
@media print, screen and (min-width: 992px) {
  .mainvisual_content .inner {
    padding-left: 50px;
    padding-bottom: 50px;
  }
  .mainvisual_content .inner .fs-en {
    font-size: 16px;
  }
  .mainvisual_content .inner h2 {
    font-size: clamp(35px, 3.6vw, 72px);
  }
}

/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  overflow: hidden;
}
.splide01 .slide-media {
  height: calc(var(--app-w) * 1);
  max-height: calc(var(--app-h) * 0.6);
}
@media (orientation: landscape) and (max-width: 767px) {
  .splide01 .slide-media {
    height: var(--app-h);
    max-height: inherit;
  }
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide-media {
    height: calc(var(--app-h) - var(--margin-top));
    max-height: inherit;
  }
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 7s 1s linear;
  transform: scale(1);
}
.splide01 .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.1);
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  color: #0190d3;
  font-size: 1rem;
}
.home_ttl_1 > .fs-jp {
  font-size: 16px;
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.home_ttl_1 > .fs-jp::before {
  content: "";
  width: 0.44445em;
  height: 0.44445em;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home_ttl_1 > .fs-en {
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.home_ttl_1.center {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
@media print, screen and (min-width: 992px) {
  .home_ttl_1 > .fs-jp {
    font-size: clamp(16px, calc(16px + 2 * (100vw - 992px) / 608), 18px);
  }
  .home_ttl_1 > .fs-en {
    font-size: clamp(40px, calc(40px + 40 * (100vw - 992px) / 608), 80px);
  }
}

/* --- 当社の強み --- */
.home_strong {
  overflow: hidden;
}

.home_strong_tonbo {
  --side: 30px;
  height: var(--side);
  position: relative;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .home_strong_tonbo {
    --side: 45px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_strong_tonbo {
    --side: min(calc(45px + 36 * (100vw - 992px) / 608), 81px);
  }
}
.home_strong_tonbo::before, .home_strong_tonbo::after {
  content: "";
  width: var(--side);
  aspect-ratio: 1/1;
  display: block;
  background: url("../images/home/tonbo.png") no-repeat center center/contain;
  position: absolute;
  top: 0;
}
.home_strong_tonbo::before {
  right: 100%;
}
.home_strong_tonbo::after {
  left: 100%;
  transform: scale(-1, 1);
}
.home_strong_tonbo.btm::before {
  transform: scale(1, -1);
}
.home_strong_tonbo.btm::after {
  transform: scale(-1, -1);
}

.home_strong_list {
  --col:1;
  --gap:30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px var(--gap);
}
@media print, screen and (min-width: 768px) {
  .home_strong_list {
    --col:2;
    --gap:30px;
    gap: 50px var(--gap);
  }
}
@media print, screen and (min-width: 992px) {
  .home_strong_list {
    --col:3;
    --gap: min(calc(30px + 40 * (100vw - 992px) / 608), 70px);
    gap: 60px var(--gap);
  }
}
.home_strong_list > .home_strong_list_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}

.home_strong_figure > .image {
  border-radius: 5px;
  overflow: hidden;
}
.home_strong_figure > .image img {
  max-width: inherit;
  width: 100%;
}
.home_strong_figure figcaption .ttl {
  color: #003954;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-top: 0.77777em;
}
.home_strong_figure figcaption .ttl .txt {
  display: block;
  padding-right: 1.25em;
}
.home_strong_figure figcaption .ttl .icon {
  color: #0190d3;
  display: block;
  flex: 0 0 2.22223em;
  height: 2.22223em;
  display: grid;
  place-items: center;
  position: relative;
}
.home_strong_figure figcaption .ttl .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: solid 1px #0190d3;
  border-radius: 50%;
}
.home_strong_figure figcaption .ttl .icon i {
  font-size: 0.66667em;
  letter-spacing: normal;
}
@media print, screen and (min-width: 768px) {
  .home_strong_figure figcaption .ttl {
    font-size: 13px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_strong_figure figcaption .ttl {
    font-size: clamp(13px, calc(13px + 5 * (100vw - 992px) / 608), 18px);
  }
}
a > .home_strong_figure .image img {
  transition: transform 0.3s ease;
}
a > .home_strong_figure figcaption .ttl .icon::before {
  transition: transform 0.3s ease;
}
a > .home_strong_figure:hover .image img {
  transform: scale(1.15);
}
a > .home_strong_figure:hover figcaption .ttl .icon::before {
  transform: scale(0.9);
}

/* ---  --- */
.home_business {
  color: #fff;
  background: url("../images/home/home_business_bg.jpg") no-repeat center center/cover;
}

.home_business_content .home_ttl_1 {
  color: #fff;
}
@media print, screen and (min-width: 992px) {
  .home_business_content .column {
    max-width: 27.5em;
  }
}

.home_business_list {
  --col:2;
  --gap:10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media print, screen and (min-width: 768px) {
  .home_business_list {
    --col:3;
    --gap:15px;
  }
}
.home_business_list > .home_business_list_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.home_business_list > .home_business_list_col > a {
  text-decoration: none;
}

.home_business_item {
  color: #222;
  width: 100%;
  height: 100%;
  padding: 20px 15px 50px;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.home_business_item .num {
  color: #0190d3;
  font-size: 12px;
  margin-bottom: 1em;
}
.home_business_item h3 {
  color: #003954;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-bottom: 1em;
}
.home_business_item .icon {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}
.home_business_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.home_business_item .column {
  font-size: 14px;
}
.home_business_item .more {
  color: #fff;
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background-color: #0190d3;
}
.home_business_item .more i {
  font-size: 13px;
}
.home_business_item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.home_business_item:hover .more i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 992px) {
  .home_business_item {
    padding: 25px 25px 50px;
  }
  .home_business_item h3 {
    font-size: 24px;
  }
  .home_business_item .icon {
    height: 81px;
  }
  .home_business_item .column {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 1200px) {
  .home_business_item {
    container-type: inline-size;
  }
  .home_business_item h3 {
    font-size: clamp(18px, calc((24 / 220) * 100cqw), 24px);
  }
  .home_business_item .icon {
    height: clamp(50px, calc((81 / 220) * 100cqw), 81px);
  }
}

/* --- 制作の流れ --- */
.home_flow {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_flow .text-loop {
  color: #f0faff;
  font-size: clamp(100px, 16vw, 320px);
  font-weight: 500;
  line-height: 0.8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.home_flow_img {
  text-align: center;
}
.home_flow_img img {
  max-width: inherit;
  width: 100%;
  border-radius: 5px;
}

@media print, screen and (min-width: 992px) {
  .home_flow_content {
    padding-left: clamp(50px, calc(50px + 75 * (100vw - 992px) / 608), 125px);
  }
}

/* ---  --- */
.home_equipment {
  background-color: #f2f2f2;
}

.home_equipment_figure {
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_equipment_figure {
    container-type: inline-size;
  }
}
.home_equipment_figure .image {
  aspect-ratio: 47 / 30;
  overflow: hidden;
}
.home_equipment_figure .image img {
  transition: transform 0.3s ease;
}
.home_equipment_figure figcaption {
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.home_equipment_figure figcaption .num {
  color: #0190d3;
}
.home_equipment_figure figcaption .ttl {
  border-left: solid 1px #cfcfcf;
  padding-left: 20px;
  margin-left: 20px;
}
.home_equipment_figure figcaption .ttl h3 {
  font-size: 1rem;
  margin: 0;
}
.home_equipment_figure figcaption .ttl h3 .fs-jp {
  color: #003954;
  font-weight: 500;
  font-size: 26px;
  display: block;
}
.home_equipment_figure figcaption .ttl h3 .fs-en {
  color: #cfcfcf;
  font-weight: 400;
  font-size: 11px;
  display: block;
}
.home_equipment_figure figcaption .arrow {
  color: #0190d3;
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
}
.home_equipment_figure figcaption .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: solid 1px #0190d3;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.home_equipment_figure figcaption .arrow i {
  font-size: 12px;
}
@media print, screen and (min-width: 992px) {
  .home_equipment_figure figcaption {
    padding: clamp(10px, calc((20 / 470) * 100cqw), 20px) clamp(15px, calc((30 / 470) * 100cqw), 30px);
  }
  .home_equipment_figure figcaption .ttl {
    padding-left: clamp(15px, calc((30 / 470) * 100cqw), 30px);
    margin-left: clamp(15px, calc((30 / 470) * 100cqw), 30px);
  }
  .home_equipment_figure figcaption .ttl h3 .fs-jp {
    font-size: clamp(20px, calc((32 / 470) * 100cqw), 32px);
  }
  .home_equipment_figure figcaption .ttl h3 .fs-en {
    font-size: clamp(8px, calc((11 / 470) * 100cqw), 11px);
  }
  .home_equipment_figure figcaption .arrow {
    width: 40px;
    height: 40px;
  }
  .home_equipment_figure figcaption .arrow i {
    font-size: 12px;
  }
}
a > .home_equipment_figure:hover .image img {
  transition: transform 0.7s ease;
  transform: scale(1.1);
}
a > .home_equipment_figure:hover figcaption .arrow::before {
  transform: scale(0.8);
}

/* ---  --- */
.home_recruit .bg_img {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .home_recruit {
    display: flex;
  }
  .home_recruit .bg_img {
    flex: 1 1 0;
    display: block;
  }
  .home_recruit .home_recruit_inner {
    flex: 0 0 660px;
  }
}

.home_recruit_inner {
  padding-left: 15px;
  padding-right: 15px;
  background: linear-gradient(to top, rgba(0, 70, 198, 0.7) 0%, rgba(1, 144, 211, 0.7) 100%);
}
.home_recruit_inner .home_ttl_1 {
  color: #fff;
}
.home_recruit_inner .column {
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.home_recruit_inner .home_recruit_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 270px;
  justify-content: center;
  gap: 20px;
}
.home_recruit_inner .home_recruit_nav > ul > li .btn-1 {
  --color: #0190d3;
  --bg-cr: #fff;
  display: block;
}

/* ---  --- */
.page_contact {
  padding: clamp(75px, calc(75px + 75 * (100vw - 375px) / 1225), 150px) 0;
  background-color: #f2f2f2;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.page_contact .text-loop {
  color: #ebecec;
  font-size: clamp(100px, 16vw, 320px);
  font-weight: 500;
  line-height: 0.8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.page_contact_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 15px;
  border-radius: 5px;
  background-color: #fff;
}
.page_contact_item .inner {
  margin: auto;
}
.page_contact_item .inner .ttl {
  color: #0190d3;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  padding: 0.275em 0.75em;
  border: solid 1px #0190d3;
  border-radius: 10em;
  margin-bottom: 1.5em;
}
.page_contact_item .inner .ttl2 {
  font-weight: 500;
  display: grid;
  grid-template-columns: 2.5em auto;
  align-items: center;
  gap: 0.5625em;
}
.page_contact_item .inner .ttl2 .icon {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #d7eaf3;
}
.page_contact_item .inner .ttl2 .icon img {
  width: auto;
  height: 0.9375em;
}
.page_contact_item .inner .telphone {
  color: #0190d3;
  font-size: 30px;
  margin: 0.25em 0;
}
.page_contact_item .inner .subtxt {
  font-size: 12px;
}
.page_contact_item .inner .subtxt2 {
  font-size: 14px;
  text-align: center;
  margin: 2em 0;
}
@media print, screen and (min-width: 992px) {
  .page_contact_item {
    container-type: inline-size;
    padding: 0;
  }
  .page_contact_item .inner {
    padding: 40px 15px;
  }
  .page_contact_item .inner .ttl {
    font-size: clamp(15px, calc((20 / 470) * 100cqw), 20px);
  }
  .page_contact_item .inner .ttl2 {
    font-size: clamp(14px, calc((16 / 470) * 100cqw), 16px);
  }
  .page_contact_item .inner .telphone {
    font-size: clamp(25px, calc((40 / 470) * 100cqw), 40px);
  }
  .page_contact_item .inner .subtxt {
    font-size: clamp(10px, calc((15 / 470) * 100cqw), 15px);
  }
}

.page_contact_item_mail .btn-1 {
  display: block;
  max-width: 270px;
  margin: 0 auto;
}
@media print, screen and (min-width: 992px) {
  .page_contact_item_mail .inner .ttl2 {
    font-weight: 700;
    font-size: clamp(14px, calc((20 / 470) * 100cqw), 20px);
  }
}

/* -------------------------------
	事業内容
-------------------------------- */
/* --- アイエスアイだからこそ出来ること --- */
.business_point_item {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(50px, calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}
.business_point_item:last-child {
  margin: 0;
}
.business_point_item .business_point_item_image img {
  border-radius: 5px;
}
.business_point_item .business_point_item_content {
  display: flex;
  flex-direction: column;
}
.business_point_item .business_point_item_content .inner h4 > .fs-en {
  color: #0190d3;
  font-size: 2em;
  line-height: 1;
  display: block;
}
.business_point_item .business_point_item_content .inner h4 .txt {
  color: #003954;
  display: block;
}
.business_point_item .business_point_item_content .inner .column {
  line-height: 2;
  margin-left: 15px;
  padding-left: 15px;
  border-left: solid 2px #efefef;
}
@media print, screen and (min-width: 992px) {
  .business_point_item .business_point_item_content .inner {
    margin: auto 0;
    padding: 0 clamp(15px, calc(15px + 45 * (100vw - 992px) / 608), 60px);
  }
  .business_point_item .business_point_item_content .inner h4 {
    font-size: clamp(25px, calc(25px + 7 * (100vw - 992px) / 608), 32px);
  }
  .business_point_item .business_point_item_content .inner .column {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
}
@media print, screen and (min-width: 992px) {
  .business_point_item {
    grid-template-columns: repeat(2, 1fr);
  }
  .business_point_item:nth-child(even) > .business_point_item_image {
    order: 3;
  }
}

/* -------------------------------
	商業印刷・出版印刷
-------------------------------- */
/* ---  --- */
.commercial_book_content.even {
  background-color: #F1FAFE;
}

.commercial_book_content_list {
  --border: #ccc;
  border-top: solid 1px var(--border);
  border-left: solid 1px var(--border);
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
.commercial_book_content_list > .commercial_book_content_list_col {
  flex: 0 0 100%;
  border-right: solid 1px var(--border);
  border-bottom: solid 1px var(--border);
}
@media print, screen and (min-width: 768px) {
  .commercial_book_content_list > .commercial_book_content_list_col {
    flex: 0 0 50%;
  }
}
@media print, screen and (min-width: 992px) {
  .commercial_book_content_list > .commercial_book_content_list_col {
    flex: 0 0 33.33334%;
  }
}

.commercial_book_content_item {
  padding: 30px 20px;
  height: 100%;
}
.commercial_book_content_item h4 {
  color: #0190d3;
  font-size: 24px;
  text-align: center;
  margin-top: .5em;
}
.commercial_book_content_item .icon {
  width: 80px;
  aspect-ratio: 1/1;
  border: solid 2px #0190d3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 auto;
  background-color: #0190d3;
}
.commercial_book_content_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 20%;
}
.commercial_book_content_item .column {
  margin-top: 15px;
}
@media print, screen and (min-width: 992px) {
  .commercial_book_content_item {
    container-type: inline-size;
    padding: min(calc(20px + 30 * (100vw - 992px) / 608), 50px);
  }
  .commercial_book_content_item h4 {
    font-size: clamp(15px, calc((32 / 385) * 100cqw), 32px);
  }
  .commercial_book_content_item .icon {
    width: clamp(15px, calc((130 / 385) * 100cqw), 130px);
  }
  .commercial_book_content_item .column {
    margin-top: 30px;
  }
}

/* ---  --- */
.commercial_book_works {
  background-color: #F1FAFE;
}

.commercial_book_works_list .commercial_book_works_col {
  margin-bottom: 40px;
}
.commercial_book_works_list .commercial_book_works_col:last-child {
  margin-bottom: 0;
}
.commercial_book_works_list .commercial_book_works_col .ttl h4 {
  color: #0190d3;
  padding-left: 0.5em;
  border-left: solid 0.25em #0190d3;
}
.commercial_book_works_list .commercial_book_works_col .columns {
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  .commercial_book_works_list .commercial_book_works_col {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .commercial_book_works_list .commercial_book_works_col .ttl {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #0190d3;
    position: relative;
  }
  .commercial_book_works_list .commercial_book_works_col .ttl::after {
    content: "";
    position: absolute;
    left: calc(100% - 1px);
    top: 50%;
    margin-top: -15px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0px 15px 30px;
    border-color: transparent transparent transparent #0190d3;
  }
  .commercial_book_works_list .commercial_book_works_col .ttl h4 {
    color: #fff;
    font-size: clamp(20px, calc(20px + 6 * (100vw - 992px) / 608), 26px);
    text-align: center;
    margin: auto;
    padding-left: 0;
    border-left: none;
    width: 15em;
  }
  .commercial_book_works_list .commercial_book_works_col .columns {
    font-size: clamp(16px, calc(16px + 2 * (100vw - 992px) / 608), 18px);
    padding: 2em;
  }
}

/* -------------------------------
	パッケージ印刷
-------------------------------- */
/* ---  --- */
.card_head h3 {
  text-align: center;
}
.card_head p {
  font-size: 15px;
  line-height: 2;
  text-align: center;
}

/* ---  --- */
.card_content {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.card_content .text-loop {
  color: #f0faff;
  font-size: clamp(100px, 16vw, 320px);
  font-weight: 500;
  line-height: 0.8;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.card_content_columns {
  display: grid;
  grid-template-columns: min(26.66667%, 120px) 1fr;
  gap: 20px;
}
.card_content_columns .column {
  line-height: 2;
  display: flex;
  flex-direction: column;
}
.card_content_columns .column .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 992px) {
  .card_content_columns {
    grid-template-columns: min(20%, 225px) 1fr;
  }
  .card_content_columns .column {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
}

/**/
.card_loop_splide {
  overflow: visible;
}
.card_loop_splide .splide__track {
  overflow: visible;
}
.card_loop_splide .splide__list {
  gap: clamp(5px, 1.33334vw, 20px);
}

.cad_photo {
  width: clamp(120px, 26vw, 240px);
  aspect-ratio: 20 / 29;
  border-radius: 10px;
  background-color: #ccc;
  overflow: hidden;
}
.cad_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**/
.card_content_figure {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 20px;
  border: solid 1px #ccc;
  border-radius: 15px;
  padding: 20px;
}
.card_content_figure .image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #E1F5FF;
}
.card_content_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  padding: 15%;
  object-fit: contain;
}
.card_content_figure figcaption .ttl {
  color: #0190d3;
  font-weight: 500;
}
.card_content_figure figcaption .column {
  font-size: 15px;
}
@media print, screen and (min-width: 992px) {
  .card_content_figure {
    display: block;
    padding: clamp(15px, calc(15px + 15 * (100vw - 992px) / 608), 30px);
  }
  .card_content_figure .image {
    width: 64%;
    margin: 0 auto 1rem;
  }
  .card_content_figure figcaption .ttl {
    font-size: clamp(16px, calc(16px + 2 * (100vw - 992px) / 608), 18px);
    text-align: center;
    margin-bottom: 0.5em;
  }
  .card_content_figure figcaption .column {
    font-size: 15px;
  }
}

/* ---  --- */
.card_printing_point {
  background-color: #f2f2f2;
}
.card_printing_point h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
}
.card_printing_point .card_printing_point_list {
  font-weight: 500;
  list-style: none;
  padding: 0;
}
.card_printing_point .card_printing_point_list > li {
  padding: 0.75em 0 0.75em 2em;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.card_printing_point .card_printing_point_list > li > i {
  position: absolute;
  left: 0;
  top: 50%;
  color: #0190d3;
  font-size: 1.5em;
  line-height: 1;
  margin-top: -.5em;
}
@media print, screen and (min-width: 768px) {
  .card_printing_point h3 {
    font-size: 22px;
  }
  .card_printing_point .card_printing_point_list {
    font-size: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .card_printing_point h3 {
    font-size: clamp(22px, calc(22px + 10 * (100vw - 992px) / 608), 32px);
  }
  .card_printing_point .card_printing_point_list {
    font-size: clamp(18px, calc(18px + 6 * (100vw - 992px) / 608), 24px);
    gap: 30px 50px;
  }
}

/* ---  --- */
.card_printing_Kaleido h3 {
  color: #0190d3;
  font-weight: 500;
  font-size: 25px;
  display: flex;
  align-items: center;
}
.card_printing_Kaleido h3::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  margin-left: 1em;
  background-color: currentColor;
}
.card_printing_Kaleido h3 .fs-en {
  font-weight: 500;
  font-size: 1.2em;
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido h3 {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .card_printing_Kaleido h3 {
    font-size: clamp(30px, calc(30px + 15 * (100vw - 992px) / 608), 45px);
  }
}

.card_printing_Kaleido_subcolumn {
  padding: 30px 15px;
  border-radius: 10px;
  background-color: #f0faff;
}
.card_printing_Kaleido_subcolumn h4 {
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido_subcolumn {
    padding: 30px;
  }
}

@media print, screen and (min-width: 992px) {
  .card_printing_Kaleido_image {
    margin-right: clamp(30px, calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
}

.card_printing_Kaleido_column .inner h4 {
  font-weight: 500;
  font-size: 25px;
}
.card_printing_Kaleido_column .inner h5 {
  font-weight: 500;
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido_column .inner h4 {
    font-size: 30px;
  }
  .card_printing_Kaleido_column .inner h5 {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .card_printing_Kaleido_column .inner h4 {
    font-size: clamp(30px, calc(30px + 15 * (100vw - 992px) / 608), 45px);
  }
  .card_printing_Kaleido_column .inner h5 {
    font-weight: 500;
    font-size: clamp(20px, calc(20px + 6 * (100vw - 992px) / 608), 26px);
  }
}

/**/
.card_printing_Kaleido_point {
  border-bottom: solid 1px #0190d3;
}
.card_printing_Kaleido_point h4 {
  color: #0190d3;
  font-weight: 500;
  font-size: 25px;
  display: flex;
  align-items: center;
}
.card_printing_Kaleido_point h4::before, .card_printing_Kaleido_point h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: currentColor;
  display: block;
}
.card_printing_Kaleido_point h4::before {
  margin-right: .75em;
}
.card_printing_Kaleido_point h4::after {
  margin-left: .75em;
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido_point h4 {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido_point h4 {
    font-size: clamp(30px, calc(30px + 8 * (100vw - 992px) / 608), 38px);
  }
}

/**/
.card_printing_Kaleido_list_1 .card_printing_Kaleido_list_col {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #98DDFE;
}
.card_printing_Kaleido_list_1 .card_printing_Kaleido_list_col:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido_list_1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .card_printing_Kaleido_list_1 {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .card_printing_Kaleido_list_1 .card_printing_Kaleido_list_col {
    padding: 0;
    border-bottom: none;
    border-right: solid 1px #98DDFE;
  }
}

.card_printing_Kaleido_figure_1 {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 0;
  padding: 0 20px;
}
.card_printing_Kaleido_figure_1 .image {
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.card_printing_Kaleido_figure_1 .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card_printing_Kaleido_figure_1 figcaption {
  padding-left: 40px;
}
.card_printing_Kaleido_figure_1 figcaption p {
  font-weight: 500;
}
@media print, screen and (min-width: 992px) {
  .card_printing_Kaleido_figure_1 {
    display: block;
    padding: clamp(15px, calc(15px + 15 * (100vw - 992px) / 608), 30px);
  }
  .card_printing_Kaleido_figure_1 .image {
    width: 50%;
    margin: 0 auto 1rem;
  }
  .card_printing_Kaleido_figure_1 figcaption {
    padding: 0;
  }
  .card_printing_Kaleido_figure_1 figcaption p {
    font-size: clamp(14px, calc(14px + 2 * (100vw - 992px) / 608), 16px);
    text-align: center;
  }
}

/**/
.card_printing_Kaleido_figure_2 figcaption {
  position: relative;
  z-index: 10;
}
.card_printing_Kaleido_figure_2 figcaption .icon {
  font-size: 30px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: solid 2px #fff;
  margin: -.5em auto 0.5rem;
  background-color: #0190d3;
}
.card_printing_Kaleido_figure_2 figcaption .icon img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20%;
  display: block;
}
.card_printing_Kaleido_figure_2 figcaption .txt {
  color: #0190d3;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .card_printing_Kaleido_figure_2 figcaption .icon {
    font-size: 50px;
  }
  .card_printing_Kaleido_figure_2 figcaption .txt {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .card_printing_Kaleido_figure_2 figcaption .icon {
    font-size: clamp(40px, calc(40px + 30 * (100vw - 992px) / 608), 70px);
  }
  .card_printing_Kaleido_figure_2 figcaption .txt {
    font-size: clamp(14px, calc(14px + 2 * (100vw - 992px) / 608), 16px);
  }
}

/* -------------------------------
	パッケージ印刷
-------------------------------- */
/* ---  --- */
.package_head h3 {
  color: #343a40;
  font-size: 25px;
  text-align: center;
}
.package_head p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .package_head h3 {
    font-size: clamp(25px, calc(25px + 20 * (100vw - 992px) / 608), 45px);
  }
  .package_head p {
    font-size: clamp(16px, calc(16px + 8 * (100vw - 992px) / 608), 24px);
  }
}

/* ---  --- */
.package_content {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.package_content .text-loop {
  color: #f0faff;
  font-size: clamp(100px, 16vw, 320px);
  font-weight: 500;
  line-height: 0.8;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.package_content_image {
  max-width: 64%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  margin: 0 auto;
  background-color: #DFF4FF;
}
.package_content_image img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 20%;
}
@media print, screen and (min-width: 992px) {
  .package_content_image {
    max-width: 100%;
    margin-right: clamp(30px, calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
}

.package_content_columns {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package_content_columns .inner {
  line-height: 2;
  margin: auto 0;
}
@media print, screen and (min-width: 992px) {
  .package_content_columns .inner {
    font-size: clamp(16px, calc(16px + 2 * (100vw - 992px) / 608), 18px);
  }
}

@media print, screen and (min-width: 768px) {
  .package_content_column {
    padding: clamp(35px, calc(35px + 25 * (100vw - 768px) / 832), 60px);
    border-radius: 10px;
    background-color: #f0faff;
  }
}

.package_content_column_list {
  font-weight: 500;
  font-size: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 0.5em;
}
.package_content_column_list > li {
  padding: 0.75em 0.15em;
  border-bottom: solid 1px #C4C6CF;
}
@media print, screen and (min-width: 768px) {
  .package_content_column_list {
    font-size: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
  .package_content_column_list > li {
    padding-left: 0.5em;
  }
}
@media print, screen and (min-width: 1200px) {
  .package_content_column_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------------------------------
	データ制作・刷版
-------------------------------- */
/* ---  --- */
.ctp_dtp_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ctp_dtp_navi_list > li > .btn {
  font-size: 13px;
  display: block;
}
.ctp_dtp_navi_list > li > .btn > span {
  display: block;
}
.ctp_dtp_navi_list > li > .btn > .fs-jp {
  font-size: 1.5em;
}
.ctp_dtp_navi_list > li > .btn i {
  font-size: 1.25em;
  right: 0.75em;
}
@media print, screen and (min-width: 768px) {
  .ctp_dtp_navi_list > li > .btn {
    font-size: 16px;
  }
}

/* ---  --- */
@media print, screen and (min-width: 992px) {
  .ctp_dtp_content .title-hh-2 > .fs-jp {
    font-size: clamp(16px, calc(16px + 7 * (100vw - 992px) / 608), 23px);
  }
  .ctp_dtp_content .title-hh-2 > .fs-en {
    font-size: clamp(40px, calc(40px + 80 * (100vw - 992px) / 608), 120px);
  }
}
.ctp_dtp_content .column {
  font-weight: 500;
  line-height: 2;
}
@media print, screen and (min-width: 992px) {
  .ctp_dtp_content .column {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 608), 20px);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .ctp_dtp_content .column p {
    margin-top: auto;
  }
}

/* ---  --- */
.ctp_dtp_advantage_image {
  background-color: #ccc;
}
.ctp_dtp_advantage_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  .ctp_dtp_advantage_image {
    margin-left: var(--edge);
    margin-right: clamp(30px, calc(30px + 95 * (100vw - 992px) / 608), 125px);
    height: 100%;
  }
}

.ctp_dtp_advantage_list {
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  padding: 0;
}
.ctp_dtp_advantage_list > li {
  padding: 0.5em 0 0.5em 2em;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.ctp_dtp_advantage_list > li > i {
  color: #ff0000;
  position: absolute;
  left: 0.25em;
  top: 50%;
  transform: translateY(-50%) scale(1.5);
}
@media print, screen and (min-width: 768px) {
  .ctp_dtp_advantage_list {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .ctp_dtp_advantage_list {
    font-size: clamp(20px, calc(20px + 12 * (100vw - 992px) / 608), 32px);
  }
}

/**/
.ctp_dtp_point {
  position: relative;
  z-index: 0;
}

.ctp_dtp_point_image .image img {
  border-radius: 10px;
}
@media print, screen and (min-width: 992px) {
  .ctp_dtp_point_image {
    position: sticky;
    top: 150px;
    margin-left: clamp(30px, calc(30px + 60 * (100vw - 992px) / 608), 90px);
  }
}

.ctp_dtp_point_list .ctp_dtp_point_list_col {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.01);
  background-color: #fff;
}
.ctp_dtp_point_list .ctp_dtp_point_list_col:nth-child(odd) {
  background-color: #DCF3FF;
}
.ctp_dtp_point_list .ctp_dtp_point_list_col:last-child {
  margin-bottom: 0;
}

.ctp_dtp_point_item .ttl {
  color: #003954;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  margin-bottom: 0.5em;
}
.ctp_dtp_point_item .ttl .fs-en {
  font-size: 2em;
  line-height: 1;
  margin-right: 0.25em;
}
.ctp_dtp_point_item .ttl .txt {
  margin-top: 0.35em;
}
@media print, screen and (min-width: 768px) {
  .ctp_dtp_point_item .ttl {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .ctp_dtp_point_item .ttl {
    font-size: clamp(20px, calc(20px + 10 * (100vw - 992px) / 608), 30px);
  }
}

/* ---  --- */
.dtp_ctp_workflow h3 {
  text-align: center;
}
.dtp_ctp_workflow h3 small {
  margin: 0 0.15em;
}
.dtp_ctp_workflow h3 .small {
  font-size: 0.8125em;
}
.dtp_ctp_workflow h4 {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .dtp_ctp_workflow h4 {
    font-size: 23px;
  }
  .dtp_ctp_workflow .dtp_ctp_workflow_column {
    line-height: 2;
    text-align: center;
  }
}
@media print, screen and (min-width: 992px) {
  .dtp_ctp_workflow h4 {
    font-size: clamp(23px, calc(23px + 3 * (100vw - 992px) / 608), 26px);
  }
  .dtp_ctp_workflow .dtp_ctp_workflow_column {
    font-size: clamp(16px, calc(16px + 2 * (100vw - 992px) / 608), 18px);
    text-align: center;
  }
}

/* -------------------------------
	特殊印刷
-------------------------------- */
/* ---  --- */
.special_head h3 {
  text-align: center;
}
.special_head p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .special_head p {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
@media print, screen and (min-width: 992px) {
  .special_head p {
    font-size: clamp(16px, calc(16px + 8 * (100vw - 992px) / 608), 24px);
    text-align: center;
  }
}

/* ---  --- */
.special_content {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.special_content .text-loop {
  color: #f0faff;
  font-size: clamp(100px, 16vw, 320px);
  font-weight: 500;
  line-height: 0.8;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.special_content_subttl {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .special_content_subttl {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .special_content_subttl {
    font-size: clamp(20px, calc(20px + 10 * (100vw - 992px) / 608), 30px);
  }
}

/* */
.special_accordion_1 > .accordion-box-ttl {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #ccc;
}
.special_accordion_1 > .accordion-box-ttl .ttl_txt {
  color: #003954;
  font-size: 1em;
  display: flex;
  margin: 0;
}
.special_accordion_1 > .accordion-box-ttl .ttl_txt::before {
  content: "";
  width: 0.5em;
  height: 1.5em;
  margin-right: 1.5em;
  transform: skewX(-28deg);
  background-color: #0190d3;
  transform-origin: left bottom;
}
@media print, screen and (min-width: 768px) {
  .special_accordion_1 > .accordion-box-ttl {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .special_accordion_1 > .accordion-box-ttl {
    font-size: clamp(20px, calc(20px + 10 * (100vw - 992px) / 608), 30px);
  }
}
.special_accordion_1 .accordion-box-column {
  padding-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .special_accordion_1 .accordion-box-column {
    padding-top: 50px;
  }
}

/**/
.special_accordion_list {
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 992px) {
  .special_accordion_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.special_accordion_figure {
  padding: 10px;
  border: dotted 1px #ccc;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}
.special_accordion_figure .image {
  aspect-ratio: 1/1;
  border-radius: 5px;
  background-color: #f2f2f2;
  overflow: hidden;
}
.special_accordion_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.special_accordion_figure figcaption {
  display: flex;
  flex-direction: column;
}
.special_accordion_figure figcaption .inner {
  margin: auto 0;
}
.special_accordion_figure figcaption .inner .ttl {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 0.35em;
}
.special_accordion_figure figcaption .inner .column {
  font-size: 14px;
  line-height: 1.5;
}
.special_accordion_figure figcaption .inner .link {
  text-align: right;
}
.special_accordion_figure figcaption .inner .link .btn {
  font-size: 13px;
}
@media print, screen and (min-width: 768px) {
  .special_accordion_figure {
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 15px;
  }
  .special_accordion_figure figcaption .inner .ttl {
    font-size: 20px;
  }
  .special_accordion_figure figcaption .inner .column {
    font-size: 16px;
  }
}

/* ---  --- */
.special_printing_offer_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0px;
}
.special_printing_offer_list > li {
  font-weight: 500;
  padding: 1em 0.25em 1em 2.5em;
  border-bottom: solid 1px #73D2FE;
  position: relative;
}
.special_printing_offer_list > li i {
  position: absolute;
  left: 0.1em;
  top: 50%;
  color: #0190d3;
  font-size: 1.75em;
  line-height: 1;
  margin-top: -.5em;
}
@media print, screen and (min-width: 768px) {
  .special_printing_offer_list {
    font-size: 18px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .special_printing_offer_list {
    font-size: clamp(18px, calc(18px + 6 * (100vw - 992px) / 608), 24px);
    gap: 0 min(calc(30px + 30 * (100vw - 992px) / 608), 60px);
  }
}

/* -------------------------------
	制作の流れ
-------------------------------- */
/* ---  --- */
.flow_content {
  --ttl-size: 25px;
  --margin: 30px;
}
@media print, screen and (min-width: 768px) {
  .flow_content {
    --ttl-size: 30px;
    --margin: 50px;
  }
}
@media print, screen and (min-width: 992px) {
  .flow_content {
    --ttl-size: 38px;
    --margin: 60px;
  }
}

.flow_content_item {
  margin-top: var(--margin);
  display: flex;
}
.flow_content_item:first-child {
  margin-top: 0;
}
.flow_content_item .flow_content_item_step {
  flex: 0 0 calc(var(--ttl-size) * 2);
  display: flex;
  flex-direction: column;
}
.flow_content_item .flow_content_item_step::after {
  content: "";
  margin: calc(var(--margin) / 2) auto 0;
  display: block;
  flex: 1 1 0;
  width: 1px;
  background-color: var(--primary);
  opacity: 0.5;
}
.flow_content_item .flow_content_item_step > .num {
  color: #fff;
  font-size: var(--ttl-size);
  width: calc(var(--ttl-size) * 2);
  height: calc(var(--ttl-size) * 2);
  border-radius: 0.25em;
  display: grid;
  place-items: center;
  background-color: var(--primary);
}
.flow_content_item .flow_content_item_content {
  flex: 1 1 0;
  padding-left: var(--ttl-size);
  padding-bottom: 3.125rem;
}
.flow_content_item .flow_content_item_content .ttl {
  color: var(--primary);
  font-size: var(--ttl-size);
  line-height: 1.5;
  padding-top: calc(var(--ttl-size) * 0.25);
}
.flow_content_item .flow_content_item_content .ttl2 {
  font-weight: 500;
  font-size: calc(var(--ttl-size) * 0.8);
}
.flow_content_item .flow_content_item_content .ttl3 {
  font-weight: 500;
  font-size: calc(var(--ttl-size) * 0.7);
  padding-left: 1.2em;
  position: relative;
}
.flow_content_item .flow_content_item_content .ttl3::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.8);
}
.flow_content_item .flow_content_item_content .column {
  margin-bottom: 1.5rem;
}
.flow_content_item .flow_content_item_content .column .title-2 {
  justify-content: flex-start;
}
.flow_content_item .flow_content_item_content .column .list-icon-1 {
  display: block;
  max-width: 500px;
}
.flow_content_item .flow_content_item_content .image {
  max-width: 360px;
  overflow: hidden;
}
.flow_content_item .flow_content_item_content .image img {
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .flow_content_item .flow_content_item_content {
    display: flex;
    flex-wrap: wrap;
  }
  .flow_content_item .flow_content_item_content .column {
    flex: 1 1 0;
    order: 1;
  }
  .flow_content_item .flow_content_item_content .column2 {
    flex: 0 0 100%;
    order: 3;
  }
  .flow_content_item .flow_content_item_content .image {
    flex: 0 0 35%;
    padding-left: 5%;
    max-width: inherit;
    order: 2;
  }
}
.flow_content_item:last-child .flow_content_item_content {
  padding-bottom: 0;
}

.flow_ttl_1 {
  color: #fff;
  font-size: var(--ttl-size);
  line-height: 1.5;
  border-radius: 0.5em 10em 10em 0.5em;
  padding: 0.25em 1em 0.25em 0.5em;
  margin: var(--margin) 0;
  background-color: #003954;
}

.flow_check {
  padding: 20px 15px;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: #f2f2f2;
}
.flow_check .flow_check_icon {
  width: 60%;
  margin: 0 auto 1rem;
}
.flow_check .flow_check_column {
  font-weight: 500;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .flow_check {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 30px;
    padding: 25px;
    margin: 0;
  }
  .flow_check .flow_check_icon {
    width: inherit;
    margin: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .flow_check {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 30px;
    padding: clamp(25px, calc(25px + 25 * (100vw - 992px) / 608), 50px);
  }
  .flow_check .flow_check_icon {
    width: inherit;
    margin: 0;
  }
  .flow_check .flow_check_column {
    font-size: clamp(16px, calc(16px + 8 * (100vw - 992px) / 608), 24px);
  }
}

.flow_box_1 {
  margin-bottom: 30px;
}
.flow_box_1 .flow_box_1_img img {
  max-width: inherit;
  width: 100%;
  border-radius: 5px;
}
.flow_box_1 .flow_box_1_column {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .flow_box_1 {
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .flow_box_1 .flow_box_1_column, .flow_box_1 .flow_box_1_img {
    flex: 1 1 0;
  }
  .flow_box_1 .flow_box_1_column {
    order: 3;
    display: flex;
    flex-direction: column;
  }
  .flow_box_1 .flow_box_1_column .inner {
    margin: auto 0;
  }
}
@media print, screen and (min-width: 992px) {
  .flow_box_1 .flow_box_1_img {
    margin-right: clamp(30px, calc(30px + 70 * (100vw - 992px) / 608), 100px);
  }
}

/* -------------------------------
	当社の強み
-------------------------------- */
/* ---  --- */
.strengths_content_item h3 {
  font-size: 22px;
  line-height: 1.5;
  display: flex;
  gap: 0.25em;
}
.strengths_content_item h3 > .num {
  color: #0190d3;
  font-size: 2.5em;
  line-height: 1;
}
.strengths_content_item h3 > .txt {
  color: #003954;
  line-height: 1.5;
  padding-top: 0.2em;
}
.strengths_content_item h3 > .txt strong {
  color: #dc3545;
  font-size: 1.2em;
}
.strengths_content_item h4 {
  font-weight: 500;
  font-size: 18px;
}
.strengths_content_item .column {
  line-height: 2;
  border-left: solid 3px #DEDFE3;
  padding-left: 15px;
  margin-left: 10px;
}
@media print, screen and (min-width: 992px) {
  .strengths_content_item {
    container-type: inline-size;
    padding-right: clamp(30px, calc(30px + 60 * (100vw - 992px) / 608), 90px);
    padding-top: clamp(0px, calc(0px + 50 * (100vw - 992px) / 608), 50px);
  }
  .strengths_content_item h3 {
    font-size: clamp(20px, calc((32 / 630) * 100cqw), 32px);
  }
  .strengths_content_item h3 > .num {
    font-size: 2em;
  }
  .strengths_content_item h4 {
    font-size: clamp(18px, calc((24 / 630) * 100cqw), 24px);
  }
}

.strengths_content_img {
  border-radius: 5px;
  overflow: hidden;
}

.strengths_content:nth-child(even) {
  background-color: #f0faff;
}
@media print, screen and (min-width: 992px) {
  .strengths_content:nth-child(even) > div > .row > div:first-child {
    order: 13;
  }
  .strengths_content:nth-child(even) .strengths_content_item {
    padding-left: clamp(30px, calc(30px + 60 * (100vw - 992px) / 608), 90px);
    padding-right: 0;
  }
}

/* ---  --- */
.strengths_point2_item .txt1 {
  text-align: center;
}

.strengths_point2_item_list_1 {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.strengths_point2_item_list_1 > li {
  color: #0190d3;
  text-align: center;
  border: solid 1px #0190d3;
  border-radius: 5px;
  padding: 15px 0;
}
.strengths_point2_item_list_1 > li .txt {
  font-weight: 500;
  font-size: 14px;
}
.strengths_point2_item_list_1 > li .column {
  font-weight: 500;
  font-size: 14px;
}
.strengths_point2_item_list_1 > li .column .fs-en {
  font-weight: 500;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .strengths_point2_item_list_1 > li {
    padding: 20px 0;
  }
  .strengths_point2_item_list_1 > li .txt {
    font-size: 16px;
  }
  .strengths_point2_item_list_1 > li .column {
    font-size: 16px;
  }
  .strengths_point2_item_list_1 > li .column .fs-en {
    font-size: 28px;
  }
}
@media print, screen and (min-width: 992px) {
  .strengths_point2_item_list_1 {
    grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
  }
}

.strengths_point2_item_dl {
  font-size: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: solid 1px #ccc;
}
.strengths_point2_item_dl > dt, .strengths_point2_item_dl > dd {
  border-bottom: solid 1px #ccc;
  padding: 1em 0.25em;
  margin: 0;
}
.strengths_point2_item_dl > dt {
  color: #0190d3;
  font-weight: 500;
}
.strengths_point2_item_dl > dd {
  padding-left: 1.5em;
  position: relative;
}
.strengths_point2_item_dl > dd::before {
  content: "";
  position: absolute;
  left: 0.75em;
  top: 50%;
  width: 1px;
  height: 1.75em;
  background-color: #ccc;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 992px) {
  .strengths_point2_item_dl {
    font-size: clamp(15px, calc(15px + 5 * (100vw - 992px) / 608), 20px);
    margin-right: clamp(30px, calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
}

/* -------------------------------
	設備紹介
-------------------------------- */
/* ---  --- */
.equipment_head {
  background-color: #f2f2f2;
  position: relative;
}
.equipment_head .page_head_bg {
  background-color: #f2f2f2;
}
.equipment_head .equipment_head_image img {
  display: block;
  border-radius: 5px;
}
.equipment_head .equipment_head_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.equipment_head .equipment_head_column .inner {
  margin: auto 0;
}
.equipment_head .equipment_head_column .inner h3 {
  font-size: 22px;
  line-height: 1.75;
}
.equipment_head .equipment_head_column .inner .column {
  line-height: 2;
  border-left: solid 5px #BFEAFE;
  padding-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .equipment_head .equipment_head_column .inner h3 {
    font-size: 28px;
  }
  .equipment_head .equipment_head_column .inner .column {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 992px) {
  .equipment_head .equipment_head_column {
    container-type: inline-size;
    margin-left: clamp(30px, calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
  .equipment_head .equipment_head_column .inner h3 {
    font-size: clamp(20px, calc((35 / 595) * 100cqw), 35px);
  }
  .equipment_head .equipment_head_column .inner .column {
    font-size: clamp(16px, calc((24 / 595) * 100cqw), 24px);
  }
}

/* */
.equipment_list_1 {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #ccc;
}
.equipment_list_1 > li {
  padding: 1em 0 1em 0.5em;
  border-bottom: solid 1px #ccc;
  display: grid;
  grid-template-columns: 1fr 4em;
}
.equipment_list_1 > li .ttl {
  padding-right: 1em;
}
.equipment_list_1 > li .num {
  text-align: right;
  border-left: solid 1px #ccc;
  display: grid;
  place-items: center;
}
@media print, screen and (min-width: 992px) {
  .equipment_list_1 > li {
    grid-template-columns: 1fr 7em;
  }
  .equipment_list_1 > li .ttl {
    padding-right: 2em;
  }
}

/* -------------------------------
	会社情報
-------------------------------- */
/* ---  --- */
.company_message {
  background-color: #f2f2f2;
  position: relative;
}
.company_message .page_head_bg {
  background-color: #f2f2f2;
}
.company_message h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .company_message h4 {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .company_message h4 {
    font-size: clamp(30px, calc(30px + 20 * (100vw - 992px) / 608), 50px);
  }
}
.company_message .column {
  line-height: 2;
  margin: 0 auto;
}
.company_message .column .ceo_name {
  font-weight: 500;
  text-align: right;
  margin-top: 2rem;
}

/* ---  --- */
.company_philosophy_head {
  --h4-size: 20px;
}
.company_philosophy_head h4 {
  color: #003954;
  font-size: var(--h4-size);
}
.company_philosophy_head p {
  color: #0190d3;
  font-weight: 500;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  .company_philosophy_head {
    --h4-size: 28px;
  }
  .company_philosophy_head h4 {
    padding-left: 3em;
    position: relative;
  }
  .company_philosophy_head h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.35em;
    height: 1px;
    background-color: currentColor;
  }
  .company_philosophy_head p {
    font-size: 16px;
    padding-left: calc(var(--h4-size) * 3);
  }
}
@media print, screen and (min-width: 992px) {
  .company_philosophy_head {
    --h4-size: clamp(30px, calc(30px + 15 * (100vw - 992px) / 608), 45px);
  }
  .company_philosophy_head h4 {
    padding-left: 3em;
    position: relative;
  }
  .company_philosophy_head h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.35em;
    height: 1px;
    background-color: currentColor;
  }
  .company_philosophy_head p {
    font-size: clamp(18px, calc(18px + 7 * (100vw - 992px) / 608), 25px);
  }
}

.company_philosophy_image {
  text-align: center;
}

.company_philosophy_columns {
  line-height: 2;
}

/* -------------------------------
	グループ会社
-------------------------------- */
.group_head {
  background-color: #f0faff;
  position: relative;
}
.group_head .page_head_bg {
  background-color: #f0faff;
}
.group_head h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
}
@media print, screen and (min-width: 768px) {
  .group_head h3 {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .group_head h3 {
    font-size: clamp(20px, calc(20px + 5 * (100vw - 992px) / 608), 25px);
  }
}

/**/
.group_chart {
  --group_font_base: 13px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--group_font_base);
}
@media print, screen and (min-width: 768px) {
  .group_chart {
    --group_font_base: 14px;
    flex-direction: column;
    width: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .group_chart {
    --group_font_base: clamp(14px, calc(14px + 6 * (100vw - 992px) / 608), 20px);
  }
}

.group_parent_wrapper,
.group_child_item {
  position: relative;
}
.group_parent_wrapper::before, .group_parent_wrapper::after,
.group_child_item::before,
.group_child_item::after {
  content: "";
  position: absolute;
  background: #1383c2;
}

.group_parent_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-right: 2em;
}
.group_parent_wrapper::after {
  right: 0;
  top: 50%;
  z-index: 1;
  width: 2em;
  height: 2px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .group_parent_wrapper {
    width: 100%;
    max-width: 30em;
    padding: 0 0 2.25em;
  }
  .group_parent_wrapper::after {
    right: auto;
    bottom: 0;
    left: 50%;
    top: auto;
    width: 2px;
    height: 2.25em;
    transform: translateX(-50%);
  }
}

.group_parent_card {
  padding: 2em 1em;
  border: 2px solid #1383c2;
  border-radius: 0.75em;
  background: #fff;
  box-shadow: 0 0.25em 0.75em rgba(19, 131, 194, 0.08);
  color: #2c3e50;
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: center;
  text-orientation: upright;
  user-select: none;
  writing-mode: vertical-rl;
}
@media print, screen and (min-width: 768px) {
  .group_parent_card {
    width: 100%;
    padding: 1em 2.5em;
    font-size: 1.5em;
    line-height: 1.3;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
  }
}

.group_children_wrapper {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25em;
  padding-left: 2em;
}
@media print, screen and (min-width: 768px) {
  .group_children_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    width: 100%;
    padding: 2.25em 0 0;
  }
}

.group_child_item {
  width: 100%;
}
.group_child_item::before {
  left: -2em;
  top: 50%;
  z-index: 1;
  width: 2em;
  height: 2px;
  transform: translateY(-50%);
}
.group_child_item:not(:last-child)::after {
  left: -2em;
  top: 50%;
  z-index: 0;
  width: 2px;
  height: calc(100% + 1.25em);
}
@media print, screen and (min-width: 768px) {
  .group_child_item::before {
    left: 50%;
    top: -2.25em;
    width: 2px;
    height: 2.25em;
    transform: translateX(-50%);
  }
  .group_child_item:not(:last-child)::after {
    left: 50%;
    top: -2.25em;
    width: calc(100% + 1.5em);
    height: 2px;
  }
}

.group_child_card {
  display: flex;
  align-items: center;
  gap: 1em;
  height: 100%;
  padding: 1em 1.25em;
  border: 1px solid #1383c2;
  border-radius: 0.75em;
  background: #fff;
}
@media print, screen and (min-width: 768px) {
  .group_child_card {
    justify-content: center;
  }
}

.group_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25em;
  height: 3.25em;
}
.group_card_icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: inherit;
  object-fit: scale-down;
}

.group_card_content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.group_company_name {
  color: #1e293b;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.3;
}
.group_company_name small {
  font-size: 0.64em;
  letter-spacing: normal;
  display: block;
}

.group_company_desc {
  color: #1383c2;
  font-size: 0.875em;
  font-weight: 600;
}
.group_company_desc_neutral {
  color: #475569;
}

/* ---  --- */
.group_company {
  overflow: hidden;
}
.group_company.even {
  background-color: #f2f2f2;
}

.group_company_ttl {
  color: #003954;
  font-size: 1rem;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
.group_company_ttl > .desc {
  color: #0190d3;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.group_company_ttl > .desc::before {
  content: "";
  width: 0.44445em;
  height: 0.44445em;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.group_company_ttl > .name {
  font-size: 22px;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .group_company_ttl > .desc {
    font-size: 15px;
  }
  .group_company_ttl > .name {
    font-size: 28px;
  }
}
@media print, screen and (min-width: 992px) {
  .group_company_ttl > .desc {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
  .group_company_ttl > .name {
    font-size: clamp(28px, calc(28px + 17 * (100vw - 992px) / 608), 45px);
  }
}

/**/
.group_ttl_2 {
  font-size: 22px;
  position: relative;
}
.group_ttl_2 .txt {
  color: #0190d3;
  display: flex;
  align-items: center;
  padding-left: 0.75em;
  position: relative;
}
.group_ttl_2 .txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25em;
  height: 100%;
  border-radius: 1em;
  background-color: currentColor;
}
@media print, screen and (min-width: 768px) {
  .group_ttl_2 {
    font-size: 26px;
  }
}
@media print, screen and (min-width: 992px) {
  .group_ttl_2 {
    font-size: clamp(26px, calc(26px + 8 * (100vw - 992px) / 608), 34px);
  }
}

/**/
.group_company_map {
  padding: 20px;
  border-radius: 10px;
  background-color: #f0faff;
}
.group_company_map > .row {
  gap: 20px 0;
}
.group_company_map .group_company_map_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.group_company_map .group_company_map_content .inner {
  margin: auto 0;
}
.group_company_map .group_company_map_content .inner .title-2 {
  justify-content: flex-start;
}
.group_company_map .group_company_map_content .inner .columns {
  margin-left: 15px;
  padding: 15px;
  padding-right: 0 !important;
  border-left: solid 2px #88D8FE;
}
@media print, screen and (min-width: 992px) {
  .group_company_map .group_company_map_content {
    padding: 30px;
  }
  .group_company_map .group_company_map_content .inner .columns {
    margin-left: clamp(15px, calc(15px + 15 * (100vw - 992px) / 608), 30px);
    padding: 15px clamp(15px, calc(15px + 15 * (100vw - 992px) / 608), 30px);
  }
}
.group_company_map .googlemap {
  border-radius: 7px;
}
@media print, screen and (min-width: 992px) {
  .group_company_map .googlemap {
    width: 100%;
    height: 100%;
    padding: 0;
    aspect-ratio: 16/9;
  }
}

.group_company.even .group_company_map {
  background-color: #fff;
}

/**/
.group_company_access_list {
  list-style: none;
  padding: 0;
}
.group_company_access_list > li {
  font-weight: 500;
}
.group_company_access_list > li > ul {
  font-weight: 400;
  margin-top: 0.5em;
  list-style: none;
  padding: 0 0 0 1.25em;
}
.group_company_access_list > li > ul > li {
  font-size: 0.875em;
  padding-left: 1.2em;
  position: relative;
}
.group_company_access_list > li > ul > li::before {
  content: "├";
  position: absolute;
  left: 0;
}
.group_company_access_list > li > ul > li:last-child::before {
  content: "└";
}

/**/
.group_sdgs {
  border: solid 1px #0190d3;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .group_sdgs {
    padding: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .group_sdgs {
    padding: clamp(30px, calc(30px + 30 * (100vw - 992px) / 608), 60px);
  }
  .group_sdgs .group_sdgs_content {
    padding-left: clamp(30px, calc(30px + 30 * (100vw - 992px) / 608), 60px);
  }
}

.sgds_3col_list {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}
.sgds_3col_list .sgds_3col_col {
  aspect-ratio: 1/1;
}
.sgds_3col_list .sgds_3col_col img {
  display: block;
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/**/
.group_head_office {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.group_head_office::before {
  content: "";
  position: absolute;
  inset: 0 0 -1px 0;
  background-color: #f2f2f2;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  pointer-events: none;
  z-index: -2;
}
.group_head_office .text-loop {
  color: #ebecec;
  font-size: clamp(100px, 16vw, 240px);
  font-weight: 500;
  line-height: 0.8;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.group_head_office_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.group_head_office_content .inner {
  text-align: center;
}
.group_head_office_content .inner h3 {
  color: #003954;
  font-size: 30px;
}
.group_head_office_content .inner p {
  font-weight: 500;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .group_head_office_content .inner {
    text-align: left;
    margin: auto;
  }
  .group_head_office_content .inner h3 {
    padding-left: 3em;
    position: relative;
  }
  .group_head_office_content .inner h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2em;
    height: 1px;
    background-color: currentColor;
  }
}
@media print, screen and (min-width: 992px) {
  .group_head_office_content .inner h3 {
    font-size: clamp(30px, calc(30px + 25 * (100vw - 992px) / 608), 55px);
  }
  .group_head_office_content .inner p {
    font-size: clamp(20px, calc(20px + 14 * (100vw - 992px) / 608), 34px);
  }
}

.group_head_office_image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.group_head_office_image figure > img {
  display: block;
}
.group_head_office_image figure figcaption {
  color: #777;
  text-align: center;
  margin-top: 0.5em;
}

/**/
.group_privacymark {
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 20px;
  border: solid 1px #0190d3;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .group_privacymark {
    padding: 30px;
    grid-template-columns: 100px auto;
    gap: 30px;
    justify-content: center;
  }
}
@media print, screen and (min-width: 992px) {
  .group_privacymark {
    grid-template-columns: clamp(120px, calc(120px + 80 * (100vw - 992px) / 608), 200px) auto;
  }
}

/**/
.group_fsc {
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 20px;
  border: solid 1px #0190d3;
  background-color: #fff;
}
.group_fsc .group_fsc_column h4 {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .group_fsc {
    padding: 30px;
    grid-template-columns: 100px auto;
    gap: 30px;
    justify-content: center;
  }
}
@media print, screen and (min-width: 992px) {
  .group_fsc {
    grid-template-columns: clamp(120px, calc(120px + 80 * (100vw - 992px) / 608), 200px) auto;
    padding: clamp(30px, calc(30px + 30 * (100vw - 992px) / 608), 60px);
  }
  .group_fsc .group_fsc_column {
    padding-left: clamp(30px, calc(30px + 30 * (100vw - 992px) / 608), 60px);
  }
  .group_fsc .group_fsc_column h4 {
    font-size: clamp(20px, calc(20px + 8 * (100vw - 992px) / 608), 28px);
  }
}

/* -------------------------------
	採用情報
-------------------------------- */
/* ---  --- */
.recruit_head h3 {
  text-align: center;
}
.recruit_head p {
  text-align: center;
}

/* ---  --- */
.recruit_ideal_candidate {
  background-color: #f0faff;
}

.recruit_ideal_candidate_list {
  --col:2;
  --gap:15px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
.recruit_ideal_candidate_list > .recruit_ideal_candidate_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
@media print, screen and (min-width: 768px) {
  .recruit_ideal_candidate_list {
    --col:3;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_ideal_candidate_list {
    --gap:clamp(15px, calc(15px + 15 * (100vw - 992px) / 608), 30px);
  }
}

.recruit_ideal_candidate_item {
  font-size: 13px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 20%;
  box-shadow: 3px 3px 15px rgba(1, 144, 211, 0.1);
  background-color: #fff;
}
.recruit_ideal_candidate_item > .image {
  width: 40%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.recruit_ideal_candidate_item > .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.recruit_ideal_candidate_item figcaption {
  font-weight: 500;
  text-align: center;
  height: calc(1.75em * 2.5);
  display: grid;
  place-items: center;
}
@media print, screen and (min-width: 768px) {
  .recruit_ideal_candidate_item {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_ideal_candidate_item {
    font-size: clamp(15px, calc(15px + 5 * (100vw - 992px) / 608), 20px);
  }
}

/* ---  --- */
.recruit_work_environment_item .recruit_work_environment_item_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.recruit_work_environment_item .recruit_work_environment_item_content .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 992px) {
  .recruit_work_environment_item .recruit_work_environment_item_content {
    padding: 0 clamp(15px, calc(15px + 45 * (100vw - 992px) / 608), 60px);
  }
  .recruit_work_environment_item:nth-child(even) > .row > div:first-child {
    order: 13;
  }
}

/* ----  ---- */
.recruit_point {
  background: url("../images/recruit/recruit_point_bg.jpg") no-repeat center center/cover;
}
.recruit_point .title-hh-1 > .fs-en, .recruit_point .title-hh-1 > .fs-jp {
  color: #fff;
}

.recruit_point_list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media print, screen and (min-width: 768px) {
  .recruit_point_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.recruit_point_list .recruit_point_list_item {
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 3px 3px 15px rgba(1, 144, 211, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
}
.recruit_point_list .recruit_point_list_item .point {
  color: #0190d3;
  font-size: 20px;
  text-align: center;
}
.recruit_point_list .recruit_point_list_item .point::after {
  content: "";
  width: 1.2em;
  height: 5px;
  margin: 0.5em auto 1em;
  display: block;
  background-color: currentColor;
}
.recruit_point_list .recruit_point_list_item .icon {
  width: 100px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.recruit_point_list .recruit_point_list_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.recruit_point_list .recruit_point_list_item .column {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .recruit_point_list .recruit_point_list_item .point {
    font-size: 20px;
  }
  .recruit_point_list .recruit_point_list_item .icon {
    width: 80px;
  }
  .recruit_point_list .recruit_point_list_item .column {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_point_list .recruit_point_list_item {
    padding: 30px 15px;
  }
  .recruit_point_list .recruit_point_list_item .point {
    font-size: clamp(20px, calc(20px + 16 * (100vw - 992px) / 608), 36px);
  }
  .recruit_point_list .recruit_point_list_item .icon {
    width: clamp(80px, calc(80px + 70 * (100vw - 992px) / 608), 150px);
  }
  .recruit_point_list .recruit_point_list_item .column {
    font-size: clamp(15px, calc(15px + 5 * (100vw - 992px) / 608), 20px);
  }
}

/**/
.recruit_job_overview_item_column {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.recruit_job_overview_item_column:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .recruit_job_overview_item_column {
    grid-template-columns: min(33%, 470px) 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.recruit_job_overview_item_column .recruit_job_overview_item_column_image .photo {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .recruit_job_overview_item_column .recruit_job_overview_item_column_image {
    position: relative;
  }
  .recruit_job_overview_item_column .recruit_job_overview_item_column_image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -50px;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    display: block;
    background-color: #0190d3;
    clip-path: polygon(100% 75%, 50% 100%, 0 75%, 0 0, 50% 25%, 100% 0);
    transform: scale(0.8, 0.65);
  }
  .recruit_job_overview_item_column .recruit_job_overview_item_column_image .photo {
    aspect-ratio: 4/3;
  }
}
.recruit_job_overview_item_column:last-child .recruit_job_overview_item_column_image::after {
  display: none;
}
.recruit_job_overview_item_column .recruit_job_overview_item_column_box {
  margin-left: 20px;
  padding: 15px 0 15px 20px;
  border-left: solid 3px #0190d3;
}
.recruit_job_overview_item_column .recruit_job_overview_item_column_box .inner h4 {
  color: #0190d3;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .recruit_job_overview_item_column .recruit_job_overview_item_column_box {
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
  }
  .recruit_job_overview_item_column .recruit_job_overview_item_column_box .inner {
    margin: auto 0;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_job_overview_item_column .recruit_job_overview_item_column_box {
    padding-left: clamp(30px, calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
}

/* -------------------------------
	福利厚生
-------------------------------- */
/**/
.benefits_ttl_1 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .benefits_ttl_1 {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 992px) {
  .benefits_ttl_1 {
    font-size: clamp(18px, calc(18px + 10 * (100vw - 992px) / 608), 28px);
  }
}

/**/
.benefits_massage {
  background-color: #f0faff;
}

.benefits_massage_image {
  border-radius: 10px;
  overflow: hidden;
}

.benefits_massage_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.benefits_massage_content .inner {
  margin: auto 0;
}
.benefits_massage_content .inner h4 {
  margin-bottom: 1em;
}
.benefits_massage_content .inner .column {
  line-height: 2;
}

/**/
.benefits_lists_row {
  --col:1;
  --gap:10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.benefits_lists_row > .benefits_lists_row_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
@media print, screen and (min-width: 768px) {
  .benefits_lists_row {
    --col:2;
  }
}
@media print, screen and (min-width: 992px) {
  .benefits_lists_row {
    --col: 3;
    --gap: clamp(10px, calc(10px + 20 * (100vw - 992px) / 608), 30px);
  }
}

.benefits_lists_item {
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
  border: solid 1px #0190d3;
  border-radius: 10px;
}
.benefits_lists_item .icon {
  aspect-ratio: 1/1;
}
.benefits_lists_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.benefits_lists_item .ttl {
  color: #0190d3;
  font-weight: 500;
}
@media print, screen and (min-width: 992px) {
  .benefits_lists_item .ttl {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 375px) / 1225), 20px);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background-color: #f2f2f2;
  position: relative;
}
.tel_contact .page_head_bg {
  background-color: #f2f2f2;
}

.tel_contact_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 15px;
  border-radius: 5px;
  background-color: #fff;
}
.tel_contact_item .inner {
  margin: auto;
}
.tel_contact_item .inner .ttl {
  color: #0190d3;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  padding: 0.275em 0.75em;
  border: solid 1px #0190d3;
  border-radius: 10em;
  margin-bottom: 1.5em;
}
.tel_contact_item .inner .ttl2 {
  font-weight: 500;
  display: grid;
  grid-template-columns: 2.5em auto;
  align-items: center;
  gap: 0.5625em;
}
.tel_contact_item .inner .ttl2 .icon {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #d7eaf3;
}
.tel_contact_item .inner .ttl2 .icon img {
  width: auto;
  height: 0.9375em;
}
.tel_contact_item .inner .telphone {
  color: #0190d3;
  font-size: 30px;
  margin: 0.25em 0;
}
.tel_contact_item .inner .subtxt {
  font-size: 12px;
}
.tel_contact_item .inner .subtxt2 {
  font-size: 14px;
  text-align: center;
  margin: 2em 0;
}
@media print, screen and (min-width: 992px) {
  .tel_contact_item {
    container-type: inline-size;
    padding: 0;
  }
  .tel_contact_item .inner {
    padding: 40px 15px;
  }
  .tel_contact_item .inner .ttl {
    font-size: clamp(15px, calc((20 / 470) * 100cqw), 20px);
  }
  .tel_contact_item .inner .ttl2 {
    font-size: clamp(14px, calc((16 / 470) * 100cqw), 16px);
  }
  .tel_contact_item .inner .telphone {
    font-size: clamp(25px, calc((40 / 470) * 100cqw), 40px);
  }
  .tel_contact_item .inner .subtxt {
    font-size: clamp(10px, calc((15 / 470) * 100cqw), 15px);
  }
}

#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;
  }
}
#contactform .list-radio, #contactform .list-checkbox {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
#contactform .list-radio > label, #contactform .list-checkbox > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .list-radio, #contactform .list-checkbox {
    gap: 0.25em 1.5em;
  }
  #contactform .list-radio > label, #contactform .list-checkbox > 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 0.75em 0.15em;
  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: 12em !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-weight: 500;
  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: 16px;
  }
}

/* プライバシーポリシー */
@counter-style circled-number {
  system: fixed;
  symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩";
  suffix: " ";
}
#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;
  display: grid;
  gap: 0.5em 0;
}
#policy .contents > ol > li {
  padding-left: 2.5em;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
  width: 2em;
  text-align: right;
  letter-spacing: normal;
}
#policy .contents > ol > li > ol {
  list-style: none;
  display: grid;
  gap: 0.5em 0;
}
#policy .contents > ol > li > ol > li {
  position: relative;
  list-style: circled-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;
  }
  .amn-fade-up.is-active,
  .amn-fade-down.is-active,
  .amn-fade-left.is-active,
  .amn-fade-right.is-active {
    animation-duration: var(--duration);
    animation-timing-function: var(--easing);
    animation-fill-mode: forwards;
  }

  .amn-fade-up.is-active {
    animation-name: amn-fade-up;
  }

  .amn-fade-down.is-active {
    animation-name: amn-fade-down;
  }

  .amn-fade-left.is-active {
    animation-name: amn-fade-left;
  }

  .amn-fade-right.is-active {
    animation-name: amn-fade-right;
  }

  .amn-span-up {
    --translate-y: 20px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    animation: amn-span-up var(--duration) var(--easing) forwards;
  }
}
@keyframes amn-fade-up {
  from {
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  to {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
@keyframes amn-fade-down {
  from {
    opacity: 0;
    transform: translateY(calc(var(--translate-y) * -1));
  }
  to {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
@keyframes amn-fade-left {
  from {
    opacity: 0;
    transform: translateX(var(--translate-x));
  }
  to {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }
}
@keyframes amn-fade-right {
  from {
    opacity: 0;
    transform: translateX(calc(var(--translate-x) * -1));
  }
  to {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }
}
@keyframes amn-span-up {
  from {
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  to {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --easing: ease;
    --duration: 1s;
    opacity: 0;
  }
  .js-row-1 > *.is-active {
    animation: key-fade-up var(--duration) var(--easing) 0s alternate forwards;
  }
}
@keyframes key-fade-up {
  from {
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  100% {
    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: #73b400;
    --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 */
