@charset "UTF-8";


/* 全体 */
html {
  max-width: 1400px;
  background-color: #FFFFFF;
  font-family: Reimin Medium;
}
body {
-webkit-text-size-adjust: 100%;
}
a {
  text-decoration: none;
}


/* レスポンシブ対応 */
.for-sp {
  display: none;
}

@media only screen and (max-width: 680px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
}


/* ハンバーガーメニュー */
.c-hamb-menu {
  position: relative;
}

@media screen and (max-width: 680px) {
  .c-hamb-menu_list {
    background-color: #f3f3f4;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 85%;
  }

  #hamb:checked ~ .c-hamb-menu_list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamb-menu_input {
  display: none;
}

.c-hamb-menu_bg {
  background-color: #000000;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@media screen and (max-width: 680px) {
  .c-hamb-menu_button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
}

.c-hamb-menu_b-mark {
  background-color: #000000;
  display: block;
  height: 1px;
  transition: 0.3s;
  width: 20px;
}


/* 画像 */
img {
  max-width: 100%;
  height: auto;
}


/* フォントスタイル */
/* スマホ画面 */
.mf {
  font-family: Ryumin Bold KL;
  font-size: 14px;
  color: #FF0000;
  text-align: right;
}
 .f01 {
  font-size: 28px;
  line-height: 40px;
  }
  .f02 {
  font-size: 20px;
  line-height: 32px;
  }
  .f03 {
  font-size: 17px;
  line-height: 29px;
  }
  .f04 {
  font-size: 14px;
  line-height: 28px;
  }
  .f05 {
  font-size: 13px;
  }
  .f06 {
  font-size: 10px;
  }
  .f07 {
  font-size: 14px;
  }
  .f08 {
  font-size: 16px;
  }
  .f09 {
  font-size: 13px;
  line-height: 19px;
  }

/* PC(小)画面 */
@media (min-width: 750px) {
  .mf {
  font-family: Ryumin Bold KL;
  font-size: 15px;
  color: #FF0000;
  text-align: right;
  }
  .f01 {
  font-size: 38px;
  line-height: 58px;
  }
  .f02 {
  font-size: 20px;
  line-height: 32px;
  }
  .f03 {
  font-size: 16px;
  line-height: 29px;
  }
  .f04 {
  font-size: 14px;
  line-height: 28px;
  }
  .f05 {
  font-size: 12px;
  }
  .f06 {
  font-size: 16px;
  }
  .f07 {
  font-size: 13px;
  }
  .f08 {
  font-size: 16px;
  }
  .f09 {
  font-size: 13px;
  line-height: 19px;
  }
}

/* PC(大)画面 */
@media (min-width: 1100px) {
  .mf {
    font-size: 18px;
  }
  .f01 {
  font-size: 42px;
  line-height: 58px;
  }
  .f02 {
  font-size: 22px;
  line-height: 34px;
  }
  .f03 {
  font-size: 17px;
  line-height: 30px;
  }
  .f04 {
  font-size: 15px;
  line-height: 29px;
  }
  .f05 {
  font-size: 13px;
  }
  .f06 {
  font-size: 20px;
  }
  .f07 {
  font-size: 14px;
  }
  .f08 {
  font-size: 16px;
  }
  .f09 {
  font-size: 13px;
  line-height: 19px;
  }
}


/* リンクスタイル */
.mf-a:link, 
.mf-a:visited, 
.mf-a:active {
  color: #FF0000;
  text-decoration: none;
}

.mf-a:hover { 
  color: #FFFF00;
}


/* その他テキストスタイル */
.m-close { 
  font-size: 13px;
}

.sp_ft-a {
  font-family: Reimin Medium;
  font-size: 14px;
  line-height: 150%;
}

.sp_ft-c {
  font-family: UD Shin Go Conde90 M;
  font-size: 9px;
  text-align: right;
}

@media screen and (max-width: 768px) {
.pc_ft-a {
    font-family: Reimin Medium;
    font-size: 9px;
    line-height: 150%;
}
}

@media screen and (min-width: 769px) {
.pc_ft-a {
    font-family: Reimin Medium;
    font-size: 16px;
    line-height: 150%;
}
}

.pc_ft-c {
  font-family: UD Shin Go Conde90 M;
  font-size: 9px;
}


/* テーブル */
@media screen and (min-width: 769px) {
.table02 {
    width: 300px;
}
}
@media screen and (max-width: 768px) {
.table01 th {
    display: none;
}

.table01 td {
    display: block;
}
.table02 {
    width: 100%;
}
}


/* その他 */
span.del {
  text-decoration-line: line-through;
  text-decoration-style:double;
  text-decoration-color:silver;
}

