@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-padding-top: var(--fixed-header-height-pc);
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, MyYuGothicM, "Yu Gothic", Meiryo, "Hiragino kaku Gothic ProN", sans-serif;
  font-feature-settings: normal;
  letter-spacing: .01em;
}
.txt-en {
  font-family: "Kanit", sans-serif !important;
}
.copy,
h2:not([class*=heading]),
h3:not([class*=heading]),
h4:not([class*=heading]),
h5:not([class*=heading]),
h6:not([class*=heading]),
.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.box .heading,
.frame .heading {
  font-family: inherit;
  font-feature-settings: "palt" 1;
  letter-spacing: .03em;
}

.mod a {
  position: relative;
  text-decoration: none;
  background: linear-gradient(var(--color-main), var(--color-main)) no-repeat left bottom;
  background-size: 100% 1px;
  transition: background-size 0.3s ease-in;
}
html:not(.sp) .mod a:hover {
  color: var(--color-main-light);
  background-size: 0 1px;
  background-position: right bottom;
  transition-timing-function: ease-out;
}

.mod a[href^="tel:"] {
  color: var(--color-txt);
  background: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: var(--fixed-header-height-sp);
  }
  body {
    line-height: 2;
  }
  .mod a[href^="tel:"] {
    pointer-events: auto;
  }
}
.mod .img > a:after,
.mod a .img:after {
  background-color: transparent;
}
.mod a:has(img) {
  background: none;
}

/*---------------------------------------------
  Header
  ---------------------------------------------*/
.mod#wrapper > .fixed:first-child {
  top: 0;
}
.mod header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--fixed-header-height-pc);
  padding: 0 0 0 30px;
  font-feature-settings: "palt";
  line-height: normal;
  background: color-mix(in srgb, var(--color-white) 87%, transparent);
  transition: background 0.2s linear;
}
.mod:has(#mainvisual) header {
  background: transparent;
}
.menu-on .mod:has(#mainvisual) header,
.is-scroll .mod:has(#mainvisual) header {
  background: color-mix(in srgb, var(--color-white) 87%, transparent);
}
html:not(.sp) .mod header:hover,
html:not(.sp) .mod:has(#mainvisual) header:hover {
  background: var(--color-white);
}
.mod header a {
  position: unset;
  background: none;
  transition: color 0.2s linear;
}
html:not(.sp) .mod header a:hover {
  color: var(--color-main);
}
.mod header p {
  margin: 0;
}
.mod header ul {
  margin: 0;
  padding: 0;
}
.mod header ul li {
  margin: 0;
  padding: 0;
}
.mod header ul li:before, 
.mod header li ul li:before {
  content: none;
}
.mod header #logo a {
  display: flex;
  align-items: center;
  gap: 5px clamp(1.25rem, 0.5rem + 1vw, 1.313rem);
}
.mod header #logo a .txt-en {
  font-size: clamp(0.813rem, -2.938rem + 5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.1;
}
.mod header #logo a img {
  width: clamp(8.313rem, -4.438rem + 17vw, 9.375rem);
}
.mod header #header-nav {
  display: flex;
  height: 100%;
}
.mod header .nav-outer {
  position: relative;
}
.mod header #header-btns {
  display: flex;
  margin-left: clamp(1.5rem, -4.5rem + 8vw, 2.5rem);
  border-radius: 0 0 0 30px;
  overflow: hidden;
}
.mod header button {
  padding: 0;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-color: transparent;
}
.mod header #header-btns a,
.mod header #header-btns button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  font-size: clamp(0.875rem, -0.75rem + 2vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  z-index: 2;
  background: var(--color-main);
}
.mod header #header-btns .header-btn a:after,
.mod header #header-btns .header-btn button:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: #017EEC;
  border-radius: 100%;
  pointer-events: none;
  z-index: -1;
  transform: scale(0);
  transition-duration: 0.5s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
html:not(.sp) header #header-btns .header-btn a:hover:after,
html:not(.sp) header #header-btns .header-btn button:hover:after {
  transform: scale(1.5);
}
.mod header #header-btns a .btn-wrap,
.mod header #header-btns button .btn-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -3.875rem + 6vw, 1rem) 0;
}
.mod header #header-btns a .txt-en,
.mod header #header-btns button .txt-en {
  font-size: clamp(1rem, -2.25rem + 4vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
}
.mod header #header-btns .header-btn {
  display: flex;
  width: clamp(6.25rem, -24.219rem + 37.5vw, 8.594rem);
  height: 100%;
  overflow: hidden;
}
.mod header #header-btns .header-btn#btn-newcomer a,
.mod header #header-btns .header-btn#btn-newcomer button {
  background: var(--color-accent);
}
.mod header #header-btns .header-btn#btn-newcomer a:after,
.mod header #header-btns .header-btn#btn-newcomer button:after {
  background: #FF0321;
}
.mod header #btn-menu {
  display: flex;
  width: clamp(6.25rem, -24.219rem + 37.5vw, 8.594rem);
  height: 100%;
  border-radius: 0;
  background-color: var(--color-white);
}
html:not(.sp) .mod #btn-menu:hover {
  background-color: var(--color-white);
}
.mod header #header-btns #btn-menu button {
  color: var(--color-main);
  text-indent: 0;
  background-color: transparent;
}
.mod header #header-btns #btn-menu button .btn-wrap {
  position: relative;
  justify-content: flex-end;
}
.mod #btn-menu:after {
  top: 32px;
  right: calc(50% - 9px);
  background-color: var(--color-main);
}
.mod #btn-menu button:before {
  top: 39px;
  right: calc(50% - 9px);
  background-color: var(--color-main);
}
.mod #btn-menu button:after {
  top: 46px;
  right: calc(50% - 9px);
  background-color: var(--color-main);
}
.mod #btn-menu.on:after {
  top: 39px;
}
.mod #btn-menu.on button:before {
  width: 0 !important;
  right: calc(50% - 9px);
}
.mod #btn-menu.on button:after {
  top: 39px;
}

.mod header #header-nav .nav-mask {
  position: fixed;
  display: block;
  top: var(--fixed-header-height-pc);
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - var(--fixed-header-height-pc));
  background-color: color-mix(in srgb, var(--color-txt) 15%, transparent);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition-property: visibility, opacity;
  transition-duration: 0s, 0.5s;
  transition-delay: 0.5s, 0s;
  transition-timing-function: cubic-bezier(0.33,1,0.68,1);
}
.mod header #header-nav:has(.menu-item.active > a.has-menu) .nav-mask,
html:has(#btn-menu.on) .mod header #header-nav .nav-mask {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition-duration: 0s, 0.5s;
  transition-delay: 0s;
}

.mod header #lang-selector {
  position: absolute;
  right: 0;
  top: 16px;
  width: 127px;
  color: var(--color-main);
  font-size: var(--f14px);
  font-weight: 500;
  letter-spacing: normal;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  overflow: clip;
}
.mod header #lang-selector .selector-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  cursor: pointer;
}
.mod header #lang-selector .selector-title > span {
  position: relative;
  padding: 4px 16px 4px 28px;
  background: url("../images/icon_global.svg") no-repeat left center;  
}
.mod header #lang-selector .selector-title > span:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
  width: 8px;
  height: 4px;
  background-color: var(--color-main);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.mod header #lang-selector .selector-title.open {
  background-color: var(--color-light-gray);
}
.mod header #lang-selector .selector-title.open > span:after {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.mod header #lang-selector .selector-item {
  display: none;
}
.mod header #lang-selector .selector-item li {
  border-top: 1px solid var(--color-gray);
}
.mod header #lang-selector .selector-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: var(--color-main);
  background-color: var(--color-white);
}
html:not(.sp) .mod header #lang-selector .selector-item a:hover {
  color: var(--color-white);
  background-color: var(--color-main);
}
.mod header #lang-selector .selector-item a > span {
  position: relative;
  width: 4.5em;
  padding: 0 0 0 12px;
}
.mod header #lang-selector .selector-item a > span:before {
  content: none;
  position: absolute;
  display: block;
  left: 0;
  top: calc(50% - 2px);
  width: 4px;
  height: 4px;
  background: var(--color-blue-gray-light);
  border-radius: 100%;
}
html:not(.sp) .mod header #lang-selector .selector-item a.current > span:before,
html:not(.sp) .mod header #lang-selector .selector-item a:hover > span:before {
  content: "";
}
.mod header #lang-selector .txt-jp {
  font-weight: 700;
}

@media screen and (min-width: 1200px), print {
  .mod header .main-menu {
    display: flex;
    gap: 0 clamp(1.25rem, -2rem + 4vw, 1.5rem);
    height: 100%;
    padding: 68px 0 0;
  }
  .mod header #header-nav .menu-item > a {
    position: relative;
    display: block;
    height: 42px;
    font-size: clamp(0.938rem, 0.188rem + 1vw, 1rem);
    font-weight: 700;
    line-height: 1rem;
  }
  .mod header #header-nav .main-menu:has(.menu-item:hover) .menu-item:not(:hover) > a {
    color: var(--color-blue-gray-light);
  }
  .mod header #header-nav .menu-item.current > a {
    color: var(--color-main) !important;
  }
  .mod header #header-nav .menu-item > a:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 29px;
    height: 4px;
    margin: auto;
    background-color: var(--color-accent);
    border-radius: 8px;
    transform: scaleX(0);
    transition: transform 0.2s ease-out;
  }
  .mod header #header-nav .menu-item.active > a:after,
  .mod header #header-nav .menu-item.current > a:after,
  .mod header #header-nav .menu-item > a:hover:after {
    transform: scaleX(1);
  }
  .mod header #header-nav .menu-item button {
    display: none;
  }
  .mod header #header-btns #btn-menu {
    display: none;
  }
  .mod header #header-nav .nav-base {
    position: fixed;
    top: var(--fixed-header-height-pc);
    left: 0;
    right: 0;
    height: 0;
    background-color: var(--color-light-gray);
    border-radius: 0 0 30px 30px;
    pointer-events: none;
    z-index: 1;
    transition-property: height;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.33,1,0.68,1)
  }
  .mod header #header-nav:has(.active) .nav-base {
    pointer-events: auto;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.16,1,0.3,1)
  }
  .mod header .megamenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    margin-top: var(--fixed-header-height-pc);
    padding: 56px 0;
    padding-bottom: 60px;
    pointer-events: none;
    visibility: hidden;
    transition-property: visibility;
    transition-duration: 0s;
    transition-delay: 0.25s;
  }
  .mod header #header-nav .menu-item.active .megamenu {
    pointer-events: auto;
    visibility: visible;
    z-index: 2;
    transition-duration: 0.25s;
  }
  .mod header .megamenu .megamenu-inner {
    display: flex;
    gap: 0 40px;
    max-width: var(--max-content-width-l);
    margin: 0 auto;
    padding: 0 4vw;
    box-sizing: content-box;
    opacity: 0;
    transform: translateY(-15px);
    transition-property: opacity,transform;
    transition-duration: .25s;
    transition-delay: 0s, 0.25s;
    transition-timing-function: cubic-bezier(0.33,1,0.68,1)
  }
  .mod header #header-nav .menu-item.active .megamenu-inner {
    opacity: 1;
    transform: translateY(0);
    transition-duration: .5s;
    transition-delay: .25s
  }
  .mod header .megamenu a {
    display: block;
    color: var(--color-txt);
    font-weight: 700;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .mod header .megamenu a > span:not([class]) {
    position: relative;
    display: inline-block;
    padding: 0 0 0 26px;
    z-index: 2;
  }
  .mod header .megamenu a > span:not([class]):before,
  .mod header .megamenu a > span:not([class]):after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0.25em;
    width: 18px;
    height: 18px;
  }
  .mod header .megamenu a > span:not([class]):after {
    background-color: var(--color-main);
    border-radius: 100%;
    z-index: -1;
  }        
  .mod header .megamenu a > span:not([class]):before {
    background-color: var(--color-white);
    -webkit-mask-image: url(../images/icon_link.svg);
            mask-image: url(../images/icon_link.svg);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 16px;
            mask-size: 16px;
  }
  .mod header .megamenu li:has(.img) {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-gray);
  }
  .mod header .megamenu .megamenu-title {
    flex: 1;
  }
  .mod header .megamenu .megamenu-title a {
    margin: 24px 0 0;
    font-size: var(--f22px);
  }
  .mod header .megamenu .megamenu-title a > span:not([class]) {
    padding-left: 44px;
  }
  .mod header .megamenu .megamenu-title a > span:not([class]):before,
  .mod header .megamenu .megamenu-title a > span:not([class]):after {
    content: "";
    top: 0;
    width: 32px;
    height: 32px;
  }
  .mod header .megamenu .megamenu-title a > span:not([class]):before {
    -webkit-mask-size: 24px;
            mask-size: 24px;
  }
  .mod header .megamenu .megamenu-label {
    margin-top: -0.2em;
    color: var(--color-main);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
  }
  .mod header .megamenu .megamenu-body {
    width: 73%;
  }
  .mod header .megamenu .megamenu-body > *:first-child {
    margin-top: 0;
  }
  .mod header .megamenu .megamenu-body > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
    margin: 32px 0 0;
  }
  .mod header .megamenu .megamenu-body > ul.megamenu-3col li {
    width: calc(100% / 3 - 24px * 2 / 3);
  }
  .mod header .megamenu .megamenu-body > ul.megamenu-4col li {
    width: calc(25% - 24px * 3 / 4);
  }
  .mod header .megamenu .megamenu-body .img {
    display: block;
    margin: 0 0 12px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    overflow: hidden;
  }
  .mod header .megamenu .megamenu-body > ul.megamenu-2col .img {
    aspect-ratio: 3 / 1;    
  }
  .mod header .megamenu .megamenu-body > ul.megamenu-4col .img {
    aspect-ratio: 3 / 2;    
  }
  .mod header .megamenu .megamenu-body .img:after {
    content: none;
  }
  .mod header .megamenu .megamenu-body .img img {
    border: none;
  }
  .mod header #menu05 .megamenu ul {
    display: grid;
    gap: 32px 40px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
    max-width: 1240px;
  }
  .mod header #menu05 .megamenu ul li {
    grid-column-start: 1;
  }
  .mod header #menu05 .megamenu ul li:nth-child(4) { grid-area: 1 / 2 / 2 / 3; }
  .mod header #menu05 .megamenu ul li:nth-child(5) { grid-area: 2 / 2 / 6 / 3; }
}

@media screen and (max-width: 1199px), print {
  .menu-on body {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .mod header .nav-outer {
    position: absolute;
    display: block;
    top: var(--fixed-header-height-pc);
    left: 0;
    width: 100%;
    max-height: calc(100svh - var(--fixed-header-height-pc));
    padding: 24px 24px 40px;
    background-color: var(--color-light-gray);
    border-radius: 0 0 20px 20px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition-property: visibility, opacity;
    transition-duration: 0s, 0.5s;
    transition-delay: 0.5s, 0s;
    transition-timing-function: cubic-bezier(0.33,1,0.68,1);
  }
  .mod header .nav-outer::-webkit-scrollbar {
    display: none;
  }
  html:has(#btn-menu.on) .mod header .nav-outer {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition-duration: 0s, 0.5s;
    transition-delay: 0s;
  }
  .resize .mod header .nav-outer {
    transition: none;
  }
  .mod header .main-menu > li {
    border-bottom: 1px solid var(--color-gray);
  }
  .mod header #header-nav .menu-item > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 66px;
    padding: 0 0 0 26px;
    font-weight: 700;
  }
  .mod header #header-nav .menu-item > a:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../images/icon_link_s.svg);
          mask-image: url(../images/icon_link_s.svg);
    background-color: var(--color-blue-gray-light);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 7px 12px;
            mask-size: 7px 12px;
  }
  .mod header .megamenu {
    display: none;
  }
  .mod header .megamenu a {
    font-size: var(--f14px);
    font-weight: 500;
  }
  .mod header .megamenu li {
    margin-top: 20px; 
  }
  .mod header .megamenu .megamenu-title {
    display: none;
  }
  .mod header .megamenu .megamenu-body {
    padding: 8px 0 32px 26px;
  }
  .mod header .megamenu .megamenu-body > *:first-child li:first-child {
    margin-top: 0;
  }
  .mod header .megamenu .megamenu-body .img {
    display: none;
  }
  /*.mod header #header-btns .header-btn,
  .mod header #btn-menu {
    width: clamp(7.5rem, 1.136rem + 13.26vw, 8.594rem);
  }*/
  .mod header #header-nav .menu-item > a.has-menu {
    margin-right: 56px;
  }
  .mod header #header-nav .menu-item > a + button {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 56px;
    height: 66px;
    background-image: linear-gradient(to right, color-mix(in srgb, var(--color-txt) 10%, transparent) 1px, transparent 1px, transparent);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 40px;
  }
  .mod header #header-nav .menu-item > a + button:before,
  .mod header #header-nav .menu-item > a + button:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 2px;
    margin: auto;
    background-color: var(--color-main);
    border-radius: 6px;
  }
  .mod header #header-nav .menu-item > a + button:after {
    transform: rotate(90deg);
  }
  .mod header #header-nav .menu-item > a + button.active:after {
    content: none;
  }
  .mod header #header-btns a .btn-wrap,
  .mod header #header-btns button .btn-wrap {
    gap: 0;
    height: 40px;
    justify-content: space-between;
  }
  .mod header #lang-selector {
    position: unset;
    width: 100%;
    margin: 40px 0 0;
    background-color: transparent;
  }
  .mod header #lang-selector .selector-title,
  .mod header #lang-selector .selector-item a {
    height: 50px;
  }
}

@media screen and (min-width: 768px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 767px) {
  .mod header {
    height: var(--fixed-header-height-sp);
    padding-left: 12px;
  }
  .mod header #logo a {
    flex-direction: column;
  }
  .mod header #logo a .txt-en {
    font-size: var(--f10px);
  }
  .mod header #logo a img {
    width: 82px;
  }
  .mod header .nav-outer {
    top: var(--fixed-header-height-sp);
    max-height: calc(100svh - var(--fixed-header-height-sp));
  }
  .mod header #header-btns {
    border-radius: 0 0 0 10px;
  }
  .mod header #header-btns a,
  .mod header #header-btns button {
    font-size: var(--f10px);
    font-weight: 800;
    line-height: 0.9;
  }
  .mod header #header-btns a .btn-wrap,
  .mod header #header-btns button .btn-wrap {
    height: 32px;
  }
  .mod header #header-btns a .txt-en,
  .mod header #header-btns button .txt-en {
    font-size: var(--f12px);
    font-weight: 700;
  }
  .mod header #header-btns .header-btn {
    width: 67px;
  }
  .mod header #btn-menu {
    width: 62px;
  }
  .mod #btn-menu:after {
    top: 16px;
  }
  .mod #btn-menu button:before {
    top: 22px;
  }
  .mod #btn-menu button:after {
    top: 28px;
  }
  .mod #btn-menu.on:after,
  .mod #btn-menu.on button:after {
    top: 22px;
  }
  .mod header #header-nav .nav-mask {
    top: var(--fixed-header-height-sp);
    height: calc(100vh - var(--fixed-header-height-sp));
  }
}


/*---------------------------------------------
  Footer
  ---------------------------------------------*/
.mod footer {
  position: relative;
  margin: -30px 0 0;
  padding: 120px 0 66px;
  line-height: normal;
  background-color: var(--color-blue-gray);
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.mod footer a {
  background: none;
  transition: color 0.2s linear;
}
html:not(.sp) .mod footer a:hover {
}
.mod footer p {
  margin: 0;
}
.mod footer ul {
  margin: 0;
  padding: 0;
}
.mod footer ul li {
  margin: 0;
  padding: 0;
}
.mod footer ul li:before {
  content: none;
}
.mod footer #footer-logo a {
  display: flex;
  align-items: center;
  gap: 32px 20px;
}
.mod footer #footer-logo a .txt-en {
  font-size: var(--f20px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mod footer .address {
  margin: 30px 0 0;
  font-size: var(--f12px);
  font-weight: 500;
}
.mod footer #footer-nav {
  display: flex;
  gap: 0 clamp(1.25rem, -1.861rem + 6.48vw, 3rem);
  margin: 80px 0 0;
}
.mod footer #footer-nav a {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.mod footer #footer-nav .menu-col {
  width: 100%;
}
.mod footer #footer-nav .menu-col > *:first-child {
  margin-top: 0;
}
.mod footer .footer-menu-lv2 {
  margin: 56px 0 0;
  font-size: var(--f18px);
  font-weight: 700;
}
.mod footer .footer-menu-lv2 a {
  position: relative;
  display: block;
  padding: 0 0 0 26px;
}
.mod footer .footer-menu-lv2 a:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  -webkit-mask-image: url(../images/icon_link_s.svg);
          mask-image: url(../images/icon_link_s.svg);
  background-color: color-mix(in srgb, var(--color-white) 40%, transparent);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 8px 15px;
          mask-size: 8px 15px;
  height: 26px;
  width: 26px;
}
.mod footer .footer-menu-lv2 a:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -16px;
  width: 100%;
  height: 1px;
  background-color: color-mix(in srgb, var(--color-white) 30%, transparent);
  transform: scale(0, 1);
  transform-origin: left;
  transition: transform .3s;
}
html:not(.sp) .mod footer .footer-menu-lv2 a:hover:after {
  transform: scale(1);
}
.mod footer .footer-menu-lv3 {
  margin: 32px 0 0;
}
.mod footer .footer-menu-lv3 li {
  margin: 16px 0 0;
  padding: 0 0 0 26px;
  font-size: var(--f14px);
  font-weight: 500;
}
.mod footer .footer-menu-lv3 li a {
  opacity: 0.75;
  transition: opacity 0.2s linear;
}
html:not(.sp) .mod footer .footer-menu-lv3 li a:hover {
  opacity: 1;
}
.mod footer .site-info {
  display: flex;
  margin: 80px 0 0;
}
.mod footer .link-icon a {
  color: var(--color-white);
  font-weight: 500;
}
html:not(.sp) .mod footer .link-icon a:hover {
  color: var(--color-white);
}
.mod footer .site-info .link-icon a:before {
  content: none;
}
.mod footer .site-info .link-icon .icon-window:after {
  margin-top: -4px;
  mask-size: 22px;
}
.mod footer .site-info .copyright {
  margin-left: auto;
  font-size: var(--f14px);
}
.mod #btn-pagetop {
  width: 56px;
  height: 56px;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--color-white) 20%, transparent);
  transition: transform 0.3s ease-out, border-color 0.2s linear;
}
html:not(.sp) .mod #btn-pagetop:hover {
  background-color: inherit;
  border-color: var(--color-white);
}
.mod #btn-pagetop.show {
  transform: translate3d(0, -94px, 0);
}
.mod #btn-pagetop a:before {
  content: none;
}
.mod #btn-pagetop a:after {
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--color-white);
  border-radius: 0;
  -webkit-mask-image: url(../images/icon_link.svg);
          mask-image: url(../images/icon_link.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: transform 0.2s linear;
}
.mod #btn-pagetop a:after {
  transform: rotate(-90deg);
}
html:not(.sp) .mod #btn-pagetop a:hover:after {
  transform: translate3d(0, -5px, 0) rotate(-90deg);
}

@media screen and (min-width: 768px) {
  .mod #pagetop {
    position: fixed;
    z-index: 10000;
    width: 100%;
  }
  .mod #pagetop.end {
    position: absolute;
    max-width: var(--max-content-width-l);
    bottom: unset;
    top: 138px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .mod #pagetop:not(.end) #btn-pagetop {
    background-color: var(--color-white);
    border-color: color-mix(in srgb, var(--color-main) 50%, transparent);
  }
  .mod #pagetop:not(.end) #btn-pagetop:hover {
    border-color: var(--color-main);
  }
  .mod #pagetop:not(.end) #btn-pagetop a:after {
    background-color: var(--color-main);
  }
  .mod #pagetop.end #btn-pagetop.show {
    transform: none;
    right: 95px;
  }
}

@media screen and (max-width: 767px) {
  .mod footer {
    margin: -20px 0 0;
    padding: 72px 0 56px;
    border-radius: 20px 20px 0 0;
  }
  .mod footer #footer-logo a {
    flex-direction: column;
  }
  .mod footer #footer-logo a .txt-en {
    font-size: var(--f16px);
  }
  .mod footer #footer-logo a img {
    width: 171px;
  }
  .mod footer .address {
    margin: 16px 0 0;
    font-size: var(--f13px);
    text-align: center;
  }
  .mod footer #footer-nav {
    display: none;
  }
  .mod footer .site-info {
    flex-direction: column;
    align-items: center;
    gap: 48px 0;
    margin: 64px 0 0;
  }
  .mod footer .site-info .copyright {
    margin-left: 0;
  }
  .mod #pagetop {
    position: relative;
    margin: 72px 0 0;
  }
  .mod #btn-pagetop {
    position: relative;
    right: unset;
    margin: auto;
    width: 74px;
    height: 74px;
  }
  .mod #btn-pagetop a:after {
    width: 32px;
    height: 32px;
  }
  .mod #pagetop #btn-pagetop.show {
    transform: none;
  }
}


/*---------------------------------------------
  Main
  ---------------------------------------------*/
.mod main {
  padding-top: var(--fixed-header-height-pc);
}

@media screen and (max-width: 767px) {
  .mod main {
    padding-top: var(--fixed-header-height-sp);
  }
}

/* ----- page title ----- */
.mod main .pagetitle {
  color: var(--color-white);
  background: linear-gradient(249.62deg, #0B92E7 10.08%, var(--color-main) 32.3%), var(--color-white);
}
.mod main .pagetitle-body {
  position: relative;
  padding: clamp(3rem, 1.222rem + 3.7vw, 4rem) 0 clamp(2.5rem, -0.167rem + 5.56vw, 4rem);
  z-index: 2;
}
.mod main .pagetitle-body:has(.pagetitle-img) {
  padding: 88px 0 96px;
}
.mod main .pagetitle-body .pagetitle-img {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  height: 100%;
  aspect-ratio: 1110 / 379;
  text-align: right;
  z-index: -1;
}
.mod main .pagetitle-body .pagetitle-img:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 129.73%;
  height: 100%;
  background: linear-gradient(248.1deg, color-mix(in srgb, var(--color-main) 0%, transparent) 22.52%, var(--color-main) 56.96%);
}
.mod main .pagetitle-body .pagetitle-img img {
  width: auto;
  height: 100%;
}
.mod main .pagetitle h1 {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  font-feature-settings: "palt";
  font-size: clamp(1.75rem, -0.472rem + 4.63vw, 3rem);
  font-weight: 900;
  line-height: 1.46;
}
.mod main .pagetitle h1 .txt-en {
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.mod main .pagetitle h1 .pagetitle-main.txt-en {
  font-size: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
}
.mod main .pagetitle h1 .pagetitle-sub {
  font-size: clamp(1.138rem, -0.394rem + 3.19vw, 2rem);
}
.mod main .pagetitle h1 .pagetitle-sub.txt-en {
  font-size: clamp(1rem, 0.111rem + 1.85vw, 1.5rem);
}
.mod main .pagetitle:has(.pagetitle-img) h1 .pagetitle-sub.txt-en {
  font-size: clamp(1rem, -0.111rem + 2.31vw, 1.625rem);
  line-height: 1.1;
}
.mod main .pagetitle-lead {
  margin: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem) 0 0;
  font-size: clamp(0.875rem, 0.431rem + 0.93vw, 1.125rem);
  line-height: 1.6;
}

.mod main .pagetitle-numbers .pagetitle-img {
  aspect-ratio: 1110 / 291;
}

.mod main .pagetitle-work {
  display: flex;
  align-items: center;
  gap: 32px;
}
.mod main .pagetitle-work .pagetitle-img {
  width: 51.2%;
  align-self: flex-end;
}
.mod main .pagetitle-work .pagetitle-body {
  flex: 1;
  padding: 12px 0;
}
.mod main .pagetitle-work h1 {
  font-size: clamp(1.375rem, 2.85vw, 2.5rem);
}
.mod main .pagetitle-work h1 .pagetitle-sub {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.mod main .pagetitle-work h1 .pagetitle-sub .txt-num {
  margin-left: 2px;
}
.mod main .worker-info {
  margin: clamp(1.5rem, 0.611rem + 1.85vw, 2rem) 0 0;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.mod main .worker-info .name {
  margin: 0;
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  font-weight: 900;
}
.mod main .worker-info .name .txt {
  margin-right: 4px;
  font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem);
  letter-spacing: 0.01em;
}
.mod main .worker-info .year {
  margin: 18px 0 0;
  font-size: clamp(0.75rem, 0.528rem + 0.46vw, 0.875rem);
  font-weight: 500;
}
.mod main .worker-info .position {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  font-size: clamp(0.75rem, 0.528rem + 0.46vw, 0.875rem);
}
.mod main .worker-info .position > *:not(:last-child) {
  padding-right: 8px;
}
.mod main .worker-info .position >*:not(:last-child):after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1px;
  height: 1.1em;
  vertical-align: top;
  background-color: color-mix(in srgb, var(--color-white) 30%, transparent);
  margin-top: calc((0.9em - 1.1em) / 2);
  transform: translateX(8px);
}
.mod main:has(.strengths-wrap) .pagetitle-body {
  display: flex;
  align-items: center;
  min-height: 382px;
  padding: 64px 0;
}

@media screen and (min-width: 768px) {
  .mod main .pagetitle-work .pagetitle-body {
    min-width: 0;
  }
  .mod main .pagetitle-work h1 .pagetitle-main {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

@media screen and (max-width: 767px) {
  .mod main .pagetitle-body:has(.pagetitle-img) {
    padding: 150px 0 37px;
  }
  .mod main .pagetitle-body .pagetitle-img {
    width: 100%;
    aspect-ratio: 18 / 13;
  }
  .mod main .pagetitle-body .pagetitle-img:after {
    width: 100%;
    background: linear-gradient(208.94deg, color-mix(in srgb, var(--color-main) 0%, transparent) 28.14%, var(--color-main) 54.49%);
  }
  .mod main .pagetitle-body .pagetitle-img img {
    width: 100%;
    object-fit: cover;
    object-position: right top;
  }
  .mod main .pagetitle h1 .pagetitle-sub.txt-en {
    line-height: 1.1;
  }
  
  .mod main .pagetitle-work {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 40px 0 45px;
  }
  .mod main .pagetitle-work .pagetitle-img {
    width: 100%;
    border-radius: var(--radius-panel-sp);
    overflow: hidden;
  }
  .mod main .pagetitle-work .pagetitle-body {
    width: 100%;
    padding: 0;
  }
  .mod main .pagetitle-work h1 {
    font-size: var(--f26px);
  }
  .mod main .worker-info {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
  }
  .mod main .worker-info .year {
    margin: 0;
  }
  .mod main .worker-info .position {
    width: 100%;
    gap: 4px 8px;
    margin: 0;
  }
  .mod main:has(.strengths-wrap) .pagetitle-body {
    align-items: flex-end;
    min-height: 303px;
  }
}
 
/* ----- breadcrumb ----- */
.mod main .breadcrumb {
  height: 64px;
  padding: 26px 0 0;
  color: color-mix(in srgb, var(--color-white) 80%, transparent);
  font-size: var(--f13px);
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid color-mix(in srgb, var(--color-white) 30%, var(--color-blue-gray));
  background-color: var(--color-blue-gray);
}
.mod main .breadcrumb ul {
  margin: 0;
  padding: 0;
  word-break: keep-all;
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mod main .breadcrumb ul::-webkit-scrollbar {
  display: none;
}
.mod main .breadcrumb li {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}
.mod main .breadcrumb li:before {
  content: none;
}
.breadcrumb li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  background-color: color-mix(in srgb, var(--color-white) 43%, transparent);
  -webkit-mask-image: url(../images/icon_link_s.svg);
          mask-image: url(../images/icon_link_s.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 6px 9px;
          mask-size: 6px 9px;
}
.mod main .breadcrumb a {
  color: color-mix(in srgb, var(--color-white) 50%, transparent);
  background: none;
  transition: color 0.2s;
}
html:not(.sp) .mod main .breadcrumb a:hover {
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .mod main .breadcrumb {
    height: 41px;
    padding: 15px 0 0;
    font-size: var(--f11px);
  }
}

/* ----- section ----- */
.mod section:has(.content) {
  position: relative;
  overflow: visible;
}
.mod .content {
  position: relative;
  margin-top: -30px;
  padding: 96px 0 126px;
  border-radius: 30px 30px 0 0;
  overflow: clip;
}
.mod .pagetitle + .content {
  margin-top: 0;
  border-radius: 0;
}
.mod .content:not([class*=bg-]) + .content:not([class*=bg-]) {
  padding-top: 58px;
}
.mod .row {
  width: calc(100% - 8vw);
}
.mod .row > *:first-child {
  margin-top: 0;
}
.mod .row > *:last-child {
  margin-bottom: 0;
}
.mod .row.wide-l {
  max-width: var(--max-content-width-l);
}
.mod .row.wide-s {
  max-width: 960px;;
}

@media screen and (max-width: 767px) {
  .mod .content {
    margin-top: -20px;
    padding: 64px 0 84px;
    border-radius: 20px 20px 0 0;
  }
  .mod .content:not([class*=bg-]) + .content:not([class*=bg-]) {
    padding-top: 20px;
  }
}

.mod .content#pagelink {
  padding: 120px 0;
}
.mod .pagelink .panel-covered:before {
  height: 300px;
}
.mod .pagelink .panel-covered .hd-pagelink {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
  font-weight: 900;
  line-height: 1.46;
}
.mod .pagelink .panel-covered .hd-pagelink span {
  display: block;
}
.mod .pagelink .panel-covered .hd-pagelink .txt-jp {
  font-size: var(--f26px);
}
.mod .pagelink .panel-covered .hd-pagelink .txt-en {
  font-size: clamp(2rem, -1.111rem + 6.48vw, 3.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.mod .pagelink .panel-covered .hd-pagelink .txt-en .txt-sub {
  font-size: 0.666em;
}

@media screen and (max-width: 767px) {
  .mod .content#pagelink {
    padding: 56px 0 78px;
  }
  .mod .col-set.pagelink {
    gap: 16px 0;
  }
  .mod .pagelink .panel-covered:before {
    height: 168px;
  }
  .mod .pagelink .panel-covered .hd-pagelink .txt-jp {
    font-size: var(--f22px);
  }
}


/*---------------------------------------------
	Module
  ---------------------------------------------*/
/* ----- [HD]  見出し ----- */
.mod h2:not([class*=heading]),
.mod .heading1 {
  margin-top: 96px;
  color: var(--color-main);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.mod h2:not([class*=heading]):after,
.mod .heading1:after {
  content: "";
  display: block;
  width: 52px;
  height: 6px;
  margin: 24px auto 0;
  border-radius: 9999px;
  background-color: var(--color-accent);
}
.mod h3:not([class*=heading]),
.mod .heading2 {
  margin-top: 64px;
  color: var(--color-main);
}
.mod h4:not([class*=heading]),
.mod .heading3 {
  margin-top: 40px;
}
.mod h5:not([class*=heading]),
.mod .heading4 {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .mod *:not([class*=heading]).pc-xxl {
    font-size: var(--fontsize-xxl);
  }
}

@media screen and (max-width: 767px) {
  .mod h2:not([class*=heading]),
  .mod .heading1 {
    margin-top: 64px;
    line-height: 1.4;
  }
  .mod h3:not([class*=heading]),
  .mod .heading2,
  .mod h4:not([class*=heading]),
  .mod .heading3,
  .mod h5:not([class*=heading]),
  .mod .heading4,
  .mod h6:not([class*=heading]),
  .mod .heading5 {
    line-height: 1.5;
  }
}

/* ----- [TX] テキスト ----- */
.mod .lighter {
  font-weight: 400 !important;
}
.mod .kerning {
  font-feature-settings: "palt" !important;
}

.mod .note {
  font-size: var(--f14px);
  font-weight: 400;
}
.mod .note + .note {
  margin-top: -0.5em;
}

@media screen and (max-width: 767px) {
  .mod .note {
    font-size: var(--f13px);
  }
}

/* ----- [LT]  リスト ----- */
.mod ul {
  margin: 40px 0 0;
  counter-reset: list-num;
}
.mod ul li {
  padding: 0 0 0 22px;
  margin: 0 0 6px;
  line-height: 1.6;
}
.mod ul li:before {
  width: 6px;
  height: 6px;
  top: calc(0.8em - 3px);
  left: 5px;
  margin: 0;
  background-color: var(--color-main);
}
.mod ul.dot-gray > li:before {
  background-color: var(--color-dark-gray);
}
.mod li ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  left: 5.5px;
  top: calc(0.8em - 2.5px);
  background-color: var(--color-dark-gray);
}
.mod ol {
  margin: 40px 0 0;
  counter-reset: list-num;
  list-style-type: none;
}
.mod ol li {
  position: relative;
  margin: 0 0 6px;
  padding: 0 0 0 22px;
  line-height: 1.6;
}
.mod ol li:before {
  counter-increment: list-num;
  content: counter(list-num);
  position: absolute;
  left: 3px;
  top: 0;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--color-main);
  font-family: "Kanit", sans-serif !important;
  font-size: var(--f18px);
  font-weight: 600;
  line-height: 1.42;
  background: none;
}
.mod li ol li:before {
  width: auto;
  height: auto;
  left: 3px;
  top: 0;
  font-weight: 400;
  background: none;
}
.mod ul ul,
.mod ol ol,
.mod ol ul,
.mod ul ol {
  margin: 8px 0 0;
}

/* ----- [TB]  表 ----- */
.mod table {
  margin: 40px 0 0;
  line-height: 1.6;
}
.mod table td {
  padding: 24px;
}
.mod table th {
  padding: 24px;
  background-color: var(--color-light-gray2);
}
.mod table thead th {
  padding: 16px 24px;
  color: var(--color-white);
  background-color: var(--color-main);
  border-color: color-mix(in srgb, var(--color-white) 20%, var(--color-main));
}
.mod table td > *:first-child,
.mod table th > *:first-child {
  margin-top: 0;
}
.mod table td > *:last-child,
.mod table th > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mod table.sp-vertical td,
  .mod table.sp-vertical th {
    display: block;
    width: auto !important;
    margin: -1px 0 0;
    padding: 18px 16px;
  }
}

.mod .scroll {
  margin-top: 40px;
}
.mod .scroll > *:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .mod .scroll-hint-icon-wrap {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon {
    top: calc(50% - 44px);
    left: calc(50% - 44px);
    width: 88px;
    height: 88px; 
    border-radius: 10px;
    background: color-mix(in srgb, #445660 75%, transparent);
    padding: 20px 10px 10px 10px;
  }
  .scroll-hint-icon:before {
    width: 33px;
    height: 33px;
    margin-left: 16px;
  }
  .scroll-hint-icon:after {
    top: 22px;
    width: 22px;
    height: 8px;
    margin-left: -27px;
    background-size: contain;
  }
  .scroll-hint-text {
    font-size: var(--f12px);
  }
}

/* ----- 囲いコンテンツ ----- */
.mod .box {
  margin-top: 40px;
  margin-bottom: 0;
  padding: 40px 48px;
  background-color: #EEF5FB;
}
.mod .frame {
  margin: 40px 0 0;
  padding: 40px 48px;
  border: solid 4px var(--color-light-gray2);
}
.mod .box > *:first-child,
.mod .frame > *:first-child {
  margin-top: 0;
}
.mod .box > *:last-child,
.mod .frame > *:last-child {
  margin-bottom: 0;
}
.mod .col-set > .box,
.mod .col-set > .frame {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .mod .box,
  .mod .frame {
    padding: 24px;
  }
}

/* ----- [BT]  ボタン ----- */
.mod .btn {
  gap: 24px 0;
  margin-top: 48px;
}
.mod .btn > * {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 376px;
  min-height: 72px;
  margin-bottom: 0;
  padding: 14px 19px 14px 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  overflow: hidden;
  z-index: 2;
}
html:not(.sp) .mod .btn > *:hover {
  opacity: 1;
}
.mod .btn > *:before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 400px);
  left: calc(50% - 400px);
  width: 800px;
  height: 800px;
  margin: auto;
  border-radius: 100%;
  background-color: var(--color-main-light);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
html:not(.sp) .mod .btn > *:hover:before {
  transform: scale(1);
  transition-duration: 1s;
}
.mod .btn span {
  display: block;
  padding: 0 40px 0 0;
  flex: 1;
}
.mod .btn span:after {
  top: calc(50% - 17px);
  right: 0;
  width: 34px;
  height: 34px;
}
html:not(.sp) .mod .btn > *:hover span:after {
  transform: translate3d(6px, 0, 0);
}
.mod .btn.btn02 > *,
.mod .btn.btn03 > * {
  width: fit-content;
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: var(--color-txt);
  font-weight: 800;
  background: transparent;
}
.mod .btn.btn02 > *:before,
.mod .btn.btn03 > *:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: unset;
  right: 0;
  width: 74px;
  height: 74px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid var(--color-main);
  background-color: var(--color-white);
}
html:not(.sp) .mod .btn.btn02 > *:hover,
html:not(.sp) .mod .btn.btn03 > *:hover {
  color: var(--color-main);
}
html:not(.sp) .mod .btn.btn02 > *:hover:before,
html:not(.sp) .mod .btn.btn03 > *:hover:before {
  transition-duration: 0.3s;
}
.mod .btn.btn02 span,
.mod .btn.btn03 span {
  display: flex;
  align-items: center;
  padding: 0;
}
.mod .btn.btn02 span:before,
.mod .btn.btn03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 100%;
  background-color: var(--color-main);
  z-index: -1;
}
.mod .btn.btn02 span:after,
.mod .btn.btn03 span:after {
  position: unset;
  flex-shrink: 0;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
html:not(.sp) .mod .btn.btn02 > *:hover span:after,
html:not(.sp) .mod .btn.btn03 > *:hover span:after {
  background-color: var(--color-main);
  transform: none;
}
.mod .btn.btn02 span {
  gap: 0 24px;
}
.mod .btn.btn02 span:after {
  -webkit-mask-size: 32px;
          mask-size: 32px;
}
.mod .btn.btn03 span {
  gap: 0 10px;
}
.mod .btn.btn03 span:after {
  -webkit-mask-size: 28px;
          mask-size: 28px;
}
.mod .btn.btn02 > *:before,
.mod .btn.btn02 span:before,
.mod .btn.btn02 span:after {
  width: 74px;
  height: 74px;
}
.mod .btn.btn03 > *:before,
.mod .btn.btn03 span:before,
.mod .btn.btn03 span:after {
  width: 40px;
  height: 40px;
}

.mod .txt-white .btn.btn02 > *,
.mod .txt-white .btn.btn03 > * {
  color: var(--color-white);
}
.mod .txt-white .btn.btn02 > *:before,
.mod .txt-white .btn.btn03 > *:before {
  border-color: var(--color-white);
  background-color: var(--color-main);
}
html:not(.sp) .mod .txt-white .btn.btn02 > *:hover,
html:not(.sp) .mod .txt-white .btn.btn03 > *:hover {
  color: var(--color-white);
}
.mod .txt-white .btn.btn02 span:before,
.mod .txt-white .btn.btn03 span:before {
  background-color: var(--color-white);
}
.mod .txt-white .btn.btn02 span:after,
.mod .txt-white .btn.btn03 span:after {
  background-color: var(--color-main);
}
html:not(.sp) .mod .txt-white .btn.btn02 > *:hover span:after,
html:not(.sp) .mod .txt-white .btn.btn03 > *:hover span:after {
  background-color: var(--color-white);
}

.mod .bg-light .btn.btn02 > *:before,
.mod .bg-light .btn.btn03 > *:before {
  background-color: var(--color-light-gray);
}

.mod .bg-white .btn.btn02 > *:before,
.mod .bg-white .btn.btn03 > *:before {
  background-color: var(--color-white);
}

.mod .btn.back {
  margin: 64px 0 0;
}
.mod .btn.back > * {
  width: fit-content;
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: var(--color-txt);
  font-weight: 800;
  background: transparent;
}
html:not(.sp) .mod .btn.back > *:hover {
  color: var(--color-main);
}
.mod .btn.back span {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0 4px;
  padding: 0;
}
.mod .btn.back > *:before,
.mod .btn.back span:before {
  content: none;
}
.mod .btn.back span:after {
  position: unset;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background-color: var(--color-main);
  -webkit-mask-position: center 1px;
          mask-position: center 1px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 28px;
          mask-size: 28px;
  transform: scaleX(-1);
}
html:not(.sp) .mod .btn.back > *:hover span:after {
  background-color: var(--color-main);
  transform: scaleX(-1) translate3d(4px, 0, 0);
}

@media screen and (min-width: 768px) {
  .mod .btn:has(> :nth-child(2)) > * {
    min-width: 0;
    width: calc(100% / 3 - 20px);
  }
  .mod .btn.large > * {
    width: 440px;
    padding: 14px 24px 14px 64px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mod .btn > * {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    padding: 14px 24px 14px 24px;
  }
}

/* ----- [LK1]  アイコンリンク ----- */
.mod .link-icon a,
.mod a .link-icon {
  color: var(--color-txt);
  font-weight: 700;
  background: none;
  z-index: 2;
  transition: color 0.2s linear;
}
html:not(.sp) .mod .link-icon a:hover,
html:not(.sp) .mod a:hover .link-icon {
  color: var(--color-main);
  text-decoration: none;
}
.mod .link-icon a:after,
.mod a .link-icon:after,
.mod .link-icon .icon-download:after,
.mod a .link-icon.icon-download:after,
.mod .link-icon .icon-window:after,
.mod a .link-icon.icon-window:after,
.mod .link-icon .icon-pdf:after,
.mod a .link-icon.icon-pdf:after,
.mod .link-icon .icon-enlarge:after,
.mod a .link-icon.icon-enlarge:after,
.mod .link-icon .icon-search:after,
.mod a .link-icon.icon-search:after,
.mod .link-icon .icon-contact:after,
.mod a .link-icon.icon-contact:after,
.mod .link-icon .icon-play:after,
.mod a .link-icon.icon-play:after {
  margin: -2px 0 0 8px;
  background-color: var(--color-white);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 18px;
          mask-size: 18px;
}
html:not(.sp) .mod .link-icon a:hover:after,
html:not(.sp) .mod a:hover .link-icon:after {
  background-color: var(--color-main);
}
html:not(.sp) .mod .link-icon a:not([class*=icon-]):hover:after,
html:not(.sp) .mod a:hover .link-icon:not([class*=icon-]):after {
  transform: none; 
}

.mod .link-icon a:before,
.mod a .link-icon:before {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 0.25em;
  width: 24px;
  height: 24px;
  background-color: var(--color-main);
  border-radius: 100%;
  z-index: -2;
}
.mod .link-icon a span,
.mod a .link-icon span {
  display: inline-block;
  vertical-align: middle;
}
.mod .link-icon a span:after,
.mod a .link-icon span:after {
  content: "";
  position: absolute;
  display: block;
  top: 0.25em;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  box-shadow:0 0 0 1px var(--color-main) inset;
  background-color: var(--color-white);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(.165, .84, .44, 1);
}
html:not(.sp) .mod .link-icon a:hover span:after,
html:not(.sp) .mod a:hover .link-icon span:after {
  transform: scale(1);
}

.mod .link-icon:not(li) + .link-icon {
  margin-top: inherit;
}
.mod li.link-icon {
  margin-bottom: 16px;
}
.mod .bg-light .link-icon a span:after,
.mod .bg-light a .link-icon span:after {
  background-color: var(--color-light-gray);
}

html:not(.sp) .mod .txt-white .link-icon a:hover:after,
html:not(.sp) .mod .txt-white a:hover .link-icon:after {
  background-color: var(--color-white);
}
.mod .txt-white .link-icon a:before,
.mod .txt-white a .link-icon:before {
  background-color: var(--color-white);
}
.mod .txt-white .link-icon a span:after,
.mod .txt-white a .link-icon span:after {
  border-color: var(--color-white);
  background-color: var(--color-main);
}


.mod .link-icon.xs a,
.mod a .link-icon.xs {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.38;
}
.mod .link-icon.xs a:before,
.mod a .link-icon.xs:before,
.mod .link-icon.xs a span:after,
.mod a .link-icon.xs span:after {
  top: calc(50% - 9px);
  width: 18px;
  height: 18px;
}
.mod .link-icon.xs a:after,
.mod a .link-icon.xs:after {
  top: 4px;
  width: 18px;
  height: 18px;
  margin: 0 0 0 6px;
  -webkit-mask-size: 16px;
          mask-size: 16px;
  flex-shrink: 0;
}


/* ----- テキストリンク ----- */
.mod a.link-text.icon-window,
.mod a.link-text.icon-pdf {
  background-size: calc(100% - 24px) 1px;
}
html:not(.sp) .mod a.link-text.icon-window:hover,
html:not(.sp) .mod a.link-text.icon-pdf:hover {
  background-position: right 24px bottom;
}
.mod a.link-text.icon-window:after,
.mod a.link-text.icon-pdf:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-color: var(--color-main);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 20px;
          mask-size: 20px;
}
.mod a.link-text.icon-window:after {
  -webkit-mask-image: url(../images/icon_window.svg);
          mask-image: url(../images/icon_window.svg);
}
.mod a.link-text.icon-pdf:after {
  -webkit-mask-image: url(../images/icon_pdf.svg);
          mask-image: url(../images/icon_pdf.svg);
}
html:not(.sp) .mod a.link-text.icon-window:hover:after,
html:not(.sp) .mod a.link-text.icon-pdf:hover:after {
  background-color: var(--color-main-light);
  background-position: right 20px bottom;
}


/* ----- ページ内リンク ----- */
.mod .content.page-anchor {
  padding: 40px 0 70px;
}
.mod .link-anchor {
  display: flex;
}
.mod .link-anchor li {
  width: 100%;
  margin: 0;
  padding: 0 8px;
  border-left: 1px solid #D2D6D9;
}
.mod .link-anchor li:before {
  content: none;
}
.mod .link-anchor a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  height: 45px;
  margin: 0;
  padding: 8px 0;
  font-size: clamp(0.75rem, 0.306rem + 0.93vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  background: none;
}
.mod .link-anchor a:before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_link_s.svg);
          mask-image: url(../images/icon_link_s.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: rotate(90deg) translateX(2px);
  transition-duration: 0.2s;
  transition-property: transform, background-color;
  transition-timing-function: linear;
  flex-shrink: 0;
}
html:not(.sp) .mod .link-anchor a:hover:before {
  background-color: var(--color-main-light);
  transform: rotate(90deg) translateX(4px);
}

@media screen and (min-width: 768px) {
  .mod .link-anchor li:first-child {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .mod .content.page-anchor {
    padding: 24px 0 56px;
  }
  .mod .link-anchor {
    flex-direction: column;
  }
  .mod .link-anchor li {
    border-left: none;
    border-bottom: 1px solid #D2D6D9;
  }
  .mod .link-anchor a {
    justify-content: flex-start;
    gap: 0 16px;
    height: 56px;
    font-size: var(--f13px);
  }
}


/* ----- [IG]  画像 ----- */
.mod .img {
  margin-bottom: 0;
  text-align: left;
  border-radius: var(--radius-panel-pc);
  overflow: hidden;
}
.mod .img .caption {
  margin: 16px 0 0;
}
.mod figure.img {
  inline-size: fit-content;
  max-inline-size: 100%;
  margin-inline: auto;
  margin-top: 64px;
  border-radius: 0;
}
.mod figure.img.left {
  margin-inline: 0 auto;
}
.mod figure.img.right {
  margin-inline: auto 0;
}
.mod figure.img > *:last-child {
  margin-bottom: 0;
}
.mod figure.img img {
  border-radius: var(--radius-panel-pc);
}
.mod figure.img .caption {
  inline-size: 0;
  min-inline-size: fit-content;
  line-height: 1.3;
  text-align: left;
}
.img .border {
  position: relative;
  display: block;
  width: fit-content;
}
.img .border:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #d6d6d6;
  border-radius: var(--radius-panel-pc);
}
.mod .img.crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mod .img.crop.ar3-2 img {
  aspect-ratio: 3 / 2;
}
.mod .img.crop.ar2-1 img {
  aspect-ratio: 2 / 1;
}

@media screen and (min-width: 768px) {
  .mod .img-set .img.img-ms {
    width: 38.888%;
  }
}

@media screen and (max-width: 767px) {
  .mod .img {
    border-radius: var(--radius-panel-sp);
  }
  .mod figure.img {
    margin-top: 40px;
  }
  .mod figure.img img {
    border-radius: var(--radius-panel-sp);
  }
  .img .border:after {
    border-radius: var(--radius-panel-sp);
  }
  .mod .img.crop.sp-ar3-2 img {
    aspect-ratio: 3 / 2;
  }
  .mod .img.crop.sp-ar2-1 img {
    aspect-ratio: 2 / 1;
  }
}

/* ----- [IG3] 画像 > 画像＋テキスト ----- */
.mod .img-set {
  margin-top: 64px;
}
.mod .img-set > *:last-child {
  margin-bottom: 0;
}
.mod .img-set.fit > *:not(.img) {
  overflow: hidden;
}
.mod .img-set .img {
  margin-top: 0;
}
.mod .img-set .img + * {
  margin-top: 0;
}
.mod .thumb-set {
  position: relative;
  margin: 40px 0 0;
}
.mod .thumb-set .img {
  width: 72px;
  margin: 0 24px 0 0;
  padding: 0 ;
}
.mod .thumb-set .img img {
  border-radius: 4px;
  aspect-ratio: 1;
  object-fit: cover;
}
.mod .thumb-set .img figcaption {
  margin: 2px 0 0;
  text-align: center;
}
.mod .thumb-set .img .heading {
  font-weight: 500;
}
.mod .thumb-set .txt {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 1px solid #d7d7d7;
}
.mod .thumb-set .txt > *:last-child {
  margin-bottom: 0;
}
.mod .thumb-set .txt p + p {
  margin-top: 1em;
}
.mod .thumb-set .img.right {
  margin: 0 0 0 24px;
}
.mod .thumb-set .img.right + .txt {
  padding: 0 24px 0 0;
  border-left: none;
  border-right: 1px solid #d7d7d7;
}

@media screen and (min-width: 768px) {
  .mod .img-set.fit > *:not(.img) {
    margin-left: calc(50% + calc(var(--col-space-wide) / 2));
  }
  .mod .img-set.fit:has(.img-ms) > *:not(.img) {
    margin-left: calc(38.888% + calc(var(--col-space-wide) / 2));
  }
  .mod .img-set.fit:has(.img.right) > *:not(.img) {
    margin-left: 0;
    margin-right: calc(50% + calc(var(--col-space-wide) / 2));
  }
  .mod .img-set.fit:has(.img-ms.right) > *:not(.img) {
    margin-left: 0;
    margin-right:  calc(38.888% + calc(var(--col-space-wide) / 2));
  }
}

@media screen and (max-width: 767px) {
  .mod .img-set {
    margin-top: 40px;
  }
  .mod .img-set .img + * {
    margin-top: 16px;
  }
  .mod .thumb-set .img {
    width: 48px;
    margin: 0 16px 0 0;
  }
  .mod .thumb-set .img img {
    border-radius: 3px;
  }
  .mod .thumb-set .txt {
    padding: 0 0 0 16px;
  }
  .mod .thumb-set .img.right {
    margin: 0 0 0 16px;
  }
  .mod .thumb-set .img.right + .txt {
    padding: 0 16px 0 0;
    border-left: none;
    border-right: 1px solid #d7d7d7;
  }
}

.mod .icon-set {
  display: flex;
  align-items: center;
  gap: 16px 40px;
}
.mod .icon-set.pc-vertical {
  flex-direction: column;
}
.mod .col-set .box:has(.icon-set.pc-vertical) {
  padding: 40px;
}
.mod .icon-set .img {
  width: 120px;
  margin: 0;
}
.mod .icon-set .img img {
  border-radius: 0;
}
.mod .icon-set .txt {
  flex: 1;
}
.mod .icon-set .txt > *:first-child {
  margin-top: 0;
}
.mod .icon-set .txt > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mod .icon-set {
    flex-direction: column;
    gap: 24px;
  }
}

/* ----- [CL]  カラム ----- */
.mod .col-set {
  margin-top: 64px;
  gap: 40px 0;
}
.mod .col-set > * {
  margin-bottom: 0 !important;
}
.mod .col-set > * > *:first-child {
  margin-top: 0;
}
.mod .col-set > * > *:last-child {
  margin-bottom: 0;
}
.mod .col-set.fit > * {
  display: flex;
  flex-direction: column;
}
.mod .col-set.fit .h-adjust {
  flex-grow: 1;
}
.mod .col1 {
  width: calc(100% - var(--col-space-wide));
  margin-right: var(--col-space-wide);
}

@media screen and (max-width: 1199px), print {
  .mod .col1 {
    width: calc(100% - var(--col-space-pc));
    margin-right: var(--col-space-pc);
  }
}

@media screen and (max-width: 767px) {
  .mod .col-set {
    margin-top: 40px;
  }
  .mod .col1 {
    width: calc(100% - var(--col-space-sp));
    margin-right: var(--col-space-sp);
  }
}

/* ----- [PL1] パネル > 画像上 ----- */
.mod .panel-vertical {
  margin-bottom: 0;
  background-color: transparent;
}
.mod .panel-vertical > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 24px;
  background: none;
  border-bottom: 1px solid #dedede;
}
html:not(.sp) .mod a:hover .link-icon {
  color: var(--color-main);
}
.mod .panel-vertical > a:before {
  content: none;
}
.mod .panel-vertical > a:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in;
}
html:not(.sp) .mod .panel-vertical > a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transition-timing-function: ease-out;
}
.mod .panel-vertical .img {
  border-radius: var(--radius-panel-pc);
}
.mod .panel-vertical .txt {
  position: relative;
  padding: 20px 0 24px;
}
.mod .panel-vertical .txt > *:last-child {
  margin-bottom: 0;
}
.mod .panel-vertical .heading {
  margin-bottom: 8px;
  font-size: var(--font-panel-horizontal-heading1);
  color: var(--color-main);
}
.mod .panel-vertical .txt .heading + p {
  margin-top: 0;
}
.mod .panel-vertical > a .link-icon {
  margin: auto 0 0;
  font-weight: 800;
}
.mod .panel-vertical > a .link-icon:before,
.mod .panel-vertical > a .link-icon:after,
.mod .panel-vertical > a .link-icon span:after {
  top: 0;
  width: 40px;
  height: 40px;
  margin-top: 0;
}
.mod .panel-vertical > a .link-icon:after {
  -webkit-mask-size: 28px;
          mask-size: 28px;
}
.mod .panel-vertical .txt .year {
  margin-left: 16px;
  color: var(--color-main);
  font-size: var(--f14px);
  font-weight: 500;
}
.mod .panel-vertical .txt .position {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  color: var(--color-dark-gray);
  font-size: var(--f14px);
  font-weight: 500;
}
.mod .panel-vertical .txt .position .separator {
  margin: 0 3px;
  color: color-mix(in srgb, var(--color-dark-gray) 50%, transparent) !important;
  font-size: 1.142em;
}
.mod .panel-vertical .txt .position span:not(:last-child) {
  padding-right: 10px;
}
.mod .panel-vertical .txt .position span:not(:last-child):after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1px;
  height: 16px;
  vertical-align: top;
  background-color: color-mix(in srgb, var(--color-dark-gray) 50%, transparent);
  margin-top: calc((1.6em - 16px) / 2);
  transform: translateX(10px);
}


@media screen and (min-width: 768px) {
  .mod .col-set:has(.col1-3.panel-vertical) .heading {
    font-size: var(--f16px);
  }
  .mod .col-set:has(.col1-3.panel-vertical) .link-icon {
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .mod .col-set:has(.panel-vertical) {
    gap: 24px 0;
  }
  .mod .panel-vertical .img {
    border-radius: var(--radius-panel-sp);
  }
  .mod .panel-vertical .txt {
    padding: 16px 0 19px;
  }
  .mod .panel-vertical .heading {
    font-size: var(--f18px);
  }
  .mod .panel-vertical > a .link-icon {
    font-size: var(--f14px);
  }
  .mod .panel-vertical > a .link-icon:before,
  .mod .panel-vertical > a .link-icon:after,
  .mod .panel-vertical > a .link-icon span:after {
    top: 0;
    width: 32px;
    height: 32px;
    margin-top: 0;
  }
  .mod .panel-vertical .txt .year {
    font-size: var(--f12px);
  }
  .mod .panel-vertical .txt .position {
    gap: 4px 9px;
    font-size: var(--f13px);
    line-height: 1.2;
  }
  .mod .panel-vertical .txt .position .separator {
    font-size: 1em;
  }
  .mod .panel-vertical .txt .position {
  }
  .mod .panel-vertical .txt .position span:not(:last-child) {
    padding-right: 9px;
  }
  .mod .panel-vertical .txt .position span:not(:last-child):after {
    height: 14px;
    margin-top: calc((1.2em - 14px) / 2);
    transform: translateX(9px);
  }
}

/* ----- [PL4] パネル > 背景画像 ----- */
.mod .panel-covered > a {
  background: none;
}
.mod .panel-covered .txt {
  padding: 16px 24px;
}
.mod .panel-covered .txt > *:last-child {
  margin-bottom: 0;
}
.mod .panel-covered .txt:not(.bottom):before {
  background-color: color-mix(in srgb, var(--color-main-dark) 50%, transparent);
}
html:not(.sp) .panel-covered a:hover .txt:not(.bottom):before {
  background: color-mix(in srgb, var(--color-main-dark) 60%, transparent) linear-gradient(180deg, color-mix(in srgb, var(--color-main-dark) 0%, transparent) 0%, color-mix(in srgb, var(--color-main-dark) 40%, transparent) 100%);
}
.mod .panel-covered.filter-gray .txt:not(.bottom):before {
  background-color: color-mix(in srgb, #2D3A42 50%, transparent);
}
html:not(.sp) .panel-covered.filter-gray a:hover .txt:not(.bottom):before {
  background: color-mix(in srgb, #2D3A42 60%, transparent) linear-gradient(180deg, color-mix(in srgb, #2D3A42 0%, transparent) 0%, color-mix(in srgb, #2D3A42 40%, transparent) 100%);
}
.mod .panel-covered a .link-icon {
  padding-right: 48px;
}
.mod .panel-covered a .link-icon:after,
.mod .panel-covered a .link-icon:before,
.mod .panel-covered a span:after {
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  margin: 0;
}
.mod .panel-covered .link-icon a:after,
.mod .panel-covered a .link-icon:after {
  -webkit-mask-size: 28px;
          mask-size: 28px;
  background-color: var(--color-main) !important;
}
html:not(.sp) .mod .panel-covered .link-icon a:hover:after,
html:not(.sp) .mod .panel-covered a:hover .link-icon:after {
  background-color: var(--color-white) !important;
}

.mod .row.wide-l .panel-covered:before,
.mod .row.wide-l .panel-covered > a:before {
  height: 300px;
}

.mod .panel-covered .link-icon.bottom {
  position: absolute;
  right: 20px;
  bottom: 28px;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .mod .panel-covered .txt {
    padding: 32px 24px 24px;
  }
}

@media screen and (max-width: 767px) {
  .mod .panel-covered .link-icon.bottom {
    right: 12px;
    bottom: 16px;
  }
  .mod .panel-covered:before,
  .mod .panel-covered > a:before,
  .mod .row.wide-l .panel-covered:before,
  .mod .row.wide-l .panel-covered > a:before {
    height: 168px;
  }
}

.mod .slidein-bg span {
  background-color: var(--color-main);
}
.mod .txt-white .slidein-bg span {
  background-color: var(--color-white);
}


/* ----- FAQ ----- */
.mod dl.list-faq {
  flex-direction: column;
}
.mod dl.list-faq dt,
.mod dl.list-faq dd {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 16px 16px 16px 67px;
}
.mod dl.list-faq dt {
  margin: 16px 0 0;
  color: var(--color-main);
  font-size: var(--f18px);
  font-weight: 700;
  line-height: 1.6;
  border-radius: 8px;
  background-color: var(--color-light-gray);
}
.mod dl.list-faq dt:first-of-type {
  margin-top: 0;
}
.mod dl.list-faq dt:last-of-type {
  padding-bottom: 16px;
}
.mod dl.list-faq dd {
  line-height: 1.8;
}
.mod dl.list-faq dt:before,
.mod dl.list-faq dd:before {
  content: "";
  position: absolute;
  display: block;
  left: 16px;
  top: 16px;
  width: 35px;
  font-family: "Kanit", sans-serif;
  font-size: var(--f26px);
  font-weight: 600;
  line-height: 1.1;
}
.mod dl.list-faq dt:before {
  content: "Q";
  border-right: 1px solid var(--color-gray);
}
.mod dl.list-faq dd:before {
  content: "A";
  color: var(--color-dark-gray);
}
.mod dl.list-faq dd > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mod dl.list-faq dt {
    padding: 14px 14px 14px 49px !important;
    line-height: 1.4;
    border-radius: 4px;
  }
  .mod dl.list-faq dd {
    padding: 12px 14px 12px 49px;
  }
  .mod dl.list-faq dt:before,
  .mod dl.list-faq dd:before {
    left: 14px;
    top: 12px;
    width: auto;
  }
  .mod dl.list-faq dt:before {
    border-right: none;
  }
}

/* ----- Slick Slider ----- */
.slick-arrow {
  background-color: transparent;
}
.slick-arrow:before {
  content: none;
}
.slick-arrow:after {
  -webkit-mask-image: url(../images/icon_link_s.svg);
          mask-image: url(../images/icon_link_s.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 7px 12px;
          mask-size: 7px 12px;
  background-color: var(--color-main);
}
.mod .slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
}
.mod .slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 100%;
}
html:not(.sp) .slick-dots li:hover,
.slick-dots .slick-active {
  background-color: transparent;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--color-black) 10%, white);
  border-radius: 100%;
}
html:not(.sp) .slick-dots li:hover button {
  background-color: color-mix(in srgb, var(--color-main) 65%, white);
}
.slick-dots .slick-active button {
  background-color: var(--color-main);
}
.mod .slider-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  margin: 40px 0 0;
}
.mod .slider-control .slick-arrow {
  position: relative;
  top: 0;
  margin: 0;
  flex-shrink: 0;
}
.mod .slider-control .slick-next {
  order: 1;
}
.mod .slider-control .slick-dots {
  width: auto;
}

@media screen and (max-width: 767px) {
  .mod .slider-control {
    justify-content: center;
  }
  .mod .slider-control .slick-dots {
    max-width: 144px;
  }
  .mod .slider-wrap {
    position: relative;
    width: calc(100% + (100vw - 100%) / 2);
  }
  .mod .work-slider.col-set {
    margin-right: 0;
    width: auto;
  }
  .mod .work-slider.col-set > * {
    margin-right: 0;
  }
  .mod .work-slider .slick-list {
    padding: 0 20% 0 0!important;
  }
}


/* ----- [EB2] モーダル ----- */
/* Magnific Popup CSS */
.mfp-bg {
  background: #B9C3C4;
  opacity: 0.6;
}
@keyframes mfp-bg-fadein {
  0% {opacity: 0;}
  100% {opacity: 0.6;}
}
.mfp-wrap,
html:not(.sp) .mfp-wrap {
  overflow: hidden !important;
}
.mfp-content {
  margin: 0 auto;
}
.mfp-inline-holder .mfp-content > div {
  width: 760px;
  max-width: calc(100% - 40px);
  max-height: calc(100vh - 80px);
  padding: 80px 40px;
  background-color: var(--color-white);
  border-radius: 15px;
  box-sizing: border-box;
}
.mfp-inline-holder .mfp-content .modal-body {
  max-width: 540px;
  max-height: calc(100vh - 80px - 160px);
  margin-inline: auto;
  padding: 0 30px;
  overflow-y: auto;
  box-sizing: content-box;
}
.mfp-inline-holder .mfp-content .modal-body > *:first-child {
  margin-top: 0;
}
.mfp-inline-holder .mfp-content .modal-body > *:last-child {
  margin-bottom: 0;
}
.mfp-inline-holder .mfp-content .modal-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.mfp-inline-holder .mfp-content .modal-body::-webkit-scrollbar-track {
  background: var(--color-light-gray);
  border-radius: 100px;
}
.mfp-inline-holder .mfp-content .modal-body::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 100px;
}
.mfp-close {
  width: 40px;
  height: 40px;
  right: 16px;
  top: 16px;
  border: 1px solid var(--color-gray);
  border-radius: 100%;
  background-color: var(--color-white);
  opacity: 1;
}
.mfp-ready .mfp-close,
.mfp-ready.mfp-removing .mfp-close {
  top: 16px;
}
.mfp-ready .mfp-inline-holder .mfp-close,
.mfp-ready.mfp-removing .mfp-inline-holder .mfp-close {
  top: 16px;
}
.mfp-ready .mfp-iframe-holder .mfp-close,
.mfp-ready.mfp-removing .mfp-iframe-holder .mfp-close {
  top: 16px;
}

.mfp-close:before,
.mfp-close:after {
  width: 3px;
  height: 18px;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--color-main);
}
html:has(.mfp-ready) {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mfp-inline-holder .mfp-content {
    padding: 80px 0 40px;
  }
  .mfp-inline-holder .mfp-content > div {
    max-height: calc(100vh - 120px);
    padding: 24px 16px;
  }
  .mfp-inline-holder .mfp-content .modal-body {
    max-width: none;
    max-height: calc(100vh - 120px - 48px);
    padding: 0 16px;
  }
  .mfp-close {
    right: 0;
    top: -52px;
  }
  .mfp-ready .mfp-close,
  .mfp-ready.mfp-removing .mfp-close {
    top: -52px;
  }
  .mfp-ready .mfp-inline-holder .mfp-close,
  .mfp-ready.mfp-removing .mfp-inline-holder .mfp-close {
    top: -52px;
  }
  .mfp-ready .mfp-iframe-holder .mfp-close,
  .mfp-ready.mfp-removing .mfp-iframe-holder .mfp-close {
    top: -52px;
  }
}


/* ----- 余白 ----- */
.mod h2:not([class*=heading]) + p,
.mod .heading1 + p {
  margin-top: 32px;
}
.mod h2:not([class*=heading]) + *,
.mod .heading1 + * {
  margin-top: 40px;
}
.mod h2:not([class*=heading]) + div,
.mod .heading1 + div {
  margin-top: 64px;
}
.mod h3:not([class*=heading]) + p,
.mod .heading2 + p {
  margin-top: 24px;
}
.mod h4:not([class*=heading]) + p,
.mod .heading3 + p,
.mod h5:not([class*=heading]) + p,
.mod .heading4 + p {
  margin-top: 16px;
}
.mod h3:not([class*=heading]) + *,
.mod .heading2 + *,
.mod h4:not([class*=heading]) + *,
.mod .heading3 + *,
.mod h5:not([class*=heading]) + *,
.mod .heading4 + * {
  margin-top: 32px;
}
.mod p + * {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .mod h2:not([class*=heading]) + div,
  .mod .heading1 + div {
    margin-top: 40px;
  }
}

/* ----- 強制指定 ----- */
.mod .mt8 {margin-top: 8px !important;}
.mod .mt16 {margin-top: 16px !important;}
.mod .mt24 {margin-top: 24px !important;}
.mod .mt32 {margin-top: 32px !important;}
.mod .mt48 {margin-top: 48px !important;}
.mod .mt56 {margin-top: 56px !important;}
.mod .mt64 {margin-top: 64px !important;}

.mod .ml8 {margin-left: 8px !important;}
.mod .ml16 {margin-left: 16px !important;}
.mod .ml24 {margin-left: 24px !important;}
.mod .ml32 {margin-left: 32px !important;}

@media screen and (max-width: 767px) {
  .mod .sp-mt8 {margin-top: 8px !important;}
  .mod .sp-mt16 {margin-top: 16px !important;}
  .mod .sp-mt24 {margin-top: 24px !important;}
  .mod .sp-mt32 {margin-top: 32px !important;}
  .mod .sp-mt40 {margin-top: 40px !important;}
  .mod .sp-mt48 {margin-top: 48px !important;}
  .mod .sp-mt56 {margin-top: 56px !important;}
  .mod .sp-mt64 {margin-top: 64px !important;}

  .mod .sp-ml8 {margin-left: 8px !important;}
  .mod .sp-ml16 {margin-left: 16px !important;}
  .mod .sp-ml24 {margin-left: 24px !important;}
  .mod .sp-ml32 {margin-left: 32px !important;}
}

.mod .bg-sub5 {
  background-color: var(--color-sub5) !important;
}
.mod .bg-sub6 {
  background-color: var(--color-sub6) !important;
}
.mod .bg-sub7 {
  background-color: var(--color-sub7) !important;
}
.mod .bg-sub8 {
  background-color: var(--color-sub8) !important;
}

.mod .radius_m {
  border-radius: var(--radius-panel-pc) !important;
}
.mod .radius_0 {
  border-radius: 0 !important;
}

.mod .break-wbr {
  word-break: keep-all;
  overflow-wrap: break-word;
}


/*---------------------------------------------
	News detail
  ---------------------------------------------*/
/* ----- News detail setting ----- */
.mod main .news-head {
  display: flex;
  align-items: center;
  gap: 0 27px;
  margin: 0 0 16px;
  line-height: 1;
}
.mod main .news-head .name {
  font-size: clamp(1.125rem, 0.681rem + 0.93vw, 1.375rem);
  font-weight: 700;
}
.mod main .news-head .date {
  font-size: clamp(0.75rem, 0.306rem + 0.93vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.mod main .news-head .date + h1 {
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
}
.mod main .pagetitle:has(.news-head) {
  padding-bottom: 176px;
  margin-bottom: -176px;
}
.mod main .pagetitle-body:has(.news-head) {
  padding-bottom: 40px;
}
.mod main .pagetitle:has(.news-head) .breadcrumb {
  background: transparent;
  border: none;
}
.mod main:has(.news-content) {
  background-color: var(--color-light-gray);
  padding-bottom: 110px;
}
.mod main .news-content {
  max-width: var(--max-content-width-l);
  margin: 0 auto;
  padding: 80px 0;
  background-color: var(--color-white);
  border-radius: var(--radius-panel-pc) var(--radius-panel-pc) 0 0;
}
.mod main .news-content > *:first-child {
  margin-top: 0;
}
.mod main .news-content .row {
  max-width: 960px;
}
.mod main:has(.news-content) .btn.back {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .mod main .pagetitle-body:has(.news-head) {
    padding-bottom: 32px;
  }
  .mod main .pagetitle:has(.news-head) .breadcrumb {
    height: auto;
    padding-top: 0;
    padding-bottom: 24px;
  }
  .mod main:has(.news-content) {
    padding-bottom: 88px;
  }
  .mod main .news-content {
    border-radius: var(--radius-panel-sp) var(--radius-panel-sp) 0 0;
    padding: 64px 0 84px;
  }
  .mod main:has(.news-content) .btn.back {
    margin-top: 64px;
  }
}

/* ----- News detail module ----- */
.mod .news-content h2:not([class*=heading]),
.mod .news-content .heading1 {
  padding: 12px 24px;
  font-size: clamp(1.375rem, 0.708rem + 1.39vw, 1.75rem);
  line-height: 1.6;
  text-align: left;
  background-color: var(--color-light-gray2);
}
.mod .news-content h2:not([class*=heading]):after,
.mod .news-content .heading1:after {
  content: none;
}
.mod .news-content h3:not([class*=heading]),
.mod .news-content .heading2 {
  font-size: clamp(1.313rem, 0.757rem + 1.16vw, 1.625rem);
  font-weight: 800;
}
.mod .news-content h4:not([class*=heading]),
.mod .news-content .heading3 {
  position: relative;
  padding: 0 0 0 20px;
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
}
.mod .news-content h4:not([class*=heading]):before,
.mod .news-content .heading3:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-main);
  border-radius: 9999px;
}
.mod .news-content h5:not([class*=heading]),
.mod .news-content .heading4 {
  font-size: var(--f18px);
}
.mod .box-contact {
  margin-top: 64px;
}
.mod .box-contact dl.unit > dt {
  width: 150px;
  color: var(--color-main);
  align-self: center;
}
.mod .box-contact dl.unit > dd {
  width: calc(100% - 150px);
  padding: 0 0 0 40px;
  border-left: 1px solid #D8E1E8;
}

@media screen and (min-width: 768px) {
  .mod .news-content > figure.img:not(.full) img {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .mod .box-contact {
    margin-top: 40px;
  }
  .mod .box-contact dl.unit > dt {
    padding-bottom: 16px !important;
  }
  .mod .box-contact dl.unit > dd {
    padding: 16px 0 0;
    border-left: none;
    border-top: 1px solid #D8E1E8;
  }
}


/*---------------------------------------------
  TOP page
  ---------------------------------------------*/
.mod .heading-top {
  display: flex;
  flex-direction: column;
  gap: 0.75em 0;
  margin-bottom: 40px;
  color: var(--color-main);
  font-size: clamp(1.375rem, 1.154rem + 0.46vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.mod .heading-top.center {
  align-items: center;
}
.mod .heading-top > * {
  width: fit-content;
}
.mod .heading-top > .txt-en {
  font-size: clamp(3rem, -0.543rem + 7.39vw, 5rem);
  line-height: 0.9;
}
.mod .heading-top-m {
  font-size: var(--f30px);
  font-weight: 700;
  line-height: 1.6;
}
.mod .description {
  margin-top: 24px;
  line-height: 2;
}
.mod [id^="top-"] .content {
  padding: 120px 0 150px;
}

@media screen and (max-width: 767px) {
  .mod .heading-top-m {
    font-size: var(--f26px);
  }
  .mod [id^="top-"] .content {
    padding: 80px 0 100px;
  }
}

.mod .top-unit {
  position: relative;
  display: flex;
}
.mod .top-unit .unit-title {
  flex: 1;
}
.mod .top-unit .unit-body > *:first-child {
  margin-top: 0;
}
.mod .top-unit .unit-body > *:last-child {
  margin-bottom: 0;
}
.mod .top-unit .unit-body .btn {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mod .top-unit {
    flex-direction: column;
  }
  .mod .top-unit .unit-body .btn {
    margin-top: 56px;
  }
}

.mod .link-list {
  border-top: 1px solid color-mix(in srgb, var(--color-black) 10%, transparent);
}
.mod .link-list li {
  margin: 0;
  padding: 0;
}
.mod .link-list li:before {
  content: none;
}
.mod .link-list a {
  position: relative;
  display: block;
  padding: 22px 56px 22px 0;
  color: var(--color-txt);
  background: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-black) 10%, transparent);
  transition: color 0.3s;
}
html:not(.sp) .mod .link-list a:hover {
  color: var(--color-main);
}
.mod .link-list a:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in;
}
html:not(.sp) .mod .link-list a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  transition-timing-function: ease-out;
}
.mod .link-list a:after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  right: 0;
  top: calc(50% - 16px);
  background-color: var(--color-main);
  border-radius: 0;
  -webkit-mask-image: url(../images/icon_link.svg);
          mask-image: url(../images/icon_link.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.mod .link-list a[target="_blank"]:after {
  -webkit-mask-image: url(../images/icon_window.svg);
          mask-image: url(../images/icon_window.svg);
}
.mod .link-list a[href$=".pdf"]:after {
  -webkit-mask-image: url(../images/icon_pdf.svg);
          mask-image: url(../images/icon_pdf.svg);
}
.mod .link-list dl,
.mod .link-list dl dt,
.mod .link-list dl dd {
  margin: 0 !important;
  padding: 0 !important;
}
.mod .link-list dt {
  color: var(--color-main);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mod .link-list dl {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .mod .link-list dt,
  .mod .link-list dd {
    width: 100% !important;
  }
}


/* ----- TOP MV ----- */
.mod #mainvisual {
  position: relative;
  margin-top: calc(var(--fixed-header-height-pc) * -1);
  height: calc(100svh + 30px);
}
.mod #mainvisual .mv-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mod #mainvisual .mv-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mod #mainvisual .mv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-property: opacity, transform;
  transition-duration: 0s;
  transition-delay: 4.5s;
  will-change: transform;
}
.mod #mainvisual .mv-img.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  transition-duration: 2s, 5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.65,0,0.35,1),cubic-bezier(0.33,1,0.68,1);
}
.mod #mainvisual .row {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  z-index: 2;
}
.mod #mainvisual .mv-catch {
  position: relative;
  margin-bottom: 92px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mod #mainvisual {
    margin-top: calc(var(--fixed-header-height-sp) * -1);
  }
  .mod #mainvisual .mv-catch {
    margin-bottom: 76px;
  }
}

@media screen and (max-width: 479px) {
  .mod #mainvisual {
    max-height: 680px;
  }
}

body.opening:not(.done) {
  position: fixed;
  width: 100%;
  height: 100%;
}
.opening .mod #mainvisual .mv-canvas {
  filter: blur(18px);
  transition: filter 3s;
}
.opening.start .mod #mainvisual .mv-canvas {
  filter: blur(0px);
}
.opening .mod:has(#mainvisual) header {
  opacity: 0;
  pointer-events: none;
}
.opening.start .mod:has(#mainvisual) header {
  pointer-events: auto;
  /*transition-property: opacity;
  transition-duration: 1.5s;
  transition-delay: 2s;*/
  animation: mv-header 1.5s 2s forwards;
}

.opening .mod #mainvisual .mv-catch img {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: linear, ease-out;
  transition-delay: 3s;
}
.opening.start .mod #mainvisual .mv-catch img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@keyframes mv-header {
  0%{opacity: 0;}
  100%{opacity: 1;}
}

/* ----- TOP News ----- */
.mod #top-news .content {
  padding: 64px 0 122px;
}
.mod #top-news .top-unit {
  gap: 16px clamp(2.5rem, -6.833rem + 19.44vw, 7.75rem);
}
.mod #top-news .heading-top {
  margin: 0;
}
.mod #top-news .top-unit .unit-body {
  width: 73.387%;
}
.mod .link-list.news dl {
  gap: 8px clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  line-height: 1.8;
}
.mod .link-list.news dt {
  width: 132px;
  letter-spacing: 0.06em;
}
.mod .link-list.news dd {
  width: calc(100% - 132px - clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem));
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .mod #top-news .content {
    padding: 48px 0 72px;
  }
  .mod #top-news .heading-top {
    flex-direction: row;
    align-items: baseline;
    gap: 0 12px;
    font-size: var(--f18px);
  }
  .mod #top-news .heading-top > .txt-en {
    font-size: var(--f32px);
  }
  .mod #top-news .top-unit .unit-body {
    width: 100%;
  }
  .mod .link-list.news a {
    padding: 16px 56px 16px 0;
  }
  .mod .link-list.news dl {
    flex-direction: column;
  }
  .mod .link-list.news dt {
    font-size: var(--f13px);
  }
  .mod .link-list.news dd {
    font-size: var(--f14px);
  }
}

/* ----- TOP Strengths ----- */
.mod #top-strengths .content {
  padding: 135px 0 124px;
}
.mod #top-strengths .content .row {
  position: relative;
  z-index: 1;
}
.mod #top-strengths .unit-body {
  position: relative;
  width: 42.9%;
}
.mod #top-strengths .bg-video {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

@media screen and (max-width: 767px) {
  .mod #top-strengths .content {
    padding: 80px 0 100px;
  }
  .mod #top-strengths .unit-body {
    width: 100%;
  }
  .mod #top-strengths .bg-video {
    width: 767px;
    min-height: 0;
  }
  .mod #top-strengths:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 478px;
    background-image: linear-gradient(to bottom, transparent calc(100% - 40px), var(--color-main) calc(100% - 5px));
  }
  .mod #top-strengths .heading-top {
    margin-bottom: 144px;
  }
}


/* ----- TOP Familiar ----- */
#top-familiar .top-unit {
  justify-content: space-between;
  gap: 9px clamp(2.5rem, 0.786rem + 3.57vw, 4rem);
}
#top-familiar .top-unit .unit-img {
  flex: 1;
}
#top-familiar .top-unit .unit-img {
  width: 100%;
  margin-left: calc(clamp(0rem, -4rem + 8.33vw, 3.5rem) * -1);
}
#top-familiar .top-unit .unit-body {
  width: 42.3387%;
}

@media screen and (max-width: 767px) {
  #top-familiar .top-unit {
    flex-direction: column-reverse;
  }
  #top-familiar .top-unit .unit-img,
  #top-familiar .top-unit .unit-body {
    width: 100%;
  }
  #top-familiar .top-unit .unit-img img {
    position: relative;
    left: 50%;
    min-width: 416px;
    transform: translateX(-50%);
  }
}


/* ----- TOP Business ----- */
.mod #top-business .content {
  padding: 0;
}
.mod #top-business .business-title {
  position: relative;
  padding: 120px 0 244px;
}
.mod #top-business .business-title .title-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mod #top-business .business-title .title-img .bg-img {
  width: 100%;
  height: 100%;
}
.mod #top-business .business-title .title-body {
  position: relative;
}
.mod #top-business .business-title .heading-top {
  margin-bottom: 24px;
}
.mod #top-business .business-title .title-body > *:last-child {
  margin-bottom: 0;
}
.mod .business-index {
  position: relative;
  display: flex;
  gap: 24px 40px;
  margin-top: -152px !important;
}
.mod .business-index .item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 40px * 2 / 3);
  padding: 40px 40px 64px;
  background-color: color-mix(in srgb, var(--color-white) 90%, transparent) !important;
  border-radius: var(--radius-panel-pc);
  box-shadow: 0px 0px 40px color-mix(in srgb, var(--color-black) 8%, transparent);
  backdrop-filter: blur(10px);
}
.mod .business-index .item > *:last-child {
  margin-bottom: 0;
}
.mod .business-index .heading {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin: 0 0 20px;
  color: var(--color-main);
  line-height: 1.4;
  font-size: var(--f26px);
  font-weight: 700;
}
.mod .business-index .heading[data-mh] {
  justify-content: flex-end;
}
.mod .business-index .heading .heading-sub {
  font-size: var(--f18px);
  letter-spacing: 0.02em;
}
.mod .business-index .heading .heading-main .txt-en {
  font-size: 1.15em;
}
.mod .business-index .description {
  margin-top: 0;
  margin-bottom: auto;
}
.mod .business-index .btn {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .mod #top-business .business-title .description {
    font-size: var(--f20px);
  }
}

@media screen and (max-width: 767px) {
  .mod #top-business .business-title {
    padding: 80px 0 156px;
  }
  .mod #top-business .business-title .heading-top {
    margin-bottom: 40px;
  }
  .mod .business-index {
    flex-direction: column;
    margin-top: -104px !important;
  }
  .mod .business-index .item {
    width: 100%;
    padding: 32px;
    background-color: var(--color-white);
    border-radius: var(--radius-panel-sp);
    box-shadow: 0px 0px 24px color-mix(in srgb, var(--color-black) 16%, transparent);
  }
  .mod .business-index .heading {
    margin-bottom: 16px;
    gap: 0;
    font-size: var(--f22px);
  }
}


/* ----- TOP Work ----- */
.mod #top-work .work-title {
  position: relative;
  padding-bottom: clamp(5rem, 3.222rem + 3.7vw, 6rem);
}
.mod #top-work .work-title .heading-top {
  margin-bottom: 0;
}
.mod #top-work .work-title .txt-marquee {
  position: absolute;
  display: flex;
  left: 0;
  bottom: calc(clamp(0.938rem, -5.174rem + 12.73vw, 4.375rem) * -1);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: transparent;
  font-family: "Kanit", sans-serif !important;
  font-size: clamp(6.72rem, -6.889rem + 28.35vw, 14.375rem);
  font-weight: 700;
  line-height: 0.7;
  white-space: nowrap;
  -webkit-text-stroke: 2px var(--color-blue-gray-light);
          text-stroke: 2px var(--color-blue-gray-light);
  opacity: 0.2;
  pointer-events: none;
}
.mod #top-work .work-title .txt-marquee .col-marquee {
  animation: loop_txt 20s linear infinite;
}

@keyframes  loop_txt {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}

.mod #top-work .slider-wrap {
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
}
.mod .work-slider.top {
  margin: 0;
}
.mod .work-slider.top .slick-list {
  padding: 0 20% 0 0!important;
}
.mod #top-work .top-unit {
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
}
.mod #top-work .top-unit .btn {
  margin: 0;
}
.mod #top-work .slider-control {
  margin: 0;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .mod #top-work .top-unit .btn {
    align-self: flex-end;
  }
}

/* ----- TOP Environment ----- */
.mod #top-environment .heading-top + * {
  margin-top: 72px;
}
.mod #top-environment .btn {
  margin-top: 40px;
}
.mod .panel-environment .panel-covered > a:before {
  height: auto;
  min-height: var(--min-panel-height);
}
.mod .panel-environment .panel-covered .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 30px;
  height: 220px;
  font-size: var(--f26px);
  font-weight: 900;
  line-height: 1.2;
}
.mod .panel-environment .panel-covered .heading .icon {
  flex-shrink: 0;
}
.mod .panel-environment .panel-covered .heading-txt > * {
  display: block;
}
.mod .panel-environment .panel-covered .heading .txt-en {
  font-size: 1.538em;
  font-weight: 700;
  line-height: 0.9;
}
.mod .panel-environment .panel-covered .link-icon {
  font-size: var(--f15px);
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .mod .panel-environment .panel-covered .heading .icon {
    width: clamp(5rem, 0.018rem + 10.39vw, 7.813rem);
  }
  .mod .panel-environment .panel-covered a .txt.horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px clamp(2.5rem, -2.814rem + 11.09vw, 5.5rem);
  }
  .mod .panel-environment .panel-covered a .txt.horizontal .link-icon {
    position: static;
  }
  .mod .panel-environment .panel-covered a .txt.horizontal .link-icon > span {
    margin-left: 12px;
  }
  .mod .panel-environment .panel-covered a .txt.horizontal .link-icon:after,
  .mod .panel-environment .panel-covered a .txt.horizontal .link-icon:before,
  .mod .panel-environment .panel-covered a .txt.horizontal .link-icon span:after {
    right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .mod .panel-environment .panel-covered .heading {
    margin-bottom: 32px;
    font-size: var(--f22px);
    text-align: center;
  }
  .mod #top-environment .heading-top + * {
    margin-top: 64px;
  }
  .mod #top-environment .btn {
    margin-top: 56px;
  }
  .mod .panel-environment .panel-covered .heading {
    flex-direction: column;
  }
}

/* ----- TOP Information ----- */
.mod #top-information .top-unit {
  gap: 40px 0;
  justify-content: space-between;
}
.mod #top-information .top-unit .unit-body {
  width: 48.7%;
}
.mod .link-list.information dl {
  align-items: center;
  gap: 14px 23px;
  letter-spacing: 0.02em;
}
.mod .link-list.information dt {
  width: 123px;
  font-size: var(--f20px);
  font-weight: 700;
}
.mod .link-list.information dd {
  width: calc(100% - 123px - 24px);
}
.mod .link-list.information dl.is-vertical dt,
.mod .link-list.information dl.is-vertical dd {
  width: 100%;
}

.mod .link-list.information + .btn {
  margin-top: 32px;
}
.mod #top-information .heading-top + .btn {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .mod #top-information .content {
    padding: 80px 0 100px;
  }
  .mod #top-information .top-unit {
    padding-bottom: 114px;
  }
  .mod #top-information .top-unit .unit-body {
    width: 100%;
  }
  .mod .link-list.information a {
    padding: 24px 32px 24px 0;
  }
  .mod #top-information .heading-top {
    margin-bottom: 0;
  }
  .mod #top-information .heading-top + .btn {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}


/*---------------------------------------------
  WORK
  ---------------------------------------------*/
/* ----- WORK index ----- */
@media screen and (min-width: 768px) {
  .mod .col-set.work-index {
    width: calc(100% + 80px);
    gap: 80px 0;
  }
  .mod .col-set.work-index .col1-2 {
    width: calc(50% - 80px);
    margin-right: 80px;
  }
}

@media screen and (max-width: 767px) {
  .mod .col-set.work-index {
    gap: 56px 0;
  }
}

/* ----- WORK detail ----- */
.mod .work-interview {
  counter-reset: heading;
}
.mod .interview-col {
  display: flex;
  margin: 104px 0 0;
}
.mod .work-interview .interview-body {
  padding: 0 0 0 32px;
  border-color: transparent transparent transparent var(--color-gray);
  border-style: solid;
  border-width: 1px;
  flex: 1;
}
.mod .interview-body > *:last-child {
  margin-bottom: 0;
}
.mod .work-interview h2.heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  width: calc(clamp(3rem, 0.333rem + 5.56vw, 4.5rem) + 32px);
  color: var(--color-white);
  font-family: "Kanit", sans-serif;
  font-size: clamp(3rem, 0.333rem + 5.56vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  -webkit-text-stroke: 1px var(--color-gray);
}
.mod .work-interview h3.heading {
  display: flex;
  gap: 16px;
  margin: 64px 0 0;
  color: var(--color-main);
  font-size: clamp(1.25rem, 1.028rem + 0.46vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  counter-increment: heading;
}
.mod .work-interview h3.heading:before {
  content: "Q"counter(heading);
  color: var(--color-blue-gray-light);
  font-family: "Kanit", sans-serif;
  font-size: clamp(1.875rem, 1.542rem + 0.69vw, 2.063rem);
  font-weight: 600;
  line-height: 0.9;
}
.mod .work-interview h3.heading + * {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .mod .work-interview h2.heading span {
    writing-mode: vertical-rl;
    transform: scale(-1);
  }
}

@media screen and (max-width: 767px) {
  .mod .interview-col {
    display: block;
  }
  .mod .work-interview .interview-body {
    padding: 40px 0 0;
    border-color: var(--color-gray) transparent transparent transparent;
  }
  .mod .work-interview h2.heading {
    width: 100%;
    padding: 0 0 18px;
    justify-content: center;
  }
  .mod .work-interview h3.heading {
    flex-direction: column;
    margin: 56px 0 0;
  }
  .mod .work-interview h3.heading + * {
    margin-top: 16px;
  }
}

.mod .work-question .box {
  padding: 48px 16px;
  border-radius: 30px;
}
.mod .work-question .question-col {
  display: flex;
  align-items: center;
  gap: 42px calc(clamp(1rem, -1.667rem + 5.56vw, 2.5rem) + 34px);
  max-width: 870px;
  margin-inline: auto;
  margin-top: clamp(2rem, 0.222rem + 3.7vw, 3rem);
}
.mod .work-question .question-img {
  width: 29.885%;
  max-width: 260px;
  border-radius: 100%;
  overflow: hidden;
}
.mod .work-question .question-body {
  position: relative;
  padding: clamp(2rem, -0.667rem + 5.56vw, 3.5rem) clamp(1rem, -0.778rem + 3.7vw, 2rem);
  line-height: 1.9;
  background-color: var(--color-light-gray);
  border-radius: var(--radius-panel-pc);
  flex: 1;
}
.mod .work-question .question-body:before {
  content: "";
  position: absolute;
  display: block;
  width: 34px;
  height: 42px;
  left: -34px;
  top: calc(50% - 21px);
  background-color: var(--color-light-gray);
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.mod .work-question .question-body > *:last-child {
  margin-bottom: 0;
}
.mod .work-question .box .title-question {
  margin: 0 !important;
  padding: 0;
  color: var(--color-blue-gray-light);
  font-family: "Kanit", sans-serif;
  font-size: clamp(1.5rem, 0.5rem + 2.08vw, 2.063rem);
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
  background: transparent;
}
.mod .work-question .box h2 {
  max-width: 870px;
  margin-inline: auto;
  margin-top: 32px !important;
  font-size: clamp(1.563rem, 0.785rem + 1.62vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
}
.mod .work-question .box h2:after {
  margin-top: 18px;
}
.mod .work-question .box h3.heading {
  margin: 0 0 16px !important;
  padding: 0;
  font-size: var(--f20px);
  font-weight: 900;
  line-height: 1.6;
  background: transparent;
}

@media screen and (max-width: 767px) {
  .mod .work-question .box {
    padding-bottom: 32px;
    border-radius: 10px;
  }
  .mod .work-question .question-col {
    flex-direction: column-reverse;
  }
  .mod .work-question .question-img {
    width: 256px;
  }
  .mod .work-question .question-body:before {
    width: 32px;
    height: 26px;
    left: calc(50% - 16px);
    top: unset;
    bottom: -26px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

.mod .work-flow .box {
  padding: 80px 16px 68px;
  border-radius: var(--radius-panel-pc);
}
.mod .work-flow .box h3.heading {
  margin: 0 !important;
  padding: 0;
  color: var(--color-main);
  font-size: var(--f32px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: transparent;
}
.mod .work-flow .flow-col {
  position: relative;
  max-width: 715px;
  margin-inline: auto;
  margin-top: 28px;
}
.mod .work-flow .flow-elem {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 114px;
}
.mod .work-flow .flow-elem:before {
  content: "";
  position: absolute;
  display: block;
  left: 34px;
  top: calc(50% - 6px);
  width: 12px;
  aspect-ratio: 1;
  background-color: var(--color-accent);
  border-radius: 100%;
}
.mod .work-flow .flow-elem:after {
  content: "";
  position: absolute;
  display: block;
  left: 39px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-accent);
}
.mod .work-flow .flow-elem:first-child:after {
  top: 50%;
  height: 50%;
}
.mod .work-flow .flow-elem:last-child:after {
  top: 0;
  height: 50%;
}
.mod .work-flow .flow-body {
  position: relative;
  display: flex;
  min-height: 101px;
  margin: 0;
  padding: 24px;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--color-light-gray);
  border-radius: var(--radius-panel-pc);
}
.mod .work-flow .flow-body:before {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  left: -18px;
  top: calc(50% - 9px);
  background-color: var(--color-light-gray);
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.mod .work-flow .title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: calc(50% - 40px);
  width: 80px;
  aspect-ratio: 1;
  padding: 0 1em;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  background-color: var(--color-accent);
  border-radius: 100%;
  z-index: 3;
}
.mod .work-flow .time {
  display: flex;
  align-items: center;
  width: 96px;
  padding: 0 0 0 16px;
  color: var(--color-main);
  font-family: "Kanit", sans-serif;
  font-size: var(--f16px);
  font-weight: 500;
  border-color: transparent var(--color-gray) transparent transparent;
  border-style: solid;
  border-width: 1px;
  flex-shrink: 0;
}
.mod .work-flow .todo {
  padding: 0 0 0 24px;
  flex: 1;
  align-self: center;
}
.mod .work-flow .img {
  width: 33.278%;
  height: inherit;
  margin: -24px -24px -24px 24px;
  border-radius: 0 var(--radius-panel-pc) var(--radius-panel-pc) 0;
}

@media screen and (max-width: 767px) {
  .mod .work-flow .box {
    padding: 32px 16px 20px;
    border-radius: var(--radius-panel-sp);
  }
  .mod .work-flow .box h3.heading {
    font-size: var(--f20px);
    font-weight: 900;
    line-height: 1.4;
  }
  .mod .work-flow .flow-col {
    margin-top: 24px;
  }
  .mod .work-flow .flow-elem {
    padding-left: clamp(3.563rem, 0.154rem + 14.54vw, 7.125rem); /*57px*/
  }
  .mod .work-flow .flow-elem:before {
    left: calc(clamp(2.5rem, 0.108rem + 10.2vw, 5rem) / 2 - 6px); /*14px*/
    top: 36px;
  }
  .mod .work-flow .flow-elem:after {
    left: calc(clamp(2.5rem, 0.108rem + 10.2vw, 5rem) / 2 - 1px); /*19px*/
  }
  .mod .work-flow .flow-elem:first-child:after {
    top: 42px;
    height: calc(100% - 42px);
  }
  .mod .work-flow .flow-elem:last-child:after {
    top: 0;
    height: 42px;
  }
  .mod .work-flow .flow-body {
    display: block;
    min-height: 0;
    padding: 16px;
    font-size: var(--f14px);
    border-radius: var(--radius-panel-sp);
  }
  .mod .work-flow .flow-body:before {
    width: 15px;
    height: 15px;
    left: -15px;
    top: 22px;
  }
  .mod .work-flow .title {
    top: 20px;
    width: clamp(2.5rem, 0.108rem + 10.2vw, 5rem); /*40px*/
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem); /*var(--f12px)*/
  }
  .mod .work-flow .time {
    width: auto;
    padding: 0 0 6px;
    border-color: transparent transparent var(--color-gray) transparent;
  }
  .mod .work-flow .todo {
    margin: 12px 0 0;
    padding: 0;
  }
  .mod .work-flow .img {
    width: auto;
    height: auto;
    margin: 18px -16px -16px -16px;
    border-radius: 0 0 var(--radius-panel-sp) var(--radius-panel-sp);
  }
}


/*---------------------------------------------
  BUSINESS
  ---------------------------------------------*/
.mod .content.page-lead {
  padding: clamp(3rem, 0.333rem + 5.56vw, 4.5rem) 0 clamp(4.5rem, 1.167rem + 6.94vw, 6.375rem);
  font-weight: 500;
}
.mod .col-set.panel-product .box {
  padding: 40px;
  border-radius: var(--radius-panel-pc);
}
.mod .col-set.panel-product .col-set {
  gap: 24px 0;
}

@media screen and (min-width: 768px) {
  .mod .col-set.panel-product .col-set {
    width: calc(100% + 16px);
    margin-right: 16px;
  }
  .mod .col-set.panel-product .col-set .col1-2 {
    width: calc(50% - 16px);
    margin-right: 16px;
  }
  .mod .slider-wrap:has(.work-slider.business) + .slider-control {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mod .col-set.panel-product .box {
    padding: 40px 24px;
    border-radius: var(--radius-panel-sp);
  }
}


/* ----- business - flow ----- */
.mod .scroll.scroll-flow {
  margin: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .mod .scroll.scroll-flow {
    overflow: visible !important;
  }
}
@media screen and (max-width: 767px) {
  .mod .scroll.scroll-flow > *:not(.scroll-hint-icon-wrap) {
    min-width: 1080px;
    margin: 0;
  }
}

.mod .business-flow {
  position: relative;
  z-index: 2;
}
.mod .business-flow .flow-row {
  position: relative;
}
.mod .business-flow .flow-row.row2 {
  display: grid;
  grid-template-columns: 53.5% auto;
  align-items: center;
  gap: 64px clamp(4rem, -1.846rem + 12.18vw, 6.375rem);
  margin: 112px 0 0;
}
.mod .business-flow .flow-row.row2 .row2-1 {grid-area: 1 / 1 / 2 / 2;}
.mod .business-flow .flow-row.row2 .row2-2 {grid-area: 1 / 2 / 3 / 3; z-index: 3;}
.mod .business-flow .flow-row.row2 .row2-3 {grid-area: 2 / 1 / 3 / 2;}
.mod .business-flow .flow-row.row3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 112px 20px 0;
  margin-inline: auto;
  padding: 40px;
  background-color: #CDE3F8;
  border-radius: 24px;
}
.mod .business-flow .flow-row.row3 .flow-col {
  padding-bottom: 48px;
}
.mod .business-flow .flow-row.row4 {
  max-width: 880px;
  margin: 64px 20px 0;
  margin-inline: auto;
}
.mod .business-flow .flow-row.row5 {
  margin: 112px 0 0;
}
.mod .business-flow .flow-row.row5:before {
  height: 112px;
  top: -112px;
}
.mod .business-flow .flow-col {
  position: relative;
  padding: 40px 40px 56px;
  background-color: var(--color-white);
  box-shadow: 0px 16px 32px rgba(73, 109, 134, 0.1);
  border-radius: var(--radius-panel-pc);
}
.mod .business-flow .flow-col:not(:has(.flow-elem)) {
  padding-top: 32px;
  padding-bottom: 32px;
}
.mod .business-flow .flow-col:has(.hd-icon.color-1) {
  box-shadow:0px 0px 0px 5px #F2BDCA inset;
}
.mod .business-flow .flow-col.panel-kanri {
  max-width: 792px;
  margin-inline: auto;
}
.mod .business-flow .flow-row:after,
.mod .business-flow .flow-col.row2-1:after,
.mod .business-flow .flow-col.row2-3:after {
  content: "";
  position: absolute;
  display: block;
  left: calc(50% - 11px);
  top: -11px;
  width: 22px;
  height: 22px;
  background-color: #F5F6F7;
  border: 4px solid var(--color-main);
  border-radius: 100%;
}
.mod .business-flow .flow-row:before,
.mod .business-flow .flow-col.row2-3:before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 64px;
  left: calc(50% - 2.5px);
  top: -64px;
  background-color: var(--color-main);
  z-index: -1;
}
.mod .business-flow .flow-col.row2-1:before {
  content: "";
  position: absolute;
  display: block;
  width: 257px;
  height: 120px;
  left: calc(50% - 2.5px);
  top: -120px;
  background: url("../../images/business/flow/line_row02_01.svg") no-repeat center;
  background-size: contain;
  z-index: -1;
}
.mod .business-flow .flow-row.row3:before {
  width: 257px;
  height: 120px;
  left: calc(50% - 254.5px);
  top: -120px;
  background: url("../../images/business/flow/line_row03.svg") no-repeat center;
  background-size: contain;
}
.mod .business-flow .flow-row.row1:before,
.mod .business-flow .flow-row.row1:after,
.mod .business-flow .flow-row.row2:before,
.mod .business-flow .flow-row.row2:after {
  content: none;
}
.mod .business-flow .flow-col.row2-2 .connector {
  position: absolute;
  width: calc(clamp(4rem, -1.846rem + 12.18vw, 6.375rem) + 22px);
  left: calc((clamp(4rem, -1.846rem + 12.18vw, 6.375rem) + 11px) * -1);
  line-height: 0;
}
.mod .business-flow .flow-col.row2-2 .connector.connector01 {
  top: calc(50% - 200px);
}
.mod .business-flow .flow-col.row2-2 .connector.connector02 {
  top: calc(50% + 200px);
}
.mod .business-flow .flow-col.row2-2 .connector span {
  position: relative;
  display: block;
  height: 5px;
  background-color: #1FB9B4;
}
.mod .business-flow .flow-col.row2-2 .connector:before,
.mod .business-flow .flow-col.row2-2 .connector:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: calc(50% - 11px);
  width: 22px;
  height: 22px;
  background-color: #F5F6F7;
  border: 4px solid #1FB9B4;
  border-radius: 100%;
  z-index: 1;
}
.mod .business-flow .flow-col.row2-2 .connector:after {
  left: unset;
  right: 0;
}

.mod .business-flow-canvas .hd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  font-size: clamp(1.5rem, 0.885rem + 1.28vw, 1.75rem);
}
.mod .business-flow-canvas .hd-icon.color-1 {
  color: #E95175;
}
.mod .business-flow-canvas .hd-icon.color-2 {
  color: #20A7A2;
}
.mod .business-flow-canvas .hd-icon .icon {
  width: clamp(3rem, 0.538rem + 5.13vw, 4rem);
  flex-shrink: 0;
}
.mod .business-flow-canvas h4 {
  font-size: clamp(1.125rem, 0.817rem + 0.64vw, 1.25rem);
}
.mod .business-flow-canvas .flow-elem {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 16px 0 0;
  padding: 32px 0 0;
  background: linear-gradient(to right, var(--color-main) 4px, transparent 4px) repeat-x left top;
  background-size: 9px 2px;
}
.mod .business-flow-canvas .hd-icon.color-2 + .flow-elem {
  background-image: linear-gradient(to right, #1FB9B4 4px, transparent 4px);
}
.mod .business-flow-canvas .flow-body {
  flex: 1;
}
.mod .business-flow-canvas .flow-body > *:last-child {
  margin-bottom: 0;
}
.mod .business-flow-canvas .btn-modal {
  display: none;
}
.mod .business-flow-canvas .btn-modal a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px;
  color: var(--color-txt);
  font-size: var(--f13px);
  font-weight: 600;
  line-height: 1.8;
  background: var(--color-sub8);
  border-radius: 4px;
}
.mod .business-flow-canvas .btn-modal a span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  background-color: var(--color-main);
  border-radius: 100%;
  flex-shrink: 0;
}
.mod .business-flow-canvas .btn-modal a span:before,
.mod .business-flow-canvas .btn-modal a span:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 1px;
  margin: auto;
  background-color: var(--color-white);
}
.mod .business-flow-canvas .btn-modal a span:after {
  transform: rotate(90deg);
}

.mod .business-flow-canvas .flow-member {
  display: flex;
  gap: 8px;
}
.mod .business-flow-canvas .flow-member .item {
  display: flex;
  width: 117px;
}
.mod .business-flow-canvas .flow-member .item a {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 8px 16px;
  width: 100%;
  background: none;
  border: 1px solid var(--color-gray);
  border-radius: 8px;
}
html:not(.sp) .mod .business-flow-canvas .flow-member .item a:hover {
  border-color: var(--color-main);
}
.mod .business-flow-canvas .flow-member .img {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 8px;
}
.mod .business-flow-canvas .flow-member .img img {
  height: 150%;
  object-fit: cover;
  object-position: center top;
}
.mod .business-flow-canvas .flow-member .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.mod .business-flow-canvas .flow-member .txt > * {
  margin: 0;
}
.mod .business-flow-canvas .flow-member .position {
  margin-top: 3px;
  color: var(--color-dark-gray);
  font-size: var(--f12px);
  font-weight: 500;
  line-height: 1.3;
}
.mod .business-flow-canvas .flow-elem.vertical {
  flex-direction: column;
}

@media screen and (min-width: 1080px) {
  .mod .business-flow .flow-col.row2-2 {
    padding-bottom: 40px;
  }
  .mod .business-flow .flow-col.row2-2 .flow-elem.vertical .flow-member .item {
    width: 100%;
    max-width: 268px;
  }
  .mod .business-flow-canvas .flow-elem.vertical .flow-member .item {
    width: calc(50% - 4px);  
  }
  .mod .business-flow-canvas .flow-elem.vertical .flow-member .item a {
    flex-direction: row;
    align-items: flex-start;
  }
  .mod .business-flow-canvas .flow-elem.vertical .flow-member .img {
    width: calc(50% - 8px);
    max-width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .mod .business-flow .flow-row.row2 {
    grid-template-columns: 46.567% auto;
    gap: 6.4vw;
    margin: 10.667vw 0 0;
  }
  .mod .business-flow .flow-row.row3 {
    gap: 8px;
    margin: 10.667vw 0 0;
    padding: 24px;
    border-radius: 10px;
  }
  .mod .business-flow .flow-row.row3 .flow-col {
    padding-bottom: 20px;
  }
  .mod .business-flow .flow-row.row4 {
    margin: 6.4vw 0 0;
  }
  .mod .business-flow .flow-row.row5 {
    margin: 10.667vw 0 0;
  }
  .mod .business-flow .flow-row.row5:before {
    height: 10.667vw;
    top: -10.667vw;
  }
  .mod .business-flow .flow-col {
    padding: 20px 16px;
    box-shadow: 0px 4px 15px rgba(73, 109, 134, 0.2);
    border-radius: 5px;
  }
  .mod .business-flow .flow-row.row2 .flow-col {
    padding: 20px 16px;
  }
  .mod .business-flow .flow-col:not(:has(.flow-elem)) {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mod .business-flow .flow-col:has(.hd-icon.color-1) {
    box-shadow: 0px 0px 0px 2px #F2BDCA inset;
  }
  .mod .business-flow .flow-row:after,
  .mod .business-flow .flow-col.row2-1:after,
  .mod .business-flow .flow-col.row2-3:after {
    left: calc(50% - 8px);
    top: -8px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  .mod .business-flow .flow-row:before,
  .mod .business-flow .flow-col.row2-3:before {
    width: 3px;
    height: 6.4vw;
    left: calc(50% - 1.5px);
    top: -6.4vw;
  }
  .mod .business-flow .flow-col.row2-1:before {
    width: 25vw;
    height: 10.667vw;
    left: calc(50% - 0.6vw);
    top: -10.667vw;
    background-image: url("../../images/business/flow/line_row02_01_sp.svg");
  }
  .mod .business-flow .flow-row.row3:before {
    width: 25vw;
    height: 10.667vw;
    left: calc(50% - 24.4vw);
    top: -10.667vw;
    background-image: url("../../images/business/flow/line_row03_sp.svg");
  }
  .mod .business-flow .flow-col.row2-2 .connector {
    width: calc(6.4vw + 16px);
    left: calc((6.4vw + 8px) * -1);
  }
  .mod .business-flow .flow-col.row2-2 .connector.connector01 {
    top: calc(50% - 21.3vw);
  }
  .mod .business-flow .flow-col.row2-2 .connector.connector02 {
    top: calc(50% + 21.3vw);
  }
  .mod .business-flow .flow-col.row2-2 .connector span {
    height: 3px;
  }
  .mod .business-flow .flow-col.row2-2 .connector:before,
  .mod .business-flow .flow-col.row2-2 .connector:after {
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .mod .business-flow-canvas .hd-icon {
    gap: 8px;
    font-size: var(--f16px);
  }
  .mod .business-flow-canvas .hd-icon .icon {
    width: 40px;
  }
  .mod .business-flow-canvas h4 {
    margin: 0;
    font-size: var(--f13px);
  }
  .mod .business-flow-canvas .flow-elem {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 10px 0 0 !important;
    padding: 16px 0 0;
  }
  .mod .business-flow-canvas .flow-body h4 ~ p {
    display: none;
  }
  .mod .business-flow-canvas .btn-modal {
    display: block;
  }
  .mod .business-flow-canvas .flow-member {
    flex-wrap: wrap;
  }
  .mod .business-flow-canvas .flow-member .item {
    width: 256px;
  }
  .mod .business-flow-canvas .flow-member .item a {
    flex-direction: row;
    gap: 8px;
  }
  .mod .business-flow-canvas .flow-member .img {
    width: 100px;
    border-radius: 4px;
  }
  .mod .business-flow-canvas .flow-member .txt {
    flex: 1;
  }
  .mod .business-flow-canvas .flow-member .position {
    margin-top: 3px;
    color: var(--color-dark-gray);
    font-size: var(--f12px);
    font-weight: 500;
    line-height: 1.3;
  }
  .mod .business-flow-canvas .flow-member .item .link-icon {
    margin-left: auto;
  }
  .mod:not(.mfp-content) .business-flow-canvas .flow-elem.vertical .item {
    width: 124px;
  }
  .mod:not(.mfp-content) .business-flow-canvas .flow-elem.vertical .item a {
    flex-direction: column;
  }
  .mod:not(.mfp-content) .business-flow-canvas .flow-elem.vertical .flow-member {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .mod.mfp-content .business-flow-canvas .hd-icon {
    padding-top: 24px;
    font-size: var(--f26px);
  }
  .mod.mfp-content .business-flow-canvas h4 {
    font-size: var(--f18px);
  }
  .mod.mfp-content .flow-elem {
    gap: 24px;
    margin: 24px 0 0 !important;
    padding: 24px 0 0;
  }
  .mod.mfp-content .business-flow-canvas .flow-body h4 ~ p {
    display: block;
  }
  .mod.mfp-content .business-flow-canvas .btn-modal {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  .mod .business-flow .flow-row.row2 {
    grid-template-columns: 156px 156px;
    gap: 6.4vw 0;
    justify-content: space-between;
  }
  .mod .business-flow-canvas .flow-member .item {
    width: 100%;
  }
  .mod .business-flow .flow-col.row2-2 .connector {
    width: calc(100vw - var(--scrollbar_w) - 8vw - 156px * 2 + 16px);
    left: calc((100vw - var(--scrollbar_w) - 8vw - 156px * 2 + 8px) * -1);
  }
}


/*---------------------------------------------
  ENVIRONMENT
  ---------------------------------------------*/
/* ----- environment - discussion ----- */
.mod h2.discussion {
  font-size: var(--f36px);
}
.mod h2.discussion:after {
  margin-top: 18px;
}
.mod h3.discussion {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  font-size: var(--f28px);
  line-height: 1.4;
}
.mod h3.discussion:before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin-top: 0.7em;
  background-color: var(--color-main);
  flex-shrink: 0;
}
.mod h3.title-member {
  font-family: "Kanit", sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-align: center;
}
.mod .title-chapter {
  margin: 0;
  padding: 0;
  color: var(--color-blue-gray-light);
  font-family: "Kanit", sans-serif;
  font-size: var(--f26px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-align: center;
}
.mod .img + h2.discussion {
  margin-top: 48px;
}
.mod .title-chapter + h2.discussion {
  margin-top: 32px;
}
.mod .row:has(.title-chapter) {
  max-width: 960px;
}
.mod .content:has(.title-chapter):not([class*=bg-]) + .content:has(.title-chapter):not([class*=bg-]) {
  padding-top: 24px;
}
.mod .member-set {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.mod .member-set .item {
  width: calc(100% / 3 - 40px / 3 * 2);
  border-radius: var(--radius-panel-pc);
  background-color: var(--color-white);
  overflow: hidden;
}
.mod .member-set .item .profile {
  display: flex;
}
.mod .member-set .item .profile > * {
  width: 50%;
}
.mod .member-set .item .img {
  border-radius: 0;
  aspect-ratio: 333 / 562;
}
.mod .member-set .item .info {
  padding: 16px;
  align-self: center;
  font-size: var(--f13px);
  line-height: 1.6;
}
.mod .member-set .item .info > * {
  margin: 14px 0 0;
}
.mod .member-set .item .info > *:first-child {
  margin-top: 0;
}
.mod .member-set .item .info > *:last-child {
  margin-bottom: 0;
}
.mod .member-set .item .name {
  margin: 0;
  font-family: "Kanit", sans-serif;
  font-size: var(--f20px);
  font-weight: 700;
  line-height: 0.9;
}
.mod .member-set .item .birthplace {
  margin-top: 10px;
}
.mod .member-set .item .info hr {
  border-color: color-mix(in srgb, var(--color-white) 30%, transparent);;
}
.mod .member-set .item .txt {
  position: relative;
  margin-top: -1px;
  padding: 24px;
  font-size: var(--f14px);
  line-height: 1.8;
  border-top: 1px solid var(--color-white);
}
.mod .member-set .item .txt > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1079px) {
  .mod .member-set {
    gap: clamp(1.5rem, -0.962rem + 5.13vw, 2.5rem);
  }
  .mod .member-set .item {
    width: calc(50% - clamp(1.5rem, -0.962rem + 5.13vw, 2.5rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .mod h2.discussion {
    font-size: var(--f26px);
    line-height: 1.4;
  }
  .mod h3.discussion {
    gap: 0 14px;
    font-size: var(--f20px);
  }
  .mod h3.discussion:before {
    width: 22px;
  }
  .mod h3.title-member {
    font-size: var(--f32px);
  }
  .mod .title-chapter {
    margin: 0;
    padding: 0;
    color: var(--color-blue-gray-light);
    font-family: "Kanit", sans-serif;
    font-size: var(--f26px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.9;
    text-align: center;
  }
  .mod .img + h2.discussion {
    margin-top: 40px;
  }
  .mod .content:has(.title-chapter):not([class*=bg-]) + .content:has(.title-chapter):not([class*=bg-]) {
    padding-top: 56px;
  }
}

@media screen and (max-width: 620px) {
  .mod .member-set .item {
    width: 100%;
  }
  .mod .member-set .item .img {
    aspect-ratio: 333 / 472;
  }
  .mod .member-set .item .info {
    font-size: var(--f11px);
  }
  .mod .member-set .item .birthplace {
    font-size: var(--f12px);
  }
}


/* ----- environment - numbers ----- */
.mod .numbers-set {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 0;
}
.mod .numbers-set .item {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 32px clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  background-color: var(--color-light-gray);
  border-radius: var(--radius-panel-pc);
}
.mod .numbers-set.col1 .item {
  width: 100%;
}
.mod .numbers-set.col2 .item {
  width: calc(50% - 8px);
}
.mod .numbers-set.col3 .item {
  width: calc(100% / 3 - 16px * 2 / 3);
}
.mod *[class*=bg-] .numbers-set .item {
  background-color: var(--color-white);
}
.mod .numbers-set .item > *:last-child {
  margin-bottom: 0;
}

.mod .numbers-company {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.mod .numbers-company .item {
  align-items: center;
}
.mod .numbers-company .item:first-child {grid-area: 1 / 1 / 2 / 2;}
.mod .numbers-company .item:nth-child(2) {grid-area: 2 / 1 / 3 / 2;}
.mod .numbers-company .item:nth-child(3) {grid-area: 1 / 2 / 3 / 3;}
.mod .numbers-workstyle .numbers-body {
  justify-content: space-between;
}

.mod .numbers-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mod .numbers-body > * {
  margin: 0 !important;
}
.mod .numbers-body .txt > *:last-child {
  margin-bottom: 0;
}
.mod .numbers-body .img img {
  border-radius: 0;
}
.mod .numbers-body h3 {
  margin: 0;
  color: var(--color-black);
  font-size: var(--f24px);
  letter-spacing: normal;
  text-align: center;
}
.mod .numbers-body h3 .sub {
  display: inline-block;
  font-size: var(--f16px);
  vertical-align: baseline;
}
.mod .numbers-body .txt h3 + * {
  margin-top: 16px;
}
.mod .numbers-body .data {
  display: flex;
  gap: 0 24px;
  color: var(--color-main);
  font-size: clamp(1rem, 2.08vw, 1.563rem);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
}
.mod .numbers-body .data .num {
  margin: 0 clamp(0.188rem, -0.12rem + 0.64vw, 0.313rem) 0 0;
  font-family: "Kanit", sans-serif;
  font-size: clamp(2.625rem, 0.181rem + 5.09vw, 4rem);
  font-weight: 500;
}
.mod .numbers-body .data *:not(.txt-black) + .num {
  margin-left: 18px;
}

.mod .fadein02 {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}
.mod .fadein02.done {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: linear, ease-out;
  transition-delay: 0.1s;
}
.mod .fadein02 > * {
  opacity: 0;
}
.mod .fadein02.done > * {
  opacity: 1;
  transition: opacity 0.5s linear;
  transition-delay: 0.5s;
}

@media screen and (min-width: 768px) {
  .mod .numbers-company .item03.done,
  .mod .numbers-company .item05.done,
  .mod .numbers-set.col2 .item.done:nth-of-type(even),
  .mod .numbers-set.col3 .item.done:nth-of-type(3n+2) {
    transition-delay: 0.3s;
  }
  .mod .numbers-company .item03.done > *,
  .mod .numbers-company .item05.done > *,
  .mod .numbers-set.col2 .item.done:nth-of-type(even) > *,
  .mod .numbers-set.col3 .item.done:nth-of-type(3n+2) > * {
    transition-delay: 0.7s;
  }
  .mod .numbers-set.col3 .item.done:nth-of-type(3n) {
    transition-delay: 0.5s;
  }
  .mod .numbers-set.col3 .item.done:nth-of-type(3n) > * {
    transition-delay: 0.9s;
  }
}

@media screen and (min-width: 768px) {
  .mod .numbers-body.pc-horizontal {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .mod .numbers-body.pc-horizontal h3 {
    text-align: left;
  }
  .mod .numbers-body.pc-horizontal .img {
    width: 47.345%;
    flex-shrink: 0;
  }
  .mod .numbers-body.pc-horizontal .txt {
    calc(100% - 47.345% - 24px);
  }
  .mod .numbers-company .item03 .numbers-body {
    margin: 0 calc(clamp(0rem, -1.111rem + 2.31vw, 0.625rem) * -1);
  }
  .mod .numbers-company .item04 .data {
    margin-right: -1em;
    word-break: keep-all;
  }
  .mod .numbers-workstyle .item09 h3 {
    display: flex;
    align-items: center;
    height: 3.2em;
  }
}

@media screen and (max-width: 767px) {
  .mod .numbers-company {
    display: flex;
    flex-direction: column;
  }
  .mod .numbers-set .item {
    padding: 40px 24px;
  }
  .mod .numbers-set.col2 .item,
  .mod .numbers-set.col3 .item {
    width: 100%;
  }
  .mod .numbers-company .item03 {
    padding: 64px 24px;
  }
  .mod .numbers-body .img.illust {
    width: 140px;
  }
  .mod .numbers-body h3 {
    font-size: var(--f24px);
  }
  .mod .numbers-body h3 .sub {
    font-size: var(--f16px);
  }
  .mod .numbers-body .txt h3 + * {
    margin-top: 8px;
  }
  .mod .numbers-body .data {
    font-size: var(--f32px);
  }
  .mod .numbers-body .data .num {
    font-size: var(--f64px);
  }
  .mod .numbers-body .data .txt-black {
    display: block;
    text-align: center;
  }
}

.mod .numbers-survey {
  margin: 64px 0 0;
  padding: 64px 4vw 80px;
  border-radius: var(--radius-panel-pc);
}
.mod .numbers-survey h3 {
  display: flex;
  gap: 16px;
  width: fit-content;
  margin: 0 0 64px;
  margin-inline: auto;
  padding: 0 0 16px;
  font-size: var(--f32px);
  line-height: 1.4;
  background: linear-gradient(to right, var(--color-main) 4px, transparent 4px) repeat-x left bottom;
  background-size: 10px 3px;
}
.mod .numbers-survey h3 .q-num {
  color: var(--color-blue-gray-light);
  font-family: "Kanit", sans-serif;
  font-size: 49px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.mod .numbers-survey .numbers-set {
  max-width: 904px;
  margin-inline: auto;
}

.mod .numbers-postit {
  gap: 24px;
  margin: 24px 0 0;
}
.mod .numbers-postit .item {
  display: block;
  padding: 32px 32px 40px;
  border-radius: 4px;
  box-shadow: 26px 36px 24px -32px color-mix(in srgb, var(--color-black) 25%, transparent);
}
.mod .numbers-postit.col2 .item {
  width: calc(50% - 12px);
}
.mod .numbers-postit.col3 .item {
  width: calc(100% / 3 - 24px * 2 / 3);
}
.mod .numbers-postit .survey-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 24px;
}
.mod .numbers-postit .survey-head .icon {
  width: 64px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.mod .numbers-postit .survey-head .answer {
  padding: clamp(0.625rem, 0.471rem + 0.32vw, 0.688rem) clamp(0.875rem, 0.567rem + 0.64vw, 1rem);
  color: var(--color-white);
  font-size: clamp(0.813rem, 0.043rem + 1.6vw, 1.125rem);
  font-weight: 800;
  font-feature-settings: "palt";
  letter-spacing: 0;
  line-height: 1.6;
  border-radius: 6px;
  background-color: var(--color-blue-gray);
}
.mod .numbers-postit .survey-head .answer .sub {
  display: inline-block;
  font-size: 0.78em;
  vertical-align: bottom;
}
.mod .numbers-postit .survey-txt {
  margin: 32px 0 0;
  font-weight: 500;
  line-height: 2.3;
}
.mod .numbers-postit .survey-txt > *:last-child {
  margin-bottom: 0;
}
.mod .numbers-postit .survey-txt p {
  display: inline;
  padding-bottom: 9px;
  background: linear-gradient(to right, #d9d9d9 2px, transparent 2px) repeat-x left bottom;
  background-size: 5px 2px;
}
.mod .numbers-postit .bubble {
  position: relative;
  margin: 32px 0 0;
  padding: 24px;
  font-size: var(--f15px);
  border-radius: 12px;
  background-color: #E7F4FA;
}
.mod .numbers-postit .bubble > *:last-child {
  margin-bottom: 0;
}
.mod .numbers-postit .bubble:before {
  content: "";
  position: absolute;
  left: 40px;
  top: -17px;
  width: 18px;
  aspect-ratio: 1;
  background-color: #E7F4FA;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.mod .survey-bubble {
  display: flex;
  align-items: center;
  gap: 0 34px;
  margin: 40px 0 0;
}
.mod .survey-bubble .icon {
  width: 88px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--color-blue-gray);
  box-shadow: 7px 15px 12px -10px color-mix(in srgb, var(--color-black) 25%, transparent);
  flex-shrink: 0;
}
.mod .survey-bubble .bubble {
  position: relative;
  padding: 32px 40px;
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-panel-pc);
  background-color: var(--color-blue-gray);
  box-shadow: 26px 36px 24px -32px color-mix(in srgb, var(--color-black) 25%, transparent);
}
.mod .survey-bubble .bubble > *:last-child {
  margin-bottom: 0;
}
.mod .survey-bubble .bubble:before {
  content: "";
  position: absolute;
  left: -17px;
  top: calc(50% - 9px);
  width: 18px;
  aspect-ratio: 1;
  background-color: var(--color-blue-gray);
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.mod .survey-bubble:nth-of-type(even) {
  flex-direction: row-reverse;
}
.mod .survey-bubble:nth-of-type(even) .bubble:before {
  left: unset;
  right: -17px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.mod .survey-bubble:nth-of-type(4n+1) .icon,
.mod .survey-bubble:nth-of-type(4n+1) .bubble,
.mod .survey-bubble:nth-of-type(4n+1) .bubble:before {
  background-color: var(--color-sub6);
}
.mod .survey-bubble:nth-of-type(4n+2) .icon,
.mod .survey-bubble:nth-of-type(4n+2) .bubble,
.mod .survey-bubble:nth-of-type(4n+2) .bubble:before {
  background-color: #80BAE1;
}
.mod .survey-bubble:nth-of-type(4n+3) .icon,
.mod .survey-bubble:nth-of-type(4n+3) .bubble,
.mod .survey-bubble:nth-of-type(4n+3) .bubble:before {
  background-color: var(--color-sub3);
}
.mod .survey-bubble:nth-of-type(4n) .icon,
.mod .survey-bubble:nth-of-type(4n) .bubble,
.mod .survey-bubble:nth-of-type(4n) .bubble:before {
  background-color: var(--color-sub2);
}
.mod .survey-bubble.fadein {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mod .survey-bubble.fadein > * {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}
.mod .survey-bubble.fadein.done > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: linear, ease-out;
}
.mod .survey-bubble.fadein.done > *:nth-child(1) {
  transition-delay: 0.2s;
}
.mod .survey-bubble.fadein.done > *:nth-child(2) {
  transition-delay: 0.4s;
}

@media screen and (max-width: 1079px) {
  .mod .numbers-postit.col3 .item {
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 767px) {
  .mod .numbers-survey {
    padding: clamp(2rem, 0.087rem + 8.16vw, 4rem) max(4vw,16px) clamp(3.5rem, -0.192rem + 7.69vw, 5rem);
    border-radius: var(--radius-panel-sp);
  }
  .mod .numbers-survey h3 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    font-size: var(--f26px);
    text-align: center;
  }
  .mod .numbers-survey h3 .q-num {
    font-size: var(--f32px);
  }
  .mod .numbers-postit .item {
    padding: 40px 16px;
    box-shadow: 26px 28px 24px -24px color-mix(in srgb, var(--color-black) 25%, transparent);
  }
  .mod .numbers-postit.col2 .item,
  .mod .numbers-postit.col3 .item {
    width: 100%;
  }
  .mod .numbers-postit .survey-head {
    gap: 0 18px;
  }
  .mod .numbers-postit .survey-head .answer {
    max-width: 172px;
    padding: 12px 14px;
    font-size: var(--f16px);
    line-height: 1.4;
    border-radius: 8px;
  }
  .mod .numbers-postit .survey-head .answer .sub {
    font-size: 0.6875em;
  }
  .mod .numbers-postit .survey-txt {
    margin-top: 24px;
  }
  .mod .numbers-postit .bubble {
    margin-top: 28px;
  }
  .mod .numbers-postit .bubble:before {
    top: -11px;
    width: 12px;
  }

  .mod .survey-bubble {
    align-items: flex-start;
    gap: 0 16px;
    margin-top: 24px;
  }
  .mod .survey-bubble .icon {
    width: 63px;
    box-shadow: 5.00433px 10.7236px 8.57886px -7.14905px color-mix(in srgb, var(--color-black) 25%, transparent);
  }
  .mod .survey-bubble .bubble {
    padding: 24px 20px;
    font-size: var(--f14px);
    font-weight: 500;
    line-height: 1.8;
    border-radius: var(--radius-panel-sp);
  }
  .mod .survey-bubble .bubble:before {
    left: -11px;
    top: 28px;
    width: 12px;
  }
  .mod .survey-bubble:nth-of-type(even) .bubble:before {
    left: unset;
    right: -11px;
  }
}


/* ----- environment - global ----- */
.mod .list-network h3 {
  margin: 40px 0 0;
  padding: 0 0 8px;
  color: var(--color-main);
  font-size: var(--f18px);
  border-bottom: 1px solid var(--color-gray);
}
.mod .list-network ul {
  margin: 8px 0 0;
  font-size: var(--f13px);
}
.mod .list-network ul li {
  margin: 8px 0 0;
  line-height: 1.2;
}
.mod .icon-set.biography .img {
  width: 149px;
  margin-bottom: auto;
}
.mod .biography ul li {
  display: flex;
}
.mod .biography ul li .year {
  width: 68px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .mod .list-network {
    gap: 32px;
  }
  .mod .list-network h3 {
    margin-top: 32px;
  }
}


/* ----- environment - r-training ----- */
.mod .list-motto li {
  margin-bottom: 16px;
  line-height: 1.7;
}


/*---------------------------------------------
  FAMILIAR
  ---------------------------------------------*/
.mod .content:has(.familiar) {
  padding: clamp(4.563rem, 0.029rem + 8.85vw, 6rem) 0 46px;
  background-color: var(--color-light-gray);
}
.mod .familiar {
  position: relative;
}
.mod .familiar-txt {
  position: absolute;
  left: 0;
  top: clamp(0rem, -7.885rem + 15.38vw, 2.5rem);
}
.mod .familiar .heading {
  color: var(--color-main);
  font-size: clamp(1.75rem, 0.173rem + 3.08vw, 2.25rem);
  font-weight: 900;
  line-height: 1.4;
}
.mod .familiar .heading + * {
  width: clamp(17.125rem, 4.904rem + 23.85vw, 21rem);
  margin: clamp(1.125rem, 0.139rem + 1.92vw, 1.438rem) 0 0;
}
.mod .row:has(.familiar) ~ .row:has(.btn.back) {
  position: relative;
  top: -126px;
  height: 0;
}
.mod .row:has(.familiar) ~ .row .btn.back {
  margin: 0;
}
.mod .familiar-canvas {
  position: relative;
  left: clamp(0rem, -24rem + 35.56vw, 8rem);
  width: clamp(59.793rem, 0.992rem + 114.73vw, 78.438rem);
  margin-top: calc(clamp(0rem, -7.885rem + 15.38vw, 2.5rem) * -1);
}
.mod .scroll.scroll-familiar .familiar-canvas {
  min-width: 0;
}
.mod .familiar-canvas .img-map {
  margin: 0;
  padding: 0;
}
.mod .familiar-canvas .map-pin {
  position: absolute;
  display: block;
  width: clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem);
  height: clamp(2rem, 0.029rem + 3.85vw, 2.625rem);
  background: transparent;
	filter: drop-shadow(0px 4px 4px color-mix(in srgb, var(--color-black) 25%, transparent));
  z-index: 1;
}
.mod .familiar-canvas .map-pin:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon_pin.svg") no-repeat center;
  background-size: contain;
}
.mod .familiar-canvas .map-pin.pin01 {
  left: calc(52.787% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	40.023%;
}
.mod .familiar-canvas .map-pin.pin02 {
  left: calc(51.274% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	82.019%;
}
.mod .familiar-canvas .map-pin.pin03 {
  left: calc(72.532% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	74.014%;
}
.mod .familiar-canvas .map-pin.pin04 {
  left: calc(60.350% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	62.413%;
}
.mod .familiar-canvas .map-pin.pin05 {
  left: calc(34.475% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	52.204%;
}
.mod .familiar-canvas .map-pin.pin06 {
  left: calc(45.143% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	32.367%;
}
.mod .familiar-canvas .map-pin.pin07 {
  left: calc(16.322% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	55.684%;
}
.mod .familiar-canvas .map-pin.pin08 {
  left: calc(62.739% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	79.002%;
}
.mod .familiar-canvas .map-pin.pin09 {
  left: calc(28.503% - clamp(1.313rem, 0.13rem + 2.31vw, 1.688rem) / 2);
  bottom:	71.926%;
}
.mod .familiar-canvas .map-pin span {
  position: absolute;
  display: block;
  left: 50%;
  bottom: clamp(1.536rem, 0.026rem + 2.95vw, 2.015rem);
  padding: clamp(0.762rem, 0.013rem + 1.46vw, 1rem) clamp(0.81rem, 0.013rem + 1.55vw, 1.063rem);
  color: var(--color-txt);
  font-size: clamp(0.714rem, 0.011rem + 1.37vw, 0.938rem);
  font-weight: 900;
  line-height: 1.46;
  white-space: nowrap;
  background-color: color-mix(in srgb, var(--color-white) 70%, transparent);
  border-radius: clamp(0.381rem, -1.571rem + 3.81vw, 1rem);
  will-change: transform;
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition-duration: 0.5s;
  transition-property: color, background-color, transform;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
html:not(.sp) .mod .familiar-canvas .map-pin:hover {
  z-index: 2;
}
html:not(.sp) .mod .familiar-canvas .map-pin:hover span {
  color: var(--color-main);
  background-color: var(--color-white);
  transform: translateX(-50%) scale(1.2);
}

.mod .familiar-modal h3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 7px;
  font-size: clamp(1.5rem, 1.056rem + 0.93vw, 1.75rem);
}
.mod .familiar-modal h3:before {
  content: "";
  display: block;
  width: 18px;
  height: 28px;
  margin: clamp(0.375rem, 0.042rem + 0.69vw, 0.563rem) 0 0;
  background: url("../images/icon_pin.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.mod .familiar-modal figure img {
  width: auto;
  max-height: 140px;
}
.mod .scroll.scroll-familiar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.mod .scroll.scroll-familiar::-webkit-scrollbar{
  display: none;
}

@media screen and (max-width: 1079px) {
  .mod .familiar-canvas {
    left: unset;
    right: clamp(-1rem, -4.154rem + 6.15vw, 0rem);
  }
}

@media screen and (max-width: 819px) {
  .mod .content:has(.familiar) {
    padding: 56px 0 86px;
    background-color: var(--color-white);
  }
  .mod .row:has(.familiar) ~ .row:has(.btn.back) {
    position: unset;
    top: 0;
    height: auto;
  }
  .mod .row:has(.familiar) ~ .row .btn.back {
    margin-top: 32px;
  }
  .mod .familiar-txt {
    position: unset;
  }
  .mod .familiar .heading {
    line-height: 1.5;
  }
  .mod .familiar .heading + * {
    width: auto;
    margin-top: 16px;
  }
  .mod .familiar-canvas {
    right: unset;
    left: calc(50% - calc(clamp(35.608rem, 13.052rem + 96.24vw, 49.082rem) / 2));
    width: clamp(35.608rem, 13.052rem + 96.24vw, 49.082rem);
    margin: 32px 0 0;
  }
  .mod .familiar-canvas .map-pin {
    width: clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem);
    height: clamp(1.625rem, 1.097rem + 2.25vw, 2.25rem);
  }
  .mod .familiar-canvas .map-pin.pin01 {
    left: calc(52.787% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin02 {
    left: calc(51.274% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin03 {
    left: calc(72.532% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin04 {
    left: calc(60.350% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin05 {
    left: calc(34.475% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin06 {
    left: calc(44.108% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
    bottom: 30.626%;
  }
  .mod .familiar-canvas .map-pin.pin07 {
    left: calc(16.322% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin08 {
    left: calc(62.739% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin.pin09 {
    left: calc(28.503% - clamp(1.063rem, 0.746rem + 1.35vw, 1.438rem) / 2);
  }
  .mod .familiar-canvas .map-pin span {
    bottom: clamp(1.232rem, 0.838rem + 1.68vw, 1.698rem);
    padding: clamp(0.611rem, 0.416rem + 0.83vw, 0.843rem) clamp(0.649rem, 0.442rem + 0.89vw, 0.895rem);
    font-size: clamp(0.6rem, 0.408rem + 0.82vw, 0.828rem);
    border-radius: clamp(0.306rem, 0.208rem + 0.42vw, 0.421rem);
  }
}

@media screen and (min-width: 600px) {
  .mod .scroll.scroll-familiar {
    overflow: visible !important;
  }
  .mod .scroll.scroll-familiar .scroll-hint-icon-wrap {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .mod .familiar-canvas {
    left: 0;
    margin-top: 37px;
  }
  .mod .scroll-familiar:has(.is-active) .familiar-canvas {
    margin-left: calc(calc(100vw - clamp(35.608rem, 13.052rem + 96.24vw, 49.082rem)) / 2.6);
  }
  .mod .scroll.scroll-familiar {
    margin: 0 -4vw;
  }
  .mod .scroll.scroll-familiar .scroll-hint-icon {
    z-index: 10;
  }
}


/*---------------------------------------------
  STRENGTHS
  ---------------------------------------------*/
.mod .strengths-set {
  position: relative;
  margin: 40px 0 0;
}
.mod .strengths-set .sp-bg {
  display: none;
}
.mod .strengths-inner {
  position: relative;
  display: flex;
}
.mod .strengths-set .strengths-head {
  position: sticky;
  top: 130px;
  width: 34.68%;
  max-height: calc(100dvh - var(--fixed-header-height-pc));
  padding: 56px clamp(1.5rem, 0.269rem + 2.56vw, 2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px 0 0 30px;
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mod .strengths-set .strengths-head::-webkit-scrollbar {
  display: none;
}

.mod .strengths-head > *:first-child,
.mod .strengths-block > *:first-child {
  margin-top: 0;
}
.mod .strengths-head > *:last-child,
.mod .strengths-block > *:last-child {
  margin-bottom: 0;
}
.mod .strengths-set#anc01 .strengths-head {
  background-image: linear-gradient(180deg, rgba(0, 116, 190, 0.9) 0%, rgba(0, 116, 190, 0) 57.24%), url("../../images/strengths/img01_pc.jpg");
}
.mod .strengths-set#anc02 .strengths-head {
  background-image: linear-gradient(180deg, rgba(0, 116, 190, 0.9) 0%, rgba(0, 116, 190, 0) 57.24%), url("../../images/strengths/img02_pc.jpg");
}
.mod .strengths-set#anc03 .strengths-head {
  background-image: linear-gradient(180deg, rgba(0, 116, 190, 0.9) 0%, rgba(0, 116, 190, 0) 57.24%), url("../../images/strengths/img03_pc.jpg");
}
.mod .strengths-head .lead {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin: 0;
  padding: 0 0 16px 8px;
  font-size: var(--f18px);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  border-bottom: 1px solid color-mix(in srgb, var(--color-white) 70%, transparent);
}
.mod .strengths-head .lead .txt-en {
  font-size: clamp(2rem, 0.769rem + 2.56vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.mod .strengths-head h2 {
  margin: 16px 0 0;
  font-size: clamp(1.125rem, 2.424vw, 2rem);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 1.6;
  text-align: left;
}
.mod .strengths-head h2:after {
  content: none;
}
.mod .strengths-head nav {
  margin-top: 64px;
}
.mod .strengths-head nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.mod .strengths-head nav ul li {
  margin: 0;
  padding: 0 0 0 14px;
  font-weight: 700;
  opacity: 0.6;
  transition: opacity 0.2s linear;
}
.mod .strengths-head nav ul li:has(a.active) {
  opacity: 1;
}
.mod .strengths-head nav ul li:before {
  left: 0;
  top: calc(50% - 1px);
  width: 6px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--color-white);
}
.mod .strengths-head nav a {
  background: none;
}
.mod .strengths-set .strengths-body {
  position: relative;
  padding: 0 clamp(1.25rem, -11.673rem + 26.92vw, 6.5rem);
  flex: 1;
  background-color: var(--color-white);
  border-radius: 0 30px 30px 0;
}
.mod .strengths-block {
  padding-top: 56px;
}
.mod .strengths-block:first-of-type {
  padding-top: clamp(3.5rem, -0.192rem + 7.69vw, 5rem);
}
.mod .strengths-block:last-of-type {
  padding-bottom: clamp(3.5rem, -0.192rem + 7.69vw, 5rem);
}
.mod .strengths-block h3 {
  position: relative;
  margin: 32px 0 0;
  padding-left: 43px;
  font-size: var(--f22px);
}
.mod .strengths-block h3:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0.8em;
  width: 27px;
  height: 1px;
  background-color: var(--color-main);
}
.mod .strengths-block h3 + * {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .mod .content:has(.strengths-index) {
    padding-top: 40px;
  }
  .mod .strengths-set {
    margin: 80px -4vw 0;
    padding: 0 0 56px;
    height: auto !important;
  }
  .mod .strengths-set .sp-bg {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: unset;
    width: 100%;
    height: calc(100dvh - var(--fixed-header-height-sp));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0 0;
  }
  .mod .strengths-set.obj_top .sp-bg {
    position: fixed;
    bottom: unset;
    top: var(--fixed-header-height-sp);
    border-radius: 0;
  }
  .mod .strengths-set.obj_bottom .sp-bg {
    position: absolute;
    bottom: 0;
    top: unset;
  }
  .mod .strengths-set#anc01 .sp-bg {
    background-image: linear-gradient(180deg, rgba(0, 116, 190, 0.9) 0%, rgba(0, 116, 190, 0) 57.24%), url("../../images/strengths/img01_sp.jpg");
  }
  .mod .strengths-set#anc02 .sp-bg  {
    background-image: linear-gradient(180deg, rgba(0, 116, 190, 0.9) 0%, rgba(0, 116, 190, 0) 57.24%), url("../../images/strengths/img02_sp.jpg");
  }
  .mod .strengths-set#anc03 .sp-bg  {
    background-image: linear-gradient(180deg, rgba(0, 116, 190, 0.9) 0%, rgba(0, 116, 190, 0) 57.24%), url("../../images/strengths/img03_sp.jpg");
  }
  .mod .strengths-inner {
    display: block;
  }
  .mod .strengths-set .strengths-head {
    position: sticky;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    min-height: 480px;
    margin-inline: auto;
    padding: 0 4vw;
    top: 64px;
    background: none !important;
  }
  .mod .strengths-head .lead {
    padding-bottom: 24px;
    justify-content: center;
  }
  .mod .strengths-head .lead .txt-en {
    font-size: var(--f48px);
  }
  .mod .strengths-head h2 {
    margin-top: 32px;
    font-size: var(--f28px);
    align-self: center;
  }
  .mod .strengths-head nav {
    display: none;
  }
  .mod .strengths-set .strengths-body {
    padding: 0 20px;
    margin: 0 4vw;
    background-color: var(--color-white);
    border-radius: 16px;
  }
  .mod .strengths-body .body-cover {
    max-height: none;
    overflow: visible;
    overscroll-behavior-y: auto;
  }
  .mod .strengths-block {
    padding-top: 40px;
  }
  .mod .strengths-block:first-of-type {
    padding-top: 56px;
  }
  .mod .strengths-block:last-of-type {
    padding-bottom: 56px;
  }
  .mod .strengths-block h3 {
    margin-top: 40px;
  }
  .mod .strengths-index {
    margin-bottom: 50px;
  }
  .mod .strengths-index ul {
    margin: 0;
  }
  .mod .strengths-index ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--color-gray);
  }
  .mod .strengths-index ul li:before {
    content: none;
  }
  .mod .strengths-index a {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 24px 6px 24px 30px;
    font-weight: 800;
    line-height: 1.5;
    background: none;
  }
  .mod .strengths-index a:before {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: calc(50% - 5px);
    width: 7px;
    height: 10px;
    background-color: var(--color-main);
    -webkit-mask-image: url(../images/icon_link_s.svg);
            mask-image: url(../images/icon_link_s.svg);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 7px 10px;
            mask-size: 7px 10px;
    transform: rotate(90deg);
  }
  .mod .strengths-index a .txt-sub {
    display: flex;
    align-items: center;
    color: var(--color-dark-gray);
    font-size: var(--f13px);
    font-weight: 700;
  }
  .mod .strengths-index a .txt-sub {
    color: var(--color-dark-gray);
    font-size: var(--f13px);
    font-weight: 700;
  }
  .mod .strengths-index a .txt-sub .txt-en {
    position: relative;
    padding-right: 12px;
    font-size: var(--f19px);
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
  }
  .mod .strengths-index a .txt-sub .txt-en:after {
    content: "";
    position: absolute;
    display: block;
    right: 6px;
    top: calc(50% - 6px);
    width: 1px;
    height: 12px;
    background-color: var(--color-gray);
  }
  .mod .strengths-index a .txt-main {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}


/*---------------------------------------------
  INFORMATION
  ---------------------------------------------*/
/* ----- Demand ----- */
.mod .list-demand {
  margin: 64px 0 0;
}
.mod .list-demand li {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px;
  border-bottom: 1px solid var(--color-gray);
}
.mod .list-demand li:before {
  content: none;
}
.mod .list-demand li .icon {
  width: clamp(5.5rem, -0.962rem + 13.46vw, 8.125rem);
  flex-shrink: 0;
}
.mod .list-demand li .txt > *:last-child {
  margin-bottom: 0;
}
.mod .list-demand li .txt-demand {
  color: var(--color-main);
  font-size: clamp(1.125rem, -0.413rem + 3.21vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .mod .list-demand {
    margin-top: 40px;
  }
  .mod .list-demand li {
    gap: 24px;
    padding: 16px 8px;
  }
}

/* ----- 選考フロー ----- */
.mod .selection-process {
  counter-reset: stepnum;
}
.mod .selection-process .box {
  position: relative;
  overflow: visible;
  counter-increment: stepnum;
}
.mod .selection-process .box:after {
  content: "";
  position: absolute;
  display: block;
  left: calc(50% - 30px);
  bottom: -38px;
  width: 60px;
  height: 24px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2260%22%20height%3D%2224%22%20viewBox%3D%220%200%2060%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M28.3359%2022.8906C29.3436%2023.5624%2030.6564%2023.5624%2031.6641%2022.8906L57.7558%205.49615C60.2255%203.84968%2059.0599%200%2056.0917%200H3.90832C0.940101%200%20-0.225486%203.84968%202.24423%205.49615L28.3359%2022.8906Z%22%20fill%3D%22%23D5D7D9%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
  background-size: contain;
}
.mod .selection-process .box:last-of-type:after {
  content: none;
}

.mod .selection-process .box + .box {
  margin-top: 50px;
}
.mod .selection-process .process-elem {
  display: flex;
  gap: 32px 40px;
}
.mod .selection-process .process-elem .img {
  width: 24.39%;
}
.mod .selection-process .process-elem .txt {
  flex: 1;
}
.mod .selection-process .process-elem .txt > *:last-child {
  margin-bottom: 0;
}
.mod .selection-process .process-elem h3 {
  display: flex;
  align-items: flex-start;
  gap: 8px 16px;
}
.mod .selection-process .process-elem h3::before {
	content: "STEP "counter(stepnum);
  width: 92px;
  color: var(--color-white);
  font-family: "Kanit", sans-serif;
  font-size: var(--f18px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 35px;
  text-align: center;
  background-color: var(--color-main);
  border-radius: 4px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .mod .selection-process .process-elem {
    flex-direction: column;
    align-items: center;
  }
  .mod .selection-process .process-elem .img {
    width: 192px;
  }
  .mod .selection-process .process-elem h3 {
    flex-direction: column;
    align-items: center;
  }
}


/*---------------------------------------------
  ENTRY
  ---------------------------------------------*/
.mod .box-entry {
  display: flex;
  align-items: center;
  gap: 48px;
}
.mod .box-entry .txt {
  flex: 1;
}
.mod .box-entry .txt > *:last-child {
  margin-bottom: 0;
}
.mod .box-entry .btn {
  width: 34%;
  margin: 0;
}
.mod .box-entry .btn a {
  margin: 0;
}
.mod .btn.is-entry {
  gap: 48px;
  margin: 40px 0 0;
}
.mod .btn.is-entry a {
  width: calc(50% - 24px);
  min-width: 0;
  min-height: 168px;
  margin: 0;
  padding: 10px clamp(1.25rem, -1.519rem + 5.77vw, 2.375rem);
  color: var(--color-main);
  font-size: var(--f20px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  background: #EBF4FA;
  border: 3px solid var(--color-main);
  border-radius: 8px;
  transition: background-color 0.2s linear;
}
.mod .btn.is-entry a:before {
  content: none;
}
.mod .btn.is-entry span {
  padding: 0 32px;
}
.mod .btn.is-entry span:before,
.mod .btn.is-entry span:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: calc(50% - 16px);
  width: 32px;
  height: 32px;
  border-radius: 100%;
}
.mod .btn.is-entry span:after {
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 28px;
          mask-size: 28px;
  background-color: var(--color-white);
}
.mod .btn.is-entry span:after {
  transition: none;
}
.mod .btn.is-entry span:before {
  background-color: var(--color-main);
  z-index: -1;
  transition: transform 0.2s linear;
}
html:not(.sp) .mod .btn.is-entry a:hover {
  color: var(--color-main);
  background-color: var(--color-white);
}
html:not(.sp) .mod .btn.is-entry a:hover span:after {
  transform: none;
}
html:not(.sp) .mod .btn.is-entry a:hover span:before {
  transform: scale(1.25);
}

@media screen and (min-width: 768px) {
  .mod .box-entry .btn a {
    width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 767px) {
  .mod .box-entry {
    flex-direction: column;
  }
  .mod .box-entry .btn {
    width: 100%;
  }
  .mod .btn.is-entry {
    flex-direction: column;
    gap: 24px;
  }
  .mod .btn.is-entry a {
    width: 100%;
    min-height: 120px;
  }
}


/*---------------------------------------------
  日本語
  ---------------------------------------------*/
html[lang="ja"] .mod main .pagetitle h1 .txt-en {
  text-transform: uppercase;
}

/*---------------------------------------------
  English
  ---------------------------------------------*/
html[lang="en"] body {
  font-family: "Kanit", "Noto Sans JP", sans-serif;
  letter-spacing: normal;
}

html[lang="en"] .mod .note {
  padding-left: 0.7em;
}
html[lang="en"] .mod .note-num {
  padding-left: 1.7em;
}
html[lang="en"] .mod .note:before,
html[lang="en"] .mod .note-num:before {
  content: "*";
}

html[lang="en"] .mod .note-num:before {
  content: "*" attr(data-num);
}

html[lang="en"] .mod footer .footer-menu-lv2 {
    font-size: var(--f20px);
}

@media screen and (min-width: 1301px), print {
  html[lang="en"] .mod header #header-btns a,
  html[lang="en"] .mod header #header-btns button {
    font-size: var(--f18px);
    font-weight: 600;
  }
  html[lang="en"] .mod header #header-btns a .txt-en,
  html[lang="en"] .mod header #header-btns button .txt-en {
    font-size: var(--f24px);
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px), print {
  html[lang="en"] .mod header #header-btns a,
  html[lang="en"] .mod header #header-btns button {
    font-size: var(--f13px);
  }
  html[lang="en"] .mod header #header-btns .header-btn br {
    display: none;
  }
}

@media screen and (min-width: 1200px), print {
  html[lang="en"] .mod header #header-nav .menu-item > a {
    font-weight: 500;
  }
  html[lang="en"] .mod header #header-btns a .btn-wrap,
  html[lang="en"] .mod header #header-btns button .btn-wrap {
    gap: clamp(0.5rem, -2.5rem + 4vw, 0.75rem);
  }
  html[lang="en"] .mod header .megamenu a {
    font-weight: 500;
  }
  html[lang="en"] .mod header .megamenu .megamenu-label {
    font-size: var(--f48px);
  }
  html[lang="en"] .mod header .megamenu .megamenu-title a {
    font-size: var(--f18px);
  }
}

@media screen and (max-width: 1199px), print {
  html[lang="en"] .mod header #header-nav .menu-item > a {
    font-size: var(--f18px);
  }
  html[lang="en"] .mod header .megamenu a {
    font-size: var(--f16px);
  }
}

@media screen and (max-width: 767px) {
  html[lang="en"] .mod header #header-btns a,
  html[lang="en"] .mod header #header-btns button {
    font-weight: 600;
  }
  html[lang="en"] .mod header #header-btns a .btn-wrap .txt-row1 {
    margin-top: -4px;
  }
}


/* ----- top page ----- */
html[lang="en"] .mod .heading-top > .txt-en {
  font-size: clamp(3.125rem, -0.726rem + 8.03vw, 5.5rem);
}
html[lang="en"] .mod .heading-top-m {
  font-size: clamp(1.625rem, 0.961rem + 1.39vw, 2rem);
  line-height: 1.3;
}
html[lang="en"] .mod .business-index .heading .heading-sub {
  line-height: 1.3;
}
html[lang="en"] .mod #top-business .business-title .description {
  font-size: clamp(1rem, 0.779rem + 0.46vw, 1.125rem);
  line-height: 1.3;
}
html[lang="en"] .mod .panel-vertical .heading {
  font-size: clamp(1.25rem, 0.586rem + 1.39vw, 1.625rem);
  line-height: 1.3;
}
html[lang="en"] .mod .panel-environment .panel-covered .heading {
  font-size: clamp(2rem, 1.114rem + 1.85vw, 2.5rem);
  font-weight: 700;
  line-height: 0.9;
}
html[lang="en"] .mod .link-list.information dl dt {
  font-size: clamp(1.375rem, 1.154rem + 0.46vw, 1.5rem);
  line-height: 1.3;
}


/* ----- pagetitle- ----- */
@media screen and (min-width: 768px) {
  html[lang="en"] .mod main .pagetitle-body:has(.pagetitle-img) {
    padding: 94px 0 101px;
  }
  html[lang="en"] .mod main:has(.strengths-wrap) .pagetitle-body {
    min-height: 336px;
  }
}


/* ----- familiar ----- */
@media screen and (min-width: 820px) {
  html[lang="en"] .mod .familiar-txt {
    top: clamp(-3rem, -9.474rem + 12.63vw, 0rem);
  }
  html[lang="en"] .mod .familiar .heading + * {
    width: clamp(15.625rem, -35rem + 75vw, 21.25rem);
  }
}


/* ----- Meet Our Team ----- */
html[lang="en"] .mod .work-flow .title {
  line-height: 1;
}

@media screen and (max-width: 767px) {
  html[lang="en"] .mod .work-flow .title {
    font-size: clamp(0.563rem, 0.144rem + 1.79vw, 1rem);
  }
}
