@charset "UTF-8";
/*-------------------------------
WEBフォント読み込み
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*-------------------------------
変数
---------------------------------*/
:root {
  --main-color: #82613f;
}

/*-------------------------------
ディフォルト設定
---------------------------------*/
html {
  width: 100%;
}

body {
  background-color: #f7f5eb;
  margin: 0px;
  padding: 0px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222222;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: normal;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/*text link（サイト全体のメイン文字カラー）
-------------------------------- */
a:link {
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

/*img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 92%;
  }
}

.content_title {
  background-size: cover;
  background-attachment: fixed;
}
.content_title .inner h1 {
  color: #fff;
  font-size: 1.2rem;
}
.content_title .inner h1 span {
  font-size: 1.6rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 {
    font-size: 1.2rem;
    text-align: center;
  }
}
.content_title.title_news {
  background-image: url(../../asset/img/index/room_bg.webp);
}
.content_title.title_news .inner {
  padding: 3rem 0;
}

@media screen and (max-width: 767px) {
  .sp_menu {
    background-color: var(--main-color);
    width: 56px;
    height: 56px;
    top: 0;
    right: 0;
    display: block;
    position: fixed;
    z-index: 1000;
  }
  .sp_menu span {
    width: 50%;
    height: 2px;
    line-height: 1;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu span:nth-of-type(1) {
    top: 30%;
  }
  .sp_menu span:nth-of-type(2) {
    top: 50%;
  }
  .sp_menu span:nth-of-type(3) {
    top: 70%;
  }
}

.pagetop {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  border-radius: 3px;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 0.7rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
.pagetop::after {
  content: "▲";
  color: #fff;
}

.is-fixed {
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

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

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

/*-------------------------------
footer
---------------------------------*/
footer {
  background-color: var(--main-color);
  color: #fff;
  padding: 3rem 0;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 3rem 0 6rem 0;
  }
}
footer .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
footer .inner .logo {
  width: 100%;
  text-align: center;
}
footer .inner .logo img {
  max-width: 300px;
  margin: auto;
}

/*-------------------------------
header
---------------------------------*/
header {
  background-color: #fff;
  width: 100%;
}
header .inner {
  max-width: 100%;
  padding: 2rem;
  padding-bottom: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  header .inner {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  header .inner .logo {
    text-align: center;
  }
}
header .inner .logo img {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  header .inner .logo img {
    max-width: 60%;
    margin: auto;
  }
}

/*-------------------------------
main
---------------------------------*/
.layout_main {
  display: grid;
  grid-template-columns: 260px 880px;
  grid-column-gap: 0px;
  justify-items: flex-start;
  align-items: flex-start;
  background-color: var(--sub-color-light);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .layout_main {
    display: block;
  }
}
.layout_main .gnav {
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .layout_main .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 999;
  }
  .layout_main .gnav.open {
    left: 0;
    z-index: 999;
  }
}
.layout_main .gnav ul {
  list-style: none;
}
.layout_main .gnav ul li.btn_db {
  background-color: var(--main-color-dark);
}
.layout_main .gnav ul li.btn_db a {
  color: #fff;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .layout_main .gnav ul li.btn_db a {
    height: 56px;
  }
}
.layout_main .gnav ul li.btn_top {
  background-color: #eee;
}
.layout_main .gnav ul li.btn_top a {
  padding-left: 1rem;
}
.layout_main .gnav ul li.btn_current {
  background-color: var(--current-color-dark);
}
.layout_main .gnav ul li.btn_current a {
  color: #fff;
}
.layout_main .gnav ul li a {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 3.5rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: top 50% left 1rem;
  background-blend-mode: multiply;
}
.layout_main .gnav ul li a:hover {
  background-color: var(--sub-color-light);
  color: #fff;
}
.layout_main .gnav ul li a.i_keyword {
  background-image: url(../img/common/icon_keyword.svg);
}
.layout_main .gnav ul li a.i_url {
  background-image: url(../img/common/icon_url.svg);
}
.layout_main .gnav ul li a.i_case {
  background-image: url(../img/common/icon_case.svg);
}
.layout_main .gnav ul li a.i_history {
  background-image: url(../img/common/icon_history.svg);
}
.layout_main .gnav ul li a.i_measurement {
  background-image: url(../img/common/icon_measurement.svg);
}
.layout_main .gnav ul li a.i_setting {
  background-image: url(../img/common/icon_setting.svg);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.layout_main .content {
  width: 100%;
  padding: 3rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .layout_main .content {
    padding: 1rem;
  }
}

/*-------------------------------
top
---------------------------------*/
.mv .inner {
  max-width: 100%;
  text-align: center;
}
.mv .inner .txt {
  font-size: 1.7vw;
  text-align: left;
  position: absolute;
  top: 21vw;
  left: 0;
  right: 0;
  line-height: 1.6;
  width: 100%;
  max-width: 85%;
  margin: auto;
  letter-spacing: 4px;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .mv .inner .txt {
    font-size: 0.9rem;
    color: #fff;
    top: 16%;
    text-align: center;
  }
}
.mv .inner .img img {
  width: 100%;
}

.info {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 1.5rem 0;
  }
}
.info h2 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .info h2 {
    font-size: 1.1rem;
  }
}
.info p {
  line-height: 1.8;
}

.news {
  background-color: #e4e0d0;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 1.5rem 0;
  }
}
.news .inner h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .news .inner h2 {
    font-size: 1.1rem;
  }
}
.news .inner h2 span {
  font-size: 1rem;
  color: #333;
  display: inline-block;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .news .inner h2 span {
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }
}
.news .inner ul {
  list-style: none;
}
.news .inner ul li {
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news .inner ul li {
    grid-template-columns: 1fr;
  }
}
.news .inner ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.news .inner ul li:hover {
  background-color: #eee;
}

.merit {
  padding: 3rem 0 3rem 0;
}
@media screen and (max-width: 767px) {
  .merit {
    padding: 1.5rem 0 1.5rem 0;
  }
}
.merit h2 {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .merit h2 {
    font-size: 1rem;
  }
}
.merit h2 span {
  font-size: 2rem;
  color: var(--main-color);
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .merit h2 span {
    font-size: 1.4rem;
    display: block;
  }
}
.merit .list {
  background-image: url(../img/index/room_bg.webp);
  background-size: cover;
  padding: 3rem 0 6rem 0;
}
.merit .list ul {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: flex-start;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .merit .list ul {
    max-width: 90%;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.merit .list ul li {
  height: 120px;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .merit .list ul li {
    height: auto;
    padding: 0.7rem;
    grid-template-columns: 12% 1fr;
  }
}
.merit .list ul li .num {
  color: var(--main-color);
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .merit .list ul li .num {
    font-size: 1.1rem;
  }
}
.merit .list ul li p {
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .merit .list ul li p {
    width: 100%;
    font-size: 0.9rem;
  }
}

.activity .inner h2 {
  background-color: var(--main-color);
  padding: 0.8rem;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.activity .inner h2.upper {
  margin-top: -4.5rem;
}
.activity .inner h3 {
  border-bottom: 1px solid #ccc;
  padding: 0 0 1rem 0;
  color: var(--main-color);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.activity .inner > p {
  margin-bottom: 2rem;
}
.activity .inner .txt {
  margin-bottom: 3rem;
}
.activity .inner .list ul {
  list-style: none;
}
.activity .inner .list ul li {
  border-bottom: 1px solid #ccc;
  padding: 1.2rem 0;
  padding-left: 3rem;
  position: relative;
  font-weight: bold;
}
.activity .inner .list ul li::before {
  font-size: 1.2rem;
  content: "■";
  color: var(--main-color);
  position: absolute;
  top: 25%;
  left: 0;
}
.activity .inner .license {
  margin-bottom: 3rem;
}
.activity .inner .license ul {
  list-style: none;
}
.activity .inner .license ul li {
  border: 2px solid var(--main-color);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  background-color: #fff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .activity .inner .license ul li {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.activity .inner .license ul li span {
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  color: #fff;
  padding: 1rem;
  text-align: center;
  letter-spacing: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 10px;
}
.activity .inner .license ul li p {
  padding: 1rem;
}
.activity .inner .other ul {
  margin-left: 1.5rem;
}
.activity .inner .other ul li {
  margin-bottom: 0.5rem;
}

.content_news {
  padding: 4rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .content_news {
    padding-top: 2rem;
  }
}
.content_news .inner .news_content {
  background-color: #fff;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content {
    padding: 2rem;
    max-width: 94%;
    margin: auto;
  }
}
.content_news .inner .news_content h2 {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content h2 {
    font-size: 1.1rem;
  }
}
.content_news .inner .news_content .news_info {
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content .news_info {
    margin-bottom: 2rem;
  }
}
.content_news .inner .news_content .news_txt {
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content .news_txt {
    line-height: 2;
  }
}
.content_news .inner .news_content .news_txt .name {
  font-weight: bold;
  margin-top: 1rem;
  text-align: right;
}
.content_news .inner .news_content .news_txt .file {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  border: 1px solid #ccc;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content .news_txt .file {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
.content_news .inner .news_content .news_txt .file p {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content .news_txt .file p {
    width: 100%;
    font-size: 1.1rem;
    text-align: center;
  }
}
.content_news .inner .news_content .news_txt .file .btn {
  width: 100%;
  text-align: right;
}
.content_news .inner .news_content .news_txt .file .btn a {
  display: inline-block;
  background-color: var(--main-color);
  margin-left: auto;
  text-decoration: none;
  color: #fff;
  padding: 1rem 4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .content_news .inner .news_content .news_txt .file .btn a {
    width: 100%;
    text-align: center;
  }
}
.content_news .inner .news_content .news_txt a {
  color: var(--main-color);
}
.content_news .inner .pager {
  margin-top: 3rem;
}
.content_news .inner .pager .inner {
  text-align: center;
}