body {
  font-family: "YakuHanJPs", "Noto Sans JP", sans-serif;
  margin: 0;
	font-size: 16px;
  font-weight: 400;
  color: #3A3939;
}
body.f-large {
	font-size: 18px;
}
.f-eng {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  transform: rotate(0.05deg);
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  body.open {
    overflow: hidden;
  }
}

/* --------------------------------- wrap */
body > div.wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* --------------------------------- header */
header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  padding: 0 80px 0;
  margin: 0 auto 0 auto;
  z-index: 500;
}
header .logo {
  width: 100%;
  max-width: 188px;
  margin-top: 50px;
}
header div.menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 10px 10px 10px 10px;
  margin: 20px 0 0 auto;
}
header div.menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header div.menu ul li {
  display: flex;
  align-items: center;
}
header div.menu ul li:not(:last-child)::after {
  content: "/";
  color: #d82f2f;
}
header div.menu ul li a {
  position: relative;
  color: #3A3939;
  padding: 0 30px;
}
header div.menu ul li a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -4px);
  
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #d82f2f;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
header div.menu ul li a:hover {
  color: #d82f2f;
}
header div.menu ul li a:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
header div.text-size {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  
  font-size: 16px;
  background-color: #FCFAF8;
  border-radius: 6px;
  padding: 15px 16px;
}
header div.text-size span {
  display: block;
  margin: 0 16px 0 0;
}
header div.text-size button {
  width: 50px;
  border: 1px solid #E8E4DD;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 3px 0 3px 0;
}
header div.text-size button:first-of-type {
  margin-right: 10px;
}
header div.text-size button.is-active {
  border: 1px solid #d82f2f;
  background-color: #d82f2f;
  color: #FFFFFF;
}

/* page,single */
.single header,
.page header {
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .single header .logo,
  .page header .logo {
    max-width: 266px;
    background-color: #ffffff;
    border-radius: 0 0 30px 0;
    padding: 20px 20px;
    margin-top: 0;
  }
  .single header .logo a,
  .page header .logo a {
    width: 100%;
    max-width: 166px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1440px) {
  header {
    padding: 0 20px 0;
  }
  header .logo {
    width: 14.32vw;
    min-width: 110px;
  }
}
@media screen and (max-width: 1024px) {
  header .logo {
    margin-top: 20px;
  }
  header div.menu {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  header div.menu ul {
    margin: 0 0;
  }
  header div.text-size {
    padding: 6px 10px;
    margin: 0 0 16px;
  }
}
@media screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    padding: 0;
  }
  header .logo {
    position: relative;

    width: 26vw;
    min-width: 80px;
    max-width: 110px;
    background-color: #ffffff;
    padding: 16px;
    margin-top: 0;
    border-radius: 0 0 10px 0;

    z-index: 10;
  }
  header div.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    flex-direction: column;
    align-items: center;
    padding: 120px 20px 60px;
    margin: 0 0 0 0;

    background-color: rgb(255, 255, 255);
    overflow-y: scroll;
  }
  header div.menu nav {
    width: 100%;
    max-width: 600px;
    margin: 0 0 20px;
  }
  header div.menu ul {
    flex-direction: column;
    width: 100%;
    border: 1px solid #d82f2f;
    border-radius: 10px;
  }
  header div.menu ul li {
    width: 100%;
  }
  header div.menu ul li:not(:last-child) {
    border-bottom: 1px solid #ebe4e1;
  }
  header div.menu ul li:not(:last-child)::after {
    display: none;
  }
  header div.menu ul li a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
  }
  header div.menu ul li a:hover::after {
    display: none;
  }
  header div.text-size {
    margin: 0 0 0;
  }

  /* open */
  header div.menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .open header div.menu {
    opacity: 1;
    visibility: visible;
  }
  div.wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(224, 208, 208, 0.6);
    z-index: 300;

    opacity: 0;
    visibility: hidden;
  }
  .open div.wrap::after {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
  }
}
@media screen and (max-width: 430px) {
  header div.menu {
    padding: 100px 20px 60px;
  }
}

/* toggle */
div.toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  div.toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;

    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: #d82f2f;
    border-radius: 4px;
    z-index: 400;
  }
  div.toggle::after {
    content: 'menu';
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    transform: rotate(0.05deg);
    text-align: center;
    font-size: 1em;
    color: #FFFFFF;
  }
  
  div.toggle span::after,
  div.toggle span::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border-radius: 6px;
    height: 2px;
    transition: all 0.3s;
  }
  div.toggle span::before {
    width: 26px;
    top: 16px;
  }
  div.toggle span::after {
    width: 26px;
    top: 26px;
  }
  
  .open div.toggle span::before {
    top: 16px;
    transform: translateX(-50%) rotate(45deg);
  }
  .open div.toggle span::after {
    top: 16px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .open div.toggle::after {
    content: 'close';
  }
}

/* --------------------------------- page-top */
a.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  
  width: 82px;
  height: 82px;
  background-color: #ffffff;
  border: 2px solid #d82f2f;
  border-radius: 100px;
  z-index: 100;
}
a.page-top span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 700;
  color: #d82f2f;
}
a.page-top span svg {
  display: block;
  width: 16px;
  height: 14px;
  stroke: none;
  fill: #d82f2f;
  transform: rotate(-90deg);
  margin: 0 6px;
}

@media screen and (max-width: 768px) {
  a.page-top {
    width: 50px;
    height: 50px;
  }
  a.page-top span {
    font-size: 1em;
  }
  a.page-top span::before {
    width: 14px;
    height: 10px;
  }
}
@media screen and (max-width: 510px) {
  .article a.page-top,
  .reflection a.page-top,
  .award a.page-top,
  .faward a.page-top {
    bottom: 60px;
    width: 50px;
    height: 50px;
  }
}

/* --------------------------------- single-toc */
/* p.single-toc {
  position: fixed;
  right: 20px;
  bottom: 112px;
  
  width: 82px;
  height: 82px;
  background-color: #ffffff;
  border: 2px solid #d82f2f;
  border-radius: 100px;
  z-index: 50;
}
p.single-toc span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #d82f2f;
}
p.single-toc span::before {
  content: '';
  display: block;
  width: 16px;
  height: 14px;
  background: url(../images/icon-toc.svg) no-repeat;
  margin: 0 6px;
}
@media screen and (max-width: 768px) {
  p.single-toc {
    width: 50px;
    height: 50px;
    bottom: 80px;
  }
  p.single-toc span {
    font-size: 0.875em;
  }
  p.single-toc span::before {
    width: 14px;
    height: 10px;
  }
} */

/* --------------------------------- ad */
div.ad {
  position: relative;
  width: 100%;
  border-top: 6px solid #d82f2f;
  border-bottom: 1px solid #E8E4DD;
  padding: 60px 20px 60px;
  margin: 0 0 40px;
  z-index: 30;
}
div.ad ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto 0;
}
div.ad ul li {
  width: calc((100% - 80px)/4);
  margin: 0 10px 10px;
}
@media screen and (max-width: 768px) {
  div.ad {
    padding: 20px 20px 20px;
    margin: 0 0 20px;
  }
  div.ad ul {
    max-width: 400px;
  }
  div.ad ul li {
    width: calc((100% - 40px)/2);
  }
  div.ad ul li:nth-child(-n + 2) {
    margin-bottom: 10px;
  }
} 

/* --------------------------------- footoer */

footer {
  position: relative;
  margin-top: auto;
  z-index: 30;
}
footer figure.logo {
  width: 170px;
  margin: 0 auto 10px;
}
footer nav {
  width: 100%;
  padding: 0 20px 0;
  margin: 0 auto 50px;
}
footer nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
footer nav ul li {
  display: flex;
  align-items: center;
}
footer nav ul li:not(:last-child) {
  margin-right: 10px;
}
footer nav ul li a {
  color: #3A3939;
  padding: 6px 0;
}
footer nav ul li:not(:first-child)::before {
  content: "｜";
  margin-right: 10px;
}
footer div.bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #FFFAF6;

  padding: 30px 0;
}
footer div.bottom ul {
  display: flex;
  align-items: center;
  margin: 0 80px 30px 0;
}
footer div.bottom ul li:not(:last-child) {
  margin: 0 26px 0 0;
}
footer div.bottom ul li:not(:first-child) {
  width: 26px;
}
footer div.bottom figure.banner {
  width: 100%;
  max-width: 300px;
  margin: 0 0 30px;
}
footer div.bottom p.copyright {
  width: 100%;
  text-align: center;
  border-top: 1px solid #E8E4DD;
  padding: 30px 20px 0;
}
@media screen and (max-width: 768px) {
  footer nav {
    margin: 0 auto 20px;
  }
  footer figure.logo {
    width: 120px;
  }
  footer div.bottom {
    padding: 20px 0;
  }
  footer div.bottom figure.banner {
    margin: 0 0 20px;
  }
  footer div.bottom ul {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 20px;
  }
  footer div.bottom ul li:first-child {
    width: 100%;
    max-width: 260px;
    margin: 0 0 10px;
  }
  footer div.bottom p.copyright {
    padding: 20px 20px 0;
  }
}

/* --------------------------------- parts */
/* h2 */
h2.title-slash {
	display: flex;
	align-items: center;
	justify-content: flex-start;

	font-size: 1.625em;	/* 26px */
	font-weight: 700;
}
h2.title-slash::before {
  content: '';
	width: 6px;
	height: 30px;
	border-radius: 10px;
	background: linear-gradient(0deg, #eb837c 0%, #ffddcd 100%);
	transform: rotate(30deg);
}
h2.title-slash span {
  margin-left: 16px;
}

/* search */
.reflection h2.title-slash::before {
  background: linear-gradient(0deg, #7eb1ff 0%, #f8fcff 100%);
}
.award h2.title-slash::before {
  background: linear-gradient(0deg, #e0c877 0%, #fff3cd 100%);
}
.faward h2.title-slash::before {
  background: linear-gradient(0deg, #ffd255 0%, #ffeecd 100%);
}

@media screen and (max-width: 768px) {
  h2.title-slash {
		font-size: min(5.31vw, 1.375em);
		margin: 0 0 0;
  }
}

/* a */
a.btn-circle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	width: fit-content;
	min-width: 200px;
	font-weight: 500;
	color: #d82f2f;
	border: 1px solid #d82f2f;
	background: #FFFFFF;
	border-radius: 30px;
	padding: 14px 16px;
}
a.btn-circle {
	display: flex;
	align-items: center;
	justify-content: space-between;

	width: fit-content;
	min-width: 200px;
	transition: all 0.3s;
}
a.btn-circle::after {
	content: '';
	display: block;
	width: 22px;
	height: 18px;

	background: url('../images/icon-arrow.svg');
	background-size: 9px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #d82f2f;
	border: 1px solid #ffffff;
	border-radius: 10px;
	transition: transform 0.3s;
}
a.btn-circle:hover {
	background-color: #d82f2f;
	color: #ffffff;
}
a.btn-circle:hover::after {
	transform: translateX(4px);
}

@media screen and (max-width: 768px) {
	a.btn-circle {
		padding: 12px 12px;
		margin: 0 auto 0;
  }
	a.btn-circle span {
		display: block;
		margin: 0 auto;
	}
}

/* pankuzu */
div.pankuzu {
  position: relative;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px 0;
	margin: 0 auto 40px;
  z-index: 20;
}
div.pankuzu ul {
	width: fit-content;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	margin: 0 0 0 auto;
}
div.pankuzu li {
	display: flex;
	align-items: baseline;
}
div.pankuzu li:not(:last-child) {
	margin-right: 10px;
}
div.pankuzu li:not(:first-child)::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #BCBCBC;
	border-right: 2px solid #BCBCBC;
	transform: rotate(45deg);
}
div.pankuzu li a {
	display: block;
	text-decoration: underline #3A3939;
  color: #3A3939;
}
div.pankuzu li:not(:first-child) a {
	margin-left: 10px;
}
div.pankuzu li span {
	color: #878787;
	margin-left: 10px;
}
@media screen and (max-width: 768px) {
	div.pankuzu {
		margin: 0 auto 20px;
	}
	div.pankuzu ul {
		margin: 0 auto 0 0;
	}
}





