@charset "utf-8";
/*======================================================================
  variable
======================================================================*/
:root {
  --color-white: #FFF;
  --color-primary: #EAF4FA;
  --color-secondary: #F2F1ED;
  --color-black: #212425;
  --color-text: #151515;
  --color-gray: #818181;
  --color-lightgray: #D9D9D9;
  --color-button: #2C2C2C;
  --color-border: #414141;
  --color-bg-overlap: #867B7B;
  --color-bluegray: #E3EBF6;
}

/*======================================================================
  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;
}

/*======================================================================
  BASIC
======================================================================*/
html {
	font-size: 10px;
}
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;
  transition: .2s;
  text-decoration: none;
}

a:hover {text-decoration: none;}

* {box-sizing: border-box;}

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

a img {
  transition: .2s;
}
a img:hover {
	opacity: .5;
}

.fit {
  position: relative;
  display: block;
  overflow: hidden;
}
.fit img {
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  margin: auto;
  width: 100%;
  height: auto;
}

/*======================================================================
  components
======================================================================*/
.page-title {
  display: inline-block;
  padding: 1rem;
  border: 1px solid var(--color-text);
  font-size: 2.4rem;
  font-weight: normal;
}

/*======================================================================
  header
======================================================================*/
.header_mv {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  position: relative;
  padding: 2.4rem;
  border-radius: 3rem;
  background: linear-gradient(180deg, #94C6E1 0%, #DEEAF1 78.63%);
}
.header_mv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 10rem;
  border-bottom-left-radius: 3rem;
  background: var(--color-white);
}
.header_mv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 23rem;
  height: 13rem;
  background: url(images/round-30.svg) no-repeat left top, url(images/round-30.svg) no-repeat right bottom;
}

.header_mv_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: .6rem;
}

/*ハンバーガーボタン*/
.el_hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  min-width: 4.2rem;
  height: 4.2rem;
  border: 1px solid var(--color-button);
  border-radius: 99rem;
  background: var(--color-button);
  z-index: 10000;
  transition: .2s;
  cursor: pointer;
}
.el_hamburger > span {
  display: block;
  width: 1.6rem;
  height: 1px;
  font-size: 0;
  background: var(--color-white);
  transition: .2s;
}
.el_hamburger:hover {
  background: var(--color-white);
  border-color: var(--color-button);
}
.el_hamburger:hover > span {
  background: var(--color-button);
}
.js_hamburgerOpen .el_hamburger > span.top {
  transform: translateY(6px) rotate(-45deg);
}
.js_hamburgerOpen .el_hamburger > span.middle {
  opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
  transform: translateY(-4px) rotate(45deg);
}

.header h1 {
  display: flex;
  align-items: center;
  min-height: 12rem;
  padding: 2.4rem;
  border-radius: 2.4rem;
  font-size: 2rem;
  font-weight: normal;
  background: var(--color-white);
}

/*ナビゲーション*/
.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: var(--color-primary);
  z-index: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: auto;
}
.gnav {
  padding: 80px 0 0 0;
  text-align: center;
}
.gnav ul {
  max-width: 76.8rem;
  margin-inline: auto;
  padding-inline: 2.4rem;
}
.gnav li {
  background: url(images/dot-footer.svg) repeat-x center bottom;
}
.gnav li > a {
  display: block;
  padding-block: 2rem;
  font-size: 2rem;
  color: var(--color-text);
}
.gnav li > a:hover {
  opacity: .5;
}
.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.breadcrumb {
  margin: 3rem auto;
}

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

.breadcrumb ul li a span {
  font-weight: bold;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}

/*======================================================================
  footer
======================================================================*/
.footer {
  background: var(--color-black);
  color: var(--color-white);
}

.footer_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2rem;
  padding-block: 4rem 2.4rem;
}

.footer_content_totop {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: 0;
}

.footer_content_totop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--color-white);
  border-radius: 99rem;
}
.footer_content_totop a svg {
  fill: var(--color-white);
}
.footer_content_totop a:hover {
  background: var(--color-white);
}
.footer_content_totop a:hover svg {
  fill: var(--color-button);
}

.fnav {
  width: 100%;
  padding-block: 2.4rem;
  background: url(images/dot-footer.svg) repeat-x center bottom;
}

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

.fnav ul li {
  flex: 1;
}

.fnav a {
  display: flex;
  gap: 1rem;
  color: var(--color-white);
}
.fnav a::before {
  display: block;
  content: "";
  min-width: .8rem;
  height: .8rem;
  margin-top: .8rem;
  border-radius: 99rem;
  background: var(--color-gray);
}
.fnav a:hover {
  text-decoration: underline;
}

.footer_content_logo {
  max-width: 41.2rem;
}

.footer_content_copy {
  display: flex;
  justify-content: center;
  width: 100%;
}

/*======================================================================
  recommend
======================================================================*/
.recommend {
  padding-block: 4rem;
  background: var(--color-secondary);
}

.recommend_content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.recommend_content_head {
  position: relative;
  padding-left: 7.6rem;
}
.recommend_content_head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border: 1rem solid var(--color-bluegray);
  border-radius: 99rem;
}
.recommend_content_head::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: url(images/icon-recommend.svg) no-repeat center;
}

.title-en {
  font-size: 3.2rem;
}

.recommend_content_head_title {
  font-weight: normal;
}

.recommend_content_post {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding-inline: 1.6rem;
}

.recommend_content_post_item {
  background: url(images/dot.svg) repeat-x center bottom;
}

.recommend_content_post_item a {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 0 2.5rem 2.4rem 2.5rem;
}
.recommend_content_post_item a:hover {
  color: var(--color-gray);
}

.recommend_content_post_item_title {
  font-size: 2.4rem;
  font-weight: normal;
}

/*======================================================================
  index
======================================================================*/
.index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding-bottom: 4rem;
}

.index_title {
  padding-inline: 1rem;
  border: 1px solid var(--color-text);
  font-size: 3.2rem;
  font-weight: normal;
}

.index_cat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 2.4rem;
  width: 100%;
}

.index_cat_item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  padding: 4rem;
}
.index_cat_item a span {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  color: var(--color-white);
  transition: .2s;
}
.index_cat_item a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(134, 123, 123, .5);
  transition: .2s;
}
.index_cat_item a:hover span {
  color: var(--color-text);
}
.index_cat_item a:hover img {
  opacity: 1;
}
.index_cat_item a:hover::after {
  background: rgba(255, 255, 255, .5);
}

.index_cat_item:nth-child(even) a {
  border-radius: 99rem 0 0 99rem;
}
.index_cat_item:nth-child(odd) a {
  border-radius: 0 99rem 99rem 0;
}

.index_txt {
  padding-inline: 4rem;
}

/*======================================================================
  category
======================================================================*/
.category_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
  padding-bottom: 3.2rem;
}

.category_head_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
}

.category_head_text {
  padding-inline: 4rem;
}

.category_post {
  padding-block: 4rem; 
  background: var(--color-primary);
}

.category_post_list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.category_post_list_item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem 4rem;
  border-radius: 5rem;
  background: var(--color-white);
}

.category_post_list_item_title a {
  font-size: 2.4rem;
  font-weight: normal;
}
.category_post_list_item_title a:hover {
  opacity: .5;
}

.category_post_list_item_more {
  display: flex;
  justify-content: flex-end;
}

.category_post_list_item_more a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 20rem;
  height: 5.6rem;
  padding: .8rem .8rem .8rem 1.8rem;
  color: var(--color-white);
  border-radius: 99rem;
  background: var(--color-button);
}
.category_post_list_item_more a:hover {
  color: var(--color-text);
  background: var(--color-secondary);
}
.category_post_list_item_more a::after {
  content: "";
  width: 4rem;
  height: 4rem;
  border-radius: 99rem;
  background: url(images/icon_more.svg) no-repeat center, var(--color-white);
}

/*======================================================================
  detail
======================================================================*/
.detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2rem;
  padding-bottom: 4rem;
}

.detail_category li a {
  display: inline-block;
  padding: 1.2rem;
  border-radius: 1rem;
  font-weight: bold;
  background: var(--color-bluegray);
}
.detail_category li a:hover {
  color: var(--color-white);
  background: var(--color-lightgray);
}

.detail_head {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.detail_img {
  width: 100%;
  height: 22.4rem;
  border-radius: 99rem;
}

.detail_post {
  padding: 0 2.4rem 2.4rem 2.4rem;
  border-bottom: 1px solid var(--color-border);
}

.detail_post h3 {
  position: relative;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: normal;
}
.detail_post h3::before {
  content: "";
  min-width: 1.2rem;
  height: 1.2rem;
  margin-top: .9rem;
  border-radius: 99rem;
  background: var(--color-gray);
}
.detail_post h3:not(:first-child) {
  margin-top: 2.4rem;
  padding-top: 3.2rem;
}
.detail_post h3:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 0;
  width: calc(100% + 4.8rem);
  height: 1px;
  background: var(--color-border);
}

.link_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail_post a {
  font-weight: bold;
  color: #0bd185;
}
.detail_post a:hover {
  text-decoration: underline;
}
.detail_post a img {
  max-width: 100%;
}

/*======================================================================
  sp
======================================================================*/
@media screen and (max-width: 720px) {
  .header_mv_head_logo {
    max-width: calc(100% - 18rem);
  }
  .header_mv::before {
    width: 15rem;
    height: 8rem
  }
  .header_mv::after {
    width: 18rem;
    height: 11rem;
  }

  .header h1 {
    min-height: 0;
    font-size: 2rem;
  }

  .index_title {
    font-size: 2.8rem;
  }

  .index_cat {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .index_cat_item a {
    min-height: 18rem;
  }

  .index_txt {
    padding: 0;
  }

  .recommend_content_post {
    padding-inline: 0;
  }

  .recommend_content_post_item a {
    padding-inline: 0;
  }

  .fnav {
    padding-top: 0;
  }

  .fnav ul {
    flex-direction: column;
    gap: 2.4rem;
  }

  .category_head_text {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .header_mv_head_logo {
    max-width: calc(100% - 10rem);
  }
  .header_mv::before {
    width: 10rem;
  }
  .header_mv::after {
    width: 13rem;
  }
} 