@charset "UTF-8";
/*=======================

全体

======================= */
body {}
html {
  scroll-behavior: smooth;
}
#wraper {
  text-align: center;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#wraper * {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  position: relative;
}
p a,.gaiyou-box a {
  text-decoration: underline;
  color: #04398b !important;
}
a:visited, a:link {
  color: inherit;
}
p {
  position: relative;
}
.red {
  color: #da0000;
}
.bold {
  font-weight: bold;
}
.min-txt {
  font-size: 70%;
  line-height: 1.4;
  display: inline-block;
}
h2 {
  font-size: 210%;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  font-family: "Libre Bodoni", "Sawarabi Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.contents {
  padding: 2em 0 6em;
  margin: 0em 0 0em;
  position: relative;
}
.contents.gray-bg {
  background: #f2f2f2;
}
.inner {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}
.contents::before {
  display: block;
  width: 100%;
  height: 2.4em;
  content: '';
  background: url(../img/ribbon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -0.7em;
  left: 0;
}
.contents .inner {
    position: relative;
    padding-bottom: 2em;
}
.contents .inner .stikey-item{
    position: sticky;
    top: 0;
    left: 0;
    background: #FFF;
    text-align: left;
    padding: 0.5em 0;
    z-index: 10;
    font-size:80%;
}
.contents.gray-bg .inner .stikey-item {
  background: #f2f2f2;
}
/*=======================

リンクボタン共通 

======================= */
a.link-btn.max {
  display: block;
  width: 90%;
  max-width: 600px;
  text-decoration: none;
  line-height: 1.4;
  margin: 2em auto 3em;
  font-size: 130%;
}
a.link-btn span {
  background: #FFF;
  border-radius: 4em;
  position: relative;
  border: 1px solid #333333;
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: 500;
}
a.link-btn span::after {
  display: block;
  width: 1em;
  height: 1em;
  content: '';
  background-image: url("../img/arrow-inline.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1.2em;
  transition: all 0.3s;
}
a.link-btn::before {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(50deg, #6cacf5 0%, #cce058 100%);
  border-radius: 4em;
  background-size: contain;
  position: absolute;
  top: 0.3em;
  left: 0.3em;
}
/* hover */
@media (hover: hover) {
  a.link-btn:hover span::after {
    right: 0.9em;
  }
}
/*=======================

ハンバーガーメニュー

======================= */
/* Navbar & Navmenu color */
.navigation {
  /* background: #FFF; */
  position: fixed;
  /* width: 100%; */
  /* height: 52px; */
  text-align: right;
  top: 0;
  z-index: 100;
  right: 0;
  opacity: 0;
  animation: fadeIn 0.5s 0.3s both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100vw;
  height: auto;
  top: 0;
  right: 0;
  text-align: left;
  /* margin-top: 52px; */
  padding: 52px 0 4em 0;
  clear: both;
  background: #FFF;
  transition: 0.25s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  font-size: 120%;
  line-height: 2;
}
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.25s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: capitalize;
  /* color: #ddd; */
  opacity: 0;
  transition: 0.5s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3em;
}
.menu a::before {
  content: "▶︎";
  font-size: 80%;
  color: #c9b900;
}
.menu li {
  border-bottom: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
.menu-btn:checked ~ .menu a, .menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.menu-btn {
  display: none;
}
.menu-icon {
  background: #c0b000;
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
  border-radius: 50%;
  margin: 0.5em;
  z-index: 10;
}
.navicon {
  background: #FFF;
  display: block;
  height: 2px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before, .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #FFF;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before {
  top: 9px;
}
.navicon:after {
  bottom: 9px;
}
/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.sub-link {
  margin-left: 1em;
  font-size: 80%;
}
.sub-link a {}
.sub-link a::before {
  font-size: 60%;
}
/*=======================

メイン画像 

======================= */
#FV {
  background: linear-gradient(50deg, #6cacf5 0%, #cce058 100%);
}
#FV h1 {
  margin: 0;
}
#FV h1 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
/*=======================

リード

======================= */
#lead {
  margin: 2em 0 3.5em;
}
#lead p {}
#lead p.red {
  margin-top: 1em;
}
/*=======================

NEWS

======================= */
#news {}
#news p {}
#news .sns-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 2em 0 0;
}
#news a.link-btn {
  display: block;
  width: 45%;
  text-decoration: none;
  line-height: 1.4;
}
#news a.link-btn span {
  background: #FFF;
  border-radius: 4em;
  position: relative;
  border: 1px solid #333333;
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  letter-spacing: 0;
}
#news a.link-btn span::after {
  display: block;
  width: 1em;
  height: 1em;
  content: '';
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 1.7em;
  right: 1.2em;
  transition: all 0.3s;
}
#news a.link-btn::before {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(50deg, #6cacf5 0%, #cce058 100%);
  border-radius: 4em;
  background-size: contain;
  position: absolute;
  top: 0.3em;
  left: 0.3em;
}
/* hover */
@media (hover: hover) {
  #news a.link-btn:hover span::after {
    top: 1.6em;
    right: 0.9em;
  }
}
/*=======================

ABOUT

======================= */
#about {}
#about p {
  margin-bottom: 1em;
}
.big {
  font-size: 138%;
  line-height: 1.4;
}
/* box */
.about-box {
  text-align: justify;
}
.about-box .about-ttl {
  background: #000;
  color: #FFF;
  display: inline-block;
  padding: 0.2em 0.5em;
  font-weight: bold;
  margin: 1em 0 0.5em;
  border-radius: 2px;
}
.circle-indent {
  padding-left: 1em;
  /* display: flex; */
  /* justify-content: flex-start; */
  /* align-items: flex-start; */
  vertical-align: middle;
  text-indent: -1em;
  text-align: justify;
}
.circle-indent::before {
  display: inline-block;
  vertical-align: middle;
  width: 0.7em;
  height: 0.7em;
  content: '';
  background: #000;
  border-radius: 1em;
  /* text-indent: 3em; */
  margin-right: 0.4em;
  /* background-size: contain; */
  /* position: absolute; */
  /* top: 0.2em; */
  /* left: 0.2em; */
}
/*=======================

内容について

======================= */
#detail {}
#detail p {}
.detail-box {
  background: #dceed5;
  border: 0.2em solid #50a82c;
  border-radius: 1.5em;
  padding: 1em 2em 2em;
  margin: 2em auto 2.5em;
  max-width: 800px;
}
.detail-box .detail-box-ttl {
  font-size: 180%;
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #50a82c;
}
.detail-box p {
  line-height: 1.5;
  margin-bottom: 0.35em;
  letter-spacing: 0.05em;
  text-align: justify;
}
.detail-box p.m-top {
  margin-top: 1.5em;
}
/* OK */
.detail-box.ok {}
.detail-box.ok .detail-box-ttl {}
/* NG */
.detail-box.ng {
  border-color: #04398b;
  background: #e6ebf3;
}
.detail-box.ng .detail-box-ttl {
  color: #04398b;
}
.detail-box .ng-red {
  border-radius: 1.5em;
  padding: 1.5em;
  margin: 1.5em auto 2em;
  width: 100%;
  box-sizing: border-box;
  background: #FFF;
  color: #da0000;
}
.detail-box .ng-red .circle-indent::before {
  background: #da0000;
}
.detail-box .ng-red p {}
/*=======================

footer

======================= */
footer {
  background: linear-gradient(50deg, #6cacf5 0%, #cce058 100%);
  color: #FFF;
  text-align: left;
  font-weight: bold;
  padding: 2em 0 4em;
}
/*********** 768px以下 ***********/
@media(max-width:768px) {
  body {}
  #wraper {
    font-size: 3.4vw;
  }
  #wraper * {}
  a {}
  a:visited {}
  p {}
  .red {}
  h2 {}
  .contents {}
  .contents.gray-bg {}
  .inner {}
  .contents::before {}
  /*=======================

メイン画像 

======================= */
  #FV {}
  #FV h1 {}
  #FV h1 img {}
  /*=======================

リード

======================= */
  #lead {}
  #lead p {}
  #lead p.red {}
  /*=======================

NEWS

======================= */
  #news {}
  #news p {}
  #news .sns-box {}
  #news a {
    width: 48%;
  }
  #news a span {}
  #news a span::after {}
  #news a::before {}
  /*=======================

ABOUT

======================= */
  #about {}
  #about p {}
  .big {}
  /* box */
  .about-box {}
  .about-box .about-ttl {}
  .circle-indent {}
  .circle-indent::before {}
  /*=======================

内容について

======================= */
  #detail {}
  #detail p {}
  .detail-box {}
  .detail-box .detail-box-ttl {}
  .detail-box p {}
  .detail-box p.m-top {}
  /* OK */
  .detail-box.ok {}
  .detail-box.ok .detail-box-ttl {}
  /* NG */
  .detail-box.ng {}
  .detail-box.ng .detail-box-ttl {}
  .detail-box .ng-red {}
  .detail-box .ng-red .circle-indent::before {}
  .detail-box .ng-red p {}
  /*=======================

footer

======================= */
  footer {}
}
/*==============================================

下層ページ

============================================== */
/*=======================

ヘッダー

======================= */
header {
  border-bottom: 1px solid #d4d4d4;
  padding: 0.6em 0.4em 0.4em;
}
header h1 {
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
}
header h1 img {
  width: 59%;
  max-width: 300px;
}
/*=======================

ナビ

======================= */
#nav {}
#nav .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 2em auto 3em;
  flex-wrap: wrap;
}
#nav .inner a {
  display: block;
  width: 44%;
  text-decoration: none;
  line-height: 1.4;
  font-size: 120%;
}
#nav .inner a.nav-max {
  width: 90%;
}
#nav .inner a.nav-min {
  line-height: 1.2;
  font-size: 100%;
}
#nav .inner a span {
  background: #FFF;
  /* border-radius: 4em; */
  position: relative;
  border: 1px solid #333333;
  padding: 0.8em 0 1.2em;
  display: block;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 1em;
  /* letter-spacing: 0; */
  font-family: "Libre Bodoni", "Sawarabi Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#nav .inner a span::after {
  display: block;
  width: 100%;
  height: 0.5em;
  content: '';
  background-image: url("../img/nav_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0.4em;
  left: 0;
  transition: all 0.3s;
}
#nav .inner a::before {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: #c9b900;
  background-size: contain;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}
/* hover */
@media (hover: hover) {
  #nav .inner a:hover span::after {
    right: 0.9em;
  }
}
/*=======================

執筆者様募集

======================= */
#entry {}
#entry p.big {
  font-size: 120%;
  margin-bottom: 1em;
}
#entry a {
  margin: 1em auto 1.8em;
}
#entry .entry-box {
  text-align: justify;
}
/*=======================

執筆概要

======================= */
#genkou-gaiyou {}
#genkou-gaiyou p {}
.gaiyou-box {
  margin: 2em auto 1.5em;
  text-align: justify;
  letter-spacing: 0;
}
.gaiyou-box img {
 max-width: 100%;
}
.gaiyou-box .circle-indent {}
/* 補足情報 */
.detail-hosoku-box {
  font-size: 90%;
  background: #eeeeee;
  padding: 1.5em 2em 2em;
 margin: 1em 0;
  text-align: justify;
  letter-spacing: 0;
}
.gray-bg .detail-hosoku-box {
  background: #FFF
}

.detail-hosoku-box p {}
.detail-hosoku-box img {
  margin: 1.5em auto;
}
/*=======================

開閉アイテム

======================= */

.toggle-btn {
  display: block;
  width: 90%;
  max-width: 600px;
  text-decoration: none;
  line-height: 1.4;
  margin: 2em auto 0em;
  font-size: 110%;
  
  cursor: pointer;
}
.toggle-btn span {
  background: #FFF;
  border-radius: 4em;
  position: relative;
  border: 1px solid #333333;
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: 500;
}
.toggle-btn span::after {
  display: block;
  width: 1em;
  height: 1em;
  content: '';
  background-image: url("../img/arrow-inline.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1.2em;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.toggle-contents {
 display: none;
}