@charset "UTF-8";
@layer resets {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden=until-found])) {
    display: none !important;
  }
  :where(html) {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    color-scheme: dark light;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    scrollbar-gutter: stable;
    interpolate-size: allow-keywords;
    line-height: 1.5;
    scroll-padding-top: 0.3em;
    scroll-behavior: smooth;
    min-width: 310px;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    font-family: var(--font-jp);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    color: #333;
    background-color: #ffffff;
  }
  html.active,
  body.active {
    overflow: hidden;
    height: 100%;
  }
  :where(section) {
    position: relative;
    overflow-x: hidden;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    background-color: #fff;
  }
  :where(button) {
    all: unset;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
  }
  :where(:disabled, label:has(> :disabled, + disabled)) {
    cursor: not-allowed;
  }
  :where(a) {
    color: inherit;
    text-underline-offset: 0.2ex;
    text-decoration: none;
  }
  :where(ul, ol) {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img, picture, svg, video) {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
    vertical-align: middle;
  }
  :where(dialog, [popover]) {
    border: none;
    background: none;
    color: inherit;
    inset: unset;
    max-width: unset;
    max-height: unset;
    overflow: unset;
  }
  :where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important;
  }
  :where(:focus-visible) {
    outline: 3px solid CanvasText;
    box-shadow: 0 0 0 5px Canvas;
    outline-offset: 1px;
  }
  :where(:focus-visible, :target) {
    scroll-margin-block: 8vh;
  }
  :where(.visually-hidden:not(:focus-within, :active)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(a) {
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
  }
  :where(a):active {
    transform: scale(0.95);
  }
  :where(a):hover {
    opacity: 0.6;
  }
}
@layer setting {
  :root {
    /* フォント関連 */
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    --font-min: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --font-en: "Jost", sans-serif;
    --font-begas: "Bebas Neue", cursive;
    /* レイアウト */
    --container-width: 1200px;
    --container-width-p: 92%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 9px;
    --font-size-mid: 1.44dvw;
    --font-size-max: 14px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-min: 6px;
      --font-size-mid: 2.7dvw;
      --font-size-max: 21px;
    }
  }
}
@layer layouts {
  /* アコーディオン */
  :where(.accordion-area) {
    list-style: none;
    width: 100%;
    margin: 0 auto;
  }
  :where(.accordion-area) li + li {
    margin-top: 1em;
  }
  :where(.accordion-area) :where(.title) {
    position: relative;
    transition: all 0.5s ease;
    margin: 0 auto;
    background-color: #009af4;
    color: #fff;
    padding: 0.9em 0 0.9em 3.2rem;
    font-size: 1.05em;
  }
  :where(.accordion-area) :where(.title):before {
    content: "";
    aspect-ratio: 1/1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: 0.3s;
    background: url("../img/q.webp") no-repeat center/contain;
    width: 1.3rem;
    top: 50%;
    left: 1.7rem;
    transform: translate(-50%, -50%);
  }
  :where(.accordion-area) :where(.title):after {
    content: "";
    aspect-ratio: 1/1;
    height: auto;
    position: absolute;
    width: 2rem;
    top: 50%;
    right: 1.7rem;
    transform: translate(50%, -50%);
    background-color: #fff;
    border-radius: 50%;
  }
  :where(.accordion-area) :where(.title) :where(span) {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 1.2em;
    padding-right: 1.3em;
  }
  :where(.accordion-area) :where(.title) :where(span):before, :where(.accordion-area) :where(.title) :where(span):after {
    display: block;
    content: "";
    position: absolute;
    height: 3px;
    border-radius: 1px;
    width: 1.3rem;
    transform: translate(50%, -50%);
    transition: 0.3s;
    background-color: #009af4;
    top: 50%;
    right: 1.7rem;
    z-index: 8;
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    transform: translate(50%, -50%) rotate(90deg);
  }
  :where(.accordion-area) :where(.title).close :where(span):before {
    transform: translate(50%, -50%) rotate(180deg);
  }
  :where(.accordion-area) .abox {
    display: none;
    padding: 1.1em 1.3em 2em 3.2rem;
    color: #1f3d60;
    font-weight: 600;
    position: relative;
    background: url("../img/dot.webp") no-repeat bottom center/contain;
  }
  :where(.accordion-area) .abox:before {
    content: "";
    aspect-ratio: 1/1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: 0.3s;
    background: url("../img/a.webp") no-repeat center/contain;
    width: 1.3rem;
    top: 1.9rem;
    left: 1.7rem;
    transform: translate(-50%, -50%);
  }
  :where(.accordion-area) .abox figure {
    margin-bottom: 1.3em;
  }
  :where(.accordion-area) .abox p {
    line-height: 1.8 !important;
  }
  :where(.accordion-area) .abox li {
    font-size: 1.3em;
    color: rgb(31, 61, 96);
    font-weight: 700;
    line-height: 1.8;
  }
  :where(.accordion-area) .abox li + li {
    margin: 0;
  }
  :where(.accordion-area) .abox a {
    color: #009af4;
  }
  :where(.frame) {
    width: var(--container-width-p);
    max-width: var(--container-width);
    margin-inline: auto;
    position: relative;
  }
  :where(.flex) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .btn {
    display: block;
    width: 100%;
    font-size: 1.65em;
    border-radius: 0.4em;
    margin: 1em auto;
    padding: 1.1em 0.8em 1.1em 0.2em;
    position: relative;
    color: #fff;
    font-weight: 900;
    background-color: #ff782e;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .btn:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 0.2em;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  body {
    background: url("../img/bg.webp") no-repeat center/cover;
    background-attachment: fixed;
  }
  .sp-area {
    margin: 0 0 0 47%;
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: #fff;
  }
  @media screen and (max-width: 960px) {
    .sp-area {
      width: 53%;
    }
  }
  @media screen and (max-width: 768px) {
    .sp-area {
      width: 100%;
      max-width: 100%;
      margin-inline: auto;
    }
  }
  .pc-area {
    position: fixed;
    right: 53%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47%;
    max-width: 860px;
    height: 100dvh;
  }
  .pc-area section {
    width: 390px;
    margin-inline: auto;
    overflow-y: auto;
  }
  .pc-area section .padding {
    padding: 1em 10px 1em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pc-area section .w_box {
    background-color: #fff;
    border-radius: 1rem;
    padding: 0.5em 0 0;
  }
  .pc-area section h2 {
    width: 85%;
    margin: 0.5em auto;
  }
  .pc-area section p {
    color: #fff;
    padding: 0.4em 0;
    font-weight: 900;
    font-size: 1.25em;
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-align: center;
    background: #1f3d60;
  }
  .pc-area section .links {
    width: 80%;
    margin: 1.3em auto;
  }
  .pc-area section .links a {
    display: block;
  }
  .pc-area section .links a + a {
    margin-top: 1em;
  }
  .pc-area section .box {
    width: 100%;
    margin-inline: auto;
    padding: 5% 8%;
    background-color: #f8f9fa;
    border-radius: 0 0 1rem 1rem;
  }
  .pc-area section h3 {
    margin: 0.5em auto;
  }
  .pc-area section h3 img {
    display: block;
    width: 21%;
  }
  .pc-area section ul li a {
    display: block;
    font-weight: 900;
    letter-spacing: 0.01em;
    font-size: 1.02em;
    padding: 0.9em 1.3em 0.9em 0.5em;
    border-bottom: 2px solid #1f3d60;
    position: relative;
    color: #1f3d60;
  }
  .pc-area section ul li a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 0.5em;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  .pc-area section::-webkit-scrollbar {
    height: 8px;
  }
  .pc-area section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 7px;
  }
  .pc-area section::-webkit-scrollbar-thumb {
    background: #004080;
    border-radius: 999px;
  }
  .pc-area section::-webkit-scrollbar-thumb:hover {
    background: #fff;
  }
  .pc-area section::-webkit-scrollbar {
    width: 12px;
  }
  .pc-area .scroll {
    padding: 0;
    margin: auto 0;
    height: 100dvh;
    display: grid;
    place-items: center;
    overflow-y: auto;
  }
  @media screen and (max-width: 768px) {
    .pc-area {
      display: none;
    }
  }
}
@layer modules {
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: none;
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    width: 3em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 1.4em;
    left: calc(47% + 500px - 2em - 3%);
    z-index: 10;
  }
  @media screen and (max-width: 960px) {
    .hamburger {
      display: flex;
      left: auto;
      right: 3%;
      width: 4em;
    }
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    background: #fff;
    transform: translateX(120%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    max-width: 450px;
    background-size: 100% auto, auto;
    background-position: top center;
    display: flex;
    padding: 12% 0 24%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  nav.globalMenuSp h2 {
    width: 75%;
    margin: 0 auto 1em;
  }
  nav.globalMenuSp ul {
    width: 82%;
    margin-inline: auto;
  }
  nav.globalMenuSp ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-weight: 900;
    letter-spacing: 0.06em;
    font-size: 1.6em;
    min-height: 4em;
    padding: 0.2em 1.3em 0.2em 0.5em;
    border-bottom: 2px solid #1f3d60;
    position: relative;
    color: #1f3d60;
    line-height: 1.2;
  }
  nav.globalMenuSp ul li a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 0.5em;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
  }
  nav.globalMenuSp .close_menu:before, nav.globalMenuSp .close_menu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 70%;
    background: #000;
  }
  nav.globalMenuSp .close_menu:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  nav.globalMenuSp .close_menu:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
  h2.right, h2.left {
    width: 96%;
    margin: 6% 0;
  }
  h2.right {
    margin-left: auto;
  }
  h2.left {
    margin-right: auto;
  }
  .sp-area p {
    font-size: 1.3em;
    color: #1f3d60;
    font-weight: 700;
    margin: 0 auto 1.2em;
    line-height: 1.6;
  }
  #kv {
    background: #1f3d60;
    color: #fff;
  }
  #kv h1 {
    position: relative;
  }
  #kv h1 a {
    display: block;
    position: absolute;
    top: 3%;
    left: 4%;
    width: 68%;
  }
  #kv > a {
    color: #fff;
    padding: 2% 13% 2% 4%;
    font-weight: 900;
    font-size: 1.6em;
    letter-spacing: 0.03em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    position: relative;
  }
  #kv > a:before {
    display: block;
    position: absolute;
    content: "";
    right: 4%;
    top: 50%;
    width: 1.5em;
    aspect-ratio: 1/1;
    height: auto;
    line-height: 1em;
    transform: translateY(-50%);
    background: url("../img/icon1.webp") no-repeat center/cover;
  }
  #kv > a span {
    text-align: left;
  }
  #kv .links {
    background-color: #e8ebef;
    padding: 3% 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #kv .links a {
    width: 48%;
  }
  #philosophy {
    background: url("../img/sec1_bg.webp") no-repeat center bottom/100% auto;
  }
  #philosophy ul {
    margin-top: 3em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
  #philosophy ul li {
    position: relative;
  }
  #philosophy ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0%;
    width: 23%;
    aspect-ratio: 1/1;
    height: auto;
    line-height: 1em;
    transform: translate(-30%, -30%);
    background-color: #fb508a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.8em;
    letter-spacing: 0.04em;
  }
  #philosophy ul li:nth-child(1):before {
    content: "01";
  }
  #philosophy ul li:nth-child(2):before {
    content: "02";
  }
  #philosophy ul li:nth-child(3):before {
    content: "03";
  }
  #philosophy ul li:nth-child(4):before {
    content: "04";
  }
  #philosophy ul li:nth-child(5):before {
    content: "05";
  }
  #philosophy ul li:nth-child(6):before {
    content: "06";
  }
  .centering {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #about {
    background-color: #E8F3FB;
    position: relative;
    overflow-y: hidden;
  }
  #about:before {
    z-index: 0;
    display: block;
    position: absolute;
    content: "";
    left: 50%;
    bottom: -5%;
    width: 130%;
    aspect-ratio: 1/0.5;
    height: auto;
    transform: translate(-50%, 0%) rotate(-8deg);
    background: #fff;
  }
  #about p {
    font-size: 1em;
    width: 90%;
    margin: 1em auto 2em;
  }
  #service .centering p {
    font-size: 1.5em;
    color: #1f3d60;
    letter-spacing: 0.15em;
    margin: 1.3em 0;
    line-height: 2;
  }
  #service .box {
    border: 0.5em solid #c2eaa2;
    border-radius: 1.4em;
  }
  #service .box .in a {
    display: block;
    background-color: #fb508a;
    color: #fff;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    position: relative;
    width: 90%;
    margin: 6% auto;
    padding: 1em 1.5em 1em 0;
    font-size: 1.5em;
  }
  #service .box .in a:before {
    content: "〉";
    display: block;
    position: absolute;
    right: 0.3em;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #service .box .in:nth-child(1) {
    position: relative;
    z-index: 3;
    padding: 6%;
  }
  #service .box .in:nth-child(1):before {
    display: block;
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    width: 2.5em;
    aspect-ratio: 1/1;
    height: auto;
    transform: translate(-50%, 50%) rotate(-45deg) skew(9deg, 10deg);
    background-color: #fff;
    z-index: 0;
  }
  #service .box .in:nth-child(2) {
    background-color: #c2eaa2;
    padding: 0.01em;
  }
  #service .box .inner_box {
    box-shadow: 0 0 0.4em 0 rgba(0, 0, 0, 0.4);
    border-radius: 1.4em;
    background-color: #fff;
    padding: 6% 8%;
    width: 91%;
    margin: 9% auto 0;
  }
  #service .box .inner_box h4 {
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin-bottom: 1em;
    font-size: 1.6em;
    color: #1f3d60;
  }
  #service .box .inner_box figure {
    display: block;
    margin-bottom: 1.5em;
  }
  #service .box .inner_box.type1 .centering p {
    color: #416792;
    font-size: 0.92em;
    text-indent: -1em;
    padding-left: 1em;
    letter-spacing: 0.02em;
  }
  #service .box .inner_box.type1 .txt1 {
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 1.32em;
  }
  #service .box .inner_box.type1 .txt2 {
    font-weight: 700;
    margin-top: 1.5em;
    line-height: 1.8;
  }
  #service .box + .box {
    margin-top: 8%;
  }
  #service .box:nth-child(2) .centering p {
    font-size: 1.3em;
    letter-spacing: 0.05em;
  }
  #service .box:nth-child(2) a {
    background-color: #ff7600;
  }
  #service ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
    position: relative;
    z-index: 2;
  }
  #voice .frame > p {
    font-size: 1em;
    margin-top: 1.2em;
  }
  #voice .swiper-wrapper {
    align-items: stretch;
    padding-bottom: 24px;
  }
  #voice .swiper-slide {
    padding: 0 4%;
    height: auto !important;
  }
  #voice .swiper-slide h3 {
    padding-bottom: 1.5em;
    margin-bottom: 1.4em;
    border-bottom: 0.2em solid #dadada;
  }
  #voice .swiper-slide .box {
    border: 0.4em solid #f0f0f0;
    padding: 8%;
    width: 100%;
    height: 100%;
  }
  #voice .swiper-slide p {
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 0;
    font-size: 1.2em;
  }
  #voice .swiper-button-next,
  #voice .swiper-button-prev {
    background: url("../img/icon2.webp") no-repeat center/95% auto;
  }
  #voice .swiper-button-next svg,
  #voice .swiper-button-prev svg {
    display: none;
  }
  #voice .swiper-button-prev {
    transform: rotate(180deg);
  }
  #company table {
    width: 100%;
    margin-bottom: 3em;
  }
  #company table th,
  #company table td {
    border-bottom: 1px solid #d1d1d1;
    vertical-align: middle;
    text-align: left;
    font-weight: 600;
    font-size: 1.25em;
  }
  #company table tr:first-child th,
  #company table tr:first-child td {
    border-top: 1px solid #d1d1d1;
  }
  #company table th {
    background-color: #f5f6f8;
    width: 9.1em;
    letter-spacing: 0.2em;
    padding: 1.5em 0.6em 1.5em 1.5em;
  }
  #company table td {
    padding: 0 1em;
  }
  #company h5 {
    font-size: 1.3em;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding-left: 0.4em;
    border-left: 1px solid #282828;
    line-height: 1;
    margin-bottom: 1em;
  }
  #company .info p {
    color: #282828;
    font-weight: 600;
    letter-spacing: 0.07em;
    padding-left: 0.4em;
  }
  #company iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 6/4;
  }
  #company iframe + a {
    display: block;
    width: 94%;
    margin: 0 auto 2em;
    text-decoration: underline;
    color: #416792;
    text-align: center;
    font-size: 1.2em;
    border-bottom: 1px solid #eeeeee;
    padding: 2em 0;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  footer .frame p {
    text-align: center;
    font-size: 1.05em;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-bottom: 1.5em;
    margin: 0;
  }
  @media screen and (max-width: 768px) {
    footer .frame p {
      padding-bottom: 7em;
    }
  }
  .fixed,
  header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    z-index: 10;
  }
  @media screen and (max-width: 768px) {
    .fixed,
    header {
      max-width: 100%;
      min-width: 310px;
    }
  }
  header {
    top: 0;
  }
  .fixed {
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: none;
  }
  @media screen and (max-width: 768px) {
    .fixed {
      display: flex;
    }
  }
  .fixed.is-show {
    opacity: 1;
    pointer-events: auto;
    /* 表示時だけクリック復活 */
  }
  .fixed a:hover {
    opacity: 1;
  }
}
@layer utilities {
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important;
    }
  }
  .sp {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp {
      display: block !important;
    }
  }
}