@charset "UTF-8";
/*-------------------------------
WEBフォント読み込み
---------------------------------*/
/* Google Fonts の読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&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: #2074b5;
  --main-color-dark: #6395bb;
  --sub-color-light: #ccdde6;
  --current-color-dark: #265f8b;
}

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

body {
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222222;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-align: left;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

#wrap {
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 767px) {
  #wrap {
    overflow: hidden;
  }
}
#wrap #contents {
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #wrap #contents {
    max-width: 90%;
  }
}
#wrap.top #contents {
  max-width: 100%;
}

/*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 {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 90%;
  }
}

h2 {
  font-weight: normal;
  letter-spacing: 2px;
}

@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;
    display: none;
  }
  .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%;
  }
}

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

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

.contents_row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .contents_row {
    grid-template-columns: 1fr;
  }
}

/*-------------------------------
footer
---------------------------------*/
footer {
  background-color: #272727;
}
footer .footer__info {
  background-color: #333;
  padding: 3rem 0 1rem 0;
}
footer .footer__info h2 {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}
footer .footer__info ul {
  list-style: none;
  margin-bottom: 3rem;
}
footer .footer__info ul.post li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
footer .footer__info ul.post li::before {
  content: "●";
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
}
footer .footer__info ul.post li a {
  color: #fff;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  footer .footer__info ul.post li a {
    font-size: 0.9rem;
  }
}
footer .footer__info ul.post li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(https://file001.shop-pro.jp/PA01521/094/assets/img/icon_link_wh.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
footer .footer__info ul.facility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .footer__info ul.facility {
    grid-template-columns: 1fr;
  }
}
footer .footer__info ul.facility li {
  width: 100%;
  position: relative;
}
footer .footer__info ul.facility li a {
  display: block;
  background-color: #fff;
  padding: 2rem 1rem;
  padding-right: 2rem;
  text-align: center;
  letter-spacing: 2px;
  text-decoration: none;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  footer .footer__info ul.facility li a {
    padding: 1rem;
  }
}
footer .footer__info ul.facility li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(https://file001.shop-pro.jp/PA01521/094/assets/img/icon_link_bk.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 36%;
  right: 10px;
}
footer .footer__nav {
  padding: 2rem 0;
}
footer .footer__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  footer .footer__nav ul {
    padding: 1.5rem 0;
  }
}
footer .footer__nav ul li a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .footer__nav ul li a {
    font-size: 0.8rem;
  }
}
footer .footer__nav .cr {
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
}

/*-------------------------------
header
---------------------------------*/
header .inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  justify-items: flex-start;
  align-items: stretch;
  padding: 1.5rem 0;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  header .inner {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }
}
header .inner .logo {
  width: 100%;
}
header .inner .logo h1 {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 {
    font-size: 1.2rem;
  }
}
header .inner .logo h1 a {
  text-decoration: none;
}
header .inner .menu {
  width: 100%;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav {
    display: none;
  }
}
header .inner .menu nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}

/*-------------------------------
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;
  }
}

/*-------------------------------
box
---------------------------------*/
.box {
  width: 100%;
  background-color: #fff;
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
}
.box:first-child {
  margin-top: 0;
}
.box h2 {
  background-color: var(--main-color-dark);
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .box h2 {
    font-size: 1rem;
  }
}
.box h2:first-child {
  margin-top: 0;
}
.box h2.none {
  background-color: transparent;
  color: #252525;
  padding: 0;
  margin-bottom: 1.5rem;
}
.box h2.bar {
  background-color: transparent;
  color: #252525;
  padding: 0;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}
.box .inner {
  padding: 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .box .inner {
    padding: 2rem 1rem;
  }
}

/*-------------------------------
case
---------------------------------*/
.case .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) and (min-width: 901px) {
  .case .row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) and (min-width: 768px) {
  .case .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .case .row {
    grid-template-columns: 1fr;
  }
}
.case .row .col {
  border: 1px solid #ccc;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.case .row .col .img {
  position: relative;
  overflow: hidden;
}
.case .row .col .img img {
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.case .row .col .img span {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #333;
  line-height: 1;
  color: #fff;
  padding: 3px 5px;
  border-radius: 100px;
  font-size: 0.7rem;
}
.case .row .col .txt {
  padding: 1rem;
}
.case .row .col .txt .info {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.case .row .col .txt .info .icon img {
  width: auto;
  height: 20px;
}
.case .row .col .txt .info .icon span {
  height: 20px;
  display: block;
  background-color: var(--main-color);
  font-size: 0.6rem;
  padding: 0 5px;
  border-radius: 3px;
  color: #fff;
  line-height: 20px;
}
.case .row .col .txt .info .date {
  width: 100%;
  font-size: 0.8rem;
  text-align: right;
}
.case .row .col .txt h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.case .row .col .txt p {
  font-size: 0.7rem;
  line-height: 1.3;
  color: #555;
  height: 60px;
  overflow: hidden;
}
.case .row .col a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.case .row .col::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.case .row .col:hover .img img {
  transform: scale(1.1);
}
.case .row .col.type_youtube::before {
  background-color: red;
}
.case .row .col.type_instagram::before {
  background-image: linear-gradient(150deg, rgb(247, 166, 12) 10%, rgb(255, 34, 87) 40%, rgb(154, 39, 238) 68%, rgb(35, 102, 247) 90%);
}
.case .row .col.type_unlink::before {
  background-color: var(--main-color);
}

/*-------------------------------
flow
---------------------------------*/
.flow ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  justify-items: flex-start;
  align-items: flex-start;
  position: relative;
}
.flow ul:after {
  width: 100%;
  height: 2px;
  line-height: 1;
  background-color: #eee;
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .flow ul:after {
    top: 35px;
  }
}
.flow ul li {
  width: 100%;
  background-color: #eaeaea;
  color: #969696;
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: center;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .flow ul li {
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 5px;
    padding: 0.5rem 0;
  }
}
.flow ul li .num {
  background-color: #fff;
  border-radius: 100px;
  line-height: 1;
  width: 40px;
  height: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow ul li .num {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
.flow ul li .num > span {
  font-size: 6px;
}
.flow ul li > p {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow ul li > p {
    font-size: 0.6rem;
  }
}
.flow ul li.current {
  background-color: #2074b5;
}
.flow ul li.current .num {
  color: #2074b5;
}
.flow ul li.current > p {
  color: #fff;
}

/*-------------------------------
input
---------------------------------*/
.input .set {
  display: grid;
  grid-template-columns: 1fr 150px;
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .input .set {
    grid-template-columns: 1fr;
  }
}
.input .set input {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #f6f6f6;
  padding: 1rem;
  line-height: 1;
}
.input .set button {
  width: 100%;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_script_create.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: auto 40%;
  color: #fff;
  border-radius: 100px;
  border: none;
  padding: 1rem;
  padding-left: 3rem;
  line-height: 1;
  cursor: pointer;
}
.input .option {
  margin-top: 1rem;
}
.input .option span {
  display: block;
  margin-bottom: 5px;
}
.input .option select {
  padding: 0.5rem;
  border: 1px solid #999;
  border-radius: 3px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .input .option select {
    width: 100%;
    margin-bottom: 5px;
  }
}

/*-------------------------------
effect
---------------------------------*/
.effect ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  list-style: none;
}
.effect ul li {
  width: 100%;
  background-color: #dddddd;
  padding: 0.5rem;
  border-radius: 5px;
  color: #999;
  font-size: 0.8rem;
}
.effect ul li.current {
  background-color: var(--main-color);
  color: #fff;
}

.prompt {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
}
.prompt span {
  display: block;
  background-color: #333;
  color: #fff;
  line-height: 1;
  padding: 1rem 0.5rem;
  font-size: 0.7rem;
  width: 140px;
  text-align: center;
  border-radius: 3px 0 0 3px;
}
.prompt input {
  border: 1px solid #ccc;
  padding: 0.8rem;
  width: 100%;
  line-height: 1;
  border-radius: 0 3px 3px 0;
}

/*-------------------------------
pager
---------------------------------*/
.pager {
  margin-top: 3rem;
}
.pager ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pager ul li span,
.pager ul li a {
  padding: 0.5rem 0.8rem;
  line-height: 1;
}
.pager ul li span {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 5px;
  color: #fff;
}
.pager ul li a {
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
}

/*-------------------------------
top
---------------------------------*/
.mv {
  position: relative;
  overflow: hidden;
}
.mv .mv_slider img {
  width: 100%;
}
.mv .icon {
  position: absolute;
  right: 5vw;
  bottom: 6vw;
  width: 15vw;
}
@media screen and (max-width: 767px) {
  .mv .icon {
    width: 20vw;
    bottom: 0;
  }
}
.mv .icon img {
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
.mv .icon img:hover {
  transform: scale(1.06);
}

.news {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.news__list h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news__list h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.news__list ul {
  list-style: none;
}
.news__list ul li {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .news__list ul li {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .news__list ul li {
    padding: 1rem 0;
  }
}
.news__list ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.news__list ul li:hover {
  background-color: #eee;
}

.sns {
  margin-top: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .sns {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.sns .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .sns .inner {
    grid-template-columns: 1fr;
  }
}
.sns__item {
  width: 100%;
}
.sns__item h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.sns__youtube iframe {
  width: 100%;
  height: 268px;
}
.sns__youtube .btn_grp {
  margin-top: 2rem;
  text-align: center;
}
.sns__youtube .btn_grp a {
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
}

.intro {
  margin-bottom: 6rem;
}
.intro .inner {
  max-width: 100%;
}
.intro__head {
  position: relative;
  margin-bottom: 4rem;
}
.intro__head span {
  display: block;
  font-size: 2.2rem;
  writing-mode: vertical-rl;
  letter-spacing: 8px;
  line-height: 1.6;
  position: absolute;
  top: 140px;
  left: 10vw;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .intro__head span {
    font-size: 1.6rem;
    top: 8vw;
  }
}
.intro__txt {
  max-width: 60%;
  margin-left: auto;
  font-size: 1.1rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .intro__txt {
    margin-right: 2rem;
    font-size: 0.9rem;
  }
}

.features {
  background-image: url(../img/bg_beige.png);
  padding-top: 140px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .features {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.features .inner {
  max-width: 100%;
}
.features__head {
  position: relative;
  margin-bottom: 4rem;
  height: 100px;
}
.features__head p {
  display: block;
  font-size: 2.2rem;
  writing-mode: vertical-rl;
  letter-spacing: 8px;
  position: absolute;
  top: 0;
  right: 12vw;
  height: 600px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .features__head p {
    font-size: 1.6rem;
    top: 8vw;
  }
}
.features__item {
  width: 47%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .features__item {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.features__item .img {
  margin-bottom: 4rem;
}
.features__item .txt {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 20px;
  justify-items: flex-start;
  align-items: stretch;
  max-width: 85%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .features__item .txt {
    grid-template-columns: 15% 1fr;
    max-width: 90%;
    gap: 10px;
    margin: auto;
  }
}
.features__item .txt span {
  display: block;
  font-size: 3.4rem;
  writing-mode: vertical-rl;
  letter-spacing: 14px;
  margin: auto;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .features__item .txt span {
    font-size: 2rem;
  }
}
.features__item .txt p {
  line-height: 2;
}
.features__item:nth-of-type(even) {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .features__item:nth-of-type(even) {
    margin: auto;
    margin-bottom: 3rem;
  }
}
.features__item:nth-of-type(even) .txt {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .features__item:nth-of-type(even) .txt {
    margin: auto;
  }
}
.features__item:nth-of-type(2) {
  margin-top: -12rem;
}
@media screen and (max-width: 767px) {
  .features__item:nth-of-type(2) {
    margin-top: 0;
  }
}
.features__item:nth-of-type(3) {
  margin-top: -22rem;
}
@media screen and (max-width: 767px) {
  .features__item:nth-of-type(3) {
    margin-top: 0;
  }
}
.features__item:nth-of-type(4) {
  margin-top: -24rem;
}
@media screen and (max-width: 767px) {
  .features__item:nth-of-type(4) {
    margin-top: 0;
  }
}

.vision__txt {
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 800px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .vision__txt {
    padding-top: 4rem;
  }
}
.vision__txt h2 {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vision__txt h2 {
    font-size: 1.2rem;
    max-width: 80%;
    margin: auto;
    margin-bottom: 3rem;
  }
}
.vision__txt h2::before {
  content: "";
  display: block;
  border-top: 1px solid #999;
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  z-index: 0;
}
.vision__txt h2 span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}
.vision__txt p {
  font-size: 1.1rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .vision__txt p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.item_info {
  background-image: url(../img/bg_beige.png);
  padding-top: 140px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .item_info {
    padding-top: 3rem;
  }
}
.item_info__col {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ccc;
}
.item_info__col .info-row {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: stretch;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .item_info__col .info-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.item_info__col .info-row .img {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .item_info__col .info-row .img img {
    max-width: 40%;
  }
}
.item_info__col .info-row .txt {
  width: 100%;
  padding-top: 2rem;
}
.item_info__col .info-row .txt h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .item_info__col .info-row .txt h2 {
    font-size: 1.6rem;
  }
}
.item_info__col .info-row .txt h2 span {
  font-size: 1rem;
}
.item_info__col .info-row .txt p {
  margin-bottom: 3rem;
  line-height: 2;
}
.item_info__col .info-row .txt .btn_grp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .item_info__col .info-row .txt .btn_grp {
    grid-template-columns: 1fr;
  }
}
.item_info__col .info-row .txt .btn_grp a {
  width: 100%;
  border: 1px solid #999;
  padding: 1.5rem 0.2rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
.item_info__col .info-row .txt .btn_grp a:hover {
  color: #fff;
  background-color: #222;
}
@media screen and (max-width: 767px) {
  .item_info__col .info-row .txt .btn_grp a br {
    display: none;
  }
}
.item_info__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .item_info__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.item_info__popup {
  background-color: #fff;
  padding: 2rem;
  overflow: auto;
}
.item_info__popup h2 {
  font-size: 1.3rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .item_info__popup h2 {
    font-size: 1.1rem;
  }
}
.item_info__popup h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .item_info__popup h3 {
    font-size: 1rem;
  }
}
.item_info__popup p {
  margin-bottom: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .item_info__popup p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}
.item_info__popup a {
  text-decoration: underline;
  color: #0b2086;
}

.items {
  background-image: url(../img/bg_beige.png);
}
.items .inner {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .items .inner {
    padding: 2rem 0;
  }
}
.items h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .items h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.items ul {
  list-style: none;
}
.items ul li {
  border: 1px solid #ccc;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .items ul li {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.items ul li.items-row {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .items ul li.items-row {
    gap: 20px;
  }
}
.items ul li.items-row .txt {
  width: 100%;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .items ul li.items-row .txt {
    padding-top: 0rem;
  }
}
.items ul li.items-row .txt h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .items ul li.items-row .txt h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.items ul li.items-row .txt p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .items ul li.items-row .txt p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.items ul li.items-row .txt .btn_grp {
  width: 100%;
  text-align: right;
}
.items ul li.items-row .txt .btn_grp a {
  font-size: 0.9rem;
  background-color: #222;
  color: #fff;
  padding: 0.5rem 2rem;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .items ul li.items-row .txt .btn_grp a {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}