@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: 100%;
    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.6;
    scroll-padding-top: 0em;
    scroll-behavior: smooth;
    min-width: 320px;
    settings: "palt";
    font-feature-settings: "palt" 1;
    font-weight: 500;
    --circle-size: 1.9rem;
    --right-position: 3%;
  }
  @media screen and (max-width: 768px) {
    :where(html) {
      --circle-size: 1.4rem;
    }
  }
  :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: #000000;
    background-color: #fff;
  }
  :where(body).active {
    overflow: hidden;
  }
  :where(section) {
    position: relative;
    overflow: hidden;
    height: auto;
  }
  :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;
    /* レイアウト */
    --font-base: 16px;
    --container-width: 1300px;
    --container-width-p: 92%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 5px;
    --font-size-mid: calc(var(--font-base) / var(--container-width) * 100vw);
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-mid: calc((var(--font-base) / var(--container-width) * 100vw) * 1.67);
    }
  }
}
@layer layouts {
  :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;
  }
  header {
    background-color: #fff;
    padding: 1em 5% 1em 3%;
    position: fixed;
    display: block;
    width: 100%;
    z-index: 20;
    top: 0;
  }
  @media screen and (max-width: 768px) {
    header {
      padding: 1.2em 4%;
    }
  }
  header .flex {
    align-items: center;
  }
  header .flex .logo {
    width: 20%;
    max-width: 300px;
  }
  @media screen and (max-width: 768px) {
    header .flex .logo {
      width: 50%;
    }
  }
  header .flex .globalMenuPc {
    font-size: clamp(1px, 0.95vw, 16px);
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .flex .globalMenuPc a {
    padding: 1em;
  }
  @media screen and (max-width: 768px) {
    header .flex .globalMenuPc {
      display: none;
    }
  }
  #common_btn {
    background: linear-gradient(90deg, rgb(253, 47, 187) 0%, rgb(216, 152, 247) 100%);
    padding: 0.4em 0 0.7em;
  }
  @media screen and (max-width: 768px) {
    #common_btn {
      padding: 0.4em 0;
    }
  }
  #common_btn a {
    display: block;
    width: 104%;
    margin: 0 -2%;
  }
  @media screen and (max-width: 768px) {
    #common_btn a {
      width: 106%;
      margin: 0 -3%;
    }
  }
  p.common_txt {
    text-align: center;
    margin-top: -1.5%;
    position: relative;
    z-index: 2;
    font-size: 0.9em;
  }
  @media screen and (max-width: 768px) {
    p.common_txt {
      font-size: 0.7rem;
    }
  }
  p.common_txt a {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    text-decoration: underline;
  }
  .title1 {
    font-weight: 900;
    font-size: 3.2em;
    letter-spacing: 0.06em;
    font-optical-sizing: none;
    margin-bottom: 1em;
  }
  .title1 .fmin {
    font-size: 0.68em;
    display: block;
    letter-spacing: 0.02em;
  }
  .title1 .blue {
    color: #ff317d;
  }
  @media screen and (max-width: 768px) {
    .title1 {
      letter-spacing: 0.02em;
    }
  }
  #kv {
    background: url("../img/kv_bg.webp") no-repeat center/cover;
    margin-top: 5.35vw;
    padding: 1.5em 0 1em;
  }
  @media screen and (max-width: 768px) {
    #kv {
      background: url("../img/kv_bg_sp.webp") no-repeat top center/100% auto;
      margin-top: 14.5vw;
      padding: 0;
    }
  }
  #kv h2 {
    margin-top: 0.8em;
  }
  #kv .box {
    width: 50%;
    color: #fff;
  }
  #kv .box a {
    color: #fff;
  }
  @media screen and (max-width: 768px) {
    #kv .box {
      width: 100%;
      color: #000;
    }
    #kv .box a {
      color: #000;
    }
  }
  #sec1 {
    padding-top: 2em;
    padding-bottom: clamp(18em, 15%, 230px);
    background: url("../img/sec1_bg.webp") no-repeat bottom center/100% auto;
  }
  @media screen and (max-width: 1400px) {
    #sec1 {
      background-size: 1400px auto;
    }
  }
  @media screen and (max-width: 768px) {
    #sec1 {
      background: url("../img/sec1_bg_sp.webp") no-repeat bottom center/100% auto;
      padding-bottom: 30vw;
    }
  }
  #sec1 .frame {
    max-width: 800px;
  }
  #sec1 .title1 {
    padding: 0 0.5em;
    text-align: center;
  }
  #sec1 .title1 .center {
    display: inline-block;
    text-align: left;
  }
  @media screen and (max-width: 768px) {
    #sec1 .title1 {
      text-align: left;
    }
  }
  #sec1 ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #sec1 ul li {
    width: 25.5%;
  }
  @media screen and (max-width: 768px) {
    #sec1 ul {
      width: 102%;
      margin: 0 -1%;
    }
    #sec1 ul li {
      width: 32%;
    }
  }
  #sec2 {
    padding: 3em 0;
    background: url("../img/sec2_bg.webp") no-repeat bottom center/100% auto;
  }
  @media screen and (max-width: 1400px) {
    #sec2 {
      background: url("../img/sec2_bg.webp") no-repeat bottom center/auto 90%;
      padding: 5em 0 10em;
    }
  }
  #sec2 .frame {
    max-width: 900px;
  }
  #sec2 h2 {
    width: 80%;
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 2em;
  }
  @media screen and (max-width: 768px) {
    #sec2 h2 {
      width: 100%;
    }
  }
  #sec2 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    font-size: clamp(1px, 1.85vw, 18px);
  }
  @media screen and (max-width: 768px) {
    #sec2 ul {
      grid-template-columns: repeat(2, 1fr);
      font-size: 0.9rem;
      gap: 0.7em;
    }
  }
  #sec2 ul li {
    background-color: #fff;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3);
    border-radius: 0.8em;
    padding: 11% 7%;
    line-height: 1.8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    letter-spacing: 0.03em;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    #sec2 ul li {
      justify-content: flex-start;
    }
  }
  #sec2 ul li figure {
    display: block;
    margin-inline: auto;
    width: 60%;
    margin-bottom: 1em;
  }
  #sec2 ul li h3 {
    font-weight: 900;
    margin-bottom: 1em;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
  }
  #sec2 ul li h3 span {
    text-align: left;
  }
  @media screen and (max-width: 768px) {
    #sec2 ul li h3 {
      flex-grow: 0;
      min-height: 2.6em;
    }
  }
  #sec2 ul li .fmin {
    font-size: 0.8em;
  }
  #sec2 ul li .fmin2 {
    font-size: 0.7em;
    position: absolute;
    bottom: 0.5em;
    width: calc(100% - 1em);
    left: 0.5em;
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    #sec2 ul li .fmin2 {
      position: relative;
      width: 100%;
      left: 0;
      bottom: 0;
      text-align: left;
      transform: translateY(1em);
      padding-left: 1em;
      text-indent: -1em;
    }
  }
  #sec2 p.finfo {
    margin-top: 5%;
    font-size: 1em;
  }
  @media screen and (max-width: 768px) {
    #sec2 p.finfo {
      font-size: 1.4em;
    }
  }
  #sec4 {
    background: url("../img/sec4_bg.webp") no-repeat bottom center/100% auto;
    padding: 5em 0 8em;
  }
  @media screen and (max-width: 1400px) {
    #sec4 {
      background: url("../img/sec4_bg.webp") no-repeat bottom center/1400px auto;
    }
  }
  @media screen and (max-width: 768px) {
    #sec4 {
      background: url("../img/sec4_bg_sp.webp") no-repeat bottom center/cover;
    }
  }
  #sec4 figure {
    display: block;
    margin-inline: auto;
    max-width: 700px;
  }
  #sec4 h2 {
    text-align: center;
  }
  #sec5 .flex {
    background-color: #f2f2f2;
    border-radius: 1.2em;
    padding: 2.5em 4em;
  }
  #sec5 .flex .box {
    width: 47%;
  }
  #sec5 .flex h3 {
    font-size: 1.6em;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 0.8em;
  }
  #sec5 .flex video {
    background-color: #a09c9c;
    aspect-ratio: 16/9;
    border-radius: 1.2em;
  }
  #sec5 .flex p {
    margin-top: 1em;
    font-size: 1.2em;
    letter-spacing: 0.02em;
  }
  @media screen and (max-width: 768px) {
    #sec5 .flex p {
      font-size: 1em;
    }
  }
  @media screen and (max-width: 768px) {
    #sec5 .flex {
      font-size: 0.9rem;
      flex-direction: column;
      padding: 2.2em 1.1em;
    }
    #sec5 .flex .box {
      width: 100%;
    }
    #sec5 .flex .box + .box {
      margin-top: 3em;
    }
  }
  #sec6 {
    padding: 5em 0;
  }
  #sec7 {
    padding: 3em 0;
  }
  @media screen and (max-width: 768px) {
    #sec7 {
      padding: 5em 0 3em;
    }
  }
  #sec7 .flex {
    background-color: #f2f2f2;
    border-radius: 1.2em;
    padding: 2.5em 1.5em 2.5em 7em;
    position: relative;
    align-items: stretch;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex {
      flex-direction: column;
      padding: 2.2em 1.1em;
      font-size: 1.65em;
      align-items: center;
    }
  }
  #sec7 .flex .tab_btns {
    width: 52%;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_btns {
      width: 100%;
    }
  }
  #sec7 .flex .tab_contents {
    width: 45%;
    background-color: #fff;
    padding: 2em 2.2em 2em 6em;
    position: relative;
    border-radius: 1.2em;
    max-height: 27.4em;
    overflow-y: auto;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_contents {
      max-height: 100%;
      width: 100%;
      padding: 2em 2em 2em 4.1em;
    }
  }
  #sec7 .flex .tab_content {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #sec7 .flex .tab_content:after {
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 2.6em;
    aspect-ratio: 1/1;
    height: auto;
    top: 1.5em;
    left: -3.7em;
    background: url("../img/sec7_img2.webp") no-repeat center/contain;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_content:after {
      width: 2rem;
      left: -2.5rem;
    }
  }
  #sec7 .flex .tab_content.active {
    display: block;
  }
  #sec7 .flex .tab_content p {
    font-size: 1.2em;
    line-height: 1.8;
  }
  #sec7 .flex .tab_content p + p {
    margin-top: 1em;
  }
  #sec7 .flex .tab_content p.gray {
    color: #585858;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_content p {
      font-size: 0.9rem;
    }
  }
  #sec7 .flex {
    --circle-size: 1.9rem;
    --right-position: 3%;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex {
      --circle-size: 1.4rem;
    }
  }
  #sec7 .flex .tab_btns_box {
    overflow: hidden;
    max-height: 27.4em;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_btns_box {
      max-height: 15.3rem;
    }
  }
  #sec7 .flex .scroll_btns .up,
  #sec7 .flex .scroll_btns .down,
  #sec7 .flex .tab_btn {
    cursor: pointer;
  }
  #sec7 .flex .tab_btn {
    position: relative;
    border-bottom: 2px solid #cacaca;
  }
  #sec7 .flex .tab_btn::after {
    display: block;
    position: absolute;
    content: "";
    left: 1.75em;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5em;
    aspect-ratio: 1/1;
    height: auto;
    background: url("../img/sec7_img1.webp") no-repeat center/contain;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_btn::after {
      left: 0.6rem;
      width: 2rem;
    }
  }
  #sec7 .flex .tab_btn span {
    min-height: 5.6em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-right: calc(var(--circle-size) + var(--right-position));
    padding-left: 5.6rem;
    background-color: #f2f2f2;
    transition: 0.3s;
    font-size: 1.2em;
    letter-spacing: 0.06em;
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_btn span {
      font-size: 0.9rem;
    }
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_btn span {
      padding-left: 3.2rem;
    }
  }
  #sec7 .flex .tab_btn span::before,
  #sec7 .flex .tab_btn span::after {
    content: "";
    height: 3px;
    width: calc(var(--circle-size) - 0.5rem);
    display: block;
    position: absolute;
    right: calc(var(--circle-size) / 2 + var(--right-position));
    top: 0.15em;
    bottom: 0;
    margin: auto;
    background-size: 90%;
    background-position: center;
    transition: 0.3s;
    background-color: #2473d2;
    transform: translate(50%, -50%) rotate(0deg);
  }
  @media screen and (max-width: 768px) {
    #sec7 .flex .tab_btn span::before,
    #sec7 .flex .tab_btn span::after {
      height: 2px;
    }
  }
  #sec7 .flex .tab_btn span::before {
    transform: translate(50%, -50%) rotate(-90deg);
  }
  #sec7 .flex .tab_btn.active span {
    background-color: #fff;
  }
  #sec7 .flex .tab_btn.active span::before {
    transform: translate(50%, -50%) rotate(0deg);
  }
  #sec7 .scroll_btns .up,
  #sec7 .scroll_btns .down {
    position: absolute;
    z-index: 2;
    bottom: 7.2em;
    left: 2em;
    aspect-ratio: 1/1;
    width: 3.5em;
    height: auto;
    background: url("../img/ya.webp") no-repeat center/contain;
    transform: rotate(0deg);
  }
  @media screen and (max-width: 768px) {
    #sec7 .scroll_btns .up,
    #sec7 .scroll_btns .down {
      left: auto;
      bottom: auto;
      top: 20em;
      right: -0.4em;
      width: 3em;
    }
  }
  #sec7 .scroll_btns .down {
    transform: rotate(180deg);
    bottom: 2.5em;
  }
  @media screen and (max-width: 768px) {
    #sec7 .scroll_btns .down {
      bottom: auto;
      top: 24em;
    }
  }
  #sec7 .scroll_btns {
    opacity: 1;
  }
  #sec7 .scroll_btns .disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  #sec8 {
    padding: 2em 0 5em;
    background: url("../img/sec8_bg.webp") no-repeat top center/100% auto;
  }
  @media screen and (max-width: 1400px) {
    #sec8 {
      background: url("../img/sec8_bg.webp") no-repeat top center/1400px auto;
    }
  }
  @media screen and (max-width: 768px) {
    #sec8 {
      font-size: 1.5em;
      background: url("../img/sec8_bg_sp.webp") no-repeat top center/cover;
    }
  }
  #sec8 .frame {
    max-width: 600px;
  }
  #sec9 {
    padding: 2em 0 0;
  }
  #sec9 h2 {
    text-align: center;
    font-weight: 900;
    font-size: 2em;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
  }
  #sec9 .box {
    border-top: 2px solid #959595;
    padding: 3em 0;
    margin-inline: auto;
    width: 100%;
    max-width: 900px;
  }
  #sec9 .box h3 {
    font-weight: 900;
    margin-bottom: 1.4em;
    font-size: 1.5em;
    letter-spacing: 0.1em;
  }
  #sec9 .box p {
    line-height: 2;
    font-size: 1.1em;
  }
  #sec9 .info {
    display: block;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  #sec9 .tell {
    display: block;
    margin: 1.5em auto 0;
  }
  #sec9 .tell h3 {
    letter-spacing: 0.2em;
    font-size: 1.4em;
    text-align: center;
  }
  #sec9 .tell a {
    display: block;
    padding: 1em;
    letter-spacing: 0.08em;
    font-size: 1.3em;
    text-align: center;
  }
  #sec9 .tell a span {
    font-size: 0.72em;
    letter-spacing: 0.02em;
  }
  @media screen and (max-width: 768px) {
    #sec9 {
      font-size: 1.7em;
    }
    #sec9 .frame {
      width: 85%;
    }
    #sec9 .box {
      padding: 2em 0;
    }
    #sec9 .box h3 {
      margin-bottom: 1em;
    }
    #sec9 .info {
      width: 106%;
      margin: 0 -3%;
    }
  }
  footer {
    text-align: center;
    font-size: 0.9em;
    padding: 2.5em 0;
  }
  @media screen and (max-width: 768px) {
    footer {
      padding-bottom: 40vw;
    }
  }
  .sp_footer_btn {
    padding-bottom: 1em;
    display: none;
    width: 100%;
    left: 0;
    bottom: -61vw;
    position: fixed;
    z-index: 10;
    transition: 0.3s;
  }
  .sp_footer_btn p {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    font-size: 1.2em;
    text-shadow: 0 0 0.2em rgb(255, 255, 255), 0 0 0.2em rgb(255, 255, 255), 0 0 0.2em rgb(255, 255, 255);
  }
  .sp_footer_btn p a {
    text-decoration: underline;
  }
  @media screen and (max-width: 768px) {
    .sp_footer_btn {
      display: block;
    }
    .sp_footer_btn.is-show {
      bottom: 0;
    }
  }
}
@layer modules {
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: none;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  }
  .hamburger {
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    width: 4em;
    height: auto;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 25;
    top: 0;
    right: 0;
    background: white;
    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;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 12vw 6vw 6vw;
  }
  nav.globalMenuSp .menulogo {
    width: 80%;
  }
  nav.globalMenuSp .navbox {
    width: 80%;
    margin: 7vw 0;
  }
  nav.globalMenuSp .navbox a {
    display: block;
    padding: 0.7em 0;
    font-size: 2em;
    width: 100%;
    border-top: 2px solid #cacaca;
    position: relative;
    letter-spacing: 0.08em;
  }
  nav.globalMenuSp .navbox a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 0.2em;
    top: 50%;
    width: 1em;
    aspect-ratio: 1/1;
    height: auto;
    line-height: 1em;
    transform: translateY(-50%);
  }
  nav.globalMenuSp .navbox a:last-child {
    border-bottom: 2px solid #cacaca;
  }
  nav.globalMenuSp .menubtn {
    width: 88%;
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    transform: translate(50%, -50%);
    top: calc(2em + 2vw);
    right: calc(2em + 2vw);
    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%);
  }
}
@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;
    }
  }
}
#sec3 {
  padding: 5em 0;
}
@media screen and (max-width: 768px) {
  #sec3 {
    padding: 0 0 5em;
  }
}
@media screen and (max-width: 768px) {
  #sec3 .swiper1 {
    margin-top: 5em;
  }
}
#sec3 .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #sec3 .swiper-wrapper {
    padding-bottom: 8em;
  }
}
#sec3 .swiper-slide {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  font-size: 1.1em;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  #sec3 .swiper-slide {
    font-size: 0.9rem;
  }
}
#sec3 .swiper-slide .step {
  background-color: #000;
  color: #fff;
  width: 6.7em;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  padding: 0.16em 0 0.15em;
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
}
#sec3 .swiper-slide h3 {
  font-weight: 900;
  margin-bottom: 0.4em;
  width: 90%;
}
#sec3 .swiper-slide p {
  flex-grow: 1;
  margin-bottom: 1.8em;
  width: 90%;
}
@media screen and (max-width: 768px) {
  #sec3 .swiper-slide p {
    margin-bottom: 1em;
  }
}
#sec3 .swiper-button-next,
#sec3 .swiper-button-prev {
  display: none;
  top: auto;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 4.5em;
  height: auto;
  background: url("../img/ya.webp") no-repeat center/contain;
  transform: rotate(90deg);
}
#sec3 .swiper-button-next svg,
#sec3 .swiper-button-prev svg {
  display: none;
}
@media screen and (max-width: 768px) {
  #sec3 .swiper-button-next,
  #sec3 .swiper-button-prev {
    display: block;
  }
}
#sec3 .swiper-button-prev {
  transform: rotate(-90deg);
  right: 6em;
  left: auto;
}

#sec6 .swiper {
  overflow: visible;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  #sec6 .swiper {
    font-size: 0.9rem;
  }
}
#sec6 .swiper .swiper-button-next,
#sec6 .swiper .swiper-button-prev {
  top: auto;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 3em;
  height: auto;
  background: url("../img/ya.webp") no-repeat center/contain;
  transform: rotate(90deg);
}
#sec6 .swiper .swiper-button-next svg,
#sec6 .swiper .swiper-button-prev svg {
  display: none;
}
#sec6 .swiper .swiper-button-prev {
  transform: rotate(-90deg);
  right: 4em;
  left: auto;
}
#sec6 .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 5em;
}
#sec6 .swiper-slide {
  background-color: #fafafa;
  border-radius: 0.8em;
  padding: 1.8em;
  height: auto !important;
}
#sec6 .swiper-slide .flex {
  align-items: center;
}
#sec6 .swiper-slide .flex figure {
  width: 27%;
}
#sec6 .swiper-slide .flex .txt {
  width: 68%;
}
#sec6 .swiper-slide .flex .txt h3 {
  font-weight: 900;
  line-height: 1;
}
#sec6 .swiper-slide .flex .txt h3 b {
  font-weight: 500;
  font-size: 1.6em;
  padding-right: 0.1em;
  font-family: "Poppins", sans-serif;
}
#sec6 .swiper-slide .flex .txt p {
  font-weight: 700;
}
#sec6 .swiper-slide .flex .txt p + p {
  margin-top: 1em;
}
#sec6 .swiper-slide > p {
  margin-top: 1.4em;
  padding-top: 1em;
  border-top: 2px solid #cecece;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* アコーディオン */
:where(.accordion-area) {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
:where(.accordion-area) li {
  background-color: #fff;
  border-radius: 0.8em;
}
:where(.accordion-area) :where(.title) {
  position: relative;
  transition: all 0.5s ease;
  margin: 0;
  border-bottom: 2px solid #cacaca;
}
:where(.accordion-area) :where(.title).active span {
  background-color: #fff;
}
:where(.accordion-area) :where(.title).active span::before {
  transform: translate(50%, -50%) rotate(0deg);
}
:where(.accordion-area) :where(.title)::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  height: auto;
  background: url("../img/sec7_img1.webp") no-repeat center/contain;
  left: 0.6rem;
  width: 2rem;
}
:where(.accordion-area) :where(.title) :where(span) {
  min-height: 5.6em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-right: calc(var(--circle-size) + var(--right-position));
  background-color: #f2f2f2;
  transition: 0.3s;
  font-size: 1.2em;
  letter-spacing: 0.06em;
  padding-left: 3.2rem;
}
@media screen and (max-width: 768px) {
  :where(.accordion-area) :where(.title) :where(span) {
    font-size: 0.9rem;
  }
}
:where(.accordion-area) :where(.title) :where(span)::before, :where(.accordion-area) :where(.title) :where(span)::after {
  content: "";
  height: 2px;
  width: calc(var(--circle-size) - 0.5rem);
  display: block;
  position: absolute;
  right: calc(var(--circle-size) / 2 + var(--right-position));
  top: 0.15em;
  bottom: 0;
  margin: auto;
  background-size: 90%;
  background-position: center;
  transition: 0.3s;
  background-color: #2473d2;
  transform: translate(50%, -50%) rotate(0deg);
}
:where(.accordion-area) :where(.title) :where(span)::before {
  transform: translate(50%, -50%) rotate(90deg);
}
:where(.accordion-area) .title.close span::before {
  transform: translate(50%, -50%) rotate(0deg);
}
:where(.accordion-area) .abox {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 1.5em 0.5em 1.5em 3.2rem;
}
:where(.accordion-area) .abox:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  aspect-ratio: 1/1;
  height: auto;
  top: 1.5em;
  background: url("../img/sec7_img2.webp") no-repeat center/contain;
  left: 0.6rem;
  width: 2rem;
}
:where(.accordion-area) .abox.active {
  display: block;
}
:where(.accordion-area) .abox p {
  font-size: 1.2em;
  line-height: 1.8;
}
:where(.accordion-area) .abox p + p {
  margin-top: 1em;
}
:where(.accordion-area) .abox p.gray {
  color: #585858;
}
@media screen and (max-width: 768px) {
  :where(.accordion-area) .abox p {
    font-size: 0.9rem;
  }
}