* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Shippori Mincho', serif;
  line-height: 1.8;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.header {
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: fixed;
  z-index: 2;
  width: 100%;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-top: 15px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
}

/* モバイルメニュー（修正済） */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999; /* 一番上に表示 */
  background: rgba(223,234,236,0.9);
  backdrop-filter: blur(6px);
  text-align: center;
  padding-top: 100px;
  z-index: 5;
}

.mobile-menu.active {
  display: block;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 50px;
  background: none;
  border: none;
  cursor: pointer;
  color: #77B7BB;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.menu-list li {
  margin-bottom: 20px;
}

.menu-list a {
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
  text-decoration: none;
  color: #000;
}

.menu-buttons .cta-button {
  display: block;
  margin: 10px auto;
  padding: 12px 30px;
  background: #a7d8dd;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  width: fit-content;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.nav{
  display: none;
}
.header{
  padding: 10px 20px;
}
.logo img {
  height: 30px;
}
.menu-toggle {
  display: flex;
}

.desktop-menu {
  display: none;
}
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero-image.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: left;
  align-items: self-start;
  text-align: left;
  color: #fff;
  padding-top: 100px;
}

.hero-text h1 {
  font-family: 'EB Garamond', serif; /* ここがポイント！ */
  font-size: 75px;
  font-weight:normal;
  margin: 60px 0px 0px 60px;
}

.hero-text p {
  font-size: 24px;
  margin: -24px 0px 10px 60px;
}

.floating-cta {
  position: fixed;
  top: 160px; /* ← 上からの位置を指定（適宜調整） */
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

/* 共通のボタン */
.circle-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(173,219,222,0.8);
  color: #000;
  text-align: center;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 10px;
}

.circle-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* テキストタイプ（Open Campus） */
.btn-title{
  font-family: 'EB Garamond', serif; /* ここがポイント！ */
  font-size: 24px;
  line-height: 120%;
  color: #333;
}

.btn-sub {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  margin-top: 8px;
}

/* アイコンタイプ（資料請求） */
.icon-book {
  width: 40px;
  height: auto;
  margin-bottom: 6px;
}

.info-title{
  font-family: 'EB Garamond', serif; /* ここがポイント！ */
  font-size: 18px;
  line-height: 120%;
  color: #333;
  margin-top: 8px;
}


/* スマホ用：右下に表示 */
@media (max-width: 768px) {
  .hero{
    padding-top: 80px;
  }
  .floating-cta {
    top: auto;
    bottom: 20px;
    right: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .circle-btn {
    width: 100px;
    height: 100px;
  }

  .btn-title{
    font-size: 16px;
  }

  .btn-sub {
    font-size: 10px;
    margin-top: 2px;
  }

  .info-title{
    font-size: 14px;
    margin-top: 2px;
  }

  .icon-book {
    width: 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    background: url('../images/hero-sp.jpg') center center / cover no-repeat;
    display: flow;
    height: 80vh;
  }
  .hero-text h1 {
    font-size: 40px;
    text-align: center;
    margin: 0 auto;
    padding-top: 40px;
  }
  .hero-text p {
    font-size: 18px;
    margin: -8px 0px 10px 0px;
    text-align: center;
  }

  .circle-btn {
    width: 90px;
    height: 90px;
  }

  .btn-title{
    font-size: 14px;
  }

  .btn-sub {
    font-size: 10px;
  }

  .info-title{
    font-size: 13px;
  }

  .icon-book {
    width: 20px;
  }
}

.message {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
}

.message h3{
  font-size: 24px;
  margin-bottom: 30px;
}
.message p {
  margin-bottom: 20px;
  font-size: 16px;
}

.message p strong {
  display: block;
  margin: 20px 0 10px;
  font-size: 18px;
}

.br-sp {
  display: none;
}

@media (max-width: 560px) {
  .message {
    background: #fff;
    text-align: center;
    padding: 60px 10px;
  }

  .message h3{
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .message p {
    margin-bottom: 20px;
    font-size: 12px;
  }
  
  .message p strong {
    display: block;
    margin: 20px 0 10px;
    font-size: 18px;
  }

  .br-sp {
    display: block;
  }
}

.open-campus {
  background: rgba(255, 255, 255, 0.8);
  padding: 80px 40px;
  text-align: center;
  background: url('../images/open-campus.jpg') center center / cover no-repeat;
}

.campus-wrapper{
  display: block;
  max-width: 1100px;
  margin: auto;
}

.section-heading {
  padding: 60px 20px;
  text-align: left;
}

.heading-content {
  display: flex;
  align-items: flex-start;
  justify-content:left;
  margin-bottom: 40px;
}

.line {
  width: 50px;
  height: 1px;
  background-color: #000;
  margin-right: 15px;
  margin-top: 45px;
}

.heading-content h2 {
  font-family: 'EB Garamond', serif;
  font-weight: normal;
  font-size: 56px;
  margin: 0;
}

.sub-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  color: #555;
  text-align: right;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 最大4枚並び */
  gap: 20px;
  margin-bottom: 60px;
  justify-content: center;
}

.card {
  background: #fff;
  border-left: 15px solid #ACDADD;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content:space-evenly;
  align-items: center;
  min-height: 120px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s; /* 背景色もトランジション対象に */
  text-decoration: none; /* リンクだけど下線なし */
  color: inherit; /* リンクカラー継承 */
}

/* ホバーエフェクト：浮かせる＋影＋背景色変化 */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: #f0f9ff; /* ほんのり水色系 */
}

.card .date {
  font-family: 'EB Garamond', serif;
  font-size: 50px;
  font-weight:normal;
  display: grid;
  place-items: center;
}

.card .event {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
  height: 60px;
  display: grid;
  place-items: center;
}

.date-word{
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight:normal;
  margin: 0 auto;
  height: 90px;
  display: grid;
  place-items: center;
}

.placeholder {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.description p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.button-area {
  text-align: center;
  margin-top: 60px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a7d8dd; /* ボタンの水色背景 */
  color: #333;
  padding: 20px 60px;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #70BABF; /* ホバー時に少し濃い水色 */
}

.arrow-icon {
  width: 10px;
  height: auto;
  margin-right: 32px;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 1100px){
  .heading-content h2 {
    font-size: 48px;
  }

  .sub-title {
    font-size: 24px;
  }

  .card .date {
    font-size: 35px;
  }

  .card .event {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
  }

  .description p {
    font-size: 14px;
  }

}

@media (max-width: 768px) {
  .open-campus {
    padding: 60px 20px;
  }

  .heading-content {
    display: block;
    align-items: center;
    justify-content:left;
    margin-bottom: 40px;
  }

  .heading-content h2 {
    font-size: 40px;
  }
  .line {
    display: none;
  }
  .sub-title {
    font-size: 20px;
    text-align: center;
  }

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

  .card {
    min-height: 100px;
    padding: 15px;
  }

  .card .date {
    font-size: 40px;
  }

  .card .event {
    font-size: 16px;
  }

  .description p {
    font-size: 12px;
  }

  .cta-button {
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
  }

  .arrow-icon {
    width: 8px;
    height: auto;
    margin-right: 32px;
  }
  

}

@media (max-width: 480px) {
  .heading-content {
    display: block;
    align-items: center;
    justify-content:left;
    margin-bottom: 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    width: 90%;
    margin: 0 auto;
    padding: 8px;
  }

  .card .event {
margin-top: -14px;
  }

  .arrow-icon{
    margin-right: 16px;
  }
}

.admission-section{
  padding: 120px 40px 120px 40px;
  text-align: center;
}

.admission-wrapper{
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.admission-flex {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

/* 左カラム：細め */
.section-title {
  min-width: 180px;
  text-align: right;
}

/* 右カラム：広め */
.admission-cards {
  flex: 3;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* カードデザイン：背景写真＋重ねテキスト */
.admission-card {
  flex: 1 1 160px;
  aspect-ratio: 3 / 4; /* ← ここを3:4に変更 */
  background: #e5e5e5;
  text-decoration: none;
  color: #000;
  text-align: center;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.admission-card:hover {
  border-color: #38bdf8;
}

.admission-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  flex-grow: 1;
}

.caption {
  font-size: 14px;
  margin-top: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1100px)  {
  .admission-card {
    width: 80%;
  }
  .admission-flex {
    gap: 60px;
  }
  .section-title h2 {
    font-size: 48px;
  }
  
  .subtitle {
    font-size: 24px;
    margin: -14px 0px 60px 150px;
  }
}
@media (max-width: 768px) {
  .admission-section {
    padding: 60px 20px 60px 20px;
  }
  .section-title h2 {
    font-size: 40px;
  }
  .admission-flex {
    margin: auto;
    width: 100%;
    flex-direction: column;
    gap: 0px;
  }

  .section-title {
    text-align: center;
  }

  .section-title-top {
    justify-content: center;
  }

  .section-title-top {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
  }
  
  .section-title .line {
    display: none;
  }

  .subtitle {
    font-size: 20px;
    text-align: center;
  }
  
  .admission-cards {
    grid-template-columns: 1fr;
    width: 100%;
    text-align: center;
  }
  .admission-card {
    width: 80%;
  }
}

.video-section {
  background-color: #d8ebf0;
  padding: 120px 20px;
  text-align: center;
}

.section-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 46px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 400;
}

.section-header h2::before,
.section-header h2::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #000;
  vertical-align: middle;
  margin: 0 15px;
}

.video-sub-title{
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  margin-bottom: 60px;
  color: #333;
  line-height: 110%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* レスポンシブ対応 */
@media (max-width: 1100px) {
  .section-header h2{
    font-size: 40px;
  }
  .video-sub-title{
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .video-section{
    padding: 80px 20px;
  }
  .section-header h2{
    font-size: 32px;
  }
  .video-sub-title{
    font-size: 20px;
  }
  .video-wrapper {
    margin-bottom: 0px;
  }
}

@media (max-width: 540px) {
  .video-container{
    width: 100%;
  }
  .video-section{
    padding: 60px 20px;
  }
  .section-header h2{
    font-size: 24px;
  }
  .video-sub-title{
    font-size: 16px;
    margin-bottom: 30px;
  }
  .section-header h2::before,
  .section-header h2::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #000;
  vertical-align: middle;
  margin: 0 10px;
}
}

.point-section {
  background-color: #d8ebf0;
  padding: 60px 20px;
}

.point-block {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.point-label {
  min-width: 60px;
  text-align: center;
}

.label-en {
  font-size: 10px;
  font-family: 'EB Garamond', serif;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 5px;
}

.label-number {
  font-size: 36px;
  font-family: 'EB Garamond', serif;
  font-weight: bold;
}

.point-content h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  background: #fff;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.point-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .point-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .point-label {
    text-align: left;
    margin-bottom: 10px;
  }

  .label-number {
    font-size: 28px;
  }

  .point-content h3 {
    font-size: 16px;
  }

  .point-content p {
    font-size: 13px;
  }
}

.feature-block{
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-block-left {
  background-color: #d8ebf0;
  padding: 40px 180px 20px 60px;
  display: flex;
  gap: 30px;
}

.feature-block-right {
  background-color: #d8ebf0;
  padding: 40px 120px 20px 180px;
  display: flex;
  gap: 30px;
}

.feature-label {
  display: flex;
  gap: 6px;
}

.label-en {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.label-number {
  font-family: 'EB Garamond', serif;
  font-size: 70px;
  font-weight: 400;
  margin-top: -40px;
}

.feature-content{
  text-align: left;
}

.feature-content h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  background: #fff;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.feature-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .feature-block{
    gap: 0px;
  }

  .feature-block-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0px 0px 0px;
    gap: 0px;
  }

  .feature-block-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0px 0px 0px;
    gap: 0px;
  }

  .feature-label {
    margin-bottom: 10px;
  }

  .label-en {
    font-size: 22px;
    margin-top: 18px;
  }

  .label-number {
    font-size: 50px;
    margin-top: -10px;
  }

  .feature-content{
    text-align: center;
  }

  .feature-content h3 {
    font-size: 24px;
    padding: 6px 12px;
    width: 100%;
  }

  .feature-content p {
    font-size: 12px;
    padding: 0 10px;
    text-align: left;
  }
}

.info-section {
  margin: 0 auto;
  max-width: 1000px;
  padding: 60px 20px;
  background: #fff;
}

.sns-title-top{
  display: flex;
}

.sns-line{
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  margin: 23px 16px;
}

.info-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sns-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  border-left: 2px solid #333;
  padding-left: 10px;
  margin-bottom: 20px;
}

.sns-column {
  flex: 1;
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 40px;
}

.sns-item {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  padding: 4px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sns-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.sns-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.sns-item p{
  font-size: 12px;
}

.ambassador-column {
  flex: 1;
  max-width: 400px;
}

.ambassador-column .sns-line{
  width: 30px;
  height: 1px;
  background-color: #000;
}

.ambassador-subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
}

.ambassador-card {
  display: flex;
  text-align: left;
  border-radius: 6px;
  margin-top: 30px;
}

.ambassador-photo {
  width: 150px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.ambassador-photo-sp{
  display: none;
}

.ambassador-info{
  padding: 0px 20px;
  text-align: left;
}

.ambassador-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  margin: 5px 0 0 0;
}
.ambassador-meta{
  font-size: 12px;
  margin: 4px 0;
}

.ambassador-dept{
  font-size: 12px;
  margin: 4px 0;
}

.ambassador-name-en {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: #555;
}

.small-button {
  margin-top: 50px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #a7d8dd;
  border-radius: 30px;
  color: #000;
  font-size: 12px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

.small-button:hover {
  background: #70BABF; /* ホバー時に少し濃い水色 */
}

/* レスポンシブ */
@media (max-width: 768px) {
  .info-flex {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .sns-line{
    display: none;
  }

  .sns-title-top{
    display: block;
    justify-content: center;
  }

  .sns-title-top h2{
    text-align: center;
  }

  .sns-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 0px 0px 0px;
    gap: 40px;
  }

  .ambassador-column {
    max-width: 100%;
  }
  .ambassador-subtitle{
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 540px){
  .info-flex {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .sns-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px 60px 20px;
    align-items: center;
  }
  .ambassador-card{
    display: block;
  }
  .ambassador-info{
    text-align: center;
    margin-top: 30px;
  }

  .resizeimage{
    width: 100%;
  }

  .ambassador-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .small-button{
    margin-top: 24px;
  }
}

.access-section {
  background-color: #d8ebf0;
  padding: 120px 20px;
  text-align: center;
}

.access-flex {
  display: flex;
  gap: 80px;
  max-width: 960px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.access-title {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.access-sub-title{
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  margin: -20px 0px 0px 100px;
}

.access-title h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  margin: 0;
  border-left: 2px solid #000;
  padding-left: 10px;
}

.access-title .subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  margin-top: 8px;
  color: #333;
}

.map-embed {
  flex: 2;
  width: 600px;      /* 横幅固定 */
  height: 400px;     /* 高さ固定 */
  overflow: hidden;
  position: relative; /* ← 念のため追加（任意） */
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .access-section {
  padding: 60px 20px;
}
  .access-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:0px
  }

  .map-embed {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2; /* 横:縦の比率を保つ */
  }

  .map-embed iframe {
    width: 100%;
    height: 100%;
  }

  .access-title {
    text-align: center;
  }
  .access-sub-title{
    font-size: 20px;
    margin: 0px 0px 0px 0px;
    text-align: center;
  }
  .container{
    width: 100%;
  }
}

.site-footer {
  background: #fff;
  padding: 80px 20px 40px 20px;
  text-align: center;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-inner {
  margin: 0 auto;
}

.footer-logo {
  width: 240px;
  height: auto;
  margin-bottom: 20px;
}

.footer-link a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-link a:hover {
  text-decoration: underline;
}

.link-icon{
  width: 16px;
  margin-left: 4px;
}

.copyright {
  font-size: 11px;
  margin-top: 60px;
  color: #666;
}

@media (max-width: 768px){
  .footer-logo {
    width: 200px;
    height: auto;
  }
  .footer-link a{
    font-size: 12px;
  }
  .link-icon{
    width: 12px;
  }
}

