﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  /* 背景色 */
  background: #cfcfcf;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 50px; /* Vertically center the text there 60pxだとコンテンツに被る */
}

/*-- 自作クラス --*/
main {
    min-height: 400px;
}

a:hover {
    color: deeppink;
}

/*-- 色 --*/
.bg-light-blue {
    background-color:rgb(202, 247, 255)
}

.font-blue {
    color: #1b6ec2;
}

/*-- 文字サイズ --*/
.font-m {
    font-size: medium
}

/*-- スマホ用ボトムナビゲーション --*/
.bottom-nav {

}

.bottom-nav a:hover {
    color: transparent;
}

.bottom-nav-text {
    margin-top: -16px;
}

.img-text {
    color: #4b4b4b;
}

.img-text-active {
    color: #0056f7;
}

/*-- タブ --*/
.tab_wrap {
    width: 95%;
    margin: 80px auto;
}
input[type="radio"] {
    display:none;
}
.tab_area {
    font-size: 0;
    margin: 0 10px;
}
.tab_area label {
    width: 150px;
    margin: 0 5px;
    display: inline-block;
    padding: 12px 0;
    color: #999;
    background: #ddd;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: ease 0.2s opacity;
}
.tab_area label:hover {
    opacity: 0.5;
}
.panel_area {
    background: #ffffff;
}
.tab_panel {
    width: 100%;
    padding: 80px 0;
    display: none;
}
.tab_panel p {
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}

#tab1:checked ~ .tab_area .tab1_label {
    background: #acacac;
    color: #000000;
}
#tab1:checked ~ .panel_area #panel1 {
    display: block;
}
#tab2:checked ~ .tab_area .tab2_label {
    background: #acacac;
    color: #000000;
}
#tab2:checked ~ .panel_area #panel2 {
    display: block;
}