/*-矢印表示用-*/
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

/*style.css上書き*/
.tagR, .tagL {font-size: 1rem}

html {
    scroll-padding-top: 80px; /*ヘッダーの高さ分設定*/
    scroll-behavior: smooth;
}

/*できたできないボタン用*/
.button_hyouka {
    font-size: 1.2rem;
    height: 50px;
}
.button_hyouka::before {
    border-top-width: 25px;
    border-bottom-width: 25px;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
transition: 0.8s ease-in-out;
transform: translateY(30px);
opacity: 0;
}
.scroll_up.on {
transform: translateY(0);
opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
main .scroll_left {
-webkit-transition: 0.8s ease-in-out;
-moz-transition: 0.8s ease-in-out;
-o-transition: 0.8s ease-in-out;
transition: 0.8s ease-in-out;
transform: translateX(-30px);
opacity: 0;
filter: alpha(opacity=0);
-moz-opacity: 0;
}
main .scroll_left.on {
opacity: 1.0;
filter: alpha(opacity=100);
-moz-opacity: 1.0;
transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
-webkit-transition: 0.8s ease-in-out;
-moz-transition: 0.8s ease-in-out;
-o-transition: 0.8s ease-in-out;
transition: 0.8s ease-in-out;
transform: translateX(30px);
opacity: 0;
filter: alpha(opacity=0);
-moz-opacity: 0;
}
.scroll_right.on {
opacity: 1.0;
filter: alpha(opacity=100);
-moz-opacity: 1.0;
transform: translateX(0);
}
/*------------------------*/
/*------------------------*/
/*------- layout -------*/
ul.box {
width: 80%;
// max-width: 300px;
margin: 0 auto;
padding: 10vw;
list-style: none;
}
ul.box li {
margin-bottom: 40px;
& img {
max-width: 100%;
}
}
/*------- base -------*/
body {
/*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
font-size: 16px;
color: #333;
padding-bottom: 200px;
}
h1, h2, h3, h4, h5, h6, p {
margin:0;
/*font-weight: normal;*/
}
ul, li {
margin: 0 auto 0 15px;
}
p {
// margin: 30vw auto 40vw;
color: #555;
// font-family: 'Marcellus', serif;
font-size: 2.0rem;
text-align: center;
// &::after {
// content: '\e5db';
// display: block;
// font-family: "Font Awesome 5 Free";
// font-weight: 700;
// font-size: 1.2rem;
// padding-top: 10px;
// }
}
ul {
display: block;
list-style-type: disc;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 0;
}
@import
url(https://fonts.googleapis.com/css2?family=Marcellus&display=swap);
.button {
display : inline-block;
border-radius : 6px; /* 角丸 */
font-size : 18pt; /* 文字サイズ */
text-align : center; /* 文字位置 */
cursor : pointer; /* カーソル */
padding : 12px 50px 12px 50px; /* 余白 */
background : #d5dff1; /* 背景色 */
color : #ffffff; /* 文字色 */
line-height : 1em; /* 1行の高さ */
transition : .3s; /* なめらか変化 */
// box-shadow : 6px 6px 3px #666666; /* 影の設定 */
// border : 1px solid #4F6189; /* 枠の指定 */
}
.button:hover {
box-shadow : none; /* カーソル時の影消去 */
background : #a2b7e7; /* 文字色 */
}
.button a, a:link, a:visited {
text-decoration: none;
}
.nav {
text-align:center;
}
.nav .button {
margin:5px;
}
.nav .button:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

/*-- config.js内Tableタグ用--*/
table {
    color: #4d444a;
    background-color: #fff;
    }
tr {
    }
th {
    background-color: #ffebd8;
    margin: 5px;
    padding: 5px 10px;
    text-align: center;
}
td {
    background-color: linen;
    margin: 5px;
    padding: 5px 10px;
}

/*-- 保存ボタンのスタイル追記用--*/
.btn_deco:hover,.btn-save:hover  {
    background-color: #ff7167;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.btn-save:disabled:hover /*保存ボタン非活性時用*/
{
    background-color: var(--button--disabled);
    box-shadow:none;
}

/*-- 表の横スクロール表示用--*/
.table-container { /*横スクロールAUTO*/
    overflow-x: auto
}
@media screen and (max-width: 600px) {
    .table-container { /*横スクロール*/
        overflow-x: scroll;
    }
    .table-nowrap {
        white-space: nowrap;
    }
  }
