@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #352B28;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.burger-btn {
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  width: 30px;
  height: 42px;
  position: relative;
  z-index: 3;
  border: none;
}
@media screen and (min-width: 768px) {
  .burger-btn {
    display: none;
  }
}

.bar {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: black;
}

.bar_top {
  top: 10px;
}

.bar_mid {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 10px;
}

.burger-btn.close .bar_top {
  -webkit-transform: translate(-50%, 10px) rotate(45deg);
          transform: translate(-50%, 10px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.burger-btn.close .bar_mid {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.burger-btn.close .bar_bottom {
  -webkit-transform: translate(-50%, -10px) rotate(-45deg);
          transform: translate(-50%, -10px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body.noscroll {
  overflow: hidden;
}

/* 以下、ハンバーガーメニュー */
.header__nav {
  visibility: hidden; /* 非表示 */
  opacity: 0; /* 透過 */
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__nav.fade {
  visibility: visible; /* 表示 */
  opacity: 1;
}

.nav__wrapper {
  width: 100%;
  height: 100%;
  background-color: white;
}

.nav__items {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.nav__item {
  margin-right: 0;
  margin-bottom: 40px;
  color: #352B28;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.nav__item a {
  display: block;
}

/* メニューオープン時 */
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #352B28;
  color: #fff;
}

.sub {
  color: #352B28;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.title {
  color: #352B28;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Arial", sans-serif;
  position: relative;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 2rem;
    margin-bottom: 0.3125rem;
  }
}

.title:after {
  position: absolute;
  bottom: -15px;
  bottom: -0.9375rem;
  left: calc(50% - 40px);
  width: 80px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#be089c), color-stop(44%, #7641f1), color-stop(78%, #5d8fff), to(#6cdfff));
  background: linear-gradient(to right, #be089c, #7641f1 44%, #5d8fff 78%, #6cdfff);
}

@media screen and (min-width: 768px) {
  .w-50 {
    width: 50%;
  }
}

input[type=radio] {
  font-size: 180%;
  height: 30px;
  width: 25px;
  margin-right: 10px;
  margin-right: 0.625rem;
  top: 9px;
  top: 0.5625rem;
  position: relative;
}

input[type=checkbox] {
  font-size: 180%;
  height: 30px;
  width: 25px;
  margin: 10px;
  margin: 0.625rem;
  top: 14px;
  top: 0.875rem;
  position: relative;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.form__title {
  text-align: center;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  background-color: #F5F5F5;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .form__title {
    padding-bottom: 7.5rem;
    padding-top: 3.125rem;
  }
}

.list__inner {
  max-width: 900px;
  max-width: 56.25rem;
  width: 100%;
  margin: 0 auto;
}

.list {
  padding: 40px 10px;
  padding: 2.5rem 0.625rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: -40px;
  margin-top: -2.5rem;
  -webkit-box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, .6);
          box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, .6);
  background-color: #fff;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .list {
    padding: 2.5rem 1.875rem;
    margin-top: -3.75rem;
    padding-bottom: 3.75rem;
  }
}

.list__text {
  text-align: center;
  color: #352B28;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .list__text {
    font-size: 1.125rem;
  }
}

input[type=text] {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-size: 16px;
  /*--文字サイズ--*/
  border: solid 2px #cccccc;
  /*--ボーダー線--*/
  border-radius: 5px;
  /*--角丸--*/
}

input[type=email] {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-size: 16px;
  /*--文字サイズ--*/
  border: solid 2px #cccccc;
  /*--ボーダー線--*/
  border-radius: 5px;
  /*--角丸--*/
}

input[type=tel] {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-size: 16px;
  /*--文字サイズ--*/
  border: solid 2px #cccccc;
  /*--ボーダー線--*/
  border-radius: 5px;
  /*--角丸--*/
}

input[type=date] {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-size: 16px;
  /*--文字サイズ--*/
  border: solid 2px #cccccc;
  /*--ボーダー線--*/
  border-radius: 5px;
  /*--角丸--*/
}

/*--focus--*/
input:focus {
  background-color: rgb(239, 239, 239);
  /*--背景色--*/
}

.required {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #352B28;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.required::after {
  content: "必須";
  background-color: rgb(236, 69, 69);
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0px 6px;
  line-height: 12px;
  line-height: 0.75rem;
  letter-spacing: 0.05em;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}

.fw-b {
  font-weight: bold;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 16px 16px;
  padding: 1rem 1rem;
  border-left: 3px solid gray;
  background: #f4f4f4;
}

input::-webkit-input-placeholder {
  color: #cfcfcf;
}

input::-moz-placeholder {
  color: #cfcfcf;
}

input::-ms-input-placeholder {
  color: #cfcfcf;
}

input::placeholder {
  color: #cfcfcf;
}

.confirm__btn {
  text-align: center;
}

input[type=submit] {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, right top, from(#be089c), color-stop(44%, #7641f1), color-stop(78%, #5d8fff), to(#6cdfff));
  background: linear-gradient(to right, #be089c, #7641f1 44%, #5d8fff 78%, #6cdfff);
  padding: 14px 60px;
  padding: 0.875rem 3.75rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
  display: inline-block;
  border-radius: 3.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
input[type=submit]:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (min-width: 768px) {
  input[type=submit] {
    padding: 1rem 5.875rem;
    font-size: 1rem;
  }
}

.btn-g.confirm__btnarea {
  text-align: center;
  padding-top: 20px;
  padding-top: 1.25rem;
}

input[type=submit].submit_btn {
  padding: 16px 80px;
  padding: 1rem 5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  input[type=submit].submit_btn {
    padding: 0.875rem 7.375rem;
  }
}

input[type=submit].back_btn {
  background: #fff;
  border: 2px solid rgb(168, 168, 168);
  color: rgb(168, 168, 168);
  padding: 12px 50px;
  padding: 0.75rem 3.125rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 768px) {
  input[type=submit].back_btn {
    padding: 0.75rem 3.125rem;
  }
}

.checkbox {
  text-align: center;
  font-weight: normal;
  color: #352B28;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 600px) {
  .checkbox {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .checkbox {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link {
  text-decoration: underline;
  color: blue;
}

.link:visited {
  color: silver;
}

.send_area {
  padding: 0 20px;
  padding: 0 1.25rem;
}

.send_title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.send_message {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.errmessage {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  background: #fce7e7;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}

.header {
  position: fixed;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 64px;
  height: 4rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.3125rem;
    padding: 0 2.5rem;
  }
}

.header img {
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .header img {
    width: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .navPC {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .navPC__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .navPC__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .navPC__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    font-size: 1rem;
    font-weight: bold;
    color: #352B28;
    letter-spacing: 0.1em;
    margin-left: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .navPC__item a {
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .nav-right {
    display: none;
  }
}

.sns-btn {
  margin-right: 15px;
  margin-right: 0.9375rem;
  width: 30px;
  width: 1.875rem;
}

@media screen and (min-width: 768px) {
  .m-40 {
    margin-left: 3.125rem;
    width: 2.5rem;
  }
}

main {
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 5rem;
  }
}

.mv {
  height: 400px;
  height: 25rem;
  padding: 15px;
  padding: 0.9375rem;
  background-image: url(/images/common/mv-sp@2x.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 600px) {
  .mv {
    background-image: url(/images/common/mv-sm@2x.jpg);
    height: 31.25rem;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    background-image: url(/images/common/mv-pc@2x.jpg);
    margin-bottom: 1.25rem;
  }
}

.mv__text {
  font-family: "Georgia", sans-serif;
  color: #352B28;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-style: italic;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  top: 40px;
  top: 2.5rem;
}
@media screen and (min-width: 600px) {
  .mv__text {
    font-size: 1.375rem;
  }
}

@media screen and (min-width: 768px) {
  .mv__textPC {
    font-family: "Georgia", sans-serif;
    color: #352B28;
    font-weight: normal;
    font-size: 1.5625rem;
    letter-spacing: 0.06em;
    font-style: italic;
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
    position: absolute;
    bottom: 8.75rem;
    left: 3.75rem;
  }
}

.mv__textPC span {
  color: #fff;
}
.mv__title {
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  bottom: 15px;
  bottom: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__title {
    right: 9.375rem;
    bottom: 12.5rem;
    text-align: left;
  }
}

img.mv__title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  img.mv__title-pc {
    display: block;
    width: 18.75rem;
    margin-bottom: 0.3125rem;
  }
}

img.mv__title-sp {
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  img.mv__title-sp {
    display: none;
  }
}

.mv__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #352B28;
}
@media screen and (min-width: 768px) {
  .mv__subtitle {
    font-size: 1.875rem;
  }
}

.mv__heading {
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 auto;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
  color: #352B28;
}

.mv__heading span {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .mv__headingPC {
    font-style: italic;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 0 auto;
    color: #352B28;
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .mv__headingPC span {
    font-size: 1.75rem;
  }
}

.animationTarget {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 1s;
  transition: 1s;
}

.animationTarget.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.about__inner {
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-top: 5rem;
  }
}

.about__title {
  text-align: center;
}

.about__text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1rem;
    line-height: 3;
    margin-bottom: 3.75rem;
  }
}

.about__images {
  max-width: 250px;
  max-width: 15.625rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 62.5rem;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2.5rem;
  }
}

.about__image {
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 30%;
  }
}

.app__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .app__inner {
    padding-top: 5rem;
    margin-bottom: 5rem;
  }
}

.app__title {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.app-images {
  margin: 0 auto;
  max-width: 380px;
  max-width: 23.75rem;
  width: 100%;
  padding-top: 50px;
  padding-top: 3.125rem;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app-images {
    max-width: 23.75rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.app__name {
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.micolive {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.micolive a {
  width: 120px;
  width: 7.5rem;
  height: auto;
  display: block;
  margin: 0 auto;
}
.micolive a:hover {
  opacity: 0.6;
}

.mildom a {
  width: 120px;
  width: 7.5rem;
  height: auto;
  display: block;
  margin: 0 auto;
}
.mildom a:hover {
  opacity: 0.6;
}

.app-image img {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  width: 120px;
  width: 7.5rem;
}

#btn-g__area {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 0 20px;
  padding: 0 1.25rem;
  background-color: #3C4650;
}

.btn-g__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .btn-g__inner {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.btn-g a {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#be089c), color-stop(44%, #7641f1), color-stop(78%, #5d8fff), to(#6cdfff));
  background: linear-gradient(to right, #be089c, #7641f1 44%, #5d8fff 78%, #6cdfff);
  padding: 16px 72px;
  padding: 1rem 4.5rem;
  display: inline-block;
  border-radius: 3.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.btn-g a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (min-width: 768px) {
  .btn-g a {
    padding: 1rem 6.25rem;
  }
}

.btn-g__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .btn-g__text {
    font-size: 1rem;
  }
}

.btn-g__heading {
  position: relative;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  display: inline-block;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .btn-g__heading {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.btn-g__heading p:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.btn-g__heading p:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

#office dl {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.office-inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .office-inner {
    max-width: 50rem;
    width: 100%;
    height: auto;
    padding-top: 5rem;
    margin-bottom: 5rem;
  }
}

.office__title {
  text-align: center;
}

.office-table {
  padding: 12px 0;
  padding: 0.75rem 0;
  border-bottom: solid 1px #352B28;
}
@media screen and (min-width: 768px) {
  .office-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1.25rem 0;
  }
}

.office-table dd {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .office-table dd {
    padding-left: 1.25rem;
    width: 30%;
    margin-bottom: 0;
    font-size: 1.125rem;
  }
}

.office-table dt {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .office-table dt {
    font-size: 1rem;
  }
}

.bt-b {
  border-top: 2px solid #352B28;
}

footer {
  background-color: #3C4650;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  position: relative;
}

.f-inner {
  max-width: 1300px;
  max-width: 81.25rem;
  width: 100%;
  margin: 0 auto;
}

#pagetop {
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  top: 20px;
  top: 1.25rem;
  text-indent: -9999px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #pagetop {
    top: 3.125rem;
    right: 2.5rem;
  }
}

#pagetop a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

#pagetop a:hover {
  opacity: 0.3;
}

#pagetop a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #707070;
}

.footer__logo {
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    text-align: left;
    font-size: 1.875rem;
    margin-top: 1.25rem;
  }
}

.btn__white {
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .btn__white {
    width: 8.125rem;
    height: 8.125rem;
  }
}

.btn__white a {
  display: block;
  padding: 32px 18px;
  padding: 2rem 1.125rem;
}

.btn__white p {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Arial", sans-serif;
}
@media screen and (min-width: 768px) {
  .btn__white p {
    font-size: 0.75rem;
  }
}

.btn__white img {
  width: 30px;
  width: 1.875rem;
  display: block;
  margin: 0 auto;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .btn__white img {
    width: 2.5rem;
    padding-bottom: 0.625rem;
  }
}

.copyright {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
/*# sourceMappingURL=styles.css.map */
