@charset "UTF-8";
:root {
  --base: #231815;
  --gray1: #727171;
  --orange1: #F18E2C;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1060px) {
  html {
    font-size: 0.9433962264vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0;
  padding: 0;
  background-size: 100%;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt";
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
    overflow-y: scroll;
  }
}

input,
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1060px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .inline-sp {
    display: inline;
  }
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 9.519rem;
  padding: 0;
  background: #FFF;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 4rem;
  }
}
.l-header__container {
  display: flex;
  align-items: flex-end;
  max-width: 106rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-header__container {
    justify-content: space-between;
    padding: 0 1.75rem 0 1.11rem;
  }
}
.l-header__logo {
  width: 25.903rem;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 11.287rem;
  }
}
.l-header__logo_link {
  display: block;
}
.l-header__menu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .l-header__menu {
    display: block;
    width: 3rem;
    height: 1.636rem;
    margin-bottom: 1.03rem;
    position: relative;
  }
  .l-header__menu::before, .l-header__menu::after,
  .l-header__menu span {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--base);
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  .l-header__menu::before {
    top: 0;
  }
  .l-header__menu::after {
    bottom: 0;
  }
  .l-header__menu span {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__menu.open::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__menu.open::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .l-header__menu.open span {
    opacity: 0;
  }
}

.l-global {
  margin: 0 0 2.29rem auto;
}
@media only screen and (max-width: 767px) {
  .l-global {
    display: none;
    width: 100%;
    height: calc(100% - 4rem);
    padding: 3.25rem 0;
    box-sizing: border-box;
    background: #FFF;
    position: fixed;
    top: 4rem;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior-y: none;
  }
}
.l-global__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .l-global__nav {
    flex-direction: column;
    row-gap: 3rem;
    width: 100%;
  }
}
.l-global__nav_item {
  line-height: 1.5555;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 400;
}
.l-global__nav_link {
  text-decoration: none;
  color: var(--base);
}
.l-global__nav_lang {
  position: relative;
}
.l-global__nav_lang:hover .l-global__lang {
  height: auto;
  transform: scaleY(1);
}
.l-global__nav_lang:hover .l-global__lang_btn::after {
  transform: translateY(-50%) rotate(-135deg);
}
.l-global__lang {
  width: 100%;
  height: 0;
  padding: 0 1.5rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .l-global__lang {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.66rem;
    height: auto;
    margin: 1.34rem auto 0;
    position: static;
    transform: scaleY(1);
  }
}
.l-global__lang_btn {
  display: inline-block;
  padding-right: 2.378rem;
  position: relative;
  line-height: 1.5555;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-global__lang_btn {
    display: none;
  }
}
.l-global__lang_btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-right: 1px solid var(--base);
  border-bottom: 1px solid var(--base);
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.l-global__lang_item {
  box-sizing: border-box;
  line-height: 1.55555;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-global__lang_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 8.502rem;
    height: 3.272rem;
    border-radius: 100px;
    box-sizing: border-box;
    background: var(--gray1);
    font-size: 1.5rem;
    font-weight: 700;
  }
  .l-global__lang_item.current {
    background: var(--base);
  }
}
.l-global__lang_item + .l-global__lang_item {
  border-top: 1px solid var(--gray1);
}
@media only screen and (max-width: 767px) {
  .l-global__lang_item + .l-global__lang_item {
    border-top: 0;
  }
}
.l-global__lang_link {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  .l-global__lang_link {
    padding: 0;
    color: #FFF;
  }
}

.l-footer {
  padding: 7.43rem 0 2.02rem;
  box-sizing: border-box;
  background: #FFF;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 5.47rem 0 2.75rem;
  }
}
.l-footer__container {
  max-width: 106rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
.l-footer__logo {
  width: 29.072rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo {
    width: 21.442rem;
  }
}
.l-footer__copy {
  margin: 0.73rem auto 0;
  line-height: 2.2857142857;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 0.93rem;
    font-size: 1.2rem;
  }
}
.l-footer__group {
  width: 30rem;
  margin: 8.14rem auto 0;
}
@media only screen and (max-width: 767px) {
  .l-footer__group {
    width: 24.469rem;
    margin-top: 3.59rem;
  }
}
.l-footer__totop {
  display: none;
  width: 5rem;
  position: fixed;
  top: auto;
  right: 4rem;
  bottom: 4rem;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .l-footer__totop {
    width: 3.2rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.l-footer__totop.stop {
  position: absolute;
  top: 5rem;
  right: 4rem;
  bottom: auto;
}
@media only screen and (max-width: 767px) {
  .l-footer__totop.stop {
    top: 3.2rem;
    right: 2rem;
  }
}

.l-totop {
  display: none;
  width: 5rem;
  position: fixed;
  right: calc((100vw - 100rem) / 2 - 5rem);
  bottom: 2rem;
  z-index: 10;
}
.l-totop_link {
  display: block;
}

.l-section--bg-base {
  background: var(--base);
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 2rem;
  }
}
.l-container--ptn1 {
  max-width: 106rem;
}

.l-main {
  display: block;
  min-height: calc(100vh - 9.519rem - 35.261rem);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-main {
    min-height: calc(100vh - 4rem - 28.719rem);
  }
}

@font-face {
  font-family: "RyuminPro";
  src: url("../fonts/A-OTF-RyuminPro-Bold.otf") format("opentype"), url("../fonts/A-OTF-RyuminPro-Bold.woff") format("woff");
}
@font-face {
  font-family: "FuturaBook";
  src: url("../fonts/Futura Book.woff") format("woff"), url("../fonts/Futura Book.TTF") format("truetype");
}
@font-face {
  font-family: "FuturaLight";
  src: url("../fonts/Futura Light.woff") format("woff"), url("../fonts/Futura Light.TTF") format("truetype");
}
@font-face {
  font-family: "ShonanGyoshotai";
  src: url("../fonts/ShonanGyoshotai-01.woff") foramt("woff"), url("../fonts/ShonanGyoshotai-01.otf") format("opentype"), url("../fonts/ShonanGyoshotai-01.ttf") format("truetype");
}
.c-font--trajan {
  font-family: "Trajan Pro 3", serif;
}
.c-font--ryumin {
  font-family: "RyuminPro", sans-serif;
}
.c-font--futura-book {
  font-family: "FuturaBook", sans-serif;
}
.c-font--futura-light {
  font-family: "FuturaLight", sans-serif;
}
.c-font--shonan {
  font-family: "ShonanGyoshotai", serif;
}

.c-text--default {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-text--default {
    font-size: 1.3rem;
  }
}
.c-text--attention {
  line-height: 1.75;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-text--color-wh {
  color: #FFF;
}
.c-text--color-base {
  color: var(--base);
}

.c-title--ptn1 {
  margin: 0 auto 8.49rem;
  line-height: 1.333333;
  letter-spacing: 0.2em;
  font-size: 3.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 {
    margin-bottom: 3.81rem;
    font-size: 1.8rem;
  }
}
.c-title--ptn2 {
  margin: 0 0 1.53rem;
  line-height: 1.6538461538;
  letter-spacing: 0.1em;
  font-size: 2.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn2 {
    margin-bottom: 1.23rem;
    font-size: 2.1rem;
  }
}

.js-scrollToUp {
  transform: matrix(1, 0, 0, 1, 0, 40);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.68, 0.47, 0.37, 0.77);
}
.js-scrollToUp.on {
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
}

.p-mv {
  position: relative;
}
.p-mv__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.64rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-mv__content {
    row-gap: 2.79rem;
  }
}
.p-mv__title {
  line-height: 1.5355086372;
  letter-spacing: 0.5em;
  font-size: 4.689rem;
  font-weight: 400;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2.378rem;
  }
}
.p-mv__copy {
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFF;
}

.p-about {
  padding: 6.71rem 0 8.46rem;
}
@media only screen and (max-width: 767px) {
  .p-about {
    padding: 2.17rem 0 3.55rem;
  }
}
.p-about__batch {
  width: 68.236rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-about__batch {
    width: 33.92rem;
  }
}
.p-about__logo {
  width: 41.514rem;
  margin: 5.45rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-about__logo {
    width: 28.625rem;
    margin-top: 4.02rem;
  }
}
.p-about__block {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 6.08rem;
       column-gap: 6.08rem;
  padding-bottom: 3rem;
  position: relative;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-about__block {
    flex-direction: column;
    row-gap: 3.95rem;
    padding-bottom: 5rem;
  }
}
.p-about__block_attention {
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-about__content {
  width: 46.59rem;
}
@media only screen and (max-width: 767px) {
  .p-about__content {
    width: 100%;
  }
}
.p-about__logos {
  display: flex;
  flex-direction: column;
  row-gap: 4.56rem;
  width: calc(100% - 6.08rem - 46.59rem);
}
@media only screen and (max-width: 767px) {
  .p-about__logos {
    width: 100%;
  }
}
.p-about__logos_img.iidagroup {
  width: 32.96rem;
}
@media only screen and (max-width: 767px) {
  .p-about__logos_img.iidagroup {
    width: 29.428rem;
  }
}
.p-about__logos_img.tacthome {
  width: 32.812rem;
}
@media only screen and (max-width: 767px) {
  .p-about__logos_img.tacthome {
    width: 29.296rem;
  }
}
.p-about__logos_caption {
  margin: 1.44rem 0 0;
  line-height: 1.75;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-about__logos_caption {
    margin-top: 1.42rem;
    line-height: 2;
    font-size: 1.3rem;
  }
}
.p-about__philosophy {
  margin: 11.06rem auto 0;
  padding: 6.55rem 0 7.33rem;
  border: 1px solid var(--base);
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-about__philosophy {
    margin: 3.4rem auto 0;
    padding: 3.58rem 0 3.25rem;
  }
}
.p-about__philosophy_title {
  margin: 0 auto 4.71rem;
  line-height: 1.3332234674;
  letter-spacing: 0.2em;
  font-size: 3.034rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-about__philosophy_title {
    margin-bottom: 2.14rem;
    font-size: 1.8rem;
  }
}
.p-about__philosophy_lead {
  width: 65.8797rem;
  margin: 0 auto 5.01rem;
  line-height: 1.7036896158;
  letter-spacing: 0.1em;
  font-size: 2.629rem;
}
@media only screen and (max-width: 767px) {
  .p-about__philosophy_lead {
    width: 25.5969rem;
    margin-bottom: 1.62rem;
    font-size: 1.55rem;
  }
}
.p-about__philosophy_sub {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-about__philosophy_sub {
    line-height: 1.75;
    font-size: 1.2rem;
  }
}

.p-business {
  padding: 8.98rem 0 10.55rem;
}
@media only screen and (max-width: 767px) {
  .p-business {
    padding: 4.75rem 0 4.9rem;
  }
}
.p-business__introduction {
  display: flex;
  -moz-column-gap: 4.84rem;
       column-gap: 4.84rem;
}
@media only screen and (max-width: 767px) {
  .p-business__introduction {
    flex-direction: column-reverse;
    row-gap: 1.98rem;
  }
}
.p-business__introduction_content {
  width: 45.307rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-business__introduction_content {
    width: 100%;
  }
}
.p-business__introduction_image {
  width: calc(100% - 45.307rem - 4.84rem);
}
@media only screen and (max-width: 767px) {
  .p-business__introduction_image {
    width: calc(100% + 2rem);
    margin-right: -2rem;
  }
}
.p-business__introduction_image img {
  width: 70.032rem;
  margin-right: -20rem;
}
@media only screen and (max-width: 767px) {
  .p-business__introduction_image img {
    width: 100%;
    margin: 0;
  }
}
.p-business__description {
  margin: 9.85rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-business__description {
    margin-top: 4.52rem;
  }
}
.p-business__description_images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .p-business__description_images {
    display: block;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .p-business__description_image {
    width: 21.514rem;
  }
  .p-business__description_image-2 {
    margin: 0;
  }
  .p-business__description_image-3 {
    position: absolute;
    top: 8.66rem;
    right: 0;
  }
  .p-business__description_image-4 {
    margin: 5.51rem 0 0 3.1rem;
    position: relative;
  }
}
.p-business__description_caption {
  margin: 3.15rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-business__description_caption {
    margin-top: 2.65rem;
  }
}

.p-brand {
  padding: 12.44rem 0 17.54rem;
}
@media only screen and (max-width: 767px) {
  .p-brand {
    padding: 6.05rem 0 4.79rem;
  }
}

.p-brand__wrap {
  display: grid;
  grid-template-columns: 40.9rem 1fr;
  margin: 10.46rem auto 0;
}

@media only screen and (max-width: 767px) {
  .p-brand__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.66rem;
    margin-top: 4.56rem;
  }
}

.p-brand__logo {
  text-align: center;

  & img {
    width: 24.5rem;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .p-brand__logo {
    width: 15.987rem;
    margin: 0 auto;

    & img {
      width: 100%;
    }
  }
}

.p-brand__content {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .p-brand__content {
    width: 100%;
  }
}

.p-brand__title {
  margin: 0 0 2rem;
  line-height: 1.653846153846154;
  font-size: 2.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-brand__title {
    margin-bottom: 1.74rem;
    font-size: 2.1rem;
  }
}

.p-brand__caption {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-brand__caption {
    font-size: 1.3rem;
  }
}

.p-brand__btn {
  margin: 3.64rem 0 0;
}

.p-brand__btn_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 22.641rem;
  height: 6.285rem;
  padding-top: .2rem;
  padding-left: 2.67rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: #3E3A39;
  position: relative;
  line-height: 1.2;
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 500;
  color: #FFF;

  &::after {
    content: "＞";
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 2.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-brand__btn_link {
    width: 18.956rem;
    height: 6.285rem;
    margin: 0 auto;
    font-size: 1.6rem;
  }
}

.p-profile {
  padding: 11.48rem 0 15.87rem;
}
@media only screen and (max-width: 767px) {
  .p-profile {
    padding: 6.37rem 0 6.29rem;
  }
}
.p-profile__about {
  display: flex;
  -moz-column-gap: 7.74rem;
       column-gap: 7.74rem;
}
@media only screen and (max-width: 767px) {
  .p-profile__about {
    flex-direction: column;
    row-gap: 3.65rem;
  }
}
.p-profile__about_image {
  width: 46.362rem;
}
@media only screen and (max-width: 767px) {
  .p-profile__about_image {
    width: calc(100% + 2rem);
    margin: 0 auto 0 -2rem;
  }
}
.p-profile__about_caption {
  display: block;
  margin: 0.82rem 0 0 auto;
  line-height: 2;
  text-align: right;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-profile__about_caption {
    font-size: 1.2rem;
  }
}
.p-profile__about_content {
  width: calc(100% - 7.74rem - 46.362rem);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-profile__about_content {
    width: 100%;
  }
}
.p-profile__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin: 7rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-profile__info {
    grid-template-columns: 100%;
    row-gap: 4.61rem;
    margin-top: 3.81rem;
  }
}
.p-profile__info_table {
  text-align: left;
}
.p-profile__info_box {
  display: grid;
  grid-template-columns: 18.8rem 1fr;
  margin: 0;
  padding: 0 0 0.54rem;
  border-bottom: 1px solid var(--gray1);
  box-sizing: border-box;
  line-height: 2.125;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-profile__info_box {
    grid-template-columns: 100%;
    line-height: 2;
    font-size: 1.3rem;
  }
}
.p-profile__info_box + .p-profile__info_box {
  margin-top: 0.54rem;
}
@media only screen and (max-width: 767px) {
  .p-profile__info_title {
    padding-bottom: 0.54rem;
    border-bottom: 1px solid var(--gray1);
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  .p-profile__info_content {
    padding-top: 0.54rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-profile__map {
    width: 100%;
    height: 27.78rem;
  }
}
.p-profile__map iframe {
  width: 100%;
  height: 100%;
}
.p-profile__image {
  margin: 9.3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-profile__image {
    margin-top: 4.97rem;
  }
}

.p-contact {
  padding: 12.56rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-contact {
    padding: 6.4rem 0 0;
  }
}
.p-contact__wrap {
  padding: 6.17rem 11.4rem 6.55rem;
  box-sizing: border-box;
  background: var(--base);
}
@media only screen and (max-width: 767px) {
  .p-contact__wrap {
    padding: 4.67rem 2.54rem 5.6rem;
  }
}
.p-contact__title {
  margin: 0 auto 6.67rem;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contact__title {
    margin-bottom: 3.07rem;
  }
}
.p-contact__title_main {
  display: block;
  margin: 0 auto 0.6rem;
  line-height: 1.75;
  letter-spacing: 0.2em;
  font-size: 3.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contact__title_main {
    font-size: 1.8rem;
  }
}
.p-contact__title_sub {
  display: block;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.738rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__title_sub {
    font-size: 1.4rem;
  }
}
.p-contact__title_jp {
  display: inline;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.557rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-contact__title_jp {
    font-size: 1.4rem;
  }
}
.p-contact__box {
  display: grid;
  grid-template-columns: 1fr 49.13rem;
  margin: 0;
  text-align: left;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contact__box {
    grid-template-columns: 100%;
    row-gap: 0.75rem;
  }
}
.p-contact__box + .p-contact__box {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__box + .p-contact__box {
    margin-top: 3.29rem;
  }
}
.p-contact__box_title {
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contact__box_title {
    font-size: 1.2rem;
  }
}
.p-contact__box_sub {
  line-height: 1.7142857143;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contact__box_sub {
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
.p-contact__box_content input[type=text],
.p-contact__box_content input[type=email],
.p-contact__box_content input[type=tel],
.p-contact__box_content textarea {
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.75;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-contact__box_content input[type=text],
  .p-contact__box_content input[type=email],
  .p-contact__box_content input[type=tel],
  .p-contact__box_content textarea {
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
.p-contact__box_error {
  margin: 0.8rem 0 0;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-contact__box_error {
    font-size: 1.2rem;
  }
}
.p-contact__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20.19rem;
  height: 9.621rem;
  border: 1px solid #FFF;
  border-radius: 4.5rem;
  box-sizing: border-box;
  background: var(--gray1);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contact__btn {
    width: 16.418rem;
    height: 7.824rem;
    font-size: 1.464rem;
  }
}
.p-contact__btn_sub {
  line-height: 1.5714285714;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__btn_sub {
    font-size: 1.138rem;
  }
}
.p-contact__btn-send {
  background: var(--orange1);
}
.p-contact__btn_wrap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  margin: 5.83rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-contact__btn_wrap {
    margin-top: 5.44rem;
  }
}
.p-contact-confirm {
  padding: 4.18rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-contact-confirm {
    padding: 3.2rem 0 0;
  }
}
.p-contact-thanks {
  padding: 10.55rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-contact-thanks {
    padding: 7.67rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-contact-thanks__content {
    text-align: left;
  }
}
/*# sourceMappingURL=maps/style.css.map */
