/* Reset ----- */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: middle;
}

button,
select {
  text-transform: none;
}

input,
button,
select {
  font-family: inherit;
  font-weight: inherit;
}

input[type="submit"],
input[type="button"],
button[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration,
button[type="submit"]:-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus,
button[type="submit"]:focus {
  outline: none;
}

/* IE 10+ ----- */
:-ms-input-placeholder {
  color: #999;
}

html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

img,
embed,
object,
audio,
video {
  height: auto;
  /* max-width: 100%; */
}

img,
iframe {
  border: 0
}

img {
  vertical-align: bottom;
}

svg {
  fill: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
  font-weight: normal;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/*++++++++++++++++++*/
body {
  font: 500 16px/1.6 "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #111114;
}

a:hover {
  opacity: .7;
}

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding-left: 40px;
  padding-right: 30px;

  .logo img {
    width: 116px;
  }
}

.g-nav_wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.g-nav {
  display: flex;
  gap: 30px;

  a {
    text-decoration: none;
    color: #111114;
  }
}

.burger {
  display: none;
}

.lang-select {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.lang-select::after {
  position: absolute;
  right: 15px;
  width: 12px;
  height: 10px;
  background-color: #111114;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}

.lang-select select {
  appearance: none;
  outline: none;
  height: 35px;
  width: 118px;
  padding: .4em .4em .4em 1.5em;
  background-color: #F3F3F3;
  border: none;
  color: #111114;
  cursor: pointer;
}


@media (max-width: 780px) {
  body {
    --x: calc(100vw / 780);
  }

  .header {
    height: calc(var(--x) * 120);
    padding: 0 calc(var(--x) * 30);

    .logo {
      width: calc(var(--x) * 146);
    }
  }

  .g-nav {
    display: none;
    position: fixed;
    top: calc(var(--x) * 120);
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: calc(var(--x) * 20);
    background: rgba(0, 0, 0, .9);

    a {
      display: block;
      padding: calc(var(--x) * 20) calc(var(--x) * 60);
      margin-top: calc(var(--x) * 20);
      font-size: calc(var(--x) * 40);
      color: #fff;
    }
  }

  .lang-select::after {
    right: 2vw;
    width: 2.2vw;
    height: 2vw;
  }

  .lang-select select {
    height: calc(var(--x) * 60);
    width: calc(var(--x) * 175);
    padding: .4em .4em .4em 1.5em;
    font-size: calc(var(--x) * 26);
  }

  .burger {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-items: center;
    height: calc(var(--x) * 60);
    width: calc(var(--x) * 60);
    cursor: pointer;

    svg {
      max-width: 100%;
    }

    .icon2 {
      display: none;
    }

    &.opened {
      padding: calc(var(--x) * 6);

      .icon1 {
        display: none;
      }

      .icon2 {
        display: block;
      }
    }
  }

}


.main {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  margin-top: 100px;

  picture {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    text-align: center;
  }

  img {
    display: inline-block;
  }
}

.store {
  position: relative;

  .btn {
    position: absolute;
    top: 306px;
    left: 0;
    right: 0;
    width: 381px;
    margin: auto;

    img {
      max-width: 100%;
    }
  }
}

.footer {
  padding: 40px 0;
  text-align: center;

  .logo img {
    width: 181px;
  }

  h2 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #0059AA;
  }

  .sns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  small {
    font-size: 18px;
  }
}

@media (max-width: 1300px) {
  .main {
    picture img {
      width: 140vw;
    }
  }

  .store {
    .btn {
      top: 22.3vw;
      width: 27.8vw;
    }
  }

}

@media (max-width: 780px) {
  .main {
    margin-top: calc(var(--x) * 120);

    picture img {
      min-width: 100%;
    }
  }

  .store {
    .btn {
      top: 39.5vw;
      width: 48.5vw;
    }
  }

  .footer {
    padding: calc(var(--x) * 50) 0 calc(var(--x) * 30);

    .logo img {
      width: calc(var(--x) * 181);
    }

    h2 {
      margin-top: calc(var(--x) * 20);
      font-size: calc(var(--x) * 24);
    }

    .sns {
      gap: calc(var(--x) * 24);
      margin-top: calc(var(--x) * 45);
      margin-bottom: calc(var(--x) * 30);

      img {
        width: calc(var(--x) * 90);
      }
    }

    small {
      font-size: calc(var(--x) * 18);
    }
  }


}