@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/*===============================================
 common
===============================================*/
body {
  color: #111;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "ヒラギノ角ゴシック", Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

main {
  max-width: 900px;
  width: 100%;
  margin: 40px auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 600px) {
  main {
    padding: 0 15px;
    gap: 40px;
    margin: 30px auto;
  }
}

/* 見出し */
.headline {
  border-left: 6px solid #e4731a;
  padding: 0.3em 0 0.3em 0.6em;
  font-size: 28px;
  color: #e4731a;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .headline {
    font-size: 22px;
  }
}

.headline_lv2 {
  border-bottom: 1px solid #e4731a;
  padding-bottom: 0.4em;
  font-size: 22px;
  color: #e4731a;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .headline_lv2 {
    font-size: 18px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.sp {
  display: none;
}
@media (max-width: 600px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 600px) {
  .pc {
    display: none;
  }
}

/*===============================================
 header
===============================================*/
header {
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  header {
    padding: 15px;
  }
}
header .logo {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  header .logo {
    width: 200px;
  }
}
header .guide {
  color: #777777;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
header .guide:hover {
  text-decoration: underline;
}

/*===============================================
 fv
===============================================*/
.fv {
  position: relative;
}
.fv .main_img img {
  width: 100%;
}
.fv_inner {
/*  position: absolute;
  bottom: 0;
  left: 44%;*/
  padding: 20px;
/*  transform: translateX(-50%);*/
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fv_inner img:hover {
  opacity: 0.8;
}
@media (max-width: 600px) {
  .fv_inner {
    position: static;
    transform: translateX(0);
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }
  .fv_inner a img {
    margin-bottom: 20px;
  }
  .fv_inner a:last-of-type img {
    margin-bottom: 0;
  }
}

/*===============================================
 detail
===============================================*/
.detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail > p {
  font-size: 17px;
  line-height: 1.6;
}
.detail_period {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.detail_period P:first-child {
  background-color: #e4731a;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 16px;
}
.detail_period P:nth-child(2) {
  color: #f22727;
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 600px) {
  .detail_period P:nth-child(2) {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .detail_period {
    flex-direction: column;
  }
}
.detail_target {
  border-top: 1px dashed #e4731a;
  border-bottom: 1px dashed #e4731a;
  display: flex;
  justify-content: center;
  padding: 12px;
}
.detail_target ul {
  padding: 0;
  list-style: none;
}
@media (max-width: 600px) {
  .detail_target ul {
    font-size: 15px;
  }
}
.detail_target ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .detail_target ul li {
    display: block;
  }
}
.detail_target ul li:last-child {
  margin-bottom: 0;
}
.detail_target ul li span {
  color: #e4731a;
  font-weight: bold;
  width: 160px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .detail_target ul li span {
    display: block;
  }
}
.detail_target ul li span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 0.3em;
}

/*===============================================
 料金グラフ
===============================================*/
/* 図の拡大 */
.figure {
  position: relative;
  color: #aaa;
  text-decoration: none;
  display: block;
  transition: 0.2s;
}
.figure img {
  transition: 0.2s;
}
.figure:hover {
  color: #666;
}
.figure:hover img {
  opacity: 0.8;
}
.figure::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00e";
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===============================================
アンカーリンク
===============================================*/
.anchor_link {
  display: flex;
  list-style-type: none;
  justify-content: center;
  padding-left: 0;
}
.anchor_link li {
  text-align: center;
  width: 270px;
  background-color: #e4731a;
  border-radius: 10px;
  margin: 0 8px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .anchor_link li {
    width: 100%;
  }
}
.anchor_link li:hover {
  opacity: 0.8;
}
.anchor_link li a {
  padding: 8px 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  display: inline-block;
}
@media (max-width: 600px) {
  .anchor_link li a {
    font-size: 16px;
  }
}
.anchor_link li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  display: block;
}

/*===============================================
 申込ボタン
===============================================*/
.btn {
  display: flex;
  gap: 40px;
}
@media (max-width: 600px) {
  .btn {
    gap: 10px;
  }
}
.btn a {
  transition: all 0.2s;
}
.btn_w:hover , .btn_s:hover{
  opacity: 0.8;
}
.btn_nolink:hover{
  pointer-events: none;
}

small {
  margin-top: 8px;
  display: block;
  text-align: center;
}

/*===============================================
 必ずご確認ください
===============================================*/
.notice dt {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 0.3em;
}
@media (max-width: 600px) {
  .notice dt {
    font-size: 14px;
  }
}
.notice dd {
  font-size: 14px;
  padding-left: 1em;
  margin-bottom: 1em;
  margin-left: 0;
}
@media (max-width: 600px) {
  .notice dd {
    font-size: 13px;
  }
}
.notice dd ul {
  padding-left: 1.5em;
}
.notice dd ul li span {
  font-weight: bold;
}
.notice dd ul li ul {
  padding-left: 0;
}
.notice dd ul li ul li {
  list-style: none;
}

/*===============================================
勝毎電子版だけの特徴
===============================================*/
.feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .feature {
    gap: 8px;
  }
}
.feature img {
  border-radius: 10px;
  display: block;
  width: 100%;
}

/*===============================================
注目コンテンツ
===============================================*/
.notice_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .notice_box {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.notice_box .notice_item a {
  color: #111;
  text-decoration: none;
}
.notice_box .notice_item a:hover {
  opacity: 0.8;
}
.notice_box .notice_item a img {
  display: block;
}
.notice_box .notice_item a p {
  margin-top: 16px;
}

/*===============================================
 footer
===============================================*/
footer {
  border-top: 1px solid rgba(0, 95, 96, 0.05);
  padding: 30px 20px;
  background-color: rgba(0, 95, 96, 0.05);
}
footer .inner {
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 600px) {
  footer .inner {
    padding: 0 15px;
  }
}
footer ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  footer ul {
    font-size: 12px;
    line-height: 1.5;
  }
}
footer a {
  color: #e4731a;
}
/*# sourceMappingURL=style.css.map */