@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
    
}


body {
  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
}

/****************************/
/* cmmon header             */
/****************************/
/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
.drawer-area {
  display: none;
}

/*
.drawer-area {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
*/

/*
.drawer-logo {
  font-size: 24px;
}
*/
  
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
  z-index: 100;/* 重なり順を一番上に */
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  background: #333;
  border-radius: 3px;
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  transition: 0.5s;
  width: 25px;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  background: #ff8;
  height: 100%;
  left: 100%;
  position: fixed;
  top: 40px;
  transition: .1s;
  width: 30%;
  z-index: 99;
  
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

/*------------------------------

  ここかタブ式メニュー
  に関するCSS

------------------------------*/
/* header */
.headergrid {
  display: grid;
  grid-template-columns: 60% 40%;
  margin: 2em 0 1em 0;
}

.boxcall{
  font-size: large;
  padding: 0px;
  text-align: left;
}

.mainlabel {
  font-size: xx-large;
  font-weight: bold;
}

/*   tab navigation */
.tabarea {
  border-top: 2px solid teal;
  border-left: 2px solid teal;
  border-bottom: none;
  border-right: 2px solid teal;
  display: flex;
  margin: 0 0px 4px 0px;  /* margin -top -right -bottom -left */
}

.tabbutton{
  background-color: white;
  border-top: none;
  border-right: solid 1px teal;
  border-bottom: 14px solid silver;
  border-left: none;
  /*box-shadow: 1px 0.1x 4px 4px;  /* box-shadow hoff voff radius spread color */
  cursor: pointer;
  font-weight: bold;
  margin: 0 0.1px 0px 0.1px;  /* margin -top -right -bottom -left */
  padding : 0.5em;
  text-align: center;
  width:100%;
  
}

.thistabbutton{
  background-color: white;
  border-top: none;
  border-right: solid 1px teal;
  border-bottom: 14px solid teal;
  border-left: none;
  /*box-shadow: 1px 0.1x 4px 4px;  /* box-shadow hoff voff radius spread color */
  cursor: pointer;
  font-weight: bold;
  margin: 0 0.1px 0px 0.1px;  /* margin -top -right -bottom -left */
  padding : 0.5em;
  text-align: center;
  width:100%;
  
}


.tabbutton:hover{
  background-color: #f8f8f8;
}

/* 画面幅が800px以下の時は */
@media (max-width: 800px) {

  .headergrid {
    grid-template-columns: 1fr;
    margin: 2em 0 1em 0;
  }

  .boxcall{
    font-size: large;
    padding: 0 0.1em 0 0.1em;
    text-align: left;
  }
  
  .tabbutton{
    height : 6em;
  }
}

/* 画面幅が800px以下の時は */
@media (max-width: 450px) {
  .tabbutton{
    height : 12em;
  }
}

/* 画面幅が800px以下の時は */
@media (max-width: 280px) {
  .tabbutton{
    height : 18em;
  }
}

/**************************************************************************************************/
/* class   */
/**************************************************************************************************/
.announce{
  border: double 3px aqua;
  margin: 4px 0 4px 0;
}

/* individual part */

.labelbox {
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 0 0; 
  padding: 0.3em 0em 0.3em 0em;
  text-align: center;
}

.titlebox {
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 0 0; 
  padding: 0.3em 0em 0.3em 0em;
}

/* common attribute */

.txtbox{
  font-size: 1.2em;
  line-height: 1.8m;
  margin: 2px 0 2px 0; 
  padding: 0em 1em 0em 0.5em;
  text-align: left;
  width:96%;
  
}

.linkbox {
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: small;
  margin: 4px 0 4px 0; 
  text-align: center;
  width: 100%;
}

/* text decoration */
@media (min-width: 600px) {
  .smpbr {
    display: none; /* PCの改行を隠して */
  }
}

@media (max-width: 800px) {
  .pcbr {
    display: none; /* PCの改行を隠して */
  }
}




.txt-center {
  text-align: center;
}

.ind1 {
  text-indent: 1em;
}

.border-silver {
  border: solid 3px silver;
}

.border-gray {
  border: solid 3px gray;
}

.border-red {
  border: solid 3px red;
}

.border-maroon {
  border: solid 3px maroon;
}

.border-purple {
  border: solid 3px purple;
}

.border-fuchsia {
  border: solid 3px fuchsia;
}

.border-green {
  border: solid 3px green;
}

.border-lime {
  border: solid 3px lime;
}

.border-yellow {
  border: solid 3px yellow;
}

.border-olive {
  border: solid 3px olive;
}

.border-blue {
  border: solid 3px blue;
}

.border-navy {
  border: solid 3px navy;
}

.border-aqua {
  border: solid 3px aqua;
}

.border-teal {
  border: solid 3px teal;
}

.border-orange {
  border: solid 3px orange;
}


.bgclr-silver {
  background-color: silver;
}

.bgclr-orng {
  background-color: orange;
}

.bgclr-ye {
  background-color: yellow;
}

.bgclr-teal {
  background-color: teal;
}

.bgclr-lime {
  background-color: lime;
}

.bgclr-aqua {
  background-color: aqua;
}

.bgclr-blue {
  background-color: blue;
}

.border-blue {
  border-color: blue;
}

.border-teal {
  border-color: teal
}


/**************************************************************************************************/
/* html tag   */
/**************************************************************************************************/

/* tag ajust */

/**************************************
article {
  padding-bottom: 1em;
}

dt{
  float: left;
  text-indent: 1em;
}

dt::after{
  content: "："
}

ul{

  list-style: none;
  margin-block-start: 1em;
  padding-inline-start: 0em;
}
**************************************/


/* FCコウコク表示 */
/*
div#fc2_bottom_bnr{position:static!important;}
*/
