/*
Theme Name: Lightning Child Sample
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/


@media screen and (max-width: 640px) {
  .table-css01 th, .table-css01 td {
    display: block;
    border-bottom: none;
  }
  .table-css01 tr:last-child td:last-child  {
    border-bottom: 1px solid #ccc;
  }
}

.googlemap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
.googlemap iframe,
.googlemap object,
.googlemap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

TML CSSResult Skip Results Iframe
EDIT ON
/* 全体のスタイリング */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  /*padding:20px; */
}

/* タイムライン全体のコンテナ */
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* タイムラインの中央線 */
.timeline-container::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #2c3e50;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* タイムライン項目 */
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  margin-bottom: 30px;
}

/* 左側項目 */
.timeline-item:nth-child(odd) {
  left: 0;
}

/* 右側項目 */
.timeline-item:nth-child(even) {
  left: 50%;
}

/* 日付表示 */
.timeline-date {
  background-color: #2c3e50;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* 項目の内容コンテナ */
.timeline-content {
  padding: 20px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 項目見出し */
.timeline-content h3 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 18px;
}

/* 丸印 */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 4px solid #2c3e50;
  border-radius: 50%;
  top: 20px;
  z-index: 1;
}

/* 左側項目の丸印 */
.timeline-item:nth-child(odd)::after {
  right: -10px;
}

/* 右側項目の丸印 */
.timeline-item:nth-child(even)::after {
  left: -10px;
}

/* 吹き出し風の矢印 */
.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
}

/* 左側項目の矢印 */
.timeline-item:nth-child(odd) .timeline-content::before {
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent white;
}

/* 右側項目の矢印 */
.timeline-item:nth-child(even) .timeline-content::before {
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent white transparent transparent;
}

/* タブレット対応 */
@media screen and (max-width: 768px) {
  .timeline-container::after {
    left: 40px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item::after {
    left: 30px;
  }

  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 30px;
  }

  .timeline-content::before {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-item:nth-child(odd) .timeline-content::before {
    left: -15px;
    right: auto;
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
  }
}

/* スマートフォン対応 */
@media screen and (max-width: 480px) {
  .timeline-date {
    font-size: 12px;
  }

  .timeline-content {
    padding: 15px;
  }

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

  .timeline-item {
    padding-left: 60px;
    margin-bottom: 20px;
  }

  .timeline-container::after {
    left: 20px;
  }

  .timeline-item::after {
    width: 16px;
    height: 16px;
    left: 12px;
  }
}


@media (min-width: 992px) {

.header_scrolled .site-header-logo {
    display: block;
    position: absolute;
    padding-top: 10px;
}

.site-header--layout--nav-float .site-header-logo {
    margin-right: 0;
    width: auto;
}

.header_scrolled .site-header-logo img {
    width: auto;
    height: 40px;
}

.header_scrolled .site-header .global-nav {
    margin-right: 0;
}

}