@charset "utf-8";
/*======================================================================
  variable
======================================================================*/
:root {
  --color-white: #FFF;
  --color-primary: #6B9CDE;
  --color-bg: #EFF3FA;
  --color-bg-gradation: linear-gradient(180deg, #EFF3FA 0%, #6B9CDE 100%);
  --color-text: #25262E;
  --color-gray: #CFD9E8;
  --color-gradation-button: linear-gradient(90deg, #6B9CDE 0%, #6BCFE1 100%);
  --color-gradation-button-hover: linear-gradient(90deg, #6B9CDE 0%, #6B9CDE 100%);
}

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

p { line-height: 1.5; }

a { color: var(--color-text); cursor: pointer; transition: .2s;}

a, 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;
}

.main-content {
  padding-top: 4rem;
}

.content-title {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.content-title_en {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--color-gray);
}
.content-title_jp {
  font-size: bold;
  color: var(--color-primary);
}

/*======================================================================
  header
======================================================================*/
.header {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-top: 1.6rem;
}

.header_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header_head_logo {
  display: block;
  max-width: 48.7rem;
}

/*ハンバーガーボタン*/
.el_hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  position: relative;
  min-width: 4rem;
  height: 4rem;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border-radius: 99rem;
  background: var(--color-white);
}
.el_hamburger > span {
  display: block;
  width: 1.4rem;
  height: 1px;
  font-size: 0;
  background: var(--color-primary);
  transition: all 0.2s ease-in-out;
}
.el_hamburger:hover {
  background: var(--color-primary);
}
.el_hamburger:hover > span {
  background: var(--color-white);
}
.el_hamburger > span:last-child {
  margin-bottom: 0;
}
.js_hamburgerOpen .el_hamburger > span.top {
  transform: translateY(5px) rotate(-45deg);
}
.js_hamburgerOpen .el_hamburger > span.middle {
  opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
  transform: translateY(-4px) 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: var(--color-bg-gradation);
  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 {
  margin-bottom: 2rem;
  border-bottom: var(--color-white) 1px solid;
}
.gnav li > a {
  display: block;
  padding: 0 2rem 2rem;
  color: var(--color-white);
  font-weight: bold;
  text-shadow: 0 4px 24px var(--color-primary);
}
.gnav li > a:hover {
  opacity: .5;
}
.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header_mv {
  max-width: 47rem;
  margin-inline: auto;
}

.header_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.header_bottom_catchphrase {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-white);
  text-shadow: 0 4px 24px var(--color-primary);
}

.header_bottom_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-primary);
}

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

.breadcrumb ul li a{
  font-weight: bold;
}
.breadcrumb ul li a:hover {
  opacity: .5;
}

/*======================================================================
  footer
======================================================================*/
.footer {
  padding-top: 2.4rem;
  background: var(--color-white);
}

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

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

.footer_content_pagetop_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--color-primary);
  border-radius: 99rem;
  font-size: 0;
}
.footer_content_pagetop_item svg {
  transition: .2s;
  fill: var(--color-primary);
}
.footer_content_pagetop_item:hover {
  border-color: var(--color-white);
  background: var(--color-primary);
}
.footer_content_pagetop_item:hover svg {
  fill: var(--color-white);
}

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

.fnav ul li {
  flex: 1;
}

.fnav ul li a {
  color: var(--color-primary);
}
.fnav ul li a:hover {
  opacity: .5;
}

.footer_content_copy {
  padding-block: 1.6rem;
  border-top: 1px solid var(--color-gray);
  text-align: center;
  color: var(--color-primary);
}

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

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

.recommend_list_top-item_img {
  width: 100%;
  height: 19.8rem;
  padding: 4rem;
  border-radius: 1.6rem;
}

.recommend_list_top-item_img img:hover {
  opacity: 1;
}

.recommend_list_top-item_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, .9);
}

.recommend_list_top-item_text_catchphrase {
  color: var(--color-primary);
  transition: .2s;
}

.recommend_list_top-item_text_title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
  transition: .2s;
}
.recommend_list_top-item_img:hover .recommend_list_top-item_text_catchphrase,
.recommend_list_top-item_img:hover .recommend_list_top-item_text_title {
  opacity: .5;
}

.recommend_list_item:not(:last-child) {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-white);
}

.recommend_list_item_link {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  color: var(--color-white);
}
.recommend_list_item_link:hover {
  opacity: .5;
}

.recommend_list_item_link_title {
  font-size: 2rem;
  font-weight: bold;
}

/*======================================================================
  index
======================================================================*/
.index {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.index_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.index_head_title {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--color-primary);
}

.index_head_img {
  overflow: hidden;
  border-radius: 1.6rem;
}

.index_head_text {
  width: 100%;
}

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

.index_new_list_item {
  display: flex;
  gap: 2.4rem;
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--color-gray);
}
.index_new_list_item:last-child {
  border-bottom: none;
}

.index_new_list_item_time {
  color: var(--color-primary);
}

.index_new_list_item_link:hover {
  opacity: .5;
}

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

.links_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.4rem;
}

.links_content img {
  vertical-align: middle;
}

/*======================================================================
  category
======================================================================*/
.category {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.category_head_img {
  height: 20rem;
  border-radius: 1.6rem;
}

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

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

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

.category_post_list_item_title a {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
}
.category_post_list_item_title a:hover {
  opacity: .5;
}

.category_post_list_item_content {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}

.category_post_list_item_content_img {
  min-width: 16rem;
  height: 16rem;
}

.category_post_list_item_content_block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}

.category_post_list_item_content_block_link {
  display: flex;
  justify-content: flex-end;
}
.category_post_list_item_content_block_link_item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.6rem 2.4rem;
  border-radius: 99rem;
  color: var(--color-white);
  background: var(--color-gradation-button);
}
.category_post_list_item_content_block_link_item::after {
  content: "";
  width: 1.6rem;
  height: 1.2rem;
  background: url(images/arrow_wh.svg) no-repeat center;
}
.category_post_list_item_content_block_link_item:hover {
  background: var(--color-gradation-button-hover);
}

/*======================================================================
  detail
======================================================================*/
.detail_content-wrap {
  overflow: hidden;
  border-radius: 1.6rem;
}

.detail_category-img {
  display: flex;
  align-items: center;
  height: 11rem;
  padding-inline: 2.4rem;
}
.detail_category-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .2;
}

.detail_category-img_title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-white);
}

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

.detail_content_title {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--color-primary);
}

.detail_content_post h3 {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
}
.detail_content_post h3:not(:first-child) {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--color-gray);
}

.detail_link-item {
  display: inline-block;
  margin-block: 1rem;
}
.detail_link-item img {
  max-width: 100%;
  height: auto;
}

.detail_content_post a {
  font-weight: bold;
  color: #df343a;
}

/*======================================================================
  sp
======================================================================*/
@media screen and (max-width: 690px) {
  .index_head_title {
    font-size: 2.4rem;
  }

  .recommend_list_top-item_img {
    height: 22rem;
    padding: 1.6rem;
  }

  .fnav ul {
    flex-direction: column;
  }

  .category_post_list_item_content {
    flex-direction: column;
  }

  .category_post_list_item_content_img {
    min-width: 0;
    width: 100%;
  }

  .detail_content_title {
    font-size: 2.4rem;
  }
} 