@charset "utf-8";
/* CSS Document */

body{
font: 14px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
margin:0;
color:#313131;
}

img{
outline:none;
border-style:none;
}

a{
    color: darkslategray;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;

}
a:visited{
    color: gray;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    color: #F5A862;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

/*****HEADER*****/
header{
    display: block;
    width:80%;
    margin-left: 10%;
    overflow: hidden;
}
header h1{
    font-size:120%;
    color:#313131;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    /* border:1px solid #313131;
    border-radius: 5px; */
    letter-spacing: 3px;
    font-weight: bolder;
    float: left;
}
header p{
    font-size:100%;
    color:#313131;
    float: left;
}

/*****BRANDING*****/
#branding{
    display: block;
    width: 60%;
    margin-left: 20%;
    overflow: hidden;
    background-color: #313131;
    margin-bottom: 20px;
    letter-spacing: 10px;
    line-height: 300px;
}
#branding p{
    color: #fff;
    font-size: 120%;
    padding-left: 3%;
}

/*****NAV*****/
nav{
    width: 100%;
    /* border-top: 1px solid orange;
    border-bottom: 1px solid orange; */
    margin-bottom: 5px;
    overflow: hidden;
}
nav ul{
    width: 60%;
    margin-left: 20%;
    padding: auto;
}
nav li{
    width: calc(25% - 2px);
    font-size: 110%;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 45px;
    border-left: 1px solid orange;
    color: #313131;
    cursor: pointer;
    text-align: center;
    float: left;
    padding: 0 10px;
}
nav li:last-child{
    border-right: 1px solid orange;
}

nav li:hover{
    background-color: orange;
    transition: background-color 0.5s ease-out;
    color: #fff;
}

/*****ARTICLE*****/
section{
    display: block;
    width: 95%;
    margin: 20px auto;
    overflow: hidden;
}
article{
    /* width: calc(50% - 15px); */
    /* width: 100%; */
    max-width: 850px;
    padding: 2.5%;
    /* margin-bottom: 30px; */
    margin: 10px auto;
    background-color: #f9f9f9;
    /* overflow: hidden; */
    /* float: left; */
}

article .l-main-editer {
  padding: 0;
}


/*
article:nth-child(2n){
    margin-left: 30px;
}
article .date{
    font-size: 60%;
    color: orange;
    border: 1px solid orange;
    padding-top:3px;
    padding-bottom: 3px;
    padding-right: 6px;
    padding-left: 6px;
    letter-spacing: 5px;
    float: left;
}
article h1{
    width: 100%;
    font-size: 150%;
    color: #313131;
    letter-spacing: 3px;
    padding-bottom:2px;
    padding-top: 10px;
    border-bottom: 1px solid #bababa;
    margin-bottom: 15px;
    float: left;
}
article p{
    font-size: 100%;
    color: #313131;
    letter-spacing: 3px;
    line-height: 200%;
    margin-bottom: 10px;
    float: left;
}
article .btn{
    color: #fff;
    border: 1px solid orange;
    background-color: orange;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 5px;
    letter-spacing: 5px;
    text-decoration: none;
    overflow: hidden;
    float: right;
}
article .btn:hover{
    background-color: #fff;
    border: 1px solid orange;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    color: orange;
    overflow: hidden;
}
*/

main {
    display: block;
    width: 95%;
    margin: 20px auto;
    overflow: hidden;    
}

main h2 {
  /* font-size: xx-large; */
  margin-left: 10%;
  font-weight: bold;
  font-size: 1.2em;
}

main ul {
  margin-left: 10%;
}



footer{
    font-size: 80%;
    width: 100%;
    text-align: center;
    margin-top: 10%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #d1d1d1;
}
footer address{
    color: #fff;
    letter-spacing: 5px;
}



/*   STYlE   */
/* 
table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: none;
  border: solid 1px gray;
}
th, td{
  border: solid 1px gray;
  padding: 3px 10px;
  font-weight: bold;

}

th {
  background-color: #ffcccc;
}

td {
  font-size: 1.7em;
  background-color: #fff9ff;
} */





/*
.cp {
  position: relative;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.cp button {
  font-size: 12px;
  padding: 2px 5px;
  cursor: pointer;
}

textarea {
  width: 95%;
}
*/

.textarea-wrapper {
/* ボタンを絶対配置するために必要 */
  /* position: relative;  */
  /* 必要に応じてサイズを調整 */
  /* display: inline-block;  */
  /* display: block;
  margin: 0; */
}

.copy-button {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  cursor: pointer;
  font-size: 12px;
  padding: 2px 5px;
}

article, .cp {
  /* padding: 10px; */
  border: 1px solid #ddd;
  margin-bottom: 20px;
  position: relative; /* ボタンを絶対配置するために必要 */
}

textarea, textarea.cp {
  font-size: small;
  width: 95%;
  padding: 15px;
  margin-bottom: 0px;
  /* height: 100px; */
}

.copy-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: none; /* 初期状態では非表示 */
  z-index: 1000; /* 他の要素より前面に表示 */
}