@charset "UTF-8";
/* コピペ用 */
/* background: rgba(0,0,0,0.2); */
/* シンプルリンクホバー */
/* @include link-hover-simple; */
/* @include incSmooth(); */
/* @include btm(); */
/* @include top(); */
/* 基準フォントサイズ（PC） */
/* px → rem変換関数 */
/* フォントサイズ用Mixin（汎用）

  font-size のみ
  @include fs(16);
  この場合、line-heightは自動的に適用される
  例）
  @include fs(95);  → font-size: 5.9375rem; line-height: 1.2;
  @include fs(25);  → font-size: 1.5625rem; line-height: 1.4;
  @include fs(16);  → font-size: 1rem;      line-height: 1.8;
  @include fs(12);  → font-size: 0.75rem;   line-height: 2.0;

  手動指定1
  font-size + line-height
  @include fs(16, 1.8);

  手動指定2
  font-size + line-height + letter-spacing
  @include fs(16, 1.8, 0.04em);
*/
/* clamp フォントサイズ用Mixin

  大見出し（vw手動指定）
  .head01Main {
    @include fsc(44, 6.25, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);
  SP(375px):    44px  ← min が下限として効く
  PC(1280px):   80px  ← vw が効く
  大画面(1600px): 100px ← max が上限として効く

  vw の値の求め方
  vw = max ÷ デザイン基準幅(px) × 100
  例）PC最大100px、基準幅1600px の場合
  100 ÷ 1600 × 100 = 6.25vw
*/
/* clamp フォントサイズ用Mixin2（vw自動計算）

  大見出し2（min・max を入れると vw を自動計算）
  .head01Main {
    @include fsc2(44, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);  ※基準幅1600pxで自動計算

  基準幅を変えたい場合
  @include fsc2(44, 100, 1440);
*/
/* パディング生成（null安全＋レスポンシブ対応）
  .section {
    @include responsive-padding(70px, 40px);
  }
  PC: padding: 70px 40px;
  SP: padding: 52.5px 30px;
*/
/* マージンボトム汎用クラス吐き出し */
/* 幅設定汎用クラス吐き出し */
/*

.sampleClass {

フォント指定
font-family: $font-en;
font-family: $font-min;


背景色
background: rgba(0,0,0,0.2);

通常テキスト（SPはhtmlのフォントサイズに追従）
@include fs(16);

大見出し
@include fsc(44, 6.25, 100);

大見出し2（min・max を入れると vw を自動計算）
@include fsc2(44, 100);

マージン（SPは60%）
@include btm();
@include top();

パディング
@include responsive-padding(70px, 40px); 

シンプルホバー
@include link-hover-simple;

フォントスムーズ
@include incSmooth();

}

*/
body {
  background: #C9D5E7;
  background: linear-gradient(180deg, #c9d5e7 70%, #eff3f9 100%) fixed; }

.contents {
  padding-bottom: 0; }

.topHd {
  margin-bottom: 3vw;
  line-height: 1;
  width: 100%; }
  .topHd .en {
    background: #C8D5DD;
    background: linear-gradient(90deg, #B2BCC4 0%, #B2BCC4 30%, #BACEDF 70%, #BACEDF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: "EB Garamond", serif;
    font-size: 5rem;
    line-height: 1.2;
    font-size: clamp(36px, 5.7142857143vw, 80px);
    line-height: 1.4;
    margin-bottom: 6px; }
  .topHd .ja {
    color: #373a3c;
    display: block;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 1.125rem;
    line-height: 1.8;
    font-size: clamp(15px, 1.2857142857vw, 18px);
    line-height: 1; }

@media only screen and (max-width: 960px) {
  .topHd {
    margin-bottom: 40px; } }
.arrowBtnTop {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  font-size: 1rem;
  line-height: 1.8;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em; }
  .arrowBtnTop a {
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, #313A3F 0%, #BFBFBF 50%, #313A3F 100%) 1;
    display: inline-block;
    text-decoration: none;
    min-width: 350px;
    padding: 20px 50px 24px 8px;
    text-align: left;
    position: relative;
    transition: 0.2s; }
    .arrowBtnTop a:before {
      background: linear-gradient(90deg, #BFBFBF 0%, #313A3F 50%, #BFBFBF 100%);
      content: '';
      display: inline-block;
      height: 1px;
      width: 0;
      position: absolute;
      bottom: -1px;
      left: 0;
      transition: 0.2s; }
    .arrowBtnTop a .arrow {
      overflow: hidden;
      position: absolute;
      top: 0;
      right: 8px;
      bottom: 0;
      width: 30px;
      margin: 0;
      line-height: 1; }
    .arrowBtnTop a .arrow:before,
    .arrowBtnTop a .arrow:after {
      content: "→";
      position: absolute;
      top: 40%;
      right: 0;
      animation-fill-mode: forwards;
      animation-duration: 0.3s;
      letter-spacing: 0 !important; }
    .arrowBtnTop a .arrow:after {
      transform: translateX(-100%);
      opacity: 0; }
    @media only screen and (min-width: 960px) {
      .arrowBtnTop a:hover {
        color: #666; }
        .arrowBtnTop a:hover:before {
          width: 100%; }
        .arrowBtnTop a:hover .arrow:before {
          animation-name: transformRightLeft;
          /* 修正: hover時のアニメーションを指定 */
          animation-delay: 0s;
          letter-spacing: 0 !important; }
        .arrowBtnTop a:hover .arrow:after {
          animation-name: transformLeftRight;
          /* 修正: hover時のアニメーションを指定 */
          animation-delay: 0.2s;
          letter-spacing: 0 !important; } }

@media only screen and (max-width: 960px) {
  .arrowBtnTop {
    padding: 0; }
    .arrowBtnTop a {
      display: flex;
      margin: 0 auto;
      padding: 16px 50px 22px 8px;
      min-width: auto;
      min-width: none;
      max-width: 320px;
      width: 100%; } }
.mvTop {
  /*
  background: #C9D5E7;
  background: linear-gradient(180deg, rgba(201, 213, 231, 1) 60%, rgba(239, 243, 249, 1) 100%);
  */
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 2;
  text-shadow: rgba(7, 108, 199, 0.1) 1px 0 6px;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  /* 
  1周分の移動距離（画面幅に対する倍率）
  1.2 = 画面幅の120%分ループ
  */ }
  .mvTop_inr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 100vh;
    width: 100%; }
  .mvTop_data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    min-width: 52%; }
    .mvTop_data h1 {
      font-weight: 500;
      line-height: 1;
      margin-bottom: 2.5vw;
      position: relative;
      z-index: 2;
      text-shadow: 0 0 16px rgba(11, 115, 207, 0.25); }
      .mvTop_data h1 .sub {
        display: block;
        font-family: "EB Garamond", serif;
        font-size: clamp(18px, 1.9285714286vw, 27px);
        line-height: 1;
        letter-spacing: 0;
        padding-bottom: 1.4vw; }
      .mvTop_data h1 .copy {
        display: block;
        font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
        font-size: clamp(32px, 6vw, 84px);
        line-height: 1; }
    .mvTop_data .txt {
      display: block;
      font-family: "EB Garamond", serif;
      font-style: italic;
      font-size: clamp(8px, 0.8571428571vw, 12px);
      line-height: 1.7;
      padding-left: 5vw; }
  .mvTop .mindImgList {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 240%;
    display: flex;
    animation: mindMarquee 60s linear infinite; }
    .mvTop .mindImgList__page {
      position: relative;
      flex: 0 0 50%;
      width: 50%;
      height: 100%; }
    .mvTop .mindImgList li {
      border-radius: 16px;
      position: absolute;
      opacity: 0;
      transform: translate(0, 0) scale(0.4); }
      .mvTop .mindImgList li .inr {
        position: relative; }
      .mvTop .mindImgList li .img {
        padding: 3% 16% 16% 3%;
        overflow: hidden; }
        .mvTop .mindImgList li .img:after {
          background: url("../img/top/mv_soap.png") left top no-repeat;
          background-size: cover;
          content: '';
          display: block;
          mix-blend-mode: multiply;
          opacity: 0.4;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          z-index: 2; }
        .mvTop .mindImgList li .img img {
          height: auto;
          width: 100%;
          transform-origin: center center;
          will-change: transform, opacity, filter; }
      .mvTop .mindImgList li.li01 {
        top: 5%;
        left: 44%;
        width: 14%; }
      .mvTop .mindImgList li.li02 {
        bottom: 5%;
        left: 8%;
        width: 20%; }
      .mvTop .mindImgList li.li03 {
        top: calc(50% - 15vw);
        left: 55%;
        width: 32%; }
      .mvTop .mindImgList li.li04 {
        top: -5%;
        left: -10%;
        width: 22%; }
      .mvTop .mindImgList li.li05 {
        bottom: 35%;
        left: -7%;
        width: 10%; }
      .mvTop .mindImgList li.li06 {
        bottom: 60%;
        left: 27%;
        width: 7%; }
  .mvTop .mindImgList li {
    transform-origin: center bottom; }
    .mvTop .mindImgList li.li01 {
      animation: mindFade01 1s ease 0.6s 1 forwards; }
      .mvTop .mindImgList li.li01 .inr {
        animation: 3.2s fuwafuwaS 1.1s infinite; }
        .mvTop .mindImgList li.li01 .inr img {
          animation: rotateOnce 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards; }
    .mvTop .mindImgList li.li02 {
      animation: mindFade01 1s ease 0.75s 1 forwards; }
      .mvTop .mindImgList li.li02 .inr {
        animation: 3.3s fuwafuwa 1.2s infinite; }
        .mvTop .mindImgList li.li02 .inr img {
          animation: rotateOnce 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards; }
    .mvTop .mindImgList li.li03 {
      animation: mindFade01 1s ease 0.9s 1 forwards; }
      .mvTop .mindImgList li.li03 .inr {
        animation: 4s fuwafuwaL 2s infinite; }
        .mvTop .mindImgList li.li03 .inr img {
          animation: rotateOnce 2.5s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards; }
    .mvTop .mindImgList li.li04 {
      animation: mindFade01 1s ease 1.2s 1 forwards; }
      .mvTop .mindImgList li.li04 .inr {
        animation: 3.5s fuwafuwa 1.4s infinite; }
        .mvTop .mindImgList li.li04 .inr img {
          animation: rotateOnce 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards; }
    .mvTop .mindImgList li.li05 {
      animation: mindFade01 1s ease 1.2s 1 forwards; }
      .mvTop .mindImgList li.li05 .inr {
        animation: 3.6s fuwafuwaS 1.5s infinite; }
        .mvTop .mindImgList li.li05 .inr img {
          animation: rotateOnce 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards; }
    .mvTop .mindImgList li.li06 {
      animation: mindFade01 1s ease 1.05s 1 forwards; }
      .mvTop .mindImgList li.li06 .inr {
        animation: 3.7s fuwafuwaS 1.6s infinite; }
        .mvTop .mindImgList li.li06 .inr img {
          animation: rotateOnce 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards; }
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-32px); } }
@keyframes fuwafuwaS {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-16px); } }
@keyframes fuwafuwaL {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-60px); } }
@keyframes mindFade01 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4); }
  60% {
    transform: translate(0, 0) scale(1.15); }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1); } }
@keyframes rotateOnce {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: rotate(-60deg) scale(0.8); }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: rotate(0deg) scale(1); } }
@keyframes mindMarquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
  .mvTop .infoBnr {
    position: absolute;
    bottom: 5%;
    right: 2.5%;
    width: 368px;
    animation: fadeInUp 0.8s cubic-bezier(0.56, 0, 0.2, 1) 1.5s 1 forwards;
    opacity: 0;
    transform: translate(0px, 30px); }
    .mvTop .infoBnr a {
      display: block;
      transition: 0.2s; }
      .mvTop .infoBnr a:hover {
        transform: scale(1.1); }

@media only screen and (min-width: 1600px) {
  .mvTop_data h1 .sub {
    font-size: 1.7vw; }
  .mvTop_data h1 .copy {
    font-size: 5vw; }
  .mvTop_data .txt {
    font-size: 0.8vw; } }
@media only screen and (max-width: 960px) {
  .mvTop_data {
    min-width: 80%; }
    .mvTop_data h1 {
      margin-bottom: 5vw;
      padding-top: 8vh; }
      .mvTop_data h1 .sub {
        font-size: 4.2vw;
        padding-bottom: 3vw; }
      .mvTop_data h1 .copy {
        font-size: 10vw; }
    .mvTop_data .txt {
      font-size: 3.5vw;
      padding-left: 0; }
  .mvTop .mindImgList {
    width: 360%;
    animation: mindMarquee 27s linear infinite; }
    .mvTop .mindImgList li.li01 {
      top: 9%;
      left: 12%;
      width: 20%; }
    .mvTop .mindImgList li.li02 {
      bottom: 0;
      left: 25%;
      width: 35%; }
    .mvTop .mindImgList li.li03 {
      top: 15%;
      left: 35%;
      width: 50%; }
    .mvTop .mindImgList li.li04 {
      top: -7%;
      left: -30%;
      width: 22%; }
    .mvTop .mindImgList li.li05 {
      bottom: 65%;
      left: -5%;
      width: 7%; }
    .mvTop .mindImgList li.li06 {
      bottom: 15%;
      left: -9%;
      width: 17%; }
  .mvTop .infoBnr {
    bottom: 40px;
    right: auto;
    left: 0;
    width: 100%;
    text-align: center; }
    .mvTop .infoBnr a {
      width: 100%;
      text-align: center; }
    .mvTop .infoBnr img {
      display: inline-block;
      max-width: 360px; } }
.contents {
  margin-top: calc(100vh - 100px); }
  .contents section {
    opacity: 1;
    transform: translateY(0); }

@media only screen and (max-width: 960px) {
  .contents {
    margin-top: calc(100vh - 72px); } }
.topBg {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 100%); }

@media only screen and (max-width: 960px) {
  .topBg {
    background: rgba(255, 255, 255, 0.4);
    padding-top: 30vw; } }
.top01 {
  padding: 140px 40px 60px; }
  .top01 .inr {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    text-align: center;
    /*
    .img {
    margin-right: 6%;
    width: 37%;
    }
    */ }
    .top01 .inr .data {
      padding-top: 40px; }
      .top01 .inr .data h2 {
        /*
        background: linear-gradient(90deg, #313A3F 0%, #B7C0D6 60%, #313A3F 80% 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        */
        color: #313A3F;
        font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
        font-feature-settings: "palt" 1;
        font-size: 2.25rem;
        line-height: 1.4;
        font-size: clamp(22px, 2.8571428571vw, 40px);
        line-height: 1.55;
        margin-bottom: 28px; }
      .top01 .inr .data .desc {
        font-size: 1.0625rem;
        line-height: 1.8;
        line-height: 2.2;
        letter-spacing: 0.04em;
        margin-top: 40px; }

@media only screen and (max-width: 960px) {
  .top01 {
    padding: 0 2.5vw; }
    .top01 .inr {
      display: block;
      margin: 0;
      max-width: 100%; }
      .top01 .inr .img {
        margin: 0 0 32px;
        text-align: center;
        width: 100%; }
        .top01 .inr .img img {
          display: inline-block;
          max-width: 85%; }
      .top01 .inr .data {
        padding-top: 0; }
        .top01 .inr .data h2 {
          margin-bottom: 0;
          text-align: center; }
        .top01 .inr .data .desc {
          font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
          font-size: 15px;
          line-height: 2;
          letter-spacing: 0.01em;
          margin-top: 28px;
          text-align: center; }
        .top01 .inr .data .btm60 {
          margin-bottom: 28px; } }
.top02 {
  padding: 60px 0 100px; }
  .top02 .topHd {
    text-align: center; }
  .top02 .vi {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%; }
    @media only screen and (min-width: 960px) {
      .top02 .vi {
        height: 30vw;
        overflow: hidden;
        clip-path: url(#curveMask); }
        .top02 .vi .half-image {
          width: 100%;
          height: 100%;
          object-fit: cover; } }
    .top02 .vi img {
      height: auto;
      width: 100%; }
  .top02 .data {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 0 5vw; }
    .top02 .data .dataInr {
      min-width: 350px;
      width: 27.5%; }
    .top02 .data .desc {
      font-size: 0.8125rem;
      line-height: 2;
      line-height: 1.8;
      letter-spacing: 0.04em;
      margin: 60px 0 28px; }
  .top02 .bArea {
    padding: 0 6vw; }
    .top02 .bArea .bAreaInr {
      margin: 0 auto; }
    .top02 .bArea h2 {
      font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
      font-size: 1.875rem;
      line-height: 1.4;
      font-size: clamp(24px, 2.8571428571vw, 40px);
      line-height: 1.8;
      letter-spacing: 0.04em;
      margin: 60px 0 28px; }

@media only screen and (max-width: 960px) {
  .top02 {
    padding: 80px 0; }
    .top02 .topHd {
      text-align: center; }
    .top02 .vi {
      display: block; }
      .top02 .vi > div {
        margin-bottom: 12px; }
    .top02 .data {
      display: block;
      padding: 0 7.5vw; }
      .top02 .data .dataInr {
        min-width: 100%;
        width: 100%; }
      .top02 .data .desc {
        font-size: 14px;
        line-height: 1.55;
        margin: 28px 0; }
      .top02 .data .arrowBtnTop {
        margin-bottom: 0; }
        .top02 .data .arrowBtnTop a {
          min-width: auto;
          min-width: none; }
    .top02 .bArea {
      padding: 0; }
      .top02 .bArea .bAreaInr {
        margin: 0 auto; }
      .top02 .bArea h2 {
        margin: 80px 7.5vw 28px; }
    .top02 .arrowBtnTop {
      padding: 0; }
      .top02 .arrowBtnTop a {
        display: flex;
        margin: 0 auto;
        padding: 16px 50px 22px 8px;
        min-width: auto;
        min-width: none;
        max-width: 320px;
        width: 100%; } }
@media only screen and (min-width: 960px) {
  .top02 .accordion {
    display: flex;
    height: 35vw; }
  .top02 .accordion .item {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    flex: 1;
    transition: flex 400ms;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 40px; }
    .top02 .accordion .item:after {
      background: rgba(0, 101, 191, 0.6);
      /*mix-blend-mode: color-dodge;*/
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      height: 100%;
      width: 100%;
      z-index: 1;
      transition: 0.4s; }
    .top02 .accordion .item.bg-01 {
      background-image: url("/assets/img/top/02_barea_01.webp"); }
      .top02 .accordion .item.bg-01:after {
        background: rgba(0, 101, 191, 0.6); }
    .top02 .accordion .item.bg-02 {
      background-image: url("/assets/img/top/02_barea_02.webp"); }
      .top02 .accordion .item.bg-02:after {
        background: rgba(59, 152, 204, 0.6); }
    .top02 .accordion .item.bg-03 {
      background-image: url("/assets/img/top/02_barea_03.webp"); }
      .top02 .accordion .item.bg-03:after {
        background: rgba(15, 121, 197, 0.6); }
  .top02 .num {
    color: #FFF;
    font-family: "EB Garamond", serif;
    font-size: 1.25rem;
    line-height: 1.8;
    position: absolute;
    top: 24px;
    left: calc(50% - 10px);
    right: 0;
    z-index: 3; }
  .top02 .menuName {
    backdrop-filter: blur(12px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #FFF;
    font-family: "EB Garamond", serif;
    font-size: 1.375rem;
    line-height: 1.8;
    font-weight: 300;
    vertical-align: middle;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-shadow: rgba(0, 0, 0, 0.2) 2px 2px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: 0.4s;
    z-index: 2; }
  .top02 .overlay {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    position: relative;
    z-index: 2;
    padding: 32px 40px;
    max-width: 400px;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(6px); }
  .top02 .subHd {
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 2rem;
    line-height: 1.4;
    font-size: clamp(20px, 2.2857142857vw, 32px);
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 12px; }
  .top02 .accordion .item:hover {
    flex: 16; }
    .top02 .accordion .item:hover:after {
      background: rgba(0, 101, 191, 0.15); }
    .top02 .accordion .item:hover.bg-01:after {
      background: rgba(0, 101, 191, 0.15); }
    .top02 .accordion .item:hover.bg-02:after {
      background: rgba(59, 152, 204, 0.15); }
    .top02 .accordion .item:hover.bg-03:after {
      background: rgba(15, 121, 197, 0.15); }
    .top02 .accordion .item:hover .num {
      left: 40px; }
    .top02 .accordion .item:hover .menuName {
      opacity: 0; }
    .top02 .accordion .item:hover .overlay {
      animation: fadeAnime 0.6s cubic-bezier(0.56, 0, 0.2, 1) 0.05s 1 forwards; }
  @keyframes fadeAnime {
    0% {
      opacity: 0;
      transform: scale(1.05);
      filter: blur(6px); }
    100% {
      opacity: 1;
      transform: scale(1);
      filter: blur(0); } } }
@media only screen and (max-width: 960px) {
  .top02 .accordion .item {
    background-size: 120% auto;
    background-position: center top;
    background-repeat: no-repeat;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    padding: 51vw 5vw 24px; }
    .top02 .accordion .item.bg-01 {
      background-image: url("/assets/img/top/02_barea_01.webp"); }
    .top02 .accordion .item.bg-02 {
      background-image: url("/assets/img/top/02_barea_02.webp"); }
    .top02 .accordion .item.bg-03 {
      background-image: url("/assets/img/top/02_barea_03.webp"); }
  .top02 .num {
    color: #FFF;
    font-family: "EB Garamond", serif;
    font-size: 25px;
    position: absolute;
    top: 24px;
    left: 7.5vw;
    right: 0;
    z-index: 3; }
  .top02 .menuName {
    display: none; }
  .top02 .overlay {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 6px;
    position: relative;
    z-index: 2;
    padding: 24px 5vw 36px; }
  .top02 .subHd {
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 2rem;
    line-height: 1.4;
    font-size: clamp(20px, 2.2857142857vw, 32px);
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 16px; }
  .top02 .desc {
    font-size: 14px; } }
.top03 {
  background: url("/assets/img/top/03_bg.webp") center top no-repeat;
  background-size: cover;
  padding: 140px 0; }
  .top03 .topHd {
    padding: 0 6vw; }
    .top03 .topHd .ja {
      color: #FFF; }
  .top03 .mostNew {
    padding: 1.5vw 6vw; }
    .top03 .mostNew a {
      color: #FFF;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin: 0 auto 100px;
      max-width: 1560px; }
      .top03 .mostNew a .img {
        overflow: hidden;
        position: relative;
        width: 69%; }
        .top03 .mostNew a .img img {
          transition: 0.4s; }
      .top03 .mostNew a .data {
        width: 26%; }
        .top03 .mostNew a .data h3 {
          font-weight: 400;
          line-height: 1;
          margin-bottom: 16px; }
          .top03 .mostNew a .data h3 .date {
            display: block;
            font-size: 0.875rem;
            line-height: 2;
            margin-bottom: 4px; }
          .top03 .mostNew a .data h3 .title {
            display: block;
            font-size: 1.375rem;
            line-height: 1.8;
            letter-spacing: 0;
            line-height: 1.55; }
        .top03 .mostNew a .data .desc {
          color: #6a809a;
          letter-spacing: 0;
          line-height: 1.8; }
      .top03 .mostNew a:hover .img img {
        transform: scale(1.05); }
      .top03 .mostNew a:hover .data h3 .title {
        text-decoration: underline; }
      .top03 .mostNew a:hover .data .desc {
        color: #6a809a;
        letter-spacing: 0;
        line-height: 1.8; }
  .top03 .slideBox {
    position: relative; }
  .top03 .swiper {
    position: relative;
    padding: 0 5vw 160px; }
    .top03 .swiper .swiper-slide {
      position: relative;
      width: 550px; }
      .top03 .swiper .swiper-slide a {
        color: #FFF;
        display: block; }
        .top03 .swiper .swiper-slide a .img {
          margin-bottom: 24px;
          position: relative;
          overflow: hidden; }
          .top03 .swiper .swiper-slide a .img img {
            transition: 0.4s; }
        .top03 .swiper .swiper-slide a h3 {
          font-weight: 400;
          line-height: 1;
          margin-bottom: 16px; }
          .top03 .swiper .swiper-slide a h3 .date {
            display: block;
            font-size: 0.875rem;
            line-height: 2;
            margin-bottom: 4px; }
          .top03 .swiper .swiper-slide a h3 .title {
            display: block;
            font-size: 1.375rem;
            line-height: 1.8;
            letter-spacing: 0;
            line-height: 1.55; }
        .top03 .swiper .swiper-slide a .desc {
          color: #6a809a;
          letter-spacing: 0;
          line-height: 1.8; }
        .top03 .swiper .swiper-slide a:hover .img img {
          transform: scale(1.05); }
        .top03 .swiper .swiper-slide a:hover h3 .title {
          text-decoration: underline; }
  .top03 .swiper-button-prev, .top03 .swiper-button-next {
    background: #0B73CF;
    border-radius: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    font-size: 0;
    display: flex;
    min-width: 60px;
    min-height: 60px;
    width: 3vw;
    height: 3vw;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
    opacity: 1; }
    .top03 .swiper-button-prev svg, .top03 .swiper-button-next svg {
      display: none; }
    .top03 .swiper-button-prev:hover, .top03 .swiper-button-next:hover {
      opacity: 0.7; }
  .top03 .swiper-button-prev::before,
  .top03 .swiper-button-next::before {
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    font-family: "EB Garamond", serif;
    display: none; }
  .top03 .swiper-button-prev::after,
  .top03 .swiper-button-next::after {
    content: "";
    background: url("/assets/img/common/icon_next.png") center center no-repeat;
    background-size: 8px auto;
    width: 8px;
    height: 12px; }
  .top03 .swiper-button-prev::after {
    background: url("/assets/img/common/icon_prev.png") center center no-repeat;
    background-size: 8px auto; }
  .top03 .swiper-button-disabled {
    pointer-events: none;
    opacity: 0; }
  .top03 .swiper-button-prev {
    top: auto !important;
    left: 6vw !important;
    bottom: 0 !important; }
  .top03 .swiper-button-next {
    top: auto !important;
    right: auto !important;
    left: calc(6vw + 76px) !important;
    bottom: 0 !important; }
  .top03 .swiper-button-next.swiper-button-disabled, .top03 .swiper-button-prev.swiper-button-disabled {
    opacity: .15; }
  .top03 .swiper-horizontal > .swiper-pagination-bullets, .top03 .swiper-pagination-bullets.swiper-pagination-horizontal, .top03 .swiper-pagination-custom, .top03 .swiper-pagination-fraction {
    bottom: -30px !important; }
  .top03 .swiper-horizontal > .swiper-scrollbar, .top03 .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 5%;
    bottom: 90px;
    z-index: 2;
    height: 3px;
    width: 90%; }
  .top03 .swiper-scrollbar-drag {
    background: rgba(38, 75, 139, 0.8); }

@media only screen and (max-width: 960px) {
  .top03 {
    padding: 60px 0; }
    .top03 .topHd {
      padding: 0 3vw;
      text-align: center; }
    .top03 .mostNew {
      padding: 0 7.5vw 48px; }
      .top03 .mostNew a {
        display: block;
        margin: 0 auto;
        max-width: 100%; }
        .top03 .mostNew a .img {
          padding-bottom: 20px;
          width: 100%; }
        .top03 .mostNew a .data {
          width: 100%; }
          .top03 .mostNew a .data h3 {
            margin-bottom: 16px; }
            .top03 .mostNew a .data h3 .title {
              font-size: 18px; }
    .top03 .slideBox {
      position: relative; }
    .top03 .swiper {
      position: relative;
      padding: 0 7.5vw 120px; }
      .top03 .swiper .swiper-slide {
        position: relative;
        width: 230px; }
        .top03 .swiper .swiper-slide a {
          color: #FFF;
          display: block; }
          .top03 .swiper .swiper-slide a .img {
            margin-bottom: 12px; }
          .top03 .swiper .swiper-slide a h3 {
            margin-bottom: 12px; }
            .top03 .swiper .swiper-slide a h3 .date {
              font-size: 10px; }
            .top03 .swiper .swiper-slide a h3 .title {
              font-size: 15px;
              line-height: 1.65; }
          .top03 .swiper .swiper-slide a .desc {
            font-size: 13px;
            line-height: 1.55; }
          .top03 .swiper .swiper-slide a:hover .img img {
            transform: scale(1); }
    .top03 .swiper-button-prev, .top03 .swiper-button-next {
      min-width: 44px;
      min-height: 44px;
      width: 44px;
      height: 44px; }
    .top03 .swiper-button-prev::after,
    .top03 .swiper-button-next::after {
      background-size: 6px auto;
      width: 6px;
      height: 10px; }
    .top03 .swiper-button-prev::after {
      background-size: 6px auto; }
    .top03 .swiper-button-disabled {
      pointer-events: none;
      opacity: 0; }
    .top03 .swiper-button-prev {
      top: auto !important;
      left: 6vw !important;
      bottom: 0 !important; }
    .top03 .swiper-button-next {
      top: auto !important;
      right: auto !important;
      left: calc(6vw + 58px) !important;
      bottom: 0 !important; }
    .top03 .swiper-button-next.swiper-button-disabled, .top03 .swiper-button-prev.swiper-button-disabled {
      opacity: .15; }
    .top03 .swiper-horizontal > .swiper-pagination-bullets, .top03 .swiper-pagination-bullets.swiper-pagination-horizontal, .top03 .swiper-pagination-custom, .top03 .swiper-pagination-fraction {
      bottom: -30px !important; }
    .top03 .swiper-horizontal > .swiper-scrollbar, .top03 .swiper-scrollbar.swiper-scrollbar-horizontal {
      left: 5%;
      bottom: 70px;
      z-index: 2;
      height: 3px;
      width: 90%; }
    .top03 .swiper-scrollbar-drag {
      background: rgba(38, 75, 139, 0.8); } }
.top04 {
  background: #F1F4F8;
  padding: 140px 6vw 160px;
  margin-bottom: 0; }
  .top04 .topHd {
    text-align: center; }
  .top04 .companyList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
    margin: 0 auto;
    padding-top: 1vw; }
    .top04 .companyList li {
      font-size: clamp(14px, 1.4285714286vw, 20px);
      line-height: 1.5; }
      .top04 .companyList li a {
        background: #FFF;
        border-radius: 4px;
        display: flex;
        align-items: center;
        padding: 1vw;
        transition: 0.3s; }
        .top04 .companyList li a:hover {
          color: #0B73CF;
          box-shadow: 0 0 16px rgba(0, 101, 191, 0.12); }
        .top04 .companyList li a img {
          margin-right: 20px;
          min-width: 88px;
          width: 5vw; }

@media only screen and (max-width: 960px) {
  .top04 {
    padding: 100px 6vw 120px; }
    .top04 .companyList {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1vw;
      margin: 0 auto;
      padding-top: 1vw; } }
@media only screen and (max-width: 960px) {
  .top04 {
    padding: 60px 5vw; }
    .top04 .companyList {
      display: block;
      margin: 0;
      padding-top: 0; }
      .top04 .companyList li a {
        border-radius: 0;
        margin-bottom: 2px;
        padding: 8px; }
        .top04 .companyList li a img {
          margin-right: 20px;
          min-width: 80px;
          width: 80px; } }
.top05 {
  background: url("../img/top/05_bg.webp") center top no-repeat #FFF;
  background-size: 100% auto;
  padding: 43vw 0 100px; }
  .top05 .inr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    .top05 .inr .img {
      width: 55%; }
      .top05 .inr .img img {
        transform: translateY(-5vw); }
    .top05 .inr .data {
      padding-top: 20px;
      padding-bottom: 5vw;
      width: 45%; }
      .top05 .inr .data .dataInr {
        margin: 0 auto;
        width: 100%;
        max-width: 400px; }
        .top05 .inr .data .dataInr .desc {
          margin-bottom: 2vw; }

@media only screen and (max-width: 960px) {
  .top05 {
    background: #FFF;
    margin: 0;
    padding: 0 0 60px; }
    .top05 .inr {
      display: block; }
      .top05 .inr .img {
        width: 100%; }
      .top05 .inr .data {
        padding: 28px 7.5vw;
        width: 100%; }
        .top05 .inr .data .dataInr {
          margin: 0;
          max-width: 100%; }
          .top05 .inr .data .dataInr .desc {
            font-size: 14px;
            margin-bottom: 2vw; }
          .top05 .inr .data .dataInr .arrowBtnTop {
            padding: 24px 0 0; }
            .top05 .inr .data .dataInr .arrowBtnTop a {
              display: flex;
              margin: 0 auto;
              padding: 16px 50px 22px 8px;
              min-width: auto;
              min-width: none;
              max-width: 320px;
              width: 100%; } }
.top06 {
  background: #FFF;
  position: relative;
  top: -1px;
  padding: 100px 6vw 14vw;
  margin-bottom: 0; }
  .top06 .tabBox {
    display: none;
    opacity: 0;
    transform: translate(0, 10px);
    min-height: 400px; }
  .top06 .tabBox.active {
    display: block;
    -webkit-animation: tabFade 0.6s ease 0.05s 1 forwards;
    animation: tabFade 0.6s ease 0.05s 1 forwards; }
@keyframes tabFade {
  0% {
    opacity: 0;
    transform: translate(0, 10px); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
  .top06 .newsCatFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative; }
    .top06 .newsCatFlex .topHd {
      margin-bottom: 0;
      width: 30%; }
    .top06 .newsCatFlex .data {
      padding-top: 28px;
      width: 65%; }
  .top06 .newsCatSort {
    margin-bottom: 28px; }
    .top06 .newsCatSort > ul {
      display: flex;
      align-items: center;
      padding: 0;
      width: 100%; }
      .top06 .newsCatSort > ul li {
        font-size: 1.125rem;
        line-height: 1.8;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.7;
        margin-right: 8px;
        min-width: 120px; }
        .top06 .newsCatSort > ul li span {
          background: #FFF;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          border-radius: 4px;
          color: #0B73CF;
          cursor: pointer;
          display: block;
          padding: 12px 12px;
          text-decoration: none;
          text-align: center;
          transition: 0.2s; }
          .top06 .newsCatSort > ul li span:hover {
            background: #0B73CF;
            color: #FFF; }
        .top06 .newsCatSort > ul li.current span {
          background: #0B73CF;
          color: #FFF; }
  .top06 .newsIndexList {
    margin-bottom: 40px; }
    .top06 .newsIndexList ul li {
      margin: 0;
      width: 100%; }
      .top06 .newsIndexList ul li a {
        border-bottom: 1px solid #DDD;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 32px 12px;
        text-decoration: none;
        position: relative; }
        .top06 .newsIndexList ul li a.noArticle {
          pointer-events: none;
          border-bottom: none; }
          .top06 .newsIndexList ul li a.noArticle:before {
            display: none !important; }
        .top06 .newsIndexList ul li a:before {
          background: linear-gradient(90deg, #B2BCC4 0%, #B2BCC4 30%, #BACEDF 70%, #BACEDF 100%);
          content: '';
          display: inline-block;
          height: 1px;
          width: 0;
          position: absolute;
          bottom: -1px;
          left: 0;
          transition: 0.4s; }
        .top06 .newsIndexList ul li a .title {
          display: block;
          font-size: 1.125rem;
          line-height: 1.8;
          font-weight: 400;
          line-height: 1.7;
          letter-spacing: -0.02em;
          margin-bottom: 12px;
          position: relative;
          transition: 0.5s;
          width: 100%;
          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1;
          /* 行数を指定 */ }
        .top06 .newsIndexList ul li a .cat {
          background: #0B73CF;
          border-radius: 30px;
          color: #FFF;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          font-size: 0.8125rem;
          line-height: 2;
          font-weight: 500;
          letter-spacing: 0.04em;
          line-height: 1;
          min-width: 120px;
          margin-right: 12px;
          padding: 8px 12px 10px;
          vertical-align: 1px; }
          .top06 .newsIndexList ul li a .cat.cat01 {
            border-color: #D55A00;
            color: #D55A00; }
        .top06 .newsIndexList ul li a .date {
          color: #0B73CF;
          font-size: 0.875rem;
          line-height: 2;
          line-height: 1;
          font-weight: 400;
          padding: 10px 0;
          transition: 0.3s; }
        .top06 .newsIndexList ul li a:hover:before {
          width: 100%; }
        .top06 .newsIndexList ul li a:hover .title {
          color: #0B73CF; }

@media only screen and (max-width: 960px) {
  .top06 {
    padding: 60px 7.5vw 80px; }
    .top06 .tabBox {
      min-height: auto;
      min-height: none; }
    .top06 .newsCatFlex {
      display: block; }
      .top06 .newsCatFlex .topHd {
        margin-bottom: 48px;
        width: 100%; }
      .top06 .newsCatFlex .data {
        padding-top: 0;
        width: 100%; }
    .top06 .newsCatSort {
      margin-bottom: 12px; }
      .top06 .newsCatSort > ul {
        justify-content: space-between; }
        .top06 .newsCatSort > ul li {
          font-size: 12px;
          line-height: 1.2;
          letter-spacing: -0.03em;
          margin-right: 0;
          min-width: auto;
          min-width: none; }
          .top06 .newsCatSort > ul li span {
            padding: 12px 6px; }
    .top06 .newsIndexList {
      margin-bottom: 40px; }
      .top06 .newsIndexList ul li {
        margin: 0;
        width: 100%; }
        .top06 .newsIndexList ul li a {
          border-bottom: 1px solid #DDD;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          padding: 18px 0;
          text-decoration: none;
          position: relative; }
          .top06 .newsIndexList ul li a.noArticle {
            pointer-events: none;
            border-bottom: none; }
            .top06 .newsIndexList ul li a.noArticle:before {
              display: none !important; }
          .top06 .newsIndexList ul li a:before {
            background: linear-gradient(90deg, #B2BCC4 0%, #B2BCC4 30%, #BACEDF 70%, #BACEDF 100%);
            content: '';
            display: inline-block;
            height: 1px;
            width: 0;
            position: absolute;
            bottom: -1px;
            left: 0;
            transition: 0.4s; }
          .top06 .newsIndexList ul li a .title {
            display: block;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.55;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            position: relative;
            transition: 0.5s;
            width: 100%;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            /* 行数を指定 */ }
          .top06 .newsIndexList ul li a .cat {
            font-size: 10px;
            letter-spacing: 0.04em;
            line-height: 1.3;
            min-width: 80px;
            margin-right: 12px;
            padding: 5px 12px 6px; }
          .top06 .newsIndexList ul li a .date {
            padding: 5px 0 6px; }
          .top06 .newsIndexList ul li a:hover:before {
            width: 100%; }
          .top06 .newsIndexList ul li a:hover .title {
            color: #0B73CF; }
    .top06 .arrowBtnTop {
      padding: 0; }
      .top06 .arrowBtnTop a {
        display: flex;
        margin: 0 auto;
        padding: 16px 50px 22px 8px;
        min-width: auto;
        min-width: none;
        max-width: 320px;
        width: 100%; } }
.top07 {
  background: url("../img/top/07_bg.webp") center top no-repeat;
  background-size: cover;
  height: 42vw;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  overflow: hidden;
  margin-bottom: 0; }
  .top07 .inr {
    margin: 0 auto;
    max-width: 1480px;
    width: 100%; }
    .top07 .inr .topHd {
      margin-bottom: 4vw; }
      .top07 .inr .topHd .ja {
        color: #FFF; }
    .top07 .inr .arrowBtnTop a {
      color: #FFF; }
      @media only screen and (min-width: 960px) {
        .top07 .inr .arrowBtnTop a:hover {
          color: #FFF; } }
  .top07 .listBox {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: -10%;
    top: -35%;
    height: 100%;
    width: 60%;
    transform: rotate(15deg); }
    .top07 .listBox ul:first-child {
      transform: translateY(20%); }
    .top07 .listBox ul li {
      padding: 4px;
      overflow: hidden; }
      .top07 .listBox ul li p {
        overflow: hidden; }
        .top07 .listBox ul li p img {
          transform: scale(1.1);
          filter: brightness(1);
          transform-origin: 50% 50% 0px;
          transform: translate3d(0px, 0px, 0px) scale(1.4); }

@media only screen and (max-width: 960px) {
  .top07 {
    height: 100vw;
    max-height: 600px;
    padding: 0 7.5vw; }
    .top07 .inr {
      margin: 0;
      max-width: 100%; }
      .top07 .inr .topHd {
        margin-bottom: 60px; }
      .top07 .inr .arrowBtnTop {
        max-width: 55%;
        padding: 0; }
    .top07 .listBox {
      display: flex;
      justify-content: flex-end;
      position: absolute;
      right: -45%;
      top: -30%;
      height: 100%;
      width: 72%;
      transform: rotate(15deg); }
      .top07 .listBox ul:first-child {
        transform: translateY(20%); }
      .top07 .listBox ul li {
        padding: 4px;
        overflow: hidden; }
        .top07 .listBox ul li p {
          overflow: hidden; }
          .top07 .listBox ul li p img {
            transform: scale(1.1);
            filter: brightness(1);
            transform-origin: 50% 50% 0px;
            transform: translate3d(0px, 0px, 0px) scale(1.4); } }
/* =================================
   背景ドーナツ アニメーション
================================= */
#donut-bg {
  border-radius: 50%;
  height: 140vmax;
  width: 140vmax;
  left: 50%;
  top: 50%;
  margin-left: -70vmax;
  margin-top: -70vmax;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: scale(0.01) rotate(0deg);
  transform-origin: center center;
  filter: blur(28px);
  will-change: transform, opacity, filter;
  z-index: 0; }

/* ---- ドーナツより前面に出したい要素には z-index: 1 以上を ---- */
.contents,
.footer {
  position: relative;
  z-index: 2; }

/* =================================
   MV テキスト登場
================================= */
.mvTop {
  /* ---------- sub ---------- */
  /* ---------- copy ---------- */
  /* ---------- txt ---------- */ }
  .mvTop .sub,
  .mvTop .copy,
  .mvTop .txt {
    opacity: 0;
    will-change: transform, opacity, filter; }
  .mvTop .sub {
    display: block;
    transform: translateY(20px);
    filter: blur(8px);
    animation: mvFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards; }
  .mvTop .copyWrap {
    display: inline-block;
    animation: breathe 8s ease-in-out 3.8s infinite; }
  .mvTop .copy {
    display: block;
    transform: translateY(34px) scale(0.82);
    filter: blur(12px);
    animation: copyIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards; }
  .mvTop .txt {
    transform: translateY(20px);
    filter: blur(8px);
    animation: mvFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards; }

/* =================================
   共通フェード
================================= */
@keyframes mvFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px); }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0); } }
/* =================================
   copy専用
================================= */
@keyframes copyIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    filter: blur(12px); }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0); } }
/* =================================
   呼吸
================================= */
@keyframes breathe {
  0%,
  100% {
    transform: scale(1); }
  50% {
    transform: scale(1.018); } }
/* =================================
   シャボン玉 浮遊アニメーション
================================= */
#bubble-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden; }

.bubble-soap {
  /* 初期状態は非表示 */
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  will-change: transform, opacity;
  /* 画像がはみ出ないようにクリッピング */
  -webkit-mask-image: radial-gradient(circle, black 100%, transparent 100%);
  mask-image: radial-gradient(circle, black 100%, transparent 100%);
  mix-blend-mode: multiply; }

.bubble-soap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  /* 黒背景を透明に：黒=透明、白=そのまま表示 */ }
