@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
p:not(:first-child) {
  margin-top: 1em;
}

html {
  font-size: 62.5%;
  background-color: #fff;
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #000;
}
body::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  max-width: 1440px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h2 {
  font-size: 6.5rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}
@media (max-width: 929px) {
  h2 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

h3 {
  font-size: 3.4rem;
  margin: 0;
  padding: 0;
  line-height: 1.44;
  font-weight: 400;
}
@media (max-width: 929px) {
  h3 {
    font-size: 1.9rem;
  }
}

h4 {
  font-size: 2.8rem;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
@media (max-width: 929px) {
  h4 {
    font-size: 1.4rem;
  }
}

p {
  font-size: 2.2rem;
  margin: 0;
  padding: 0;
  line-height: 1.45;
  font-weight: 400;
}
@media (max-width: 929px) {
  p {
    font-size: 1.4rem;
    line-height: 1.65;
  }
}

@media screen and (min-width: 599px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
.green {
  color: #7abb27;
  font-size: 4.6rem;
}
@media (max-width: 929px) {
  .green {
    font-size: 2.3rem;
  }
}

mark {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68%, transparent), color-stop(60%, #ffedb0));
  background: -webkit-linear-gradient(transparent 68%, #ffedb0 60%);
  background: linear-gradient(transparent 68%, #ffedb0 60%);
}

.bold {
  font-weight: bold;
}
@media (max-width: 929px) {
  .bold {
    font-weight: 500;
  }
}

h2 .number_big {
  font-size: 7.5rem;
}
@media (max-width: 929px) {
  h2 .number_big {
    font-size: 3rem;
  }
}

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%; /*rem算出をしやすくするために*/
}

.contact_button {
  text-align: center;
}
.contact_button a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.5rem 3.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}
@media (min-width: 930px) {
  .contact_button a {
    font-size: 3rem;
    padding: 3rem 7rem;
  }
}

.button--01 a {
  color: #ffffff;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-radius: 50px;
}
@media (min-width: 930px) {
  .button--01 a {
    border-bottom-width: 7px;
  }
}
.button--01 a:hover {
  margin-top: 3px;
  color: #ffffff;
  border-bottom-width: 2px;
}
.button--01 .fa-position-left,
.button--01 .fa-position-right {
  display: block !important;
}

.fa-position-left {
  display: none !important;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1.8rem;
}
@media (min-width: 930px) {
  .fa-position-left {
    left: 2.8rem;
  }
}

.fa-position-right {
  display: none !important;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1.8rem;
}
@media (min-width: 930px) {
  .fa-position-right {
    right: 2.8rem;
  }
}

.button--02 a {
  position: relative;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  overflow: hidden;
}
.button--02 a::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  width: 100%;
}
.button--02 a:hover::before {
  opacity: 0;
}
.button--02 a span {
  position: relative;
  width: 100%;
  color: #fff;
}

.button--03 a {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  text-decoration: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
.button--03 a::before {
  content: "";
  height: calc(100% + 5px);
  position: absolute;
  right: -10px;
  top: -14px;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  width: 100%;
  z-index: -1;
}
.button--03 a:hover {
  background-color: transparent;
  cursor: pointer;
}
.button--03 a:hover::before {
  top: 0;
  right: 0;
  height: 100%;
}
.button--03 a span {
  position: relative;
  width: 100%;
  color: #fff;
}

.line-btn {
  margin-top: 100px;
}
.line-btn dt {
  position: relative;
  margin-bottom: 20px;
  font-size: 2.6rem;
  text-align: center;
}
@media (max-width: 929px) {
  .line-btn dt {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.line-btn dt::before, .line-btn dt::after {
  content: "/";
  display: inline-block;
  position: relative;
  font-weight: 700;
}
.line-btn dt::before {
  margin-right: 1em;
  -webkit-transform: scale(-1, 1) rotate(20deg);
          transform: scale(-1, 1) rotate(20deg);
}
.line-btn dt::after {
  margin-left: 1em;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.line-btn dd {
  max-width: 500px;
  height: 100px;
  margin: 0 auto;
}
@media (max-width: 929px) {
  .line-btn dd {
    height: 70px;
  }
}
.line-btn dd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 0 40px;
  color: #fff;
  background-color: #06c755;
  border-radius: 10px;
  font-size: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 929px) {
  .line-btn dd a {
    font-size: 22px;
  }
}
.line-btn dd a::before {
  content: "";
  display: block;
  position: absolute;
  top: 52%;
  left: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 60px;
  height: 60px;
  background: url(../images/line-logo.svg) no-repeat top center/contain;
  z-index: 1;
}
@media (max-width: 929px) {
  .line-btn dd a::before {
    width: 40px;
    height: 40px;
  }
}
.line-btn dd a:hover {
  opacity: 0.8;
}

.header {
  width: 100%;
  top: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  height: 10rem;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*アクティブクラスがついたら位置を0に*/
  /*ナビゲーションの縦スクロール*/
  /*ナビゲーション*/
  /*リストのレイアウト設定*/
}
@media (max-width: 929px) {
  .header {
    height: 5rem;
  }
}
.header .logo {
  margin: auto 3rem;
}
@media (max-width: 929px) {
  .header .logo {
    width: 13.6rem;
    margin: auto 0 auto 2rem;
  }
}
.header .logo a {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
}
@media (max-width: 929px) {
  .header .logo a {
    font-size: 2rem;
    white-space: nowrap;
  }
}
.header .pc-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1712px) {
  .header .pc-nav {
    display: none;
  }
}
.header .pc-nav .pc-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header .pc-nav .pc-nav-list li {
  margin: 0 4rem 0 0;
}
.header .pc-nav .pc-nav-list li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.header .pc-nav .pc-nav-list li a:hover {
  opacity: 0.7;
}
.header .pc-nav .pc-contact-button {
  margin-top: -10px;
}
.header .pc-nav .pc-contact-button a {
  height: 9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.8rem;
  color: #fff;
  padding: 0 3rem;
}
.header .pc-nav .pc-contact-button a.change-color {
  opacity: 0.8;
}
.header .pc-nav .pc-contact-button a:hover {
  opacity: 0.7;
}
.header #g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 380px;
  height: 600px; /*ナビの高さ*/
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 929px) {
  .header #g-nav {
    width: 243px;
    height: 580px;
  }
}
.header #g-nav.panelactive {
  right: 0;
}
.header #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header #g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 262px;
  left: 171px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 5rem auto 0rem;
}
@media (max-width: 929px) {
  .header #g-nav ul {
    padding: 0;
    margin: 2rem auto 0rem;
    left: 124px;
  }
}
.header #g-nav li {
  list-style: none;
  text-align: center;
}
.header #g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px 24px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 929px) {
  .header #g-nav li a {
    font-size: 1.6rem;
    padding: 10px 24px;
    margin: 20px auto;
  }
}
.header .contact_bar {
  margin-top: 15px;
  padding: 20px;
}
.header .openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  cursor: pointer;
  width: 90px;
  height: 90px;
}
@media (max-width: 929px) {
  .header .openbtn {
    height: 5rem;
    width: 5rem;
  }
}
.header .sp-hum {
  z-index: 9999; /*ボタンを最前面に*/
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×になる*/
}
@media (min-width: 1700px) {
  .header .sp-hum {
    display: none;
  }
}
.header .sp-hum .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  background: #fff;
}
.header .sp-hum .openbtn span:nth-of-type(1) {
  top: 24px;
  width: 60%;
  left: 21px;
}
@media (max-width: 929px) {
  .header .sp-hum .openbtn span:nth-of-type(1) {
    top: 15px;
    width: 45%;
    left: 16px;
  }
}
.header .sp-hum .openbtn span:nth-of-type(2) {
  top: 41px;
  left: 37px;
  width: 42%;
}
@media (max-width: 929px) {
  .header .sp-hum .openbtn span:nth-of-type(2) {
    top: 23px;
    width: 35%;
    left: 21px;
  }
}
.header .sp-hum .openbtn span:nth-of-type(3) {
  top: 59px;
  left: 48px;
  width: 29%;
}
@media (max-width: 929px) {
  .header .sp-hum .openbtn span:nth-of-type(3) {
    top: 31px;
    width: 20%;
    left: 29px;
  }
}
.header .sp-hum .openbtn.active span:nth-of-type(1) {
  top: 31px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 60%;
}
@media (max-width: 929px) {
  .header .sp-hum .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    width: 30%;
  }
}
.header .sp-hum .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .sp-hum .openbtn.active span:nth-of-type(3) {
  top: 43px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 60%;
}
@media (max-width: 929px) {
  .header .sp-hum .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    width: 30%;
  }
}

.c-aside {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  bottom: 40px;
  right: 2vw;
  z-index: 2;
  mix-blend-mode: difference;
}
@media (max-width: 929px) {
  .c-aside {
    position: absolute;
    bottom: 16px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
@media (max-width: 929px) {
  .c-aside__icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-aside__icon-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  padding: 14px;
  background-color: #000;
  border-radius: 50%;
  border: 1px solid #000;
}
@media (max-width: 929px) {
  .c-aside__icon-link {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}
.c-aside__icon-link:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 929px) {
  .c-aside__icon-link:not(:first-child) {
    margin: 0 0 0 10px;
  }
}
.c-aside__icon-link--md {
  padding: 11px;
}
.c-aside__icon-link--lg {
  padding: 7px;
}
.c-aside__icon-link--xl {
  padding: 0;
}
.c-aside__icon-link img {
  width: 100%;
  height: auto;
}
@media (max-width: 929px) {
  .c-aside__icon-link {
    background-color: #391d03;
  }
  .c-aside__icon-link img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-aside__icon-link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-aside__icon-link img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-aside__icon-link:hover {
    background-color: #fff;
  }
  .c-aside__icon-link:hover img {
    -webkit-filter: brightness(0) invert(0);
            filter: brightness(0) invert(0);
  }
}

#fv {
  position: relative;
  text-align: center;
}
#fv::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url(../images/fv_overlay.png) no-repeat bottom center/contain;
  z-index: 1;
}
@media (max-width: 666px) {
  #fv::before {
    bottom: -43px;
    background: url(../images/fv_overlay_sp.png) no-repeat bottom center/contain;
  }
}
#fv::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
}
#fv .fv_catch {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  color: #fff;
  z-index: 2;
  text-align: center;
}
@media (max-width: 1000px) {
  #fv .fv_catch {
    top: 45%;
  }
}
@media (max-width: 666px) {
  #fv .fv_catch {
    top: 50%;
    width: 90vw;
    text-align: left;
  }
}
#fv .fv_catch .fv_text {
  display: inline-block;
  position: relative;
  font-size: calc(24px + 25 * (100vw - 800px) / 1100);
  line-height: 1.47;
}
@media (max-width: 666px) {
  #fv .fv_catch .fv_text {
    margin-left: 0.5em;
    font-size: 16px;
    text-align: left;
  }
}
#fv .fv_catch .fv_text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}
#fv .fv_catch h1 {
  margin: 0.2em 0 0.5em;
  font-size: calc(60px + 80 * (100vw - 800px) / 1100);
  line-height: 1.079;
  text-shadow: 0 0 20px #331f00;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 666px) {
  #fv .fv_catch h1 {
    font-size: 40px;
  }
}
#fv .fv_catch ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  padding-left: 0;
}
@media (max-width: 666px) {
  #fv .fv_catch ul {
    gap: 15px;
  }
}
#fv .fv_catch ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  max-width: 188px;
  width: 13vw;
  max-height: 188px;
  height: 13vw;
  background-color: rgba(162, 141, 50, 0.6);
  border: calc(2px + 1 * (100vw - 800px) / 1100) solid #fff;
  border-radius: 50%;
  font-size: calc(30px + 18 * (100vw - 800px) / 1100);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 666px) {
  #fv .fv_catch ul li {
    width: 75px;
    height: 75px;
    font-size: 19px;
    text-align: center;
  }
}
#fv .fv_catch ul li span {
  font-size: calc(18px + 16 * (100vw - 800px) / 1100);
}
@media (max-width: 666px) {
  #fv .fv_catch ul li span {
    font-size: 12px;
  }
}
#fv .fv_catch ul li small {
  display: block;
  margin-top: 0.3em;
  font-size: 0.6em;
}
#fv img {
  width: 100%;
}

#go {
  margin-top: -20rem;
  text-align: center;
  z-index: 1;
}
@media (max-width: 1466px) {
  #go {
    margin: -8rem 2rem 0;
  }
}
@media (max-width: 929px) {
  #go {
    margin: -3rem 1.5rem 0;
  }
}
#go .title {
  position: relative;
  font-weight: 300;
}
@media (max-width: 1366px) {
  #go .title {
    font-size: 5.5rem;
  }
}
@media (max-width: 929px) {
  #go .title {
    font-size: 2.5rem;
  }
}
#go .title_sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
#go .title_sp .line_left_sp {
  margin: 0 1rem 0 0;
}
#go .title_sp .line_right_sp {
  margin: 0 0 0 1rem;
}
#go .go_group {
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 929px) {
  #go .go_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem 1rem auto;
  }
}
#go .go_group .go_box {
  width: 46%;
}
#go .go_group .go_box .contact_button {
  text-align: center;
  margin: 7rem auto 0;
}
@media (max-width: 929px) {
  #go .go_group .go_box .contact_button {
    margin-top: 4rem;
  }
}
@media (max-width: 929px) {
  #go .go_group .go_box {
    width: 100%;
    margin-top: 2rem;
  }
}
#go .go_group .go_img {
  position: relative;
  width: 46%;
  height: 490px;
  padding: 0 25px 25px 0;
}
#go .go_group .go_img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  z-index: -1;
}
@media (max-width: 929px) {
  #go .go_group .go_img {
    width: 80%;
    height: 180px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px 15px 0;
  }
  #go .go_group .go_img::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
  }
}
#go .go_group .go_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#what {
  margin-top: 12rem;
  text-align: center;
}
@media (max-width: 1366px) {
  #what {
    margin: 12rem 2rem 0;
  }
}
@media (max-width: 929px) {
  #what {
    margin: 6rem 1.5rem 0;
  }
}
#what .title {
  font-weight: 300;
  position: relative;
}
#what .what_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
@media (max-width: 929px) {
  #what .what_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem 1rem auto;
  }
}
#what .what_group .what_text {
  width: 46%;
}
@media (max-width: 929px) {
  #what .what_group .what_text {
    width: 100%;
    margin-top: 2rem;
  }
}
#what .what_group .what_img {
  position: relative;
  width: 46%;
  height: 490px;
  padding: 0 25px 25px 0;
}
#what .what_group .what_img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  z-index: -1;
}
@media (max-width: 929px) {
  #what .what_group .what_img {
    width: 80%;
    height: 180px;
    margin: 0 auto;
    padding: 0 15px 15px 0;
    text-align: center;
  }
  #what .what_group .what_img::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
  }
}
#what .what_group .what_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#feature {
  position: relative;
  text-align: center;
  margin: 14.4rem auto -0.7rem;
  padding-bottom: 12rem;
}
#feature::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
@media (max-width: 929px) {
  #feature {
    margin: 5rem auto 0;
    padding: 0 1.5rem 6rem;
  }
}
#feature .title {
  position: relative;
  font-weight: 300;
}
@media (max-width: 929px) {
  #feature .title {
    margin-bottom: -0.5rem;
  }
}
#feature .feature_group {
  background-color: #ffffff;
  border-width: 3px;
  border-style: solid;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 7rem;
}
@media (max-width: 929px) {
  #feature .feature_group {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#feature .feature_subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 1366px) {
  #feature .feature_subtitle {
    width: 50%;
  }
}
@media (max-width: 929px) {
  #feature .feature_subtitle {
    width: 100%;
    margin-top: 2.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#feature .feature_subtitle h3 {
  width: 476px;
}
@media (max-width: 1366px) {
  #feature .feature_subtitle h3 {
    width: 100%;
    margin-right: 2rem;
  }
}
#feature .feature_subtitle .fe1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#feature .feNum {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4rem;
  height: 4rem;
  padding-bottom: 0.5rem;
  color: #fff;
  border-radius: 50%;
  font-size: 3.1rem;
  margin: auto 1.4rem auto 6.8rem;
}
@media (max-width: 929px) {
  #feature .feNum {
    width: 26px;
    height: 26px;
    font-size: 2rem;
    margin: auto 1.3rem auto 2rem;
    padding-bottom: 0.2rem;
  }
}
#feature .feature_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1366px) {
  #feature .feature_box {
    width: 50%;
  }
}
@media (max-width: 929px) {
  #feature .feature_box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 929px) {
  #feature .feature_box img {
    margin: -2.5rem 0 -3.5rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
#feature .feature_text {
  margin: 5rem;
  width: 600px;
}
@media (max-width: 1366px) {
  #feature .feature_text {
    width: 100%;
  }
}
@media (max-width: 929px) {
  #feature .feature_text {
    width: 90%;
    margin: 1rem auto 2.5rem;
  }
}

#recommend .title {
  font-weight: 300;
  margin: 9rem 2rem 0;
}
@media (max-width: 1100px) {
  #recommend .title {
    font-size: 5rem;
  }
}
@media (max-width: 929px) {
  #recommend .title {
    font-size: 3rem;
    margin: 4rem 0 0;
  }
}
#recommend .title_sp {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 929px) {
  #recommend .title_sp {
    text-align: center;
  }
}
#recommend .title_sp .line_left_sp {
  margin: 0 1rem 0 0;
}
#recommend .title_sp .line_right_sp {
  margin: 0 0 0 1rem;
}
#recommend .recommend_img {
  margin: auto 2rem;
}
@media (max-width: 929px) {
  #recommend .recommend_img {
    text-align: center;
    margin: 1rem auto;
  }
}
#recommend .recommend_img figure {
  position: relative;
  width: 80%;
  height: 667px;
  margin: 0 0 0 auto;
  padding: 0 25px 25px 0;
}
#recommend .recommend_img figure::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  z-index: -1;
}
@media (max-width: 929px) {
  #recommend .recommend_img figure {
    width: 70%;
    height: 156px;
    margin: 0 auto;
    padding: 0 10px 10px 0;
  }
  #recommend .recommend_img figure::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border-radius: 5px 0 5px 0;
  }
}
#recommend .recommend_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#recommend .recommend_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 2.8rem;
  padding: 0 10px;
}
@media (max-width: 929px) {
  #recommend .recommend_box {
    margin-top: 0.8rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
#recommend .item1 {
  padding: 20px 30px;
  font-size: 2.6rem;
  line-height: 1.44;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 130px;
}
@media (max-width: 1260px) {
  #recommend .item1 {
    font-size: 2rem;
  }
}
@media (max-width: 929px) {
  #recommend .item1 {
    min-height: 65px;
    padding: 10px 15px;
    font-size: 1.4rem;
  }
  #recommend .item1 br {
    display: none;
  }
}
#recommend .item3 {
  font-size: 2.6rem;
}
@media (max-width: 929px) {
  #recommend .item3 {
    font-size: 1.3rem;
  }
}
#recommend .method {
  position: relative;
  padding: 3rem 0rem 17rem;
  margin-top: 14rem;
  background-color: #391d03;
  -webkit-clip-path: polygon(35% 0, 50% 8%, 65% 0, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
          clip-path: polygon(35% 0, 50% 8%, 65% 0, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  text-align: center;
}
@media (max-width: 929px) {
  #recommend .method {
    padding: 7rem 0 8rem;
    margin-top: 4rem;
  }
}
#recommend .method_title {
  font-weight: 300;
  padding-top: 7rem;
  font-size: 7.4rem;
  color: #ffffff;
}
@media (max-width: 1020px) {
  #recommend .method_title {
    font-size: 5rem;
  }
}
@media (max-width: 929px) {
  #recommend .method_title {
    font-size: 2.8rem;
    padding-top: 0;
  }
}
#recommend .method_subtitle {
  font-weight: 300;
  padding-top: 1.5rem;
  font-size: 3.4rem;
  color: #ffffff;
}
@media (max-width: 929px) {
  #recommend .method_subtitle {
    font-size: 1.7rem;
  }
}
#recommend .method_box {
  display: inline-block;
  margin: 5rem 2rem 0;
  text-align: left;
}
@media (max-width: 929px) {
  #recommend .method_box {
    margin: 0.5rem auto 0;
  }
}
#recommend .method_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 1.5rem auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#recommend .method_content .method_text {
  color: #ffffff;
  margin-left: 1rem;
}
#recommend .method_content .methodNum {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4.6rem;
  height: 4.6rem;
  padding-bottom: 0.3rem;
  background-color: #fff;
  border-radius: 50%;
  font-size: 3.3rem;
  font-weight: 700;
}
@media (max-width: 929px) {
  #recommend .method_content .methodNum {
    width: 2rem;
    height: 2rem;
    padding-bottom: 0.1rem;
    font-size: 1.4rem;
  }
}
#recommend .contact_button {
  margin-top: 9.3rem;
  text-align: center;
}
@media (max-width: 929px) {
  #recommend .contact_button {
    margin: 6rem 2.5rem 0;
  }
}

#question {
  padding-bottom: 10rem;
  text-align: center;
  margin-top: 14rem;
}
@media (max-width: 929px) {
  #question {
    margin: 7rem auto 0;
    padding: 0 1.5rem 6rem;
  }
}
#question::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: calc(50% - 50vw);
  z-index: -1;
}
#question .title {
  font-weight: 300;
  margin: 2rem auto;
  position: relative;
}
#question .qa_switch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
#question .qa_switch-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 300px;
  width: 100%;
  padding: 12px 5px;
  border: 1px solid #000;
  font-size: 2rem;
  line-height: 1.5;
  cursor: pointer;
}
@media (max-width: 929px) {
  #question .qa_switch-tab {
    font-size: 1.4rem;
  }
}
#question .qa_switch-tab.is-select {
  color: #fff;
  pointer-events: none;
  cursor: default;
}
#question .qa_tab {
  display: none;
}
#question .qa_tab.is-select {
  display: block;
}
#question .qa {
  margin: auto 6.8rem;
  text-align: left;
  padding: 2.6rem 0;
  border-bottom-width: 2px;
  border-bottom-style: dashed;
}
@media (max-width: 929px) {
  #question .qa {
    margin: auto 0;
  }
}
#question .qa_last {
  margin: auto 6.8rem;
  text-align: left;
  padding: 2.6rem 0;
}
@media (max-width: 929px) {
  #question .qa_last {
    margin: auto 0;
  }
}
#question .q_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#question .q_group .q {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 929px) {
  #question .q_group .q {
    font-size: 2rem;
  }
}
#question .q_group .q_text {
  font-size: 2.4rem;
  margin: 0.3rem auto 0 2rem;
  font-weight: bold;
}
@media (max-width: 929px) {
  #question .q_group .q_text {
    font-size: 1.5rem;
    margin: 0.5rem auto 0 0.7rem;
  }
}
#question .a_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}
#question .a_group .a {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 929px) {
  #question .a_group .a {
    font-size: 2rem;
  }
}
#question .a_group .a_text {
  font-size: 2.2rem;
  margin: 0.3rem auto 0 2rem;
  line-height: 1.6;
}
@media (max-width: 929px) {
  #question .a_group .a_text {
    font-size: 1.4rem;
    line-height: 1.65;
    margin: 0.5rem auto 0 0.7rem;
  }
}
#question .a_group .a_subtext {
  font-size: 1.8rem;
  font-weight: 300;
}
@media (max-width: 929px) {
  #question .a_group .a_subtext {
    font-size: 1.3rem;
  }
}

#start .title {
  position: relative;
  font-weight: 300;
  margin: 9rem 2rem 0;
  text-align: right;
}
@media (max-width: 1100px) {
  #start .title {
    font-size: 5rem;
  }
}
@media (max-width: 929px) {
  #start .title {
    font-size: 3rem;
    margin: 4rem 1rem 0;
    text-align: center;
  }
}
#start .title_sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 929px) {
  #start .title_sp {
    text-align: center;
  }
}
#start .title_sp .line_left_sp {
  margin: 0 1rem 0 0;
}
#start .title_sp .line_right_sp {
  margin: 0 0 0 1rem;
}
#start .recommend_img {
  text-align: left;
  margin: auto 2rem;
}
@media (max-width: 929px) {
  #start .recommend_img {
    text-align: center;
    margin: 1rem auto;
  }
}
#start .recommend_img figure {
  position: relative;
  width: 80%;
  height: 667px;
  margin: 0 auto 0 0;
  padding: 0 35px 35px 0;
  z-index: 1;
}
#start .recommend_img figure::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 35px);
  height: calc(100% - 100px);
  z-index: -1;
}
@media (max-width: 929px) {
  #start .recommend_img figure {
    width: 70%;
    height: 156px;
    margin: 0 auto;
    padding: 0 10px 10px 0;
  }
  #start .recommend_img figure::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border-radius: 5px 0 5px 0;
  }
}
#start .recommend_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#start .start_text {
  padding: 19rem 4.5% 9rem;
  background-color: #f8f8f8;
  border-width: 3px;
  border-style: solid;
  border-radius: 3px;
  margin: -12rem 2rem 0;
}
@media (max-width: 929px) {
  #start .start_text {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
    border-width: 1.5px;
  }
}
#start .contact_button {
  margin-top: 9.3rem;
  text-align: center;
}
@media (max-width: 929px) {
  #start .contact_button {
    margin: 6rem 2.5rem 0;
  }
}

.footer {
  margin-top: 14rem;
  text-align: center;
}
@media (max-width: 929px) {
  .footer {
    margin-top: 6rem;
  }
}
.footer .footer-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 6rem;
  margin-left: 5rem;
}
@media (max-width: 929px) {
  .footer .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto;
    padding-top: 3rem;
  }
}
.footer .footer-info li,
.footer .footer-info a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin: auto 3.6rem;
  cursor: pointer;
}
@media (max-width: 929px) {
  .footer .footer-info li,
  .footer .footer-info a {
    margin: 1.5rem auto;
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.footer .copyright {
  color: #ffffff;
  padding: 3rem 0;
}
@media (max-width: 929px) {
  .footer .copyright {
    padding: 2rem 0 1rem;
  }
}

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo span {
  font-size: 4.6rem;
  font-weight: 900;
}
@media (max-width: 929px) {
  #splash_logo span {
    font-size: 3rem;
    white-space: nowrap;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.modal-container01,
.modal-container02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

.modal-container01.active,
.modal-container02.active {
  opacity: 1;
  visibility: visible;
}

.modal-close01,
.modal-close02 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 20px;
  right: 40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  cursor: pointer;
}
@media (max-width: 929px) {
  .modal-close01,
  .modal-close02 {
    top: 15px;
    right: 20px;
    width: 25px;
    height: 25px;
    font-size: 25px;
  }
}

.p-privacy {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1400px;
  width: 90%;
  height: 80%;
  margin: auto;
  padding: 50px 40px;
  background-color: #fff;
  text-align: left;
  overflow: auto;
}
@media (max-width: 929px) {
  .p-privacy {
    padding: 80px 20px 40px;
  }
}
.p-privacy__title {
  border-bottom: 1px solid #000;
  font-size: 3rem;
}
@media (max-width: 929px) {
  .p-privacy__title {
    font-size: 2.6rem;
  }
}
.p-privacy__inner,
.p-privacy p {
  font-size: 1.6rem !important;
}
@media (max-width: 929px) {
  .p-privacy__inner,
  .p-privacy p {
    font-size: 1.4rem !important;
  }
}
.p-privacy strong {
  display: block;
  margin: 2em 0 0.5em;
}
.p-privacy li {
  position: relative;
  padding-left: 1.1em;
  list-style: none;
}
.p-privacy li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.p-privacy ol {
  counter-reset: num;
  padding-left: 0;
}
.p-privacy ol li::before {
  counter-increment: num;
  content: counter(num) ".";
  top: -3px;
}
.p-privacy ul {
  padding-left: 0;
}
.p-privacy ul li::before {
  content: "・";
}/*# sourceMappingURL=style.css.map */