/* ========== Reset ========== */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  line-height: 1.45;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #111;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}
ul,
ol {
  list-style: none;
}
/* ========== ホバー設定 ========== */
a {
  color: inherit;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}
a:hover
 {
  opacity: 0.7;
}

/* ========== layout ========== */
.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 11px;
}
.inner02 {
  padding: 0 20px;
  max-width: 960px;
  width:100%;
}

/* ========== Header ========== */
.header {
  max-width: 100%;
}
.header .logo {
  line-height: 0;

}
.header .logo a:hover {
  opacity: 1;
}

.header .logo .logo_padding{
  padding-bottom: 5px;
  padding-top: 12px;
}

.title_color {
  background: linear-gradient(to right, #bc3cdc, #6633cc);
  max-width: 100%;
}

.title_color .inner{
  padding-top: 15px;
  padding-bottom: 10px;
}

.header__title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.header_top a {
  display: inline-block;
  /* インライン余白を消す */
  padding: 16px;
  padding-left: 0;
}

.h2_title {
  font-size: 1.8rem;
}

/* ========== Lists ========== */
.sublist {
  margin: 20px 0 30px;
}

.sublist li {
  margin: 0 0 20px;
}
.sublist li a {
  text-decoration: underline;
}
.sublist li a:hover {
  text-decoration: none;
}

/* ========== Section ========== */

.title_box {
  margin: 30px 0 20px;
  background: #e6e6e6;
  max-width:960px;
  width:100%;
}

.title_box h2 {
  padding: 9px 18px 4px;       /* 上下に適度な余白を指定 */
  font-size: 1.8rem;    /* 見出しサイズ（任意で調整） */
  font-weight: 700;
}

/* ========== Footer ========== */
.footer {
  margin-top: 80px;
  background: #fafafa;
}

.footer__wrap {
  padding: 20px 16px 0;
}

.footer__cols {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__emblem {
  width: 160px;
}
.name {
  font-size: 1.7rem;
  font-weight: bold;
}

.footer__addr {
  font-size: 14px;
}

.copyright small {
  display: block;
  width: 100%;
  text-align: center;
  background: #313131;
  margin-top: 30px;
  padding: 6px 0;
  font-size: 1.4rem;
  color: #fff;
}

/* ========== Page Top ========== */
.pagetop {
  position: fixed;          /* 追従させる */
  right: 16px;              /* 右からの距離 */
  bottom: 16px;             /* 下からの距離 */
  z-index: 1000;            /* 最前面に出す */
}

.pagetop a {
  display: inline-block;
  background: #f0f0f0;
  color: #4b4b4b;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}
.pagetop a:hover {
  color: #999;
  opacity: 1;
}

/* ========== logout ========== */
.header_top .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.g-header__logout{
  display:inline-flex;
  align-items:center;
  line-height:1;
  color:#8a2b8e;
  text-decoration:underline;
  text-underline-offset:3px;
  font-size:1.6rem;
}

.title_color .inner{
  display: flex;
  align-items:center;
}

.title_color .inner .back {
  display: inline-flex;
  align-items:center;
  font-size: 1.4rem;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1;
  padding: 10px 10px 8px;
  margin-left: 40px;
  margin-bottom: 3px;
}

.sp{
  display:none;
}

@media screen and (max-width: 768px) {

  .header .logo {
    text-align: center;
  }
  .footer__cols{
    display: block;
  }
  .footer__emblem {
    margin-bottom: 10px;
  }

  .title_color .inner{
  display: block;
}

.title_color .inner .back {
  display: inline-flex;
  align-items:center;
  font-size: 1.4rem;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1;
  padding: 10px 10px 8px;
  margin-left: 0;
  margin-top: 12px;
  margin-bottom: 12px;
}

  .sp{
    display:block;
  }
}

