/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * KEYFRAMES
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* ------------------------------
    VARS
  ------------------------------ */
:root {
  --base-color: #FFFFFF;
  --primary-color: #63c3ce;
  --secondary-color: #acded4;
  --tertiary-color: #edf8f6;
  --gray-color: #fcfaf7;
  --mat-color: #f4ede3;
  --font-color: #000000;
  --desc-color: #82817f;
  --font-main: zen-kaku-gothic-new, sans-serif;
}

/* ------------------------------
    FORM RESET
  ------------------------------ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input, select, textarea {
  outline: none;
  border: none;
}
input::focus, select::focus, textarea::focus {
  outline: none;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}

input[type=submit],
select,
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
select::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

input[type=radio], input[type=checkbox] {
  display: none;
}

button {
  cursor: pointer;
  background: none;
  color: inherit;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: left;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  padding: 0;
}
button:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--base-color);
}

::selection {
  background-color: var(--primary-color);
  color: var(--base-color);
}

/* ------------------------------
    DEFAULT BLOCK SETTINGS
  ------------------------------ */
html {
  font-family: var(--font-main);
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0 !important;
  background: var(--base-color);
  color: var(--font-color);
  scroll-padding-top: 18rem;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 2.56411vw;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.5208335vw;
  }
}

body {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  overflow: hidden;
}
.imgWrapper img {
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------
    GLOBAL HEADER
  ------------------------------ */
.globalHeader {
  position: fixed;
  z-index: 1000;
  width: 100%;
  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;
}
@media screen and (min-width: 320px) {
  .globalHeader {
    padding: 3vw 2.5vw 0;
  }
}
@media screen and (min-width: 600px) {
  .globalHeader {
    padding: 1.5vw 2.5vw 0;
  }
}

.headerLogo {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: var(--base-color);
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 320px) {
  .headerLogo {
    width: 7.5rem;
    height: 7.5rem;
    top: auto;
  }
}
@media screen and (min-width: 600px) {
  .headerLogo {
    width: 16.5rem;
    height: 16.5rem;
    top: -2rem;
  }
}
.headerLogo h1, .headerLogo p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.headerLogo img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.headerNav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 320px) {
  .headerNav {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .headerNav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--base-color);
  }
}

.headerNavList {
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: var(--primary-color);
}
@media screen and (min-width: 320px) {
  .headerNavList {
    display: grid;
    font-size: 1.2rem;
    position: fixed;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 16px);
    padding: 0;
    border-radius: 16px;
    background: var(--primary-color);
    -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 600px) {
  .headerNavList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 2.2rem;
    position: static;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 16px 5vw;
    border-radius: unset;
    background: var(--primary-color);
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}
.headerNavList li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .headerNavList li {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.headerNavList li::after {
  content: "|";
  color: white;
  margin: 0 32px;
  opacity: 0.6;
}
@media screen and (min-width: 320px) {
  .headerNavList li::after {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList li::after {
    display: inline-block;
  }
}
@media screen and (min-width: 320px) {
  .headerNavList li:first-child {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList li:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.headerNavList li:last-child::after {
  display: none;
}
@media screen and (min-width: 320px) {
  .headerNavList .pc {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList .pc {
    display: block;
  }
}
@media screen and (min-width: 320px) {
  .headerNavList .sp {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList .sp {
    display: none;
  }
}
.headerNavList .menuicon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerNavList .menuicon svg {
  display: block;
  width: 2rem;
  height: 2rem;
  fill: white;
}
@media screen and (min-width: 320px) {
  .headerNavList .menuicon svg {
    margin: 0 0 4px;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList .menuicon svg {
    margin: 0 8px 0 0;
  }
}
.headerNavList .headerNavLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
@media screen and (min-width: 320px) {
  .headerNavList .headerNavLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8px 0;
  }
}
@media screen and (min-width: 600px) {
  .headerNavList .headerNavLink {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
}

.headerNavSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .headerNavSns {
    gap: 12px;
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .headerNavSns {
    gap: 12px;
    padding: 8px 5vw;
  }
}
.headerNavSns svg {
  display: block;
}
@media screen and (min-width: 320px) {
  .headerNavSns svg {
    width: 2.2rem;
    height: 2.2rem;
    fill: var(--secondary-color);
  }
}
@media screen and (min-width: 600px) {
  .headerNavSns svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--primary-color);
  }
}

/* ------------------------------
    GLOBAL FOOTER
  ------------------------------ */
.globalFooter {
  position: relative;
  z-index: 1;
  background: var(--mat-color);
}
@media screen and (min-width: 320px) {
  .globalFooter {
    border-radius: 32px 32px 0 0;
  }
}
@media screen and (min-width: 600px) {
  .globalFooter {
    border-radius: 64px 64px 0 0;
  }
}
.globalFooter .sectionInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .sectionInner {
    padding: 64px 0 10rem;
  }
}
@media screen and (min-width: 600px) {
  .globalFooter .sectionInner {
    padding: 128px 0;
  }
}
.globalFooter .banners {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 320px) {
  .globalFooter .banners {
    display: grid;
    gap: 16px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 600px) {
  .globalFooter .banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    padding: 0;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .logo {
    width: 10rem;
    margin: 48px 0;
  }
}
@media screen and (min-width: 600px) {
  .globalFooter .logo {
    width: 14rem;
    margin: 64px 0;
  }
}
.globalFooter .logo a {
  display: block;
  width: 100%;
}
.globalFooter .logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 320px) {
  .globalFooter .copy {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .globalFooter .copy {
    font-size: 1.4rem;
  }
}

/* ------------------------------
    COMMON PARTS
  ------------------------------ */
.topHead {
  margin-bottom: 64px;
}
@media screen and (min-width: 320px) {
  .topHead {
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .topHead {
    text-align: left;
  }
}
.topHead .topHeadEn, .topHead .topHeadJa {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), to(var(--secondary-color)));
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.topHead .topHeadEn {
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 320px) {
  .topHead .topHeadEn {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .topHead .topHeadEn {
    font-size: 2rem;
  }
}
.topHead .topHeadJa {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 320px) {
  .topHead .topHeadJa {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 600px) {
  .topHead .topHeadJa {
    font-size: 4.2rem;
  }
}/*# sourceMappingURL=style.css.map */