@charset "UTF-8";


/* */


/* ========================================
   Variables
======================================== */
:root {
  --color-base-text: #36363e;
  --color-orange-800: #b55745;
  --color-orange-600: #ff7f41;
  --color-orange-200: #ffcca8;
  --color-gray-900: #333333;
  --color-gray-850: #36363e;
  --color-gray-800: #707070;
  --color-gray-700: #7a7b8d;
  --color-gray-650: #9091a0;
  --color-gray-600: #999999;
  --color-gray-550: #adadad;
  --color-gray-500: #b7b7c2;
  --color-gray-200: #eeeef0;
  --color-gray-120: #f4f4f4;
  --color-gray-80: #f8f8f8;
  --color-white: #ffffff;
  --color-black: #000000;
}


/* ========================================
   base settings
======================================== */
html { 
	font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,*::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
  padding: 0;
  background-color: var(--color-gray-200);
  color: var(--color-base-text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: normal;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; text-wrap: initial; }
p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { list-style: none; padding-left: 0; margin: 0; }
li { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }

img, picture { max-width: 100%; height: auto; display: block; }

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.2s;
}
a:hover { opacity: .5; }
a:focus-visible { outline: auto; }

summary { list-style: none; cursor: pointer; }
summary::marker { content: ""; }
summary::-webkit-details-marker { display: none; }

/* 画面外テキスト（アクセシブル・ラベル等） */
.visually-hidden {
  position: absolute!important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* SP/PC 表示制御 */
@media screen and (max-width: 767px) { .hide-sp { display: none !important;} }
@media screen and (min-width: 768px) { .hide-pc { display: none !important;} }


/* ========================================
   header
======================================== */
html, body { min-width: 1200px; margin-top: 0 !important; }
.header, .main, .footer, .sticky-bar { min-width: 1200px; }
.inner { width: 1100px; margin: auto; }
@media screen and (max-width: 767px) {
  html, body,
  .header, .main, .footer, .sticky-bar { min-width: 0; }
  .inner { width: 100%; padding: 0 15px; }
}


/* ========================================
   header
======================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: var(--color-white);
  z-index: 1000;
}
.header__wrap { position: relative; }
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}
.header__logo { 
  width: 147px;
  margin-left: 55px;
}
.header__title {
  position: absolute;
  left: 50%;
  font-weight: bold;
  font-size: 3.4rem;
  transform: translateX(-50%);
}
.header__toggle { display: none; }

@media screen and (max-width: 767px) {
  .header { position: fixed; overflow: hidden; }
  .header__wrap { 
    position: relative;
    background-color: var(--color-white);
    z-index: 901;
  }
  .header__inner { min-height: 70px; }
  .header__logo { width: 19.2%; margin-left: 8px; }
  .header__title { font-size: 2.8rem; line-height: 1.4; }
  .header__toggle { display: block; }
}

/* header menu */
.gnav { border-top: 1px dashed var(--color-gray-500); }
.gnav__menu { display: flex; justify-content: center; }
.gnav__menu-item { margin-left: 50px; position: relative; }
.gnav__menu-item:first-child { margin-left: 0; }
.gnav__menu-link {
  display: block;
  padding: 12px 0;
  font-size: 1.5rem;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-base-text);
  position: relative;
}
.gnav__menu-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-orange-600);
  transform: translateX(-50%) scale(0, 1);
  transition: ease 0.2s;
}
.gnav__menu-link:hover::before { 
  transform: translateX(-50%) scale(1, 1);
}
.gnav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  border: 4px solid var(--color-orange-600);
  border-radius: 10px;
  background: var(--color-white);
  transform: translateX(-50%);
  min-width: 200px;
}
.gnav__submenu-item {
  padding: 10px;
  border-top: 1px dashed var(--color-orange-600);
  text-align: center;
}
.gnav__submenu-item:first-child { border-top: 0; }
.gnav__submenu-link { font-size: 1.4rem; color: var(--color-orange-600); }
.gnav__menu-item.is-open .gnav__submenu { display: block; }

@media screen and (max-width: 767px) {
 .gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    overflow-y: auto;
    z-index: 900;
  }
  .gnav.is-open { display: block; }
  .gnav__menu {
    display: block;
    margin-top: 70px;
    border-top: 1px dashed var(--color-gray-200);
  }
  .gnav__menu-item { margin-left: 0; border-bottom: 1px dashed var(--color-gray-200); }
  .gnav__menu-item:first-child { margin-left: 0; }
  .gnav__menu-label { display: block; position: relative; }
  .gnav__menu-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 12px;
    background: url(../img/icon/icon-arrow-right-gray.svg) no-repeat center center;
    background-size: auto;
    transform: translateY(-50%);
    transition: ease 0.2s;
  }
  .gnav__menu-label:hover::after { right: 20px; }
  .gnav__menu-link {
    min-height: 75px;
    padding: 10px 40px 10px 30px;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--color-gray-650);
    display: flex;
    align-items: center;
    position: relative;
  }
  .gnav__menu-link::before { display: none; }
  .gnav__submenu {
    display: none;
    position: static;
    border: 0;
    background: var(--color-gray-200);
    transform: translateX(0);
    min-width: none;
    margin: 0 30px 15px;
    padding: 10px 30px;
  }
  .gnav__submenu-item {
    padding: 10px 0 10px 30px;
    border-top: 0;
    text-align: left;
    position: relative;
  }
  .gnav__submenu-item:first-child { border-top: 0; }
  .gnav__submenu-item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 3px;
    background: var(--color-gray-650);
    transform: translateY(-50%);
  }
  .gnav__submenu-link { font-size: 1.4rem; color: var(--color-gray-650); }
  .gnav__menu-item--has-submenu .gnav__menu-label::after {
    right: 22px;
    width: 15px;
    height: 15px;
    background: url(../img/icon/icon-plus-gray.svg) no-repeat center center;
    background-size: auto;
  }
  .gnav__menu-item--has-submenu.is-open .gnav__menu-label::after {
    background: url(../img/icon/icon-minus-gray.svg) no-repeat center center;
    background-size: auto;
  }
}

/* sp menu button */
.hamburger {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hamburger__inner {
  position: relative;
  display: block;
  width: 30px;
  height: 26px;
}
.hamburger__border {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-base-text);
  border-radius: 4px;
}
.hamburger__border { transition: all .5s; }
.hamburger__border:nth-of-type(1) { top: 0; }
.hamburger__border:nth-of-type(2) { top: 11px; }
.hamburger__border:nth-of-type(3) { bottom: 0; }
.hamburger.active .hamburger__border:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active .hamburger__border:nth-of-type(2) { opacity: 0; }
.hamburger.active .hamburger__border:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}


/* ========================================
   footer
======================================== */
.footer {
  padding: 65px 0;
  background-color: var(--color-gray-900);
  color: var(--color-gray-550);
}
.footer__inner { 
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__wrap + .footer__wrap { margin-top: 30px; }
.footer__banner-item { margin-top: 30px; }
.footer__banner-item:first-child { margin-top: 0; }
.footer__banner-link { display: block; }
.footer__sitemap { display: flex; justify-content: space-between; }
.footer__utility { width: 25%; text-align: right; }
.footer__social {
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
.footer__social-link { display: block; }
.footer__apps {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer__apps-item { width: calc((100% - 10px * 1) / 2); }
.footer__apps-link { display: block; }
.footer__apps-link img { width: 100%; }
.footer__copyright {
  display: flex;
  align-items: center;
  margin-top: 65px;
}
.footer__copyright small { font-size: 1.2rem; }
.footer__copyright-logo {
  width: 28px;
  margin-right: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .footer { padding: 15px 0; }
  .footer__inner { width: 100%; padding: 0 15px; }
  .footer__wrap + .footer__wrap { margin-top: 15px; }
  .footer__banner-item { margin-top: 15px; }
  .footer__sitemap { display: block; }
  .footer__utility { width: 100%; }
  .footer__social { margin-bottom: 30px; justify-content: center; }
  .footer__apps { margin-bottom: 30px; gap: 16px; }
  .footer__copyright { margin-top: 0; }
  .footer__copyright small { font-size: 1rem; }
  .footer__copyright-logo { width: 20px; margin-right: 10px; }
}

/* footer menu */
.fnav { width: 75%; }
.fnav a { color: var(--color-gray-550); text-decoration: none; }
.fnav a:hover { color: var(--color-white); }
.fnav__menu {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.fnav__menu-item {
  margin: 0 3% 5% 0;
}
.fnav__menu-link { font-size: 1.4rem; }
.fnav__submenu {
  display: block;
  margin-top: 15px;
}
.fnav__submenu-item { margin-top: 8px; }
.fnav__submenu-item:first-child { margin-top: 0; }
.fnav__submenu-link { font-size: 1.3rem; }

@media screen and (max-width: 767px) {
  .fnav { width: 100%; margin-bottom: 30px; }
  .fnav__menu { display: block; }
  .fnav__menu-item { margin: 0; margin-top: 16px; border-bottom: 1px solid var(--color-gray-550); }
  .fnav__menu-item:first-child { margin-top: 0; }
  .fnav__menu-title { padding: 10px 0; position: relative; }
  .fnav__submenu { display: none; margin-top: 5px; margin-bottom: 20px; }
  .fnav__menu-item.is-open .fnav__submenu { display: block; }
  .fnav__menu-item--has-submenu .fnav__menu-title::after,
  .fnav__menu-item--has-submenu.is-open .fnav__menu-title::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
  }
  .fnav__menu-item--has-submenu .fnav__menu-title::after {
    background: url(../img/icon/icon-plus-gray.svg) no-repeat center center;
    background-size: auto;
  }
  .fnav__menu-item--has-submenu.is-open .fnav__menu-title::after {
    background: url(../img/icon/icon-minus-gray.svg) no-repeat center center;
    background-size: auto;
  }
}


/* ========================================
   sticky area
======================================== */
.sticky-bar {
  position: sticky;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100;
}
.sticky-bar__inner { position: relative; pointer-events: auto; }

/* pagetop */
.page-top {
  position: absolute;
  bottom: 20px;
  right: max(20px, calc((100% - 1200px)/2));
  width: 90px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-top.is-active { opacity: 1; pointer-events: auto; }

@media screen and (max-width: 767px) {
  .sticky-bar__inner { width: 100%; }
  .page-top { bottom: 10px; right: 15px; width: 70px; }
}

/* download banner */
.download-banner {
  display: none;
  position: absolute;
  bottom: 155px;
  right: 0;
  transition: opacity .3s ease;
}
.download-banner__wrap {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}
.download-banner__close {
  margin-bottom: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.download-banner__close::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  padding: 6px;
  background: url(../img/bnr-download-close.svg) no-repeat center center;
  background-size: 75%;
}
.download-banner__link img { width: 153px; }
.download-banner.is-hidden { display: none; }
@media screen and (max-width: 767px) {
  .download-banner {
    display: block;
  }
}
  

/* ========================================
   main
======================================== */
.main { margin-top: 145px; }
.main__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 940px;
  background-color: var(--color-gray-80);
  clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 100%);
  pointer-events: none;
  z-index: -1;
}
.main__wrap {
  position: relative;
  height: 100%;
  padding-top: 68px;
  padding-bottom: 128px;
}
.main__header .main__inner {
  display: flex;
  align-items: center;
}
.main__inner { width: 1100px; margin: auto; }
.main--2col .main__wrap {
  position: relative;
  padding-top: 88px;
  padding-bottom: 0;
}
.main--2col .main__content { position: relative; }
.main--2col .main__content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 1100px) / 2 + 768px);
  height: 100%;
  border-radius: 0 30px 0 0;
  background-color: var(--color-white);
  z-index: -1;
}
.main--2col .main__content .main__inner { display: flex; justify-content: space-between; }
.main--2col .main__content .content { width: 69.8182%; }
.main--2col .main__content .sidebar { width: 27.6364%; margin-bottom: 160px; }
.main--2col .content__inner { padding: 55px 58px 238px 0; }

@media screen and (max-width: 767px) {
  .main { margin-top: 70px; }
  .main__wrap { padding-bottom: 260px; }
  .main__wrap::before { clip-path: polygon(0% 0%, 100% 0%, 100% 2.5%, 0% 30%); }
  .main__header .main__inner { width: 100%; }
  .main--2col .main__wrap { padding-top: 66px; padding-bottom: 267px; }
  .main--2col .main__content .main__inner { display: block; }
  .main--2col .main__content .main__inner { width: 100%; }
  .main--2col .main__content .content,
  .main--2col .main__content .sidebar { width: auto; margin-bottom: 0; }
  .main--2col .main__content::before { display: none; }
  .main--2col .content__inner { padding: 28px 10px 94px; }
  .main--2col .main__content .content { position: relative; }
  .main--2col .main__content .content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: 100%;
    border-radius: 0 40px 40px 0;
    background-color: var(--color-white);
    z-index: -1;
  }
  .main--2col .main__content .sidebar { margin: 30px 20px 0; }
}

/* content */
.content {}
.content__inner {}

/* sidebar */
.sidebar__item {
  border-radius: 30px;
  background-color: var(--color-white);
}
.sidebar__item + .sidebar__item { margin-top: 30px; }
.sidebar__title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  font-weight: bold;
  font-size: 2rem;
}
.sidebar__content { padding: 0 20px 20px; }
.sidebar__content-item { margin-top: 40px; }
.sidebar__content-item:first-child { margin-top: 0; }
.sidebar__more {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px dashed var(--color-gray-500);
}
.sidebar__more--last { padding-bottom: 20px; }
.sidebar__post-item { padding: 20px 0; border-top: 1px dashed var(--color-gray-500); }
.sidebar__post-item:last-child { padding-bottom: 0; }
.sidebar__post-link {
  display: block;
  text-decoration: none;
  color: var(--color-base-text);
}
.sidebar__post-link:hover { text-decoration: underline; }
.sidebar__post-link::after { content: ""; display: table; clear: both; }
.sidebar__post-thumb {
  float: left;
  margin: 0 12px 4px 0;
  width: 105px;
  height: 105px;
  border-radius: 20px;
  background-color: var(--color-gray-500);
  overflow: hidden;
  position: relative;
}
.sidebar__post-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease;
  transform-origin: center center;
  z-index: 1;
}
.sidebar__post-link:hover .sidebar__post-thumb img { 
  transform: translate(-50%, -50%) scale(1.05);
}
.sidebar__post-title {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sidebar__item { border-radius: 40px; }
}


/* ========================================
   top
======================================== */
.top-post-latest {}


/* ========================================
   archive
======================================== */
.post-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.post-card-list__item {
  width: calc((100% - 30px * 1) / 2);
  transition: all 0.2s;
}
.post-card-list__link { display: block; }
.post-card-list__thumb {
  padding-top: calc(367 / 535 * 100%);
  border-radius: 20px;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}
.post-card-list__thumb::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 18px;
  width: 50px;
  height: 64px;
  background: url(../img/icon/pin-marker.svg) no-repeat center center;
  background-size: auto;
  z-index: 2;
}
.post-card-list__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease;
  transform-origin: center center;
  z-index: 1;
}
.post-card-list__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 10px 40px 10px 30px;
  background: linear-gradient(
    to bottom,
    rgba(13, 0, 0, 0) 0%,
    rgba(13, 0, 0, 0.4) 15%,
    rgba(13, 0, 0, 0.6) 30%,
    rgba(13, 0, 0, 0.7) 40%,
    rgba(13, 0, 0, 0.8) 50%,
    rgba(13, 0, 0, 0.9) 100%
  );
  color: var(--color-white);
  z-index: 2;
}
.post-card-list__date { font-size: 1.3rem; line-height: 1.4; }
.post-card-list__title {
  margin-top: 2px;
  font-size: 1.9rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.post-card-list__link:hover img { opacity: 1; }
.post-card-list__link:hover .post-card-list__title { text-decoration: underline; }
.post-card-list__link:hover .post-card-list__img {
  transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 767px) {
  .post-card-list { gap: 25px; }
  .post-card-list__item { width: 100%; }
  .post-card-list__thumb::before { 
    top: 5px;
    left: 8px;
    width: 33px;
    height: 42px;
  }
  .post-card-list__overlay { padding: 10px 20px; }
  .post-card-list__date { font-size: 1.2rem; }
  .post-card-list__title { font-size: 1.8rem; }
}

/* pagination */
.pagination { margin-top: 128px; }
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.pagination__link,
.pagination__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-base-text);
  font-size: 2.1rem;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.pagination__link:hover {
  opacity: 1;
  background-color: var(--color-orange-600);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  transition: all 0.2s;
}
.pagination__item--prev .pagination__link::before,
.pagination__item--next .pagination__link::before,
.pagination__item--first .pagination__link::before,
.pagination__item--last .pagination__link::before {
  content: "";
  display: block;
  transition: all 0.2s;
}
.pagination__item--prev .pagination__link::before,
.pagination__item--next .pagination__link::before  {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
}
.pagination__item--first .pagination__link::before,
.pagination__item--last .pagination__link::before { width: 13px; height: 12px; }
.pagination__item--prev .pagination__link::before {
  background: url(../img/icon/icon-arrow-left.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--next .pagination__link::before {
  background: url(../img/icon/icon-arrow-right.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--first .pagination__link::before {
  background: url(../img/icon/icon-double-arrow-left.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--last .pagination__link::before {
  background: url(../img/icon/icon-double-arrow-right.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--prev .pagination__link:hover::before {
  background: url(../img/icon/icon-arrow-left-white.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--next .pagination__link:hover::before {
  background: url(../img/icon/icon-arrow-right-white.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--first .pagination__link:hover::before {
  background: url(../img/icon/icon-double-arrow-left-white.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--last .pagination__link:hover::before {
  background: url(../img/icon/icon-double-arrow-right-white.svg) no-repeat center center;
  background-size: auto;
}
.pagination__item--current .pagination__text {
  background-color: var(--color-orange-600);
  color: var(--color-white);  
}
@media screen and (max-width: 767px) {
  .pagination { margin-top: 30px; }
  .pagination__list { gap: 6px; }
  .pagination__link,
  .pagination__text { width: 36px; height: 36px; font-size: 1.5rem; }
}

/* breadcrumb */
.breadcrumb {
  width: 100%;
  padding: 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
}
.breadcrumb__item { float: left; position: relative; }
.breadcrumb__item:not(:first-child) { padding-left: 24px; }
.breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/icon/icon-arrow-right-white.svg) no-repeat center center;
  background-size: auto;
}
.breadcrumb__link,
.breadcrumb__text {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-gray-650);
}
.breadcrumb__link:hover { text-decoration: underline; }
@media screen and (max-width: 767px) {
  .breadcrumb {  padding: 5px 10px; }
  .breadcrumb__item:not(:last-child) { gap: 5px 12px; }
  .breadcrumb__item:not(:first-child) { padding-left: 20px; }
}


/* ========================================
   entry
======================================== */
.entry-header__title {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.4;
  position: relative;
}
.entry-header__title--icon-pin { padding-top: 12px; }
.entry-header__title--icon-pin::before {
  content: "";
  display: block;
  width: 72px;
  height: 93px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon/pin-marker.svg) no-repeat center center;
  background-size: auto;
  transform: translateY(-100%);
}
.entry-header__date { margin-bottom: 25px; color: var(--color-gray-600); }
.entry-header__thumb { border-radius: 20px; overflow: hidden; }
.entry-content { margin-top: 40px; }
.entry-content p { margin-top: 20px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-nav, .entry-tags { display: none; }/**/
.entry-nav { margin-top: 30px; }
.entry-tags { margin-top: 40px; }
@media screen and (max-width: 767px) {
  .entry-header__title { font-size: 2.4rem; }
  .entry-header__title--icon-pin { padding-top: 8px; }
  .entry-header__title--icon-pin::before { width: 52px; height: 67px; }
  .entry-content { margin-top: 30px; }
}

/* ========================================
   component
======================================== */
/* box */
.box { margin-top: 45px; }

/* block */
.block { margin-top: 45px; }
@media screen and (max-width: 767px) {
  .block { margin-top: 35px; }
}

/* heading */
.heading__text {
  margin-bottom: 70px;
  font-size: 4.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .heading__text { margin-bottom: 40px; font-size: 3.5rem; }
}

/* title-large */
.title-large {
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 2.6rem;
}
.title-large--pin {
  position: relative;
  padding: 10px 0 25px 58px;
  border-bottom: 1px dashed var(--color-gray-500);
}
.title-large--pin::before {
  content: "";
  display: block;
  width: 45px;
  height: 58px;
  background: url(../img/icon/pin-marker.svg) no-repeat center center;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .title-large--pin { padding: 48px 0 8px; }
  .title-large--pin::before { width: 32px; height: 42px; }
}

/* title-medium */
.title-medium {
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.8rem;
}
.title-medium--rail-dotted {
  position: relative;
  padding: 10px 0 20px 24px;
  border-bottom: 1px dashed var(--color-gray-500);
}
.title-medium--rail-dotted::before {
  content: "";
  display: block;
  width: 9px;
  height: calc(100% - 10px);
  border-radius: 10px;
  background: var(--color-orange-600);
  position: absolute;
  top: 0;
  left: 0;
}

/* title-small */
.title-small {
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.5rem;
}
.title-small--rail {
  position: relative;
  padding: 0 0 0 25px;
}
.title-small--rail::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  border-radius: 10px;
  background: var(--color-orange-600);
  position: absolute;
  top: 0;
  left: 0;
}

/* button-area */
.button-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.button-area--mt-medium { margin-top: 35px; }

/* button01 */
.button01 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  min-height: 46px;
  border: 2px solid var(--color-gray-650);
  border-radius: 50px;
  background-color: var(--color-gray-650);
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.button01:hover { opacity: 0.8; }
.button01--inline { width: auto; }
.button01--max-204 { max-width: 204px; }
.button01--arrow-right { padding-right: 40px; padding-left: 40px; }
.button01--arrow-right:hover::before { transform: translateX(2px); }
.button01--arrow-right::before {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  width: 6px;
  height: 10px;
  background: url(../img/icon/icon-arrow-right-white.svg) no-repeat center center;
  background-size: auto;
  transition: all 0.2s;
}
.button01__label {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* button02 */
.button02 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  min-height: 49px;
  border: 2px solid var(--color-gray-500);
  border-radius: 50px;
  background-color: var(--color-gray-500);
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.button02:hover { opacity: 0.8; }
.button02--inline { width: auto; }
.button02--max-244 { max-width: 244px; }
.button02--arrow-right { padding-right: 40px; padding-left: 40px; }
.button02--arrow-right:hover::before { transform: translateX(2px); }
.button02--arrow-right::before {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  width: 6px;
  height: 10px;
  background: url(../img/icon/icon-arrow-right-white.svg) no-repeat center center;
  background-size: auto;
  transition: all 0.2s;
}
.button02--arrow-bottom { padding-right: 40px; padding-left: 40px; }
.button02--arrow-bottom::before,
.button02--arrow-top::before {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  width: 10px;
  height: 6px;
  transition: all 0.2s;
}
.button02--arrow-bottom::before {
  background: url(../img/icon/icon-arrow-bottom-white.svg) no-repeat center center;
  background-size: auto;
}
.button02--arrow-bottom.is-open::before { transform: rotate(-180deg); }
.button02--arrow-top { padding-right: 40px; padding-left: 40px; }
.button02--arrow-top::before {
  background: url(../img/icon/icon-arrow-top-white.svg) no-repeat center center;
  background-size: auto;
}
.button02__label {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* button03 */
.button03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  min-height: 63px;
  border: 2px solid var(--color-orange-600);
  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-orange-600);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.button03:hover { opacity: 0.8; }
.button03--inline { width: auto; }
.button03--large { max-width: 528px; }
.button03--large-sp-inline { max-width: 528px; }
.button03--arrow-right { padding-right: 40px; padding-left: 40px; }
.button03--arrow-right:hover::before { transform: translateX(2px); }
.button03--arrow-right::before {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  width: 7px;
  height: 12px;
  background: url(../img/icon/icon-arrow-right-orange.svg) no-repeat center center;
  background-size: auto;
  transition: all 0.2s;
}
.button03__label {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .button03--large-sp-inline { width: auto; }
}

/* button-link */
.button-link {
  margin-bottom: 5px;
  width: 100%;
  max-width: 100%;
  min-height: 55px;
  border-radius: 50px;
  background: var(--color-orange-600);
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  --press-depth: 5px;
  box-shadow: 0 var(--press-depth) 0 var(--color-orange-800);
  transform: translateY(0);
  transition: transform .06s ease, box-shadow .06s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.button-link:hover { opacity: 0.8; }
.button-link--inline { width: auto; min-height: 47px; }
.button-link--max-310 { max-width: 310px; }
.button-link--arrow-right { padding-right: 40px; padding-left: 40px; }
.button-link--arrow-right::before {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  width: 6px;
  height: 10px;
  background: url(../img/icon/icon-arrow-right-white.svg) no-repeat center center;
  background-size: auto;
  transition: all 0.2s;
}
.button-link__text {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.button-link:hover {
  opacity: 1;
  transform: translateY(calc(var(--press-depth) * 0.3));
  box-shadow: 0 calc(var(--press-depth) * 0.7) 0 var(--color-orange-800);
}
.button-link:active {
  transform: translateY(var(--press-depth));
  box-shadow: 0 0 0 var(--color-orange-800);
}
.button-link:focus,
.button-link:focus-visible {
  outline: revert;
  outline-offset: revert;
  box-shadow: 0 var(--press-depth) 0 var(--color-orange-800) !important;
}
@media screen and (max-width: 767px) {
  .button-link { min-height: 47px; }
}

/* disc-list */
.disc-list { margin-left: 15px; }
.disc-list li { list-style: disc; }

/* check-list */
.check-list__item {
  margin-top: 20px;
  padding-left: 30px;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}
.check-list__item:first-child { margin-top: 0; }
.check-list__item::before {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background: url(../img/icon/icon-check-orange.svg) no-repeat center center;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(4px);
}

/* table01 */
.table01 {
  width: 100%;
  border-left: 1px solid var(--color-gray-500);
}
.table01__head .table01__cell {
  padding: 8px 12px;
  border-right: 1px solid var(--color-gray-80);
  border-bottom: 1px solid var(--color-gray-800);
  background: var(--color-gray-850);
  color: var(--color-white);
  font-weight: bold;
  line-height: 1.4;
}
.table01__head .table01__cell:first-child {
  border-bottom: 1px solid var(--color-gray-80);
}
.table01__head .table01__cell:last-child {
  border-right: 1px solid var(--color-gray-850);
}
.table01__body .table01__cell {
  border-right: 1px solid var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-800);
}
.table01__body .table01__cell:first-child {
  border-bottom: 1px solid var(--color-gray-80);
  background: var(--color-gray-850);
  color: var(--color-white);
}
.table01__body .table01__row:last-child .table01__cell:first-child { 
  border-bottom: 1px solid var(--color-gray-800);
}
.table01__cell { padding: 18px 10px; text-align: center; }
.table01--type1 .table01__cell { width: calc((100% - 18.125%)/5); }
.table01--type1 .table01__cell:first-child { width: 18.125%; }
@media (max-width: 767px) {
  .table01--type1 .table01__cell { width: calc((100% - 20.43%)/5); }
  .table01--type1 .table01__cell:first-child { width: 20.43%;  }
}

/* card-table__scroller */
.card-table__scroller { width: 100%; overflow-x: auto; }
.card-table__scroller > .table01--type1 { width: 100%; min-width: 710px; }
@media screen and (max-width: 767px) {
  .card-table__scroller > .table01--type1 { min-width: 630px; }
}

/* card-headbar-table */
.card-headbar-table { border: 1px solid var(--color-gray-500); }
.card-headbar-table__label {
  padding: 8px 10px;
  background: var(--color-gray-850);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}
.card-headbar-table__row { display: flex; }
.card-headbar-table__cell { padding: 20px 30px; border-left: 1px solid var(--color-gray-500); }
.card-headbar-table__cell:first-child { border-left: 0; }
.card-headbar-table__button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.card-headbar-table__app { text-align: center; }
.card-headbar-table__app-link { 
  display: inline-flex;
  flex-flow: column;
  text-decoration: underline;
}
.card-headbar-table__app-link img { margin: 0 auto; }
.card-headbar-table__app-text {
  display: inline-block;
  margin-top: 10px;
  line-height: 1.4;
}
.card-headbar-table__row--app .card-headbar-table__cell:nth-of-type(1) { width: 33.8029%; align-items: center; }
.card-headbar-table__row--app .card-headbar-table__cell:nth-of-type(2) { width: calc(100% - 33.8029%); }
.card-headbar-table__row--app .card-headbar-table__app {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .card-headbar-table__row { flex-wrap: wrap; }
  .card-headbar-table__cell { padding: 30px 15px; }
}




















/* card-summary */
.card-summary {
  margin-top: 10px;
  padding: 50px 50px 40px;
  border: 6px solid var(--color-gray-650);
  border-radius: 20px;
  position: relative;
}
.card-summary__label {
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateY(-50%);
  text-align: center;
}
.card-summary__label-text {
  min-width: 285px;
  max-width: calc(100% - 32px);
  padding: 5px 15px;
  min-height: 34px;
  border-radius: 8px;
  background: var(--color-gray-850);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.card-summary__list-item {
  position: relative;
  margin-top: 20px;
  padding-left: 60px;
  font-weight: bold;
  line-height: 1.429;
}
.card-summary__list-item:first-child { margin-top: 0; }
.card-summary__list-item::before {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  position: absolute;
  left: 0;
  background: url(../img/learn-line.svg) no-repeat center center;
  background-size: auto;
}
.card-summary .check-list { margin-left: 40px; }
.card-summary--recommend { border: 6px solid var(--color-gray-500); }
.card-summary--recommend .card-summary__label-text { background: var(--color-orange-600); }
@media (max-width: 767px) {
  .card-summary { padding: 45px 25px 40px; border: 4px solid var(--color-gray-650); }
  .card-summary--recommend { border: 6px solid var(--color-gray-500); }
  .card-summary__list-item { padding-left: 40px; }
  .card-summary__list-item::before { width: 30px; }
  .card-summary .check-list { margin-left: 5px; }
}

/* card-toc */
.card-toc { border-radius: 20px; background: var(--color-gray-120, var(--color-gray-120)); }
.card-toc__inner { padding: 30px 40px 40px; }
.card-toc__label {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}
.card-toc__box {
  will-change: height;
}
.card-toc__list {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.5rem;
}
.card-toc__list-item {
  margin-top: 20px;
  padding-left: 15px;
  line-height: 1.4;
  position: relative;
}
.card-toc__list-item:first-child { margin-top: 0; }
.card-toc__list-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 10px; height: 12px;
  background: url(../img/icon/icon-triangle-right-orange.svg) no-repeat center center;
  background-size: auto;
  transform: translateY(40%);
}
.card-toc__button { margin-top: 20px; }

@media (max-width: 767px) {
  .card-toc__inner { padding: 25px 20px 30px; }
}









/* text-marker */
.text-marker {
  display: inline;
  background: linear-gradient(transparent 70%, var(--color-orange-200) 0);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.text-marker--bold { font-weight: 700; }

/* line-clamp */
.line-clamp {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden
  -webkit-line-clamp: 2; /* default */
}
.line-clamp.line-clamp--2 { -webkit-line-clamp: 2; }
.line-clamp.line-clamp--3 { -webkit-line-clamp: 3; }





/* .icon-item */
.icon-item {
  display: inline-flex;
  flex-flow: column;
  gap: 8px;
  text-align: center;
}
.icon-item__icon img {
  display: block;
  margin: 0 auto;
}
.icon-item__link {
  display: inline-flex;
  flex-flow: column;
  gap: 2px;
  text-align: center;
  text-decoration: underline;
}
.icon-item__link,
.icon-item__label { line-height: 1.4; } 

/* clearfix */
.clearfix::before,
.clearfix::after { content: ""; display: table; }
.clearfix::after { clear: both; }