@charset "UTF-8";
.hanburger-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 0px;
  z-index: 999;
}
.hanburger-menu .button-wrapper {
  display: flex;
  justify-content: flex-end;
  right: 10px;
  position: relative;
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: .5rem;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
}
.burger:hover {
  background-color: #eee;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
}
.burger span {
  display: block;
  width: 70%;
  height: 2px;
  background-color: #000;
  grid-area: 1/1/-1/-1;
  transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
}
.burger span:nth-child(1) {
  opacity: var(--opacity);
}
.burger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.menu {
  background-color: #fff;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu.is-active {
  opacity: 1;
  pointer-events: all;
}
.menu li a {
  display: block;
  width: 100%;
  margin: 10px 0 10px;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  background-color: #ddd;
}

div#container {
  margin: 0 20% 0 20%;
  background-color: #fff;
}

div#header {
  margin: 0 2rem 0 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

div#main-logo {
  width: 30%;
}

div#main-logo img {
  width: 70%;
}

div#global-menu {
  width: 70%;
}

#global-menu ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: end;
  align-items: center;
}

#global-menu li {
  text-align: center;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  color: #666;
  position: relative;
  white-space: nowrap;
}

#global-menu li::before {
  content: "";
  width: 7px; /* 丸の直径 */
  height: 7px; /* 丸の直径 */
  background-color: #000; /* 丸の色 */
  border-radius: 50%; /* 丸にするための半径 */
  position: absolute;
  top: -70%;
  left: 50%;
  transform: translateY(-50%);
}

#global-menu li p:first-child {
  font-size: 1rem;
}

#global-menu li p:last-child {
  font-size: 0.8rem;
}

div#hero {
  position: relative;
}

.hero-text {
  padding: 2.5rem;
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  height: auto;
  color: #fff;
  font-size: 3.5rem;
}

.hero-text p:nth-child(1) {
  line-height: 68px;
}

.hero-text p:nth-child(2) {
  font-size: 1.7rem;
  line-height: 15px;
}

#body {
  margin: 1rem 1rem 0 1rem;
}

#body-inner {
  display: flex;
  padding: 0rem;
}

#body-inner-left {
  width: 30%;
  background-image: url(./../img/bg.png);
  background-repeat: no-repeat;
  background-size: auto;
  padding: 3rem;
  line-height: 3rem;
  font-size: 1.3rem;
  background-size: contain;
}

#body-inner-right {
  width: 70%;
}

#body-inner-right p:first-child {
  white-space: pre-line;
  font-size: 1.5rem;
}

#body-inner-right p:nth-child(2) {
  font-size: 1.2rem;
  line-height: 300%;
  margin-top: 3rem;
}

#second-contents {
  padding: 4rem;
  display: flex;
  justify-content: space-between;
}

#second-contents > div:nth-child(1) {
  width: 50%;
}

#second-contents > div:nth-child(1) > img {
  width: 60%;
}

#second-contents > div:nth-child(2) {
  width: 50%;
  text-align: end;
}

#second-contents > div:nth-child(2) img {
  width: 20%;
}

#access {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}

#footer {
  padding: 0 4rem 3rem 4rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

@media screen and (max-width: 1150px) {
  div#container {
    margin: 0px;
    background-color: #fff;
  }
}
@media screen and (max-width: 700px) {
  div#container {
    margin: 0px;
    background-color: #fff;
  }
  div#header {
    margin: 0 1rem 0 1rem;
    padding: 1rem 0 0 0;
  }
  div#main-logo img {
    width: 120%;
  }
  #global-menu ul {
    display: none;
  }
  .hero-text {
    padding: 1rem;
    bottom: 1.2rem;
    left: 1rem;
    height: auto;
    color: #fff;
    font-size: 1.3rem;
  }
  .hero-text p:nth-child(1) {
    line-height: 33px;
  }
  .hero-text p:nth-child(2) {
    line-height: 8px;
    font-size: 0.73rem;
  }
  #body-inner {
    display: flex;
    padding: 0rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
  #body-inner-left {
    width: 100%;
    background-image: url(./../img/bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 1rem;
  }
  #body-inner-right {
    width: 100%;
  }
  #body-inner-right p:first-child {
    white-space: pre-line;
    font-size: 1.1rem;
  }
  #body-inner-right p:nth-child(2) {
    font-size: 0.9rem;
    line-height: 2rem;
    margin-top: 3rem;
  }
  #second-contents {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
  }
  #second-contents > div:nth-child(1) > img {
    width: unset;
  }
  #second-contents > div:nth-child(2) img {
    width: 40%;
  }
  #footer {
    padding: 0.7rem;
    display: block;
    font-size: 1rem;
  }
  #footer::before {
    display: block;
    border-top: 0.5px solid #999;
    width: 100%;
    height: 20px;
    content: "";
  }
  .hanburger-menu {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */