@charset "UTF-8";
/* --------------------------------------------------------
CSSカスタムプロパティ
   -------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  color-scheme: light;
  /* color */
  --color-base: #333;
  --color-blue-light: #4A8BDB;
  --color-blue: #246CC6;
  --color-blue-deep: #004DAB;
  --color-blue-sky: #CEE2FC;
  --color-blue-black: #0F315B;
  --color-orange: #EB7600;
  --color-orange-deep: #E65400;
  --color-yellow-light: #FEB10B;
  --color-yellow: #F2B020;
  --color-yellow-deep: #EBA100;
  --color-beige: #FAF7ED;
  --color-gray-light: #EAEAEA;
  --font-Albert: 'Albert Sans', sans-serif;
  --font-size-11: clamp( 11px, calc( 8.222px + 0.740vw ), 14px );
  --font-size-12: clamp( 12px, calc( 8px + 1.0256vw ), 16px );
  --font-size-14: clamp( 14px, calc( 10.296px + 0.987vw ), 18px );
  --font-size-15: clamp( 15px, calc( 11.296px + 0.987vw ), 19px );
  --font-size-16: clamp( 16px, calc( 10.558px + 1.395vw ), 22px );
  --font-size-18: clamp( 18px, calc( 12.444px + 1.481vw ), 24px );
  --font-size-20: clamp( 20px, calc(20 / 390 * 100vw), 26px);
  --font-size-22: clamp( 22px, calc( 16.943px + 1.348vw ), 28px );
  --font-size-24: clamp( 24px, calc( 18.443px + 1.481vw ), 30px );
  --transition-base: .3s ease-in;
}

@media (min-width: 820px) {
  :root {
    --font-size-13: clamp( 9px, calc( 2.76px + 0.8vw ), 13px );
    --font-size-14: clamp( 10px, calc( 3.76px + 0.8vw ), 14px );
    --font-size-15: clamp( 13px, calc( 4.76px + 1vw ), 15px );
    --font-size-16: clamp( 12px, calc( 5.76px + 0.8vw ), 16px );
    --font-size-18: clamp( 14px, calc( 7.76px + 0.8vw ), 18px );
    --font-size-20: clamp( 15px, calc( 7.2px + 1vw ), 20px );
    --font-size-22: clamp( 16px, calc( 8.2px + 1vw ), 22px );
    --font-size-24: clamp( 17px, calc( 6.08px + 1.4vw ), 24px );
    --font-size-26: clamp( 18px, calc( 5.52px + 1.6vw ), 26px );
    --font-size-30: clamp( 22px, calc( 9.52px + 1.6vw ), 30px );
    --font-size-32: clamp( 24px, calc( 11.52px + 1.6vw ), 32px );
  }
}
@media (min-width: 1440px) {
  :root {
    --font-size-13: .8125rem;
    --font-size-14: .875rem;
    --font-size-16: 1rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-32: 32px;
  }
}
/* --------------------------------------------------------
reset
   -------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* スムーズスクロールをCSS側でもサポート */
  /* scroll-behavior: smooth; */
  /* 横揺れ防止の基本 */
  overflow-x: hidden;
  width: 100%;
  background-color: #fff;
  color: #000;
}

img, svg {
  filter: none !important;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--color-base);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-base);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

@media (max-width: 819px) {
  .pc_view, .tab_view {
    display: none !important;
  }
}
@media (min-width: 820px) {
  .sp_view {
    display: none !important;
  }
}
.ff-Albert {
  font-family: var(--font-Albert);
  font-size: 105%;
}

/* コンテナ */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5.1282051282vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 820px) {
  .container {
    padding: 0 60px;
  }
}

/* table */
.table-wrap table {
  width: 100%;
}
.table-wrap table th,
.table-wrap table td {
  padding: 5.1282051282vw 3.5897435897vw;
  border-top: 1px solid #898989;
}
.table-wrap table tr:last-of-type th, .table-wrap table tr:last-of-type td {
  border-bottom: 1px solid #898989;
}
.table-wrap table th {
  background: var(--color-gray-light);
  font-size: var(--font-size-16);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
.table-wrap table td {
  background: #fff;
  font-size: var(--font-size-14);
}
@media (min-width: 820px) {
  .table-wrap table th,
  .table-wrap table td {
    padding: 20px 30px;
    font-size: var(--font-size-18);
  }
}
@media (min-width: 1024px) {
  .table-wrap table th,
  .table-wrap table td {
    padding: 2.0833333333vw 3.4722222222vw;
  }
}

/* detail-list */
ol.detail-list {
  counter-reset: num;
}
ol.detail-list > li {
  counter-increment: num;
  padding-left: 1em;
  text-indent: -1em;
}
ol.detail-list > li::before {
  content: counter(num) ". ";
}

/* btn */
.btn {
  overflow: hidden;
  font-family: var(--font-Albert);
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-base);
}
.btn .icon_triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7.6923076923vw;
  height: 7.6923076923vw;
  transition: var(--transition-base);
}
@media (min-width: 820px) {
  .btn .icon_triangle {
    width: 30px;
    height: 30px;
  }
}
.btn .icon_triangle::before, .btn .icon_triangle::after {
  content: "";
  right: 0;
  bottom: 0;
  display: inline-block;
  position: absolute;
  transition: 0.3s ease;
}
.btn .icon_triangle::before {
  width: 4.1025641026vw;
  height: 2.0512820513vw;
  background: var(--color-blue-light);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
@media (min-width: 820px) {
  .btn .icon_triangle::before {
    width: 30px;
    height: 15px;
  }
}
.btn .icon_triangle::after {
  width: 2.0512820513vw;
  height: 4.1025641026vw;
  background: var(--color-blue-black);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media (min-width: 820px) {
  .btn .icon_triangle::after {
    width: 15px;
    height: 30px;
  }
}
.btn .icon_triangle.-orange::before {
  background: var(--color-yellow-deep);
}
.btn .icon_triangle.-orange::after {
  background: var(--color-orange);
}

a.contact-btn {
  background: var(--color-orange-deep);
  color: #fff;
  padding: 8px 15px;
  height: 15.3846153846vw;
  position: relative;
}
@media (min-width: 820px) {
  a.contact-btn {
    width: 170px;
    height: 90px;
    font-size: var(--font-size-20);
  }
}
@media (min-width: 820px) {
  a.contact-btn .icon_triangle::before {
    background: var(--color-yellow-deep);
  }
  a.contact-btn .icon_triangle::after {
    background: var(--color-orange);
  }
}
@media (any-hover: hover) {
  a.contact-btn:hover {
    background: var(--color-yellow);
  }
  a.contact-btn:hover .icon_triangle::before {
    background: var(--color-yellow-deep);
  }
  a.contact-btn:hover .icon_triangle::after {
    background: var(--color-orange);
  }
}

.btn-more {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-blue-deep);
  color: #fff;
  width: 17.9487179487vw;
  height: 17.9487179487vw;
}
.btn-more.-white {
  background: #fff;
  color: var(--color-blue-deep);
}
@media (min-width: 820px) {
  .btn-more {
    font-size: var(--font-size-18);
    width: 70px;
    height: 70px;
  }
}

a {
  transition: var(--transition-base);
}
a.underlink {
  text-decoration: underline;
}
@media (any-hover: hover) {
  a.underlink:hover {
    text-decoration: none;
  }
}
a.outlink::after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon_arrow.svg") center/contain no-repeat;
  background-color: transparent !important;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  margin-bottom: -2px;
}
a.link_arrow-right {
  transition: var(--transition-base);
}
a.link_arrow-right::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: var(--color-blue-deep);
  transition: var(--transition-base);
}
@media (min-width: 960px) {
  a.link_arrow-right::after {
    width: 15px;
    height: 15px;
  }
}
@media (any-hover: hover) {
  a.link_arrow-right:hover {
    opacity: 0.85;
  }
}
a.link_arrow-bottom {
  transition: var(--transition-base);
}
a.link_arrow-bottom::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
  background: var(--color-blue-deep);
  transition: var(--transition-base);
}
@media (min-width: 960px) {
  a.link_arrow-bottom::after {
    width: 15px;
    height: 15px;
  }
}
@media (any-hover: hover) {
  a.link_arrow-bottom:hover {
    opacity: 0.85;
  }
}

@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* icon_check */
.icon_check {
  border: 2px solid #fff;
  width: 16px;
  height: 16px;
  position: relative;
}
.icon_check::after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon_check.svg") center/contain no-repeat;
  width: 16px;
  height: 14px;
  position: absolute;
  right: -5px;
  top: -3px;
}
@media (min-width: 820px) {
  .icon_check {
    width: 20px;
    height: 20px;
  }
  .icon_check::after {
    width: 20px;
    height: 15px;
    right: -6px;
    top: 0;
  }
}

/* scroll-text */
.scroll-text {
  position: relative;
  width: 100%;
  min-height: 1px;
  height: clamp(68px, 42.074px + 6.913vw, 96px);
  overflow: hidden;
  color: var(--color-blue);
}
.scroll-text p {
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(68px, 42.074px + 6.913vw, 96px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: scrollText 80s linear infinite;
}
@media (min-width: 820px) {
  .scroll-text {
    height: clamp(100px, 9.7222222222vw, 140px);
  }
  .scroll-text p {
    font-size: clamp(100px, 9.7222222222vw, 140px);
    /* font-size: 140px; */
  }
}

@keyframes scrollText {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}
/* --------------------------------------------------------
header
   -------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-120%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.header.is-hero {
  background: transparent;
  box-shadow: none;
  transform: none;
}
.header.is-hero.is-scrolled {
  background: #fff;
}
.header.is-hero .header-container {
  background: transparent;
  z-index: 1100;
}
.header.is-hero {
  /* top menu bg */
}
.header.is-hero.is-menu-open .header-container {
  background: #fff;
}
.header {
  /* transparent -> white */
}
.header.is-scrolled {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
}
.header {
  /* scroll */
}
.header.scroll-down {
  transform: translateY(-120%);
}
.header.scroll-up {
  transform: translateY(0);
}
.header a.contact-btn span {
  left: 0;
  transform: rotate(90deg);
}
@media (max-width: 819px) {
  .header a.contact-btn .icon_triangle {
    left: 0;
  }
  .header a.contact-btn .icon_triangle::before, .header a.contact-btn .icon_triangle::after {
    right: inherit;
    left: 0;
  }
  .header a.contact-btn .icon_triangle::before {
    background: var(--color-orange);
  }
  .header a.contact-btn .icon_triangle::after {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    background: var(--color-yellow-deep);
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 5.1282051282vw;
  max-width: none;
  position: relative;
  background: #fff;
  z-index: 100;
}
@media (min-width: 820px) {
  .header-container {
    padding: 0 0 0 2.0833333333vw;
  }
}

.header-logo {
  margin-right: auto;
  position: relative;
  width: 44.358974359vw;
}
@media (min-width: 820px) {
  .header-logo {
    width: 246px;
  }
}
.header-logo .logo-img {
  height: 6.1538461538vw;
  width: 44.358974359vw;
  position: absolute;
  left: 0;
  top: calc(50% - 3.0769230769vw);
}
@media (min-width: 820px) {
  .header-logo .logo-img {
    width: 200px;
    height: inherit;
    top: calc(50% - 17px);
  }
}
@media (min-width: 1024px) {
  .header-logo .logo-img {
    width: 246px;
    top: calc(50% - 17px);
  }
}
@media (any-hover: hover) {
  .header-logo a:hover {
    opacity: 0.7;
  }
}

/* logo切り替え */
.logo-white {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
}

.header.is-scrolled .logo-white,
.header.is-hero.is-menu-open .logo-white {
  opacity: 0;
}

.header.is-scrolled .logo-dark,
.header.is-hero.is-menu-open .logo-dark {
  opacity: 1;
}

/* hamburger-btn */
.hamburger-btn {
  width: 15.3846153846vw;
  height: 15.3846153846vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 5.1282051282vw;
  background: var(--color-blue);
}
@media (min-width: 820px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* open */
.header.is-menu-open .hamburger-btn-line:first-child {
  transform: translateY(4px) rotate(30deg);
}
.header.is-menu-open .hamburger-btn-line:last-child {
  transform: translateY(-3px) rotate(-30deg);
}
.header.is-menu-open {
  /* .header-container {
  	background: #fff !important;
  } */
}

/* グローバルナビ（SP: デフォルト非表示） */
.header .menu-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-beige);
  padding: 80px 25px 40px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  z-index: 99;
}
@media (min-width: 820px) {
  .header .menu-content {
    position: absolute;
    right: 20.8333333333vw;
    left: auto;
    /* top: 33px; */
    top: 0;
    height: 90px;
    display: inline-flex;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    z-index: 1100;
  }
}
@media (min-width: 1024px) {
  .header .menu-content {
    right: 220px;
  }
}
.header {
  /* open */
}
.header.is-menu-open .menu-content {
  visibility: visible;
  opacity: 1;
}
.header.is-menu-open .menu-item--has-dropdown > a {
  text-shadow: none;
}

.header .menu-list--primary {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--color-blue-deep);
  font-size: var(--font-size-14);
  font-weight: 500;
}
@media (min-width: 820px) {
  .header .menu-list--primary {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(4px, -42.857px + 5.7142vw, 12px);
    font-size: var(--font-size-16);
  }
}
@media (min-width: 960px) {
  .header .menu-list--primary {
    gap: clamp(16px, 8.2px + 1vw, 22px);
  }
}
.header .menu-item a {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  color: inherit;
  border-bottom: 1px solid #fff;
  transition: color 0.35s ease;
}
@media (min-width: 820px) {
  .header .menu-item {
    padding: 0;
    border-bottom: none;
  }
  .header .menu-item a {
    display: inline-flex;
    align-items: center;
    height: 90px;
    padding: 0 6px;
    border-bottom: none;
    position: relative;
  }
  .header .menu-item a span {
    position: relative;
  }
  .header .menu-item a span::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-blue-deep);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s opacity;
  }
}
@media (min-width: 820px) and (any-hover: hover) {
  .header .menu-item a:hover span::after {
    opacity: 1;
  }
}
.header .menu-item--has-dropdown > a {
  display: block;
  border-bottom: none;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
@media (min-width: 820px) {
  .header .menu-item--has-dropdown > a {
    position: relative;
    padding-right: 10px;
    display: inline-flex;
    align-items: baseline;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    text-shadow: none;
  }
  .header .menu-item--has-dropdown > a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
    background: var(--color-blue-deep);
    transition: 0.25s linear;
  }
}
@media (any-hover: hover) {
  .header .menu-item--has-dropdown > a:hover::before {
    transform: rotate(180deg);
    /* bottom: calc(50% - 8px); */
  }
}
@media (min-width: 820px) {
  .header .menu-item--has-dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
  .header .menu-item--has-dropdown:hover .menu-list-second, .header .menu-item--has-dropdown:focus-within .menu-list-second {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header {
  /* SP: 職種一覧の2階層目 */
}
.header .menu-list-second {
  padding-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  border-left: 1px solid var(--color-blue-deep);
}
@media (min-width: 820px) {
  .header .menu-list-second {
    position: absolute;
    top: 100%;
    border: 1px solid #fff;
    left: 0;
    min-width: 180px;
    margin: 0;
    display: flex;
    padding: 20px 30px;
    background: #fff;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.12); */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 10;
  }
  .header .menu-list-second > li > a {
    padding-bottom: 0;
  }
  .header .menu-list-second > li > a::before {
    content: none !important;
  }
}
.header .menu-list-second li a::before {
  content: "-";
  padding-right: 3px;
}
.header .menu-list-second-item {
  padding: 0 0 0 17px;
  margin-left: 0;
  list-style: none;
}
.header .menu-list-second-item a {
  height: inherit !important;
}
@media (min-width: 820px) {
  .header .menu-list-second-item {
    padding: 0 15px;
    margin: 0;
    border-left: 1px solid var(--color-blue-deep);
    border-bottom: none;
    white-space: nowrap;
    min-width: 140px;
  }
  .header .menu-list-second-item:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.header .menu-list-second-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 820px) {
  .header .menu-list-second-item:last-child {
    padding-right: 0;
    min-width: auto;
  }
}
.header .menu-list-second-item a {
  padding: 8px 0;
}
@media (min-width: 820px) {
  .header .menu-list-second-item a:first-of-type {
    padding-top: 0;
  }
}
@media (min-width: 820px) {
  .header .sub-menu {
    margin-top: 6px;
    padding-left: 12px;
  }
}
.header .sub-menu li a {
  padding: 8px 0 8px 12px;
}
@media (max-width: 819px) {
  .header .sub-menu li a {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
@media (min-width: 820px) {
  .header .sub-menu li a {
    padding: 0 0 0 8px;
  }
}
.header {
  /* topのみ */
}
@media (min-width: 820px) {
  .header.is-hero .menu-list--primary {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  }
  .header.is-hero .menu-item a {
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  }
  .header.is-hero .menu-item a span::after {
    background-color: #fff;
  }
  .header.is-hero .menu-item a.outlink::after {
    background-image: url("../img/common/icon_arrow_w.svg");
  }
  .header.is-hero .menu-item--has-dropdown > a::before {
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  }
  .header.is-hero {
    /* SP: 職種一覧の2階層目 */
  }
  .header.is-hero .menu-list-second {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  }
  .header.is-hero .menu-list-second-item {
    border-left-color: #fff;
  }
}
.header.is-hero.is-scrolled {
  background: #fff;
}
.header.is-hero.is-scrolled .menu-content {
  top: 0;
}
@media (min-width: 820px) {
  .header.is-hero.is-scrolled .menu-list--primary {
    color: var(--color-blue-deep);
    text-shadow: none;
  }
  .header.is-hero.is-scrolled .menu-item a {
    text-shadow: none;
  }
  .header.is-hero.is-scrolled .menu-item a::after {
    background-color: var(--color-blue-deep);
    box-shadow: none;
  }
  .header.is-hero.is-scrolled .menu-item a.outlink::after {
    background-image: url("../img/common/icon_arrow.svg");
  }
  .header.is-hero.is-scrolled .menu-item--has-dropdown > a::before {
    background-color: var(--color-blue-deep);
  }
  .header.is-hero.is-scrolled a span::after {
    background-color: var(--color-blue-deep);
  }
  .header.is-hero.is-scrolled {
    /* SP: 職種一覧の2階層目 */
  }
  .header.is-hero.is-scrolled .menu-list-second {
    background-color: #fff;
    box-shadow: none;
  }
  .header.is-hero.is-scrolled .menu-list-second-item {
    border-left-color: var(--color-blue-deep);
  }
}

/* --------------------------------------------------------
footer
   -------------------------------------------------------- */
.footer {
  background: #fff;
}
.footer .scroll-text {
  color: var(--color-blue-deep);
  position: relative;
  margin-top: 3.5897435897vw;
  margin-bottom: 12.8205128205vw;
  overflow: visible;
}
@media (min-width: 820px) {
  .footer .scroll-text {
    height: clamp(120px, 11.1111111111vw, 160px);
    margin-bottom: 0;
    margin-top: 0;
  }
}
.footer a.outlink::after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon_arrow.svg") center/contain no-repeat;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  margin-bottom: -2px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12.8205128205vw;
  padding: 0;
  /* @media (width >= 780px) {
  } */
}
@media (min-width: 820px) {
  .footer-content {
    grid-template-columns: 50vw 50vw;
    gap: 0;
    margin: 0 auto;
    padding: 0;
  }
}

.footer-left {
  background: var(--color-beige);
  padding: 12.8205128205vw 10.2564102564vw 7.6923076923vw;
}
@media (max-width: 819px) {
  .footer-left {
    order: 2;
  }
}
@media (min-width: 820px) {
  .footer-left {
    padding: 4.8780487805vw 4.8780487805vw;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .footer-left {
    padding: 6.9444444444vw 0 5.5555555556vw 6.9444444444vw;
  }
}
@media (min-width: 1600px) {
  .footer-left {
    padding: 100px 160px 80px;
  }
}

.footer-right {
  padding: 0 10.2564102564vw;
}
@media (max-width: 819px) {
  .footer-right {
    order: 1;
  }
}
@media (min-width: 820px) {
  .footer-right {
    padding: 4.8780487805vw 4.8780487805vw;
  }
}
@media (min-width: 1024px) {
  .footer-right {
    padding: 6.9444444444vw 0 5.5555555556vw 6.9444444444vw;
  }
}
@media (min-width: 1600px) {
  .footer-right {
    padding: 100px 160px 80px 150px;
  }
}

.footer-logo {
  margin-bottom: 7.6923076923vw;
}
.footer-logo img {
  width: 66.6666666667vw;
}
@media (any-hover: hover) {
  .footer-logo img:hover {
    opacity: 0.7;
  }
}
@media (min-width: 820px) {
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-logo img {
    width: 24.3055555556vw;
    max-width: 350px;
  }
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-social a {
  width: 7.6923076923vw;
  /* height: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .footer-social a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 820px) {
  .footer-social {
    gap: 30px;
  }
  .footer-social a {
    width: 30px;
    height: 30px;
  }
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-blue-deep);
}
@media (min-width: 820px) {
  .footer-copyright {
    margin-top: auto;
  }
}

/* footer-menu-content */
.footer-menu-content {
  margin-bottom: 30px;
}
@media (min-width: 820px) {
  .footer-menu-content {
    margin-bottom: 60px;
  }
}

.footer-menu-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 10px;
  row-gap: 10px;
  color: var(--color-blue-deep);
  font-size: var(--font-size-14);
  font-weight: bold;
}
@media (min-width: 820px) {
  .footer-menu-list {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 150px 1fr; /* 左カラムの幅を固定または調整 */
    column-gap: 0;
    row-gap: 0;
  }
}
@media (min-width: 1024px) {
  .footer-menu-list {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 240px 1fr; /* 左カラムの幅を固定または調整 */
  }
}

@media (min-width: 820px) {
  .footer-menu-item--jobs {
    grid-column: 1;
    grid-row: 1/10; /* 右側のメニュー数に合わせて行を結合 */
  }
  /* 右側のメニューを2列目に強制 */
  .menu-item:not(.footer-menu-item--jobs) {
    grid-column: 2;
  }
}
.footer .menu-item a {
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  color: inherit;
}
@media (any-hover: hover) {
  .footer .menu-item a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 820px) {
  .footer .menu-item a {
    width: auto;
  }
}

.footer .footer-menu-item--jobs > a {
  display: inline-block;
}

.footer .menu-list-second {
  position: static;
  margin-top: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  border-left: 1px solid var(--color-blue-deep);
}

.footer .menu-list-second-item {
  padding: 0 0 0 17px;
}
.footer .menu-list-second-item a {
  position: relative;
  padding-left: 1.2em;
  padding: 4px 0;
  display: inline-block;
}
.footer .menu-list-second-item a::before {
  content: "-";
  padding-right: 3px;
}
.footer .menu-list-second-item .sub-menu {
  padding-left: 12px;
}
.footer .menu-list-second-item .sub-menu li {
  padding: 4px 0;
  font-weight: bold;
}

.footer-links {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--color-blue-deep);
  font-size: clamp(13px, 9.296px + 0.987vw, 17px);
}
@media (min-width: 820px) {
  .footer-links a {
    font-size: var(--font-size-14);
  }
}

/* --------------------------------------------------------
	fixed-btns
   -------------------------------------------------------- */
.fixed-btns {
  position: fixed;
  bottom: 5.1282051282vw;
  right: 5.1282051282vw;
  z-index: 100;
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.fixed-btns.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 820px) {
  .fixed-btns {
    bottom: 30px;
    right: 30px;
    gap: 20px;
  }
}

.fixed__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.641025641vw;
  height: 25.641025641vw;
  border-radius: 50% 50% 0 50%;
  background: var(--color-orange-deep);
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  /* 右下を基点にscale */
  transform-origin: bottom right;
  transition: transform 0.3s ease;
  /* 右下の三角装飾（小） */
}
.fixed__entry::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background: var(--color-orange);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
@media (min-width: 820px) {
  .fixed__entry {
    width: 120px;
    height: 120px;
  }
  .fixed__entry::after {
    width: 34px;
    height: 34px;
  }
}
@media (any-hover: hover) {
  .fixed__entry:hover {
    transform: scale(1.12);
  }
}

.fixed__entry-text {
  position: relative;
  z-index: 1;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (min-width: 820px) {
  .fixed__entry-text {
    font-size: 16px;
  }
}

.fixed__entry-triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 15px;
  background: var(--color-yellow-deep);
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  z-index: 2;
}

/* pagetop-btn */
.pagetop-btn {
  background: #fff;
  border: 2px solid var(--color-blue-deep);
  color: var(--color-blue-deep);
  border-radius: 50%;
  width: 10.2564102564vw;
  height: 10.2564102564vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease-in;
}
@media (min-width: 820px) {
  .pagetop-btn {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
    max-width: 40px;
    max-height: 40px;
  }
}
.pagetop-btn::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  clip-path: polygon(100% 60%, 50% 10%, 0 60%, 10% 70%, 50% 30%, 90% 70%);
  background: var(--color-blue-deep);
  transition: 0.2s ease-in;
}
@media (any-hover: hover) {
  .pagetop-btn:hover {
    border-color: #fff;
    background: var(--color-blue-deep);
  }
  .pagetop-btn:hover::before {
    background: #fff;
  }
}

/* --------------------------------------------------------
hero
   -------------------------------------------------------- */
.hero {
  position: relative;
  height: calc(100vh + 10.2564102564vw); /* news-innder::before */
  display: flex;
  align-items: flex-end;
  padding: 55px 20px;
  margin-top: 0;
  overflow: hidden;
  /* グラデーションオーバーレイ（動画の上に重ねる） */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
@media (min-width: 820px) {
  .hero {
    height: calc(100vh + 4.1666666667vw); /* news-innder::before */
    padding: 0 20px 5.5555555556vw;
  }
}

/* KV */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 819px) {
  .hero-content {
    margin-bottom: 38.4615384615vw;
  }
}
@media (min-width: 820px) {
  .hero-content {
    display: flex;
    flex-direction: column-reverse;
    letter-spacing: 0.02em;
  }
}

@media (min-width: 820px) {
  .hero-text {
    display: flex;
    flex-direction: row-reverse;
    /* align-items: center; */
    justify-content: flex-end;
    gap: 50px;
    margin-left: 30px;
  }
}

.hero-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 19.4871794872vw;
  font-weight: 600;
  line-height: 1.2;
  text-indent: -0.05em;
}
@media (min-width: 820px) {
  .hero-title {
    font-size: 11.1111111111vw;
    line-height: 1;
  }
}

.hero-subtitle {
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 820px) {
  .hero-subtitle {
    font-size: 2.2222222222vw;
    font-weight: 500;
    display: flex;
    align-items: flex-end;
    line-height: 2.5;
  }
}

.hero-label {
  font-size: var(--font-size-14);
  font-weight: bold;
  margin-top: -2.5641025641vw;
  margin-left: -1.9487179487vw;
}
@media (min-width: 820px) {
  .hero-label {
    text-indent: -0.35em;
    font-size: 2.0833333333vw;
    font-weight: 500;
    margin-left: calc(30px + clamp(-8px, -11.627px + 0.93vw, -4px));
  }
}

/* --------------------------------------------------------
section-header
   -------------------------------------------------------- */
.section-header {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-blue-deep);
}
.section-header.-white {
  color: #fff;
}
.section-header.-white .section-line {
  background: #fff;
}
.section-header .section-title-en {
  font-family: "Albert Sans", sans-serif;
  font-size: 4.1025641026vw;
}
@media (min-width: 820px) {
  .section-header .section-title-en {
    font-size: 2.7777777778vw;
  }
}
@media (min-width: 1440px) {
  .section-header .section-title-en {
    font-size: 2.5rem;
  }
}
.section-header .section-title-ja {
  font-size: 9.2307692308vw;
  letter-spacing: 0.68px;
}
.section-header .section-title-ja small {
  font-size: 5.641025641vw;
}
@media (min-width: 820px) {
  .section-header .section-title-ja {
    font-size: 4.8611111111vw;
  }
  .section-header .section-title-ja small {
    font-size: 3.0555555556vw;
  }
  .section-header .section-title-ja .ff-Albert {
    font-size: 105%;
  }
}
@media (min-width: 1440px) {
  .section-header .section-title-ja {
    font-size: 4.375rem;
  }
  .section-header .section-title-ja small {
    font-size: 2.75rem;
  }
}
@media (min-width: 820px) {
  .section-header {
    font-size: 4.8611111111vw;
    display: block;
    margin-bottom: 15px;
  }
  .section-header.-sm .section-title-ja {
    font-size: 3.3333333333vw;
  }
  .section-header.-sm .section-title-en {
    font-size: 1.3888888889vw;
  }
}
@media (min-width: 960px) {
  .section-header.-sm .section-title-ja {
    font-size: 3.4722222222vw;
  }
}
@media (min-width: 1440px) {
  .section-header {
    font-size: 70px;
  }
  .section-header.-sm .section-title-ja {
    font-size: 50px;
  }
  .section-header.-sm .section-title-en {
    font-size: 20px;
  }
}

.section-tagline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 7px;
}
@media (min-width: 820px) {
  .section-tagline {
    gap: 10px;
    margin-bottom: 10px;
  }
}

.section-line {
  flex: 1;
  height: 2px;
  background: var(--color-blue-deep);
  transition: var(--transition-base);
}

.section-description {
  color: var(--color-blue-deep);
  font-size: var(--font-size-15);
  margin-bottom: 30px;
}
.section-description.-white {
  color: #fff;
}
@media (min-width: 820px) {
  .section-description {
    margin-bottom: 5.5555555556vw;
    font-size: var(--font-size-18);
  }
}

/* --------------------------------------------------------
news
   -------------------------------------------------------- */
.news-section {
  position: relative;
  background: var(--color-beige);
  /* overflow: hidden; */
}
@media (min-width: 820px) {
  .news-section {
    display: flex;
    justify-content: end;
  }
}
.news-section .scroll-text {
  color: #fff;
  z-index: 1;
  position: absolute;
  bottom: 2.0512820513vw;
}
.news-section .character-illust01 {
  position: relative;
  margin: 0 auto 40px;
  max-width: 200px;
}
@media (min-width: 820px) {
  .news-section .character-illust01 {
    margin: 0;
    position: absolute;
    left: -15.5555555556vw;
    bottom: 100px;
    width: 17.6388888889vw;
    max-width: 254px;
  }
}
@media (min-width: 1440px) {
  .news-section .character-illust01 {
    left: -224px;
  }
}

.news-content {
  position: relative;
  z-index: 1;
  padding: 0 0 10.7692307692vw 11.5384615385vw;
}
@media (min-width: 820px) {
  .news-content {
    padding-left: 0;
    width: 75vw;
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .news-content {
    width: 81.25vw;
    max-width: 1650px;
  }
}

.news-inner {
  background: var(--color-blue);
  padding: 15.3846153846vw 6.1538461538vw;
  position: relative;
}
@media (min-width: 820px) {
  .news-inner {
    padding: 6.9444444444vw 4.1666666667vw 9.7222222222vw;
    display: flex;
    gap: 4.5833333333vw;
  }
}
@media (min-width: 1450px) {
  .news-inner {
    gap: 100px;
    padding: 100px 60px 140px;
  }
}
.news-inner::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 10.2564102564vw;
  top: -10vw;
  right: 0;
  background: var(--color-blue);
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0 100%);
}
@media (min-width: 820px) {
  .news-inner::before {
    width: 51.0416666667vw;
    height: 4.1666666667vw;
    top: -4.0972222222vw;
    clip-path: polygon(7.5% 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

#newsList {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 25px;
}
@media (min-width: 820px) {
  #newsList {
    margin-top: 0;
    width: 47.9166666667vw;
  }
}
@media (min-width: 1440px) {
  #newsList {
    width: 52.0833333333vw;
  }
}
#newsList dl {
  border-bottom: 1px solid #fff;
  padding-bottom: 24px;
}
#newsList dl:last-of-type {
  border-bottom: none;
}
#newsList dl dt {
  font-family: var(--font-Albert);
  font-size: var(--font-size-14);
  color: #fff;
}
#newsList dl dd {
  font-size: var(--font-size-15);
  color: #fff;
}
@media (min-width: 820px) {
  #newsList dl dd {
    font-size: var(--font-size-18);
  }
}
@media (any-hover: hover) {
  #newsList a:hover {
    text-decoration: underline;
  }
}

/* --------------------------------------------------------
job
   -------------------------------------------------------- */
.job-types-section {
  background: var(--color-beige);
  padding: 20.5128205128vw 0;
  position: relative;
}
.job-types-section::after {
  content: "";
  width: 100vw;
  height: 100vw;
  position: absolute;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  background: #fff;
}
@media (max-width: 819px) {
  .job-types-section::before {
    content: "";
    background: url(../img/index/illust@2x.png) center no-repeat;
    background-size: contain;
    display: inline-block;
    width: 140px;
    height: 160px;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 2;
  }
  .job-types-section .section-description {
    margin-right: 12.8205128205vw;
  }
}
@media (min-width: 820px) {
  .job-types-section {
    padding: 6.9444444444vw 0 9.0277777778vw;
  }
  .job-types-section::after {
    height: 100%;
  }
}
@media (min-width: 1240px) {
  .job-types-section {
    padding: 100px 0 130px;
  }
}
@media (min-width: 1680px) {
  .job-types-section .container {
    padding: 0;
  }
}

.job-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 820px) {
  .job-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.job-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  color: var(--color-orange-deep);
  transition: background-color 0.6s ease;
}
.job-card a {
  transition: all 0.4s linear;
}
@media (min-width: 820px) {
  .job-card a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .job-card .btn {
    position: relative;
    width: 8.8888888889vw;
    height: 8.8888888889vw;
    max-width: 128px;
    max-height: 128px;
  }
}
.job-card .job-img {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 820px) {
  .job-card .job-img {
    height: 20.8333333333vw;
    max-height: 300px;
  }
}
.job-card .job-img img {
  width: 100%;
  height: 41.5384615385vw;
  object-fit: cover;
  transition: transform 0.3s linear;
}
@media (min-width: 820px) {
  .job-card .job-img img {
    height: 20.8333333333vw;
    max-height: 300px;
  }
}
@media (any-hover: hover) {
  .job-card:hover {
    background: var(--color-blue-deep);
    color: #fff;
  }
  .job-card:hover .job-img img {
    transform: scale(1.1);
  }
  .job-card:hover .job-tag {
    border-color: #fff;
    background-color: transparent;
  }
  .job-card:hover .job-icon img {
    opacity: 0;
  }
  .job-card:hover .job-icon img:last-of-type {
    opacity: 1;
  }
}

.job-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border: 1px solid var(--color-orange-deep);
  font-size: var(--font-size-11);
  line-height: 1.2;
  padding: 3px 8px;
  transition: var(--transition-base);
}
@media (min-width: 820px) {
  .job-tag {
    top: 22.2222222222vw;
    right: 10.2777777778vw;
    left: inherit;
  }
}
@media (min-width: 1440px) {
  .job-tag {
    top: 320px;
    right: 148px;
  }
}

.job-content {
  padding: 5.1282051282vw 5.1282051282vw 7.6923076923vw;
}
@media (min-width: 820px) {
  .job-content {
    padding: 10px 1.7361111111vw 1.6666666667vw;
    width: calc(100% - 8.8888888889vw);
    height: 8.8888888889vw;
    max-width: calc(100% - 128px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1440px) {
  .job-content {
    padding: 10px 25px 22px;
    height: 128px;
    width: 100%;
  }
}
.job-content h3 {
  padding-right: 17.9487179487vw;
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 820px) {
  .job-content h3 {
    font-size: var(--font-size-32);
    padding-right: 0;
    line-height: 1;
  }
}

.job-type {
  display: flex;
  align-items: center;
  gap: 2.5641025641vw;
  margin-bottom: 6px;
}
.job-type .job-icon {
  width: 7.6923076923vw;
  height: 7.6923076923vw;
  position: relative;
}
.job-type img {
  transition: all 0.4s linear;
}
.job-type img.hover {
  display: none;
}
.job-type span {
  font-size: var(--font-size-15);
}
@media (min-width: 820px) {
  .job-type {
    gap: clamp(6px, 0.6944444444vw, 10px);
    margin-bottom: 5px;
  }
  .job-type.-jyomu {
    gap: 14px;
  }
  .job-type .job-icon {
    width: 30px;
    height: 30px;
  }
  .job-type .job-icon img {
    position: absolute;
    left: 0;
    width: 100%;
  }
  .job-type .job-icon img.hover {
    display: inline-block;
    opacity: 0;
  }
  .job-type span {
    font-size: var(--font-size-16);
  }
}
@media (min-width: 1440px) {
  .job-type .job-icon {
    width: 36px;
    height: 36px;
  }
}

/* --------------------------------------------------------
daily
   -------------------------------------------------------- */
.daily-life-section {
  background: var(--color-yellow);
  padding: 20.5128205128vw 0 41.0256410256vw;
  color: #fff;
  position: relative;
}
.daily-life-section .section-description {
  margin-bottom: 60px;
}
@media (min-width: 820px) {
  .daily-life-section {
    padding: 6.9444444444vw 0 13.8888888889vw;
  }
  .daily-life-section .section-header {
    padding: 0 60px;
  }
  .daily-life-section .section-description {
    margin-bottom: 80px;
    padding: 0 60px;
  }
  .daily-life-section .container {
    padding: 0;
    width: 100%;
    max-width: inherit;
  }
}
@media (min-width: 1240px) {
  .daily-life-section {
    padding: 100px 0 160px;
  }
}
.daily-life-section .scroll-text {
  color: var(--color-orange-deep);
  position: absolute;
  bottom: 43.5897435897vw;
  transform: translateY(clamp(68px, 42.074px + 6.913vw, 96px));
  z-index: 2;
}
@media (min-width: 820px) {
  .daily-life-section .scroll-text {
    bottom: clamp(155px, -5.565rem + 29.76vw, 280px);
  }
}
@media (min-width: 1240px) {
  .daily-life-section .scroll-text {
    bottom: 225px;
  }
}
.daily-life-section .daily-img {
  position: absolute;
  z-index: 1;
}
.daily-life-section .daily-img.-sm {
  width: 28.2051282051vw;
  height: 28.2051282051vw;
  left: 0;
  bottom: 19.4871794872vw;
}
@media (min-width: 820px) {
  .daily-life-section .daily-img.-sm {
    width: 13.0555555556vw;
    height: 13.0555555556vw;
    max-width: 188px;
    max-height: 188px;
    top: calc(50% - 19.4444444444vw);
    right: 6.9444444444vw;
    bottom: inherit;
    left: inherit;
  }
}
@media (min-width: 1240px) {
  .daily-life-section .daily-img.-sm {
    top: calc(50% - 240px);
    right: 100px;
  }
}
.daily-life-section .daily-img.-lg {
  width: 38.4615384615vw;
  height: 38.4615384615vw;
  right: 10.2564102564vw;
  bottom: -16.4102564103vw;
}
@media (min-width: 820px) {
  .daily-life-section .daily-img.-lg {
    width: 16.3888888889vw;
    height: 16.3888888889vw;
    max-width: 236px;
    max-height: 236px;
    right: calc(50% - 27.7777777778vw);
    bottom: 11.1111111111vw;
  }
}
@media (min-width: 1240px) {
  .daily-life-section .daily-img.-lg {
    right: calc(50% - 400px);
  }
}
@media (min-width: 1280px) {
  .daily-life-section .daily-img.-lg {
    bottom: 80px;
  }
}

.daily-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 6.1538461538vw 5.1282051282vw 25.641025641vw;
  background: var(--color-orange-deep);
  position: relative;
}
@media (min-width: 820px) {
  .daily-content {
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 1fr calc(750 / 1440 * 100vw); */
    gap: 0;
    padding: 0;
    background: transparent;
  }
}
@media (min-width: 1240px) {
  .daily-content {
    grid-template-columns: 640px 1fr;
  }
}
@media (min-width: 1600px) {
  .daily-content {
    max-width: 1600px;
    margin: 0 auto;
    overflow: visible;
    /* 右側にオレンジ帯（daily-textの高さ406px） */
  }
  .daily-content::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 232px);
    left: 100%;
    width: 50vw;
    height: 406px;
    background: var(--color-orange-deep);
    transition: var(--transition-base);
  }
  .daily-content {
    /* .daily-text > a ホバー時に左右のオレンジ帯を白に変化 */
  }
  .daily-content.is-hovered::after {
    background: #fff;
  }
}
.daily-content::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 10.2564102564vw;
  top: -10vw;
  right: 0;
  background: var(--color-orange-deep);
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0 100%);
}
@media (min-width: 820px) {
  .daily-content::before {
    content: none;
  }
}
.daily-content .btn {
  color: var(--color-orange-deep);
}
@media (min-width: 820px) {
  .daily-content .btn {
    width: 8.8888888889vw;
    height: 8.8888888889vw;
    max-width: 128px;
    max-height: 128px;
  }
}

.daily-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media (min-width: 820px) {
  .daily-image {
    width: auto;
    max-width: 640px;
    margin-left: 0;
    grid-row: 1/10;
    grid-column: 1;
    position: relative;
  }
}
@media (min-width: 1600px) {
  .daily-image {
    /* .daily-textと同じ高さのオレンジ帯を左側に表示 */
  }
  .daily-image::before {
    content: "";
    position: absolute;
    top: calc(50% - 233px);
    bottom: 0;
    right: 100%;
    width: 50vw;
    height: 466px;
    background: var(--color-orange-deep);
    transition: var(--transition-base);
  }
  .daily-image {
    /* .daily-text > a ホバー時に左帯を白に変化 */
  }
  .is-hovered .daily-image::before {
    background: #fff;
  }
}
.daily-image img {
  width: 100%;
}

.daily-text {
  font-size: var(--font-size-15);
  width: 100%;
}
.daily-text > a {
  display: block;
}
.daily-text > a::before {
  transition: var(--transition-base);
}
.daily-text > a p {
  max-width: 100%;
  word-break: break-word;
}
.daily-text .daily-top {
  font-size: clamp(22px, 14.592px + 1.975vw, 30px);
  font-weight: 700;
  margin-bottom: 14px;
}
@media (min-width: 820px) {
  .daily-text {
    grid-column: 2;
    grid-row: 5;
  }
  .daily-text > a {
    display: block;
    height: inherit;
    font-size: var(--font-size-18);
    padding: 5.5555555556vw 1.3888888889vw 8.8888888889vw 3.4722222222vw;
    background: var(--color-orange-deep);
    position: relative;
  }
  .daily-text > a::before {
    content: "";
    position: absolute;
    width: 26.25vw;
    height: 4.1666666667vw;
    top: -4.0972222222vw;
    left: 0;
    background: var(--color-orange-deep);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  }
  .daily-text .daily-top {
    font-size: clamp(26px, 15.3px + 1.3vw, 32px);
    margin-bottom: 25px;
  }
}
@media (min-width: 1240px) {
  .daily-text {
    height: 406px;
    grid-row: 6;
  }
  .daily-text > a {
    padding: 80px 10px 80px 50px;
  }
  .daily-text .daily-top {
    font-size: clamp(30px, 13.2px + 2vw, 40px);
  }
}
@media (min-width: 1600px) {
  .daily-text > a::before {
    width: 378px;
    height: 60px;
    top: -59px;
  }
}
@media (any-hover: hover) {
  .daily-text a:hover {
    background: #fff;
    color: var(--color-orange-deep);
  }
  .daily-text a:hover::before {
    background: #fff;
  }
  .daily-text a:hover .btn {
    background: var(--color-yellow-deep);
    color: #fff;
  }
  .daily-text a:hover .btn::before {
    background: var(--color-orange);
  }
  .daily-text a:hover .btn::after {
    background: var(--color-orange-deep);
  }
}

/* --------------------------------------------------------
support
   -------------------------------------------------------- */
.support-section {
  background: var(--color-beige);
  padding: 35.8974358974vw 0 10.2564102564vw;
  position: relative;
}
.support-section .section-description {
  margin-bottom: 80px;
}
@media (min-width: 820px) {
  .support-section {
    padding: 11.1111111111vw 0 4.1666666667vw;
  }
  .support-section .container {
    max-width: inherit;
    padding: 0;
  }
  .support-section .section-header {
    padding: 0 60px;
  }
  .support-section .section-description {
    padding: 0 60px;
    margin-top: 20px;
  }
}
@media (min-width: 1240px) {
  .support-section {
    padding: 160px 0 60px;
  }
}
.support-section::after {
  content: "";
  width: 100vw;
  height: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background: #fff;
}
@media (min-width: 820px) {
  .support-section::after {
    width: 100%;
  }
}
.support-section .character-illust02 {
  width: 155px;
  height: 120px;
  position: absolute;
  right: 12.8205128205vw;
  bottom: -15.3846153846vw;
  z-index: 1;
}
@media (min-width: 820px) {
  .support-section .character-illust02 {
    width: 14.4444444444vw;
    height: 14.6527777778vw;
    top: -9.7222222222vw;
    right: 6.9444444444vw;
  }
}

.support-content {
  display: grid;
  grid-template-columns: 1fr;
  padding: 6.1538461538vw 0 10.2564102564vw;
  background: var(--color-blue);
  position: relative;
}
@media (min-width: 820px) {
  .support-content {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 1fr 44.4444444444vw;
    gap: 0;
    padding: 0;
    background: transparent;
  }
}
@media (min-width: 1440px) {
  .support-content {
    grid-template-columns: 1fr 640px;
  }
}
@media (min-width: 1600px) {
  .support-content {
    max-width: 1600px;
    margin: 0 auto;
    overflow: visible;
    /* 左側に青帯（support-listの高さ450px） */
  }
  .support-content::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 249px);
    right: 100%;
    width: 50vw;
    height: 450px;
    background: var(--color-blue);
    transition: var(--transition-base);
  }
  .support-content {
    /* .support-content > a ホバー時に左帯を水色に変化 */
  }
  .support-content.is-hovered::after {
    background: var(--color-blue-sky);
  }
}
.support-content::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 10.2564102564vw;
  top: -10vw;
  right: 0;
  background: var(--color-blue);
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0 100%);
}
@media (min-width: 820px) {
  .support-content::before {
    content: none;
  }
}
.support-content > a {
  position: relative;
}
@media (min-width: 820px) {
  .support-content > a {
    grid-row: 6;
    grid-column: 1;
  }
}
@media (any-hover: hover) {
  .support-content > a:hover .btn {
    background: var(--color-blue-deep);
    color: #fff;
  }
  .support-content > a:hover .support-list {
    background: var(--color-blue-sky);
  }
  .support-content > a:hover .support-list::before {
    background: var(--color-blue-sky);
  }
  .support-content > a:hover .support-item {
    color: var(--color-blue-deep);
    border-color: var(--color-blue-deep);
  }
  .support-content > a:hover .support-item .icon_check {
    border-color: var(--color-blue-deep);
  }
}
.support-content .btn-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 820px) {
  .support-content .btn-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 820px) {
  .support-content .btn {
    width: 8.8888888889vw;
    height: 8.8888888889vw;
    max-width: 128px;
    max-height: 128px;
  }
}

.support-list {
  padding: 0 5.1282051282vw 17.9487179487vw;
  font-size: clamp(19px, 14.37px + 1.234vw, 24px);
  font-weight: 500;
  transition: var(--transition-base);
}
@media (min-width: 820px) {
  .support-list {
    padding: 4.1666666667vw 8.8888888889vw 5.5555555556vw 3.4722222222vw;
    font-size: var(--font-size-32);
    position: relative;
    background: var(--color-blue);
  }
  .support-list::before {
    content: "";
    position: absolute;
    background: var(--color-blue);
    width: 26.25vw;
    height: 4.1666666667vw;
    top: -4.0972222222vw;
    right: 0;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0 100%);
    transition: var(--transition-base);
  }
}
@media (min-width: 1440px) {
  .support-list {
    padding: 80px 128px 80px 50px;
    height: 450px;
  }
}
@media (min-width: 1600px) {
  .support-list::before {
    width: 378px;
    height: 60px;
    top: -59px;
  }
}

.support-item {
  display: flex;
  align-items: baseline;
  gap: 3.0769230769vw;
  padding: 2.5641025641vw 5.1282051282vw 2.5641025641vw 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  position: relative;
  transition: var(--transition-base);
}
.support-item:last-of-type {
  border-bottom: none;
}
@media (min-width: 820px) {
  .support-item {
    gap: 14px;
    padding: 12px 0;
    font-size: var(--font-size-32);
    line-height: 1.3;
  }
}

.support-image {
  /* width: calc(100vw - calc(20 / 390 * 100vw)); */
  margin-left: calc(50% - 50vw);
}
.support-image img {
  width: 100%;
}
@media (min-width: 820px) {
  .support-image {
    width: auto;
    margin-left: 0;
    grid-column: 2;
    grid-row: 1/10;
    position: relative;
  }
}
@media (min-width: 1600px) {
  .support-image {
    /* 右側に青帯（support-listの高さ450px） */
  }
  .support-image::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 259px);
    left: 100%;
    width: 50vw;
    height: 509px;
    background: var(--color-blue);
    transition: var(--transition-base);
  }
  .support-image {
    /* .support-content > a ホバー時に右帯を水色に変化 */
  }
  .is-hovered .support-image::after {
    background: var(--color-blue-sky);
  }
}

/* --------------------------------------------------------
statistics
   -------------------------------------------------------- */
.statistics-section {
  background: var(--color-beige);
  padding: 20.5128205128vw 0 35.8974358974vw;
}
@media (min-width: 820px) {
  .statistics-section {
    padding: 5.5555555556vw 0 13.8888888889vw;
  }
}
@media (min-width: 1240px) {
  .statistics-section {
    padding: 80px 0 200px;
  }
}

/* .stats-grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  grid-template-areas: "A B" "C D";
  /* タブレット以上 (820px以上) */
}
@media (min-width: 820px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "A B D" "A C D";
    aspect-ratio: 3/1;
  }
}

.stats-grid__item {
  min-width: 0;
  min-height: 0;
  display: flex;
  padding: 0;
}

@media (max-width: 779px) {
  /* SP時は全カードを正方形に */
  .stats-grid__item {
    aspect-ratio: 1/1;
  }
  .stats-grid__nested-item {
    aspect-ratio: 1/1;
  }
}
.stat-icon {
  margin-bottom: 2.0512820513vw;
}
@media (min-width: 820px) {
  .stat-icon {
    margin-bottom: 0.2777777778vw;
  }
}

.stat-number {
  font-family: var(--font-Albert);
  font-size: 15.8974358974vw;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.stat-number span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12.3076923077vw;
  display: inline-block;
  transform: translateY(-0.05em);
}
@media (min-width: 820px) {
  .stat-number {
    font-size: clamp(58px, 7.2916666667vw, 115px);
  }
  .stat-number span {
    font-size: clamp(44px, 5.9722222222vw, 86px);
  }
}

.stats-grid__item--a {
  grid-area: A;
}
.stats-grid__item--a .stat-card {
  background: var(--color-orange-deep);
  padding-top: 2.5641025641vw;
}
@media (any-hover: hover) {
  .stats-grid__item--a .stat-card:hover {
    background: var(--color-yellow);
  }
}
@media (min-width: 820px) {
  .stats-grid__item--a .stat-number {
    font-size: clamp(70px, 9.7222222222vw, 140px);
  }
  .stats-grid__item--a .stat-number span {
    font-size: clamp(58px, 7.9861111111vw, 115px);
  }
}
.stats-grid__item--a .stat-icon {
  width: 18.4615384615vw;
}
@media (min-width: 820px) {
  .stats-grid__item--a .stat-icon {
    width: 15.1388888889vw;
  }
}

.stats-grid__item--b {
  grid-area: B;
}
.stats-grid__item--b .stat-card {
  background: var(--color-orange);
}
@media (min-width: 820px) {
  .stats-grid__item--b .stat-card {
    background: var(--color-yellow);
  }
}
.stats-grid__item--b .stat-icon {
  width: 14.8717948718vw;
}
@media (min-width: 820px) {
  .stats-grid__item--b .stat-icon {
    width: 7.5vw;
  }
}

.stats-grid__item--c {
  grid-area: C;
}
.stats-grid__item--c .stat-card {
  background: var(--color-yellow);
}
@media (min-width: 820px) {
  .stats-grid__item--c .stat-card {
    background: var(--color-orange);
  }
}
.stats-grid__item--c .stat-icon {
  width: 14.8717948718vw;
}
@media (min-width: 820px) {
  .stats-grid__item--c .stat-icon {
    width: 7.9166666667vw;
  }
}

@media (min-width: 820px) {
  .stats-grid__item--b .stat-card,
  .stats-grid__item--c .stat-card {
    flex-direction: row;
    gap: 1.3888888889vw;
  }
}
.stats-grid__item--d {
  grid-area: D;
}
.stats-grid__item--d .stat-icon {
  margin-bottom: 0;
}
.stats-grid__item--d .stat-icon.-step {
  width: 11.5384615385vw;
}
.stats-grid__item--d .stat-icon.-beginner {
  width: 8.2051282051vw;
}
@media (min-width: 820px) {
  .stats-grid__item--d .stat-icon.-step {
    width: 8.75vw;
  }
  .stats-grid__item--d .stat-icon.-beginner {
    width: 5.9722222222vw;
  }
}

.stats-grid__nested {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  height: 100%;
  width: 100%;
}

.stats-grid__nested-item {
  min-width: 0;
  min-height: 0;
  display: flex;
  padding: 0;
}
.stats-grid__nested-item.-d1 .stat-card {
  background: var(--color-orange-deep);
}
.stats-grid__nested-item.-d2 .stat-card {
  background: var(--color-yellow);
}
.stats-grid__nested-item.-d3 .stat-card {
  background: var(--color-orange);
}
@media (min-width: 820px) {
  .stats-grid__nested-item.-d3 .stat-card {
    background: var(--color-yellow);
  }
}
.stats-grid__nested-item .stat-number {
  font-size: 8.2051282051vw;
}
.stats-grid__nested-item .stat-number span {
  font-size: 6.4102564103vw;
}
@media (min-width: 820px) {
  .stats-grid__nested-item .stat-number {
    font-size: clamp(45px, 6.25vw, 90px);
  }
  .stats-grid__nested-item .stat-number span {
    font-size: clamp(36px, 5vw, 72px);
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 16px; */
  color: #fff;
  font-weight: bold;
  width: 100%;
  height: 100%;
  position: relative;
  transition: var(--transition-base);
}
.stat-card .btn {
  color: var(--color-orange-deep);
  width: 100%;
  height: 100%;
}
@media (min-width: 820px) {
  .stat-card .btn {
    font-size: 28px;
  }
}

@media (any-hover: hover) {
  a.stats-link:hover .stats-grid__item--a .stat-card,
  a.stats-link:hover .stats-grid__item--c .stat-card,
  a.stats-link:hover .stats-grid__nested-item.-d1 .stat-card {
    background: var(--color-yellow);
  }
  a.stats-link:hover .btn {
    background: var(--color-orange-deep);
    color: #fff;
  }
}
/* --------------------------------------------------------
faq
   -------------------------------------------------------- */
.faq-section .container {
  padding: 0;
  max-width: 100%;
}
.faq-section a {
  display: block;
  background: var(--color-blue);
  padding: 38.4615384615vw 0 0 10.2564102564vw;
  position: relative;
}
.faq-section a::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 10.2564102564vw;
  top: -10vw;
  right: 0;
  background: var(--color-blue);
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0 100%);
  transition: var(--transition-base);
}
@media (min-width: 820px) {
  .faq-section a {
    padding: 5.5555555556vw 6.9444444444vw;
  }
  .faq-section a::before {
    content: "";
    position: absolute;
    width: 69.4444444444vw;
    height: 4.1666666667vw;
    top: -4.0972222222vw;
    left: 0;
    background: var(--color-blue);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  }
}
@media (any-hover: hover) {
  .faq-section a:hover {
    background: var(--color-blue-sky);
  }
  .faq-section a:hover::before {
    background: var(--color-blue-sky);
  }
  .faq-section a:hover .faq-text .-white {
    color: var(--color-blue-deep);
  }
  .faq-section a:hover .section-line {
    background: var(--color-blue-deep);
  }
  .faq-section a:hover .btn {
    background: var(--color-blue-deep);
    color: #fff;
  }
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7.6923076923vw;
  background: var(--color-blue-deep);
  padding: 0 10.2564102564vw 15.3846153846vw 7.6923076923vw;
}
.faq-content .faq-text {
  transition: var(--transition-base);
}
@media (min-width: 820px) {
  .faq-content {
    max-width: 1160px;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: transparent;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  .faq-content .faq-inner {
    width: calc(100% - 396px);
    margin-left: 100px;
    display: flex;
    position: relative;
  }
  .faq-content .faq-text {
    width: calc(100% - 8.8888888889vw);
  }
  .faq-content .section-line {
    margin-top: 10px;
  }
  .faq-content .section-description {
    margin-bottom: 0;
  }
  .faq-content .btn {
    width: 8.8888888889vw;
    height: 8.8888888889vw;
    max-width: 128px;
    max-height: 128px;
    bottom: inherit;
    margin-top: 4px;
    top: 0.7638888889vw;
  }
}
@media (min-width: 1260px) {
  .faq-content .btn {
    margin-top: 5px;
  }
}
@media (min-width: 1360px) {
  .faq-content .btn {
    margin-top: 6px;
    top: 9px;
  }
}
@media (min-width: 1440px) {
  .faq-content .faq-inner {
    width: calc(100% - 396px);
  }
  .faq-content .faq-text {
    width: calc(100% - 128px);
  }
  .faq-content .btn {
    top: 11px;
  }
}

.faq-image {
  width: 100vw;
  margin-left: calc(50% - 3.8461538462vw - 50vw);
  margin-top: -23.0769230769vw;
}
.faq-image img {
  width: 49.7435897436vw;
  margin: 0 auto;
}
@media (min-width: 820px) {
  .faq-image {
    width: 196px;
    margin: 0;
  }
  .faq-image img {
    width: 100%;
    margin: 0;
  }
}

/* --------------------------------------------------------
下層共通
   -------------------------------------------------------- */
.main {
  background: var(--color-beige);
  min-height: 100vh;
}
.main.info-main {
  background: #fff;
}
.main .section-tagline {
  color: var(--color-blue-deep);
}
.main .section-title-en {
  font-size: 3.5897435897vw;
  font-family: var(--font-Albert);
}
@media (min-width: 820px) {
  .main .section-title-en {
    font-size: 1.1111111111vw;
  }
}
.main .section-line {
  background: var(--color-blue-deep);
}
.main .section-title-ja {
  color: var(--color-blue-deep);
  font-size: 8.7179487179vw;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 820px) {
  .main .section-title-ja {
    font-size: 2.7777777778vw;
  }
}
.main .section-description {
  font-weight: normal;
  line-height: 1.6;
}
.main .l-hero {
  margin-top: 15.3846153846vw;
}
@media (min-width: 820px) {
  .main .l-hero {
    margin-top: 90px;
  }
}
.main .hero__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 820px) {
  .main .hero__inner {
    flex-direction: row;
    align-items: stretch;
    height: 400px;
    position: relative;
  }
}
.main .hero__body {
  background: var(--color-blue);
  color: #fff;
  padding: 5.1282051282vw 6.1538461538vw 6.1538461538vw;
  display: flex;
  flex-direction: column;
  gap: 4.1025641026vw;
}
@media (min-width: 820px) {
  .main .hero__body {
    width: 36.1111111111vw;
    padding: 4.1666666667vw 2.7777777778vw 4.1666666667vw 3.8888888889vw;
    gap: 20px;
    justify-content: center;
  }
}
@media (min-width: 1240px) {
  .main .hero__body {
    padding: 4.1666666667vw;
  }
}
@media (min-width: 1440px) {
  .main .hero__body {
    width: 720px;
    padding: 80px 70px 80px 70px;
    gap: 25px;
  }
}
@media (min-width: 820px) {
  .main .hero__body .section-tagline {
    position: absolute;
    top: 30px;
    width: calc(100% - 8.3333333333vw);
    z-index: 1;
  }
}
.main .hero__body .section-title-en {
  font-family: var(--font-Albert);
  font-size: var(--font-size-14);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.main .hero__body .section-line {
  background: #fff;
}
.main .hero__body .section-line-col {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #fff;
}
@media (min-width: 820px) {
  .main .hero__body .section-line-col {
    height: 16px;
  }
}
.main .hero__body {
  /* hero内のアイコン */
}
.main .hero__body .hero__icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.main .hero__body .hero__icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  margin-top: 2px;
}
@media (min-width: 820px) {
  .main .hero__body .hero__icon {
    width: 24px;
  }
  .main .hero__body .hero__icon img {
    width: 24px;
    height: 24px;
    margin-top: 0;
    margin-bottom: 5px;
  }
}
.main .hero__title {
  font-size: 8.7179487179vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 820px) {
  .main .hero__title {
    font-size: clamp(36px, 3.0555555556vw, 44px);
    margin-bottom: 24px;
    line-height: 1.4;
  }
}
.main .hero__desc {
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 820px) {
  .main .hero__desc {
    font-size: var(--font-size-18);
  }
}
@media (min-width: 820px) and (max-width: 1439px) {
  .main .hero__desc.-view br:not([class]) {
    display: none !important;
  }
  .main .hero__desc.-view br.pc_view {
    display: inline !important;
  }
  .main .hero__desc.-view br.sp_view {
    display: inline !important;
  }
}
@media (min-width: 1440px) {
  .main .hero__desc.-view br.pc_view {
    display: none !important;
  }
}
.main {
  /* 画像ブロック */
}
.main .hero__img-wrap {
  position: relative;
  overflow: hidden;
  height: 43.5897435897vw;
}
.main .hero__img-wrap img {
  object-position: center center;
  object-fit: cover;
}
@media (min-width: 820px) {
  .main .hero__img-wrap {
    flex: 1;
    height: auto;
  }
  .main .hero__img-wrap img {
    width: 100%;
    height: 100%;
  }
}
.main .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25));
}
.main {
  /* detail */
}
.main .detail-title {
  background: var(--color-blue);
  color: #fff;
  font-size: var(--font-size-20);
  padding: 3.0769230769vw 12.8205128205vw;
  margin: 20px 0 30px;
  position: relative;
}
@media (min-width: 820px) {
  .main .detail-title {
    font-size: var(--font-size-26);
    padding: 20px 50px;
    margin: 0 0 40px;
  }
}
@media (min-width: 1024px) {
  .main .detail-title {
    margin: 0 0 60px;
  }
}
.main .detail-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--color-blue-light);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

/* --------------------------------------------------------
   contact
   -------------------------------------------------------- */
.contact {
  padding: 12.8205128205vw 5.1282051282vw;
  overflow: hidden;
}
@media (min-width: 820px) {
  .contact {
    padding: 5.5555555556vw 6.9444444444vw;
  }
}
.contact .container {
  padding: 8.9743589744vw 7.6923076923vw;
  position: relative;
  background: var(--color-blue);
}
.contact .container::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 10.2564102564vw;
  top: -10vw;
  right: 0;
  background: var(--color-blue);
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0 100%);
  transition: var(--transition-base);
}
@media (min-width: 820px) {
  .contact .container {
    padding: 5.5555555556vw 6.9444444444vw;
  }
  .contact .container::before {
    content: "";
    position: absolute;
    width: 26.25vw;
    height: 4.1666666667vw;
    top: -4.0972222222vw;
    left: 0;
    background: var(--color-blue);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  }
}
@media (min-width: 1240px) {
  .contact .container {
    padding: 80px 100px 120px;
  }
}

.contact__title {
  font-size: clamp(24px, 8.2051282051vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 820px) {
  .contact__title {
    font-size: var(--font-size-32);
    text-align: center;
    margin-bottom: 14px;
  }
}

.contact__lead {
  font-size: var(--font-size-15);
  color: #fff;
  margin-bottom: 9.2307692308vw;
}
@media (min-width: 820px) {
  .contact__lead {
    font-size: var(--font-size-18);
    text-align: center;
    margin-bottom: 4.1666666667vw;
  }
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.2307692308vw;
}
@media (min-width: 820px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5.5555555556vw, 100px);
  }
}

.contact__block {
  color: #fff;
}
.contact__block.-mail .contact__block-title::before {
  background: url(../img/common/icon_mail.svg) no-repeat center/contain;
}
.contact__block.-mail .btn-more {
  bottom: inherit;
  top: 0;
}
@media (min-width: 820px) {
  .contact__block.-mail .btn-more {
    width: 85px;
    height: 85px;
  }
}
@media (any-hover: hover) {
  .contact__block.-mail .btn-more:hover {
    background: var(--color-blue-deep);
    color: #fff;
  }
  .contact__block.-mail .btn-more:hover .icon_triangle::before {
    background: var(--color-blue-black);
  }
  .contact__block.-mail .btn-more:hover .icon_triangle::after {
    background: var(--color-blue-light);
  }
}
.contact__block.-tel .contact__block-title::before {
  background: url(../img/common/icon_tel.svg) no-repeat center/contain;
}
@media (min-width: 820px) {
  .contact__block.-tel .contact__block-inner {
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }
}

.contact__block-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--font-size-24);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4.1025641026vw;
  line-height: 1.2;
}
@media (min-width: 820px) {
  .contact__block-title {
    font-size: var(--font-size-30);
    margin-bottom: 16px;
  }
}
.contact__block-title::before {
  content: "";
  display: inline-block;
  width: 10.2564102564vw;
  height: 10.2564102564vw;
}
@media (min-width: 820px) {
  .contact__block-title::before {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
    max-width: 40px;
    max-height: 40px;
  }
}

.contact__block-inner {
  position: relative;
  padding-top: 4.1025641026vw;
  border-top: 1px solid #fff;
}
@media (min-width: 820px) {
  .contact__block-inner {
    padding-top: 16px;
  }
}

.contact__block-desc {
  font-size: var(--font-size-15);
  line-height: 1.8;
}
@media (min-width: 820px) {
  .contact__block-desc {
    width: 55%;
    font-size: var(--font-size-16);
  }
}
@media (min-width: 960px) {
  .contact__block-desc {
    width: 52%;
  }
}
@media (min-width: 1240px) {
  .contact__block-desc .pc_view {
    display: none;
  }
}
@media (min-width: 820px) and (max-width: 1439px) {
  .contact__block-desc br:not([class]) {
    display: none !important;
  }
  .contact__block-desc br.pc_view {
    display: inline !important;
  }
  .contact__block-desc br.sp_view {
    display: inline !important;
  }
}
@media (min-width: 1440px) {
  .contact__block-desc br.pc_view {
    display: none !important;
  }
}

.contact__tel {
  font-family: var(--font-Albert);
  font-weight: 600;
  font-size: var(--font-size-24);
  letter-spacing: 0.01em;
  margin-top: 2.5641025641vw;
}
@media (min-width: 820px) {
  .contact__tel {
    font-size: var(--font-size-26);
    text-align: right;
    margin: 0;
    width: 48%;
  }
}

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