@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #444444;
  overflow-x: hidden;
}
@media screen and (min-width: 640px) {
  body {
    font-size: 16px;
  }
}

#main {
  width: 100%;
  margin-bottom: 60px;
}

#sub_title_sec {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 160px;
  max-height: 300px;
  margin-bottom: 40px;
  padding: 0 20px 0;
  font-weight: 700;
  aspect-ratio: auto;
  background: #F9F9F9 url(../img/header.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 6%;
}
@media screen and (min-width: 640px) {
  #sub_title_sec {
    min-height: 240px;
    margin-bottom: 60px;
    aspect-ratio: 683/120;
    padding: 0 30px;
    background-size: cover;
  }
}
@media screen and (min-width: 960px) {
  #sub_title_sec {
    padding: 0 3.1%;
  }
}

.sub_h2 {
  font-size: 30px;
  color: #0066dd;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .sub_h2 {
    font-size: 48px;
  }
}

.sub_main_sec {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .sub_main_sec {
    padding: 0 30px;
  }
}

.sub_main_sec_container {
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .sub_main_sec_container {
    margin-bottom: 60px;
  }
}

.max_w_705 {
  max-width: 705px;
  margin: 0 auto;
}

.max_w_425 {
  max-width: 425px;
  margin: 0 auto;
}

.max_w_285 {
  max-width: 285px;
  margin: 0 auto;
}

.width705 {
  width: 705px;
  margin: 0 auto;
}

.scroll-x {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #C1C1C1 none;
}
.scroll-x::-webkit-scrollbar {
  height: 6px;
  margin-top: 6px;
}
.scroll-x::-webkit-scrollbar-track {
  background: none;
}
.scroll-x::-webkit-scrollbar-thumb {
  background: #C1C1C1;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.sub_h3,
.sub_h4,
.sub_h5,
.sub_h6 {
  display: inline-block;
}

.sub_h3 {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 6px double #0066dd;
  margin-bottom: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 640px) {
  .sub_h3 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

.sub_h4 {
  position: relative;
  color: #063871;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
}
@media screen and (min-width: 640px) {
  .sub_h4 {
    font-size: 26px;
    margin-bottom: 30px;
    padding-left: 14px;
  }
}
.sub_h4::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 80%;
  left: 0;
  bottom: 2px;
  background-color: #063871;
}
@media screen and (min-width: 640px) {
  .sub_h4::before {
    width: 8px;
    height: 80%;
    bottom: 6%;
  }
}

.sub_h5 {
  position: relative;
  color: #0066dd;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 18px;
  gap: 6px;
}
@media screen and (min-width: 640px) {
  .sub_h5 {
    font-size: 22px;
    padding-left: 22px;
  }
}
.sub_h5::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 8px;
  border: 3px solid #0066dd;
}
@media screen and (min-width: 640px) {
  .sub_h5::before {
    width: 16px;
    height: 16px;
    border-width: 4px;
  }
}

.sub_h6 {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #7A7A7A;
  margin-bottom: 16px;
  padding-bottom: 2px;
}
@media screen and (min-width: 640px) {
  .sub_h6 {
    font-size: 20px;
  }
}

.text,
.entry-content p {
  text-align: justify;
}

.text_strong {
  font-weight: 500;
}

.text_small {
  font-size: 80%;
}

.text_centor {
  text-align: center;
}

.text_right {
  text-align: right;
}

.nowrap {
  display: inline-block;
}

.entry-content p {
  margin-bottom: 1.6em;
}

.text_caution {
  font-size: 0.8em;
  color: #EF874B;
  font-weight: 700;
}

p > a,
a.ex_link {
  color: #0066dd;
}
p > a::after,
a.ex_link::after {
  display: inline-block;
  width: 1.4em;
  height: 1em;
  background-image: url("../img/external_link_icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
p > a:hover,
a.ex_link:hover {
  text-decoration: underline;
}

a.anchor_link {
  color: #0066dd;
}

.table_wrap {
  overflow: auto;
  width: 100%;
  overflow-x: scroll;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: #C1C1C1 none;
}
.table_wrap::-webkit-scrollbar {
  height: 6px;
  margin-top: 6px;
}
.table_wrap::-webkit-scrollbar-track {
  background: none;
}
.table_wrap::-webkit-scrollbar-thumb {
  background: #C1C1C1;
}

.table {
  color: #7A7A7A;
  font-size: 12px;
  width: 100%;
  min-width: 640px;
}
@media screen and (min-width: 640px) {
  .table {
    font-size: 14px;
  }
}
.table tr {
  border-top: solid 1px #7A7A7A;
  border-bottom: solid 1px #7A7A7A;
}
.table thead {
  background-color: #F9F9F9;
}
.table tbody th {
  color: #0066dd;
}
.table th,
.table td {
  padding: 18px;
}

.table_small {
  min-width: auto;
}

.ol li,
.ul li {
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}
@media screen and (min-width: 640px) {
  .ol li,
  .ul li {
    margin-bottom: 20px;
  }
}

.li_title {
  margin-bottom: 10px;
}

.ul {
  padding-left: 16px;
}
.ul li::before {
  position: relative;
  top: 0.5em;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #7A7A7A;
  content: "";
}
@media screen and (min-width: 640px) {
  .ul li::before {
    width: 10px;
    height: 10px;
  }
}

.ul_caution li {
  font-size: 0.8em;
}
.ul_caution li::before {
  top: 0;
  color: #EF874B;
  background-color: transparent;
  content: "※";
}

.ol {
  counter-reset: count 0;
}
.ol li::before {
  position: relative;
  flex-shrink: 0;
  text-align: right;
  font-weight: 700;
  width: 1.6rem;
  color: #0066dd;
  content: "(" counter(count) ")";
  counter-increment: count 1;
}

.ol-inner1 li::before {
  color: #444444;
}

.ol_caution li {
  font-size: 0.8em;
}
.ol_caution li::before {
  width: 3em;
  color: #EF874B;
  content: "※注" counter(count);
  counter-increment: count 1;
}

.img_cover {
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
}
.img_cover img {
  display: block;
  width: auto;
  height: 100%;
}

.img_contain {
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
}
.img_contain img {
  display: block;
  width: 100%;
  height: auto;
}

.caption {
  margin-top: 6px;
  color: #7A7A7A;
  font-size: 0.9em;
}

.movie_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 640px) {
  .button_wrap {
    flex-direction: row;
    justify-content: center;
  }
}
.button_wrap .button01,
.button_wrap .button02 {
  margin-bottom: 12px;
}
@media screen and (min-width: 640px) {
  .button_wrap .button01,
  .button_wrap .button02 {
    margin: 0;
  }
}

.button_wrap_col1 {
  flex-direction: column;
  gap: 10px;
}

.button_wrap_col2 {
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  height: 100%;
  gap: 6% 6%;
}
.button_wrap_col2 .button01,
.button_wrap_col2 .button02 {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .button_wrap_col2 .button01,
  .button_wrap_col2 .button02 {
    width: 47%;
  }
}

.button_wrap_prewnext {
  position: relative;
  height: 36px;
}
.button_wrap_prewnext .button02 {
  position: absolute;
  right: 0;
}
.button_wrap_prewnext .button02.button02_before {
  right: auto;
  left: 0;
}

.button_wrap_right {
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
}
.button_wrap_right .button01,
.button_wrap_right .button02 {
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .button_wrap_right .button01,
  .button_wrap_right .button02 {
    margin: 0;
  }
}

.button01 {
  display: inline-block;
  position: relative;
  border: 2px solid;
  border-radius: 6rem;
  margin: 0 auto;
  transition: 0.3s;
  overflow: hidden;
  flex-shrink: 0;
}
.button01::before {
  content: "";
  position: absolute;
  width: 0;
  height: 110%;
  background-color: #0066dd;
  transition: 0.3s;
  z-index: 1;
}
.button01 > a {
  display: flex;
  position: relative;
  padding: 10px 16px;
  align-items: center;
  z-index: 2;
}
.button01 > a::after {
  content: "";
  background-image: url(../img/arrow_fish_blue.svg);
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 1rem;
  height: 0.6rem;
  right: 0;
}
.button01 > a:hover {
  opacity: 1;
}
.button01:hover {
  color: #ffffff;
  background-color: #0066dd;
}
.button01:hover::before {
  width: 110%;
}
.button01:hover > a::after {
  background-image: url(../img/arrow_fish_white.svg);
}

.button01_name {
  padding-right: 1rem;
  font-weight: 700;
}

.button01_blue {
  color: #0066dd;
  border-color: #0066dd;
}

.button01_deepblue {
  color: #063871;
  border-color: #063871;
}
.button01_deepblue > a::after {
  background-image: url(../img/arrow_fish_deepblue.svg);
}
.button01_deepblue::before, .button01_deepblue:hover {
  background-color: #063871;
}

.button01_orange {
  color: #EF874B;
  border-color: #EF874B;
}
.button01_orange > a::after {
  background-image: url(../img/arrow_fish_orange.svg);
}
.button01_orange::before, .button01_orange:hover {
  background-color: #EF874B;
}

.button01_deepred {
  color: #951414;
  border-color: #951414;
}
.button01_deepred > a::after {
  background-image: url(../img/arrow_fish_deepred.svg);
}
.button01_deepred::before, .button01_deepred:hover {
  background-color: #951414;
}

.button02 {
  border-bottom: 1px solid #EF874B;
}
.button02 > a {
  display: flex;
  padding: 10px 16px;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  transition: 0.1s;
}
.button02 > a > .button01_name,
.button02 > a > .button02_name {
  padding-right: 12px;
  transition: 0.1s;
}
.button02 > a > .button01_name > .text_small,
.button02 > a > .button02_name > .text_small {
  color: #7A7A7A;
}
.button02 > a::after {
  content: "";
  background-image: url(../img/arrow_fish_blue.svg);
  background-repeat: no-repeat;
  width: 1rem;
  height: 0.6rem;
  right: 0;
  flex-shrink: 0;
  margin-left: 0;
  transition: 0.1s;
}
.button02:hover > a {
  padding-right: 5px;
}
.button02:hover > a::after {
  margin-left: 11px;
}

.button02_before > a > .button01_name,
.button02_before > a > .button02_name {
  padding-left: 12px;
  padding-right: 0;
  transition: 0.1s;
}
.button02_before > a::before {
  content: "";
  background-image: url(../img/arrow_fish_blue.svg);
  rotate: 180deg;
  background-repeat: no-repeat;
  width: 1rem;
  height: 0.6rem;
  left: 0;
  margin-right: 0;
  transition: 0.1s;
}
.button02_before > a::after {
  display: none;
}
.button02_before:hover > a {
  padding-right: 16px;
  padding-left: 5px;
}
.button02_before:hover > a::before {
  margin-right: 11px;
}

.button02_name {
  padding-right: 1rem;
  font-weight: 700;
}

.button02_blue {
  border-color: #0066dd;
}

.button02_orange {
  border-color: #EF874B;
}
.button02_orange > a::after {
  background-image: url(../img/arrow_fish_orange.svg);
}

.button02_deepblue {
  border-color: #063871;
}
.button02_deepblue > a::after {
  background-image: url(../img/arrow_fish_deepblue.svg);
}

.button02_white {
  border-color: #ffffff;
  color: #ffffff;
}
.button02_white > a::after {
  background-image: url(../img/arrow_fish_white.svg);
}

.col_2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 20px 6%;
}
@media screen and (min-width: 640px) {
  .col_2 {
    flex-direction: row;
  }
}

.col_2.center {
  justify-content: center;
}
@media screen and (min-width: 640px) {
  .col_2.center .item_col_2_item {
    margin: 0;
  }
}

.col_2_item {
  width: 100%;
  gap: 20px 6%;
}
@media screen and (min-width: 640px) {
  .col_2_item {
    width: 47%;
  }
}

.col_3 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
@media screen and (min-width: 480px) {
  .col_3 {
    flex-direction: row;
  }
}

.col_3_item {
  width: 100%;
}
.col_3_item.img_contain {
  justify-content: flex-start;
}
@media screen and (min-width: 480px) {
  .col_3_item {
    width: 46%;
  }
}
@media screen and (min-width: 640px) {
  .col_3_item {
    width: 30%;
  }
}

.sub_date {
  font-size: 14px;
  color: #0066dd;
  margin-bottom: 10px;
}
@media screen and (min-width: 640px) {
  .sub_date {
    font-size: 18px;
  }
}

.sub_date_number {
  margin-left: 14px;
  color: #7A7A7A;
}

.sub_archive_box {
  position: relative;
  width: 10em;
  margin-bottom: 20px;
  border: #C1C1C1 2px solid;
}
.sub_archive_box:after {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0;
  border-top: 9px solid #C1C1C1;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  pointer-events: none;
  content: "";
}
.sub_archive_box select,
.sub_archive_box option {
  width: 100%;
  padding: 4px 10px;
  font-weight: 700;
  color: #7A7A7A;
  cursor: pointer;
}
.sub_archive_box select {
  display: inline-block;
  outline: none;
}
.sub_archive_box option {
  padding: 10px;
}

.search_result_navi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #0066dd;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #0066dd;
}
.nav-links > li {
  height: 30px;
}

.page-numbers:not(.prev, .dots, .next) {
  display: inline-block;
  border: #0066dd solid 2px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.page-numbers:not(.prev, .dots, .next).current {
  color: #ffffff;
  background-color: #0066dd;
}

.dots {
  display: inline-block;
  height: 30px;
}

.prev,
.next {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/arrow_fish_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.prev {
  transform: rotate(180deg);
}

span.prev,
span.next {
  display: none;
}

.directLink a,
.directLink span {
  display: inline-block;
  width: 20px;
  height: 26px;
  text-align: center;
}
.directLink a:hover, .directLink a.on,
.directLink span:hover,
.directLink span.on {
  color: #ffffff;
  background-color: #0066dd;
}

.sub_summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 8%;
}

.sub_summary_item {
  width: 100%;
  transition: 0.1s;
}
.sub_summary_item:hover {
  opacity: 0.7;
}
@media screen and (min-width: 480px) {
  .sub_summary_item {
    width: 46%;
  }
}
.sub_summary_item a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sub_summary_item_txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.sub_summary_item_txt::after {
  display: flex;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #0066dd;
  background-image: url(../img/arrow_fish_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  content: "";
}

.sub_summary_item_img {
  border: 1px solid #C1C1C1;
  box-sizing: border-box;
  margin-top: auto;
}

.sub_summary_item_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.news_ul {
  width: 100%;
  border-top: 1px solid #C1C1C1;
}

.news_ul_li {
  width: 100%;
  border-bottom: 1px solid #C1C1C1;
}
.news_ul_li:hover .news_ul_li_title {
  text-decoration: underline;
}

.news_ul_li_a_inner {
  display: block;
  position: relative;
  gap: 12px;
  width: 100%;
  padding: 10px 34px 10px 0;
}
@media screen and (min-width: 640px) {
  .news_ul_li_a_inner {
    display: flex;
  }
}
.news_ul_li_a_inner::after {
  position: absolute;
  width: 20px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 8px;
  background-image: url(../img/arrow_fish_glay.svg);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.news_ul_li_date {
  display: block;
  flex-shrink: 0;
  font-size: 16px;
  color: #0066dd;
  font-weight: 700;
}

.news_ul_li_title {
  display: block;
}

.kaki_table .pass td {
  color: #063871;
  background-color: rgba(0, 102, 221, 0.05);
  font-weight: 500;
}
.kaki_table .regulation td {
  color: #ffffff;
  background-color: #EF874B;
  font-weight: 500;
}
.kaki_table td.shinkokyoku,
.kaki_table td.gyokyou {
  color: #7A7A7A;
  background-color: #ffffff;
  font-weight: 400;
}

.gallery_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
}

.gallery_list_item {
  background-color: #F9F9F9;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .gallery_list_item {
    width: 49%;
  }
}
@media screen and (min-width: 640px) {
  .gallery_list_item {
    width: 32%;
  }
}
.gallery_list_item > a {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 100%;
}

.gallery_list_item_img {
  width: 100%;
  margin-bottom: 10px;
}
.gallery_list_item_img img {
  max-width: 300px;
}

.gallery_list_text_wrap {
  display: flex;
  flex-grow: 100;
  padding: 0 12px 10px;
  margin-top: auto;
  flex-direction: column;
}
.gallery_list_text_wrap .caption {
  margin-top: auto;
}

.gallery_list_item_title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 16px;
  color: #0066dd;
  line-height: 1.2em;
}
@media screen and (min-width: 640px) {
  .gallery_list_item_title {
    font-size: 18px;
  }
}

.cpn_bnr_item.summary > a {
  flex-direction: column;
}
.cpn_bnr_item.summary .cpn_bnr_item_img {
  width: 100%;
}
.cpn_bnr_item.summary .cpn_bnr_item_txt {
  width: 100%;
}

body.active {
  height: 100%;
}

#glonavi-menu {
  position: fixed !important;
}

.menu {
  position: fixed !important;
  padding: 1em 0 !important;
  background-color: #eeeeee;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 640px) {
  .menu {
    padding: 1em 2em;
  }
}

.menu-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

#menu_top {
  margin-top: 2em;
  margin-bottom: 2em;
  padding-left: 30px;
}

.menu-item {
  color: #444444;
  font-size: 18px;
  font-weight: 700;
}

.menu-item.main > a {
  display: block;
}

.menu-item-main-parent {
  background-color: #e5e5e4;
  margin-bottom: 2px;
  padding: 16px 30px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.menu-item-main-parent:hover, .menu-item-main-parent.is-active {
  color: #fff;
  background-color: #959595;
}

.menu-item-main-child > a {
  display: block;
  width: 100%;
  padding: 16px 30px;
}

.menu-item.orange {
  color: #DE750B;
}

.menu-item-main-parent.orange:hover, .menu-item-main-parent.orange.is-active {
  opacity: 1;
  background-color: #DE750B;
}

.menu_border {
  display: block;
  border-top: 1px solid #444444;
  margin: 0 20px;
}
@media screen and (min-width: 640px) {
  .menu_border {
    display: none;
  }
}

.menu-item.bottom {
  position: relative;
  padding: 12px 30px;
  line-height: 1.5em;
}
.menu-item.bottom > a {
  width: auto;
}

.menu_footer {
  background-color: #231815;
  color: #fff;
  padding: 40px 30px 30px;
  width: 100vw;
  position: absolute;
  left: 0;
}
.menu_footer .box-contents a {
  color: #fff;
  font-size: 12px;
}
.menu_footer .box-contents a img {
  margin-right: 0.5em;
  vertical-align: text-bottom;
}
.menu_footer .box-contents a.catalog {
  margin-right: 1.5em;
}
.menu_footer .box-contents .text {
  font-size: 10px;
  margin: 0 2em 0 0;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.menu_footer .box-contents .logo {
  display: block;
  margin: 2em auto 0;
}
@media screen and (min-width: 640px) {
  .menu_footer .box-contents .logo {
    display: inline-block;
    margin: 1em 0 0;
  }
}

.menu_footer_inner {
  text-align: center;
}

#top_title_sec {
  position: relative;
  width: 100%;
}
#top_title_sec .slider-item {
  height: 86vw;
}
@media screen and (min-width: 640px) {
  #top_title_sec .slider-item {
    height: 47.61vw;
  }
}
#top_title_sec .slider-item > a {
  transition: 0.1s;
}
#top_title_sec .slider-item > a:hover {
  opacity: 0.7;
}
#top_title_sec img.slider-item-sp {
  display: block;
}
@media screen and (min-width: 640px) {
  #top_title_sec img.slider-item-sp {
    display: none;
  }
}
#top_title_sec img.slider-item-pc {
  display: none;
}
@media screen and (min-width: 640px) {
  #top_title_sec img.slider-item-pc {
    display: block;
  }
}
#top_title_sec .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_title_sec .slick-dots li button:before {
  font-size: 18px;
  top: 6px;
  color: #0066dd;
}
#top_title_sec .slick-dots li.slick-active button:before {
  color: #063871;
}

.top_scroll_border_wrap {
  position: relative;
  height: 60px;
}

.top_scroll_border {
  position: absolute;
  width: 2px;
  height: 60px;
  animation: top_scroll_border 2s infinite linear normal;
  background-color: #ffffff;
}

@keyframes top_scroll_border {
  0% {
    top: 0;
    height: 60px;
  }
  55% {
    top: 60px;
    height: 0;
  }
  65% {
    top: 0;
    height: 0;
  }
  100% {
    top: 0;
    height: 60px;
  }
}
.top_scroll_icon {
  position: absolute;
  bottom: 20px;
  left: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 7%;
  max-width: 24px;
  height: auto;
  gap: 20px;
}
.top_scroll_icon:hover::before {
  height: 10px;
}

img.top_scroll_icon_arrow {
  transform: rotate(90deg);
}

#top_title_sec {
  margin-bottom: 60px;
}
@media screen and (min-width: 640px) {
  #top_title_sec {
    margin-bottom: 90px;
  }
}

.top_main_sec {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.sec_flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (min-width: 640px) {
  .sec_flex {
    flex-direction: row;
    gap: 3%;
  }
}

.sec_flex_item {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .sec_flex_item {
    width: 47%;
  }
}

.top_h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #0066dd;
}
@media screen and (min-width: 640px) {
  .top_h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.top_h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (min-width: 640px) {
  .top_h3 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

.top_h_center {
  text-align: center;
}

.top_h_short_mb {
  margin-bottom: 14px;
}

.h_fish_bnr_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  max-height: auto;
  padding-bottom: 10px;
}
@media screen and (min-width: 640px) {
  .h_fish_bnr_wrap {
    overflow-x: hidden;
    flex-direction: row;
    height: 35.46vw;
    max-height: 448px;
  }
}

.h_fish_bnr {
  width: 100%;
  height: 53vw;
  transition: 0.3s;
  text-align: center;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media screen and (min-width: 640px) {
  .h_fish_bnr {
    width: 33.3333333333%;
    height: auto;
  }
}
.h_fish_bnr > a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 3%;
}
.h_fish_bnr > a::after {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 10px;
  content: "";
  background-image: url(../img/arrow_border_white.svg);
  background-repeat: no-repeat;
}
.h_fish_bnr:hover {
  opacity: 0.7;
  background-size: 110%;
}

.h_fish_bnr_name {
  font-size: 18px;
  font-weight: 700;
  width: 70%;
  padding: 12px;
  border: 2px solid #ffffff;
}

.h_fish_bnr_sake {
  background-image: url(../img/top_fish01.jpg);
}
.h_fish_bnr_sake .h_fish_bnr_name {
  background-color: rgba(6, 56, 113, 0.5);
}

.h_fish_bnr_hotate {
  background-image: url(../img/top_fish02.jpg);
}
.h_fish_bnr_hotate .h_fish_bnr_name {
  background-color: rgba(119, 66, 11, 0.5);
}

.h_fish_bnr_konbu {
  background-image: url(../img/top_fish03.jpg);
}
.h_fish_bnr_konbu .h_fish_bnr_name {
  background-color: rgba(11, 42, 4, 0.5);
}

#top_cooking .top_h2 {
  color: #EF874B;
}

.col_2.top_cooking {
  align-items: center;
  justify-content: center;
}

.top_cooking_img {
  width: 100%;
  max-width: 500px;
  height: 100%;
}
@media screen and (min-width: 640px) {
  .top_cooking_img {
    width: 55%;
  }
}
.top_cooking_img > img {
  width: 100%;
  max-width: 100%;
}

.top_cooking_contents {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .top_cooking_contents {
    width: 40%;
  }
}

.top_cooking_button_wrap .button02 {
  margin-bottom: 12px;
}

#top_action {
  padding: 0;
}
#top_action .top_h2 {
  padding: 0 30px;
  color: #EF874B;
}

.action_bnr {
  flex-shrink: 0;
  width: 250px;
}
@media screen and (min-width: 640px) {
  .action_bnr {
    width: 30%;
  }
}
.action_bnr > a {
  display: block;
  height: 100%;
}
.action_bnr > a:hover {
  opacity: 1;
}
.action_bnr:hover .action_bnr_img img {
  opacity: 0.7;
}

.action_bnr_bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.action_bnr_bg::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  display: block;
  width: 100%;
  height: 80%;
  content: "";
  background-color: #EF874B;
}

.action_bnr_wrap {
  position: relative;
  z-index: 2;
  display: flex;
  overflow-x: scroll;
  padding: 0 30px 30px;
  gap: 30px;
}
@media screen and (min-width: 640px) {
  .action_bnr_wrap {
    overflow-x: hidden;
    justify-content: space-between;
    gap: 3%;
  }
}

.common-x-scroll {
  overflow-x: scroll;
}

.action_bnr_img {
  margin-bottom: 20px;
  background-color: #ffffff;
}
.action_bnr_img img {
  transition: 0.1s;
}

.action_bnr_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.action_bnr_detail {
  color: #ffffff;
}

.news_head_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid #0066dd;
}
.news_head_wrap .top_h3 {
  display: inline-block;
  margin-bottom: 0;
}
.news_head_wrap .button01 {
  margin: 0;
}
.news_head_wrap .button01 > a {
  padding: 4px 16px;
}

.news_ul_wrap {
  overflow-y: scroll;
  height: 9.6rem;
}

.news_ul_li {
  margin-bottom: 16px;
}
.news_ul_li > a {
  display: flex;
  gap: 0.8rem;
}

.news_date {
  flex-shrink: 0;
}

#top_cpn {
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(0, 102, 221, 0.05);
}

.cpn_bnr_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (min-width: 640px) {
  .cpn_bnr_wrap {
    flex-direction: row;
    gap: 20px 3%;
  }
}

.cpn_bnr_item {
  width: 100%;
  transition: 0.1s;
  background-color: #ffffff;
}
@media screen and (min-width: 640px) {
  .cpn_bnr_item {
    width: 48%;
  }
}
.cpn_bnr_item:hover {
  opacity: 0.5;
}
.cpn_bnr_item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 640px) {
  .cpn_bnr_item > a {
    flex-direction: row;
  }
}

.cpn_bnr_item_img {
  width: 100%;
  background: #C1C1C1;
}
@media screen and (min-width: 640px) {
  .cpn_bnr_item_img {
    width: 50%;
  }
}

.cpn_bnr_item_txt {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
}
@media screen and (min-width: 640px) {
  .cpn_bnr_item_txt {
    width: 50%;
  }
}

.cpn_bnr_item_txt_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0066dd;
}

.top_catch {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (min-width: 640px) {
  .top_catch {
    font-size: 26px;
  }
}

#top_about {
  padding: 0;
}
#top_about .top_main_sec_container {
  padding: 0 30px;
}

.top_about_h2 {
  margin-bottom: 10px;
}

.top_about_img {
  overflow-x: hidden;
  margin-bottom: 30px;
}
@media screen and (min-width: 640px) {
  .top_about_img {
    margin-bottom: 60px;
  }
  .top_about_img > img {
    width: 100%;
    height: auto;
  }
}
.top_about_img > img {
  width: auto;
}

#top_service {
  padding-right: 0;
  padding-left: 0;
  background-color: rgba(0, 102, 221, 0.05);
}
@media screen and (min-width: 640px) {
  #top_service {
    padding-right: 30px;
  }
}
#top_service .top_main_sec_container {
  align-self: center;
}

.top_service_h2 {
  margin-bottom: 10px;
}

.top_service_img {
  overflow-x: hidden;
  flex-shrink: 0;
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 640px) {
  .top_service_img {
    width: 50%;
    height: auto;
  }
  .top_service_img > img {
    width: auto;
  }
}
.top_service_img > img {
  width: 100%;
  height: auto;
}

.top_service_contents {
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
}
@media screen and (min-width: 640px) {
  .top_service_contents {
    padding-right: 0;
    padding-left: 0;
  }
}

#sub_title_sec.sub_title_sec_cooking {
  margin-bottom: 0;
}

.sub_main_sec_cooking_top {
  max-width: initial;
  max-width: auto;
  padding: 0;
}

.cooking_top_main {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 640px) {
  .cooking_top_main {
    flex-direction: row;
  }
}

.cooking_top_main_txt {
  width: 100%;
  padding: 90px 30px 20px 30px;
}
@media screen and (min-width: 640px) {
  .cooking_top_main_txt {
    width: 50%;
    padding: 90px 40px 20px 30px;
  }
}

.cooking_top_main_txt_inner {
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .cooking_top_main_txt_inner {
    margin: 0 0 0 auto;
  }
}

.cooking_top_main_txt_title {
  position: relative;
  margin-bottom: 60px;
  padding: 18px;
  text-align: center;
}
.cooking_top_main_txt_title::before, .cooking_top_main_txt_title::after {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url(../cooking/img/cooking_top_kakko.png);
  background-size: contain;
}
.cooking_top_main_txt_title::before {
  top: 0;
  left: 0;
}
.cooking_top_main_txt_title::after {
  right: 0;
  bottom: 0;
  background-image: url(../cooking/img/cooking_top_tojikakko.png);
}

.cooking_h3_catch {
  font-size: 20px;
  font-weight: 500;
  color: #7A7A7A;
}

.cooking_h3 {
  font-size: 36px;
  font-weight: 700;
  color: #EF874B;
}

.cooking_top_main_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 20px 0 20px;
  background-image: url(../cooking/img/cooking_top_main.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 640px) {
  .cooking_top_main_img {
    width: 50%;
    padding: 90px 30px 20px 40px;
  }
}
.cooking_top_main_img::after {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  content: "";
  opacity: 0.7;
  background-color: #EF874B;
  filter: blur(5px);
}

.cooking_top_main_img_inner {
  position: relative;
  z-index: 2;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .cooking_top_main_img_inner {
    max-width: 450px;
    margin: 0 auto 0 0;
  }
}

.cooking_top_main_img_border {
  box-sizing: border-box;
  border: 4px solid #ffffff;
}

.cooking_top_main_button .button02 {
  width: 100%;
}

.cooking_ranking_h3 {
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
  color: #4E8E40;
}
.cooking_ranking_h3::before, .cooking_ranking_h3::after {
  flex-grow: 1;
  height: 1px;
  content: "";
  background-color: #4E8E40;
}
.cooking_ranking_h3::before {
  margin-right: 1rem;
}
.cooking_ranking_h3::after {
  margin-left: 1rem;
}

.cooking_ranking_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cooking_ranking {
  width: 100%;
}
.cooking_ranking > a {
  display: block;
}
@media screen and (min-width: 640px) {
  .cooking_ranking > a {
    display: flex;
  }
}
.cooking_ranking > a .cooking_ranking_img img {
  transition: 0.1s;
}
.cooking_ranking > a:hover .cooking_ranking_img img {
  opacity: 0.5;
}

.cooking_ranking_img {
  display: flex;
  overflow: hidden;
  overflow: hidden;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .cooking_ranking_img {
    width: 30%;
    min-width: 300px;
  }
}
.cooking_ranking_img img {
  display: block;
  width: 100%;
  max-width: 315px;
  height: auto;
}
@media screen and (min-width: 640px) {
  .cooking_ranking_img img {
    width: auto;
    height: 100%;
  }
}

.cooking_ranking_txt {
  margin-top: -60px;
  padding: 80px 20px 20px 20px;
  background-color: #F9F9F9;
}
@media screen and (min-width: 640px) {
  .cooking_ranking_txt {
    flex-grow: 2;
    margin: 0;
    padding: 20px;
  }
}

.cooking_ranking_num {
  font-weight: 700;
  color: #7A7A7A;
}

.cooking_ranking_num_1 {
  position: relative;
  padding-left: 24px;
}
.cooking_ranking_num_1::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 100%;
  content: "";
  background-image: url(../cooking/img/cooking_ranking_crown.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cooking_bnr {
  align-items: center;
  gap: 20px;
}

.cooking_ranking_name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #EF874B;
}

.cooking_bnr_item {
  max-width: 374px;
}

.cooking_search_h3 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #4E8E40;
}

.cooking_search_wrap {
  border-bottom: 1px solid #C1C1C1;
}

.cooking_search {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  border-top: 1px solid #C1C1C1;
}
@media screen and (min-width: 640px) {
  .cooking_search {
    flex-direction: row;
  }
}

.cooking_search_sub {
  padding: 0 0 30px;
  border-top: none;
}

.cooking_search_type {
  font-weight: 700;
  flex-shrink: 0;
  width: 9rem;
  margin-bottom: 14px;
  color: #EF874B;
}
@media screen and (min-width: 640px) {
  .cooking_search_type {
    margin-bottom: 0;
  }
}

.recipe_check:checked + label:before {
  border: 2px solid #EF874B;
  background-color: #EF874B;
}

.cooking_search_form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.cooking_search_form label {
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-left: 28px;
  color: #7A7A7A;
}
.cooking_search_form label:before, .cooking_search_form label:after {
  position: absolute;
  display: block;
  content: "";
}
.cooking_search_form label:before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  border: 2px solid #C1C1C1;
}
.cooking_search_form label:after {
  top: 5px;
  left: 6px;
  width: 8px;
  height: 12px;
  transform: rotate(45deg);
  opacity: 1;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.cooking_search_type2 {
  font-weight: 700;
  width: 100%;
  color: #7A7A7A;
}

.cooking_search_box {
  display: flex;
}

.cooking_search_button {
  transition: 0.1s;
  background-color: #EF874B;
}
.cooking_search_button > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  gap: 10px;
}
.cooking_search_button > a::after {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(../img/search_white.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.cooking_search_button:hover {
  opacity: 0.7;
}

.cooking_search_button_inner {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

.cooking_search_bnr {
  display: none;
}
@media screen and (min-width: 640px) {
  .cooking_search_bnr {
    display: block;
  }
}

.search_fold_button {
  font-weight: 700;
  position: relative;
  margin: 0 0 0 auto;
  padding: 6px 48px 6px 48px;
  color: #ffffff;
  background-color: #EF874B;
}
.search_fold_button::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 16px;
  height: 16px;
  content: "";
  transform: translateY(-50%);
  background-image: url(../img/search_white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.search_fold_button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0.8em;
  height: 0.8em;
  content: "";
  transform: translateY(-75%) rotate(45deg);
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.search_fold_button.selected::after {
  transform: translateY(-25%) rotate(-135deg);
}

.search_cooking_result {
  margin-bottom: 20px;
}

.search_cooking {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 5%;
}
.search_cooking::after {
  display: block;
  width: 30%;
  content: "";
}

.search_cooking_item {
  position: relative;
  width: 100%;
  border: 1px solid #C1C1C1;
}
@media screen and (min-width: 480px) {
  .search_cooking_item {
    width: 46%;
  }
}
@media screen and (min-width: 640px) {
  .search_cooking_item {
    width: 30%;
  }
}

.search_cooking_item_img {
  transition: 0.1s;
}
.search_cooking_item_img:hover {
  opacity: 0.7;
}

.search_cooking_item_txt {
  margin-bottom: 10px;
  padding: 10px 10px 50px;
}

.search_cooking_item_name {
  font-weight: 700;
}
.search_cooking_item_name:hover {
  text-decoration: underline;
}

.search_cooking_item_tag_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 0.5rem;
}

.search_cooking_item_tag {
  font-size: 12px;
  padding: 0 8px;
  color: #ffffff;
  border-radius: 30px;
  background-color: #C1C1C1;
}

.search_cooking_button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: right;
}
.search_cooking_button .button02 {
  width: 150px;
}
.search_cooking_button .button02_name {
  font-size: 12px;
}

.cooking_recipe_h3 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.cooking_recipe_text {
  padding: 0 30px;
  text-align: center;
}

.cooking_recipe_img {
  position: relative;
  overflow: hidden;
}

.cooking_recipe_img_bg {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.cooking_recipe_img_bg img {
  position: relative;
  z-index: 1;
}
.cooking_recipe_img_bg::before {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  display: block;
  content: "";
  opacity: 0.5;
  background-color: #ffffff;
  filter: blur(5px);
}

.cooking_recipe_img_main {
  position: relative;
  z-index: 2;
  max-height: 240px;
}

.cooking_recipe_mov {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.cooking_recipe_mov > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cooking_recipe_col2 {
  display: block;
}
@media screen and (min-width: 640px) {
  .cooking_recipe_col2 {
    display: flex;
    gap: 30px;
  }
}

.cooking_recipe_col2_l {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (min-width: 640px) {
  .cooking_recipe_col2_l {
    width: 70%;
    margin-bottom: 0;
  }
}

.cooking_recipe_col2_r {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .cooking_recipe_col2_r {
    width: 30%;
  }
}

.cooking_recipe_material {
  margin-bottom: 60px;
  padding: 40px 30px;
  background-color: #F9F9F9;
}

.cooking_recipe_h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #EF874B;
}

.cooking_recipe_h4_serve {
  font-size: 16px;
  font-weight: 400;
  color: #444444;
}

.cooking_recipe_h4_sub {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cooking_recipe_material_wrap {
  margin-bottom: 30px;
}
.cooking_recipe_material_wrap:last-of-type {
  margin-bottom: 0;
}

.cooking_recipe_material_item {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cooking_recipe_material_item:last-of-type {
  margin-bottom: 0;
}
.cooking_recipe_material_item::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  content: "";
  transform: translateY(-50%);
  background-image: url(../cooking/img/recipe_dots.png);
}

.cooking_recipe_material_name,
.cooking_recipe_material_amount {
  position: relative;
  z-index: 1;
  background-color: #F9F9F9;
}

.cooking_recipe_material_name {
  max-width: 60%;
  padding-right: 1em;
}

.cooking_recipe_material_amount {
  max-width: 30%;
  padding-left: 1em;
}

.cooking_recipe_howto_ol {
  counter-reset: count 0;
}
.cooking_recipe_howto_ol li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 0.5em;
}
.cooking_recipe_howto_ol li::before {
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  content: counter(count);
  counter-increment: count 1;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  background-color: #EF874B;
}

.cooking_recipe_caution_ul li {
  margin-bottom: 10px;
}
.cooking_recipe_caution_ul li:last-of-type {
  margin-bottom: 0;
}

.cooking_recipe_osusume_h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.cooking_recipe_osusume {
  padding-right: 20px;
  padding-left: 20px;
  border-right: 2px solid #EF874B;
  border-left: 2px solid #EF874B;
}
@media screen and (min-width: 640px) {
  .cooking_recipe_osusume {
    padding-right: 0;
    border-right: 0;
  }
}

.cooking_recipe_osusume_item {
  padding-bottom: 30px;
}
.cooking_recipe_osusume_item:first-of-type {
  margin-bottom: 30px;
  border-bottom: 1px solid #EF874B;
}

.cooking_recipe_osusume_group {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cooking_recipe_osusume_link:hover .cooking_recipe_osusume_name {
  text-decoration: underline;
}
.cooking_recipe_osusume_link:hover .cooking_recipe_osusume_img {
  opacity: 0.7;
}

.cooking_recipe_osusume_name {
  margin-bottom: 10px;
  transition: 0.1s;
  color: #EF874B;
}

.cooking_recipe_osusume_img {
  max-width: 315px;
  margin: 0 auto;
  margin-bottom: 10px;
  transition: 0.1s;
}
@media screen and (min-width: 640px) {
  .cooking_recipe_osusume_img {
    max-width: none;
  }
}

.cooking_recipe_osusume_txt {
  font-size: 14px;
}

.h_fish_index {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2%;
}

.h_fish_index_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.h_fish_index_item_large {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .h_fish_index_item_large {
    width: 48%;
  }
}

.h_fish_index_item_small {
  width: 48%;
  padding-bottom: 20px;
  border-bottom: 1px solid #C1C1C1;
}
@media screen and (min-width: 640px) {
  .h_fish_index_item_small {
    width: 32%;
  }
}
@media screen and (min-width: 800px) {
  .h_fish_index_item_small {
    width: 23%;
  }
}

.h_fish_index_item_title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 10px 10px 20px;
  background-color: #F9F9F9;
}
.h_fish_index_item_title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-color: #0066dd;
  content: "";
}

.h_fish_index_item_small .h_fish_index_item_title {
  font-size: 16px;
  padding: 6px 10px 6px 20px;
}
.h_fish_index_item_small .h_fish_index_item_title::before {
  background-color: #7A7A7A;
}

.h_fish_index_item_img {
  margin-top: auto;
}

.h_fish_index_item_small .h_fish_index_item_img {
  border: 4px solid #F9F9F9;
}

.h_fish_h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #0066dd;
  font-size: 26px;
  font-weight: 700;
  margin: 0 30px 30px 30px;
}
.h_fish_h3 span {
  flex-shrink: 0;
}
.h_fish_h3::before, .h_fish_h3::after {
  display: block;
  top: 50%;
  width: 100%;
  flex-shrink: 100;
  border-top: 2px solid #0066dd;
  height: 1px;
  content: "";
}

#sub_title_sec.sub_title_sec_h_fish {
  margin-bottom: 0;
}

.sub_main_sec_h_fish_top {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 60px;
  padding: 0;
  background-color: rgba(0, 102, 221, 0.05);
}

.h_fish_title_img {
  width: 100%;
  max-width: 705px;
  margin: 0 auto;
}
.h_fish_title_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.h_fish_area_catch {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
  color: #063871;
}
@media screen and (min-width: 640px) {
  .h_fish_area_catch {
    font-size: 18px;
    margin: 0 20px 30px;
  }
}

.h_fish_area_col2 {
  display: block;
  align-items: center;
}
@media screen and (min-width: 640px) {
  .h_fish_area_col2 {
    display: flex;
  }
}

.h_fish_area_txt {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .h_fish_area_txt {
    width: 40%;
  }
}

.h_fish_area_img {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .h_fish_area_img {
    width: 60%;
  }
}

.h_fish_area_img_cap {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 4px;
}
.h_fish_area_img_cap::before {
  display: block;
  background-image: url(../img/arrow_fish_pink.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 10px;
  transform: rotate(180deg);
  content: "";
}
.h_fish_area_img_cap.h_fish_area_img_cap2::before {
  background-image: url(../img/arrow_fish_yellow.svg);
}

.sub_main_h_fish_eiyou {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #F9F9F9;
}

.h_fish_eiyou_main {
  display: block;
}
@media screen and (min-width: 640px) {
  .h_fish_eiyou_main {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

.h_fish_h3_eiyou {
  color: #EF874B;
}
.h_fish_h3_eiyou::before, .h_fish_h3_eiyou::after {
  border-color: #EF874B;
}

.h_fish_eiyou_main_detail_title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.h_fish_eiyou_main_img {
  width: 100%;
  max-width: 423px;
  flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .h_fish_eiyou_main_img {
    width: 30%;
  }
}

.h_fish_eiyou_main_img_graph {
  margin-top: 30px;
}
@media screen and (min-width: 640px) {
  .h_fish_eiyou_main_img_graph {
    margin-top: 0;
    width: 40%;
  }
}

.eiyou_table_title {
  color: #EF874B;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.h_fish_eiyou_table .table_wrap .table {
  table-layout: fixed;
  word-break: break-word;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  border-right: 1px solid #C1C1C1;
  max-width: 100%;
}
.h_fish_eiyou_table .table_wrap .table thead {
  background-color: #EF874B;
}
.h_fish_eiyou_table .table_wrap .table thead tr {
  border: none;
}
.h_fish_eiyou_table .table_wrap .table thead th {
  color: #ffffff;
  text-align: center;
}
.h_fish_eiyou_table .table_wrap .table thead .tr_sub th {
  padding: 6px;
}
.h_fish_eiyou_table .table_wrap .table thead .th_sub {
  color: #7A7A7A;
  border-top: 1px solid #C1C1C1;
  background-color: #ffffff;
}
.h_fish_eiyou_table .table_wrap .table td, .h_fish_eiyou_table .table_wrap .table th {
  text-align: center;
  padding: 10px 4px;
  vertical-align: center !important;
}
.h_fish_eiyou_table .table_wrap .table td.td_detail, .h_fish_eiyou_table .table_wrap .table th.td_detail {
  text-align: left;
}
.h_fish_eiyou_table .table_wrap .table td {
  border-bottom: 1px solid #C1C1C1;
}
.h_fish_eiyou_table .table_wrap .table .thead_sub {
  padding: 6px;
}
.h_fish_eiyou_table .table_wrap .table th {
  color: #EF874B;
}

.th_fixed {
  position: sticky;
  width: 100px;
  left: 0;
  color: #ffffff !important;
  background-color: #3991cb;
}
@media screen and (min-width: 640px) {
  .th_fixed {
    width: 130px;
  }
}

.th_fixed_head {
  background-color: #0066dd;
}

.th_detail {
  width: 60%;
}

.eiyou_table_cap {
  color: #7A7A7A;
  text-align: right;
}

.h_fish_species_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.species_list_item {
  position: relative;
  width: 100%;
  padding: 30px 16px;
  background-color: #F0E6DC;
}
.species_list_item.species_list_item_ebi::before {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 70%;
  height: 70%;
  opacity: 0.5;
  background-image: url(../hokkaidos_fish/ebi/img/ebi_icon.svg);
  background-repeat: no-repeat;
  background-position: 100% 0%;
  content: "";
}
.species_list_item:nth-child(5n+1) .species_list_item_name {
  color: #951414;
}
.species_list_item:nth-child(5n+2) .species_list_item_name {
  color: #427A36;
}
.species_list_item:nth-child(5n+3) .species_list_item_name {
  color: #DE750B;
}
.species_list_item:nth-child(5n+4) .species_list_item_name {
  color: #4C1495;
}
.species_list_item:nth-child(5n) .species_list_item_name {
  color: #063871;
}
@media screen and (min-width: 640px) {
  .species_list_item {
    width: 48%;
  }
}

.species_list_item_inner {
  position: relative;
  z-index: 1;
}

.species_list_item_name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.species_list_item_name_small {
  font-size: 20px;
}

.species_list_item_catch {
  font-weight: 700;
  margin-bottom: 10px;
}

.species_list_karei {
  padding: 0;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.species_list_karei::after {
  content: "";
  display: block;
  width: 32%;
}
.species_list_karei .species_list_item {
  width: 100%;
}
.species_list_karei .species_list_item.species_list_item_karei::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  opacity: 0.5;
  background-image: url(../hokkaidos_fish/karei/img/karei_icon.svg);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-size: 90%;
  content: "";
}
.species_list_karei .species_list_item.species_list_item_karei::after {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 6px;
  bottom: 6px;
  border-radius: 500px;
  background-image: url(../img/arrow_fish_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: #ffffff;
  content: "";
}
@media screen and (min-width: 480px) {
  .species_list_karei .species_list_item {
    width: 48%;
  }
}
@media screen and (min-width: 640px) {
  .species_list_karei .species_list_item {
    width: 32%;
  }
}

.species_pop_item_inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  opacity: 0.5;
  background-image: url(../hokkaidos_fish/karei/img/karei_icon.svg);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-size: 90%;
  z-index: -1;
  content: "";
}

.species_list_item_karei {
  padding: 0;
  transition: 0.1s;
}
.species_list_item_karei .species_list_item_inner {
  padding: 16px 38px 16px 16px;
}
.species_list_item_karei .species_list_item_inner:hover {
  opacity: 0.5;
  z-index: 1;
}

.popup-content {
  visibility: hidden;
  opacity: 0;
}

.karei_check {
  display: none;
}

.karei_check:checked ~ .popup-content {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

.karei_check:checked ~ .overlay {
  background: rgba(51, 51, 51, 0.8);
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 9999;
}

label.close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #7A7A7A;
  color: #ffffff;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50px;
  line-height: 1.6;
}
label.close-btn::before, label.close-btn::after {
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  content: "";
}
label.close-btn::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
label.close-btn::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.popup-content {
  position: fixed;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  width: 80%;
  height: auto;
  max-height: 90%;
  padding: 30px;
  background-color: #F0E6DC;
  z-index: 9999;
  transition: 0.1s;
  transform: translate(-50%, -50%);
  overscroll-behavior: contain;
}

.species_pop_item_inner {
  overflow-y: scroll;
  height: 100%;
  max-height: 100%;
}

.species_pop_sec {
  margin-bottom: 12px;
}
.species_pop_sec:last-of-type {
  margin-bottom: 0;
}

.species_pop_h {
  color: #0066dd;
  margin-bottom: 6px;
}

.species_pop_sec_bnr {
  display: block;
  max-width: 200px;
  margin: 10px auto;
  transition: 0.1s;
}
.species_pop_sec_bnr:hover {
  opacity: 0.7;
}

@media (orientation: landscape) {
  .popup-content {
    width: 55%;
  }
}
input#open {
  display: none;
}

.h_fish_linkbnr {
  transition: 0.1s;
}
.h_fish_linkbnr:hover {
  opacity: 0.7;
}

.howto_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.howto_h4_wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.howto_h4_wrap h4 {
  margin-bottom: 0;
}

.howto_fish_icon {
  position: absolute;
  top: 100%;
  right: 10px;
  width: 35%;
  max-width: 200px;
  max-height: 200px;
  height: auto;
  opacity: 0.2;
  transform: rotate(15deg) translateY(-66%);
  z-index: -1;
}
@media screen and (min-width: 640px) {
  .howto_fish_icon {
    width: 200px;
    transform: rotate(15deg) translateY(-66%);
  }
}
.howto_fish_icon img {
  width: 100%;
  height: 100%;
  max-height: 100px;
}

.howto_fish_icon_large {
  transform: rotate(15deg) translateY(-80%) translateX(45%);
}
@media screen and (min-width: 640px) {
  .howto_fish_icon_large {
    transform: rotate(15deg) translateY(-66%);
  }
}

.howto_fish_icon_small {
  width: 20%;
  height: 270%;
}
@media screen and (min-width: 640px) {
  .howto_fish_icon_small {
    width: 100px;
  }
}

.h_fish_ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 10px;
  background-color: #ffffff;
}

.h_fish_li {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .h_fish_li {
    width: 49%;
  }
}
.h_fish_li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  padding: 10px 16px;
  color: #7A7A7A;
  background-color: #F0E6DC;
  transition: 0, 1s;
}
.h_fish_li > a:hover {
  opacity: 0.6;
}
.h_fish_li > a::after {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 500px;
  background-image: url(../img/arrow_fish_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: #EF874B;
  content: "";
}

.sub_main_sec_container_howto_half {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .sub_main_sec_container_howto_half {
    width: 47%;
  }
}
.sub_main_sec_container_howto_half .howto_h4 {
  font-size: 20px;
}
.sub_main_sec_container_howto_half .howto_fish_icon_small {
  width: 20%;
  height: 270%;
}
@media screen and (min-width: 640px) {
  .sub_main_sec_container_howto_half .howto_fish_icon_small {
    width: 20%;
  }
}
@media screen and (min-width: 640px) {
  .sub_main_sec_container_howto_half .h_fish_li {
    width: 100%;
  }
}

.col_2.greet {
  gap: 4%;
}

.corporate_greet_img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 640px) {
  .corporate_greet_img {
    width: 40%;
    max-width: none;
    margin: 0;
  }
}

.corporate_greet_detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10%;
}
@media screen and (min-width: 640px) {
  .corporate_greet_detail {
    width: 56%;
  }
}

.corporate_greet_catch {
  font-size: 24px;
  color: #0066dd;
  font-weight: 700;
  margin-bottom: 10%;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .corporate_greet_catch {
    font-size: 30px;
    text-align: left;
  }
}

.corporate_greet_profile {
  text-align: center;
  border-top: 1px solid #C1C1C1;
  padding-top: 6px;
}
@media screen and (min-width: 640px) {
  .corporate_greet_profile {
    text-align: left;
  }
}

.corporate_greet_post {
  margin-bottom: 20px;
}

.corporate_greet_name {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 640px) {
  .corporate_greet_name {
    font-size: 20px;
  }
}

.about_ninen_catch {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #0066dd;
}

.sub_main_sec_glay {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #F9F9F9;
}

.corporate_what_img {
  max-width: 480px;
  margin: 0 auto;
}

.corporate_outline_img {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .corporate_outline_img {
    width: 30%;
  }
}

.group_data {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .group_data {
    width: 68%;
  }
}

.group_data_item {
  display: flex;
  gap: 2%;
  padding: 8px 0;
  border-bottom: 1px solid #C1C1C1;
}
.group_data_item.noline {
  border-bottom: 0;
}

.group_data_item_head {
  width: 30%;
  font-weight: 700;
  color: #0066dd;
  flex-shrink: 0;
}

.col_2._officer {
  gap: 6px;
  padding: 6px 0;
  border-top: 1px solid #C1C1C1;
  border-bottom: 1px solid #C1C1C1;
}

.group_data_item_details {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .group_data_item_details {
    width: 80%;
  }
}

.group_data_item.access {
  flex-wrap: wrap;
}

.group_data_item_head._officer {
  width: 20%;
  margin-bottom: 10px;
}

.group_data_item_detail._officer {
  display: flex;
  margin-bottom: 10px;
}

.group_data_item_detail._post {
  width: 50%;
}

.group_data_item_detail._name {
  width: 50%;
}

.group_data.access {
  width: 100%;
}
.group_data.access > ul {
  border-top: 1px solid #C1C1C1;
}

.group_data_item_head.sub {
  color: #444444;
  font-weight: 500;
}

.group_data_item_head.access {
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .group_data_item_head.access {
    margin-bottom: 0;
    width: 30%;
  }
}

.group_data_item_detail_wrap {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .group_data_item_detail_wrap {
    width: 68%;
  }
}

.group_data_item_detail.access {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 30px;
  width: 100%;
  margin-bottom: 6px;
}

.group_company_item {
  margin-bottom: 30px;
  background-color: #F9F9F9;
  padding: 20px 10px;
}
@media screen and (min-width: 640px) {
  .group_company_item {
    padding: 20px;
  }
}

.group_company_item_img {
  max-width: 160px;
  flex-shrink: 0;
  margin: 0 auto;
}

.group_company_item_name {
  color: #063871;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 640px) {
  .group_company_item_name {
    font-size: 20px;
  }
}

.group_data.group_company {
  width: 100%;
  margin-bottom: 20px;
}
.group_data.group_company ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.group_data.group_company ul .group_data_item {
  width: 100%;
  gap: 2%;
}
@media screen and (min-width: 640px) {
  .group_data.group_company ul .group_data_item {
    width: 23%;
  }
}
.group_data.group_company ul .group_data_item_head {
  width: 40%;
}
@media screen and (min-width: 640px) {
  .group_data.group_company ul .group_data_item_head {
    width: auto;
  }
}
.group_data.group_company ul .group_data_item_detail {
  width: 58%;
}
@media screen and (min-width: 640px) {
  .group_data.group_company ul .group_data_item_detail {
    width: auto;
  }
}

.group_company_item_facility,
.group_company_item .group_data_item_detail_child {
  font-size: 80%;
}

.group_company_item_facility {
  font-weight: 700;
  margin-bottom: 6px;
}

p.text.gyokyou {
  padding-left: 0;
  text-align: left;
}
@media screen and (min-width: 640px) {
  p.text.gyokyou {
    padding-left: 17%;
  }
}

.group_data_item_head.access.gyokyou {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .group_data_item_head.access.gyokyou {
    width: 15%;
  }
}

.group_data_item_detail_wrap.gyokyou {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .group_data_item_detail_wrap.gyokyou {
    flex-direction: row;
    width: 83%;
  }
}

.group_data_item_detail.access.gyokyou {
  flex-direction: row;
}
@media screen and (min-width: 640px) {
  .group_data_item_detail.access.gyokyou {
    flex-direction: column;
  }
}

.sub_main_sec.outline {
  max-width: 1000px;
  width: 100%;
  padding: 0;
}
.sub_main_sec.outline .sub_main_sec_container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
  background-color: #ffffff;
}
@media screen and (min-width: 640px) {
  .sub_main_sec.outline .sub_main_sec_container {
    padding: 0 30px;
  }
}
.sub_main_sec.outline .sub_main_sec_container_wrap {
  padding: 30px 10px 10px;
  border-radius: 20px;
}
@media screen and (min-width: 640px) {
  .sub_main_sec.outline .sub_main_sec_container_wrap {
    padding: 60px 60px 30px;
  }
}
.sub_main_sec.outline .sub_main_sec_container_wrap .sub_main_sec_container {
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 20px;
}

.sub_main_sec.outline.orange .sub_h3 {
  border-bottom-color: #DE750B;
}
.sub_main_sec.outline.orange .sub_h4,
.sub_main_sec.outline.orange .sub_h5,
.sub_main_sec.outline.orange .sub_h6 {
  color: #DE750B;
}
.sub_main_sec.outline.orange .sub_h4::before {
  background-color: #DE750B;
}
.sub_main_sec.outline.orange .sub_h5::before {
  border-color: #DE750B;
}
.sub_main_sec.outline.orange .sub_main_sec_container_wrap {
  background: rgba(222, 117, 11, 0.2);
}

.sub_main_sec.outline.green .sub_h3 {
  border-bottom-color: #4E8E40;
}
.sub_main_sec.outline.green .sub_h4,
.sub_main_sec.outline.green .sub_h5,
.sub_main_sec.outline.green .sub_h6 {
  color: #4E8E40;
}
.sub_main_sec.outline.green .sub_h4::before {
  background-color: #4E8E40;
}
.sub_main_sec.outline.green .sub_h5::before {
  border-color: #4E8E40;
}
.sub_main_sec.outline.green .sub_main_sec_container_wrap {
  background: rgba(78, 142, 64, 0.3);
}

.sub_main_sec.outline.purple .sub_h3 {
  border-bottom-color: #4C1495;
}
.sub_main_sec.outline.purple .sub_h4,
.sub_main_sec.outline.purple .sub_h5,
.sub_main_sec.outline.purple .sub_h6 {
  color: #4C1495;
}
.sub_main_sec.outline.purple .sub_h4::before {
  background-color: #4C1495;
}
.sub_main_sec.outline.purple .sub_h5::before {
  border-color: #4C1495;
}
.sub_main_sec.outline.purple .sub_main_sec_container_wrap {
  background: rgba(76, 20, 149, 0.3);
}

.csr_sdgs_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.csr_sdgs_item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
}
@media screen and (min-width: 640px) {
  .csr_sdgs_item {
    width: 46%;
  }
}

.csr_sdgs_img {
  width: 60px;
  flex-shrink: 0;
}

.csr_category {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 640px) {
  .csr_category {
    flex-direction: row;
  }
}

.csr_category {
  margin-bottom: 30px;
  border-width: 2px;
  border-color: #00A23C;
  padding: 20px;
  border-radius: 20px;
  gap: 20px;
}

.csr_category_top {
  display: flex;
  align-items: center;
}

.csr_category_icon {
  flex-shrink: 0;
}

.csr_category_title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  width: 6em;
  flex-shrink: 0;
}

.csr_category_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.csr_category_e {
  border-color: #00A23C;
}
.csr_category_e .csr_category_title {
  color: #00A23C;
}

.csr_category_g {
  border-color: #00A2AC;
}
.csr_category_g .csr_category_title {
  color: #00A2AC;
}

.csr_category_s {
  border-color: #EB7516;
}
.csr_category_s .csr_category_title {
  color: #EB7516;
}

.csr_h4_icon {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
}
.csr_h4_icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0.15em;
}

.col_3_plastic {
  flex-wrap: wrap;
}
@media screen and (min-width: 480px) {
  .col_3_plastic {
    flex-wrap: nowrap;
  }
}
.col_3_plastic .img_contain {
  justify-content: flex-start;
}
@media screen and (min-width: 480px) {
  .col_3_plastic .img_contain {
    flex-wrap: nowrap;
  }
}

.col_3_plastic_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}
@media screen and (min-width: 480px) {
  .col_3_plastic_arrow {
    transform: rotate(0deg);
  }
}

.csr_plastic {
  gap: 20px;
}
.csr_plastic .col_2_item {
  text-align: center;
}
.csr_plastic .caption {
  text-align: center;
}

#sdgs #main {
  position: relative;
}
#sdgs #main::before {
  position: absolute;
  content: "";
  background-image: url(../sdgs/img/sdgs_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  filter: blur(3px);
  z-index: -1;
}
#sdgs footer {
  margin-top: 0;
}

.sub_main_sec_container.sdgs_top {
  color: #ffffff;
}
.sub_main_sec_container.sdgs_top .sub_h3 {
  border-bottom-color: #ffffff;
}

.sub_main_sec_container.sdgs {
  position: relative;
  padding: 30px 20px;
}
@media screen and (min-width: 640px) {
  .sub_main_sec_container.sdgs {
    padding: 30px;
  }
}
.sub_main_sec_container.sdgs::before {
  position: absolute;
  content: "";
  background-color: #ffffff;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.js-slider-namimaru {
  position: relative;
}
.js-slider-namimaru .slider {
  z-index: 1;
}
.js-slider-namimaru .slider::before, .js-slider-namimaru .slider::after {
  display: none;
  position: absolute;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  width: 15%;
  height: 100%;
  content: "";
  z-index: 2;
  top: 0;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slider::before, .js-slider-namimaru .slider::after {
    display: block;
  }
}
.js-slider-namimaru .slider::before {
  left: 0;
}
.js-slider-namimaru .slider::after {
  right: 0;
  background: linear-gradient(-90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.js-slider-namimaru .slick-arrow:before,
.js-slider-namimaru .slick-arrow:after {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
}
.js-slider-namimaru .slick-prev,
.js-slider-namimaru .slick-next {
  width: 28px;
  height: 28px;
  z-index: 3;
}
.js-slider-namimaru .slick-prev::before,
.js-slider-namimaru .slick-next::before {
  background: url(../img/namimaru_slide_arrow_white.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slick-prev::before,
  .js-slider-namimaru .slick-next::before {
    background: url(../img/namimaru_slide_arrow.svg);
  }
}
.js-slider-namimaru .slick-prev {
  left: 10px;
}
.js-slider-namimaru .slick-prev::before {
  transform: rotate(180deg);
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slick-prev {
    left: 13.5%;
  }
}
.js-slider-namimaru .slick-next {
  right: 10px;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slick-next {
    right: 13.5%;
  }
}
.js-slider-namimaru .slick-list {
  z-index: 1;
}
.js-slider-namimaru .slick-slide:not(.slick-center) {
  -moz-filter: opacity(100%);
  -o-filter: opacity(100%);
  -ms-filter: opacity(100%);
  filter: opacity(100%);
  transition: 0.2s linear;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slick-slide:not(.slick-center) {
    -moz-filter: opacity(50%);
    -o-filter: opacity(50%);
    -ms-filter: opacity(50%);
    filter: opacity(50%);
    transition: 0.2s linear;
  }
}
.js-slider-namimaru .slider-item {
  margin: 0;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slider-item {
    margin: 0 15px;
  }
}
.js-slider-namimaru .slider-item img {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slider-item img {
    width: auto;
  }
}
.js-slider-namimaru .slider_caption {
  color: #7A7A7A;
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (min-width: 640px) {
  .js-slider-namimaru .slider_caption {
    font-size: 16px;
  }
}

.namimaru_main_article {
  display: block;
  min-height: 200px;
  transition: 0.1s;
}
.namimaru_main_article:hover {
  opacity: 0.7;
}
@media screen and (min-width: 640px) {
  .namimaru_main_article {
    display: flex;
  }
}

.namimaru_main_article_img {
  width: 100%;
}
.namimaru_main_article_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 640px) {
  .namimaru_main_article_img {
    width: 40%;
    flex-shrink: 0;
  }
}

.namimaru_main_article_txt {
  padding: 24px 30px 30px 30px;
  background-color: #F9F9F9;
}

.namimaru_main_article_txt_title {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (min-width: 640px) {
  .namimaru_main_article_txt_title {
    font-size: 24px;
  }
}

.sub_index_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px 2%;
}

.sub_index_list_item {
  width: 100%;
  min-height: 320px;
  background-color: #F9F9F9;
  transition: 0.1s;
}
.sub_index_list_item:hover {
  opacity: 0.7;
}
@media screen and (min-width: 480px) {
  .sub_index_list_item {
    width: 49%;
  }
}
@media screen and (min-width: 640px) {
  .sub_index_list_item {
    width: 32%;
  }
}

.sub_index_list_item_img {
  max-width: 270px;
  aspect-ratio: 500/341;
  margin: 10px auto 0;
}
@media screen and (min-width: 480px) {
  .sub_index_list_item_img {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}

.sub_index_list_item_txt {
  padding: 10px;
}

.sub_index_list_item_txt_date {
  font-size: 12px;
}
@media screen and (min-width: 640px) {
  .sub_index_list_item_txt_date {
    font-size: 14px;
  }
}

.sub_index_list_item_txt_title {
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 640px) {
  .sub_index_list_item_txt_title {
    font-size: 16px;
  }
}

.sub_index_list_item_txt_date {
  color: #0066dd;
  margin-bottom: 12px;
}

.sub_index_list_item_txt_date_number {
  color: #7A7A7A;
  margin-left: 10px;
}

.sub_archive_box {
  padding: 4px 10px;
  font-weight: 700;
  color: #7A7A7A;
  cursor: pointer;
  position: relative;
}

.sub_archive_box_ul {
  position: absolute;
  font-weight: 700;
  color: #7A7A7A;
  left: 0;
  top: 110%;
  width: 100%;
  max-height: 260px;
  border: 2px solid #C1C1C1;
  border-radius: 4px;
  background-color: white;
  z-index: 2;
  overflow-y: scroll;
}

.sub_archive_box_li a {
  display: block;
  width: 100%;
  padding: 4px 8px;
}
.sub_archive_box_li a:hover {
  background-color: #0066dd;
  color: white;
  opacity: 1;
}

.group_data.nami {
  width: 100%;
  border-top: 1px solid #C1C1C1;
}

.group_data_item.nami {
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
}

.group_data_item_head.nami {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 640px) {
  .group_data_item_head.nami {
    width: 30%;
    margin-bottom: 0;
  }
}

.group_data_item_detail_child.nami_strong {
  color: #063871;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.ul.group {
  padding-left: 0;
}
.ul.group li {
  margin-bottom: 6px;
}
@media screen and (min-width: 640px) {
  .ul.group li {
    margin-bottom: 6px;
  }
}

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

.nami_manga_img {
  max-width: 500px;
}

.letter_title {
  display: flex;
  gap: 15px;
}

.letter_title_img {
  width: 72.4637681159%;
}

.letter_title_txtimg {
  width: 27.5362318841%;
}

.js-slider-namimaru-thumbnail .slick-track {
  transform: none !important;
}
.js-slider-namimaru-thumbnail .slider-item {
  opacity: 0.5;
  transition: opacity 0.3s linear;
  width: 33.3333333333% !important;
  aspect-ratio: 700/467;
  overflow-y: hidden;
  padding: 2px;
}
.js-slider-namimaru-thumbnail .slider-item.slick-current {
  opacity: 1;
}
@media screen and (min-width: 480px) {
  .js-slider-namimaru-thumbnail .slider-item {
    width: 16.6666666667% !important;
  }
}

.letter_cat {
  font-size: 16px;
}
@media screen and (min-width: 480px) {
  .letter_cat {
    font-size: 18px;
  }
}

.hama_archivelink {
  align-items: center;
  gap: 0;
}

.hama_archivelink_detail {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .hama_archivelink_detail {
    width: 70%;
  }
}

.col_2_item.hama_img {
  max-width: 151px;
  flex-shrink: 0;
  margin: 0 auto;
  align-items: center;
}

.col_2_item.hama_txt {
  width: auto;
}

.group_data.hama {
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 640px) {
  .group_data.hama {
    font-size: 16px;
  }
}

.group_data_item_detail_wrap.hama {
  width: auto;
}

.group_data_item.hama {
  flex-wrap: wrap;
}
@media screen and (min-width: 640px) {
  .group_data_item.hama {
    flex-wrap: nowrap;
  }
}

.group_data_item_head.hama {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 640px) {
  .group_data_item_head.hama {
    width: 8em;
    margin-bottom: 0;
  }
}

.hamaArticle #contents_box .profile_box .profile_box {
  width: 100%;
}

.howto_h3 {
  border-color: #EF874B;
}

.howto_h4 {
  color: #EF874B;
}
.howto_h4::before {
  background-color: #EF874B;
}

.howto_img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}

.howto_movie {
  max-width: 640px;
  margin: 0 auto 30px;
}

.howto_movie_caption {
  font-size: 14px;
  margin-top: 10px;
}
.howto_movie_caption a {
  transition: 0.1s;
  padding-left: 24px;
  position: relative;
}
.howto_movie_caption a::before {
  display: block;
  position: absolute;
  background-image: url(../img/mov_icon_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 2px;
  width: 18px;
  height: 18px;
  content: "";
}
.howto_movie_caption a:hover {
  opacity: 0.7;
}

.howto_cooking_recipe_material {
  max-width: 710px;
  margin: 0 auto;
}

.howto_process_ol,
.howto_process_ul {
  border-bottom: 1px solid #C1C1C1;
  counter-reset: count 0;
}
.howto_process_ol li,
.howto_process_ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid #C1C1C1;
}
@media screen and (min-width: 640px) {
  .howto_process_ol li,
  .howto_process_ul li {
    flex-direction: row;
    align-items: flex-start;
  }
}

.howto_process_txt {
  display: flex;
  flex-shrink: 2;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .howto_process_txt {
    width: auto;
  }
}
.howto_process_txt::before {
  display: inline-block;
  flex-shrink: 0;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
  color: #ffffff;
  background-color: #EF874B;
  border-radius: 50%;
  content: counter(count);
  counter-increment: count 1;
}
@media screen and (min-width: 640px) {
  .howto_process_txt::before {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 26px;
  }
}

.howto_process_title {
  display: flex;
  align-items: center;
  color: #EF874B;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
@media screen and (min-width: 640px) {
  .howto_process_title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.howto_process_ul .howto_process_txt {
  margin-left: 14px;
}
.howto_process_ul .howto_process_txt::before {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  content: "";
}
@media screen and (min-width: 640px) {
  .howto_process_ul .howto_process_txt::before {
    margin-top: 6px;
  }
}

.howto_process_img_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 640px) {
  .howto_process_img_wrap {
    flex-direction: column;
  }
}

.howto_process_img {
  flex-shrink: 0;
  max-width: 240px;
}
@media screen and (min-width: 640px) {
  .howto_process_img {
    width: 180px;
  }
}

.howto_teacher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.howto_teacher_detail {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .howto_teacher_detail {
    width: 75%;
  }
}

.howto_teacher_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  border-bottom: 8px solid #EF874B;
  margin-bottom: 20px;
}
@media screen and (min-width: 640px) {
  .howto_teacher_head {
    align-items: stretch;
  }
}

.howto_teacher_left {
  display: flex;
}

.howto_teacher_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #ffffff;
  padding: 6px 0px;
  font-weight: 700;
  background-color: #EF874B;
  font-size: 18px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 640px) {
  .howto_teacher_title {
    writing-mode: horizontal-tb;
    padding: 10px;
    font-size: 24px;
  }
}

.howto_teacher_name_wrap {
  color: #7A7A7A;
  font-weight: 700;
  width: 100%;
  padding-left: 12px;
}

.howto_teacher_name {
  font-size: 20px;
}
@media screen and (min-width: 640px) {
  .howto_teacher_name {
    font-size: 28px;
  }
}

.howto_teacher_name_small,
.howto_teacher_job {
  font-size: 12px;
}
@media screen and (min-width: 640px) {
  .howto_teacher_name_small,
  .howto_teacher_job {
    font-size: 14px;
  }
}

.howto_teacher_img_sp {
  display: block;
  flex-shrink: 0;
  width: 120px;
  height: 100px;
}
@media screen and (min-width: 640px) {
  .howto_teacher_img_sp {
    display: none;
  }
}

.howto_teacher_img_pc {
  width: 240px;
  display: none;
}
@media screen and (min-width: 640px) {
  .howto_teacher_img_pc {
    display: block;
  }
}

.howto_recipe_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howto_recipe {
  width: 100%;
}
.howto_recipe > a {
  display: block;
}
.howto_recipe > a .howto_recipe_img img {
  transition: 0.1s;
}
.howto_recipe > a:hover .howto_recipe_img img {
  opacity: 0.5;
}
@media screen and (min-width: 640px) {
  .howto_recipe > a {
    display: flex;
  }
}

.howto_recipe_img {
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  max-height: 187px;
  min-width: auto;
  margin: 0 auto;
  overflow: hidden;
  background-color: transparent;
}
@media screen and (min-width: 640px) {
  .howto_recipe_img {
    width: 10%;
    min-width: 200px;
    background-color: #F9F9F9;
  }
}
.howto_recipe_img img {
  display: block;
  max-width: 315px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 640px) {
  .howto_recipe_img img {
    width: 100%;
  }
}

.howto_recipe_txt {
  margin-top: -60px;
  padding: 80px 20px 20px 20px;
  background-color: #F9F9F9;
  flex-grow: 100;
}
@media screen and (min-width: 640px) {
  .howto_recipe_txt {
    margin: 0;
    padding: 20px;
  }
}

.howto_recipe_about {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.howto_recipe_num {
  color: #7A7A7A;
  font-weight: 700;
}

.cooking_ranking_num_1 {
  position: relative;
  padding-left: 24px;
}
.cooking_ranking_num_1::before {
  position: absolute;
  background-image: url(../cooking/img/cooking_ranking_crown.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 18px;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
}

.cooking_bnr {
  gap: 20px;
  align-items: center;
}

.howto_recipe_name {
  color: #EF874B;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.howto_column_title {
  color: #EF874B;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.howto_column {
  display: block;
  border: 2px dashed #EF874B;
  border-radius: 10px;
  padding: 12px 30px;
  gap: 10px;
}
@media screen and (min-width: 640px) {
  .howto_column {
    display: flex;
  }
}

.howto_column_img {
  width: 160px;
  flex-shrink: 0;
  margin: 10px auto 0;
}
@media screen and (min-width: 640px) {
  .howto_column_img {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */