@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-size: 10px;
}

body {
    margin: 0 auto;
    background-color: 481E00;
    text-align: left;
    font-family: "Noto Sans JP", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    -webkit-text-size-adjust: s font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    color: #000;
    line-height: 1.5;
}

a:link,
a:visited {
    text-decoration: none;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}





.interview-button {
    padding: 10px 20px 10px 30px;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 230px;
    margin-left: 120px;
    margin-top: 60px;
}

.interview-button:hover {
    background-color: #fff;
    color: #481E00;
}

.interview-button:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 20px;
    /* 矢印と文字の隙間 */
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    /* 矢印の色 */

}

.interview-button:hover:after {
    border-left: 10px solid #481E00;
    /* 矢印の色 */

}

.relative-container {
    position: relative; 
    width: 350px; 
    height: 58px;
}

.margin0a {
    margin: 0 auto;
}

.marginb__30 {
    margin-bottom: 30px;
}

.margint__100 {
    margin-top: 100px;
}

.padding-bottom__100{
    padding-bottom: 100px;
}

.padding-top__119{
    padding-top: 119px;
}

.width800 {
    width: 800px;
}

.footer {
    padding: 24px;
background-color: #424242;
}

.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
}

.bg-transparent {
    background: transparent
}


.footer .btn_back {
    padding: 8px 24px;
    background: #000;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
}

.footer .btn_back span {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.footer .btn_back span:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    transform: rotate(-45deg);
    top: calc(50% - 3px);
    left: 0;
}

.footer .btn_back:hover {
    color: #fff;
}

.footer .btn_back span:hover:before {
    border-color: #fff;
}

.footer .copy {
    font-size: 1rem;
    color: #fff;
}
.pager {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    margin-bottom: 60px;
}

.pager .num {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: #FF6600;
    font-weight: 700;
    color: #fff;

}

.pager .num.current {
    background: #707070;
    color: #fff;
}

.pager .btn_next,
.pager .btn_prev {
    position: relative;
    display: flex;
    width: 120px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid #707070;
    background: #707070;
    font-weight: 700;
    color:#fff;
}

.pager .btn_prev {
    margin-left: 16px;
}

.pager .btn_next::before,
.pager .btn_prev::before {
    position: absolute;
    content: "";
    top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.pager .btn_next::before {
    right: -17px;
    border-left: 16px solid #707070;
    border-right: 0;
}

.pager .btn_prev::before {
    left: -17px;
    border-right: 16px solid #707070;
    border-left: 0;
}

.top-txt{
    width: 400px;
    padding-left: 30px;
    color: #000;
    font-weight: 600;
    font-size: 1.4rem;
}


/* 画像の下の隙間を消す */
img {
    display: block;
    vertical-align: bottom;
}

/* テーブルセル内の隙間を徹底的に排除する */
td {
    padding: 0;
    line-height: 0;
    font-size: 0;
}

/* 左側の画像が入っているセルを上に詰める */
td[width="325"] {
    vertical-align: top;
}

/* もしくは、画像そのものに以下の設定を追加 */
img {
    display: block;
    vertical-align: bottom; /* 画像のベースラインの隙間を消す */
}

/* tdに文字が入っている場所（size_sなど）がある場合、
   文字が消えてしまうので、文字を含む要素だけフォントサイズを戻す
*/
td span, 
td a {
    display: inline-block; /* 0設定の影響を回避 */
    font-size: 1.6rem;      /* bodyのサイズに合わせる */
    line-height: 1.5;
}

.size_m {
    font-size: 15px;
    line-height: 24px;

  }

  .size_s {
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
  }

  .padding10{
    padding: 10px;
  }

  .margin-b__20{
    margin-bottom: 20px;
  }
  .margin-t__20{
    margin-top: 20px;
  }