header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  /* padding: 18px 0; */
  box-shadow: 0px 3px 10px 0px #0000001c;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  container-type: inline-size;
}
header h1 {
  margin: 0;
  font-size: 1.6rem;
  padding-left: 32px;
  font-weight: 400;
}
header h1 span {
  font-size: 1rem;
  padding-left: 10px;
}
header .global_nav_pc {
  display: block flex;
  gap: 32px;
  align-items: center;
}
header .global_nav_pc ul {
  display: flex;
  gap: 32px;
}
header .global_nav_pc ul li {
  position: relative;
}
header .global_nav_pc ul li::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 1px;
  height: 24px;
  transform: rotate(30deg);
  background-color: #2b2b2b;
}
header .global_nav_pc ul li:last-child::after {
  display: none;
}
header .global_nav_pc ul li a {
  transition: color 0.3s;
}
header .global_nav_pc ul li a:hover {
  color: #0ca40c;
}
header .global_nav_pc .nav_btn_list {
  display: flex;
  margin-bottom: -12px;
  font-weight: 600;
  gap: 1px;
}
header .global_nav_pc .nav_btn_list .nav_magazine a {
  color: #ffffff;
  display: block;
  padding: 30px 18px 29px 56px;
  background-color: #005d95;
  border-bottom-left-radius: 6px;
  border: 1px solid #005d95;
  border-top: none;
}
header .global_nav_pc .nav_btn_list .nav_magazine a:hover {
  background-color: #00436b;
}
header .global_nav_pc .nav_btn_list .nav_magazine a span {
  padding-right: 8px;
  position: relative;
  display: block;
}
header .global_nav_pc .nav_btn_list .nav_magazine a span img {
  position: absolute;
  top: 2px;
  left: -34px;
  max-width: 30px;
}
header .global_nav_pc .nav_oder a {
  color: #ffffff;
  display: block;
  padding: 30px 20px 30px 60px;
  background-color: #0ca40c;
}
header .global_nav_pc .nav_oder a:hover {
  background-color: #076607;
}
header .global_nav_pc .nav_oder a span {
  padding-right: 8px;
  position: relative;
  display: block;
}
header .global_nav_pc .nav_oder a span img {
  position: absolute;
  top: 0;
  left: -38px;
  max-width: 30px;
}
header .menu-wrapper {
  display: none;
}
header .menu-wrapper .global_nav_sp {
  display: none;
}
@media screen and (max-width: 1220px) {
  header h1 span {
    display: block;
    padding-left: 0px;
  }
}
@media screen and (max-width: 1100px) {
  header h1 {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 300;
    box-shadow: 0px 3px 10px 0px #0000001c;
    padding: 8px 16px;
    font-size: 1.25rem;
  }
  header h1 span {
    font-size: 0.9rem;
  }
  header .global_nav_pc {
    display: none;
  }
  header .menu-wrapper {
    display: block;
  }
  header .menu-wrapper .global_nav_sp {
    display: block;
  }
}
.menu-wrapper {
  position: relative;
}
.menu-icon {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 300;
  color: #0ca40c;
  cursor: pointer;
  display: inline-block;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #0ca40c;
}
.menu-icon .menu-text::before {
  content: "メニュー";
}
#menu-toggle:checked ~ .menu-icon .menu-text::before {
  content: "閉じる";
}
/* 背景 */
.overlay {
  position: fixed;
  inset: 0;
  background-color: #e5f5e5;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 100;
}
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}
/* メニュー本体*/
.global_nav_sp {
  position: fixed;
  top: 0;
  left: -100%;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: right 0.4s ease;
  z-index: 200;
  padding: 100px 24px;
  overflow-y: auto;
}
.global_nav_sp .btn_area {
  justify-content: center;
}
.global_nav_sp .btn_area a {
  max-width: 240px;
  margin: 0 auto;
}
.global_nav_sp ul {
  list-style: none;
  margin-top: 24px;
}
.global_nav_sp ul li {
  border-bottom: 1px solid #0ca40c;
  padding: 18px 24px;
}
.global_nav_sp ul li a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}
.global_nav_sp ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  width: 10px;
  height: 15px;
  background-image: url(../images/arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
#menu-toggle:checked ~ .global_nav_sp {
  opacity: 1;
  left: 0;
}
.global_nav_sp a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.global_nav_sp a:hover {
  color: #ffffff;
}
footer {
  position: relative;
  padding: 0 16px;
  background-color: #ffffff;
}
footer .machi_img {
  position: relative;
}
footer .machi_img img {
  width: 100%;
  max-width: 1000px;
  position: absolute;
  top: -110px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  footer .machi_img img {
    top: -50px;
  }
}
footer .footer_inner {
  max-width: 1100px;
  margin: 90px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 830px) {
  footer .footer_inner {
    flex-direction: column-reverse;
    margin-top: 60px;
  }
}
footer .footer_inner .footer_content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
}
footer .footer_inner .footer_content p {
  font-size: 1.25rem;
}
footer .footer_inner .footer_content .footer_info {
  margin-top: 10px;
}
footer .footer_inner .footer_content .footer_info p {
  font-size: 1rem;
}
@media screen and (max-width: 830px) {
  footer .footer_inner .footer_content {
    margin-top: 60px;
  }
}
footer .footer_nav {
  margin-left: 50px;
}
@media screen and (max-width: 830px) {
  footer .footer_nav {
    margin-left: 0;
  }
  footer .footer_nav .btn_area a {
    max-width: 240px;
    margin: 0 auto;
  }
}
footer .footer_nav .footer_nav_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  footer .footer_nav .footer_nav_list {
    max-width: 240px;
    margin: 40px auto 0 auto;
  }
}
footer .footer_nav .footer_nav_list li {
  padding-left: 20px;
}
footer .footer_nav .footer_nav_list li a {
  position: relative;
  transition: all 0.3s;
}
footer .footer_nav .footer_nav_list li a::before {
  position: absolute;
  content: "";
  background-image: url(../images/arrow_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
footer .footer_nav .footer_nav_list li a:hover {
  color: #0ca40c;
}
footer .copyright {
  margin-bottom: 70px;
  text-align: center;
  z-index: 1;
  position: relative;
}
footer .wave_img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 350px;
}
footer .wave_img img {
  width: 100%;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), /* Windows用 */ local("Noto Sans CJK JP Regular") /* Android用 */;
}
html,
body {
  margin: 0;
  height: 100%;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}
@media screen and (max-width: 830px) {
  html {
    scroll-padding-top: 130px;
  }
}
body {
  background-color: #f5faf5;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body a {
  transition: all 0.3s;
}
/*最新号・購入ボタンセット*/
.btn_area {
  display: flex;
  gap: 15px;
}
.btn_area a {
  min-width: 240px;
  max-height: 56px;
  display: block;
  text-align: center;
  padding: 13px 16px 18px 40px;
  border-radius: 6px;
  font-size: 1.15rem;
  font-weight: 600;
}
.btn_area a span {
  position: relative;
  display: inline-block;
}
.btn_area a span img {
  max-width: 30px;
  position: absolute;
  top: 3px;
  left: -38px;
}
.btn_area .magazine_link {
  border: 1px solid #005d95;
  background-color: #005d95;
  color: #ffffff;
}
.btn_area .magazine_link:hover {
  background-color: #00436b;
}
.btn_area .order_btns .oder_link {
  background-color: #0ca40c;
  color: #ffffff;
}
.btn_area .order_btns .oder_link:hover {
  background-color: #076607;
}
.btn_area .order_btns .oder_memo {
  color: #0057b0;
  margin-top: 6px;
  padding: 0;
  font-size: 0.9rem;
  text-decoration: underline;
  font-weight: 400;
}
@media screen and (max-width: 830px) {
  .btn_area {
    flex-direction: column;
  }
}
/*ページトップ*/
.page_top {
  position: fixed;
  bottom: 0;
  right: 14px;
  z-index: 999;
}
.page_top a {
  padding: 14px 18px;
  border-radius: 6px 6px 0 0;
  display: block;
  background-color: #0ca40c;
}
.page_top a:hover {
  background-color: #076607;
}
/*スマホ用下部固定ボタン*/
.sp_oder {
  display: none;
}
@media screen and (max-width: 830px) {
  .sp_oder {
    display: block flex;
    gap: 6px;
    position: fixed;
    bottom: 0;
    left: 14px;
    z-index: 990;
  }
  .sp_oder a {
    font-weight: 600;
    padding: 14px 25px 12px 50px;
    display: block;
    background-color: #0ca40c;
    border-radius: 6px 6px 0 0;
    border: 1px solid #0ca40c;
    border-bottom: none;
  }
  .sp_oder a span {
    padding-right: 8px;
    position: relative;
    display: block;
  }
  .sp_oder a span img {
    position: absolute;
    top: 0;
    left: -34px;
    max-width: 30px;
  }
  .sp_oder .magazine_link a {
    padding: 14px 20px 12px 50px;
    background-color: #005d95;
    color: #ffffff;
  }
  .sp_oder .magazine_link a:hover {
    background-color: #00436b;
  }
  .sp_oder .magazine_link a span img {
    top: 2px;
    left: -32px;
  }
  .sp_oder .nav_oder a {
    color: #ffffff;
    margin-bottom: -16px;
  }
  .sp_oder .nav_oder a:hover {
    background-color: #076607;
  }
}
/*メインコンテンツ*/
main {
  flex: 1;
  margin: 200px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 120px;
  /*あっせんについて*/
  /*注文方法*/
  /*アクティブック基本操作ガイド*/
  /*バックナンバー */
}
@media screen and (max-width: 830px) {
  main {
    gap: 80px;
    margin-bottom: 120px;
    margin-top: 160px;
  }
}
main .top_mv {
  max-width: 1300px;
  padding-left: 280px;
}
main .top_mv .mv {
  background-color: #ffffff;
  display: flex;
  padding: 60px 100px 60px 200px;
  border-radius: 12px;
  gap: 70px;
}
@media screen and (max-width: 830px) {
  main .top_mv .mv {
    gap: 50px;
  }
}
main .top_mv .mv .mahazin_cover {
  max-width: 380px;
  height: auto;
  margin-left: -380px;
  margin-top: -100px;
}
main .top_mv .mv .mahazin_cover img {
  box-shadow: 6px 6px 10px 0px #0000001c;
  transition: all 0.3s;
}
main .top_mv .mv .mahazin_cover img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 830px) {
  main .top_mv .mv .mahazin_cover {
    max-width: 200px;
  }
}
main .top_mv .mv .mv_contents {
  width: 100%;
  min-width: max-content;
}
@media screen and (max-width: 830px) {
  main .top_mv .mv .mv_contents {
    min-width: 100%;
  }
}
main .top_mv .mv .mv_contents hgroup {
  margin-bottom: 60px;
}
main .top_mv .mv .mv_contents hgroup .mv_title {
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 18px 0;
  border-bottom: 1px solid #2b2b2b;
}
main .top_mv .mv .mv_contents hgroup .mv_title span {
  font-size: 1rem;
  padding-left: 18px;
}
@media screen and (max-width: 830px) {
  main .top_mv .mv .mv_contents hgroup {
    margin-bottom: 40px;
  }
  main .top_mv .mv .mv_contents hgroup .mv_title {
    font-size: 2rem;
  }
  main .top_mv .mv .mv_contents hgroup .mv_title span {
    display: block;
    padding: 0;
    margin-bottom: 8px;
  }
}
main .top_mv .mv .mv_contents .btn_area {
  justify-content: center;
}
main .top_mv .mv .mv_contents .infomation {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
main .top_mv .mv .mv_contents .infomation .table {
  text-align: center;
  margin-bottom: 16px;
}
main .top_mv .mv .mv_contents .infomation .table .tab_head {
  color: #0ca40c;
  font-weight: 600;
  background-color: #ebebeb;
  padding: 4px;
  border: 1px solid #0ca40c;
  border-radius: 6px 6px 0 0;
}
main .top_mv .mv .mv_contents .infomation .table .tab_txt {
  padding: 16px;
  border: 1px solid #0ca40c;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}
main .top_mv .mv .mv_contents .infomation .table .tab_txt p {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 830px) {
  main .top_mv .mv .mv_contents .infomation {
    grid-template-columns: 1fr;
  }
}
main .top_mv .mv .mv_contents .red_txt {
  color: #c9210f;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  main .top_mv {
    padding-left: 0;
  }
  main .top_mv .mv {
    flex-direction: column;
    padding: 32px;
  }
  main .top_mv .mv .mahazin_cover {
    margin: -100px auto 0 auto;
  }
}
main article {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
}
main article .art_h2 {
  font-size: 2rem;
  color: #0ca40c;
  background-color: #ffffff;
  width: 100%;
  text-align: center;
  font-weight: 400;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 6px 6px 10px 0px #0000001c;
}
@media screen and (max-width: 830px) {
  main article .art_h2 {
    font-size: 1.5rem;
  }
}
main .about {
  padding-left: 200px;
  position: relative;
  margin-top: 100px;
}
main .about .about_inner {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 90px 50px 40px 50px;
  border: 1px solid #0ca40c;
}
@media screen and (max-width: 830px) {
  main .about .about_inner {
    padding: 90px 24px 24px 24px;
  }
}
main .about .art_h2 {
  padding: 32px;
  width: 45%;
  position: absolute;
  top: -60px;
  left: 0;
}
main .about section {
  margin-bottom: 40px;
}
main .about section h3 {
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom: 2px solid #0ca40c;
  color: #0ca40c;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
main .about section .red_txt {
  color: #c9210f;
}
main .about section .lage {
  font-size: 1.15rem;
  font-weight: 600;
}
main .about section .note {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-top: 4px;
}
main .about section .small {
  font-size: 0.9rem;
}
@media screen and (max-width: 1100px) {
  main .about {
    padding-left: 0;
  }
  main .about .art_h2 {
    padding: 16px;
    width: 94%;
    margin: 0 auto;
    right: 0;
    top: -32px;
  }
}
@media screen and (max-width: 830px) {
  main .about {
    margin-top: 40px;
  }
  main .about .about_inner section h3 {
    font-size: 1.25rem;
  }
}
main .howto .howto_list {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 830px) {
  main .howto .howto_list {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
main .howto .howto_list .howto_item {
  padding: 40px 24px;
  border: 1px solid #0ca40c;
  border-radius: 6px;
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
main .howto .howto_list .howto_item .number {
  font-size: 2.5rem;
  color: #0ca40c;
  background-color: #e5f5e5;
  border-radius: 50%;
  padding: 0 20px 4px 20px;
  position: absolute;
  top: -30px;
  border: 1px solid;
}
@media screen and (max-width: 830px) {
  main .howto .howto_list .howto_item .number {
    font-size: 2rem;
    padding: 0 18px 4px 18px;
    top: -22px;
    left: 8px;
  }
}
main .howto .howto_list .howto_item .img_box {
  text-align: center;
}
main .howto .howto_list .howto_item .img_box img {
  max-width: 200px;
}
main .howto .howto_list .howto_item h3 {
  color: #0ca40c;
  font-size: 1.15rem;
}
main .howto .howto_list .howto_item .btn_box {
  text-align: center;
}
main .howto .howto_list .howto_item .btn_box a {
  background-color: #0ca40c;
  color: #ffffff;
  padding: 10px 32px 10px 20px;
  display: inline-block;
  border-radius: 48px;
  position: relative;
}
main .howto .howto_list .howto_item .btn_box a:hover {
  background-color: #076607;
}
main .howto .howto_list .howto_item .btn_box a::after {
  content: "";
  background-image: url(../images/arrow.svg);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 40%;
  transform: rotate(90deg);
}
main .book_howto section {
  margin-top: 68px;
  padding: 50px;
  border: 1px solid #0ca40c;
  border-radius: 6px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 830px) {
  main .book_howto section {
    padding: 24px;
  }
}
main .book_howto section .book_howto_item {
  display: flex;
  flex-direction: column;
}
main .book_howto section .book_howto_item h3 {
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom: 2px solid #0ca40c;
  color: #0ca40c;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
main .book_howto section .book_howto_item .howto_img_area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}
main .book_howto section .book_howto_item .img_sp {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}
main .book_howto section .book_howto_item .img_sp img {
  width: 50%;
  max-width: 385px;
  height: fit-content;
}
@media screen and (max-width: 830px) {
  main .book_howto section .book_howto_item .img_sp {
    flex-direction: column;
    margin-top: 0;
  }
  main .book_howto section .book_howto_item .img_sp img {
    width: 100%;
  }
}
main .book_howto section .book_howto_item .pc_only {
  display: block;
}
@media screen and (max-width: 830px) {
  main .book_howto section .book_howto_item .pc_only {
    display: none;
  }
}
main .book_howto section .book_howto_item .item_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .book_howto section .book_howto_item .item_inner h4 {
  font-weight: 600;
  font-size: 1.15rem;
  color: #0ca40c;
}
@media screen and (max-width: 830px) {
  main .book_howto section .book_howto_item .item_inner {
    gap: 16px;
  }
}
main .book_howto section .book_howto_item .inner_bottom {
  margin-bottom: 24px;
}
main .book_howto section .book_howto_item dl {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 20px;
}
@media screen and (max-width: 830px) {
  main .book_howto section .book_howto_item dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
main .backnumber {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
main .backnumber hgroup {
  text-align: center;
}
main .backnumber hgroup p {
  margin-top: 24px;
}
main .backnumber section details {
  border: 1px solid #0ca40c;
  border-radius: 6px;
  background-color: #ffffff;
}
main .backnumber section details summary {
  padding: 12px 32px;
  font-size: 1.5rem;
  background-color: #e5f5e5;
  border-radius: 6px;
  color: #0ca40c;
  position: relative;
}
@media screen and (max-width: 830px) {
  main .backnumber section details summary {
    padding: 12px 20px;
  }
}
main .backnumber section details summary::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #0ca40c;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
main .backnumber section details summary::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #0ca40c;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
main .backnumber section details .backnumber_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  padding: 40px 50px;
  gap: 20px;
  border-top: 1px solid #0ca40c;
}
main .backnumber section details .backnumber_list img {
  transition: all 0.3s;
}
main .backnumber section details .backnumber_list img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 830px) {
  main .backnumber section details .backnumber_list {
    padding: 16px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }
}
@media screen and (max-width: 390px) {
  main .backnumber section details .backnumber_list {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}
main .backnumber section details[open] summary::before {
  transform: rotate(90deg) translateX(-10px);
}
main .backnumber .content {
  overflow: hidden;
}
