@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&family=Noto+Serif+JP:wght@400;500;700&display=swap");
/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
body, div, section, article, aside, nav,
h1, h2, h3, h4, h5, h6,
span, time, figure, figcaption,
p, blockquote, pre, address, code,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, button,
table, tbody, thead, tfoot, tr, th, td {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  word-break: break-all;
}

header, main, aside, footer, section {
  display: block;
}

h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}

ul, ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
select {
  vertical-align: middle;
}

em {
  font-style: normal;
}

button {
  background: none;
  border: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*----------------------------------------------------
	setting
----------------------------------------------------*/
/*
  mixin
*/
/*----------------------------------------------------
	basic
----------------------------------------------------*/
body {
  min-width: 1080px;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    height: 100%;
  }
}

* {
  box-sizing: border-box;
}

a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
}
a:hover {
  color: #333;
}
a:active {
  color: #333;
}

*[data-show="sp"] {
  display: none;
}
@media screen and (max-width: 768px) {
  *[data-show="sp"] {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  *[data-show="pc"] {
    display: none;
  }
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/
body {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 56px;
  }
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: #fff;
  font-family: 'Noto Serif JP', serif;
}
.header__logo {
  padding: 0 30px;
  align-self: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header {
    height: 56px;
  }
  .header__logo {
    padding: 15px 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.nav {
  height: 100%;
}
.nav-title {
  display: none;
}
.nav-list {
  display: flex;
  height: 100%;
}
.nav-list li {
  align-self: center;
  margin-left: 30px;
}
.nav-list li a {
  align-self: center;
  transition: .5s;
  color: #000;
}
.nav-list li a:hover {
  opacity: .7;
}
.nav-list li:last-child {
  height: 100%;
  background: #BE972D;
}
.nav-list li:last-child a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  height: 100%;
}
.nav-list li:last-child a:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  background: url(../img/icon/mail.svg) center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .nav-title {
    position: relative;
    display: flex;
    align-items: center;
    width: 124px;
    height: 100%;
    padding-left: 52px;
    padding-right: 20px;
    background: #BE972D;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    color: #fff;
    text-align: right;
  }
  .nav-title:before, .nav-title:after {
    position: absolute;
    left: 24px;
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background: #fff;
    transition: .3s;
  }
  .nav-title:before {
    top: 20px;
  }
  .nav-title:after {
    bottom: 20px;
  }
  .nav-title span:before {
    position: absolute;
    top: 27px;
    left: 24px;
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background: #fff;
    transition: .3s;
  }
  .nav-title.-active:before {
    top: 27px;
    transform: rotate(45deg);
  }
  .nav-title.-active:after {
    bottom: 27px;
    transform: rotate(-45deg);
  }
  .nav-title.-active span {
    font-size: 0;
  }
  .nav-title.-active span:before {
    opacity: 0;
  }
  .nav-title.-active span:after {
    content: "CLOSE";
    font-size: 14px;
    font-size: 0.875rem;
  }
  .nav-list {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    padding-top: 40px;
    background: #FBFAF9;
  }
  .nav-list li {
    margin-bottom: 45px;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
  .nav-list li:last-child {
    height: auto;
    background: none;
  }
  .nav-list li:last-child a {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    align-items: center;
    color: inherit;
  }
  .nav-list li:last-child a:before {
    margin-bottom: 0;
    margin-right: 8px;
    background-image: url(../img/icon/mail_b.svg);
  }
}

/*----------------------------------------------------
	main
----------------------------------------------------*/
.main {
  position: relative;
  z-index: 1;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}
.bg.-active {
  z-index: 2;
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer .copyright {
  padding: 30px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    padding: 15px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*----------------------------------------------------
	0.basic
----------------------------------------------------*/
.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

.contents {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
.section.-bg {
  background: #E6DCBF;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

/* タイトル */
.title-l2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .title-l2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/* テキスト */
.lead {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lead {
    margin-bottom: 30px;
  }
}

/* リスト */
.list-ul {
  margin-bottom: 2em;
}
.list-ul li {
  padding-left: 1em;
}
.list-ul li:before {
  content: "・";
  margin-left: -1em;
}

.list-ol {
  margin-bottom: 2em;
}
.list-ol li {
  counter-increment: entry-ol;
  margin-bottom: 10px;
  padding-left: 1em;
}
.list-ol li:before {
  content: counter(entry-ol);
  margin-right: .2em;
  margin-left: -.8em;
}

/*----------------------------------------------------
	top
----------------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@media screen and (max-width: 768px) {
  @keyframes zoomUp2 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.3);
      /* 拡大率 */
    }
  }
  .add-animation {
    animation: zoomUp2 10s linear 0s normal both;
  }
}
.mainvisual {
  position: relative;
  height: 750px;
  font-family: 'Noto Serif JP', serif;
}
.mainvisual:after {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  content: "Scroll";
  display: block;
  padding-bottom: 35px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  z-index: 3;
  background: url(../img/top/arrow.svg) center bottom no-repeat;
}
.mainvisual-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-align: center;
}
.mainvisual-text__title {
  margin-bottom: 20px;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 4px;
}
.mainvisual-slider {
  height: 100%;
  overflow: hidden;
}
.mainvisual-slider div {
  height: 100%;
}
.mainvisual-slider li {
  height: 100%;
}
.mainvisual-slider img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    height: 540px;
  }
  .mainvisual-text {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 1.4px;
  }
  .mainvisual-text__title {
    margin-bottom: 5px;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 2.4px;
  }
  .mainvisual:after {
    font-size: 16px;
    font-size: 1rem;
    background-size: 40px auto;
  }
  .mainvisual-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .mainvisual-slider div {
    height: 100%;
  }
  .mainvisual-slider li {
    height: 100%;
  }
  .mainvisual-slider img {
    max-width: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.main-contents {
  padding: 80px 0;
  background: url(../img/share/bg.png);
}
.main-contents .message {
  max-width: 800px;
  margin: 0 auto 60px;
}
.main-contents .message p {
  line-height: 1.8;
}
.main-contents .message .sign {
  margin-top: 20px;
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
}
.main-contents .message .sign span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}
.main-contents .services {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.main-contents .services__headline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: 'Noto Serif JP', serif;
  color: #000;
}
.main-contents .services__headline:before, .main-contents .services__headline:after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 1px;
  margin: 0 10px;
  background: #000;
}
.main-contents .services-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.main-contents .services-list .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .main-contents {
    padding: 60px 0;
  }
  .main-contents .message {
    margin-bottom: 50px;
  }
  .main-contents .message .sign {
    margin-top: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
  .main-contents .message .sign span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .main-contents .services__headline {
    margin-bottom: 15px;
    font-size: 20px;
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .main-contents .services__headline:before, .main-contents .services__headline:after {
    width: 30px;
  }
  .main-contents .services-list {
    display: block;
    margin: 0;
  }
  .main-contents .services-list li {
    margin: 30px 0 0;
  }
  .main-contents .services-list .img {
    margin-bottom: 15px;
  }
}

.result-items {
  display: flex;
  justify-content: space-between;
}
.result-items li {
  width: calc(100% / 4 - 15px);
  font-size: 14px;
  font-size: 0.875rem;
}
.result-item img {
  margin-bottom: 10px;
}
.result-item__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .result-items {
    flex-wrap: wrap;
    margin-bottom: -30px;
  }
  .result-items li {
    width: calc(100% / 2 - 5px);
    margin-bottom: 30px;
  }
  .result-item__title {
    font-size: 16px;
    font-size: 1rem;
  }
}

.company {
  background: #FBFAF9;
}
.company-table {
  width: 100%;
  border-top: 1px solid #ddd;
}
.company-table th, .company-table td {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.company-table th {
  width: 180px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .company-table th, .company-table td {
    padding: 18px 0;
  }
  .company-table th {
    width: calc(5em + 20px);
    font-size: 16px;
    font-size: 1rem;
  }
}

.faq-list {
  margin-bottom: -20px;
}
.faq-list dt, .faq-list dd {
  padding: 30px;
  background: #fff;
}
.faq-list dt {
  padding-bottom: 16px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.faq-list dt:before {
  content: "Q.";
  margin-right: 10px;
  color: #BE972D;
  font-family: 'Noto Serif JP', serif;
  flex-shrink: 0;
}
.faq-list dd {
  display: flex;
  margin-bottom: 20px;
  padding-top: 0;
}
.faq-list dd:before {
  content: "A.";
  margin-right: 10px;
  color: #BE972D;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-size: 1.125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq-list dt, .faq-list dd {
    padding: 20px;
  }
  .faq-list dt {
    display: flex;
    padding-bottom: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
  .faq-list dd {
    padding-top: 0;
  }
  .faq-list dd:before {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
}

.instagram {
  background: #FBFAF9;
}
.instagram .title-l2:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(../img/icon/instagram.svg) center no-repeat;
  background-size: contain;
}
.instagram .instagram-gallery {
  max-width: 1000px;
  margin: 0 auto;
}
.instagram .instagram-gallery__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.instagram .instagram-gallery__item {
  width: calc(100% / 3 - 20px);
  margin: 0 10px 20px;
}
.instagram .instagram-gallery__item:last-child {
  margin-right: auto;
}
.instagram .instagram-gallery__item:nth-of-type(1), .instagram .instagram-gallery__item:nth-of-type(2) {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .instagram .instagram-gallery__list {
    justify-content: flex-start;
  }
  .instagram .instagram-gallery__item {
    width: calc(100% / 2 - 10px);
    margin: 0 5px 10px !important;
  }
}

.contact {
  position: relative;
  display: block;
  background: url(../img/top/bg_contact.jpg) center no-repeat;
  background-size: cover;
}
.contact:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.contact .contents {
  position: relative;
  z-index: 1;
  color: #fff;
}
.contact .contents a {
  color: #fff;
}
.contact .title-l2 {
  color: #fff;
}
.contact .lead {
  margin-bottom: 50px;
}
.contact .lead a {
  text-decoration: underline;
}
.contact .lead a:hover {
  text-decoration: none;
}
.contact-list {
  display: flex;
}
.contact-list li {
  width: 50%;
  padding: 10px;
  text-align: center;
}
.contact-list li span {
  display: block;
  margin-top: 20px;
}
.contact-list li a {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
}
.contact-list li a:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/mail.svg);
}
.contact-list li:nth-of-type(1) {
  border-right: 1px solid #fff;
}
.contact-list li:nth-of-type(1) a:before {
  background-image: url(../img/icon/phone.svg);
}
@media screen and (max-width: 768px) {
  .contact {
    background-size: auto 100%;
  }
  .contact .lead {
    margin-bottom: 30px;
    text-align: left;
  }
  .contact-list {
    display: block;
  }
  .contact-list li {
    width: 100%;
    padding: 0;
  }
  .contact-list li span {
    margin-top: 10px;
  }
  .contact-list li a {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .contact-list li:nth-of-type(1) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
  .contact-list li:nth-of-type(2) span {
    text-align: left;
  }
}

/*# sourceMappingURL=common.css.map */
