@charset "UTF-8";
:root {
  --color-primary: #E50073;
  --color-primary-dark: #C90065;
  --color-primary-pale: #FFF1F8;
  --color-secondary: #A10082;
  --color-secondary-dark: #820069;
  --color-secondary-pale: #FFEDFC;
  --color-tertiary: #00B1DD;
  --color-tertiary-dark: #0097BC;
  --color-tertiary-pale: #ECFBFF;
  --color-quaternary: #87C34E;
  --color-quaternary-dark: #4D9F00;
  --color-quaternary-pale: #F7FFEF;
  --color-quinary: #F39800;
  --color-quinary-dark: #DD8A00;
  --color-quinary-pale: #FFF8EC;
  --color-base: #11111B;
  --color-base-dark: #797979;
  --color-base-pale: #F9F4FB;
  --font-family-main: "Arial", "Noto Sans JP", sans-serif;
  --font-family-sub: "Noto Serif JP", serif;
}

html {
  width: 100%;
  height: 100%;
  line-height: normal;
  -webkit-text-size-adjust: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  font-family: var(--font-family-main);
  color: var(--color-base);
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

b,
strong {
  font-weight: bold;
}

/*----------------------------------------
  style
----------------------------------------*/
/* container */
.section {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}

.container {
  position: relative;
  z-index: 1;
  padding-left: 80px;
  padding-right: 80px;
  margin-left: auto;
  margin-right: auto;
}

.container__btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 40px;
}

/* column */
.column__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.column__wrap .column__content {
  width: 50%;
  padding: 40px 40px 40px 120px;
}
.column__wrap .column__img {
  width: 50%;
}
.column__wrap .column__img img {
  width: 100%;
}

.column__wrap-reverse {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.column__wrap-reverse .column__content {
  width: 50%;
  padding: 40px 120px 40px 40px;
}
.column__wrap-reverse .column__img {
  width: 50%;
}
.column__wrap-reverse .column__img img {
  width: 100%;
}

.column__min {
  margin-top: 40px;
  font-size: 14px;
}
.column__min .title__min {
  margin-bottom: 5px;
}
.column__min .content {
  margin-top: 24px;
}

/*detail*/
.page__detail {
  max-width: 774px;
}

.page__detail-inner {
  margin: 56px 0;
}
.page__detail-inner p {
  margin: 15px 0;
}

.text__serif {
  font-family: var(--font-family-sub);
}

/* align */
.text__center {
  text-align: center !important;
}

.text__right {
  text-align: right !important;
}

/*color*/
.text__primary {
  color: var(--color-primary) !important;
}

.text__secondary {
  color: var(--color-secondary) !important;
}

.text__tertiary {
  color: var(--color-tertiary) !important;
}

.text__quaternary {
  color: var(--color-quaternary) !important;
}

.text__quinary {
  color: var(--color-quinary) !important;
}

.text__asisstant {
  color: var(--color-asisstant) !important;
}

.text__highlight {
  position: relative;
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.8em;
  text-decoration-color: var(--color-asisstant);
  text-underline-offset: -0.8em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.text__asterisk {
  position: relative;
  display: block;
  padding-left: 1em;
  margin: 5px 0;
  text-indent: -1em;
  font-size: 14px;
}
.text__asterisk::before {
  content: "※";
}

/*size*/
.text__content {
  margin: 24px 0;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: justify;
}

.text__caption {
  line-height: 1.2;
  font-size: 14px;
  text-align: justify;
}

/*acc*/
.acc__line {
  position: relative;
}
.acc__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 83.33%;
  max-width: 1200px;
  height: 1px;
  background-color: rgba(0, 0, 11, 0.24);
}

.acc__round-bottom {
  border-bottom-right-radius: 300px;
}

/*visible*/
.visible__md,
.visible__xs {
  display: none;
}

/*slider*/
.swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.gallery__slider .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.gallery__slider .img {
  border-radius: 4px;
  overflow: hidden;
}

/*img*/
.img-box {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  overflow: hidden;
}

/*----------------------------------------
  common
----------------------------------------*/
/* title */
.title__sec {
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: normal;
}
.title__sec .en {
  line-height: 1;
  font-size: 95px;
}
.title__sec .main {
  font-size: 80px;
}

.title__max {
  margin: 24px 0;
  line-height: 1.3;
  font-size: 32px;
  font-family: var(--font-family-sub);
  font-weight: normal;
}

.title__mid {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 20px;
  font-family: var(--font-family-sub);
  font-weight: normal;
}

.title__min {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 14px;
  font-weight: normal;
}

.title__read {
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.title__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.title__line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: bold;
  font-family: var(--font-family-sub);
  font-size: 32px;
}
.title__line::before {
  content: "";
  width: 24px;
  height: 4px;
  background-image: linear-gradient(to right, #003399, #3399ff);
  border-radius: 50rem;
}

.title__col {
  margin: 24px 0;
  font-size: 24px;
  font-weight: normal;
  font-family: var(--font-family-sub);
}

.icon__arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.icon__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #E61673 0%, #B60081 37.08%, #2EA7E0 75.29%, #8FC31F 112.38%);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.icon__arrow::after {
  content: "\f054";
  position: relative;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.icon__arrow:hover {
  transition: all 0.3s ease-in-out;
}
.icon__arrow:hover::before, .icon__arrow:hover::after {
  transition: all 0.3s ease-in-out;
}

/*card*/
.card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #E6E0EB;
  overflow: clip;
}

.card-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
}

.card-title {
  line-height: 1.3;
  font-size: 16px;
}

.card-body {
  padding: 0 24px 24px;
}
.card-body .card-text {
  font-size: 14px;
  font-weight: bold;
}

.card-footer {
  margin-top: auto;
  padding: 12px 24px;
  background-color: var(--color-base-pale);
}
.card-footer .tag-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.card-footer .tag-list .tag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 50rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
.card-footer .tag-list .tag::before {
  content: "#";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
}

.tag-municipality {
  background-color: #0055CC;
}

.tag-local-company {
  background-color: #28A745;
}

.tag-global {
  background-color: #D7C20A;
}

/* btn */
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 112px;
  padding: 12px;
  border-radius: 5px;
  outline: none;
  background-color: #fff;
  border-radius: 50rem;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #E61673 0%, #B60081 37.08%, #2EA7E0 75.29%, #8FC31F 112.38%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.button .inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
.button .inner::after {
  content: "\f054";
  width: 14px;
  height: 14px;
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  font-weight: 900;
  pointer-events: none;
  text-align: center;
}
.button:hover {
  opacity: 1;
}
.button:hover::before {
  opacity: 1;
}
.button:hover .inner {
  color: #fff;
}

/* list */
.list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 80px 40px;
}

.list--3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 30px;
}

.list--4col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--5col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--check {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.list--check-item {
  position: relative;
  margin: 10px 0;
  padding-left: 34px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}
.list--check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: url(../img/icon_check.svg) no-repeat center/contain;
}

.list--number {
  counter-reset: number 0;
}

.list--number > li {
  position: relative;
  padding-left: 32px;
}
.list--number > li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.list--disc > li {
  position: relative;
  padding-left: 26px;
}
.list--disc > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.list--round > li {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 20px;
}
.list--round > li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.dl__max .dl__box {
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid #c2c2c5;
}
.dl__max .dl__box:first-child {
  padding-top: 0;
  border-top: 0;
}
.dl__max .dl__box:last-child {
  padding-bottom: 0;
}
.dl__max .term {
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: 14px;
}

/*タブ*/
.tab-buttons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tab-button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 130px;
  gap: 15px;
  padding: 12px 16px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 50rem;
  line-height: 1.2;
  color: var(--color-primary);
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.tab-button::after {
  content: "\f192";
  padding: var(--color-primary);
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  pointer-events: none;
}
.tab-button.active {
  background-color: var(--color-primary);
  background: linear-gradient(90deg, #11111b 0%, #003f99 39.9%, #64dded 100%);
  color: #fff;
}
.tab-button.active::after {
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/*アコーディオン*/
.accordion__trigger {
  position: relative;
  padding-bottom: 20px;
  margin: 20px 0;
  border-bottom: 1px solid #c5c5c5;
}
.accordion__trigger:hover {
  cursor: pointer;
}
.accordion__trigger .icon__open {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 28px;
  height: 28px;
  background-color: var(--color-base-dark);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.accordion__trigger .icon__open::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
.accordion__trigger .icon__open::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
  rotate: 90deg;
}

.is__open.accordion__trigger .icon__open {
  background-color: var(--color-base-middle);
}
.is__open.accordion__trigger .icon__open::after {
  rotate: 0deg;
}

.accordion__content {
  height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.accordion__content p:not(:first-child) {
  margin-top: 15px;
}

/*modal*/
.link__modal {
  display: block;
  transition: transform 0.3s ease-in-out;
}
.link__modal:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  opacity: 1;
}

/* モーダルと背景の指定 */
.modal__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.modal__wrap.is__active {
  opacity: 1;
  visibility: visible;
}

.modal__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 95%;
  max-height: 95%;
}

.modal__btn--close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 32px;
  right: 32px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/*タブ*/
.tabs {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  gap: 20px;
  border-bottom: 4px double var(--color-base-dark);
  margin-bottom: 80px;
}

.tab {
  padding: 20px 0;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
}
.tab span {
  border-bottom: 2px solid transparent;
}
.tab.is-active {
  color: var(--color-secondary);
}
.tab.is-active span {
  border-color: var(--color-secondary);
}

.tab--content {
  display: none;
}

.tab--content.is-active {
  display: block;
}

/*scroll*/
.scroll {
  max-width: 100vw;
  overflow-x: auto;
}

/*bg*/
.bg__primary {
  background-color: var(--color-primary);
  color: #fff;
}
.bg__primary .title__sec .sub {
  color: #fff;
}

.bg__base {
  background-color: #fff;
}

.bg__pale {
  background-color: var(--color-primary-pale);
}

.acc__round {
  border-radius: 64px 64px 0 0;
}

.p-jon__item {
  transform: scale(1);
}

/*pager*/
.pager {
  margin-top: 80px;
}

.pager__number {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  text-align: center;
  font-size: 16px;
}

.pager__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.pager__nav .prev {
  display: flex;
  gap: 8px;
}
.pager__nav .next {
  display: flex;
  gap: 8px;
}
.pager__nav .number {
  display: flex;
  gap: 8px;
}
.pager__nav .number .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.pager-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  gap: 8px;
  padding: 16px;
  background-color: var(--color-primary-pale);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.pager-button.prev-more {
  min-width: 56px;
  padding: 16px;
  border-radius: 8px 0 0 8px;
}
.pager-button.prev {
  border-radius: 0 8px 8px 0;
}
.pager-button.next-more {
  min-width: 56px;
  padding: 16px;
  border-radius: 0 8px 8px 0;
}
.pager-button.next {
  border-radius: 8px 0 0 8px;
}
.pager-button:hover, .pager-button.active {
  opacity: 1;
  background-color: var(--color-primary);
  color: #fff;
}

/*----------------------------------------
  header 
----------------------------------------*/
/*----------------------------------------
  footer 
----------------------------------------*/
.foot__links {
  display: flex;
  border-top: 1px solid #E5E7EB;
}
.foot__links .link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 50%; */
  width: 100%;
  padding: 80px;
  overflow: hidden;
}
.foot__links .link:last-child {
  border-left: 1px solid #E5E7EB;
}
.foot__links .link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 120%;
  padding-top: 120%;
  background: linear-gradient(90deg, #E61673 0%, #B60081 37.08%, #2EA7E0 75.29%, #8FC31F 112.38%);
  border-radius: 50%;
  scale: 0;
  transition: all 0.3s ease-in-out;
}
.foot__links .link:hover {
  opacity: 1;
  color: #fff;
}
.foot__links .link:hover::before {
  scale: 1;
}
.foot__links .link:hover .title__min {
  color: #fff !important;
}
.foot__links .link:hover .icon__arrow {
  background-color: #fff;
}
.foot__links .link:hover .icon__arrow::before {
  opacity: 0;
}
.foot__links .link:hover .icon__arrow::after {
  color: var(--color-primary);
}
.foot__links .link .content {
  position: relative;
}
.foot__links .link .content .title__min {
  transition: all 0.3s ease-in-out;
}
.foot__links .link .content .title__max {
  display: block;
  margin: 24px 0;
}

.footer {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  border-top: 1px solid #E5E7EB;
}
.footer .address {
  margin-top: 24px;
}
.footer::after {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E61673 0%, #B60081 37.08%, #2EA7E0 75.29%, #8FC31F 112.38%);
}

.footer__column {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__column .other {
  flex-shrink: 0;
}

/* **************************************************************
 splash
*************************************************************** */
.splash {
  position: relative;
  overflow: hidden;
}
.splash::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E61673 0%, #B60081 37.08%, #2EA7E0 75.29%, #8FC31F 112.38%);
}

.splash__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 757px;
  overflow: hidden;
}
.splash__bg source,
.splash__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splash__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 96px;
}

.splash__copy .read {
  margin-bottom: 55px;
  line-height: 1.2;
  font-size: 64px;
  font-family: var(--font-family-sub);
}
.splash__copy .logo {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.splash__copy .logo .text {
  font-size: 12px;
}

.splash__slide-wrap {
  padding-left: 80px;
}

.splash__slide {
  height: 100%;
}
.splash__slide .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* **************************************************************
 about
*************************************************************** */
.about__wrapper {
  display: flex;
  gap: 120px;
}
.about__wrapper .img {
  flex-shrink: 0;
}

.about__area {
  display: flex;
  align-items: center;
  gap: 25px 55px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #E5E7EB;
}
.about__area .logo {
  flex-shrink: 0;
}
.about__area .content {
  font-size: 14px;
}

/* **************************************************************
 background
*************************************************************** */
.background {
  position: relative;
  overflow: hidden;
}
.background::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1005px;
  height: 1005px;
  background: url(../img/bg_background.jpg) no-repeat right top/cover;
}

/* **************************************************************
 vision
*************************************************************** */
.vision__column {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
}
.vision__column img {
  flex-shrink: 0;
}

/* **************************************************************
 service
*************************************************************** */
.service {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 0;
  background: #EFEFF4 url(../img/bg_features.jpg) no-repeat center top;
}

.service__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  gap: 0 24px;
  margin: 105px auto 40px;
}
.service__list .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  margin-top: -65px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
}
.service__list .item .text {
  display: block;
  padding: 0 30px;
  line-height: 1.4;
  font-size: 12px;
}

.service__summary {
  line-height: 1.7;
  text-align: center;
}

/* **************************************************************
 detail
*************************************************************** */
.detail {
  position: relative;
  margin-top: 0;
}
.detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #EFEFF4;
}

.detail__column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.detail__column .item .img {
  text-align: center;
}
.detail__column .item .img img {
  width: 100%;
}
.detail__column .item .title__col {
  margin-bottom: 10px;
  color: var(--color-quaternary);
}
.detail__column .item .text {
  text-align: justify;
}

/* **************************************************************
 company
*************************************************************** */
.company__column {
  display: flex;
  gap: 60px 120px;
}

.company__side {
  display: flex;
  flex-direction: column;
  max-width: 280px;
  flex-shrink: 0;
}
.company__side .title__max {
  margin: 0;
}
.company__side .text__content {
  line-height: 1.7;
  font-size: 14px;
}
.company__side .logo {
  margin-top: auto;
}

.company__content {
  width: 100%;
}
.company__content .dl__box .desc {
  font-size: 20px;
}

/*--------------------------------------------------------------------------------
  media 
--------------------------------------------------------------------------------*/
@media (max-width: 1439px) {
  /* **************************************************************
   style
  *************************************************************** */
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .list--4col {
    grid-template-columns: 1fr 1fr;
  }
  .column__wrap .column__content {
    padding: 40px 0 40px 40px;
  }
  .column__wrap-reverse .column__content {
    padding: 40px 40px 40px 0;
  }
  /* **************************************************************
   vision
  *************************************************************** */
  .vision__column {
    flex-direction: column;
    align-items: center;
  }
  .vision__column .text__content {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  /*br*/
  .hidden__md {
    display: none;
  }
  .visible__md {
    display: block;
  }
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  /*title*/
  /*column*/
  .column__wrap,
  .column__wrap-reverse {
    flex-direction: column;
    gap: 40px;
  }
  .column__wrap .column__img,
  .column__wrap-reverse .column__img {
    width: 100%;
  }
  .column__wrap .column__content,
  .column__wrap-reverse .column__content {
    width: 100%;
    padding: 0;
  }
  /* **************************************************************
  footer
  *************************************************************** */
  .foot__links {
    flex-direction: column;
  }
  .foot__links .link {
    width: 100%;
    padding: 40px;
  }
  .foot__links .link:last-child {
    border-left: none;
    border-top: 1px solid #E5E7EB;
  }
  /* **************************************************************
  splash 
  *************************************************************** */
  .splash__slide-wrap {
    padding-left: 40px;
  }
  /* **************************************************************
  vision
  *************************************************************** */
  .detail__column {
    grid-template-columns: 1fr 1fr;
  }
  /* **************************************************************
  company
  *************************************************************** */
  .company__column {
    flex-direction: column;
  }
  .company__side {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  /* **************************************************************
   style
  *************************************************************** */
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  /* **************************************************************
   common
  *************************************************************** */
  /*btn*/
  .button {
    width: 100%;
    font-size: 16px;
  }
  .visible__xs {
    display: block;
  }
  .hidden__xs {
    display: none;
  }
  /*list*/
  .list--2col {
    grid-template-columns: 1fr;
  }
  .list--3col,
  .list--4col,
  .list--5col {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .dl__max .dl-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .dl__min .dl-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
  }
  /*tab*/
  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .tab-button {
    width: 100%;
  }
  /* **************************************************************
   footer
  *************************************************************** */
  .foot__links .link {
    padding: 40px 24px;
  }
  .foot__links .link::before {
    width: 140%;
  }
  /* **************************************************************
   splash
  *************************************************************** */
  .splash__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .splash__bg {
    height: 460px;
  }
  .splash__copy .read {
    margin-bottom: 15px;
    font-size: 8.2vw;
  }
  .splash__copy .logo img {
    width: 158px;
    height: 24px;
  }
  .splash__btn {
    margin-top: 55px;
  }
  .splash__slide-wrap {
    height: 512px;
    padding-left: 24px;
  }
  /* **************************************************************
   about
  *************************************************************** */
  .about__area {
    gap: 24px;
  }
  /* **************************************************************
   background
  *************************************************************** */
  .background::before {
    left: 0;
    right: initial;
  }
  /* **************************************************************
   detail
  *************************************************************** */
  .detail__column {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */