@charset "UTF-8";

/* Top renewal */
:root {
  --top-heading-2-size: clamp(26px, 2vw + 14px, 38px);
  --top-heading-3-size: clamp(18px, .7vw + 13px, 22px);
  --top-kv-cream: rgba(255, 251, 214, .5);
}

body {
  min-inline-size: 320px;
}
.top-main{
  margin-top: 100px;
}
@media screen and (max-width: 600px) {
  .top-main {
    margin-top: 80px;
  }
}
.top-hero {
  padding-inline: 0;
  
}
@media screen and (min-width: 600px) {
  .top-hero {
    max-inline-size: none;
    inline-size: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
  }
}
.top-hero__inner {
  background: linear-gradient(to bottom, #fff 0%, #fff 84.9%, var(--top-kv-cream) 84.9%, var(--top-kv-cream) 100%);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.top-hero__picture,
.top-hero__picture img {
  display: block;
  width: 100%;
}

.top-hero__picture img {
  object-fit: cover;
}

@media screen and (min-width:600px) {
  .top-hero__inner {
    aspect-ratio: auto;
  }

  .top-hero__picture img {
    inline-size: 100%;
    block-size: auto;
  }
}

.top-hero__copy {
  inline-size: clamp(280px, 30vw, 696px);
  position: absolute;
  z-index: 3;
  inset-block-start: 42%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
}

.top-hero__copy img + img {
  inline-size: 90%;
  margin-block-start: max(10px, 1.2vw);
}

.top-hero__sketch {
  pointer-events: none;
}

.top-hero__sketch img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.top-hero__sketch li {
  opacity: 0;
  position: absolute;
  z-index: 2;
  animation-name: top-hero-sketch;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}

body._allloaded .top-hero__sketch li {
  animation-play-state: running;
}

.top-hero__sketch li:nth-child(1) {
  inline-size: 18%;
  inset-block-start: 2.5%;
  inset-inline-start: 8%;
  animation-delay: .2s;
}

.top-hero__sketch li:nth-child(2) {
  inline-size: 19%;
  inset-block-end: 7%;
  inset-inline-end: -1.5%;
  animation-delay: .4s;
}

.top-hero__sketch li:nth-child(3) {
  inline-size: 14.5%;
  inset-block-start: 2%;
  inset-inline-end: 6.5%;
  animation-delay: .6s;
}

.top-hero__sketch li:nth-child(4) {
  inline-size: 13%;
  inset-block-end: 3%;
  inset-inline-start: 59%;
  animation-delay: .8s;
}

.top-hero__sketch li:nth-child(5) {
  inline-size: 15%;
  inset-block-end: 40%;
  inset-inline-start: 7%;
  animation-delay: 1s;
}

@keyframes top-hero-sketch {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width:599.98px) {
  .top-hero__inner {
    aspect-ratio: auto;
  }

  .top-hero__picture img {
    block-size: auto;
    object-fit: contain;
  }

  .top-hero__copy {
    inline-size: min(76vw, 360px);
    inset-block-start: 47%;
  }

  .top-hero__copy img + img {
    inline-size: 92%;
    margin-block-start: 8px;
  }

  .top-hero__sketch li:nth-child(1) {
    display: none;
    inline-size: 28%;
    inset-block-start: 0;
    inset-inline-start: -19%;
  }

  .top-hero__sketch li:nth-child(2) {
    inline-size: 32%;
    inset-block-end: 4%;
    inset-inline-end: -7%;
  }

  .top-hero__sketch li:nth-child(3) {
    inline-size: 31%;
    inset-block-start: 3%;
    inset-inline-start: 5%;
  }

  .top-hero__sketch li:nth-child(4) {
    display: none;
  }

  .top-hero__sketch li:nth-child(5) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-hero__sketch li {
    animation: none;
    opacity: 1;
  }
}

.top-topics {
  margin-block-start: -1px;
  padding-block: clamp(19px, 1.7vw, 24px) max(24px, var(--u-gap__ub5));
  background-color: var(--top-kv-cream);
  overflow: hidden;
}

.top-topics__inner {
  margin-block-start: 0;
}

.top-topics__viewport {
  overflow: hidden;
}

.top-topics__list {
  display: flex;
  gap: max(14px, var(--u-gap__ub3));
  transition: transform .6s cubic-bezier(0.14, 0, 0, 1);
  will-change: transform;
}

.top-topics__list > li {
  flex: 0 0 calc((100% - max(14px, var(--u-gap__ub3))*3) / 4);
}

.top-topics__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-block: 18px 0;
}

.top-topics__dots span {
  inline-size: 8px;
  block-size: 8px;
  border-radius: 50%;
  background-color: #f1f1ec;
}

.top-topics__dots span.is-active {
  background-color: var(--cl-yellow);
}

.top-topics__item {
  display: block;
  line-height: 1.5;
}

.top-topics__item figure {
  border-radius: var(--border-radius__s);
  background-color: var(--cl-gray__bcg);
  border: 2px solid #F1F1EC;
}

.top-topics__item time {
  color: #858585;
  display: block;
  font-family: var(--font-family__e1);
  font-size: 10px;
  letter-spacing: .02em;
  margin-block-start: .9em;
}

.top-topics__item p {
  font-size: 14px;
  font-weight: 700;
  margin-block-start: .2em;
  transition: color .2s ease-out;
}

@media(hover: hover) {
  .top-topics__item:hover p {
    color: var(--cl-yellow);
  }
}

@media screen and (max-width:599.98px) {
  .top-topics {
    padding-block: 22px 24px;
  }

  .top-topics__list > li {
    flex-basis: min(76vw, 300px);
  }
}

.top-lead {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--u-gap__ub15);
  margin-block-start: max(52px, var(--u-gap__ub15));
}

.top-lead__body h2,
.top-worries .c-title-A,
#condition > .c-title-A,
.top-idea .c-title-A,
main h2.c-title-A__sm {
  font-size: var(--top-heading-2-size);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
  text-align: center;
}
.c-cta__inner .c-title-A__sm{
  font-size:var(--font-size__md);
}


.top-lead__body h2 {
  text-align: left;
}

.top-lead__body h2 span {
  color: var(--cl-yellow);
  display: block;
}

.top-lead__body p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2;
  margin-block-start: max(18px, var(--u-gap__ub3));
  max-inline-size: 42em;
  text-align: justify;
}

.top-lead__image {
  border-radius: var(--border-radius__s);
  overflow: hidden;
}

@media screen and (max-width:599.98px) {
  .top-lead {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: max(22px, var(--u-gap__ub5));
    margin-block-start: max(34px, var(--u-gap__ub10));
  }
  .top-lead__body p {
    font-size: 1.1em;
  }
}

@media screen and (min-width:600px) and (max-width:899.98px) {
  .top-lead {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
    gap: 24px;
  }
}

.top-guide {
  margin-block-start: max(40px, var(--u-gap__ub10));
}

.top-guide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(12px, var(--u-gap__ub3));
  max-inline-size: 1120px;
  margin-inline: auto;
}

.top-guide__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: .8em;
  min-block-size: 76px;
  padding-block: .95em;
  padding-inline: 1.15em;
  border-radius: var(--border-radius__s);
  background-color: #f7f5ed;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
}

.top-guide__item img {
  grid-row: 1 / 3;
  inline-size: clamp(26px, 3.2vw, 42px);
}

.top-guide__item span {
  font-size: var(--font-size__sm);
  font-weight: 700;
  line-height: 1.4;
}

.top-guide__item small {
  color: #777;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.top-guide__item i,
.top-worries__item i,
.top-idea__item p::before {
  inline-size: var(--arrow-size);
  block-size: var(--arrow-size);
  border-radius: var(--border-radius__e);
  background: var(--cl-yellow) url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 50 50"><path fill="%23ffffff" d="M49.66,26.74c.46-1.11.46-2.36,0-3.47-.23-.56-.56-1.06-.98-1.48L28.22,1.33c-1.78-1.78-4.65-1.78-6.43,0s-1.78,4.65,0,6.43l12.7,12.7H4.55c-2.51,0-4.55,2.04-4.55,4.55s2.04,4.55,4.55,4.55h29.94l-12.7,12.7c-1.78,1.78-1.78,4.65,0,6.43.89.89,2.05,1.33,3.21,1.33s2.33-.44,3.21-1.33l20.45-20.45c.42-.42.75-.92.98-1.48Z"/></svg>') no-repeat 50% 50%;
  background-size: 50% auto;
}

.top-guide__item i {
  grid-row: 1 / 3;
}

@media screen and (max-width:599.98px) {
  .top-guide__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .top-guide__item {
    min-block-size: 64px;
  }
}

.top-worries {
  margin-block-start: max(50px, var(--u-gap__ub12));
  padding-block: max(40px, var(--u-gap__ub10));
  background-color: #f1f1ec;
}

.top-worries__inner {
  margin-block-start: 0;
}

.top-worries .c-title-A,
#condition > .c-title-A,
.top-idea .c-title-A {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 0 max(28px, var(--u-gap__ub7));
  margin-bottom: 8%;
}

.top-worries .c-title-A::before,
#condition > .c-title-A::before,
.top-idea .c-title-A::before {
  inline-size: 35px;
  block-size: 35px;
  margin-block-end: .35em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  content: "";
}

.top-worries .c-title-A::before {
  background-image: url(../images/common/icon_question.svg);
}

#condition > .c-title-A::before {
  background-image: url(../images/common/icon_filter.svg);
}

.top-idea .c-title-A::before {
  background-image: url(../images/common/icon_idea.svg);
}

.top-worries .c-title-A::after,
#condition > .c-title-A::after,
.top-idea .c-title-A::after {
  content: none;
}

.top-worries__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--u-gap__ub10);
  max-inline-size: 1080px;
  margin-inline: auto;
}

.top-worries__list > li > h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.45;
  margin-block-end: 1.2em;
  text-align: center;
}

.top-worries__list > li > h3::after {
  content: "";
  display: block;
  inline-size: 28px;
  block-size: 3px;
  margin-block-start: .55em;
  margin-inline: auto;
  background-image: radial-gradient(var(--cl-yellow) 45%, transparent 48%);
  background-size: 5px 3px;
}

.top-worries__item {
  display: block;
}

.top-worries__item figure {
  border-radius: var(--border-radius__s);
}

.top-worries__item div {
  display: flex;
  gap: .6em;
  align-items: flex-start;
  font-size: 1em;
  line-height: 1.6;
  margin-block-start: .9em;
}

.top-worries__item i {
  flex: 0 0 auto;
  margin-block-start: .25em;
}

@media screen and (max-width:599.98px) {
  .top-worries {
    padding-block: max(34px, var(--u-gap__ub10));
  }

  .top-worries__list {
    grid-template-columns: 1fr;
    gap: max(40px, var(--u-gap__ub7));
  }
  .top-worries__item div{
    font-size: 1.1em;
  }
}

#condition {
  margin-block-start: max(42px, var(--u-gap__ub12));
}

#condition > .c-title-A {
  margin-block-end: max(24px, var(--u-gap__ub7));
}

.c-category__brand .c-title-A__sm,
.c-category__paper .c-title-A__sm,
.c-category__binding .c-title-A__sm,
main h3.c-title-A__sm {
  font-size: 1.3rem;
  line-height: 1.45;
  margin-bottom: 8%;
}

.c-category__brand .c-title-A__sm::after,
.c-category__paper .c-title-A__sm::after,
.c-category__binding .c-title-A__sm::after {
  content: "";
  inline-size: 28px;
  block-size: 3px;
  margin-inline: auto;
  margin-block-start: .7em;
  background-image: radial-gradient(var(--cl-yellow) 45%, transparent 48%);
  background-size: 5px 3px;
}

.c-category__brand-main .c-category__item > p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-block-end: .8em;
}

.c-category__brand-main {
  grid-template-columns: repeat(4, 1fr);
}

.c-category__brand .c-category__brand-outer .l-grids__columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width:600px) and (max-width:799.98px) {
  .c-category__brand-main {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .c-category__brand>.l-grids__columns-4 li:nth-last-child(-n+2),
  .c-category__brand .c-category__brand-outer li:nth-child(-n+2) {
    display: list-item;
  }

  .c-category__brand .c-category__brand-outer .l-grids__columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width:599.98px) {
  .c-category__brand-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-category__brand>.l-grids__columns-4 li:nth-last-child(-n+2) {
    display: list-item;
  }

  .c-category__brand .c-category__brand-outer .l-grids__columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width:800px) {
  .c-category__brand .c-category__brand-outer li:nth-child(-n+2) {
    display: list-item;
  }
}

.top-idea {
  margin-block-start: max(50px, var(--u-gap__ub12));
  padding-block: max(40px, var(--u-gap__ub10));
}

.top-idea__inner {
  margin-block-start: 0;
}

.top-idea__subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  margin-block: calc(max(28px, var(--u-gap__ub7)) * -0.55) max(22px, var(--u-gap__ub5));
}

.top-idea__subtitle::after {
  content: "";
  display: block;
  inline-size: 28px;
  block-size: 3px;
  margin-block-start: .6em;
  margin-inline: auto;
  background-image: radial-gradient(var(--cl-yellow) 45%, transparent 48%);
  background-size: 5px 3px;
}

.top-idea__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(14px, var(--u-gap__ub3));
}

.top-idea__item {
  display: block;
  line-height: 1.55;
}

.top-idea__item figure {
  border-radius: var(--border-radius__s);
}

.top-idea__item p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .55em;
  font-size: var(--font-size__xs);
  margin-block-start: .85em;
}

.top-idea__item p::before {
  content: "";
  margin-block-start: .3em;
}

.top-idea__item span {
  color: #fff;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: .35em .7em;
  margin-inline-end: .4em;
  border-radius: 999px;
  background-color: var(--cl-yellow);
}

.top-idea .c-button-A__small {
  margin-block-start: max(24px, var(--u-gap__ub7));
}

@media screen and (max-width:599.98px) {
  .top-idea__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-idea__item {
    display: grid;
    grid-template-columns: 34% minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .top-idea__item p {
    margin-block-start: 0;
  }
}

.top-banners {
  margin-block-start: max(34px, var(--u-gap__ub10));
}

.top-banners__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(14px, var(--u-gap__ub3));
}

.top-banners__item {
  border-radius: var(--border-radius__s);
}

@media screen and (max-width:599.98px) {
  .top-banners__list {
    grid-template-columns: 1fr;
  }
}

/* Design correction: guide / idea */
.top-guide {
  margin-top: 10%;
}

.top-guide__list {
  gap: 12px;
  max-inline-size: 980px;
}

.top-guide__item {
  grid-template-columns: 40px minmax(0, 1fr) auto;
  column-gap: 14px;
  min-block-size: 88px;
  padding-block: 10%;
  padding-inline: 8%;
  background-color: #f1f1ec;
  box-shadow: none;
  text-align: center;
}

.top-guide__item img {
  grid-column: 1;
  inline-size: 64%;
  block-size: 64%;
  object-fit: contain;
}

.top-guide__item span {
  grid-column: 2;
  font-size: 1.2rem;
  letter-spacing: .05em;
}

.top-guide__item small {
  grid-column: 2;
  color: #777;
  font-size: 0.7em;
}

.top-guide__item i {
  grid-column: 3;
  inline-size: var(--arrow-size);
  block-size: var(--arrow-size);
  transform: rotate(90deg);

}

@media screen and (min-width:600px) and (max-width:899.98px) {
  .top-guide__list {
    max-inline-size: 720px;
  }

  .top-guide__item {
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    column-gap: 8px;
    min-block-size: 76px;
    padding-block: 13px;
    padding-inline: 12px 10px;
  
  }

  .top-guide__item img {
    inline-size: 34px;
    block-size: 34px;
  }

  .top-guide__item span {
    font-size: 15px;
  }

  .top-guide__item small {
    font-size: 9px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .top-guide__item i {
    inline-size: 16px;
    block-size: 16px;
  }
}

.top-idea {
  background-color: #f1f1ec;
}


.top-idea__list {
  gap: 14px;
}

.top-idea__item figure {
  border-radius: 6px;
}

.top-idea__item figure img {
  aspect-ratio: 350 / 236;
  object-fit: cover;
}

.top-idea__item p {
  display: block;
  color: var(--cl-blk);
  font-size: 1em;
  line-height: 1.55;
  letter-spacing: .04em;
  margin-block-start: 8px;
  transition: color .2s ease-out;
}
@media (hover: hover) {
  .top-idea__item:hover p {
    color: var(--cl-yellow);
  }
}
@media (hover: none) {
  .top-idea__item:active p {
    color: var(--cl-yellow);
  }
}


.top-idea__item p::before {
  content: none;
}

.top-idea__item span {
  display: table;
  color: #fff;
  font-size: 1em;
  line-height: 1;
  padding: 4px 10px;
  margin-block: 0 4px;
  margin-inline-end: 0;
  border-radius: 999px;
  background-color: #58b62c;
  font-weight: 700;

}

.top-idea__list > li:nth-child(2) .top-idea__item span {
  background-color: #ef6da8;
}

.top-idea__list > li:nth-child(3) .top-idea__item span {
  background-color: #22b8ca;
}

.top-idea .c-button-A__small {
  margin-block-start: max(24px, var(--u-gap__ub7));
}

@media screen and (max-width:599.98px) {
  .top-guide {
    margin-block-start: 28px;
  }

  .top-guide__list {
    max-inline-size: none;
    gap: 12px;
  }

  .top-guide__item {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    min-block-size: 78px;
    padding-block: 11px;
    padding-inline: 10%;
  }

  .top-guide__item img {
    inline-size: 45%;
    block-size: 70%;
  }

  .top-guide__item span {
    font-size: 18px;
  }

  .top-guide__item small {
    font-size: 11px;
  }

  .top-guide__item i {
    inline-size: 20px;
    block-size: 20px;
  }

  .top-idea {
    padding-block: 34px 0;
  }

  .top-idea__inner {
    padding-inline: 0;
    padding-bottom: 10%;
  }

  .top-idea__list {
    gap: 0;
  }

  .top-idea__list > li {
    border-block-start: 1px solid #fff;
  }

  .top-idea__item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 12px var(--u-gap__ub10);
  }

  .top-idea__item figure {
    align-self: center;
  }

  .top-idea__item p {
    font-size: 14px;
    line-height: 1.55;
    margin-block-start: 0;
  }
}

/************************************************************

      Header

************************************************************/
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: .3s;
  background-color: white;
  height: 100px; }
  .c-header__links {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0, -50%); }
    .c-header__links ul {
      display: flex;
      flex-wrap: wrap; }
      .c-header__links ul li {
        width: 56%;
      }



.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  -webkit-transition: all .4s ease 0s,background .4s ease .2s;
  transition: all .4s ease 0s,background .4s ease .2s;
  -webkit-overflow-scrolling: touch;
  height: 64px; }
  .is-fixed .o-nav__btn {
    transition: all .4s ease 0s, background .4s ease .2s;
    height: 64px;
    padding: 24px 28px; }

.c-header .c-logo {
  position: absolute;
  display: inline-block;
  top: 50%;
  margin-top: -20px;
  left: 30px; }

.c-header .c-logo a {
  display: block;
  position: relative;
  width: 200px;
  height: 40px;
  text-indent: -9999px;
  background-image: url(../images/asset/header_logo.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 100; }

/*
    header -> Overlay Navigation
******************************/
.o-nav {
  position: relative;
  top: 0;
  left: 0;
  z-index: 10000; }

.o-nav__btn {
  position: absolute;
  width: 128px;
  height: 100px;
  padding: 42px 28px;
  cursor: pointer;
  z-index: 10001;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: rgba(0, 0, 0, 0.9); }

.o-nav__btn::before {
  content: attr(data-item);
  display: block;
  position: absolute;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: 0;
  left: 60px;
  top: 50%;
  margin-top: -0.4em;
  font-weight: 700;
  color: #fff; }

.o-nav__btn span {
  position: relative;
  display: block;
  width: 18px;
  height: 3px;
  transition: .3s;
  background: #fff; }

.o-nav__btn span:nth-child(1) {
  top: 0; }

.o-nav__btn span:nth-child(2) {
  top: 3px; }

.o-nav__btn span:nth-child(3) {
  top: 6px; }

.o-nav__menu {
  display: none;
  position: fixed;
  width: 0;
  height: 100%;
  min-height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  animation: overlayBg 0.5s forwards cubic-bezier(0.8, 0.01, 0.37, 1); }

@keyframes overlayBg {
  0% {
    width: 0; }
  100% {
    width: 100vw; } }
.o-nav__inner {
  position: relative;
  padding: 6.4vh 3vw;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }

.o-nav__head {
  position: relative;
  width: 100%;
  z-index: 100002;
  margin-bottom: 2vw;
  padding-bottom: .75em;
  border-bottom: 1px solid #555;
  animation: FadeInHead .4s forwards;
  animation-delay: 0.4s;
  opacity: 0; }
  .o-nav__head .__left p {
    border-left: 3px solid #fff;
    padding-left: 1.0em;
    font-size: 0.8em;
    font-weight: 700;
    color: #fff;
    line-height: 40px; }
  .o-nav__head .__right {
    position: absolute;
    top: 0;
    right: 0; }
    .o-nav__head .__right .__links ul li {
      margin: 0 .1em;
      display: inline-block; }
      .o-nav__head .__right .__links ul li a {
        padding: 0 1.25em;
        font-size: 0.75em;
        font-weight: 700;
        color: #222;
        background: #fff;
        display: inline-block;
        height: 40px;
        line-height: 40px;
        border-radius: 4em; }
        .o-nav__head .__right .__links ul li a:hover {
          color: #222;
          background: #f8B500; }

@keyframes FadeInHead {
  0% {
    opacity: 0;
    margin-left: 20px; }
  100% {
    opacity: 1;
    margin-left: 0px; } }
.o-nav__body {
  width: 100%;
  animation: FadeInBody .4s forwards;
  animation-delay: 0.4s;
  opacity: 0; }

@keyframes FadeInBody {
  0% {
    opacity: 0;
    margin-left: 30px; }
  100% {
    opacity: 1;
    margin-left: 0px; } }
/* Internal / In page links */
.o-nav__item.__internal {
  position: relative;
  margin: 2vw 0; }
  .o-nav__item.__internal .__head h2 {
    position: absolute;
    font-size: 0.7em;
    color: #fff;
    top: 1.8vw;
    left: 0; }
  .o-nav__item.__internal ul {
    position: relative;
    padding-left: calc( 80px + 2.4vw );
    padding-right: 6.4vw;
    padding-top: 0;
    padding-bottom: 0; }
    .o-nav__item.__internal ul li {
      padding: 1vw 0; }
      .o-nav__item.__internal ul li a {
        color: #fff;
        font-size: 1.2em;
        font-weight: 700;
        line-height: 1.8;
        letter-spacing: 0; }
        .o-nav__item.__internal ul li a:hover {
          color: #f8B500; }
      .o-nav__item.__internal ul li.__child {
        padding: .5vw 0; }
        .o-nav__item.__internal ul li.__child a {
          margin: 0 0 0 1.5em;
          font-size: .9em; }
      .o-nav__item.__internal ul li.small {
        padding: 0.5vw 0; }
        .o-nav__item.__internal ul li.small a {
          margin: 0 0 0 1.5em;
          font-size: 0.9em; }

/* Links */
.o-nav__item.__links {
  display: none; }

/* Content */
.o-nav__item.__content {
  margin: 2vw 0 0;
  padding: 2.1vw 0;
  text-align: center; }

.o-nav__item.__content ul li {
  display: inline-block;
  margin: 0 1vw; }

.o-nav__item.__content ul li a {
  display: inline-block;
  font-size: 0.8em;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0; }

.o-nav__item.__content ul li a:hover {
  color: #f8B500; }

/* SNS */
.o-nav__item.__sns {
  text-align: center; }

.o-nav__item.__sns ul li {
  display: inline-block;
  width: 50px;
  height: 50px; }

.o-nav__item.__sns ul li a {
  display: block;
  width: 50px;
  height: 50px; }

.o-nav__item.__sns li a:hover {
  background-color: #444; }

.o-nav__item.__sns ul li.__fb a,
.o-nav__item.__sns li.__tw a,
.o-nav__item.__sns li.__ig a,
.o-nav__item.__sns li.__yt a {
  background-image: url("../images/asset/footer_ico.png");
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: -9999px;
  border-radius: 100%; }

.o-nav__item.__sns ul li.__fb a {
  background-position: 0px 0px; }

.o-nav__item.__sns ul li.__tw a {
  background-position: -50px 0px; }

.o-nav__item.__sns ul li.__ig a {
  background-position: -100px 0px; }

.o-nav__item.__sns ul li.__yt a {
  background-position: -150px 0px; }

/************************************************************

     Breadcrumb

************************************************************/
.breadcrumbs {
  position: relative;
  padding: 3.2vw 6.4vw;
  z-index: 50; }

.breadcrumbs ul li {
  display: inline-block; }

.breadcrumbs ul li span {
  font-size: 0.85em;
  letter-spacing: 0.05em; }

.breadcrumbs ul li a {
  position: relative;
  margin: 0 1.5em 0 0;
  color: #222; }

.breadcrumbs ul li a:hover {
  color: #f8B500; }

.breadcrumbs ul li a::after {
  content: ">";
  position: absolute;
  top: 50%;
  margin-top: -0.4em;
  right: -1.25em;
  color: #222; }

  /* ---------------------------------------
	max-width: 800px
--------------------------------------- */
@media screen and (max-width: 640px) {
  html {
    font-size: 14px; }

    /************************************************************

          Header

    ************************************************************/
  .c-header .c-logo {
    margin-top: -18px;
    left: 30px; }

  .c-header .c-logo a {
    width: 180px;
    height: 36px; }

  .c-header__links {
    left: 200px;
   }
    .c-header__links ul li {
      width: 50%;}

  .o-nav__btn {
    width: 100px;
    height: 100px;
    padding: 42px 40px; }

  .o-nav__btn::before {
    display: none; }

  .o-nav__inner {
    padding: 5vh 9.6vw; }

  .o-nav__head {
    font-size: 0.8em;
    padding-top: 60px; }
    .o-nav__head .__left p {
      border-left: 3px solid #fff;
      padding-left: 1.0em;
      font-size: 0.9em;
      font-weight: 700;
      color: #fff;
      line-height: 40px; }
    .o-nav__head .__right {
      position: absolute;
      top: 0;
      right: 0; }
      .o-nav__head .__right .__links {
        display: none; }

  /* Internal / In page links */
  .o-nav__item.__internal {
    position: relative;
    margin: 4.8vw 0; }

  .o-nav__item.__internal .__head h2 {
    position: relative;
    font-size: 0.8em;
    margin-bottom: 1em;
    top: auto;
    left: auto; }

  .o-nav__item.__internal ul {
    position: relative;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
    padding-top: 0;
    padding-bottom: 0; }

  .o-nav__item.__internal ul li {
    border-bottom: 1px solid #333; }

  .o-nav__item.__internal ul li a {
    display: block;
    font-size: 1.1em;
    padding: 2.4vw 0; }

  /* Content */
  .o-nav__item.__content {
    margin: 4.8vw 0 0;
    padding: 4.8vw 0; }

  .o-nav__item.__content ul li {
    display: inline-block;
    margin: 0 1.2vw; }

  .o-nav__item.__content ul li a {
    font-size: .8em;
    line-height: 2.4; }

  /* Links */
  .o-nav__item.__links {
    display: block;
    margin-top: 14%; }
    .o-nav__item.__links ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
      .o-nav__item.__links ul li {
        margin: 0 0.2em;
		  width: 45%;
	}
        .o-nav__item.__links ul li a {
          display: block;
          background: #ffffff;
          padding: 1.2em;
          font-weight: 600;
          font-size: 0.8em;
          border-radius: 3px; 
		  text-align: center;
	}

  /* SNS */
  .o-nav__item.__sns {
    padding-bottom: 64px; }

  .is-fixed .o-nav__btn {
    transition: all .4s ease 0s, background .4s ease .2s;
    height: 64px;
    padding: 24px 40px; }

    /************************************************************

         Breadcrumb

    ************************************************************/
  .breadcrumbs ul li {
    display: inline-block; }

  .breadcrumbs ul li span {
    font-size: 0.8em; }
  }
  @media screen and (max-width: 600px) {

    /************************************************************

          Header

    ************************************************************/
  .c-header {
    height: 80px; }

  .c-header .c-logo {
    margin-top: -14px;
    left: 20px; }

  .c-header .c-logo a {
    width: 144px;
    height: 28px; }


    .c-header__links ul li a {
      font-size: .8em;
      padding: 0 1.5em; }

  .o-nav__btn {
    width: 80px;
    height: 80px;
    padding: 32px 30px; }

  .is-fixed .o-nav__btn {
    width: 80px;
    height: 80px;
    padding: 32px 30px; }
  }
  @media screen and (max-width: 320px) {
  html {
    font-size: 13px; }

    /************************************************************

          Header

    ************************************************************/
  .o-nav__btn {
    position: absolute;
    right: 0px; }

  .o-nav__inner {
    padding: 4vh 9.6vw; }

  .o-nav__head {
    position: relative;
    width: 100%;
    font-size: 0.8em;
    color: #fff;
    z-index: 100002;
    margin-bottom: 4.8vw;
    padding-bottom: 4.8vw;
    border-bottom: 1px solid #555; }

  /* Internal / In page links */
  .o-nav__item.__internal {
    position: relative;
    margin: 3.6vw 0; }

  .o-nav__item.__internal .__head h2 {
    font-size: 0.65em;
    margin-bottom: 0.5em; }

  .o-nav__item.__internal ul li {
    border-bottom: 1px solid #333; }

  .o-nav__item.__internal ul li:last-child {
    border-bottom: none; }

  .o-nav__item.__internal ul li a {
    display: block;
    font-size: 1.0em;
    padding: 2.0vw 0; }

  /* Content */
  .o-nav__item.__content {
    margin: 3.6vw 0 0;
    padding: 3.6vw 0; }

  .o-nav__item.__content ul li {
    display: inline-block;
    margin: 0 1.2vw; }

  .o-nav__item.__content ul li a {
    font-size: 0.9em;
    line-height: 2.0; } }
/* max-width: 320px */
