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

.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.5384615385vw;
  }
}
@media (min-width: 1040px) {
  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;
}

*,
*::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 */
html {
  scroll-behavior: smooth;
}

/* 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);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.about {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 12.5rem;
    padding-bottom: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .about__contents {
    margin-top: 6.25rem;
    padding-left: 12.5rem;
    padding-right: 12.5rem;
  }
}

.about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__card {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.about__card:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__card:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .about__card {
    width: calc(50% - 1.71875rem);
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .about__card:not(:nth-child(1)) {
    margin-left: 3.4375rem;
  }
  .about__card:nth-child(2n+1) {
    margin-left: 0;
  }
  .about__card:nth-child(n+3) {
    margin-top: 3.1875rem;
  }
}
@media screen and (min-width: 1100px) {
  .about__card {
    width: calc(33.3% - 2.29167rem);
    max-width: 100%;
  }
  .about__card:not(:nth-child(1)) {
    margin-left: 3.4375rem;
  }
  .about__card:nth-child(3n+1) {
    margin-left: 0;
  }
  .about__card:nth-child(n+3) {
    margin-top: 0rem;
  }
  .about__card:nth-child(n+4) {
    margin-top: 3.1875rem;
  }
}

.btn {
  width: 264px;
  width: 16.5rem;
  background: #3274C3;
  color: #fff;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  text-align: center;
  border-radius: 40px;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.btn:hover {
  opacity: 0.6;
}
.btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

.card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .card__head {
    margin-left: 0;
  }
}

.card__number {
  font-size: 26px;
  font-size: 1.625rem;
  color: rgba(193, 159, 120, .6);
  line-height: 38px;
  line-height: 2.375rem;
  position: relative;
}
.card__number::after {
  content: "";
  position: absolute;
  width: 31px;
  width: 1.9375rem;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  bottom: 0;
  background: #BE8E58;
}
@media screen and (min-width: 768px) {
  .card__number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.625rem;
  }
  .card__number::after {
    width: 3.1875rem;
  }
}

.card__title {
  letter-spacing: 0.08em;
  margin-left: 14px;
  margin-left: 0.875rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .card__title {
    font-size: 1.5rem;
    margin-left: 1.5rem;
  }
}

.card__img {
  margin-top: 6px;
  margin-top: 0.375rem;
  padding-top: 53.3%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .card__img {
    margin-top: 0.875rem;
    padding-top: 64.5%;
  }
}
.card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 0 40px;
}

.card__body {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(32.81%, #FFFFFF), color-stop(69.27%, #FFFFFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 32.81%, #FFFFFF 69.27%, rgba(255, 255, 255, 0) 100%);
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
}

.company {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .company {
    padding-top: 12.5rem;
    padding-bottom: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .company__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 6.25rem;
	  justify-content: center;
  }
}

.company__ceo-imgarea {
  max-width: 740px;
  max-width: 46.25rem;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55.5%;
          flex: 0 1 55.5%;
}

.company__ceo-pc {
/*   background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(78.46%, transparent), to(#f2e3d3)), url(../images/4company/top-message.jpg);
  background: linear-gradient(to right, transparent 0%, transparent 78.46%, #f2e3d3 100%), url(../images/4company/top-message.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain; */
  padding-top: 108%;
  z-index: 7777;
}

@media screen and (min-width: 768px) {
  .company__message-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 49.4%;
            flex: 0 1 49.4%;
    margin-left: -6.25rem;
  }
}

.company__subtitle-area {
  position: relative;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
.company__subtitle-area h3 {
  text-align: center;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 400;
  color: rgba(193, 159, 120, .2);
}
@media screen and (min-width: 768px) {
  .company__subtitle-area h3 {
    font-size: 10rem;
  }
}
.company__subtitle-area p {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .company__subtitle-area p {
    font-size: 2rem;
  }
}

.company__ceo-sp {
  padding-top: 80%;
  position: relative;
}
.company__ceo-sp img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 0 40px;
}

.company__body {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 8888;
}
.company__body p {
  text-align: right;
}

.company__ceo-text {
  margin-top: 40px;
  margin-top: 2.5rem;
  letter-spacing: 0.08em;
  line-height: 1.44;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .company__ceo-text {
    margin-top: 0;
/*     max-width: 28.75rem; */
    width: 100%;
  }
}

.company__signature {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.company__ceo-name {
  font-family: "Zhi Mang Xing", cursive;
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .company__ceo-name {
    font-size: 2rem;
  }
}

.company__map-wrapper {
  width: 100%;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .company__map-wrapper {
    max-width: 65rem;
    width: 100%;
    margin: 6.25rem auto 0;
  }
}

.iframe__wrap {
  width: 100%;
  padding-top: 53.333%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .iframe__wrap {
    padding-top: 48%;
  }
}
.iframe__wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.company__info {
  background: #E9D0B3;
  padding: 60px 20px 80px;
  padding: 3.75rem 1.25rem 5rem;
}
@media screen and (min-width: 768px) {
  .company__info {
    padding: 6.25rem 0 6.25rem 14%;
  }
}

.contact-done {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .contact-done {
    padding-top: 12.5rem;
  }
}

.section__title.contact-done__title {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .section__title.contact-done__title {
    text-align: left;
    left: 35%;
  }
}

.contact-done__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-done__contents {
    margin-top: 8.625rem;
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-done__message-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.contact-done__img {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .contact-done__img {
    max-width: 200px;
    margin-left: 4.375rem;
    margin-right: 0;
  }
}
.contact-done__img img {
  width: 100%;
}

.contact-done__message {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-done__message {
    max-width: 43.125rem;
    margin-right: 0;
    margin-left: 0;
  }
}

.contact-done__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact-done__btn {
    margin-top: 1.25rem;
  }
}

.contact {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-top: 8.75rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .section__title.contact__title {
    white-space: nowrap;
    left: 35%;
  }
}

.contact__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact__contents {
    margin-top: 6.25rem;
  }
}

.contact__message {
  background: #e9d0b3;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
}
.contact__message p {
  max-width: 675px;
  max-width: 42.1875rem;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.08em;
  line-height: 1.44;
}

.contact__form-wrapper {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrapper {
    padding: 0 14%;
  }
}

.contact__form {
  background: rgba(255, 255, 255, .3);
  padding: 80px 20px 60px;
  padding: 5rem 1.25rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    padding: 6.25rem 5rem 7.5rem;
  }
}

.contact__form table {
  max-width: 900px;
  max-width: 56.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.contact__form table tr {
  text-align: left;
  display: block;
}
@media screen and (min-width: 768px) {
  .contact__form table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact__form table tr:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__form table tr:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.contact__form table tr th {
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact__form table tr th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12.3125rem;
    padding-bottom: 2.90625rem;
  }
}

.contact__form table tr td {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__form table tr td {
    margin-top: 0;
    width: calc(100% - 12.3125rem);
  }
}

input[type=text],
input[type=tel],
input[type=email] {
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  background: #ffffff;
  border: 1px solid #3274c3;
  width: 100%;
}

.contact__form table tr th {
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact__form table tr th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12.3125rem;
    padding-bottom: 0;
  }
}

textarea {
  width: 100%;
  height: 246px;
  height: 15.375rem;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  background: #ffffff;
  border: 1px solid #3274c3;
}

.title-contactform7 {
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .title-contactform7 {
    margin: 0;
  }
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, .4);
}

::-moz-placeholder {
  color: rgba(0, 0, 0, .4);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, .4);
}

::placeholder {
  color: rgba(0, 0, 0, .4);
}

.contact__required {
  color: red;
}

.contact__privacy {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
.contact__privacy a {
  border-bottom: 1px #363636 solid;
}

.contact__privacy label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding: 0 40px;
  padding: 0 2.5rem;
  position: relative;
  width: auto;
}

.contact__privacy label ::before {
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  margin-top: -8px;
  width: 20px;
  height: 20px;
  content: "";
  background: #fff;
  border: 1px solid #3274C3;
}

.contact__privacy label::after {
  content: "";
  position: absolute;
  display: block;
  height: 12px;
  height: 0.75rem;
  width: 15px;
  width: 0.9375rem;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/5contact/check.png) no-repeat center center/contain;
  opacity: 0;
}

.wpcf7-list-item-label {
  cursor: pointer; /*labelにhoverした時にカーソルを表示させる*/
  font-size: 16px; /*項目のフォントサイズ*/
}

input[type=checkbox] {
  opacity: 0; /*デフォルトのチェックボックスを見えなくする*/
  position: absolute;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /*チェックアイコン*/
  background: url(../images/5contact/check.png) no-repeat center;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  height: 12px;
  height: 0.75rem;
  width: 15px;
  width: 0.9375rem;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn.contact__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-top: 2rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn.contact__btn {
    margin-top: 2.5rem;
  }
}
.btn.contact__btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

input[type=submit] {
  color: #fff;
}
.wpcf7-spinner {
  display: none;
}

.contact__privacy-area {
  margin-top: 60px;
  margin-top: 3.75rem;
  border: 1px solid #3274C3;
  padding: 40px 10px;
  padding: 2.5rem 0.625rem;
  letter-spacing: 0.08em;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .contact__privacy-area {
    padding: 2.5rem 3.125rem;
    max-width: 56.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact__privacy-area p {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__privacy-area p {
    margin-top: 1.5625rem;
  }
}

.contact__privacy-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy-title {
    text-align: left;
  }
}

.drawer-icon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon:hover span:nth-child(3) {
  width: 24px;
  width: 1.5rem;
}

.drawer-icon__items {
  position: relative;
  display: block;
  width: 110px;
  width: 6.875rem;
  height: 110px;
  height: 6.875rem;
  background: #3274C3;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 99999;
}
.drawer-icon__items.is-open {
  height: 110px;
  height: 6.875rem;
}
.drawer-icon__items.is-open span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 39px;
  top: 2.4375rem;
  left: 41px;
  left: 2.5625rem;
}
.drawer-icon__items.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 39px;
  top: 2.4375rem;
  left: 41px;
  left: 2.5625rem;
}
.drawer-icon__items.is-open span:nth-child(3) {
  display: none;
}

.drawer-icon span {
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 99999;
}

.drawer-icon span:nth-child(1) {
  top: 39px;
  top: 2.4375rem;
  height: 3px;
  height: 0.1875rem;
  width: 24px;
  width: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer-icon span:nth-child(2) {
  top: 46px;
  top: 2.875rem;
  height: 2.5px;
  height: 0.15625rem;
  width: 24px;
  width: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer-icon span:nth-child(3) {
  top: 52.5px;
  top: 3.28125rem;
  height: 2.5px;
  height: 0.15625rem;
  width: 12px;
  width: 0.75rem;
  right: 43px;
  right: 2.6875rem;
}

.drawer-icon p {
  position: absolute;
  bottom: 30px;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  white-space: nowrap;
}

.drawer-icon__items.is-small {
  height: 80px;
  height: 5rem;
}
.drawer-icon__items.is-small span:nth-child(1) {
  top: 24px;
  top: 1.5rem;
}
.drawer-icon__items.is-small span:nth-child(2) {
  top: 31px;
  top: 1.9375rem;
  height: 3px;
  height: 0.1875rem;
}
.drawer-icon__items.is-small span:nth-child(3) {
  top: 37.5px;
  top: 2.34375rem;
}
.drawer-icon__items.is-small p {
  bottom: 15px;
  bottom: 0.9375rem;
}
.drawer-icon__items.is-small.is-open {
  height: 110px;
  height: 6.875rem;
}
.drawer-icon__items.is-small.is-open span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 39px;
  top: 2.4375rem;
  left: 41px;
  left: 2.5625rem;
}
.drawer-icon__items.is-small.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 39px;
  top: 2.4375rem;
  left: 41px;
  left: 2.5625rem;
}
.drawer-icon__items.is-small.is-open span:nth-child(3) {
  display: none;
}
.drawer-icon__items.is-small.is-open p {
  bottom: 30px;
  bottom: 1.875rem;
}

.footer {
  background-image: url(../images/1top/footer-contactbg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-top: 80px;
  padding-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    background-image: url(../images/1top/footer-contactbg.jpg);
    padding-top: 0;
  }
}
.footer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .3)), to(rgba(0, 0, 0, .3)));
  background: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
}

.footer__head {
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 10.125rem;
  }
  .footer__head::after {
    content: "";
    height: 1px;
    background-color: #fff;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .footer__head::after {
    margin-left: 3.125rem;
  }
}

.footer__title {
  color: rgba(255, 255, 255, .3);
  text-align: left;
}

.footer__subtitle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  bottom: 0.3125rem;
  white-space: nowrap;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__subtitle {
    bottom: 1.5625rem;
  }
}

.footer__message-area {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  text-align: center;
  color: #fff;
  max-width: 588px;
  max-width: 36.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer__message-area {
    margin-top: 6.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__btn {
  margin: 60px auto 77px;
  margin: 3.75rem auto 4.8125rem;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    margin: 3.75rem auto 7.5rem;
  }
}
.footer__btn:hover a {
  opacity: 0.4;
}

.footer__copyright {
  background: #193C65;
  text-align: center;
  width: 100%;
  color: #fff;
  padding-top: 14px;
  padding-top: 0.875rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  font-size: 8px;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-top: 2.0625rem;
    padding-bottom: 2.0625rem;
    font-size: 0.625rem;
  }
}

.header {
  background: #fff;
  border-radius: 0 0 0 40px;
  height: 80px;
  height: 5rem;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

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

.header__logo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  width: 160px;
  width: 10rem;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 18.75rem;
    left: 2.375rem;
  }
}
.header__logo a {
  display: block;
  line-height: 100px;
  line-height: 6.25rem;
}
.header__logo a img {
  width: 100%;
}
.header__logo:hover {
  opacity: 0.6;
}

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

@media screen and (min-width: 768px) {
  .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.info__img-area {
  max-width: 513px;
  max-width: 32.0625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .info__img-area {
    margin-left: 4.5rem;
    margin-right: 0;
  }
}

.info__img {
  padding-top: 82%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .info__img {
    padding-top: 127.6%;
  }
}
.info__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .info__img img {
    border-radius: 40px 0 0 40px;
  }
}

.info__lists {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .info__lists {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45.5%;
            flex: 0 0 45.5%;
  }
}

.info__list {
  position: relative;
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
}
.info__list:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .info__list:not(:first-child) {
    margin-top: 2.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0.5rem;
    padding-right: 0.375rem;
  }
}
.info__list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #BE8E58;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -8px;
}
@media screen and (min-width: 768px) {
  .info__list::after {
    bottom: -11px;
  }
}

.info__title {
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .info__title {
    font-weight: 400;
    max-width: 9.625rem;
    width: 100%;
  }
}

.info__text {
  letter-spacing: 0.08em;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .info__text {
    margin-top: 0;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1090px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.instagram {
  position: relative;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}
.instagram::after {
  content: "";
  position: absolute;
  background: rgba(193, 159, 120, .4);
  border-radius: 40px;
  width: 86%;
  height: 95%;
  bottom: 80px;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.instagram__head {
  text-align: center;
  position: relative;
  z-index: 8888;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .instagram__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 3.75rem;
  }
  .instagram__head::before, .instagram__head::after {
    content: "";
    height: 1px;
    background-color: #be8e58;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .instagram__head::before {
    margin-right: 3.125rem;
  }
  .instagram__head::after {
    margin-left: 3.125rem;
  }
}

.instagram__title {
  color: rgba(255, 255, 255, .2);
  margin-left: auto;
  margin-right: auto;
}

.instagram__subtitle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  bottom: 0.3125rem;
  white-space: nowrap;
  color: #363636;
}
@media screen and (min-width: 768px) {
  .instagram__subtitle {
    bottom: 1.5625rem;
  }
}

.instagram__contents {
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
  z-index: 8888;
  max-width: 441px;
  max-width: 27.5625rem;
  width: 100%;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .instagram__contents {
    margin-top: 3.75rem;
    padding-left: 13.9%;
    padding-right: 13.9%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    margin: 0;
  }
}

.instagram__message {
  padding-top: 100%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  background: rgba(255, 250, 243, .8);
}
.instagram__message img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .instagram__message {
    padding-top: 0;
    margin-left: 0.625rem;
    margin-right: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 39.5%;
            flex: 0 1 39.5%;
  }
}

.instagram__lead {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .instagram__lead {
    top: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.instagram__tag {
  font-size: 30px;
  font-size: 1.875rem;
}

.instagram__btn-area.u-desktop {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.instagram__btn-area {
  background: #fff;
  border: 2px solid #3274c3;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .instagram__btn-area {
    padding-top: 11%;
    padding-bottom: 11%;
    padding: 10% 8%;
    height: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}

.instagram__btn {
  margin: 28px auto 0;
  margin: 1.75rem auto 0;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .instagram__btn {
    margin: 5% auto 0;
  }
}
.instagram__btn::before {
  content: "";
  position: absolute;
  background: url(../images/1top/icon_instagram.png) no-repeat center center/contain;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 24%;
}
.instagram__btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .instagram__btn.u-desktop {
    background: #3274C3;
    color: #fff;
    padding-top: 4%;
    padding-bottom: 4%;
    text-align: center;
    border-radius: 40px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: auto;
    margin-right: auto;
    max-width: 16.5rem;
    width: 100%;
  }
  .instagram__btn.u-desktop:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) {
  .instagram__wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59.6%;
            flex: 0 0 59.6%;
    margin: 0;
    margin-left: 0.625rem;
  }
}

.instagram__container {
  margin: 20px auto;
  margin: 1.25rem auto;
}
@media screen and (min-width: 768px) {
  .instagram__container {
    margin: 0;
  }
}

.instagram__img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.instagram__img-area li {
  width: calc(50% - 0.625rem);
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .instagram__img-area li {
    width: calc(33.3333% - 0.41667rem);
    max-width: 100%;
  }
}

.instagram__img-area li + li {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .instagram__img-area li + li {
    margin-left: 0.625rem;
  }
}

.instagram__img-area li:not(:first-child) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
.instagram__img-area li:nth-child(2n+1) {
  margin-left: 0;
}
.instagram__img-area li:nth-child(n+3) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .instagram__img-area li {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .instagram__img-area li:not(:nth-child(1)) {
    margin-left: 0.625rem;
  }
  .instagram__img-area li:nth-child(3n+1) {
    margin-left: 0;
  }
  .instagram__img-area li:first-child {
    margin-top: 0;
  }
  .instagram__img-area li:nth-child(n+3) {
    margin-top: 0;
  }
  .instagram__img-area li:nth-child(n+4) {
    margin-top: 0.625rem;
  }
}

.main__gradation-area {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .main__gradation-area {
    background: url(../images/1top/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .main__gradation-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(7.27%, #FFFFFF), to(rgba(255, 255, 255, .7)));
    background: linear-gradient(180deg, #FFFFFF 7.27%, rgba(255, 255, 255, .7) 100%);
  }
}

.main__white-area {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

#page_top {
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  z-index: 99999;
}

#page_top a {
  position: relative;
  display: block;
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#page_top a:hover {
  opacity: 0.4;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  font-size: 1.5625rem;
  color: #3274C3;
  position: absolute;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  top: -40px;
  top: -2.5rem;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_top a::after {
  content: "PAGE TOP";
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  position: absolute;
  top: 45px;
  top: 2.8125rem;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #3274C3;
}

.page-404 {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 20px 200px;
  padding: 12.5rem 1.25rem 12.5rem;
  height: 100vh;
}

.page-404__contents {
  text-align: center;
}

.page-404__title {
  font-weight: 400;
  font-size: 32px;
  color: rgba(193, 159, 120, .2);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .page-404__title {
    font-size: 70px;
  }
}

.page-404__title-area p {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

.page-404__message {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.contact-done__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .pc-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc-nav__list {
  margin-right: 40px;
  margin-right: 2.5rem;
}
.pc-nav__list a {
  display: block;
  line-height: 100px;
  line-height: 6.25rem;
}

.pc-nav__list a {
  position: relative;
}
.pc-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 30px;
  bottom: 1.875rem;
  left: 0;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #3274C3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.pc-nav__list a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.pc-nav__contact {
  background: #3274C3;
  color: #fff;
  width: 160px;
  width: 10rem;
  height: 160px;
  height: 10rem;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.pc-nav__contact a {
  display: block;
  max-height: 55.5px;
  max-height: 3.46875rem;
  height: 100%;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 10px;
}
.pc-nav__contact a img {
  width: 35px;
  width: 2.1875rem;
  margin: 0 auto;
  display: block;
}
.pc-nav__contact a p {
  margin-top: 7.5px;
  margin-top: 0.46875rem;
  white-space: nowrap;
}
.pc-nav__contact:hover {
  background: rgba(50, 116, 195, .7);
}

.pc-nav__contact.is-small {
  height: 100px;
  height: 6.25rem;
}
.pc-nav__contact.is-small a {
  margin-top: 0;
}

.pc-nav__contact--link::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .section__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.section__title-area {
  text-align: center;
  position: relative;
}
.section__title-area img {
  max-width: 140px;
  max-width: 8.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .section__title-area img {
    max-width: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34.7%;
            flex: 0 0 34.7%;
  }
}
@media screen and (min-width: 768px) {
  .section__title-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34.7%;
            flex: 0 0 34.7%;
  }
  .section__title-area::after {
    content: "";
    position: absolute;
    background: #BE8E58;
    height: 1px;
    width: 80%;
    left: 0;
    bottom: 6.25rem;
  }
}

.section__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 3rem;
    bottom: 6.25rem;
    left: 40%;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }
}

.section__eyecatch {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59%;
          flex: 0 1 59%;
}
.section__eyecatch img {
  border-radius: 40px 0 0 40px;
}

@media screen and (min-width: 768px) {
  .section__head--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.section__title-area--right {
  text-align: center;
  position: relative;
}
.section__title-area--right img {
  max-width: 140px;
  max-width: 8.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .section__title-area--right img {
    max-width: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34.7%;
            flex: 0 0 34.7%;
  }
}
@media screen and (min-width: 768px) {
  .section__title-area--right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34.7%;
            flex: 0 0 34.7%;
  }
  .section__title-area--right::after {
    content: "";
    position: absolute;
    background: #BE8E58;
    height: 1px;
    width: 91%;
    right: 0;
    bottom: 6.25rem;
  }
}

.section__title--right {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .section__title--right {
    font-size: 3rem;
    font-weight: 400;
    bottom: 6.25rem;
    left: 8%;
    -webkit-transform: none;
            transform: none;
    top: auto;
    text-align: left;
  }
}

.section__eyecatch--right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59%;
          flex: 0 1 59%;
}
.section__eyecatch--right img {
  border-radius: 0 40px 40px 0;
}

.service {
  background: #E9D0B3;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 6.25rem;
    padding-bottom: 6.875rem;
  }
}

.service__title {
  white-space: nowrap;
}

.service__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .service__lists {
    max-width: 59.125rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__list:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service__list:not(:first-child) {
    margin-top: 6.25rem;
  }
}

.service__number {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__number {
    font-size: 3rem;
  }
}

.service__body {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .service__body {
    margin-left: 8.125rem;
  }
}

.service__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 8px;
  margin-top: 0.5rem;
  position: relative;
  letter-spacing: 0.08em;
}
.service__name::before {
  content: "";
  position: absolute;
  background: #BE8E58;
  width: 1px;
  width: 0.0625rem;
  height: 50px;
  height: 3.125rem;
  left: -10px;
  left: -0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 8888;
}
@media screen and (min-width: 768px) {
  .service__name {
    font-size: 2rem;
  }
  .service__name::before {
    left: -4.375rem;
    height: 4rem;
  }
}

.service__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 14px;
  margin-top: 0.875rem;
  position: relative;
  letter-spacing: 0.08em;
}
.service__text::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  width: 0.0625rem;
  height: 150px;
  height: 9.375rem;
  left: -10px;
  left: -0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .service__text {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
  .service__text::before {
    left: -4.375rem;
    height: 15.625rem;
    top: -50%;
    -webkit-transform: none;
            transform: none;
  }
}

.sp-nav {
  background: rgba(50, 116, 195, .8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 140px 38px 100px;
  padding: 8.75rem 2.375rem 6.25rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  z-index: 99998;
}

.sp-nav.is-open {
  opacity: 100;
  visibility: visible;
}

.sp-nav__lists {
  color: #fff;
  margin: 0 auto;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
}

.sp-nav__list {
  position: relative;
  margin-left: 30px;
  margin-left: 1.875rem;
  height: 116px;
  height: 7.25rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sp-nav__list::after {
  content: "";
  position: absolute;
  width: 300px;
  width: 18.75rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
  bottom: 0;
  left: -30px;
  left: -1.875rem;
}
.sp-nav__list::before {
  content: "";
  position: absolute;
  background: url(../images/1top/menu-arrow-icon.png) no-repeat center center/contain;
  width: 8px;
  height: 12.6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 22px;
  right: 1.375rem;
}
.sp-nav__list:hover {
  opacity: 0.6;
}

.sp-nav__list a {
  display: block;
  line-height: 116px;
  line-height: 7.25rem;
}

.sp-nav__contact {
  background: #fff;
  text-align: center;
  border-radius: 40px;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
  height: 64px;
  height: 4rem;
  margin: 130px auto 0;
  margin: 8.125rem auto 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sp-nav__contact:hover {
  opacity: 0.6;
}
.sp-nav__contact a {
  display: block;
  line-height: 64px;
  line-height: 4rem;
}

.top-about {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .top-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 8.9375rem;
    padding-left: 5%;
  }
}

.top-about__contents {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-about__contents {
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45.5%;
            flex: 0 1 45.5%;
  }
}

.top-about__head {
  margin-top: 80px;
  margin-top: 5rem;
  text-align: center;
}

.top-about__title {
  color: rgba(193, 159, 120, .2);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about__title {
    text-align: left;
  }
  .top-about__title::after {
    content: "";
    position: absolute;
    background: #BE8E58;
    width: 15rem;
    height: 0.0625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 100%;
  }
}

.top-about__subtitle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  bottom: 0.3125rem;
  white-space: nowrap;
  color: #363636;
}
@media screen and (min-width: 768px) {
  .top-about__subtitle {
    bottom: 1.5625rem;
  }
}

.top-about__body {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  position: relative;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-about__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52%;
            flex: 0 1 52%;
    padding-right: 0.9375rem;
    margin-left: 13.8%;
  }
}

.top-about__message {
  letter-spacing: 0.08em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-about__message {
    margin-left: 0;
  }
}

.top-about__btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about__btn {
    margin-left: 0;
  }
}

.top-about__img {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-right: 0;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-about__img {
    margin-top: 7.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43%;
            flex: 0 0 43%;
  }
}

.top-about__img-area {
  position: relative;
  padding-top: 70.4%;
  border-radius: 40px 0px 0px 40px;
}
@media screen and (min-width: 768px) {
  .top-about__img-area {
    padding-top: 96.8%;
  }
}
.top-about__img-area img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px 0px 0px 40px;
  z-index: 8888;
  overflow: hidden;
}
.top-about__img-area::after {
  content: "";
  position: absolute;
  background: rgba(193, 159, 120, .2);
  border-radius: 40px 0px 0px 40px;
  width: 102%;
  height: 100%;
  right: 0;
  top: 10px;
  overflow: hidden;
  z-index: 8887;
}


.top-card {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top-card:hover {
  opacity: 0.6;
}

.top-card__img {
  padding-top: 59.7%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-card__img {
    padding-top: 62.5%;
  }
}

.top-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-card__img h3 {
  position: absolute;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  bottom: 14px;
  bottom: 0.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top-card__img h3 {
    font-size: 2.25rem;
    bottom: 1.25rem;
  }
}

.top-card__body {
  background: url(../images/1top/card-bg.jpg);
  text-align: center;
  padding-top: 14px;
  padding-top: 0.875rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
}
.top-card__body p {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-card__body {
    padding-top: 2.125rem;
    padding-bottom: 2.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .top-fv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-fv__contents {
  background-image: url(../images/1top/top-fv-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 812px;
  height: 50.75rem;
  color: #fff;
  text-align: center;
  padding-top: 260px;
  padding-top: 16.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-fv__contents {
    background-image: url(../images/1top/top-fv.jpg);
    width: 94%;
    border-bottom-right-radius: 40px;
    height: 50rem;
    text-align: left;
    padding-left: 12.5rem;
    padding-top: 28.9375rem;
    padding-bottom: 10.125rem;
  }
}

.top-fv__message {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-fv__message {
    font-size: 1rem;
  }
}

.top-fv__title {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-fv__title {
    font-size: 4rem;
  }
}

.top-fv__lead {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-fv__lead {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.top-fv__links {
  margin-left: auto;
  text-align: center;
  width: 6%;
  position: relative;
  margin: 502px auto 0;
  margin: 31.375rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-fv__links {
    margin-top: auto;
  }
}

.top-fv__instagram {
  position: absolute;
  bottom: 248px;
  bottom: 15.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  background: #3274C3;
  border-radius: 50%;
  padding: 5px;
  padding: 0.3125rem;
  -webkit-transition: all 0.4S ease;
  transition: all 0.4S ease;
}
.top-fv__instagram:hover {
  opacity: 0.6;
}
.top-fv__instagram a {
  display: block;
  line-height: 50px;
  line-height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .top-fv__instagram {
    margin-bottom: 40px;
  }
}

.top-fv__scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*Scrollテキストの描写*/
.top-fv__scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 164px;
  /*テキストの形状*/
  color: #363636;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.top-fv__scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3274C3;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/* 線の描写 */
.top-fv__scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*線の形状*/
  width: 2px;
  height: 147px;
  background: #363636;
}

.top-fv__scrolldown1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-top: 111px;
  margin-top: 6.9375rem;
}

/*Scrollテキストの描写*/
.top-fv__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 164px;
  /*テキストの形状*/
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .top-fv__scrolldown1 span {
    color: #363636;
  }
}

/* 丸の描写 */
.top-fv__scrolldown1:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (min-width: 768px) {
  .top-fv__scrolldown1:before {
    background: #3274C3;
    left: -4px;
  }
}

/* 線の描写 */
.top-fv__scrolldown1:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*線の形状*/
  width: 2px;
  height: 159px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .top-fv__scrolldown1:after {
    height: 147px;
    background: #363636;
    left: 0;
  }
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 130px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes circlemove {
  0% {
    bottom: 130px;
  }
  100% {
    bottom: 0;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.top-section__title {
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .top-section__title {
    font-size: 10rem;
  }
}

.top-section__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-section__subtitle {
    font-size: 2rem;
  }
}

.top-service {
  background: #E9D0B3;
  padding: 80px 20px 100px;
  padding: 5rem 1.25rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .top-service {
    padding: 5rem 0 6.25rem;
  }
}

.top-service__head {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-service__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-service__head::before, .top-service__head::after {
    content: "";
    height: 1px;
    background-color: #BE8E58;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .top-service__head::before {
    margin-right: 3.125rem;
  }
  .top-service__head::after {
    margin-left: 3.125rem;
  }
}

.top-service__title {
  color: rgba(255, 255, 255, .2);
  max-width: 621px;
  max-width: 38.8125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-service__subtitle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  bottom: 0.3125rem;
  white-space: nowrap;
  color: #363636;
}
@media screen and (min-width: 768px) {
  .top-service__subtitle {
    bottom: 1.5625rem;
  }
}

.top-service__lead {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-service__lead {
    margin-top: 5rem;
  }
}

.top-service__contents {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-service__contents {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .top-service__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.top-service__card:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-service__card:not(:first-child) {
    margin-top: 0;
  }
}

.top-service__btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-service__btn {
    margin: 5rem auto 0;
  }
}

.top-swiper__item {
  width: 100%;
  overflow: hidden;
}

.top-swiper__img {
  padding-top: 100%;
  position: relative;
}
.top-swiper__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 40px;
  z-index: 8888;
}
.top-swiper__img::after {
  content: "";
  position: absolute;
  background: rgba(193, 159, 120, .2);
  border-radius: 0px 60px 0 40px;
  width: 95%;
  height: 100%;
  right: 0;
  top: 3%;
}

.top-swiper__body {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.top-swiper__lead {
  font-size: 24px;
  font-size: 1.5rem;
  color: #9c5a10;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-swiper__lead {
    font-size: 2.25rem;
  }
}

.top-swiper__message {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-swiper__message {
    font-size: 1rem;
  }
}

.top-swiper__container {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.swiper-pagination-bullet.swiper-pagination-bullet {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: rgb(255, 255, 255);
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet:not(:first-child) {
  margin-left: 24px;
  margin-left: 1.5rem;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #9c5a10;
}

.voice {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  
}
@media screen and (min-width: 768px) {
  .voice {
    padding-bottom: 8.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.voice__head {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .voice__head::before {
    content: "";
    height: 1px;
    background-color: #BE8E58;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .voice__head::before {
    margin-right: 3.125rem;
  }
}

.voice__title {
  color: rgba(193, 159, 120, .2);
  max-width: 621px;
  max-width: 38.8125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .voice__title {
    margin-right: 0;
  }
}

.voice__subtitle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  bottom: 0.3125rem;
  white-space: nowrap;
  color: #363636;
}
@media screen and (min-width: 768px) {
  .voice__subtitle {
    bottom: 1.5625rem;
    right: 19.27%;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.voice__swiper {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .voice__swiper {
    margin-top: 5rem;
  }
}

.works {
  background: url(../images/1top/fv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 12.5rem;
    padding-bottom: 2.5rem;
  }
}

.works__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .works__contents {
    margin-top: 7.0625rem;
  }
}

.works__header {
  background: #e9d0b3;
  width: 100%;
  padding: 8px 0 8px 20px;
  padding: 0.5rem 0 0.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .works__header {
    padding: 1.0625rem 0 1.0625rem 12.5rem;
  }
}

.works__head-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.works__head-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #BE8E58;
  right: 0;
  bottom: 0;
}

.works__number {
  color: rgba(193, 159, 120, .6);
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .works__number {
    font-size: 5rem;
  }
}

.works__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .works__name {
    font-size: 2rem;
    margin-left: 3.4375rem;
  }
}

.works__content {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .works__content {
    padding-left: 12.5rem;
    padding-right: 12.5rem;
  }
}

.works__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .works__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.1875rem;
  }
}
.works__body p {
  font-size: 24px;
  font-size: 1.5rem;
}

.works__img {
  padding-top: 62.68%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works__img {
    padding-top: 68.9%;
  }
}
.works__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 0 0;
}

.works__card {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .works__card {
    width: calc(50% - 0.9375rem);
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .works__card:not(:nth-child(1)) {
    margin-left: 1.875rem;
  }
}
.works__card:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .works__card:not(:first-child) {
    margin-top: 0;
  }
}

.works__comments {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .works__comments {
    margin-bottom: 5.1875rem;
    max-width: 55rem;
  }
}
/*# sourceMappingURL=styles.css.map */
