@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

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

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-repeat: no-repeat;
  background-origin: border-box;
}

html {
  -webkit-text-size-adjust: none;
  block-size: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type="file"])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol)[role="list"] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

:where(
    a[href],
    area,
    button,
    input,
    label[for],
    select,
    summary,
    textarea,
    [tabindex]:not([tabindex*="-"])
  ) {
  -ms-touch-action: manipulation;
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type="file"]) {
  cursor: auto;
}

:where(input[type="file"])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(input[type="file"])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  text-align: center;
  user-select: none;
}

:where(
    button,
    button[type],
    input[type="button"],
    input[type="submit"],
    input[type="reset"]
  ),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  text-align: center;
  user-select: none;
}

:where(
    button,
    button[type],
    input[type="button"],
    input[type="submit"],
    input[type="reset"]
  )[disabled] {
  cursor: not-allowed;
}

/* 疑似クラス:rootでcss変数の定義 関数にてremに変換*/
:root {
  --c__accent: #ff4b46;
  --c__white: #ffffff;
  --c__gray: #eeeeee;
  --c__black: #252526;
  --fs__31px: 1.9375rem;
  --fs__29px: 1.801875rem;
  --fs__26px: 1.601875rem;
  --fs__25px: 1.5625rem;
  --fs__23px: 1.42375rem;
  --fs__20px: 1.265625rem;
  --fs__18px: 1.125rem;
  --fs__16px: 1rem;
  --fs__14px: 0.88875rem;
}

@-webkit-keyframes shrinkToLeft {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes shrinkToLeft {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes shrinkToRight {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes shrinkToRight {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInUp__bgRebirth {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    background-color: var(--c__white);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: var(--c__white);
    opacity: 1;
  }
  100% {
    background-color: var(--c__gray);
  }
}
@keyframes slideInUp__bgRebirth {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    background-color: var(--c__white);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: var(--c__white);
    opacity: 1;
  }
  100% {
    background-color: var(--c__gray);
  }
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.75;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
}

#body_wrap {
  overflow: hidden;
}

.post_content p {
  margin-bottom: var(--fs__16px);
}

.post_content h1,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5 {
  margin: 3rem 0 1.38rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.post_content small,
.post_content .text_small {
  font-size: var(--fs__13px);
}

.c-pageTitle,
.post_content h1 {
  margin-top: 0;
  font-size: var(--fs__29px);
}

.c-pageTitle[data-style="b_bottom"] .c-pageTitle__inner {
  border-bottom: 1px solid var(--c__accent);
}

.post_content h2 {
  font-size: var(--fs__26px);
}

.post_content h2.is-style-section_ttl::after {
  bottom: 0.5em;
}

.post_content h3 {
  font-size: var(--fs__23px);
}

.post_content h4 {
  font-size: var(--fs__20px);
}

.post_content h5 {
  font-size: var(--fs__18px);
}

.lum-lightbox-inner img {
  margin: 0 auto;
}

.bl_table td,
.bl_table th {
  padding: 1.5em 0.75em;
}
.bl_dl.is-style-float > .swell-block-dl__dt {
  padding: 1.5em 2.5em 1.5em 0;
}
.bl_dl.is-style-float > .swell-block-dl__dt::after {
  top: calc(2.25em - 1px);
  right: 2em;
  background-color: var(--c__white);
}

.bl_dl.is-style-float > .swell-block-dl__dd {
  margin-left: 0;
  padding: 1.5em 0;
}

ul.bl_listBlock__none {
  padding-left: 0;
}
ul.bl_listBlock__none li::marker {
  content: none;
}

.bl_media__colgap3 {
  -webkit-column-gap: 3em;
  -moz-column-gap: 3em;
  column-gap: 3em;
}

.hp_p-bm0 {
  padding-bottom: 0 !important;
}

.hp_p-lf1 {
  padding-left: 1em !important;
}

.hp_fs_l,
.hp_fs_l * {
  font-size: var(--fs__31px) !important;
}

.hp_fs_m,
.hp_fs_m * {
  font-size: var(--fs__25px) !important;
}

.hp_fs_s,
.hp_fs_s * {
  font-size: var(--fs__20px) !important;
}
.el_br__sp {
  display: none;
}

.el_br__tb {
  display: none;
}

h3.at_ttl {
  color: var(--c__white);
  font-weight: bold;
  text-align: center;
}
h3.at_ttl::before {
  content: none;
}
h3.at_ttl .en {
  display: inline-block;
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  border-bottom: 2px solid currentColor;
  font-size: 3rem;
}
h3.at_ttl .ja {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

h2.tp_secTtl__l {
  padding-bottom: 0.6em;
  font-size: clamp(2.813rem, 2.175rem + 3.19vw, 6rem);
}
h2.tp_secTtl__l::after {
  top: auto;
  right: auto;
  bottom: 10px;
  left: calc(50% - 1.25em);
  width: 2.5em;
  height: 1px;
}

.c-gnav > .menu-item > a {
  font-weight: bold;
}

.el_gNavi_eventsNone > a {
  pointer-events: none;
}

.el_gNavi_eventsNone a ul li a {
  pointer-events: auto;
}

.top .u-obf-cover {
  -o-object-fit: contain;
  -o-object-position: 65% 0%;
  object-fit: contain;
  object-position: 65% 0%;
}

h1.tp_mv_catch {
  color: var(--c__black);
  font-weight: bold;
  font-size: clamp(1rem, 0.4rem + 3vw, 4rem);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
}
h1.tp_mv_catch .tp_mv_catch-top > span,
h1.tp_mv_catch .tp_mv_catch-bottom > span {
  background-color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.tp_mv_catch-top {
  display: inline-block;
  position: relative;
  margin-bottom: 1em;
}
.tp_mv_catch-top::after {
  -webkit-box-shadow: 2px 2px 0px var(--c__black);
  position: absolute;
  bottom: -0.5em;
  left: 0;
  width: 40%;
  height: 2px;
  background-color: var(--c__white);
  box-shadow: 2px 2px 0px var(--c__black);
  content: "";
}

h1.tp_mv_catch span {
  position: relative;
}
h1.tp_mv_catch span::after {
  -webkit-animation: shrinkToRight 0.8s ease-in-out 1s both;
  display: inline-block;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c__black);
  content: "";
  animation: shrinkToRight 0.8s ease-in-out 1s both;
}

.p-mainVisual {
  border-bottom: 1px solid var(--c__gray);
}

.p-mainVisual__slide {
  position: relative;
  overflow: visible;
}
.p-mainVisual__slide::after {
  -webkit-animation: shrinkToRight 0.8s ease-in-out 0.5s both;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: var(--c__black);
  content: "";
  animation: shrinkToRight 0.8s ease-in-out 0.5s both;
  will-change: transform, opacity;
}

.p-mainVisual__textLayer {
  position: absolute;
  top: 3%;
}

.tp_postList {
  width: min(980px, 100%);
  margin: 0 auto;
}
.tp_postList a.p-postList__link {
  -webkit-transition: all 0.4s;
  padding-right: 1em;
  padding-left: 1em;
  transition: all 0.4s;
}
.tp_postList a.p-postList__link:hover,
.tp_postList a.p-postList__link:focus {
  color: var(--c__accent);
}
.tp_postList .p-postList__body {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.post_content .tp_readWrap p {
  font-size: var(--fs__20px);
}

.tp_secTtl_news {
  left: 0;
  text-align: left;
}

.tp_media__bg {
  position: relative;
}
.tp_media__bg:before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 110vw;
  height: 100%;
  background-color: var(--c__gray);
  content: "";
}
.tp_media__bg::after {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 110vw;
  height: 100%;
  background-color: var(--c__white);
  content: "";
}

.ab_ourValu_Wrap .wp-block-group__inner-container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  display: grid;
  justify-content: center;
}
.ab_ourValu_Wrap ul {
  display: inline-block;
}

.slideInUp.animate {
  -webkit-animation: slideInUp 0.7s ease-in-out 0s both;
  animation: slideInUp 0.7s ease-in-out 0s both;
}

.slideInUp__bgRebirth.animate {
  -webkit-animation: slideInUp__bgRebirth 0.5s ease-in-out 0.5s both;
  animation: slideInUp__bgRebirth 0.5s ease-in-out 0.5s both;
}

.shrinkToLeft.animate::after {
  -webkit-animation: shrinkToLeft 1s ease-in-out 0s both;
  animation: shrinkToLeft 1s ease-in-out 0s both;
}
.bl_dl__ptc.is-style-float {
  --swl-dt-width: 33%;
}

.bl_gallery_col2.wp-block-gallery::after {
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) * 0.5);
  content: "";
}

@media (max-width: 1440px) {
  h2.tp_secTtl__l {
    left: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 1025px) {
  .tp_media {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .hp_tb__textCenter {
    text-align: center !important;
  }
  .el_br__tb {
    display: block;
  }
  h1.tp_mv_catch span::after {
    -webkit-animation: none;
    content: none;
    animation: none;
  }
  .p-mainVisual__slide::after {
    -webkit-animation: none;
    content: none;
    animation: none;
  }
  .tp_media__bg:before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .tp_media__bg::after {
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slideInUp.animate {
    -webkit-animation: none;
    animation: none;
  }
  .slideInUp__bgRebirth.animate {
    -webkit-animation: none;
    animation: none;
  }
  .shrinkToLeft.animate {
    -webkit-animation: none;
    animation: none;
  }
  .tb_media {
    --swl-mediatext--space: 1rem;
    padding-right: 0;
    padding-left: 0;
  }
  .tb_media.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .is-stacked-on-mobile.tb_media {
    --swl-mediatext--gap: 0;
    --swl-mediatext--offsetX: 0;
  }
  .tb_media.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-row: 1 !important;
  }
  .tb_media.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-row: 2 !important;
    padding: var(--swl-mediatext--space) !important;
  }
  .tb_media.is-stacked-on-mobile .wp-block-media-text__content {
    grid-row: 2;
    grid-column: 1;
  }
  .bl_cover__mission .wp-block-cover__image-background {
    -o-object-position: 97% 50%;
    object-position: 97% 50%;
  }
}

@media only screen and (max-width: 425px) {
  .bl_dl.is-style-float.swell-block-dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bl_dl.is-style-float > .swell-block-dl__dt {
    width: 100%;
    padding: 0.5em 0.25em 0.25em;
  }
  .bl_dl.is-style-float > .swell-block-dl__dt::after {
    content: none;
  }
  .bl_dl.is-style-float > .swell-block-dl__dd {
    width: 100%;
    padding: 0.25em 0.25em 0.5em;
  }
  .hp_sp__textJustify {
    text-align: justify !important;
  }
  .el_br__sp {
    display: block;
  }
  .top .u-obf-cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-mainVisual__slide {
    margin: 0 0 0 0;
  }
  .post_content .tp_readWrap p {
    font-size: var(--fs__18px);
  }
  .tp_secTtl_news {
    left: calc(50% - 1.25em);
    text-align: center;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .tp_media__bg {
    left: 0;
    width: 100%;
  }
}

@media (min-width: 1441px) {
  h2.tp_secTtl__l {
    left: -100px;
    width: calc(100% + 200px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
  }
}

/* MSMメソッドページ　リニューアル */
.method_font {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif !important;
}

.method_color_white a {
  color: #fff !important;
}

.method_font_gradation {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 30%, #ff3bef 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 959px) {
  .method_flex_reverse .swell-block-columns__inner {
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 768px) {
  .method_mv_copy {
    font-size: 4.6vw !important;
  }

  .method_heading {
    font-size: 6.4vw !important;
  }

  .method_font_exlarge {
    font-size: 15.2vw !important;
  }

  .method_font_large {
    font-size: 5.3vw !important;
  }

  .method_font_sub {
    font-size: 7.2vw !important;
  }
}

@media (max-width: 430px) {
  .method_font_medium {
    font-size: 4.6vw !important;
  }

  .method_spacer_sp {
    height: 20px !important;
  }

  .method_spacer_none {
    display: none;
  }
}

/* js */
/* 画像変形アニメーション */
.translate_anime {
  transform: scale(0.8);
  transition: 0.15s linear;
}

.translate_anime_small,
.translate_anime_small02 {
  transform: scale(1);
  transition: 0.15s linear;
}

/* フェードアップ */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.9s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTopTrigger,
.fadeUpTrigger {
  opacity: 0;
}

/* ===== Topics Slider v2（ドラッグ可・無限スクロール） ===== */
.topics-slider {
  --gap: 28px;
  --card-w: clamp(280px, 31vw, 420px);
  --radius: 16px;
  --pill-bg: #fde8ef;
  --pill-fg: #c23b71;
  position: relative;
}

.topics-slider .ts__viewport {
  position: relative;
  overflow-x: auto;           /* 指/マウスで横スクロール */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.topics-slider .ts__viewport::-webkit-scrollbar { display: none; }

.topics-slider .ts__belt {
  display: flex;
  gap: var(--gap);
  width: max-content;         /* コンテンツ幅に追従 */
}

.topics-slider .ts__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0 var(--gap);
}

.topics-slider .ts__item { flex: 0 0 auto; }
.topics-slider .ts__card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  width: var(--card-w);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.topics-slider .ts__card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.08); }

.topics-slider .ts__thumb { aspect-ratio: 16/9; background:#f6f7f9; overflow:hidden; }
.topics-slider .ts__thumb img { width:100%; height:100%; object-fit:cover; display:block; }

.topics-slider .ts__body { padding:14px 16px 16px; }
.topics-slider .ts__pill {
  display:inline-block; margin-bottom:8px; padding:6px 10px;
  font-size:12px; border-radius:999px; background:var(--pill-bg); color:var(--pill-fg);
}
.topics-slider .ts__date { display:block; font-size:12px; color:#6b7280; margin-bottom:6px; }
.topics-slider .ts__title {
  font-weight:700; font-size:clamp(15px,1.6vw,18px); line-height:1.45; margin:0;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* 矢印ボタン */
.topics-slider .ts__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:2; width:36px; height:36px; border-radius:999px; border:1px solid #e5e7eb;
  background:#fff; color:#111; display:grid; place-items:center; cursor:pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.topics-slider .ts__prev{ left:8px; }
.topics-slider .ts__next{ right:8px; }
@media (max-width:480px){ .topics-slider { --card-w: 86vw; --gap: 18px; } }

