@charset "UTF-8";

html {
  font-size: 62.5%;
}

@media screen and (min-width: 600px) and (max-width: 1400px) {
  html {
    font-size: calc(10* (100vw / 1400));
  }
}

@media screen and (max-width: 599px) {
  html {
    font-size: calc(10* (100vw / 750));
  }
}

body {
  width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.main-container img,
.main-container video {
  width: 100%;
  height: auto;
}

.main-container a {
  display: block;
}

@media screen and (min-width: 600px) {
  .main-container .sp_component {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .main-container .pc_component {
    display: none;
  }

  .main-container .order_1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .main-container .order_2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

/*//////////////////////////////////////////////////

Title : _layout.css
For   : "about" styles of the site

Created       : 2021-07-01
Last Modified : 2021-07-01

==========================================

Content

    common

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            common
============================================================================================== */
.main-container {
  width: 100%;
  margin: 0 auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #000;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .main-container {
    padding-block-start: 35px;
    padding-block-end: 30px;
  }
}

@media screen and (min-width: 600px) {
  .header.fixed {
    position: relative;
    top: 0 !important;
  }

  .header.fixed .header__inner .menu__wrapper--top {
    position: inherit;
    top: inherit;
    bottom: inherit;
    right: inherit;
    margin: inherit;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }

  .header.fixed .header__inner .menu__wrapper--btm {
    margin-top: 1rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .header.fixed .header__inner .menu__wrapper--btm .drawer__unit:last-of-type {
    display: block;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                          for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 599px) {
  .main-container {
    padding-block-start: 7rem;
    padding-block-end: 7.8rem;
  }
}

/*//////////////////////////////////////////////////

Title : _content.css
For   : "about" styles of the site

Created       : 2021-07-01
Last Modified : 2021-07-01

==========================================

Content

    content

//////////////////////////////////////////////////*/
/* ==============================================================================================
																						content
============================================================================================== */
.content.__about .content__wrapper {
  position: relative;
}

.content.__about .content__block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 0 8.2rem;
}

@media screen and (min-width: 600px) {
  .content.__about .content__image {
    max-width: 560px;
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .content.__about .content__text {
    margin-right: 0;
  }
}

.content.__about .content__text .title {
  font-family: pragmatica, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 600px) {
  .content.__about .content__text .title {
    font-size: 19px;
  }
}

@media screen and (min-width: 600px) {
  .content.__about .content__text .lead--jp {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.69231;
  }
}

.content.__about .content__text .lead--en {
  font-family: "Vollkorn", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.002em;
}

@media screen and (min-width: 600px) {
  .content.__about .content__text .lead--en {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.84615;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                          for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 599px) {
  .content.__about .content__wrapper {
    position: relative;
  }

  .content.__about .content__block {
    flex-direction: column;
  }

  .content.__about .content__image {
    width: calc(616* (100vw / 750));
  }

  .content.__about .content__text {
    margin-top: calc(70* (100vw / 750));
  }

  .content.__about .content__text .title {
    font-size: calc(32* (100vw / 750));
  }

  .content.__about .content__text .lead--jp {
    margin-top: calc(47* (100vw / 750));
    font-size: calc(24* (100vw / 750));
    line-height: 1.58333;
  }

  .content.__about .content__text .lead--en {
    margin-top: calc(40* (100vw / 750));
    font-size: calc(20* (100vw / 750));
    line-height: 1.7;
  }
}