@charset "UTF-8";
/* 基本スタイル */
* {
  box-sizing: border-box;
  line-height: 1.5;
  color: #000;
}

body, html {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
dl {
  margin: 0;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li,
b,
strong,
option,
span,
label,
input,
select,
dt,
dd,
small {
  font-size: 1em;
}

a {
  text-decoration: none;
  display: block;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

figure {
  margin: 0;
}

table {
  width: 100%;
}

:focus {
  outline: none;
}

/* 基本クラス */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.contents {
  display: contents;
}

.inline-block {
  display: inline-block;
}

.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ブレイクポイント */
/* 基本カラー */
/* ミックスイン */
/* メディアクエリ */
/* 上下左右中央寄せ */
/* ボーダーセット */
/* 疑似要素のtop位置指定 */
/* 疑似要素セット(画像無し) */
/* 疑似要素セット(画像) */
/* br block style */
/* br none style */
/* ヘッダー */
.header {
  padding: 19.5px 0;
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.25);
}
.header.top {
  background-color: transparent;
  box-shadow: none;
}
.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.25);
}
.header-inner {
  justify-content: space-between;
  align-items: center;
}
.header-inner__logo {
  width: 118px;
}
.header-inner__btns {
  column-gap: 20px;
}
.header-inner__btns a {
  font-size: 16px;
  height: 39px;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.header-inner__btns a:hover {
  opacity: 0.8;
}
.header-inner__btns a:first-child {
  width: 139px;
  background-color: #AED7AE;
  font-weight: bold;
  color: #404040;
}
.header-inner__btns a:last-child {
  width: 104px;
  background-color: #7F7F7F;
  color: #fff;
}
@media screen and (max-width: 520px) {
  .header-inner {
    flex-direction: column;
    row-gap: 15px;
  }
}

/* フッター */
.footer {
  background-color: #FFFFF1;
  border-top: 1px solid #333;
  padding: 17px 0;
}
.footer .container {
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 520px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
.footer-inner {
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 520px) {
  .footer-inner {
    width: 100%;
  }
}
.footer-inner__menu {
  font-size: 16px;
  padding: 10px 20px 0 10px;
  column-gap: 40px;
  border-right: 1px solid #707070;
}
@media screen and (max-width: 520px) {
  .footer-inner__menu {
    padding: 10px;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: #707070;
  }
}
.footer-inner__menu:last-child {
  border-right: 0px;
}
.footer-inner__menu li:not(:last-child) {
  position: relative;
}
.footer-inner__menu li a {
  transition: all 0.3s;
}
.footer-inner__menu li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 520px) {
  .footer-inner__menu {
    flex-direction: column;
    row-gap: 10px;
  }
}
.footer-inner__menu.bus_wrap li:first-child {
  margin-bottom: 20px;
}
.footer-inner__menu.bus_wrap li span {
  font-weight: bold;
}
.footer-inner__logo {
  width: 111px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    row-gap: 20px;
    flex-direction: column;
  }
}