@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* Reset
- デフォルトスタイルの初期化
  - reset用cssはCDNを利用。ress.cssなら box-sizing: border-box; を含む
----------------------------------------------------------------- */
/* 変数
----------------------------------------------------------------- */
/* Function
----------------------------------------------------------------- */
/* Mixin
----------------------------------------------------------------- */
/* --------------------
2022年時点では以下のように指定
詳細：https://www.notion.so/2022-09a16b806da6468f9270c3a2ed0c39d2

-------------------- */
/* --------------------
ブレークポイントを指定
-------------------- */
/* --------------------
mixin
-------------------- */
/* --------------------
media query 使い方
-------------------- */
/* Base
- プロジェクトにおける基本スタイル
----------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  background: #EFEFEF;
  position: relative;
}

/* Background Video
----------------------------------------------------------------- */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

a:link, a:visited, a:active {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  width: 100%;
}

/* ==========================================================================
Layout
- header、main、sub、footerなどプロジェクト共通のコンテナブロックを定義
- ページで唯一なので、IDセレクタを使用してもOK
- 大枠のスタイル、構造上のスタイルだけ指定
- max-width、width、position、float、box-sizing…etc.
========================================================================== */
/* Header
----------------------------------------------------------------- */
/* Main
----------------------------------------------------------------- */
/* Sidebar
----------------------------------------------------------------- */
/* Footer
----------------------------------------------------------------- */
/* コンテンツ幅
基本は幅100%だが、大きいモニターだと広すぎなのでmax-widthで制限
----------------------------------------------------------------- */
.l-container {
  width: 100%;
  max-width: 900px;
}

/* ==========================================================================
Object
========================================================================== */
/* Component 
- 再利用できる最低限の機能を持ったコンポーネント
- componentの参考：https://getbootstrap.jp/docs/5.0/components/accordion/
- 見出し、ボタン、表組み、注釈コメント、強調テキスト etc.
- 再利用しやすいように、なるべく固有のサイズや色を持たせないこと
----------------------------------------------------------------- */
/* Button */
/* Media */
/* Project
- プロジェクト固有のスタイルを書いていく
- Block、Elementで構成される（Componentを含むこともある）
- ページを構成する要素はだいたいここに書く
- 繰り返し使うパーツは切り出してComponentに書く
- Componentを少し変更して使いたい場合はここで上書き
----------------------------------------------------------------- */
/* ========================================
.tenjijo
======================================== */
/* -----------------------------------
.header
----------------------------------- */
.header {
  padding-top: 7vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .header {
    padding-top: 50px;
  }
}

.header__logo-img {
  width: 38.4vw;
}
@media screen and (min-width: 1000px) {
  .header__logo-img {
    width: 205px;
  }
}

/* -----------------------------------
.main
----------------------------------- */
.main {
  padding: 0 5.33vw;
}
@media screen and (min-width: 1000px) {
  .main {
    padding: 0;
  }
}

.main__title {
  text-align: center;
  padding: 11.46vw 0 10.6vw;
}
@media screen and (min-width: 1000px) {
  .main__title {
    padding: 50px 0 60px;
  }
}

.main__title-img {
  width: 55vw;
}
@media screen and (min-width: 1000px) {
  .main__title-img {
    width: 248px;
  }
}

@media screen and (min-width: 1000px) {
  .main__inner {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* -----------------------------------
.tab-wrap
----------------------------------- */
.tab-wrap {
  width: 96%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .tab-wrap {
    width: calc(100% - 30px);
  }
}

.tab-list {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  list-style: none;
}
@media screen and (min-width: 1000px) {
  .tab-list {
    gap: 10px;
  }
}

.tab-list__item {
  width: 43.3vw;
}
@media screen and (min-width: 1000px) {
  .tab-list__item {
    width: 48.75%;
  }
}

/* -----------------------------------
.timeline
----------------------------------- */
.timeline {
  padding: 6vw 4.66vw;
  margin-top: -3vw;
  position: relative;
  background: #fff;
  opacity: 1;
  width: 97%;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .timeline {
    margin-top: -10px;
    padding: 25px 20px 45px;
  }
}

.timeline--tenjijo {
  border: 2px solid #00529F;
  border-radius: 0 3.33vw 3.33vw 3.33vw;
  transform: translateX(2%);
}
@media screen and (min-width: 1000px) {
  .timeline--tenjijo {
    border-radius: 0 15px 15px 15px;
    transform: translateX(24px);
  }
}

.timeline--marke {
  border: 2px solid #C54091;
  border-radius: 3.33vw 0 3.33vw 3.33vw;
  transform: translateX(1%);
}
@media screen and (min-width: 1000px) {
  .timeline--marke {
    border-radius: 15px 0 15px 15px;
    transform: translateX(9px);
  }
}

.timeline__lead {
  font-size: clamp(15px, 4vw, 18px);
  text-align: center;
}

.timeline__note {
  font-size: clamp(11px, 2.93vw, 12px);
  margin-top: 10px;
  text-align: center;
}

.timeline__year-list {
  display: flex;
  flex-direction: column;
  gap: 6.66vw;
}
.timeline--marke .timeline__year-list {
  margin-top: 0;
}
@media screen and (min-width: 1000px) {
  .timeline__year-list {
    gap: 40px;
  }
}
.timeline--tenjijo .timeline__year-list {
  margin-top: 6.66vw;
}
@media screen and (min-width: 1000px) {
  .timeline--tenjijo .timeline__year-list {
    margin-top: 50px;
  }
}

.timeline__year {
  color: #C54091;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px solid #C54091;
  padding-bottom: 1.6vw;
  font-size: clamp(31px, 8.26vw, 35px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.66vw;
}
.timeline--tenjijo .timeline__year {
  color: #00529F;
  border-color: #00529F;
  padding-left: 0;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .timeline--tenjijo .timeline__year {
    font-size: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .timeline__year {
    padding-bottom: 10px;
    padding-left: 20px;
    gap: 5px;
  }
}

.timeline__year-main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
}

.timeline__year-sp {
  font-size: clamp(20px, 2.66vw, 28px);
}

.timeline__list {
  padding-left: 20px;
  margin-top: 10px;
}
.timeline--tenjijo .timeline__list {
  padding-left: 0;
}
@media screen and (min-width: 1000px) {
  .timeline__list {
    padding-left: 40px;
    margin-top: 20px;
  }
}

.timeline__item {
  list-style: none;
  position: relative;
  font-size: 15px;
  font-feature-settings: "palt";
  line-height: 1.4;
}
.timeline__item::before {
  content: "・";
  color: #C54091;
  font-size: 20px;
  position: absolute;
  left: -20px;
  top: -5px;
}
.timeline__item:not(:first-child) {
  margin-top: 15px;
}
.timeline--tenjijo .timeline__item {
  text-align: center;
}
.timeline--tenjijo .timeline__item::before {
  content: none;
}

@media screen and (min-width: 1000px) {
  .timeline__list-wrap {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1000px) {
  .timeline__list-wrap .timeline__list {
    width: 50%;
  }
}

/* -----------------------------------
.footer
----------------------------------- */
.footer {
  padding: 20px 5vw 20px;
  text-align: center;
  background: #fff;
  margin-top: 80px;
}
@media screen and (min-width: 1000px) {
  .footer {
    padding: 40px 0 60px;
  }
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo-img {
  width: 125px;
}

.footer__text {
  font-size: 10px;
}

.footer__icon {
  width: 13px;
  vertical-align: middle;
  margin-left: 5px;
}

.footer__copyright {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 10px;
}

.btn-link-header {
  width: 50px;
  position: fixed;
  right: 15px;
  bottom: 10px;
  z-index: 1000;
}
@media screen and (min-width: 1000px) {
  .btn-link-header {
    right: 35px;
    bottom: 15px;
  }
}

.btn-totop {
  width: 192px;
  position: fixed;
  left: 0;
  bottom: 10px;
  z-index: 1000;
}
@media screen and (min-width: 1000px) {
  .btn-totop {
    left: -10px;
    bottom: 15px;
    width: 350px;
  }
}

.btn-totop__img {
  width: 100%;
  height: auto;
}

/* Utility
- ComponentとProjectで解決できないもの
- ちょっとした調整用のスタイル
----------------------------------------------------------------- */
/* clearfix */
/* margin */
.u-mb10 {
  margin-bottom: 10px;
}

/* display */
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
.u-liststyle-none {
  list-style: none;
}

.u-tenjijo-strong {
  font-weight: bold;
  color: #00529F;
}/*# sourceMappingURL=style.css.map */