@charset "UTF-8";
:root {
  --bg: #FAF8F4;
  --black: #212529;
  --orange: #DE6500;
  --white: #ffffff;
  --ivory: #F3F1EA;
}

.black {
  color: var(--black);
}

.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

.yellow {
  color: var(--yellow);
}

/*-------------------------------------------
共通要素
-------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: var(--black);
  line-height: 1.8;
  letter-spacing: 0.02em;
  background-color: var(--bg);
}
body #wrap .flex-box {
  display: flex;
  height: 100vh;
}
body #wrap h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}
body #wrap h3 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}
body #wrap .orange {
  margin-bottom: 50px;
  color: var(--orange);
}
body #wrap h4 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}
body #wrap .sub {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background-color: #FCF0E5;
  padding: 5px 30px;
  margin-bottom: 10px;
}
body #wrap .linktxt {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 50px;
  line-height: 1.6;
  position: relative;
}
body #wrap .linktxt a::after {
  content: url(../images/orange-arrow.svg);
  position: relative;
  top: 3px;
  margin-left: 4px;
}
body #wrap .button {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
  padding: 0 10px;
  max-width: 320px;
  height: 55px;
  background-color: #212529;
  transition: 0.3s;
}
body #wrap .button::after {
  content: url(../images/arrow1.svg);
  position: relative;
  top: 1px;
  margin-left: 4px;
}
body #wrap .button:hover {
  background-color: #333333;
  outline: 3px #CCCCCC solid;
}
body #wrap .button:active {
  background-color: var(--white);
  color: var(--black);
  outline: 1.5px var(--black) solid;
}
body #wrap .button:active::after {
  content: url(../images/arrow2.svg);
  position: relative;
  top: 1px;
  margin-left: 4px;
}
body #wrap .button_white {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid var(--white);
  border-radius: 8px;
  padding: 0 10px;
  margin: 0 auto;
  max-width: 320px;
  height: 55px;
  background-color: #212529;
  transition: 0.3s;
}
body #wrap .button_white:hover {
  background-color: var(--white);
  color: var(--black);
}
body #wrap .button_white:active {
  background-color: var(--white);
  color: var(--black);
  border: 1.5px solid var(--black);
}
body #wrap .button_white2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid var(--white);
  border-radius: 8px;
  padding: 0 10px;
  margin: 0 auto;
  max-width: 320px;
  height: 55px;
  background-color: var(--white);
  transition: 0.3s;
}
body #wrap .button_white2::after {
  content: url(../images/arrow2.svg);
  position: relative;
  top: 1px;
  margin-left: 4px;
}
body #wrap .button_white2:hover {
  outline: 3px #CCCCCC solid;
}
body #wrap .button_white2:active {
  background-color: var(--black);
  color: var(--white);
  outline: 1.5px var(--black) solid;
}
body #wrap .button_white2:active::after {
  content: url(../images/arrow1.svg);
  position: relative;
  top: 1px;
  margin-left: 4px;
}
body #wrap .br-tab {
  display: none;
}
@media screen and (max-width: 1090px) {
  body #wrap .br-tab {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  body #wrap .br-tab {
    display: none;
  }
}
body #wrap .scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body #wrap .scrollbar::-webkit-scrollbar {
  display: none;
}
body #wrap .button_form {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
  padding: 0 10px;
  margin: 0 auto;
  max-width: 320px;
  height: 55px;
  background-color: #212529;
  transition: 0.3s;
}
body #wrap .button_form:hover {
  background-color: #333333;
  outline: 3px #CCCCCC solid;
}
body #wrap .button_form:active {
  background-color: var(--white);
  color: var(--black);
  outline: 1.5px var(--black) solid;
}
body #wrap .disabled {
  opacity: 0.5;
  pointer-events: none;
}

/*-------------------------------------------
hamburger
-------------------------------------------*/
.openbtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: block;
    position: relative;
    z-index: 99999;
    width: 30px;
    height: 66px;
    cursor: pointer;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: var(--black);
  }
  .openbtn span:nth-of-type(1) {
    top: 21px;
    width: 100%;
  }
  .openbtn span:nth-of-type(2) {
    top: 30px;
    width: 100%;
  }
}

.active span:nth-of-type(1) {
  top: 20px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.active span:nth-of-type(2) {
  top: 32px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 150%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--ivory);
  transition: all 0.6s;
}
#g-nav ul {
  height: 100vh;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav ul .top {
  list-style: none;
  text-align: center;
  height: 50%;
}
#g-nav ul .top ul {
  height: 100%;
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
}
#g-nav ul .top ul li {
  margin-top: 20px;
}
#g-nav ul .top ul li:nth-of-type(1) {
  margin-top: 0;
}
#g-nav ul .top ul li:nth-of-type(4) {
  margin-top: 0;
}
#g-nav ul .top ul li figure {
  width: 100%;
  margin-top: 15%;
  transition: all 0.6s;
}
@media screen and (max-height: 800px) {
  #g-nav ul .top ul li figure {
    margin-top: 11%;
    transition: all 0.6s;
  }
}
@media screen and (max-height: 700px) {
  #g-nav ul .top ul li figure {
    margin-top: 7%;
    transition: all 0.6s;
  }
}
#g-nav ul .bottom {
  height: 100%;
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  background-color: var(--black);
}
#g-nav ul .bottom .button {
  margin-top: 20px;
}
#g-nav ul .bottom figure {
  width: 130px;
  margin: 0 auto;
}

#g-nav.panelactive {
  top: 0;
}
#g-nav.panelactive #g-nav-list {
  font-size: 22px;
  font-weight: 600;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list figure {
  width: 100%;
}
#g-nav.panelactive #g-nav-list div {
  width: 100%;
  height: 100%;
  background-color: var(--black);
  text-align: center;
}
#g-nav.panelactive #g-nav-list div figure {
  width: 130px;
  margin: 0 auto;
}
#g-nav.panelactive #g-nav-list div h3 {
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 30px;
}

/*////////////////////////////////////////////////////////////
↑↑↑共通ここまで↑↑↑
////////////////////////////////////////////////////////////*/
/*-------------------------------------------
center
-------------------------------------------*/
#center {
  width: 400px;
  margin: 0 auto;
  background-color: var(--ivory);
  transition: all 1s 0s ease;
}
#center .button {
  margin: 0 auto;
  margin-bottom: 80px;
}
#center .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  height: 66px;
  padding: 0 20px;
  position: fixed;
  z-index: 9999;
}
#center .menu figure {
  width: 114px;
  position: relative;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  #center .menu {
    width: 100%;
  }
}
#center .harassment-response {
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 0 10%;
}
#center .harassment-response p:nth-of-type(1) {
  margin-top: 25px;
  text-align: center;
}
#center .harassment-response .left-start p {
  text-align: start;
}
#center .harassment-attempt {
  padding: 0 10%;
  background-color: white;
  padding-bottom: 80px;
}
#center .harassment-attempt h2 {
  font-size: 22px;
}
#center .harassment-attempt figure {
  width: 172px;
  margin: 0 auto;
  padding: 25px 0;
}
#center .harassment-attempt p {
  margin-bottom: 50px;
}
#center .harassment-attempt .scrollbar {
  display: flex;
  overflow-x: scroll;
}
#center .harassment-attempt .scrollbar li {
  flex-shrink: 0;
  margin-left: 25px;
}
#center .harassment-attempt .scrollbar li:nth-of-type(1) {
  margin-left: 0px;
}
#center .harassment-attempt .scrollbar li figure {
  width: 230px;
  padding: 25px 0 0 0;
}
#center .harassment-attempt .scrollbar li figure img {
  border: 0.5px solid #cccccc;
}
#center .harassment-attempt .scroll {
  margin-bottom: 25px;
  padding: initial;
  width: 100%;
  text-align: end;
  vertical-align: top;
}
#center .harassment-attempt .scroll img {
  width: 70px;
}
#center .harassment-attempt .infomation {
  color: var(--orange);
  font-weight: 500;
}
#center .harassment-attempt .infomation::after {
  content: url(../images/pdfico.svg);
  position: relative;
  top: 2px;
}
#center .bottom {
  margin-bottom: 0;
}
#center .helmet {
  width: 100%;
  background-color: white;
  padding-bottom: 50px;
}
#center .helmet figure {
  width: 100%;
}
#center .helmet figure img {
  width: 100%;
}
#center .harassment-form {
  padding: 0 10%;
  background-color: var(--black);
  padding-bottom: 30px;
}
#center .harassment-form h3 {
  margin-bottom: 15px;
}
#center .harassment-form h3, #center .harassment-form p {
  color: var(--white);
}
#center .harassment-form figure {
  text-align: center;
}
#center .harassment-form figure img {
  width: 130px;
  margin-bottom: 40px;
}
#center .harassment-form .cari {
  width: 300px;
  height: 75px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#center .harassment-form .cari p {
  color: var(--black);
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
#center .harassment-formcomp {
  margin-top: 85px;
  margin-bottom: 40px;
  padding: 0 10%;
}
#center .harassment-formcomp p:nth-of-type(1) {
  margin-top: 25px;
  text-align: center;
}
#center .harassment-formcomp .left-start p {
  text-align: start;
}
#center .harassment-formcomp .button_form {
  margin: 0 auto;
  margin-top: 65px;
}
#center .formarea {
  padding: 0 10%;
  padding-bottom: 30px;
  background-color: var(--ivory);
}
#center .formarea p {
  font-weight: bold;
  margin-bottom: 25px;
}
#center .formarea p span {
  font-size: 11px;
  color: var(--white);
  vertical-align: middle;
  background-color: var(--orange);
  border-radius: 4px;
  padding: 0px 5px 2px 5px;
  position: relative;
  top: -3px;
  left: 5px;
}
#center .formarea p input {
  font-weight: normal;
  background-color: var(--white);
  width: 100%;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 8px;
  outline: none;
}
#center .formarea p input::-moz-placeholder {
  color: #999999;
}
#center .formarea p input::placeholder {
  color: #999999;
}
#center .formarea p input[type=text]:focus {
  outline: 1.5px solid var(--black);
}
#center .formarea p textarea {
  resize: vertical;
  font-weight: normal;
  background-color: var(--white);
  width: 100%;
  min-height: 240px;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 8px;
  outline: none;
}
#center .formarea p textarea::-moz-placeholder {
  color: #999999;
}
#center .formarea p textarea::placeholder {
  color: #999999;
}
#center .formarea p .checkbox {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-top: 0;
  margin-right: 5px;
  position: relative;
  top: -2px;
  cursor: pointer;
  transition: 0.1s;
}
#center .formarea p .checkbox:checked {
  outline: 1.5px solid var(--orange);
}
#center .formarea p .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5.5px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}
#center .formarea p a {
  color: var(--orange);
  transition: 0.2s;
}
#center .formarea p a:hover {
  -webkit-text-decoration: underline 1.5px solid var(--orange);
          text-decoration: underline 1.5px solid var(--orange);
  transition: 0.2s;
}
#center .formarea p .error-message {
  display: none;
  background-color: transparent;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0 0 0;
}
#center .formarea p .is-show {
  display: inline-block;
}
#center .formarea p .error-border {
  outline: 1.5px solid var(--orange);
}
#center .footer {
  text-align: center;
  padding: 60px 0 30px 0;
  background-color: var(--ivory);
}
#center .footer figure {
  margin: 0 auto;
}
#center .footer figure:nth-of-type(1) {
  width: 300px;
}
#center .footer figure:nth-of-type(2) {
  width: 122px;
  margin-top: 30px;
  margin-bottom: 15px;
}
#center .footer figure:nth-of-type(3) {
  width: 156px;
  margin-bottom: 15px;
}
#center .footer p {
  font-size: 10px;
}
@media screen and (max-width: 1090px) {
  #center {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #center {
    width: 100%;
  }
  #center ul {
    width: 100%;
  }
}

/*-------------------------------------------
left
-------------------------------------------*/
#left {
  width: calc(50% - 200px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 20px 50px 50px;
  position: fixed;
  left: 0;
  transition: all 0.5s 0s ease;
}
#left ul {
  text-align: initial;
  position: absolute;
  top: 45%;
}
#left ul li {
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 20px;
}
#left ul li:last-of-type {
  margin-bottom: 0;
}
#left figure {
  width: 100%;
}
@media screen and (max-width: 1090px) {
  #left {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  #left {
    display: none;
  }
}

/*-------------------------------------------
right
-------------------------------------------*/
#right {
  width: calc(50% - 200px);
  height: 100vh;
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  right: 0;
  transition: all 0.5s 0s ease;
}
@media screen and (max-width: 1090px) {
  #right {
    width: 0;
  }
}/*# sourceMappingURL=style.css.map */