/*
sass --watch --no-source-map sass:assets/css
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,500,700&display=swap&subset=japanese");
/*----------------------------------------
	clearfix
----------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
}

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

.clearfix {
  min-height: 1px;
  _height: 1%;
}
.clearfix:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

html, body {
  background: #fafafa;
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fafafa;
  z-index: 1;
  padding: 0px 30px 0px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo img {
  width: 220px;
}
.l-header__menu ul {
  display: flex;
  gap: 10px;
}
.l-header__menu ul li {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: inline-block;
}
.l-header__menu ul li.company {
  padding: 10px 20px;
}
.l-header__menu ul li.contact {
  border: 1px solid #000;
  border-radius: 64px;
  padding: 8px 20px;
}
.l-header__menu ul li.contact:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset;
}
.l-header__menu ul li:hover {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(0px, -2px);
}
.l-header__menu ul li:hover a {
  opacity: 1;
}
@media (max-width: 840px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  display: none;
}
@media (max-width: 840px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__toggle:hover {
  cursor: pointer;
}
.l-header__toggle button {
  padding: 0;
  border-width: 0;
}
.l-header__toggle button span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: all 0.4s;
}
.l-header__toggle button span:nth-of-type(1) {
  top: 17px;
}
.l-header__toggle button span:nth-of-type(2) {
  top: 23px;
}
.l-header__toggle button span:nth-of-type(3) {
  top: 29px;
}
.l-header__toggle.is-active button span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.l-header__toggle.is-active button span:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggle.is-active button span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}
.l-header__spmenu {
  pointer-events: none;
  position: fixed;
  transition: none;
  z-index: 2;
  height: 100vh;
  top: 0;
  right: -200px;
  opacity: 0;
  transition: all 0.4s;
}
.l-header__spmenu.is-active {
  opacity: 1;
  right: 0;
}
.l-header__spmenu__inner {
  height: 100%;
  background: #FFFFFF;
  padding: 100px 50px;
}
.l-header__spmenu__inner ul li {
  margin: 0 0 50px;
}
.l-header__spmenu__inner ul li a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.1s ease;
  color: #333;
}

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

table {
  width: 100%;
}

a:focus,
input:focus {
  outline: none;
}

.l-container {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  background: #fafafa;
  padding: 180px 0 0;
}
.l-container__inner {
  padding: 0 0 110px;
}
.l-container__inner__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0px 140px 0px;
  gap: 60px;
}
@media (max-width: 840px) {
  .l-container__inner__title {
    padding: 0 32px;
    display: block;
    margin: 0 0px 70px 0px;
    gap: 0px;
  }
}
.l-container__inner__title__image figure {
  width: 400px;
}
@media (max-width: 840px) {
  .l-container__inner__title__image figure {
    width: 100%;
    margin: 0 0 20px;
  }
}
.l-container__inner__title__text h1 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0px 0px 16px 0px;
}
.l-container__inner__title__text p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0px 0px 6px;
}
.l-container__inner__content {
  width: 900px;
  max-width: calc(100% - 40px);
  margin: 0 auto 32px;
}
.l-container__inner__content h2 {
  display: block;
  font-size: 2em;
  font-weight: 900;
  margin: 20px 0;
}
.l-container__inner__content h3 {
  display: block;
  font-size: 1em;
  font-weight: 700;
  margin: 10px 0;
}
.l-container__inner__content p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 10px 0;
  min-height: 1em;
}
.l-container__inner__content figure {
  margin: 18px 0;
}
.l-container__inner__content iframe {
  margin: 20px 0;
}
.l-container__inner__content a {
  color: #007cff;
}
.l-container__inner__charge {
  width: 900px;
  max-width: calc(100% - 40px);
  margin: 50px auto 110px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}
.l-container__inner__charge p {
  color: #a1a1a1;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0px 0px 6px;
  justify-content: flex-start;
}

.l-company {
  margin: 106px auto auto;
  background: #ffffff;
}
.l-company__inner {
  width: 800px;
  max-width: 100%;
  margin: auto;
  padding: 0 0 110px;
}
.l-company__inner h1 {
  padding: 60px 30px;
  color: #111111;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0px 0px 94px;
}
.l-company__inner .purpose {
  padding: 0px 24px;
  margin: 0px 0px 89px 0px;
}
.l-company__inner .purpose h3 {
  color: #c9c9c9;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2;
  margin: 0px 0px 8px 0px;
}
.l-company__inner .purpose h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2;
}
.l-company__inner .vision {
  margin: 0px 0px 250px 0px;
  padding: 0px 24px;
}
.l-company__inner .vision h3 {
  color: #c9c9c9;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2;
  margin: 0px 0px 28px 0px;
}
.l-company__inner .vision h2 {
  font-family: var(--s-font-e894879d);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2;
}
.l-company__inner .vision p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
.l-company__inner .service {
  margin: 0 0 216px;
  display: flex;
}
.l-company__inner .service div {
  flex: 1;
  padding: 0px 24px;
}
.l-company__inner .service div h3 {
  text-align: center;
  margin: 0px 0px 20px 0px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2;
}
.l-company__inner .service div p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
.l-company__inner .comment h2 {
  padding: 60px 30px;
  color: #111111;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0px 0px 39px 0px;
}
.l-company__inner .comment h3 {
  margin: 0px 0px 20px 0px;
  padding: 0px 24px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
.l-company__inner .comment p {
  margin: 0px 0px 80px 0px;
  padding: 0px 24px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
.l-company__inner .company {
  margin: 0 0 172px;
}
.l-company__inner .company h2 {
  margin: 171px 0px 0px 0px;
  padding: 60px 30px;
  color: #111111;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
}
.l-company__inner .company dl {
  padding: 16px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  font-size: 14px;
  justify-content: flex-start;
  padding: 24px 16px 24px;
}
.l-company__inner .company dl:first-of-type {
  border-top: 1px solid #eeeeee;
}
.l-company__inner .company dl dt {
  color: #333;
  font-feature-settings: "palt" 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  width: 256px;
}
.l-company__inner .company dl dd {
  color: #333;
  flex: 1;
  font-feature-settings: "palt" 1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.l-page__inner {
  margin: 106px auto 0px auto;
  width: 714px;
  max-width: 100%;
}
.l-page__inner h1 {
  color: #111111;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  padding: 60px 0px 60px;
}
@media (max-width: 840px) {
  .l-page__inner h1 {
    padding: 60px 20px 60px;
  }
}
.l-page__inner__form {
  width: 80%;
  margin: auto;
}
.l-page__inner__form p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 2;
  margin: 0 0 60px;
}
.l-page__inner__form dl {
  margin: 0px 0px 20px 0px;
}
.l-page__inner__form dl dt {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.4;
  margin: 0px 0px 10px 0px;
}
.l-page__inner__form dl dt span {
  color: #f23a3c;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.4;
  margin: 0px 0px 0px 5px;
}
.l-page__inner__form dl dd input {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  box-shadow: none;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  height: 50px;
  letter-spacing: 0em;
  line-height: 1.4;
  padding: 10px 10px 10px 10px;
  border-radius: 4px;
  width: 100%;
}
.l-page__inner__form dl dd input :focus,
.l-page__inner__form dl dd input :focus-visible,
.l-page__inner__form dl dd input :active {
  outline-color: #292929;
}
.l-page__inner__form dl dd textarea {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  box-shadow: none;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  height: 160px;
  letter-spacing: 0em;
  line-height: 1.4;
  padding: 10px 10px 10px 10px;
  width: 100%;
}
.l-page__inner__form .check {
  margin: 0 0 40px;
}
.l-page__inner__form .check label span {
  color: #333333;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 20px;
}
.l-page__inner__form .button input {
  background: #000000;
  border-radius: 4px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  color: #333;
  font-size: 15px;
  padding: 15px;
  width: 100%;
  max-width: 100%;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  box-shadow: none;
  border-width: 0;
}
.l-page__inner__form .button input:hover {
  cursor: pointer;
}

.l-list__tags ul {
  display: flex;
  margin: 160px auto 50px auto;
  width: 800px;
  max-width: 100%;
  align-items: center;
  justify-content: space-around;
  padding: 0px 30px 0px;
}
@media (max-width: 840px) {
  .l-list__tags ul {
    margin: 66px auto 50px auto;
  }
}
.l-list__tags ul li a {
  padding: 0 0 5px 0;
  color: #111111;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.l-list__tags ul li a.is-active {
  border-bottom: 1px solid #000;
}
.l-list.is-index .l-list__tags ul {
  margin: 66px auto 50px auto;
}
.l-list__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0px auto 268px auto;
  width: 90%;
  max-width: 90%;
  align-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 840px) {
  .l-list__inner {
    width: 100%;
    max-width: 100%;
  }
}
.l-list__inner a {
  margin: 20px;
  padding: 0px;
  width: calc(24% - 40px);
  max-width: calc(24% - 40px);
}
@media (max-width: 840px) {
  .l-list__inner a {
    margin: 0px 5px 10px;
    width: calc(49% - 20px);
    max-width: calc(49% - 20px);
  }
}
.l-list__inner a p {
  color: #333;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0px 0px 0px 2px;
  max-width: calc(100% - 2px);
}
.l-list__inner a p.title {
  font-size: 12px;
  font-weight: 400;
  padding: 10px 0px 4px 0px;
  letter-spacing: 0.1em;
}
.l-list__inner a p.region {
  padding: 1px 0px 4px 0px;
}
.l-list__inner a p.date {
  padding: 1px 0px 10px 0px;
}
.l-list__inner a p.more {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.l-list__inner a p.more:hover {
  transform: translate(4px, 0px);
}
.l-list__inner a figure {
  max-width: 500px;
  overflow: hidden;
}
.l-list__inner a figure img {
  transition: 0.6s cubic-bezier(0.4, 0.4, 0, 1);
  width: 100%;
}
.l-list__inner a:hover figure img {
  opacity: 0.8;
  scale: 1.1;
}
.l-list__more {
  margin: 59px 0px 59px 0px;
  text-align: center;
}
.l-list__more a {
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 20px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  color: #333;
  font-size: 15px;
  font-weight: 400;
  height: 40px;
  justify-content: center;
  letter-spacing: 0em;
  line-height: 40px;
  margin: 4px;
  padding: 0px 20px;
  max-width: calc(100% - 8px);
  display: inline-block;
  width: auto;
}

.l-footer {
  padding: 100px 0px 100px;
  background: #fafafa;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 80%;
  margin: auto;
}
.l-footer__inner__logo {
  height: 303px;
}
.l-footer__inner__logo a {
  height: 36px;
  display: flex;
  align-items: flex-start;
  height: 303px;
}
.l-footer__inner__logo a img {
  width: 230px;
}
.l-footer__inner__logo p {
  color: #a1a1a1;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.l-footer__inner__menu ul li {
  padding: 10px;
}
.l-footer__inner__menu ul li a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
}

.p-index {
  background: #fafafa;
  margin: 80px 0px 0px 0px;
}
