@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  padding: 32px 20px;
}
@media screen and (max-width: 1036px) {
  .header {
    padding: 18px 20px;
  }
}
.header > .container {
  position: relative;
}
.header > .container > .list-page {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header > .container > .list-page > .page {
  margin: 0 12px;
}
.header > .container > .list-page > .page:first-child {
  margin: 0 34px 0 0;
}
.header > .container > .list-page > .page > .link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.header > .container > .list-page > .page > .link > .logo {
  width: 120px;
  height: 77px;
}
@media screen and (max-width: 1036px) {
  .header > .container > .list-page > .page > .link > .logo {
    width: 100px;
    height: 57px;
  }
}
@media screen and (max-width: 640px) {
  .header > .container > .list-page > .page > .link > .logo {
    width: 80px;
    height: 54px;
  }
}
.header > .bars {
  position: fixed;
  top: 18px;
  right: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 41px;
  height: 41px;
  z-index: 20;
}
.header > .bars > .bar {
  position: absolute;
  width: 9px;
  height: 9px;
}
.header > .bars > .bar:nth-child(odd) {
  background-color: #ffffff;
}
.header > .bars > .bar:nth-child(even) {
  background-color: #677add;
}
.header > .bars > .bar:first-child {
  top: 0;
  left: 0;
}
.header > .bars > .bar:nth-child(2) {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header > .bars > .bar:nth-child(3) {
  top: 0;
  right: 0;
}
.header > .bars > .bar:nth-child(4) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .bars > .bar:nth-child(5) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header > .bars > .bar:nth-child(6) {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .bars > .bar:nth-child(7) {
  bottom: 0;
  left: 0;
}
.header > .bars > .bar:nth-child(8) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header > .bars > .bar:nth-child(9) {
  bottom: 0;
  right: 0;
}
.header > .bars > .text {
  position: absolute;
  bottom: -22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.header > .bars.active > .bar:nth-child(odd) {
  background-color: #08083d;
}
.header > .bars.active > .bar:nth-child(even) {
  display: none;
}
.header > .bars.active > .text {
  color: #08083d;
}
.header > .menu-sp {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f6f6f6;
}
.header > .menu-sp.active {
  display: block;
}
.header > .menu-sp > .container {
  padding: 20px;
}
.header > .menu-sp > .container > .list-page > .page {
  margin-bottom: 16px;
}
.header > .menu-sp > .container > .list-page > .page > .link {
  color: #08083d;
  font-weight: 500;
}
.header.recipe {
  background-color: #1f1f23;
  max-width: 100%;
  padding: 20px;
}
@media screen and (max-width: 640px) {
  .header.recipe {
    padding: 8px 20px;
  }
}
.header.download {
  padding: 12px 20px;
}
.header.download > .container > .list-page {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .header.download > .container > .list-page {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.header.download > .container > .list-page > .page:first-child {
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .header.download > .container > .list-page > .page:first-child {
    margin: 0;
  }
}
.header.download > .container > .list-page > .page > .link > .logo {
  width: 100px;
  height: 61px;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  background-color: #363644;
  padding: 40px 20px 24px;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 48px 0 24px;
  }
}
.footer > .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 640px) {
  .footer > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer > .container > .logo {
  max-width: 120px;
}
@media screen and (max-width: 640px) {
  .footer > .container > .logo {
    margin: 0 auto 24px;
  }
}
.footer > .container > .box-menu {
  max-width: 477px;
}
.footer > .container > .box-menu > .list-page {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-page {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer > .container > .box-menu > .list-page > .page {
  position: relative;
  margin: 0 20px;
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-page > .page {
    width: 50%;
    border-top: 1px solid #9e9e9e;
    margin: 0;
    padding: 16px;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-page > .page:first-child, .footer > .container > .box-menu > .list-page > .page:nth-child(3) {
    border-right: 1px solid #9e9e9e;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-page > .page:nth-child(3), .footer > .container > .box-menu > .list-page > .page:nth-child(4) {
    border-bottom: 1px solid #9e9e9e;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-page > .page:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 14px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
    border-right: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    width: 10px;
    height: 10px;
  }
}
.footer > .container > .box-menu > .list-page > .page > .link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.footer > .container > .box-menu > .list-button {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer > .container > .box-menu > .list-button > .button {
  max-width: 149px;
}
.footer > .container > .box-menu > .list-button > .button > .link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  padding: 14px 20px;
}
.footer > .container > .box-menu > .list-button > .button:first-child {
  margin-right: 32px;
}
.footer > .container > .box-menu > .list-button > .button:last-child > .link {
  background-color: #677add;
}
.footer > .container-sub {
  border-top: 1px solid #f6f6f6;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1180px;
  padding-top: 21px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .footer > .container-sub {
    border-top: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container-sub > .list-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer > .container-sub > .list-menu > .menu {
  color: #f6f6f6;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .footer > .container-sub > .list-menu > .menu {
    text-align: center;
  }
}
.footer > .container-sub > .list-menu > .menu:first-child, .footer > .container-sub > .list-menu > .menu:nth-child(2) {
  margin-right: 32px;
}
@media screen and (max-width: 640px) {
  .footer > .container-sub > .list-menu > .menu:first-child, .footer > .container-sub > .list-menu > .menu:nth-child(2) {
    margin-right: 0;
    margin-bottom: 23px;
  }
}
.footer > .container-sub > .list-menu > .menu > .link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.footer > .container-sub > .list-menu > .menu > .link > .icon {
  width: 15px;
}
@media screen and (max-width: 640px) {
  .footer > .container-sub > .logo {
    width: 180px;
    margin: 0 auto;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}
body.fixed {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

img {
  width: 100%;
}

section {
  position: relative;
}
section > .background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section > .container {
  position: relative;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .section-title {
    font-size: 24px;
  }
}
.section-title > .decoration {
  display: block;
  width: 27px;
  margin-bottom: 8px;
}
.section-title > .english {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #677add;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media screen and (max-width: 640px) {
  .section-title > .english {
    font-size: 14px;
  }
}

.button {
  width: 100%;
}
.button > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #c24309;
  border-radius: 50px;
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 32px;
}
@media screen and (max-width: 1036px) {
  .button > .link {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .button > .link {
    font-size: 16px;
  }
}
.button > .link > .icon {
  width: 21px;
  height: 25px;
}
@media screen and (max-width: 1036px) {
  .button > .link > .icon {
    width: 16px;
    height: 20px;
  }
}

@media screen and (max-width: 1036px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 1036px) {
  .tablet {
    display: block;
  }
}

.block {
  display: inline-block;
}