@charset "UTF-8";

:root {
  --color1: #222;
  --color2: #0B5AF7;
  --color3: #FF9700;
  --color4: #008048;
  --color5: #F2F2F2;
  --hr-color: #ccc;
}

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, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
	font-style: normal;
  color: var(--color1);
  background-color: var(--color5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: var(--color1);
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: var(--color1);
}
a:link {
  color: var(--color1);
}
a:hover img {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  transition: all .3s;
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--hr-color);
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
::placeholder {
  color: #999;
}
.noscroll {
  overflow: hidden;
}
.picthover {
	transform: scale(1, 1);
	transition: all 0.3s 0s ease-Out;
}
a:hover .picthover {
	transform: scale(1.04, 1.04);
	transition: all 0.3s 0s ease-Out;
}

/* 共通 */
.topmenu_container {
  display: none;
}
.wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.section {
  padding: 100px 0;
}
.flex {
	display: flex;
}
.flex_reverse {
	flex-direction: row-reverse;
}
.font_bold {
	font-weight: 700;
}
.font_en {
  font-family: "arboria", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width:960px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .section {
    padding: 80px 0;
  }
}

/* ヘッダー */
.header {
  position: relative;
}
.header .hd_logo {
  background-color: var(--color5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .5s ease;
}
.header.fixed .hd_logo {
  top: 0;
}
.header .hd_logo a {
  padding: 20px;
  display: inline-block;
}
.header .pcnavbox {
  height: 100px;
  align-items: center;
  justify-content: center;
}
.header .pcnavbox .list {
  gap: 15px 25px;
}
.header .pcnavbox .item a {
  color: var(--color2);
  align-items: center;
  gap: 5px;
  transition: all .3s;
}
.header .pcnavbox .item a:hover {
  color: var(--color3);
}
.header .pcnavbox .item span {
  line-height: 1;
}
.header .box {
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.header .childbox {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.header .childbox .txt {
  font-size: 14px;
  color: var(--color2);
}
.header .childitem {
  margin-top: 20px;
}
.header .childitem a {
  color: var(--color2);
  transition: all .3s;
}
.header .childitem a:hover {
  color: var(--color3);
}
.header .childitem img {
  margin-right: 10px;
}
.header .sub {
  width: 100%;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width:1380px) {
  .header .childbox {
    right: 50px;
  }
}
@media screen and (max-width:1250px) {
  .header .pcnavbox .list {
    flex-wrap: wrap;
    padding-right: 100px;
    padding-left: 20px;
  }
}
@media screen and (max-width:960px) {
  .header .hd_logo,
  .header .childbox {
    display: none;
  }
  .header .box {
    padding-top: 90px;
    padding-bottom: 0;
    margin-bottom: -50px;
  }
  .header .sub {
    font-size: 68px;
  }
}
@media screen and (min-width:961px) {
  .header .sub {
    font-size: clamp(100px, 11vw, 140px);
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}

/* ドロワーメニュー */
.nav_wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 3;
  transition: all .5s;
  display: block;
}
.nav_wrapper.fade {
  right: 0;
}
.header_nav {
  width: 100%;
  max-width: 450px;
  height: 100%;
  background-color: var(--color2);
  box-sizing: border-box;
  margin-left: auto;
  position: relative;
}
.header_nav .menubox {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
  overflow-y: scroll;
}
.header_nav .nav_inn {
  width: 100%;
  padding-left: 40px;
  padding-right: 110px;
}
.header_nav .menu_logo {
  margin-bottom: 40px;
}
.header_nav .nav_item {
  margin-bottom: 15px;
}
.header_nav .nav_item:last-child {
  margin-bottom: 0;
}
.header_nav .nav_item a {
  color: #fff;
  display: flex;
  align-items: center;
  transition: all .3s;
}
.header_nav .nav_item a:hover {
  color: var(--color3);
}
.header_nav .nav_item span {
  line-height: 1;
  margin-right: 10px;
}
.header_nav .menuchildbox {
  margin-top: 40px;
}
.header_nav .menuchildbox .menuchilditem {
  margin-bottom: 15px;
}
.header_nav .menuchildbox .menuchilditem:last-child {
  margin-bottom: 0;
}
.header_nav .menuchildbox .menuchilditem a {
  color: #fff;
  border: solid 1px #fff;
  padding: 10px 20px;
  display: block;
  transition: all .3s;
}
.header_nav .menuchildbox .menuchilditem a:hover {
  color: var(--color2);
  background-color: #fff;
}
.burger_btn {
  width: 55px;
  height: 55px;
  border: none;
  background-color: var(--color2);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  padding: 0;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  transition: all .3s;
  cursor: pointer;
}
.burger_btn.close {
  background-color: #fff;
}
.burger_btn span {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.burger_btn span::after {
  content: "MENU";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transition: all .3s;
}
.burger_btn.close span::after {
  content: "CLOSE";
  color: var(--color2);
}
@media screen and (max-width:960px) {
  .header_nav {
    max-width: 380px;
    padding: 0;
  }
  .header_nav .menubox {
    padding-bottom: 200px;
  }
  .header_nav .menu_logo {
    margin-bottom: 20px;
  }
  .header_nav .menuchildbox {
    margin-top: 20px;
  }
}
@media screen and (max-width:480px) {
  .header_nav {
    max-width: none;
  }
}

/* フッター */
.footer .box {
  color: #fff;
  padding-top: 50px;
  padding-bottom: 30px;
}
.footer .left .txt {
  color: #fff;
  margin: 30px 0;
}
.footer .left .txt a {
  font-size: 18px;
  color: #fff;
  margin-left: 1em;
}
.footer .left .item {
  margin-bottom: 15px;
}
.footer .left .item:last-child {
  margin-bottom: 0;
}
.footer .left .item a {
  color: #fff;
  border: solid 1px #fff;
  padding: 10px 20px;
  display: block;
  transition: all .3s;
}
.footer .left .item a:hover {
  color: var(--color2);
  background-color: #fff;
}
.footer .right .menu_item {
  margin-bottom: 20px;
}
.footer .right .menu_item:last-child {
  margin-bottom: 0;
}
.footer .right .menu_item a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}
.footer .right .menu_item a:hover {
  color: var(--color3);
}
.footer .right .menu_item span {
  line-height: 1;
}
.footer .copyright {
  text-align: right;
  margin-top: 60px;
}
.footer .copyright a {
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width:960px) {
  .footer {
    background-color: var(--color2);
    margin-bottom: 68px;
  }
  .footer .box {
    position: relative;
  }
  .footer .box .flex_inn {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer .box .left,
  .footer .box .right {
    width: 100%;
    box-sizing: border-box;
  }
  .footer .left .logo {
    width: 260px;
  }
  .footer .left .txt a {
    font-size: 30px;
    margin-left: 0;
  }
  .footer .box .link {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: block;
  }
  .footer .copyright {
    margin-top: 20px;
  }
}
@media screen and (min-width:961px) {
  .footer {
    background-image: url(../img/common/img_ft_back.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 300px;
    overflow: hidden;
  }
  .footer .box {
    background-color: var(--color2);
    padding-left: 100px;
    position: relative;
  }
  .footer .box::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    position: absolute;
    top: 0;
    right: -100%;
  }
  .footer .left {
    width: 380px;
    min-width: 380px;
    box-sizing: border-box;
  }
  .footer .right {
    border-left: solid 1px #fff;
    padding-left: 60px;
    margin-left: 60px;
  }
  .footer .link {
    position: absolute;
    top: 50px;
    right: 0;
  }
}

/* PCサイドフローティングバナー */
.sidefl {
  position: fixed;
  top: 20vh;
  right: 0;
  z-index: 3;
}
.sidefl .bnr {
  background-color: #fff;
  filter: drop-shadow(-1px 1px 3px rgba(0,0,0,0.2));
  margin-bottom: 10px;
}
.sidefl .bnr:last-child {
  margin-bottom: 0;
}

/* スマホフローティングバナー */
.spflbnr {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 3;
}
.spflbnr .bnrlist {
  justify-content: space-between;
}
.spflbnr .bnritem {
  width: 50%;
  border: solid 1px var(--color2);
  background-color: #fff;
  box-sizing: border-box;
}
.spflbnr .bnritem a {
  color: var(--color2);
  padding: 15px 10px;
  display: block;
  position: relative;
}
.spflbnr .bnritem a::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 92%, var(--color3) 92%, var(--color3) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.spflbnr .bnritem .bnr_en {
  font-size: 10px;
}
.spflbnr .bnritem .bnr_txt {
  font-size: 14px;
}

/* ページメインタイトル */
.page_title_container {
  width: calc(((100vw - 1200px) / 2) + 1200px);
  box-sizing: border-box;
  padding-bottom: 50px;
  margin-left: auto;
}
.page_title_container .flex_inn {
  align-items: flex-start;
  gap: 90px;
}
.page_title_container .txt_en {
  font-size: 20px;
  color: var(--color2);
  margin-bottom: 10px;
}
.page_title_container .title {
  font-size: 50px;
  line-height: 1.25;
}
.page_title_container .box .txt {
  text-align: justify;
  line-height: 2;
  margin-top: 60px;
}
.page_title_container .pictbox {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.page_title_container .pictbox::before {
  content: "";
  width: 50px;
  height: 80%;
  background-color: var(--color2);
  position: absolute;
  bottom: -50px;
  left: -50px;
}
.page_title_container .pictbox::after {
  content: "";
  width: 100%;
  height: 50px;
  background-color: var(--color2);
  position: absolute;
  bottom: -50px;
  right: 0;
}
.page_title_container .pict {
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page_title_container .pict img {
  width: 100%;
}
.page_title_container .page_logo {
  position: absolute;
  top: 40px;
  left: -50px;
  z-index: 2;
}
@media screen and (max-width:1350px) {
  .page_title_container {
    width: 95%;
  }
}
@media screen and (max-width:960px) {
  .page_title_container {
    width: 100%;
    display: block;
  }
  .page_title_container .flex_inn {
    flex-wrap: wrap;
    gap: 60px;
  }
  .page_title_container .page_logo {
    top: 25px;
    left: -20px;
  }
  .page_title_container .page_logo img {
    width: 80px;
  }
  .page_title_container .pictbox {
    width: 90%;
  }
  .page_title_container .pictbox::before {
    bottom: -20px;
    left: -20px;
  }
  .page_title_container .pictbox::after {
    bottom: -20px;
  }
  .page_title_container .box {
    width: 90%;
    margin: 0 auto;
  }
  .page_title_container .txt_en {
    font-size: 16px;
  }
  .page_title_container .title {
    font-size: 28px;
  }
  .page_title_container .box .txt {
    margin-top: 40px;
  }
}
@media screen and (min-width:961px) {
  .page_title_container .box {
    width: 460px;
    min-width: 460px;
    padding-top: 170px;
    box-sizing: border-box;
  }
}

/* レコメンド一覧 */
.reco_container .section {
  padding-top: 0;
}
.reco_container .title {
  font-size: 30px;
  color: var(--color2);
  margin-bottom: 30px;
}
.reco_container .reco_list {
  flex-wrap: wrap;
  gap: 0 115px;
  padding: 0 57px;
  border-left: solid 1px #e2e2e2;
  border-right: solid 1px #e2e2e2;
}
.reco_container .reco_item {
  width: calc((100% - 230px)/3);
  box-sizing: border-box;
  padding-top: 50px;
  position: relative;
}
.reco_container .reco_item:nth-child(1),
.reco_container .reco_item:nth-child(2),
.reco_container .reco_item:nth-child(3) {
  padding-top: 0;
}
.reco_container .reco_item::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(112, 112, 112, .2);
  display: block;
  position: absolute;
  top: 0;
  right: -57px;
}
.reco_container .reco_item:nth-child(3n)::after {
  content: none;
}
.reco_container .reco_item .pict {
  overflow: hidden;
}
.reco_container .reco_item .pict img {
  width: 100%;
}
.reco_container .reco_item .box {
  margin-top: 15px;
  margin-bottom: 10px;
}
.reco_container .reco_item .box .item_title,
.reco_container .reco_item .box .txt {
  transition: all .3s;
}
.reco_container .reco_item a:hover .item_title,
.reco_container .reco_item a:hover .txt {
  color: var(--color3);
}
.reco_container .reco_item .box .item_title {
  font-size: 18px;
  margin-bottom: 10px;
}
.reco_container .reco_item .box .txt {
  font-size: 14px;
  text-align: justify;
}
.reco_container .reco_item .t_list {
  flex-wrap: wrap;
  gap: 5px;
}
.reco_container .reco_item .t_item {
  font-size: 12px;
  color: #fff;
  background-color: var(--color3);
  padding: 2px 10px;
  display: block;
}
.reco_container .reco_item .t_item.tag {
  background-color: var(--color2);
}
@media screen and (max-width:960px) {
  .reco_container .reco_list {
    gap: 0 40px;
    padding: 0 20px;
  }
  .reco_container .reco_item {
    width: calc((100% - 80px)/3);
  }
  .reco_container .reco_item::after {
    right: -20px;
  }
}
@media screen and (max-width:768px) {
  .reco_container .reco_list {
    gap: 50px;
  }
  .reco_container .reco_item {
    width: 100%;
    padding-top: 0;
  }
  .reco_container .reco_item::after {
    content: none;
  }
}
@media screen and (max-width:480px) {
  .reco_container .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* カテゴリー一覧 */
.cat_container .title {
  font-size: 30px;
  color: var(--color2);
  margin-bottom: 30px;
}
.cat_container .tag_list,
.cat_container .cat_list {
  flex-wrap: wrap;
  gap: 10px;
}
.cat_container .tag_list {
  margin-top: 10px;
}
.cat_container .tag_item,
.cat_container .cat_item {
  width: calc((100% - 60px)/7);
  box-sizing: border-box;
  transition: all .3s;
}
.cat_container .cat_item {
  background-color: var(--color3);
}
.cat_container .cat_item.active {
  background-color: #F15A22;
}
.cat_container .tag_item {
  background-color: var(--color2);
}
.cat_container .tag_item.active {
  background-color: #1b1464;
}
.cat_container .tag_item:hover {
  background-color: #1b1464;
}
.cat_container .cat_item:hover {
  background-color: #F15A22;
}
.cat_container .tag_item a,
.cat_container .cat_item a {
  font-size: 14px;
  color: #fff;
  padding: 10px;
  display: block;
}
@media screen and (max-width:480px) {
  .cat_container .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .cat_container .tag_list,
  .cat_container .cat_list {
    gap: 5px;
  }
  .cat_container .tag_item,
  .cat_container .cat_item {
    width: calc((100% - 10px)/3);
  }
  .cat_container .tag_item a,
  .cat_container .cat_item a {
    padding: 5px 10px;
  }
  .cat_container .tag_list {
    margin-top: 5px;
  }
}

/* パンくず */
.breadarea {
  margin-top: 40px;
  margin-bottom: 30px;
}
.breadcrumbs {
  font-size: 12px;
}
.breadcrumbs span a:hover {
  color: var(--color2);
  text-decoration: underline;
}
.breadcrumbs span a span:after {
  content: "\e5cc";
  font-family: 'Material Icons';
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 5px;
  color: #1a1a1a;
}
@media screen and (max-width:960px) {
  .breadarea {
    font-size: 10px;
    margin-top: 16px;
  }
}
@media screen and (max-width:768px) {
  .breadcrumbs {
    padding-right: 70px;
  }
}

/* 一覧ページャー */
.wp-pagenavi {
  text-align: center;
  margin-top: 80px;
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  font-size: 14px;
  font-weight: bold;
  color: var(--hr-color);
  margin: 0 2rem;
  transition: all .3s;
}
.wp-pagenavi span.current {
  color: var(--color2);
}
.wp-pagenavi a:hover {
  color: var(--color2);
}
.wp-pagenavi a.previouspostslink {
  margin-left: 0;
}
.wp-pagenavi a.nextpostslink {
  margin-right: 0;
}
.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  text-decoration: underline;
}
@media screen and (max-width:960px) {
  .wp-pagenavi {
    margin-top: 60px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span.current {
    font-size: 13px;
    margin: 0 1rem;
  }
}