@charset "UTF-8";
:root {
  --color_bg: #fff;
  --color_bg_sub: #F0F5F8;
  --color_text: #333;
  --color_ttl: #222;
  --color_border: #222;
  --color_primary: #349AF0;
  --color_primary_rgb: 52, 154, 240;
  --color_secondary: #CFDCE6;
  --font_base: "FP-ヒラギノ角ゴ ProN W3", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_base_bold: "FP-ヒラギノ角ゴ ProN W6";
  --font_jp: "FOT-筑紫明朝 Pr6 D";
  --font_en: "Red Hat Text", sans-serif;
  --medium: 500;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.8em;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Base
-----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #d4dcd6;
}

img,
video {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color_ttl);
  font-family: var(--font_jp);
  line-height: 1.5;
}

th,
dt {
  color: var(--color_ttl);
  font-family: var(--font_jp);
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}
.link:is(:hover, :focus) {
  text-decoration: none;
}
.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 0;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1200px;
}
.container.narrow {
  max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  width: 100%;
  position: relative;
}

.header-layout {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 45px 60px 0 33px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header-layout.under {
  position: relative;
  z-index: 0;
}
.header-layout.under::after {
  content: "";
  background: url(../images/sec01_bg.png) no-repeat center/contain;
  max-width: 592px;
  width: 32.888vw;
  aspect-ratio: 592/661;
  position: absolute;
  top: -85%;
  right: 0;
  z-index: -1;
}

.h-logo {
  padding-top: 6px;
}

@media (max-width: 800px) {
  .header-layout {
    padding: 30px 22px 0;
  }
  .header-layout.under {
    z-index: 1;
  }
  .header-layout.under::after {
    width: 150px;
  }
  .h-logo {
    width: 218px;
    padding-top: 0;
  }
  .pc-navi {
    display: none;
  }
}
/*------------
Gnavi
--------------*/
/*pc-navi*/
.pc-navi {
  writing-mode: vertical-lr;
}

.pc-gnavi-list > li:not(:last-child) {
  margin-right: 20px;
}
.pc-gnavi-list > li > a {
  display: inline-block;
  background: #fff;
  color: var(--color_ttl);
  font-size: 2.2rem;
  line-height: 1;
  padding: 12px 8px;
  transition: 0.3s;
}
.pc-gnavi-list > li > a:hover {
  background: var(--color_primary);
  color: #fff;
}

/*sp-navi*/
.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .sp-navi {
    display: block;
  }
  /* ボタン */
  .navi-menu-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    appearance: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 17px;
    right: 18px;
    width: 50px;
    height: 50px;
    transition: 0.4s;
    z-index: 20000;
  }
  .navi-menu-btn .hamburger-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 1px;
    background: var(--color_border);
    transition: 0.3s;
  }
  .navi-menu-btn .hamburger-line::before,
  .navi-menu-btn .hamburger-line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color_border);
    transition: 0.3s;
  }
  .navi-menu-btn .hamburger-line::before {
    top: -6px;
  }
  .navi-menu-btn .hamburger-line::after {
    top: 6px;
  }
  .navi-menu-btn[aria-expanded=true] .hamburger-line {
    background-color: transparent;
  }
  .navi-menu-btn[aria-expanded=true] .hamburger-line::before, .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
    top: 0;
    background: #fff;
  }
  .navi-menu-btn[aria-expanded=true] .hamburger-line::before {
    transform: rotate(45deg);
  }
  .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
    transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navi-menu-btn .u-visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }
  /* 中身 */
  .sp-gnavi {
    pointer-events: none;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
    background-blend-mode: multiply;
    color: #fff;
    padding: 80px 30px;
    position: fixed;
    inset: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }
  .sp-gnavi.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    opacity: 1;
  }
  /* レイアウト等 */
  .sp-gnavi-list {
    writing-mode: vertical-lr;
    margin: 0 auto;
  }
  .sp-gnavi-list > li:not(:last-child) {
    margin-right: 20px;
  }
  .sp-gnavi-list > li > a {
    display: inline-block;
    background: #fff;
    color: var(--color_ttl);
    font-size: 2.2rem;
    line-height: 1;
    padding: 12px 8px;
    transition: 0.3s;
  }
  .sp-gnavi-list > li > a:hover {
    background: var(--color_primary);
    color: #fff;
  }
  body.is-hidden {
    overflow: clip;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}
.hero::before {
  content: "";
  background: url(../images/hero_bg.png) no-repeat center/contain;
  position: absolute;
  bottom: -54%;
  left: 0;
  width: 52.5vw;
  max-width: 945px;
  aspect-ratio: 945/918;
  z-index: -1;
}

.hero-catch .ttl {
  position: absolute;
  bottom: 39%;
  left: 10%;
  z-index: 5;
  font-family: var(--font_jp);
  font-size: min(5vw, 7rem);
  line-height: 1;
}
.hero-catch .sub-ttl {
  max-width: 929px;
  width: 66.357vw;
  position: absolute;
  bottom: 21%;
  left: 12%;
  z-index: 4;
}

.hero-img {
  padding: 10px 10px 0 10px;
  max-width: 100%;
  overflow: hidden;
}
.hero-img img {
  display: block;
  margin: 0 0 0 auto;
  border-radius: 20px;
  max-width: 1300px;
  width: 85%;
}

.scroll_down {
  writing-mode: vertical-lr;
  position: absolute;
  bottom: 78px;
  left: 26px;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color_ttl);
  animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: -78px;
  left: 12px;
  width: 1px;
  height: 60px;
  background: var(--color_ttl);
}

.scroll_down-txt {
  color: var(--color_ttl);
  font-family: var(--font_en);
  font-size: 1.2rem;
}

@keyframes circlemove {
  0% {
    bottom: -20px;
  }
  100% {
    bottom: -80px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 800px) {
  .hero::before {
    width: 220px;
  }
  .hero-catch {
    background: #fff;
    border-radius: 0 7px 0 0;
    padding: 37px 35px 30px 34px;
    position: absolute;
    bottom: -21%;
    left: 10px;
    z-index: 5;
  }
  .hero-catch .ttl {
    font-size: 2.8rem;
    position: static;
  }
  .hero-catch .sub-ttl {
    max-width: 214px;
    margin: -18px 0 0 10px;
    position: static;
  }
  .hero-img {
    padding: 80px 10px 0;
  }
  .hero-img img {
    border-radius: 7px;
    max-width: 100%;
    width: 100%;
  }
  .scroll_down {
    bottom: 105px;
    left: auto;
    right: 6%;
  }
  .scroll_down::before {
    left: 8px;
  }
  .scroll_down::after {
    bottom: -56px;
    left: 10px;
    height: 40px;
  }
  .scroll_down-txt {
    font-size: 1rem;
  }
  @keyframes circlemove {
    0% {
      bottom: -17px;
    }
    100% {
      bottom: -60px;
    }
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  margin-bottom: 45px;
}
.t-ttl.center {
  text-align: center;
}
.t-ttl .jp {
  font-size: 4rem;
  margin-bottom: 12px;
}
.t-ttl .en {
  color: var(--color_primary);
  line-height: 1;
}

.hidden {
  overflow: hidden;
}

p + p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 20px;
  }
  .t-ttl .jp {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .t-ttl .en {
    font-size: 1.5rem;
  }
}
/*------------
sec01
--------------*/
.sec01 {
  padding: 150px 0;
  position: relative;
}
.sec01::before {
  content: "";
  background: url(../images/sec01_bg.png) no-repeat center/contain;
  max-width: 592px;
  width: 32.888vw;
  aspect-ratio: 592/661;
  position: absolute;
  top: 42%;
  right: 0;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 165px 0 70px;
  }
  .sec01::before {
    width: 220px;
  }
}
/*------------
sec02
--------------*/
.sec02 {
  padding: 0 0 150px;
}

.sec02-container {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 144px;
  position: relative;
}

.sec02-img img {
  border-radius: 20px;
}

.sec02-ttl {
  width: 672px;
  background: #fff;
  border-radius: 0 20px 20px 20px;
  padding: 50px 88px 74px;
  position: absolute;
  bottom: 90px;
  left: 0;
  z-index: 1;
}

.sec02-txt {
  font-size: 3rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 11px;
  text-decoration-thickness: 2px;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 0 0 70px;
  }
  .sec02-container {
    width: 100%;
    padding-bottom: 50px;
  }
  .sec02-img img {
    height: 230px;
    object-fit: cover;
    border-radius: 0;
  }
  .sec02-ttl {
    width: 90%;
    border-radius: 7px;
    margin: -50px auto 0;
    padding: 30px;
    position: relative;
    bottom: auto;
    left: auto;
  }
  .sec02-txt {
    font-size: 2.4rem;
  }
}
/*------------
sec03
--------------*/
.sec03 {
  padding: 0 0 150px;
  position: relative;
}
.sec03::before {
  content: "";
  background: url(../images/sec03_bg.png) no-repeat center/contain;
  max-width: 595px;
  width: 33.055vw;
  aspect-ratio: 595/696;
  position: absolute;
  top: -28%;
  right: 0;
  z-index: -1;
}
.sec03::after {
  content: "";
  background: url(../images/sec04_bg.png) no-repeat center/contain;
  max-width: 695px;
  width: 38.611vw;
  aspect-ratio: 695/688;
  position: absolute;
  bottom: -44%;
  left: 0;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 0 0 70px;
  }
  .sec03::before {
    width: 220px;
  }
  .sec03::after {
    width: 220px;
    bottom: -8%;
  }
}
/*------------
sec04
--------------*/
.sec04 {
  padding: 0 0 130px;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 0 0 70px;
  }
}
/*------------
sec05
--------------*/
.sec05 {
  padding: 0 0 90px;
  position: relative;
}
.sec05::before {
  content: "";
  background: url(../images/sec05_bg.png) no-repeat center/contain;
  max-width: 789px;
  width: 43.833vw;
  aspect-ratio: 789/664;
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 0 0 70px;
  }
  .sec05::before {
    width: 220px;
    bottom: 20px;
  }
}
/*------------
Layout
--------------*/
.l-style01 {
  display: flex;
  margin: 0 0 0 -8%;
}
.l-style01 .l-img {
  max-width: 834px;
}
.l-style01 .l-img img {
  border-radius: 20px;
}
.l-style01 .l-desc {
  width: 742px;
  background: #fff;
  border-radius: 20px;
  padding: 56px 88px 65px 88px;
  margin: 337px 0 0 -276px;
  position: relative;
  z-index: 1;
}
.l-style01.reverse {
  flex-direction: row-reverse;
  margin: 0 -8% 0 0;
}
.l-style01.reverse .l-desc {
  margin: 337px -276px 0 0;
}

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
  }
  .l-style01 .l-img img {
    border-radius: 7px;
  }
  .l-style01 .l-desc {
    width: auto;
    background: transparent;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
  }
  .l-style01.reverse {
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
  }
  .l-style01.reverse .l-desc {
    margin: 0 auto;
  }
}
/*------------
Card
--------------*/
.card-style01 {
  display: grid;
  gap: 0 44px;
}
.card-style01 > li {
  background-color: var(--color_bg_sub);
  padding: 30px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 13px;
  position: relative;
}
.card-style01 .card-img {
  text-align: center;
}
.card-style01 .card-num {
  position: absolute;
  top: -37px;
  left: 10%;
  z-index: 1;
}
.card-style01 .card-ttl {
  color: var(--color_primary);
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
}
.card-style01 .card-desc {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-list li {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  padding-left: 35px;
  position: relative;
  z-index: 1;
}
.card-list li::before {
  content: "";
  background: var(--color_primary);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.card-list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 20px);
  background: var(--color_primary);
  position: absolute;
  top: 20px;
  left: 9px;
  z-index: -1;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    gap: 55px 0;
  }
  .card-style01 > li {
    gap: 0;
  }
  .card-style01 .card-num {
    max-width: 60px;
    top: -27px;
    left: 25px;
  }
  .card-style01 .card-ttl {
    font-size: 2rem;
  }
  .card-style01 .card-desc {
    padding: 20px;
  }
  .card-list li {
    font-size: 1.6rem;
  }
  .card-list li::before {
    top: 4px;
  }
}
/*------------
DL
--------------*/
.dl-style01 {
  display: grid;
  grid-template-columns: minmax(78px, auto) 1fr;
  align-items: flex-start;
  gap: 10px 25px;
  line-height: 1.5;
}
.dl-style01 > dt {
  background: var(--color_primary);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  white-space: nowrap;
  display: grid;
  place-items: center;
  padding: 2px 5px 4px;
}

@media (max-width: 800px) {
  .dl-style01 {
    gap: 10px 15px;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.u-contents {
  margin: 50px auto 100px;
  position: relative;
}
.u-contents::before {
  content: "";
  background: url(../images/hero_bg.png) no-repeat center/contain;
  width: 52.5vw;
  max-width: 945px;
  aspect-ratio: 945/918;
  position: absolute;
  top: 10%;
  left: -15%;
  z-index: -1;
}

@media (max-width: 800px) {
  .u-contents {
    margin: 70px auto 100px;
  }
  .u-contents::before {
    width: 300px;
    top: auto;
    bottom: -5%;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  padding-bottom: 60px;
  position: relative;
}

.f-logo {
  margin-bottom: 30px;
}

.f-logo-txt {
  font-family: var(--font_base_bold);
  font-size: 1.3rem;
  padding-bottom: 10px;
}

.f-address {
  margin-bottom: 35px;
}

.copyright {
  text-align: right;
}
.copyright small {
  font-size: 1.1rem;
}

.pagetop {
  position: absolute;
  bottom: 148px;
  right: 75px;
  z-index: 5;
}
.pagetop a {
  display: inline-block;
  transition: transform 0.5s;
}
.pagetop a:hover {
  transform: translateY(-10px);
}

@media (max-width: 1024px) {
  .footer {
    padding-bottom: 50px;
  }
  .pagetop {
    display: none;
  }
}
@media (max-width: 800px) {
  .f-layout .container {
    grid-template-columns: 1fr;
  }
  .f-logo {
    text-align: center;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}
.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

.fs15 {
  font-size: 1.5rem;
}

.jp {
  font-family: var(--font_jp);
}

.en,
[lang=en] {
  font-family: var(--font_en);
  font-weight: var(--medium);
}

.bold,
strong {
  font-family: var(--font_base_bold);
}

.font-base {
  font-family: var(--font_base);
}

.red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mtS {
  margin-top: 15px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col2,
.col3,
.col4 {
  display: grid;
}
.col2.gap,
.col3.gap,
.col4.gap {
  gap: 5%;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
  .col2.gap,
  .col3.gap,
  .col4.gap {
    gap: 30px;
  }
}
/*ボタン*/
.btn-more {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  min-height: 64px;
  min-width: 320px;
  border-radius: 100px;
  padding: 15px 40px;
  transition: 0.3s;
  position: relative;
}
.btn-more:hover {
  background: #fff;
  color: var(--color_primary);
}

.btn-out {
  padding-right: 15px;
  position: relative;
}
.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}
.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}
.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 1.8rem;
    min-width: 100%;
    min-height: 50px;
    padding: 5px 15px;
  }
}
/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #333;
  /*矢印*/
  --splide-focus-color: #333;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #333;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #333;
  /*プログレスバー*/
  --splide-toggle-color: #333;
  /*再生ボタン*/
  --splide-track-color: #333;
  /*サムネイルの枠*/
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.3;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 20px;
  transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
  right: 20px;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ddd;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}
.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid var(--splide-track-color);
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }
  .splide__arrow--prev {
    left: 10px;
  }
  .splide__arrow--next {
    right: 10px;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */