@charset "UTF-8";
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* color */
/* font */
/* trans */
/* margin */
/* box */
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	common
	common　header、nav、footer、main、parts
	一覧ページ【archive】
	記事ページ【single】
	404【404】


//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #030303;
  background: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden;
}

main,
section,
article {
  overflow: hidden;
}

sup {
  font-size: 0.7rem;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

a {
  text-decoration: none;
  color: #030303;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
a:visited {
  text-decoration: none;
  color: #030303;
}
a:hover {
  text-decoration: none;
  color: #ed2214;
  cursor: pointer;
}

a[href^="tel:"] {
  pointer-events: none;
  color: #030303;
  cursor: default;
}

.overflow_hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

.spBr {
  display: none;
}

.spNoBr {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.column_l {
  float: left;
}

.column_r {
  float: right;
}

.caution_list {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
}
.caution_list li {
  position: relative;
  padding-left: 1rem;
}
.caution_list li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.decimal_list {
  list-style-type: decimal;
  padding-left: 1rem;
}

.dot_list li {
  position: relative;
  padding-left: 1.5rem;
}
.dot_list li::before {
  position: absolute;
  content: "";
  top: 0.8rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #a0a0a0;
  text-indent: -1.5rem;
}

.decimal {
  text-indent: -3rem;
  padding-left: 3rem;
}

.caution {
  font-size: 0.8rem;
  color: #666;
}

.container {
  width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.w100 {
  width: 100%;
}

/* img_box */
.img_box {
  overflow: hidden;
}
.img_box img {
  width: 100%;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  z-index: 10000001;
  padding: 20px 0;
  background: url(../img/common/bg_title.jpg) no-repeat top center;
  background-size: cover;
  height: 200px;
  mask-image: url("../img/common/mask_title.svg");
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: contain;
}
header section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 110px;
}
.home header {
  background: none;
  mask-image: none;
}

.sns_list {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.sns_list a:hover {
  opacity: 0.75;
}

/* 二 */
#menuBut {
  position: fixed;
  top: 12px;
  right: calc((100% - 1200px) / 2);
  width: 80px;
  text-align: center;
  cursor: pointer;
  z-index: 10000003;
}
#menuBut div {
  position: relative;
  width: 80px;
  height: 80px;
  background: #ed2214;
}
#menuBut div span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
#menuBut div span:nth-child(1) {
  top: 34px;
}
#menuBut div span:nth-child(2) {
  top: 46px;
}
#menuBut p {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.openNav #menuBut span:nth-child(1) {
  top: 40px;
  transform: rotate(-45deg);
}
.openNav #menuBut span:nth-child(2) {
  top: 40px;
  transform: rotate(45deg);
}

.openNav #globalNavBlock {
  visibility: visible;
  opacity: 1;
  overflow: auto;
}

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
#globalNavBlock {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(480px + (100% - 1200px) / 2);
  z-index: 10000002;
  visibility: hidden;
  opacity: 0;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
#globalNavBlock #globalNav {
  background: #fff;
  border-bottom-left-radius: 34px;
  padding: 130px 0 45px 45px;
  text-align: left;
  line-height: 1;
}
#globalNavBlock #globalNav > ul {
  width: 440px;
}
#globalNavBlock #globalNav > ul > li > a {
  display: block;
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  padding: 20px 0;
  border-bottom: 2px solid #ed2214;
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
footer {
  padding: 40px 0;
  background: #fcf3e9;
}
footer .container {
  text-align: center;
  line-height: 1;
}
footer .container #footerNavBlock #footerNav ul {
  display: flex;
  justify-content: center;
}
footer .container #footerNavBlock #footerNav ul li {
  position: relative;
  font-size: 0.9375rem;
  padding: 0 15px;
}
footer .container #footerNavBlock #footerNav ul li::before {
  position: absolute;
  content: "/";
  top: 0;
  left: 0;
}
footer .container #footerNavBlock #footerNav ul li:last-child::after {
  position: absolute;
  content: "/";
  top: 0;
  right: 0;
}
footer .container .sns_list {
  margin: 40px auto 35px;
}
footer .container #copyright {
  font-size: 12px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #878787;
}

/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
body {
  position: relative;
}

#mainBlock {
  padding-top: 260px;
}

/*-------------------- mainBlock_1Block --------------------*/
/*-------------------- column_2Block --------------------*/
/*--------------------------------------------------------------
	parts
--------------------------------------------------------------*/
/*-------------------- title --------------------*/
#pageTitleBlock {
  position: relative;
  padding: 260px 0 200px; /*margin-top:0px;*/
}
#pageTitleBlock h2 {
  font-size: 2.625rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  padding-top: 50px;
  background-repeat: no-repeat;
  background-position: top center;
}
#pageTitleBlock p {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 40px;
}

.ill_pattern * {
  position: absolute;
  background-size: contain;
  z-index: -1;
}
.ill_pattern li:nth-child(1) {
  width: 284px;
  height: 284px;
  top: 270px;
  left: calc(50% - 700px);
  background: url(../img/top/ill_pattern_1.svg) no-repeat center;
}
.ill_pattern li:nth-child(2) {
  width: 284px;
  height: 200px;
  bottom: 0px;
  left: calc(50% + 400px);
  background: url(../img/top/ill_pattern_2.svg) no-repeat center;
}

.headline_1 {
  text-align: center;
  margin-bottom: 180px;
}
.headline_1 span {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 45px;
  color: #42ada2;
  padding: 0 45px;
  background: url(../img/common/headline_l.svg) no-repeat center left, url(../img/common/headline_r.svg) no-repeat center right;
}

.headline_2 {
  position: relative;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #42ada2;
  padding-bottom: 30px;
  margin: 0 auto 50px;
}

.headline_2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 460px;
  height: 7px;
  background: url(../img/common/line_dashed_2.svg) no-repeat bottom center;
}

/*
.headline_2 {  width:680px; font-size:2.25rem; font-weight:900; line-height:1; text-align:center; color:$color_1; background:url(../img/common/line_dashed_2.svg) repeat-x bottom center;  padding-bottom:30px; margin:0 auto 50px; }
*/
.lead_text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.lead_text_2 {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

/*-------------------- figure --------------------*/
figure figcaption {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.note_list {
  font-size: 0.875rem;
  margin-top: 20px;
}

/*-------------------- breadcrumb --------------------*/
/*-------------------- anchor_nav --------------------*/
/*-------------------- button --------------------*/
.but_more a {
  position: relative;
  display: block;
  max-width: 400px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 40px;
  padding: 20px 50px;
  background: url(../img/common/arrow_rw.svg) no-repeat center right 20px #e7652d; /* white-space:nowrap; */
}
.but_more a:hover {
  opacity: 0.75;
}

/*-------------------- box --------------------*/
/*-------------------- modal --------------------*/
/*-------------------- table --------------------*/
.table_type_1 {
  width: 100%;
  border: 1px solid #b0b0b0;
}
.table_type_1 * {
  font-weight: 500;
}
.table_type_1 caption {
  margin-bottom: 10px;
}
.table_type_1 th, .table_type_1 td {
  padding: 10px 10px;
  border: 1px solid #b0b0b0;
}
.table_type_1 th {
  text-align: center;
}
.table_type_1 thead {
  background: #fff5c3;
}
.table_type_1 tbody th {
  background: #fbdeb0;
}
.table_type_1 tbody td {
  background: #fdfaeb;
}
.table_type_1 tbody td:last-child {
  text-align: left;
}

/*-------------------- list --------------------*/
/* adjust_box */
.adjust_box {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.adjust_box.box_1x1:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.adjust_box.box_16x9:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.adjust_box.box_3x4:before {
  content: "";
  display: block;
  padding-top: 133%;
}
.adjust_box.box_4x3:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.adjust_box.box_4x5:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.adjust_box.box_2x1:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.adjust_box .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.adjust_box .inner img {
  width: 100%;
  height: auto;
}

/*-------------------- 記事リスト --------------------*/
/* news */
.archive_list > li a {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px dotted #000;
}
.archive_list > li a time {
  width: 170px;
  font-weight: 700;
}
.archive_list > li a h3 {
  width: calc(100% - 170px);
}
.archive_list > li a:hover * {
  color: #ed2214;
}

/* recipe */
.recipe_list {
  display: flex;
  gap: 20px 2%;
  flex-wrap: wrap;
}
.recipe_list > li {
  position: relative;
  width: 23.5%;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.recipe_list > li a .img_box {
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
.recipe_list > li a .data_box {
  padding: 20px;
  margin: 0;
  height: 100%;
}
.recipe_list > li a .data_box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.recipe_list > li a:hover .img_box {
  opacity: 0.75;
}

/* data_box */
/*
.data_box { text-align:left; margin:15px 0; overflow:hidden;
	h3 { font-size:1.2rem; font-weight:500; line-height:1.8; margin-bottom:5px; }
	p { font-size:0.9rem; line-height:1.8;  margin-bottom:10px; }
	//date { float:right; font-size:0.9rem; color:$text_sub_color; }
}
// hover
.archive_list li:hover .img_box { @include opacity_hover; }
.archive_list a:hover { color:$text_color !important; }
*/
/* カテゴリー */
/*
.category_list { position:absolute; top:10px; left:10px; line-height:1; margin-bottom:10px;
	* { display:inline-block; }
	li { margin-right:1px; }
	a { color:#fff !important; font-size:0.8rem; background:$text_sub_color; padding:10px 15px; border-radius:20px; }
	// hover
	a:hover { color:#fff !important; }
}
*/
/* news */
/*
.news_list {
	li {
		.data_box { display:flex;
			date { width:120px; font-weight:bold; margin-top:3px; }
			h3 { width:calc(100% - 120px); font-weight:normal; }
		}
	}
	li:not(:last-child) { border-bottom:1px dotted #000; }
}
// hover
.news_list a:hover { }
*/
/*-------------------- text --------------------*/
/*-------------------- Gutenberg --------------------*/
/* iframe */
.post_text_block {
  margin-bottom: 180px;
}

.post_text_block .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.post_text_block .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*-------------------- transform --------------------*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	一覧ページ 【archive】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*--------------------------------------------------------------
	pagination
--------------------------------------------------------------*/
/* <  > */
.pagination_prev_next_arrow {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  margin-bottom: 90px;
}
.pagination_prev_next_arrow a.prev {
  padding: 0px 0 0 0px;
  opacity: 0.5;
}
.pagination_prev_next_arrow p.prev_no {
  width: 1rem;
  height: 1px;
}
.pagination_prev_next_arrow a.next {
  padding: 0px 0 0 1rem;
  opacity: 0.5;
}
.pagination_prev_next_arrow p.next_no {
  width: 1rem;
  height: 1px;
}
.pagination_prev_next_arrow a.archive {
  display: inline-block;
  width: 100%;
  text-align: center;
  opacity: 0.5;
}
.pagination_prev_next_arrow *:hover {
  opacity: 1;
}

/* 古い記事｜新しい記事 □ □ */
.pagination_prev_next {
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 180px;
}
.pagination_prev_next .prev,
.pagination_prev_next .next,
.pagination_prev_next .no {
  display: inline-block;
  width: 50%;
  color: #666;
}
.pagination_prev_next .img_box {
  width: 50px;
}
.pagination_prev_next .prev *,
.pagination_prev_next .next * {
  display: inline-block;
}
.pagination_prev_next .next {
  text-align: right;
  border-left: 1px solid #ccc;
  min-height: 50px;
}
.pagination_prev_next p {
  width: calc(100% - 70px);
  padding: 10px;
  font-size: 0.8rem;
}
.pagination_prev_next img {
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
.pagination_prev_next a:hover img {
  transform: scale(1.15);
}

/* 1234 */
.pagination {
  display: flex;
  justify-content: center;
  justify-items: center;
  margin: 180px 0 0;
}
.pagination ul {
  display: inline-block;
  text-align: center;
  margin: 0 30px;
}
.pagination ul li {
  display: inline-block;
  min-width: 30px;
  margin-right: 10px;
}
.pagination ul li a {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  width: 30px;
}
.pagination ul li a.prev,
.pagination ul li a.next {
  font-weight: bold;
}
.pagination ul li a.pager {
  line-height: 30px;
}
.pagination ul li a:hover {
  color: #ed2214;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li.active {
  color: #fff;
  background: #ed2214;
  border-radius: 100%;
  width: 30px;
}
.pagination #prevNo,
.pagination #nextNo {
  width: calc(5rem + 30px);
  height: 1px;
}
.pagination a.prev {
  padding-left: 30px;
  font-weight: bold;
}
.pagination a.next {
  padding-right: 30px;
  font-weight: bold;
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	 404 【404】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#notfoundBlock {
  margin: 360px auto 180px;
}
#notfoundBlock h2,
#notfoundBlock p {
  text-align: center;
  font-weight: 800;
  color: #666;
}
#notfoundBlock h2 {
  font-size: 5rem;
  line-height: 1;
}
#notfoundBlock p {
  margin-bottom: 90px;
}
#notfoundBlock .but_more a {
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 90%;
  }
  header section {
    padding-right: 60px;
  }
  /* 二 */
  #menuBut {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  	common　

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  html {
    font-size: 14px;
    line-height: 1.6;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .spBr {
    display: block;
  }
  .spNoBr {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .column_l {
    float: none;
  }
  .column_r {
    float: none;
  }
  .container {
    width: 90%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*-------------------- mainBlock_1Block --------------------*/
  /*-------------------- column_2Block --------------------*/
  /*--------------------------------------------------------------
  	header
  --------------------------------------------------------------*/
  header {
    padding: 15px 0;
    height: 120px;
    background: url(../img/common/bg_title.jpg) no-repeat bottom cover #ccc;
    background-size: cover;
    mask-image: url("../img/common/mask_title_sp.svg");
    mask-repeat: no-repeat;
    mask-position: bottom center;
    mask-size: cover;
  }
  header section {
    padding-right: 70px; /*display:flex; justify-content:space-between; align-items:center; padding-right:110px;*/
  }
  header section h1 img {
    width: 50px;
  }
  .home header { /*background:none; mask-image:none;*/ }
  .sns_list img {
    width: 24px;
  }
  /* 二 */
  #menuBut {
    top: 10px;
    right: 10px;
    width: 60px;
  }
  #menuBut div {
    width: 60px;
    height: 60px;
  }
  #menuBut div span:nth-child(1) {
    top: 24px;
  }
  #menuBut div span:nth-child(2) {
    top: 36px;
  }
  #menuBut p {
    font-size: 12px;
  }
  .openNav #menuBut span:nth-child(1) {
    top: 30px;
  }
  .openNav #menuBut span:nth-child(2) {
    top: 30px;
  }
  /*--------------------------------------------------------------
  	nav
  --------------------------------------------------------------*/
  #globalNavBlock {
    width: 310px;
    visibility: hidden;
    opacity: 0;
    transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
  }
  #globalNavBlock #globalNav {
    padding: 100px 0 30px 20px;
  }
  #globalNavBlock #globalNav > ul {
    width: 280px;
  }
  #globalNavBlock #globalNav > ul > li > a {
    font-size: 1.15rem;
    padding: 15px 0;
  }
  /*--------------------------------------------------------------
  	footer
  --------------------------------------------------------------*/
  footer .container #footerNavBlock {
    display: none;
  }
  footer .container .sns_list {
    display: none;
  }
  /*--------------------------------------------------------------
      main
  --------------------------------------------------------------*/
  body {
    position: relative;
  }
  /*--------------------------------------------------------------
      parts
  --------------------------------------------------------------*/
  /*-------------------- title --------------------*/
  #pageTitleBlock {
    padding: 150px 0 100px;
  }
  #pageTitleBlock h2 { /*font-size:2.625rem; padding-top:50px; */
    font-size: 1.5rem;
    padding-top: 30px;
    background-size: 150px;
  }
  #pageTitleBlock p {
    font-size: 1rem;
    margin-top: 20px;
  }
  .ill_pattern * {
    position: absolute;
    background-size: contain;
    z-index: -1;
  }
  .ill_pattern li:nth-child(1) {
    width: 70ppx;
    height: 70px;
    top: 100px;
    left: calc(50% - 280px);
    background-size: contain;
  }
  .ill_pattern li:nth-child(2) {
    width: 70px;
    height: 50px;
    bottom: 40px;
    left: calc(50% + 100px);
    background-size: contain;
  }
  .headline_1 {
    margin-bottom: 90px;
  }
  .headline_1 span {
    font-size: 1.5rem;
    padding: 0 15px;
    background-size: 10px;
    line-height: 30px;
  }
  .headline_2 {
    width: 90%;
    font-size: 1.5rem;
    line-height: 1.4;
    padding-bottom: 20px;
    margin: 0 auto 25px;
  }
  .lead_text {
    font-size: 1.25rem;
  }
  .lead_text_2 {
    font-size: 1rem;
  }
  /*-------------------- figure --------------------*/
  figure figcaption {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .note_list {
    font-size: 0.875rem;
    margin-top: 20px;
  }
  /*-------------------- breadcrumb --------------------*/
  /*-------------------- anchor_nav --------------------*/
  /*-------------------- button --------------------*/
  .but_more a {
    width: 300px;
    font-size: 1rem;
    border-radius: 40px;
    padding: 15px 40px;
    background-size: 18px;
  }
  /*-------------------- box --------------------*/
  /*-------------------- modal --------------------*/
  /*-------------------- table --------------------*/
  /*-------------------- list --------------------*/
  /* adjust_box */
  /*-------------------- 記事リスト --------------------*/
  /* news */
  .archive_list > li a {
    display: block;
  }
  .archive_list > li a time {
    width: 100%;
  }
  .archive_list > li a h3 {
    width: 100%;
  }
  /* recipe */
  .recipe_list {
    display: block;
  }
  .recipe_list > li {
    width: 90%;
    margin: 0 auto;
  }
  .recipe_list > li a .data_box h3 {
    font-size: 1.1rem;
  }
  .recipe_list > li:not(:last-child) {
    margin-bottom: 20px;
  }
  /*-------------------- text --------------------*/
  /*-------------------- Gutenberg --------------------*/
  /* iframe */
  /*-------------------- transform --------------------*/
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

      一覧ページ 【archive】

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*--------------------------------------------------------------
  	pagination
  --------------------------------------------------------------*/
  /* <  > */
  .pagination_prev_next_arrow {
    margin-bottom: 45px;
  }
  /* 1234 */
  .pagination ul li {
    min-width: 20px;
  }
  .pagination ul li a {
    font-size: 1.2rem;
    width: 20px;
  }
  .pagination ul li a.pager {
    line-height: 20px;
  }
  .pagination ul li.active {
    width: 22px;
  }
  .pagination #prevNo,
  .pagination #nextNo {
    width: calc(5rem + 20px);
  }
  .pagination a.prev {
    padding-left: 20px;
    background-size: 15px;
  }
  .pagination a.next {
    padding-right: 20px;
    background-size: 15px;
  }
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

        404 【404】

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  #notfoundBlock {
    margin: 180px auto;
  }
  #notfoundBlock h2 {
    font-size: 3rem;
    line-height: 1;
  }
  #notfoundBlock .but_more a {
    width: 300px;
  }
}/*# sourceMappingURL=style.css.map */