@charset "utf-8";
/*======================================================================
  variable
======================================================================*/
:root {
  --color-white: #FFF;
  --color-primary: #22AD73;
  --color-secondary: #ED6C1F;
  --color-text: #333;
  --color-gray: #F5F5F5;
  --color-border: #E3E3E3;
  --color-text-sub: #868686;

  --gradient_primary: linear-gradient(90deg, #E4F8F0 0%, #FFF2EA 100%);
  --gradient_secondary: linear-gradient(232deg, #FF6E0B 14.89%, #FF9B57 85.64%);
}

/*======================================================================
  Reset CSS for HTML5
======================================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
ul {
    list-style: none;
}
a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
}
img {
    line-height: 1;
    vertical-align: bottom;
}

/*======================================================================
  FORMAT
======================================================================*/
.inner {
    max-width: 76.8rem;
    margin: 0 auto;
    padding: 0 2.4rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-block: 4rem;
}

.title {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.title_en {
  color: var(--color-secondary);
}
.title_jp {
  font-size: 2rem;
  font-weight: bold;
}

.cat-link {
  display: inline-block;
  color: var(--color-secondary);
}
a.cat-link:hover {
  opacity: .5;
}

.more {
  position: relative;
  display: inline-block;
  justify-content: flex-end;
  margin-left: auto;
  padding: .3rem 6.2rem .3rem 0;
  font-weight: bold;
}
.more::before,
.more::after {
  content: "";
  position: absolute;
  top: 50%;
}
.more::before {
  transform: translateY(-50%);
  right: 0;
  width: 5rem;
  height: 3rem;
  border-radius: 99rem;
  border: 1px solid var(--color-secondary);
  background: var(--color-white);
}
.more:hover::before {
  background: var(--gradient_secondary);
}
.more::after {
  right: 1.7rem;
  transform: translateY(-50%) rotate(90deg);
  width: 1.8rem;
  height: 1.8rem;
  mask-image: url("images/icon_arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("images/icon_arrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background: var(--color-secondary);
}
.more:hover::after {
  background: var(--color-white);
}

/*======================================================================
  BASIC
======================================================================*/
html {
	font-size: 10px;
  scroll-behavior: smooth;
}
html,body {
    height: 100%;
}
body {
    line-height: 1.5;
    font-family: "Yu Gothic" , "Yu Gothic UI" , "Segoe UI" , "游ゴシック" , "Meiryo" , "Meiryo UI" , "メイリオ" , "Hiragino Sans" , "Sanfrancisco" , "Hiragino Kaku" , "Gothic ProN" , "Helvetica Neue" , "Noto Sans CJK JP" , "Roboto" , sans-serif;
    font-size: 1.6rem;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    background: var(--color-white);
}

p { line-height: 1.5; }

a { color: var(--color-text); cursor: pointer; text-decoration: none;}

a:hover {text-decoration: none;}

* {box-sizing: border-box;}

.img {
    display: block;
    width: 100%;
    height: auto;
}

a img:hover {
	opacity: .5;
}

.fit {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*======================================================================
  header
======================================================================*/
.header_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  padding: 1.2rem;
}

/*ハンバーガーボタン*/
.el_hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .7rem;
  min-width: 5.5rem;
  height: 5.5rem;
  z-index: 10000;
  cursor: pointer;
  border-radius: var(--border-radius-max, 999px);
  background: var(--gradient_secondary);
}
.el_hamburger:hover {
  opacity: .5;
}
.el_hamburger > span {
  display: block;
  width: 3.2rem;
  height: 1px;
  font-size: 0;
  background: var(--color-white);
  transition: all .2s ease-in-out;
}
.js_hamburgerOpen .el_hamburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}
.js_hamburgerOpen .el_hamburger > span.middle {
  opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
  transform: translateY(-8px) rotate(45deg);
}
.el_hamburgerButton__close > span.el_hamburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}
.el_hamburgerButton__close > span.el_hamburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}

/*ナビゲーション*/
.uq_spNavi {
  display: none;
}
.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}
.uq_spNavi_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: auto;
}
.gnav {
  max-width: 76.8rem;
  margin-inline: auto;
  padding: 80px 0 0 0;
  text-align: center;
}
.gnav li > a {
  display: block;
  text-decoration: none;
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: bold;
  font-size: 1.8rem;
}
.gnav li > a:hover {
  text-decoration: underline;
}
.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header_mv {
  height: 35.2rem;
  padding-block: 1.6rem;
  background: url(images/mv.jpg) no-repeat center;
}

.header_mv h1 {
  font-size: 2.4rem;
  color: var(--color-white);
}

.breadcrumb {
  padding-block: 2.4rem;
}

.breadcrumb ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumb ul li {
  padding-right: 5px;
  display: inline-block;
}

.breadcrumb ul li a span {
  font-weight: bold;
}

.breadcrumb ul li span {
	display: flex;
	align-items: center;
}

.breadcrumb ul li a:hover {
  text-decoration: underline;
}
.breadcrumb a img:hover {
	opacity: 0;
}
.breadcrumb a:hover img {
	opacity: .5;
}

/*======================================================================
  footer
======================================================================*/
.footer {
  padding-block: 4rem;
  background: var(--gradient_primary);
}

.fnav ul {
  display: flex;
  gap: 4rem;
}

.fnav li {
  flex: 1;
}

.fnav li a {
  display: inline-block;
}
.fnav li a:hover {
  text-decoration: underline;
}

.footer_totop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 2rem;
  color: var(--color-secondary);
}
.footer_totop:hover {
  opacity: .5;
}
.footer_totop::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(images/icon_arrow.svg) no-repeat center;
}

.footer_copy {
  margin-top: 5.6rem;
  color: var(--color-text-sub);
}

/*======================================================================
  recommend
======================================================================*/
.recommend {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-bottom: 4rem;
}

.recommend_title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
  font-size: 2rem;
}
.recommend_title::before {
  content: "";
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid var(--color-border);
  border-radius: 99rem;
  background: url(images/icon_recommend.svg) no-repeat center;
}

.recommend_list_item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.recommend_list_item_cat {
  position: relative;
  width: 100%;
  height: 24rem;
  border-radius: 1.6rem;
}

.recommend_list_item_cat span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.4rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-white);
}

.recommend_list_item_cat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
}

.recommend_list_item_cat:hover {
  opacity: .5;
}

.recommend_list_item_title a {
  display: inline-block;
  font-size: 2rem;
  font-weight: normal;
}
.recommend_list_item_title a:hover {
  text-decoration: underline;
}

/*======================================================================
  index
======================================================================*/
.index_head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 4rem;
  padding: 2.4rem;
  border-radius: 2rem;
  background: var(--gradient_primary);
}
.index_head::after {
  content: "";
  width: 25.5rem;
  height: 18rem;
  background: url(images/img_top.webp) no-repeat center;
}

.index_head h2 {
  font-size: 2rem;
  max-width: 38rem;
}

.index_post {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.index_post_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.index_post_item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.index_post_item_image {
  width: 100%;
  height: 23.2rem;
  border-radius: 1.6rem;
}

.index_post_item time {
  color: var(--color-text-sub);
}

.index_post_item h3 {
  font-weight: normal;
  font-size: 2rem;
}
.index_post_item h3 a {
  display: inline-block;
}
.index_post_item h3 a:hover {
  text-decoration: underline;
}

.link {
  padding-top: 0;
}

.link .title {
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.link_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.4rem;
  border-radius: 2rem;
  background: var(--color-gray);
}

/*======================================================================
  category
======================================================================*/
.category {
  padding-bottom: 0;
}

.category_head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}

.category_head_image {
  width: 100%;
  height: 24rem;
  border-radius: 2rem;
}

.category_post {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.category_post_item {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}
.category_post_item:last-child {
  border-bottom: none;
}

.category_post_item_column {
  display: flex;
  gap: 1.6rem;
}

.category_post_item_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.category_post_item_info h3 a {
  display: inline-block;
  font-weight: normal;
  font-size: 2rem;
}
.category_post_item_info h3 a:hover {
  text-decoration: underline;
}

.category_post_item_image {
  width: 24rem;
  height: 17.1rem;
  border-radius: 1.6rem;
}

/*======================================================================
  detail
======================================================================*/
.detail_head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.detail_head time {
  color: var(--color-text-sub);
}

.detail_head h2 {
  font-size: 2rem;
  color: var(--color-primary);
}

.detail_head_image {
  width: 100%;
  height: 24rem;
  border-radius: 2rem;
}

.detail_post h3 {
  display: flex;
  gap: .8rem;
  margin-bottom: 1.6rem;
  padding: .8rem;
  font-size: 2rem;
  background: var(--color-gray);
}
.detail_post h3:not(:first-child) {
  margin-top: 3.2rem;
}

.detail_post h3::before {
  content: "";
  min-width: 1rem;
  height: 1rem;
  margin-top: .8rem;
  background: var(--color-secondary);
  border-radius: 99rem;
}

.detail_post a {
  font-weight: bold;
  color: #0f27e0;
}
.detail_post a:hover {
  opacity: .5;
}

.detail_post .link-item {
  margin-block: 1em
}

.detail_post .link-item img {
  max-width: 100%;
  height: auto;
}

/*======================================================================
  sp
======================================================================*/
@media screen and (max-width: 690px) {
  .index_head {
    flex-direction: column;
  }
  .index_head::after {
    margin-inline: auto;
    max-width: 100%;
  }
  .index_head::after img {
    width: 100%;
    height: auto;
  }

  .index_post_list {
    grid-template-columns: 1fr;
  }

  .fnav ul {
    flex-direction: column;
  }

  .category_post_item_column {
    flex-direction: column;
  }
  .category_post_item_image {
    width: 100%;
  }
}