@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  html {
    font-size: 3.125vw;
    /*
      計算式：　10(px) / 320(px) * 100 = 3.125
      画面幅320pxの時に "font-size: 10px" 相当になる
    */
    /*
    10px が 1remになる
    */
  }
}
html {
  font-size: 1vw;
}

body {
  font-size: 1.6rem;
  /*
      html要素で指定されたfont-sizeの1.6倍になる
    */
  text-align: justify;
  text-justify: inter-ideograph;
  color: #2f2f2f;
  position: relative;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.br-sp {
  display: block;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: block;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .br-pc {
    display: none;
  }
}

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

body {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --------------------------
トップページ
-----------------------------*/
.topContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.topLogo {
  width: 30.5rem;
  min-width: 210px;
  max-width: 330px;
}

.horizonNav {
  position: fixed;
  bottom: 0;
  display: none;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .horizonNav {
    display: flex;
    align-items: center;
    height: 63px;
    padding-top: -1rem;
    border-top: 1px solid rgb(212, 212, 212);
    background-color: #fff;
  }
}
.horizonNav--top {
  display: flex;
}
.horizonNav_list {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 400px;
  margin-bottom: 3.5rem;
  padding: 0;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .horizonNav_list {
    margin-bottom: 30px;
  }
}
.horizonNav_item {
  list-style-type: none;
}
.horizonNav_item .current a::after {
  transform: scale(1, 1);
}
.horizonNav_item a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #606060;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .horizonNav_item a {
    font-size: 14px;
  }
}
.horizonNav_item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
  background: #333;
}
.horizonNav_item a:hover::after {
  transform: scale(1, 1);
}

.spHeader {
  display: none;
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .spHeader {
    position: fixed;
    display: block;
  }
}
.spHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 25px;
  border-bottom: 1px solid rgb(212, 212, 212);
  background-color: #fff;
}
.spHeader_mark {
  width: 44px;
}
.spHeader_logotype {
  width: 144px;
}

.verticalNav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 100vh;
  color: red;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .verticalNav {
    display: none;
  }
}
.verticalNav_list {
  margin: 0;
}
.verticalNav_item {
  margin-bottom: 8px;
  list-style-type: none;
}
.verticalNav_item a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #606060;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .verticalNav_item a {
    font-size: 14px;
  }
}
.verticalNav_item a:hover {
  color: #2f2f2f;
}
.verticalNav_item a::before {
  position: absolute;
  top: 0;
  left: -10px;
  width: 2px;
  height: 100%;
  content: "";
  transition: transform 0.3s;
  transform-origin: center center;
  background: #333;
}
.verticalNav_item a::before {
  transform: scale(0.5, 0);
}
.verticalNav_item a:hover::before {
  transform: scale(1, 1);
}
.verticalNav_item.current a {
  pointer-events: none;
  color: #2f2f2f;
}

.pageTitle {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  height: 100vh;
  padding-right: 2.5rem;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .pageTitle {
    display: none;
  }
}
.pageTitle_logotype {
  width: 2.5rem;
  min-width: 20px;
  max-width: 23px;
}
.pageTitle_title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 16px;
  font-weight: normal;
  padding-right: 1rem;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .page {
    height: 100%;
    padding-top: 60px;
    padding-bottom: 63px;
  }
}
.page_inner {
  display: flex;
  justify-content: center;
  width: 66rem;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .page_inner {
    width: 80%;
    max-width: 600px;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .page_inner {
    display: block;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.copyright {
  position: fixed;
  right: 0;
  bottom: 0;
  padding-right: 8px;
  padding-bottom: 3px;
}
.copyright_txt {
  font-size: 11px;
  color: rgb(167, 167, 167);
}

.pageSymbolmark {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .pageSymbolmark {
    display: none;
  }
}
.pageSymbolmark_inner {
  width: 24rem;
  max-width: 220px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .pageSymbolmark_inner {
    width: 16rem;
  }
}

a.exLink {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #606060;
}
a.exLink:hover {
  opacity: 0.7;
}
a.exLink::after {
  display: inline-block;
  margin-left: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  content: url(/img/ico-link-window.png);
  vertical-align: middle;
}

.philosophy {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  height: 100vh;
  padding: 18vh 20vw;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .philosophy {
    padding-top: 60px;
    padding-bottom: 63px;
    max-width: 600px;
    margin: 0 auto;
    width: 80%;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.philosophy_inner {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .philosophy_inner {
    display: block;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .philosophy_inner {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.philosophy_heading {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
  margin-left: 2rem;
  text-indent: -10px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1200px) {
  .philosophy_heading {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 16px;
    margin-bottom: 1.5rem;
    margin-left: 0;
    writing-mode: horizontal-tb;
  }
}
.philosophy_reading {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 14px;
  line-height: 1.8;
  text-orientation: upright;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1200px) {
  .philosophy_reading {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 14px;
    margin-bottom: 5rem;
    writing-mode: horizontal-tb;
  }
}
.philosophy_reading p {
  margin-left: 2em;
}
@media screen and (max-width: 1200px) {
  .philosophy_reading p {
    margin-bottom: 2rem;
    margin-left: 0;
  }
}

.philosophy_spTitle {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  display: none;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .philosophy_spTitle {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 18px;
    font-weight: normal;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
  }
}

.num-in-v {
  line-height: 1;
  vertical-align: baseline;
  text-combine-upright: all;
}

.dash-in-v {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: -0.2rem;
  text-orientation: sideways !important;
}
@media screen and (max-width: 1200px) {
  .dash-in-v {
    letter-spacing: -0.5rem;
  }
}

.logoConcept {
  display: grid;
  height: 100%;
  margin-right: 20px;
  gap: 1rem;
  grid-template-rows: auto 100px;
}
@media screen and (max-width: 1200px) {
  .logoConcept {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    margin-right: 0;
  }
}
.logoConcept_body {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(209, 209, 209);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1200px) {
  .logoConcept_body {
    border: none;
    writing-mode: horizontal-tb;
  }
}
.logoConcept_title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 16px;
  font-weight: normal;
  margin-left: 0.7rem;
}
@media screen and (max-width: 1200px) {
  .logoConcept_title {
    font-size: 14px;
    margin-bottom: 1rem;
    margin-left: 0;
  }
}
.logoConcept_credit {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 13px;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .logoConcept_credit {
    font-size: 10px;
  }
}
.logoConcept_credit a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: #606060;
}
.logoConcept_credit a::after {
  display: inline-block;
  margin-left: -5px;
  padding-top: 5px;
  padding-bottom: 5px;
  content: url(/img/ico-link-window.png);
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .logoConcept_credit a::after {
    margin-right: 7px;
    margin-left: 7px;
  }
}
.logoConcept_credit a:hover {
  opacity: 0.7;
}
.logoConcept_reading {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 13px;
  margin-left: 0.3rem;
}
@media screen and (max-width: 1200px) {
  .logoConcept_reading {
    line-height: 1.8;
    margin-bottom: 1rem;
  }
}
.logoConcept_logo {
  width: 130px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .logoConcept_logo {
    margin-bottom: 2rem;
  }
}

.about {
  display: block !important;
}
.about_title {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(180, 180, 180);
}
.about_logotype {
  width: 185px;
}
.about_body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .about_body {
    display: block;
  }
}
.about_content {
  max-width: 50%;
  padding-right: 1rem;
}
@media screen and (max-width: 1200px) {
  .about_content {
    max-width: 100%;
  }
}
.about_data {
  width: 100%;
}
.about_data th,
.about_data td {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 0;
  text-align: left;
  vertical-align: top;
  letter-spacing: 2px;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .about_data th,
  .about_data td {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .about_data td {
    width: 80%;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .about_data td {
    width: 100%;
  }
}
.about_data th {
  width: 7rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 1200px) {
  .about_data th {
    width: 20%;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .about_data th {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.about_map {
  max-width: 800px;
  width: 90%;
  margin: 2em auto;
  text-align: center;
}

.about_map img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}
@media screen and (max-width: 1200px) {
  .about_map {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
  }
}

.secondary-txt {
  font-size: 13px;
  margin-top: 1rem;
  letter-spacing: 1px;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .secondary-txt {
    font-size: 11px;
    letter-spacing: 1;
  }
}

.lawer {
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .lawer {
    display: flex;
    justify-content: center;
    width: 80%;
  }
}
.lawer_photo {
  width: 28rem;
  max-width: 350px;
  margin-right: 3rem;
}
@media screen and (max-width: 1200px) {
  .lawer_photo {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.lawer_content {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  min-width: 490px;
}
@media screen and (max-width: 1200px) {
  .lawer_content {
    display: flex;
    min-width: initial;
    max-width: 350px;
    width: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .lawer_content {
    display: block;
  }
}
.lawer_primary {
  width: 290px;
  margin: 0;
}
.lawer_secondary {
  margin: 0;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .lawer_secondary {
    margin-top: 40px;
  }
}
.lawer_name {
  font-size: 23px;
  font-weight: normal;
  letter-spacing: 0.5rem;
}
.lawer_name_rubi {
  font-size: 14px;
  padding-left: 1rem;
  letter-spacing: 0;
}
.lawer_history {
  margin-top: 15px;
}
.lawer_history th,
.lawer_history td {
  vertical-align: top;
  letter-spacing: 1px;
}
.lawer_history th {
  font-weight: normal;
  width: 5rem;
}
.lawer_jobList {
  margin-top: 0;
  margin-left: 1rem;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .lawer_jobList {
    margin-top: 2.5rem;
    margin-left: 0;
    padding: 0;
  }
}
.lawer_jobItem {
  margin-bottom: 0.3rem;
  list-style-type: none;
  letter-spacing: 1px;
  font-size: 14px;
}
.lawer_jobItem-title {
  list-style-type: none;
  font-size: 18px;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.contactForm {
  width: 60rem;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .contactForm {
    width: 100%;
  }
}
.contactForm_phone {
  display: flex !important;
  align-items: center !important;
}
.contactForm_phone span {
  padding: 0 1rem;
}
.contactForm_check {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 13px;
  text-align: center;
}
.contactForm_check [type=checkbox] {
  margin-right: 6px;
  margin-bottom: -4px;
  transform: scale(1.5);
}
.contactForm th,
.contactForm td {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 14px;
  font-weight: normal;
  padding: 0.3rem;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .contactForm th,
  .contactForm td {
    display: block;
    width: 100% !important;
  }
}
.contactForm th {
  width: 30%;
  padding-top: 1.5rem;
  vertical-align: top;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .contactForm th {
    margin-top: 2rem;
  }
}
.contactForm td {
  width: 70%;
}
.contactForm input,
.contactForm textarea {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  width: 100%;
  height: 2.4em;
  padding: 0 16px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #ccc inset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .contactForm input,
  .contactForm textarea {
    width: 100%;
  }
}
.contactForm input:focus,
.contactForm textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.contactForm textarea {
  height: 10rem;
}

.mfp_buttons {
  text-align: center !important;
}

.mfp_element_all {
  max-width: 100% !important;
}

.must {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

button[type=submit] {
  font-size: 14px;
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
}

.bg {
  width: 100%;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .bg {
    background-position: right bottom 60px;
    background-size: 200% auto;
    padding-bottom: 150px;
  }
}
.bg.--blue {
  background-image: url(/img/bg-blue.jpg);
}
.bg.--green {
  background-image: url(/img/bg-green.jpg);
}
.bg.--pink {
  background-image: url(/img/bg-pink.jpg);
}

.shoes {
  position: absolute;
  bottom: 2rem;
  right: 8rem;
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .shoes {
    bottom: 80px;
  }
}
.shoes img {
  width: 180px;
}
@media screen and (max-width: 1200px) {
  .shoes img {
    width: 150px;
  }
}

.hobby {
  padding-top: 20px;
}/*# sourceMappingURL=style.css.map */