<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ������������������������������������������������������������  
   �典�蠘�𦠜彍  
���������������������������������������������������������� */
:root {
  --main-bg-color: #a1b7df;
  --main-text-color: #000;
  --light-text-color: #666;
  --white: #fff;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --hover-shadow-color: rgba(0, 0, 0, 0.3);
  --transition-duration: 0.2s;
}

/* ������������������������������������������������������������  
   銝餉�摰孵膥閮剖�� (body1)  
���������������������������������������������������������� */
.body1 {
  width: 1200px;
  margin: 0 auto;
  padding: 30px 0 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ������������������������������������������������������������  
   璅䠷�峕見撘�  
   .sop_title �箔蜓閬�璅䠷�䕘���见���毺𤩎瘚�蝔𧢲�䠷�䕘��  
���������������������������������������������������������� */
.body1 .sop_title {
  font-size: 2rem;
  font-weight: bolder;
}

/* ������������������������������������������������������������  
   暻萄�撅穃�憛� (sandwich)  
���������������������������������������������������������� */
.sandwich {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
  margin-bottom: 5px;
}

.sandwich a {
  text-decoration: none;
  font-weight: 700;
  color: var(--main-text-color);
}

/* ������������������������������������������������������������  
   瘛∪�乩�羓宏��閧𧞄�����  
���������������������������������������������������������� */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 敺硺�𧢲䲮蝘餃�� */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 雿輻鍂瘛∪�乩�羓宏��閧𧞄�� class */
.fade-in-up {
  opacity: 0; /* ��嘥�讠��� */
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: forwards; /* 蝣箔�嘥�閧𧞄蝯鞉���靽脲���蝯����� */
}

/* ������������������������������������������������������������  
   ��𣇉��見撘� (sop)  
���������������������������������������������������������� */
.sop {
  width: 1000px;       /* 閮剖�𡁜�𣇉��祝摨� */
  max-width: 100%;     /* 蝣箔�嘥�𣇉��銁撠讛攟撟蓥�𡃏䌊�拇�� */
  margin: 0 auto;      /* 雿輻鍂 auto 雿踹�𣇉��偌撟喟蔭銝� */
  display: block;      /* 蝣箔�嘥�𣇉���箏�羓�𡁜��蝝� */
  text-align: center;  /* 蝣箔�嘥�𣇉����折�典��蝝惩�銝� */
}
/* ����������������������������������������������
   RWD �𪃾暺噼身摰�
   ���������������������������������������������� */

/* ��𧢲�毺����0px - 767px */
@media screen and (max-width: 767px) {
  /* �躰ㄐ�虾隞交𦆮��𧢲�毺���隤踵㟲 */
  .body1{
    max-width: 350px;
  }
  .sandwich{
    display: none;
  }
  .sop_title{
    display: flex;
    justify-content: center;
  }
  @media screen and (min-width:400px) {
    .body1{
      max-width: 390px;
    }
  }
}

/* 撠誩像�踎嚗�768px - 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* �躰ㄐ�虾隞交𦆮撠誩像�踎��隤踵㟲 */
  .body1{
    max-width: 700px;
  }
}

/* 憭批像�踎嚗�1024px - 1199px */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  /* �躰ㄐ�虾隞交𦆮憭批像�踎��隤踵㟲 */
  .body1{
    max-width: 900px;
  }
}

/* 撠𤩺�峕����1200px - 1399px */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  /* �躰ㄐ�虾隞交𦆮撠𤩺�峕�毺�隤踵㟲 */
  .body1{
    max-width: 1100px;
  }
}

/* 憭扳�峕����1400px 隞乩�� */
@media screen and (min-width: 1400px) {
  /* �躰ㄐ�虾隞交𦆮憭扳�峕�毺�隤踵㟲 */
  .body1{
    max-width: 1300px;
  }
}</pre></body></html>