@charset "UTF-8";

.is-pc {
  display: block !important;
}

@media (max-width: 750px) {
  .is-pc {
    display: none !important;
  }
}

.is-tab {
  display: none !important;
}

@media (max-width: 821px) {
  .is-tab {
    display: block !important;
  }
}

.is-sp {
  display: none !important;
}

@media (max-width: 750px) {
  .is-sp {
    display: block !important;
  }
}

br.is-pc {
  display: block;
}

@media (max-width: 750px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}

@media (max-width: 750px) {
  br.is-sp {
    display: block;
  }
}

ul.tab_line {
  list-style: none;
  padding-left: 0rem;
}

section.recipe {
  padding-top: 0 !important;
}

.tab {
  display: none;
}

.tab h3 {
  font-size: 25px;
  letter-spacing: 0.1em;
  margin-top: 30px !important;
}

@media (max-width: 750px) {
  .tab h3 {
    margin-top: 6px !important;
    font-size: 20px;
  }
}

@media (max-width: 750px) {
  .tab p {
    margin-top: 14px;
  }
}

.tab_desc {
  font-size: 18px;
  height: 115px;
}

@media (max-width: 750px) {
  .tab_desc {
    font-size: 3.4667vw;
    height: 120px;
  }
}

.tab-links {
  margin: 0;
  padding: 0;
  background-color: #fff;
  white-space: nowrap;
  overflow-y: hidden;
}

.tab-links li {
  margin: 0;
  list-style: none;
  display: inline-block;
  margin-right: 45px;
  padding-bottom: 10px;
}

@media (max-width: 750px) {
  .tab-links li {
    margin-right: 23px;
  }
}

.tab-links li a {
  color: rgba(0, 0, 20, 0.4);
  font-weight: bold;
}

@media (max-width: 750px) {
  .tab-links li a {
    font-size: 14px;
  }
}

.tab-links li.active {
  border-bottom: 3px solid #333;
}

.tab-links li.active a {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 750px) {
  .tab-links li.active a {
    font-size: 14px;
  }
}

.tab-content {
  padding: 30px 20px 30px;
  background-color: #f7f7f7;
}

@media (max-width: 750px) {
  .tab-content {
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}

.tab_list {
  display: flex;
  margin-top: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.tab_pic {
  margin-right: 40px;
  max-width: 440px;
  width: 29%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

@media (max-width: 750px) {
  .tab_list {
    margin-top: 35px;
    margin: 0 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4%;
  }

  .tab_pic {
    margin-right: 0;
    width: 48%;
    margin: 0 auto;
  }
}

.tab_pic:last-child {
  margin-right: 0;
}

@media (max-width: 750px) {
  .tab_pic:last-child {
    margin-right: auto;
  }
}

.tab_pic p {
  font-size: 14px;
  padding: 16px;
  margin-top: 0;
  margin-bottom: 0;
  color: #333;
  line-height: 1.2;
  display: flex;
  flex: 1;
  align-items: center;
}

.lang-en .tab_pic p {
  font-size: 12px;
}


@media screen and (max-width: 750px) {
  .tab_pic p {

    font-size: 12px;
    padding: 6px;
  }
}

.tab_line {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 58px;
}

@media (max-width: 750px) {
  .tab_line {
    margin-top: 28px;
    max-width: 440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.tab_line li {
  width: 33%;
  background-color: #c1c1c1;
  height: 2px;
}

.tab_line li a {
  width: 33%;
  background-color: #c1c1c1;
  height: 2px;
}

.tab_line li.active {
  background-color: #333;
}

.tab_button {
  max-width: 346px;
  margin: 68px auto 0;
}

@media (max-width: 750px) {
  .tab_button {
    margin-top: 50px;
    text-align: center;
  }
}

.tab_button a {
  outline: 1px solid #333;
  color: #333;
  font-size: 16px;
  padding: 20px 0;
  max-width: 346px;
  width: 100%;
  text-align: center;
  position: relative;
  display: inline-block;
  font-weight: bold;
}

@media (max-width: 750px) {
  .tab_button a {
    max-width: 273px;
    font-size: 14px;
    padding: 15px 0;
  }
}

.tab_button a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #333;
  z-index: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.tab_button a::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.tab_button a:hover {
  color: #fff;
}

.tab_button a:hover::before {
  width: 100%;
}

.tab_button a:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 10;
}

.tab_button a span {
  position: relative;
  z-index: 10;
}

.tabs {
  margin-top: 60px;
}

@media (max-width: 750px) {
  .tabs {
    margin-top: 30px;
    overflow: hidden;
  }
}

.tabs .container {
  position: relative;
}

.tabs .container .tab_click {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  border-right: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  top: 58%;
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 750px) {
  .tabs .container .tab_click {
    width: 20px;
    height: 20px;
    top: 50%;
    border-right: none;
    border-bottom: none;
  }
}

.tabs .container .tab_click.left {
  left: -40px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

@media (max-width: 750px) {
  .tabs .container .tab_click.left {
    left: -10px;
  }
}

.tabs .container .tab_click.right {
  right: -60px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  border-top: none;
  border-left: none;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

@media (max-width: 750px) {
  .tabs .container .tab_click.right {
    right: -24px;
  }
}

.tabbox {
  position: relative;
}

.tab.active {
  display: block;
}

.tab-links {
  border-top: 1px solid #d5d5d5;
  padding: 18px 0 0;
}

.tab-links .tab-links a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #444;
}

.tab-links a:hover {
  background-color: #f5f5f5;
}

.tab_content {
  display: none;
}

.tab_content.active {
  display: block;
}

.pswp--touch .pswp__button--arrow {
  visibility: visible !important;
}

@media (max-width: 821px) {
  .lang-en .tab p {
    font-size: 14px;
    line-height: 28px;
  }
}

@media (max-width: 750px) {
  .lang-en .tab p {
    line-height: 26px;
  }
}

@media (max-width: 821px) {
  .lang-en .tab_desc {
    height: 95px;
  }
}

@media (max-width: 750px) {
  .lang-en .tab_desc {
    height: 140px;
  }
}

@media (max-width: 821px) {
  .lang-en .tab_pic p {
    font-size: 12px;
    line-height: 22px;
  }
}