@charset "UTF-8";
/*==============================================================

	1. base

================================================================*/
html,
body,
a,
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: inherit;
  font-size: 100%;
  text-align: left;
  line-height: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  background: white;
  line-height: 1;
  color: black;
}

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

ul {
  list-style: none;
}

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

form label,
form button {
  cursor: pointer;
}

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

video {
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  border: none;
}

blockquote,
q {
  quotes: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

/*==============================================================

	2. common

================================================================*/
/*--------------------------------------------------------------
	■A.文字
--------------------------------------------------------------*/
body {
  background-color: #fff;
  margin: 0px auto;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2A313C;
  line-height: 1.6;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 811px) {
  body {
    background-image: url("../images/common/bg_blue.png");
    background-size: 742.5px 720px;
    background-position: right 80px top 120px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1401px) {
  body {
    background-position: right 120px top 120px;
  }
}
body.stop {
  overflow: hidden;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/*--------------------------------------------------------------
	■B.リンク
--------------------------------------------------------------*/
a {
  color: #2A313C;
  outline: none;
  border-style: none;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
@media screen and (min-width: 811px) {
  a:hover {
    color: #06AE95;
  }
}

/*--------------------------------------------------------------
	■C.共通定義
--------------------------------------------------------------*/
.container {
  position: relative;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 811px) {
  .container {
    padding: 0 80px;
  }
}
@media screen and (max-width: 810px) and (min-width: 641px) {
  .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}
.container.-sm {
  max-width: 960px;
}

@media screen and (min-width: 811px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 810px) and (min-width: 641px) {
  .tb_none {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .sp_none {
    display: none !important;
  }
}
.serif {
  font-family: "Noto Serif JP", serif;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.fw-700 {
  font-weight: 700;
}

.color-gray {
  color: #F3F4F8;
}
.color-white {
  color: #fff;
}
.color-main {
  color: #06AE95;
}

.bg-gray {
  background-color: #F3F4F8;
}
.bg-white {
  background-color: #fff;
}
.bg-main {
  background-color: #06AE95;
}

@media screen and (min-width: 641px) {
  .section {
    padding: 130px 0 110px;
  }
}
@media screen and (max-width: 640px) {
  .section {
    padding: 80px 0 60px;
  }
}

.gmap {
  height: 0;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 641px) {
  .gmap {
    padding-bottom: 43.5%;
  }
}
@media screen and (max-width: 640px) {
  .gmap {
    padding-bottom: 56.25%;
  }
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* タイトル */
.ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #06AE95;
}
@media screen and (min-width: 641px) {
  .ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 640px) {
  .ttl {
    font-size: 24px;
  }
}
.ttl span {
  display: block;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #BDBDBD;
}
@media screen and (min-width: 641px) {
  .ttl span {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .ttl span {
    font-size: 16px;
  }
}

.ttl-line {
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #06AE95;
  border-bottom: 2px solid #BDBDBD;
}
@media screen and (min-width: 641px) {
  .ttl-line {
    margin-top: 45px;
    padding-left: 54px;
    padding-bottom: 10px;
    font-size: 33px;
  }
}
@media screen and (max-width: 640px) {
  .ttl-line {
    margin-top: 25px;
    padding-left: 24px;
    padding-bottom: 5px;
    font-size: 24px;
  }
}

.ttl-num {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  color: #06AE95;
}
@media screen and (min-width: 641px) {
  .ttl-num {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .ttl-num {
    font-size: 24px;
  }
}
.ttl-num_sm {
  display: block;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .ttl-num_sm {
    font-size: 23px;
  }
}
@media screen and (max-width: 640px) {
  .ttl-num_sm {
    font-size: 16px;
  }
}
.ttl-num_md {
  letter-spacing: 0.15em;
}
@media screen and (min-width: 641px) {
  .ttl-num_md {
    font-size: 60px;
  }
}
@media screen and (max-width: 640px) {
  .ttl-num_md {
    font-size: 44px;
  }
}
.ttl-num_lg {
  display: inline-block;
  margin-right: 0.05em;
}
@media screen and (min-width: 641px) {
  .ttl-num_lg {
    font-size: 88px;
  }
}
@media screen and (max-width: 640px) {
  .ttl-num_lg {
    font-size: 58px;
  }
}

/* ボタン */
.btn {
  display: flex;
  width: 200px;
  height: 48px;
  justify-content: center;
  align-items: center;
  background-color: #06AE95;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #06AE95;
}
.btn .icon {
  margin-right: 9px;
}
.btn .icon.main {
  display: none;
}
.btn .icon.white {
  display: block;
}
.btn:hover {
  color: #06AE95;
  opacity: 1;
  background-color: #fff;
}
.btn:hover .icon.main {
  display: block;
}
.btn:hover .icon.white {
  display: none;
}
.btn-white {
  display: flex;
  width: 200px;
  height: 48px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #06AE95;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #06AE95;
}
.btn-white:hover {
  color: #fff;
  opacity: 1;
  background-color: #06AE95;
}
.btn-border {
  display: flex;
  width: 200px;
  height: 48px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #06AE95;
  font-size: 16px;
  font-weight: 700;
  border-radius: 24px;
  border: 2px solid #06AE95;
}
.btn-border:hover {
  color: #fff;
  opacity: 1;
  background-color: #06AE95;
}
.btn-link {
  display: flex;
  align-items: center;
  position: relative;
}
.btn-link span {
  font-weight: 400;
  font-size: 16px;
  color: #06AE95;
}
.btn-link .icon {
  margin-right: 6px;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  padding: 20px 10px;
  color: #06AE95;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-arrow-gray {
  background: #F3F4F8;
  border: 2px solid #F3F4F8;
}
@media screen and (min-width: 641px) {
  .btn-arrow {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .btn-arrow {
    width: 280px;
    margin: 0 auto;
    font-size: 16px;
  }
}
.btn-arrow .arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: rgba(6, 174, 149, 0.2);
  transform: translateY(-50%);
  border-radius: 5px;
}
.btn-arrow .arrow img {
  width: 16px;
  height: 15px;
}
.btn-arrow:hover {
  color: #fff;
  background: #06AE95;
  border-color: #06AE95;
}
.btn-arrow:hover .arrow {
  background: #fff;
}

/* 2カラム */
.col2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 810px) {
  .col2 {
    flex-direction: column;
    gap: 15px;
  }
}
.col2_img {
  width: 48.4%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 810px) {
  .col2_img {
    width: 100%;
  }
}
.col2_cont {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 810px) {
  .col2_cont {
    order: 2;
  }
}
.col2_num {
  display: block;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #06AE95;
}
@media screen and (min-width: 641px) {
  .col2_num {
    font-size: 33px;
  }
}
@media screen and (max-width: 1080px) {
  .col2_num {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .col2_num {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.col2_ttl {
  margin-bottom: 50px;
  font-weight: 700;
  color: #06AE95;
}
@media screen and (min-width: 641px) {
  .col2_ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .col2_ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .col2_ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.col2_txt {
  line-height: 2.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 641px) {
  .col2_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .col2_txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.col2_btn {
  margin-top: auto;
  margin-bottom: 22px;
}
@media screen and (max-width: 640px) {
  .col2_btn {
    margin-top: 20px;
  }
}

/* 3カラム */
.col3 {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .col3 {
    flex-wrap: wrap;
  }
}
.col3 li {
  padding: 40px 20px;
}
@media screen and (min-width: 811px) {
  .col3 li {
    width: calc((100% - 48px) / 3);
    margin: 0 12px 24px;
  }
}
@media screen and (max-width: 1080px) {
  .col3 li {
    width: 46%;
  }
}
@media screen and (max-width: 810px) {
  .col3 li {
    width: 44%;
  }
}
@media screen and (max-width: 640px) {
  .col3 li {
    width: 100%;
    padding: 20px 15px 30px;
  }
}
.col3_img {
  width: 35%;
  margin: 0 auto 10px;
}
.col3_ttl {
  font-weight: 700;
  text-align: center;
  color: #06AE95;
}
@media screen and (min-width: 641px) {
  .col3_ttl {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1080px) {
  .col3_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .col3_ttl {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.col3_txt {
  line-height: 2.2;
}
@media screen and (min-width: 641px) {
  .col3_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .col3_txt {
    font-size: 16px;
  }
}

/* 2グリッド */
.grid2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 811px) {
  .grid2 {
    gap: 30px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 810px) {
  .grid2 {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
}
.grid2_item {
  display: flex;
  border-radius: 10px;
}
@media screen and (min-width: 811px) {
  .grid2_item {
    width: calc(50% - 15px);
    padding: 25px 35px;
  }
}
@media screen and (max-width: 810px) {
  .grid2_item {
    width: 100%;
    padding: 20px 15px;
  }
}
.grid2_num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #06AE95;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border-right: 1px solid #2A313C;
}
@media screen and (min-width: 1081px) {
  .grid2_num {
    padding-right: 30px;
    margin-right: 30px;
    font-size: 71px;
  }
}
@media screen and (max-width: 1080px) {
  .grid2_num {
    padding-right: 15px;
    margin-right: 15px;
    font-size: 60px;
  }
}
@media screen and (max-width: 640px) {
  .grid2_num {
    font-size: 40px;
  }
}
.grid2_num span {
  display: block;
}
@media screen and (min-width: 641px) {
  .grid2_num span {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .grid2_num span {
    margin-bottom: 6px;
    font-size: 14px;
  }
}
.grid2_cont {
  display: flex;
  align-items: center;
}
.grid2_txt {
  letter-spacing: 0.05em;
  line-height: 2.3;
}
@media screen and (min-width: 641px) {
  .grid2_txt {
    font-size: 17px;
  }
}
@media screen and (max-width: 640px) {
  .grid2_txt {
    font-size: 15px;
  }
}

/* 2カラム（テキスト・画像横並び） */
.split {
  padding: 143px 0;
}
@media screen and (max-width: 810px) {
  .split {
    padding: 100px 0;
  }
}
@media screen and (max-width: 640px) {
  .split {
    padding: 80px 0;
  }
}
.split .ttl {
  margin-bottom: 60px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .split .ttl {
    margin-bottom: 10px;
  }
}
.split .ttl span {
  text-align: left;
}
.split.bg-main {
  color: #fff;
}
.split.bg-main .ttl,
.split.bg-main .ttl span {
  color: #fff;
}
.split.bg-main .btn-arrow {
  border: 2px solid #fff;
}
.split.bg-main .btn-arrow:hover {
  background: #06AE95;
}

.split-sm {
  padding-top: 0;
  padding-bottom: 150px;
}
@media screen and (max-width: 810px) {
  .split-sm {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 640px) {
  .split-sm {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1081px) {
  .split-sm .col2 {
    gap: 100px;
  }
}
@media screen and (max-width: 1080px) {
  .split-sm .col2 {
    gap: 60px;
  }
}
@media screen and (max-width: 810px) {
  .split-sm .col2 {
    gap: 40px;
  }
}
.split-sm .col2_txt {
  line-height: 3;
}
@media screen and (min-width: 1081px) {
  .split-sm .col2_txt {
    font-size: 23px;
  }
}
@media screen and (max-width: 1080px) {
  .split-sm .col2_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .split-sm .col2_txt {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (min-width: 811px) {
  .split-sm .col2_cont {
    width: 47.6%;
    flex: none;
  }
}
@media screen and (min-width: 811px) {
  .split-sm .col2_img {
    width: 46.7%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 810px) {
  .split-sm .col2_img {
    margin-top: 0;
  }
}

/* 画像の背景色 */
.has-color {
  position: relative;
  border-radius: 0;
  overflow: unset;
  z-index: 1;
}
@media screen and (min-width: 811px) {
  .has-color {
    margin-bottom: 6.8%;
    margin-right: 6%;
  }
}
.has-color::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F3F4F8;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (min-width: 811px) {
  .has-color::after {
    top: 15.8%;
    left: 17.8%;
  }
}
@media screen and (max-width: 810px) {
  .has-color::after {
    top: 20px;
    left: 20px;
  }
}
.has-color > div {
  border-radius: 10px;
  overflow: hidden;
}

/* リスト（アイコン付き） */
.icon-list {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.icon-list li {
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-radius: 10px;
  color: #06AE95;
}
.icon-list li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1081px) {
  .icon-list li {
    padding: 30px 30px 30px 100px;
  }
}
@media screen and (min-width: 811px) {
  .icon-list li {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 1080px) {
  .icon-list li {
    padding: 30px 30px 30px 60px;
  }
}
@media screen and (max-width: 810px) {
  .icon-list li {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 811px) {
  .icon-list_img {
    width: 83px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 810px) {
  .icon-list_img {
    width: 60px;
    margin-right: 20px;
  }
}
.icon-list_txt {
  flex: 1;
}
@media screen and (min-width: 811px) {
  .icon-list_txt {
    font-size: 23px;
  }
}
@media screen and (max-width: 810px) {
  .icon-list_txt {
    font-size: 16px;
  }
}

/* よくある質問 */
@media screen and (min-width: 811px) {
  .faq {
    padding: 105px 0 160px;
  }
}
@media screen and (max-width: 810px) {
  .faq {
    padding: 85px 0 120px;
  }
}
.faq_list {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 811px) {
  .faq_list {
    margin-top: 85px;
  }
}
@media screen and (max-width: 810px) {
  .faq_list {
    margin-top: 65px;
  }
}
.faq_row:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1081px) {
  .faq_row {
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 1080px) {
  .faq_row {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 810px) {
  .faq_row {
    margin-bottom: 60px;
  }
}
.faq dt,
.faq dd {
  letter-spacing: 0;
}
@media screen and (min-width: 811px) {
  .faq dt,
  .faq dd {
    padding-left: 13px;
  }
}
.faq dt {
  font-weight: 500;
  border-bottom: 1px solid #06AE95;
}
@media screen and (min-width: 811px) {
  .faq dt {
    font-size: 22px;
    padding-bottom: 22px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 810px) {
  .faq dt {
    display: flex;
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 811px) {
  .faq dt span {
    margin-right: 1em;
  }
}
@media screen and (max-width: 810px) {
  .faq dt span {
    margin-right: 0.5em;
  }
}
@media screen and (min-width: 811px) {
  .faq dd {
    font-size: 19px;
  }
}
@media screen and (max-width: 810px) {
  .faq dd {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
	■D.formパーツ補正
--------------------------------------------------------------*/
input {
  font-family: "Noto Sans JP", sans-serif;
}

input[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
  width: auto;
  height: auto;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  width: auto;
  height: auto;
}

/*==============================================================

	3. layout

================================================================*/
/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
/* .hd */
.hd {
  position: fixed;
  z-index: 97;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 810px) {
  .hd.sticky {
    border-bottom: 1px solid #BDBDBD;
  }
}
@media screen and (min-width: 811px) {
  .hd .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 810px) and (min-width: 641px) {
  .hd .container {
    padding: 0 20px;
  }
}
.hd_wrapper {
  padding: 20px 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.hd_wrapper_logo {
  color: #06AE95;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 811px) {
  .hd_wrapper_logo {
    font-size: 32px;
  }
}
@media screen and (max-width: 810px) {
  .hd_wrapper_logo {
    font-size: 24px;
  }
}
.hd_wrapper_logo a {
  color: #06AE95;
  display: block;
}
.hd_wrapper_logo a:hover {
  color: #2A313C;
}
.hd_wrapper_logo img {
  width: auto;
  display: block;
}
@media screen and (min-width: 811px) {
  .hd_wrapper_logo img {
    height: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .hd_wrapper_logo img {
    height: 40px;
  }
}
@media screen and (max-width: 810px) {
  .hd_wrapper_logo img {
    height: 36px;
  }
}
@media screen and (max-width: 640px) {
  .hd_wrapper_logo img {
    height: 28px;
  }
}
.hd_wrapper_link {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 810px) {
  .hd_wrapper_link {
    display: none;
  }
}
.hd_wrapper_lang {
  margin-right: 26px;
}
@media screen and (max-width: 1080px) {
  .hd_wrapper_lang {
    margin-right: 14px;
  }
}
.hd_wrapper_tel {
  margin-right: 6px;
}
.hd_wrapper_btn {
  display: flex;
}
@media screen and (max-width: 1080px) {
  .hd_wrapper_btn {
    flex-direction: column;
  }
}
@media screen and (max-width: 810px) {
  .hd_wrapper_btn {
    display: none;
  }
}
.hd_wrapper_btn li {
  margin-left: 20px;
}
@media screen and (max-width: 1080px) {
  .hd_wrapper_btn li {
    margin-left: 10px;
  }
  .hd_wrapper_btn li:first-of-type {
    margin-bottom: 5px;
  }
}
.hd_wrapper_btn li .btn {
  height: 28px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 143px;
  padding: 6px 18px;
  font-size: 13px;
}
@media screen and (max-width: 1080px) {
  .hd_wrapper_btn li .btn {
    width: auto;
  }
}
.hd_nav_pc {
  background-color: #06AE95;
}
.hd_nav_pc .container {
  max-width: 805px;
}
@media screen and (max-width: 810px) {
  .hd_nav_pc {
    display: none;
  }
}
.hd_nav_pc ul {
  display: flex;
  width: 100%;
}
.hd_nav_pc ul li {
  width: 100%;
  flex-shrink: 1;
}
.hd_nav_pc ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0 10px;
  color: #fff;
}
.hd_nav_pc ul li a:hover {
  opacity: 0.7;
}
.hd_nav_pc ul li a.active {
  background-color: #06AE95;
  color: #fff;
}
@media screen and (min-width: 811px) {
  .hd_nav_sp {
    display: none;
  }
}
.hd_nav_sp_btn {
  position: fixed;
  z-index: 98;
  top: 22px;
}
@media screen and (min-width: 641px) {
  .hd_nav_sp_btn {
    right: 40px;
  }
}
@media screen and (max-width: 640px) {
  .hd_nav_sp_btn {
    right: 20px;
  }
}
.hd_nav_sp_main {
  overflow: auto;
  background-color: #fff;
  width: 100%;
  height: calc(100lvh - 45px);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 45px;
}
.hd_nav_sp_main_list {
  width: 80%;
  margin: 32px auto 0;
  border-top: 1px solid #BDBDBD;
}
.hd_nav_sp_main_list > li {
  border-bottom: 1px solid #BDBDBD;
}
.hd_nav_sp_main_list > li > a {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hd_nav_sp_main_list_inner {
  padding-bottom: 16px;
}
.hd_nav_sp_main_list_inner > li a {
  display: block;
  padding: 4px 0;
}
.hd_nav_sp_main_contact {
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  width: 80%;
}
.hd_nav_sp_main_contact li {
  padding: 0 6px;
}
@media screen and (max-width: 640px) {
  .hd_nav_sp_main_contact .btn {
    font-size: 14px;
    width: 150px;
  }
  .hd_nav_sp_main_contact .btn .icon {
    margin-right: 5px;
  }
}
.hd .tel {
  font-size: 22px;
  font-weight: 700;
  color: #06AE95;
  letter-spacing: 0;
  line-height: 1.1;
}
@media screen and (max-width: 810px) {
  .hd .tel {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 32px auto 0;
  }
}
.hd .lang {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #06AE95;
}
@media screen and (max-width: 810px) {
  .hd .lang {
    margin: 32px auto 0;
  }
}
.hd .lang a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #06AE95;
}
.hd .lang a:first-of-type {
  color: #FFF;
  background: #06AE95;
  border-right: 1px solid #06AE95;
}
.english_company_profile .lang a:first-of-type {
  color: #06AE95;
  background: #FFF;
}

.english_company_profile .lang a:last-of-type {
  color: #FFF;
  background: #06AE95;
}

/* ハンバーガーメニュー */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.2s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 24px;
  height: 20px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2A313C;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span {
  background-color: #2A313C;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.6s forwards;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/* パンくず */
.breadcrumb {
  padding-top: 30px;
}
@media screen and (min-width: 811px) {
  .breadcrumb {
    font-size: 13px;
  }
}
@media screen and (max-width: 810px) {
  .breadcrumb {
    font-size: 12px;
  }
}
.breadcrumb_list {
  display: flex;
}
.breadcrumb_list li {
  display: flex;
  align-items: center;
}
.breadcrumb_list li::before {
  content: "＞";
  display: block;
  margin: 0 1em;
}
.breadcrumb_list li:nth-child(1)::before {
  display: none;
}

/* アイキャッチ */
.eyecatch {
  width: 100%;
}
@media screen and (min-width: 811px) {
  .eyecatch {
    height: 320px;
  }
}
@media screen and (max-width: 810px) {
  .eyecatch {
    height: 200px;
  }
}
.eyecatch img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
.ft {
  color: #2A313C;
}
@media screen and (min-width: 811px) {
  .ft {
    padding-top: 200px;
  }
}
@media screen and (max-width: 810px) {
  .ft {
    padding-top: 80px;
  }
}
@media screen and (min-width: 811px) {
  .ft_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 810px) {
  .ft_wrapper {
    padding-bottom: 70px;
  }
}
.ft_btn li {
  margin: 10px 0;
}
@media screen and (min-width: 811px) {
  .ft_btn li:nth-child(1) {
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 810px) {
  .ft_btn li:nth-child(1) {
    margin: 20px 0 10px 0;
  }
}
@media screen and (min-width: 811px) {
  .ft_info {
    margin-right: 80px;
  }
}
@media screen and (max-width: 810px) {
  .ft_info {
    margin-right: 0;
  }
}
.ft_logo {
  font-weight: 700;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .ft_logo {
    font-size: 32px;
  }
}
@media screen and (max-width: 810px) {
  .ft_logo {
    font-size: 24px;
  }
}
.ft_logo a {
  color: #06AE95;
  display: block;
}
.ft_logo a img {
  width: auto;
  display: block;
}
@media screen and (min-width: 811px) {
  .ft_logo a img {
    height: 60px;
  }
}
@media screen and (max-width: 810px) {
  .ft_logo a img {
    height: 56px;
  }
}
@media screen and (max-width: 640px) {
  .ft_logo a img {
    height: 40px;
  }
}
.ft_name, .ft_address, .ft_tel {
  padding-left: 15px;
}
@media screen and (min-width: 811px) {
  .ft_name {
    margin-top: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .ft_name {
    margin-top: 15px;
    font-size: 16px;
  }
}
@media screen and (min-width: 811px) {
  .ft_address, .ft_tel {
    margin-top: 8px;
    font-size: 15px;
  }
}
@media screen and (max-width: 810px) {
  .ft_address, .ft_tel {
    margin-top: 5px;
    font-size: 13px;
  }
}
.ft_mark {
  display: flex;
  padding-left: 15px;
}
@media screen and (min-width: 811px) {
  .ft_mark {
    margin-top: 45px;
  }
}
@media screen and (max-width: 810px) {
  .ft_mark {
    margin-top: 20px;
  }
}
.ft_mark > div {
  width: 60px;
}
.ft_mark > div:nth-of-type(2) {
  width: 65px;
  margin-top: 8px;
}
@media screen and (min-width: 811px) {
  .ft_mark > div {
    margin-right: 23px;
  }
}
@media screen and (max-width: 810px) {
  .ft_mark > div {
    margin-right: 15px;
  }
}
.ft_nav {
  display: flex;
}
@media screen and (min-width: 811px) {
  .ft_nav {
    margin-top: 70px;
  }
}
@media screen and (max-width: 810px) {
  .ft_nav {
    margin-top: 40px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 811px) {
  .ft_nav > li {
    margin-left: 90px;
  }
}
.ft_nav > li:first-of-type {
  margin-left: 0;
}
.ft_nav_inner .ttl {
  font-weight: 500;
}
@media screen and (min-width: 811px) {
  .ft_nav_inner .ttl {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .ft_nav_inner .ttl {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.ft_nav_inner .ttl a {
  pointer-events: none;
}
.ft_nav_inner > li:not(.ttl) a {
  margin: 18px 0;
  color: #7F7F7F;
  font-size: 15px;
}
.ft_nav_inner > li a {
  display: flex;
  align-items: center;
}
.ft_nav_inner > li a img {
  margin-left: 4px;
}
.ft_nav_inner.ft_nav_right .ttl a {
  pointer-events: visible;
}
@media screen and (min-width: 811px) {
  .ft_nav_inner.ft_nav_right .ttl a {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 810px) {
  .ft_nav_inner.ft_nav_right .ttl a {
    margin-bottom: 15px;
  }
}
.ft_note {
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  font-size: 12px;
}
.ft_copy {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  color: #7F7F7F;
  border-top: 1px solid #666666;
}
@media screen and (min-width: 811px) {
  .ft_copy {
    padding: 35px 0 45px;
  }
}
@media screen and (max-width: 810px) {
  .ft_copy {
    padding: 20px 0;
  }
}

.conversion {
  background-image: url("../images/common/conversion_bg.jpg");
  background-size: cover;
}
@media screen and (min-width: 811px) {
  .conversion {
    padding: 80px 0;
  }
}
@media screen and (max-width: 810px) {
  .conversion {
    padding: 60px 0;
  }
}
.conversion .ttl {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #06AE95;
}
@media screen and (max-width: 640px) {
  .conversion .ttl {
    font-size: 32px;
  }
}
.conversion .ttl span {
  font-family: "Noto Sans JP", sans-serif;
  color: #06AE95;
}
.conversion_inner {
  background: #fff;
}
@media screen and (min-width: 811px) {
  .conversion_inner {
    padding: 60px 10px;
  }
}
@media screen and (max-width: 810px) {
  .conversion_inner {
    padding: 40px 10px;
  }
}
@media screen and (max-width: 640px) {
  .conversion_inner {
    padding: 40px 20px;
  }
}
.conversion_inner > p {
  font-weight: 700;
  text-align: center;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .conversion_inner > p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 810px) {
  .conversion_inner > p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.conversion_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .conversion_tel {
    font-size: 52px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 810px) {
  .conversion_tel {
    font-size: 36px;
    margin-bottom: -20px;
  }
}
@media screen and (min-width: 811px) {
  .conversion_tel img {
    width: 37px;
    margin-top: 10px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 810px) {
  .conversion_tel img {
    width: 28px;
    margin-top: 5px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .conversion_tel img {
    width: 24px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 641px) {
  .conversion_btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .conversion_btn {
    margin-top: 40px;
  }
}
@media screen and (min-width: 641px) {
  .conversion_btn li {
    max-width: 50%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 640px) {
  .conversion_btn li {
    margin-top: 20px;
  }
}
.conversion_btn .btn-arrow {
  width: 420px;
  max-width: 100%;
  font-size: 20px;
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1080px) {
  .conversion_btn .btn-arrow {
    font-size: 18px;
    padding-right: 50px;
  }
}
.conversion_btn .btn-arrow .icon {
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .conversion_btn .btn-arrow .icon {
    width: 24px;
    margin-right: 15px;
  }
}
.conversion_btn .btn-arrow .icon.main {
  display: none;
}
.conversion_btn .btn-arrow .icon.white {
  display: block;
}
.conversion_btn .btn-arrow-main {
  color: #fff;
  background: #06AE95;
}
.conversion_btn .btn-arrow-main .arrow {
  background: #fff;
}
.conversion_btn .btn-arrow-main:hover {
  color: #06AE95;
  background: #F3F4F8;
}
.conversion_btn .btn-arrow-main:hover .icon.main {
  display: block;
}
.conversion_btn .btn-arrow-main:hover .icon.white {
  display: none;
}
.conversion_btn .btn-arrow-main:hover .arrow {
  background: rgba(6, 174, 149, 0.2);
}
@media screen and (max-width: 640px) {
  .conversion_btn .btn-arrow-main .icon {
    width: 18px;
  }
}

/*--------------------------------------------------------------
	index
--------------------------------------------------------------*/
.index h2 {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 641px) {
  .index h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 640px) {
  .index h2 {
    font-size: 24px;
  }
}
.index .hover {
  display: block;
}
.index .hover_wrapper {
  position: relative;
  border: 1px solid #BDBDBD;
  height: 264px;
  overflow: hidden;
}
.index .hover_ttl {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 700;
  height: 64px;
  transition: all 0.3s ease 0s;
}
.index .hover_txt {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.index .hover_img {
  position: absolute;
  z-index: 1;
  bottom: -64px;
  left: 0;
  height: 264px;
  width: 100%;
  background-color: #000;
  transition: all 0.3s ease 0s;
}
.index .hover_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.index .hover:hover .hover_ttl {
  color: #fff;
}
.index .hover:hover .hover_txt {
  opacity: 1;
}
.index .hover:hover .hover_img {
  bottom: 0;
}
.index .hover:hover .hover_img img {
  opacity: 0.5;
}
.index .thumb_wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.index .thumb_ttl {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 0 20px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.index .thumb_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 200px;
  background-color: #06AE95;
}
.index .thumb_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.index .thumb_img::after {
  content: " ";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, rgba(35, 46, 152, 0.5), rgba(35, 46, 152, 0));
}
.index .thumb:hover .thumb_img img {
  opacity: 0.8;
}
.index .mt0 {
  margin-top: 0 !important;
}

/* ファーストビュー */
.index .fv_wrapper {
  position: relative;
}
.index .fv_txt {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 16.6%;
  color: #2A313C;
}
.index .fv_txt h1,
.index .fv_txt p {
  width: 63%;
  max-width: 550px;
  margin-left: auto;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .index .fv_txt h1,
  .index .fv_txt p {
    width: 65%;
  }
}
@media screen and (max-width: 810px) {
  .index .fv_txt h1,
  .index .fv_txt p {
    max-width: 400px;
  }
}
@media screen and (max-width: 640px) {
  .index .fv_txt h1,
  .index .fv_txt p {
    width: 73%;
    max-width: 280px;
  }
}
.index .fv_txt h1 {
  letter-spacing: 0.07em;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .index .fv_txt h1 {
    font-size: 59px;
  }
}
@media screen and (max-width: 1080px) {
  .index .fv_txt h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 810px) {
  .index .fv_txt h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .index .fv_txt h1 {
    font-size: 28px;
  }
}
.index .fv_txt p {
  margin-top: 44px;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 641px) {
  .index .fv_txt p {
    font-size: 26px;
  }
}
@media screen and (max-width: 1080px) {
  .index .fv_txt p {
    font-size: 22px;
  }
}
@media screen and (max-width: 810px) {
  .index .fv_txt p {
    margin-top: 28px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .index .fv_txt p {
    margin-top: 24px;
    line-height: 2;
    font-size: 14px;
  }
}
.index .fv_txt_btn {
  margin-top: 20px;
}
@media screen and (min-width: 641px) {
  .index .fv_txt_btn {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 641px) {
  .index .fv_txt_btn li {
    padding: 0 10px;
  }
}
@media screen and (max-width: 640px) {
  .index .fv_txt_btn li {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
}
.index .fv_img {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 811px) {
  .index .fv_img {
    max-height: 854px;
  }
}
@media screen and (max-width: 810px) {
  .index .fv_img {
    max-height: 600px;
  }
}
.index .fv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* イントロ */
@media screen and (min-width: 811px) {
  .index .intro {
    padding: 70px 0;
  }
}
@media screen and (max-width: 810px) {
  .index .intro {
    padding: 50px 0;
  }
}
.index .intro_img {
  margin-bottom: 24px;
}
.index .intro h2 {
  text-align: center;
  color: #06AE95;
}
@media screen and (min-width: 641px) {
  .index .intro h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1080px) {
  .index .intro h2 {
    font-size: 44px;
  }
}
@media screen and (max-width: 640px) {
  .index .intro h2 {
    font-size: 22px;
  }
}
.index .intro p {
  margin-bottom: 18px;
  text-align: center;
  line-height: 2.8;
}
@media screen and (min-width: 641px) {
  .index .intro p {
    margin-top: 56px;
  }
}
@media screen and (max-width: 1080px) {
  .index .intro p {
    margin-top: 36px;
  }
}
@media screen and (max-width: 640px) {
  .index .intro p {
    margin-top: 20px;
    line-height: 2.2;
  }
}
.index .intro .btn-arrow {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  background: #06AE95;
}
@media screen and (max-width: 640px) {
  .index .intro .btn-arrow {
    padding: 20px 35px 20px 10px;
  }
}
.index .intro .btn-arrow .arrow {
  background: #fff;
}
.index .intro .btn-arrow:hover {
  color: #06AE95;
  background: #F3F4F8;
}
.index .intro .btn-arrow:hover .arrow {
  background: rgba(6, 174, 149, 0.2);
}

/* 強み */
@media screen and (min-width: 811px) {
  .index .strength {
    padding: 80px 0 140px;
  }
}
@media screen and (max-width: 810px) {
  .index .strength {
    padding: 60px 0 100px;
  }
}
.index .strength_list {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .index .strength_list {
    margin-top: 32px;
  }
}
.index .strength_list li {
  margin: 0 16px 24px;
  border-radius: 10px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1080px) {
  .index .strength_list li {
    margin: 0 12px 24px;
  }
}
.index .strength_img {
  width: 140px;
}
@media screen and (min-width: 641px) {
  .index .strength_img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .index .strength_img {
    margin-bottom: 15px;
  }
}

/* 投稿 */
@media screen and (min-width: 811px) {
  .index .post {
    padding: 113px 0;
  }
}
@media screen and (max-width: 810px) {
  .index .post {
    padding: 60px 0;
  }
}
.index .post_inner {
  margin-top: 45px;
  border-radius: 15px;
}
@media screen and (min-width: 811px) {
  .index .post_inner {
    padding: 96px 15px 80px;
  }
}
@media screen and (max-width: 810px) {
  .index .post_inner {
    padding: 40px 15px;
  }
}
.index .post_list {
  width: 85%;
  margin: 0 auto;
}
.index .post_list li {
  border-bottom: 1px solid #333333;
}
.index .post_list li a {
  padding: 20px;
}
@media screen and (min-width: 811px) {
  .index .post_list li a {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 810px) {
  .index .post_list li a {
    display: block;
  }
}
.index .post_list li a:hover {
  background-color: #fff;
}
.index .post_meta {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .index .post_meta {
    flex-shrink: 0;
  }
}
.index .post_meta_date {
  margin-right: 45px;
}
.index .post_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #06AE95;
  color: #06AE95;
  background-color: #fff;
  border-radius: 12px;
}
.index .post_ttl {
  font-size: 16px;
}
@media screen and (max-width: 810px) {
  .index .post_ttl {
    margin-top: 4px;
  }
}
.index .post_more {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 811px) {
  .index .post_more {
    margin-top: 75px;
  }
}
@media screen and (max-width: 810px) {
  .index .post_more {
    margin-top: 45px;
  }
}

/* できること */
@media screen and (min-width: 811px) {
  .can {
    padding: 120px 0;
  }
}
@media screen and (max-width: 810px) {
  .can {
    padding: 80px 0;
  }
}
.can_inner {
  display: flex;
}
@media screen and (max-width: 1080px) {
  .can_inner {
    flex-direction: column;
  }
}
.can_ttl {
  margin-right: 50px;
}
@media screen and (max-width: 1080px) {
  .can_ttl {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 810px) {
  .can_ttl {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 811px) {
  .can_ttl p {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .can_ttl p {
    font-size: 16px;
  }
}
.can .ttl {
  text-align: left;
}
@media screen and (min-width: 811px) {
  .can .ttl {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 810px) {
  .can .ttl {
    margin-bottom: 20px;
  }
}
.can .ttl span {
  text-align: left;
}
.can_list {
  flex: 1;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .can_list {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .can_list {
    font-size: 16px;
  }
}
.can_list li {
  position: relative;
}
@media screen and (min-width: 811px) {
  .can_list li {
    padding: 11px 0 11px 75px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 810px) {
  .can_list li {
    padding: 5px 0 0 50px;
    margin-bottom: 30px;
  }
}
.can_list li::before {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #06AE95;
  background: #fff;
}
@media screen and (min-width: 811px) {
  .can_list li::before {
    width: 54px;
    height: 54px;
    font-size: 31px;
  }
}
@media screen and (max-width: 810px) {
  .can_list li::before {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}
.can_list li:nth-of-type(2)::before {
  content: "2";
}
.can_list li:nth-of-type(3)::before {
  content: "3";
}
.can_list li:last-of-type {
  margin-bottom: 0;
}

/* バナー */
.index .banner.gray {
  background-color: #F3F4F8;
}
.index .banner_one {
  margin: -20px -10px 0;
}
.index .banner_one li {
  padding: 20px 10px 0;
  width: 100%;
}
.index .banner_two {
  margin: -20px -10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index .banner_two li {
  padding: 20px 10px 0;
}
@media screen and (min-width: 641px) {
  .index .banner_two li {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .index .banner_two li {
    width: 100%;
  }
}
.index .banner_three {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 811px) {
  .index .banner_three {
    margin-bottom: 113px;
  }
}
@media screen and (max-width: 810px) {
  .index .banner_three {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 811px) {
  .index .banner_three li {
    width: calc((100% - 56px) / 3);
  }
}
@media screen and (max-width: 810px) {
  .index .banner_three li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .index .banner_three li:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .index .banner_three li {
    width: 100%;
  }
}
.index .banner_three li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 40px 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 811px) {
  .index .banner_three li a {
    font-size: 24px;
  }
}
@media screen and (max-width: 810px) {
  .index .banner_three li a {
    font-size: 18px;
  }
}
.index .banner_three li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  transition: all 0.3s ease 0s;
}
.index .banner_three li:nth-of-type(1) a::before {
  background-image: url("../images/index/banner_01.jpg");
}
.index .banner_three li:nth-of-type(2) a::before {
  background-image: url("../images/index/banner_02.jpg");
}
.index .banner_three li:nth-of-type(3) a::before {
  background-image: url("../images/index/banner_03.jpg");
}
.index .banner_three li:hover a::before {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
	archive
--------------------------------------------------------------*/
@media screen and (min-width: 811px) {
  .archive {
    padding-top: 140px;
  }
}
@media screen and (max-width: 810px) {
  .archive {
    padding-top: 64px;
  }
}
.archive h1 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .archive h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .archive h1 {
    font-size: 24px;
  }
}

/* 投稿 */
@media screen and (min-width: 811px) {
  .archive .post {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .archive .post {
    padding: 40px 0 60px;
  }
}
.archive .post h1 {
  text-align: center;
}
.archive .post_selected {
  text-align: center;
}
.archive .post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}
.archive .post_category > li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.archive .post_category .ttl {
  color: #06AE95;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .archive .post_category .ttl {
    width: 100%;
    margin-bottom: 10px;
  }
}
.archive .post_category .link a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #06AE95;
  padding: 0 10px;
  color: #06AE95;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .archive .post_category .link a {
    font-size: 14px;
    height: 28px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 640px) {
  .archive .post_category .link a {
    font-size: 12px;
    height: 24px;
    border-radius: 12px;
  }
}
.archive .post_category .link a:hover {
  color: #fff;
  background-color: #06AE95;
}
.archive .post_category .link span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #06AE95;
  padding: 0 10px;
  color: #fff;
  background-color: #06AE95;
}
@media screen and (min-width: 641px) {
  .archive .post_category .link span {
    font-size: 14px;
    height: 28px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 640px) {
  .archive .post_category .link span {
    font-size: 12px;
    height: 24px;
    border-radius: 12px;
  }
}
.archive .post_list {
  margin-top: 30px;
  border-top: 1px solid #333333;
}
.archive .post_list li {
  border-bottom: 1px solid #333333;
}
.archive .post_list li a {
  padding: 20px 0;
}
@media screen and (min-width: 811px) {
  .archive .post_list li a {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 810px) {
  .archive .post_list li a {
    display: block;
  }
}
.archive .post_list li a:hover {
  background-color: #F3F4F8;
}
@media screen and (min-width: 641px) {
  .archive .post_thumb {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px 0;
  }
}
@media screen and (min-width: 811px) {
  .archive .post_thumb > li {
    width: 33.33%;
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 810px) {
  .archive .post_thumb > li {
    width: 50%;
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .archive .post_thumb > li {
    width: 100%;
    margin-top: 40px;
  }
}
.archive .post_thumb > li a {
  display: block;
  height: 100%;
}
.archive .post_thumb > li a:hover .inner_img img {
  transform: scale(1.1);
}
.archive .post_thumb .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}
.archive .post_thumb .inner_img {
  aspect-ratio: 4/3;
  overflow: hidden;
  text-align: center;
}
.archive .post_thumb .inner_img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease 0s;
}
.archive .post_thumb .inner_txt {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex: 1;
}
.archive .post_thumb .inner_ttl {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.archive .post_thumb .inner_info {
  margin-top: 0;
  font-size: 14px;
}
.archive .post_thumb .inner_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
}
.archive .post_thumb .inner_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #06AE95;
  color: #06AE95;
  background-color: #fff;
  border-radius: 12px;
}
.archive .post_meta {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .archive .post_meta {
    flex-shrink: 0;
  }
}
.archive .post_meta_date {
  font-size: 14px;
  color: #666666;
  margin-right: 10px;
}
.archive .post_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #06AE95;
  color: #06AE95;
  background-color: #fff;
  border-radius: 12px;
}
.archive .post_ttl {
  font-size: 16px;
}
@media screen and (max-width: 810px) {
  .archive .post_ttl {
    margin-top: 4px;
  }
}
.archive .post_pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .archive .post_pager {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .archive .post_pager {
    margin-top: 60px;
    justify-content: center;
  }
}
.archive .post_pager a,
.archive .post_pager span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.archive .post_pager a:hover {
  opacity: 1;
  color: #2A313C;
  background: #fff;
}
.archive .post_pager .page-numbers {
  font-weight: 500;
  font-size: 18px;
}
.archive .post_pager .page-numbers.current {
  color: #fff;
  background: #06AE95;
}
.archive .post_pager .page-numbers.current:hover {
  opacity: 0.7;
}

/* 製品一覧 */
@media screen and (min-width: 811px) {
  .archive .product {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .archive .product {
    padding: 40px 0 60px;
  }
}
.archive .product h1 {
  text-align: center;
}
.archive .product_wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 811px) {
  .archive .product_wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 811px) {
  .archive .product_side {
    width: 320px;
    flex-shrink: 0;
    margin-right: 60px;
  }
}
@media screen and (max-width: 810px) {
  .archive .product_side {
    margin-top: 60px;
  }
}
.archive .product_side_list {
  border: 1px solid #BDBDBD;
  padding: 0 0 20px;
}
.archive .product_side_list .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 24px;
  width: 100%;
  background-color: #06AE95;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 20px;
}
.archive .product_side_list .parent {
  font-weight: 700;
  font-size: 16px;
  padding: 0 20px;
  margin-top: 10px;
}
.archive .product_side_list .parent > a {
  display: flex;
  align-items: center;
}
.archive .product_side_list .parent > a::before {
  content: " ";
  display: block;
  background-image: url("../images/common/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
.archive .product_side_list .child li {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
}
@media screen and (min-width: 641px) {
  .archive .product_main_list {
    display: flex;
    flex-wrap: wrap;
    margin: -40px -20px 0;
  }
}
@media screen and (min-width: 641px) {
  .archive .product_main_list > li {
    width: 50%;
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .archive .product_main_list > li {
    width: 100%;
    margin-top: 40px;
  }
}
.archive .product_main_list > li a:hover .inner_img img {
  transform: scale(1.1);
}
.archive .product_main_list .inner {
  border: 1px solid #BDBDBD;
}
.archive .product_main_list .inner_img {
  overflow: hidden;
}
.archive .product_main_list .inner_img img {
  transition: all 0.3s ease 0s;
}
.archive .product_main_list .inner_txt {
  padding: 16px;
}
.archive .product_main_list .inner_ttl {
  font-weight: 700;
  font-size: 16px;
}
.archive .product_main_list .inner_info {
  margin-top: 0;
  font-size: 14px;
}
.archive .product_main_list .inner_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.archive .product_main_list .inner_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #06AE95;
  color: #06AE95;
  background-color: #fff;
  border-radius: 12px;
}
.archive .product_pager {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .archive .product_pager {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .archive .product_pager {
    margin-top: 40px;
    justify-content: center;
  }
}
.archive .product_pager .page-numbers {
  font-weight: 700;
  font-size: 20px;
  margin: 0 10px;
  color: #06AE95;
}
.archive .product_pager .page-numbers:hover {
  opacity: 1;
  color: #2A313C;
}
.archive .product_pager .page-numbers.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #06AE95;
  width: 52px;
  height: 52px;
  border-radius: 26px;
}
.archive .product_pager .page-numbers.prev:hover {
  background-color: #2A313C;
}
.archive .product_pager .page-numbers.next {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #06AE95;
  width: 52px;
  height: 52px;
  border-radius: 26px;
}
.archive .product_pager .page-numbers.next:hover {
  background-color: #2A313C;
}
.archive .product_pager .page-numbers.current {
  color: #06AE95;
  opacity: 0.5;
}
.archive .product_pager .page-numbers.current:hover {
  color: #06AE95;
}

/*--------------------------------------------------------------
	single
--------------------------------------------------------------*/
@media screen and (min-width: 811px) {
  .single {
    padding-top: 140px;
  }
}
@media screen and (max-width: 810px) {
  .single {
    padding-top: 64px;
  }
}
.single h1 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .single h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .single h1 {
    font-size: 30px;
  }
}

/* 投稿 */
@media screen and (min-width: 811px) {
  .single .content {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .content {
    padding: 40px 0 60px;
  }
}
.single .content_wrapper {
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.single .content_meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single .content_meta_date {
  font-size: 14px;
  color: #666666;
  margin-right: 10px;
}
.single .content_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #06AE95;
  color: #06AE95;
  background-color: #fff;
  border-radius: 12px;
}
.single .content_meta_cat:hover {
  color: #fff;
  background-color: #06AE95;
}
.single .content_inner {
  margin-top: 40px;
}
@media screen and (min-width: 811px) {
  .single .content_inner .group {
    margin-bottom: 195px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner .group {
    margin-bottom: 100px;
  }
}
.single .content_inner h2 {
  position: relative;
  font-weight: 500;
  line-height: 1.75;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .single .content_inner h2 {
    margin-top: 40px;
    margin-bottom: 36px;
    padding: 1px 0 1px 25px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1080px) {
  .single .content_inner h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner h2 {
    margin-top: 30px;
    margin-bottom: 26px;
    padding: 3px 0 3px 25px;
    font-size: 24px;
  }
}
.single .content_inner h2::before {
  content: " ";
  position: absolute;
  height: 100%;
  background-color: #06AE95;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 811px) {
  .single .content_inner h2::before {
    width: 10px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner h2::before {
    width: 10px;
  }
}
.single .content_inner h3 {
  margin-top: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (min-width: 811px) {
  .single .content_inner h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner h3 {
    font-size: 18px;
  }
}
.single .content_inner p {
  margin-top: 1.5em;
  line-height: 1.8;
}
@media screen and (min-width: 811px) {
  .single .content_inner p {
    font-size: 16px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner p {
    font-size: 15px;
  }
}
.single .content_inner p.lg {
  margin-top: 1em;
  font-weight: 500;
}
@media screen and (min-width: 811px) {
  .single .content_inner p.lg {
    font-size: 28px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner p.lg {
    font-size: 22px;
  }
}
.single .content_inner a {
  text-decoration: underline;
}
.single .content_inner a:hover {
  color: #06AE95;
}
.single .content_inner ul {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 1.2em;
  list-style: disc;
}
.single .content_inner ul li {
  margin-top: 8px;
}
.single .content_inner ul > ul {
  list-style: circle;
}
.single .content_inner ol {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 1.2em;
  list-style: decimal;
}
.single .content_inner ol li {
  margin-top: 8px;
}
.single .content_inner blockquote {
  margin-top: 32px;
  margin-bottom: 32px;
  background-color: #F3F4F8;
  padding: 0 20px 1.6em;
  font-style: italic;
  padding-top: 1px;
}
.single .content_inner table {
  margin-top: 32px;
  margin-bottom: 32px;
  border-top: 1px solid #BDBDBD;
}
.single .content_inner table.max {
  width: 100%;
}
.single .content_inner table th,
.single .content_inner table td {
  padding: 20px 8px 20px 35px;
}
@media screen and (min-width: 811px) {
  .single .content_inner table th,
  .single .content_inner table td {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner table th,
  .single .content_inner table td {
    padding-left: 10px;
    font-size: 16px;
  }
}
.single .content_inner table th {
  font-weight: 700;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (min-width: 811px) {
  .single .content_inner table th {
    width: 22.1%;
    min-width: 155px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner table th {
    min-width: 105px;
  }
}
.single .content_inner table td {
  border-bottom: 1px solid #BDBDBD;
  letter-spacing: 0;
}
.single .content_inner .gmap {
  margin-top: 32px;
  margin-bottom: 32px;
}
.single .content_inner .youtube {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 811px) {
  .single .content_inner .col2 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner .col2 {
    margin-bottom: 40px;
  }
}
.single .content_inner .col2 p {
  margin: 0 0 1.5em;
  padding-left: 0;
}
.single .content_inner .col2_ttl {
  color: #2A313C;
}
@media screen and (min-width: 811px) {
  .single .content_inner .col2_ttl {
    font-size: 25px;
    margin: 50px 0 20px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner .col2_ttl {
    font-size: 21px;
  }
}
.single .content_inner .col2_img {
  border-radius: 0;
}
@media screen and (min-width: 811px) {
  .single .content_inner .col2_img {
    width: 53.6%;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner .col2_img {
    order: 2;
  }
}
.single .content_inner .col2_img p {
  margin: 0;
  padding-right: 10px;
  line-height: 2.65;
  text-align: right;
}
@media screen and (min-width: 811px) {
  .single .content_inner .col2_img p {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_inner .col2_img p {
    font-size: 16px;
  }
}
.single .content_tag {
  position: relative;
  margin-top: 40px;
}
.single .content_tag h2 {
  background-color: #F3F4F8;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.single .content_tag_list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px 0;
}
.single .content_tag_list li {
  padding: 10px 5px 0;
}
.single .content_share {
  margin-top: 40px;
}
.single .content_share h2 {
  background-color: #F3F4F8;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.single .content_share_list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px 0;
}
.single .content_share_list li {
  padding: 10px 5px 0;
  width: 50%;
}
.single .content_share_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 100%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.single .content_share_list li a img {
  margin-right: 4px;
}
.single .content_share_list li a.facebook {
  background-color: #0765ff;
}
.single .content_share_list li a.x {
  background-color: #2A313C;
}
@media screen and (min-width: 811px) {
  .single .content_return {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_return {
    margin-top: 60px;
  }
}
.single .content_return p {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 811px) {
  .single .product {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .product {
    padding: 40px 0 60px;
  }
}
.single .product_wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 811px) {
  .single .product_wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 811px) {
  .single .product_side {
    width: 320px;
    flex-shrink: 0;
    margin-right: 60px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_side {
    margin-top: 60px;
  }
}
.single .product_side_list {
  border: 1px solid #BDBDBD;
  padding: 0 0 20px;
}
.single .product_side_list .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 24px;
  width: 100%;
  background-color: #06AE95;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 20px;
}
.single .product_side_list .parent {
  font-weight: 700;
  font-size: 16px;
  padding: 0 20px;
  margin-top: 10px;
}
.single .product_side_list .parent > a {
  display: flex;
  align-items: center;
}
.single .product_side_list .parent > a::before {
  content: " ";
  display: block;
  background-image: url("../images/common/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
.single .product_side_list .child li {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
}
.single .product_meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single .product_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #06AE95;
  color: #06AE95;
  background-color: #fff;
  border-radius: 12px;
}
.single .product_meta_cat:hover {
  color: #fff;
  background-color: #06AE95;
}
.single .product_thumb {
  margin-top: 40px;
  text-align: center;
}
.single .product_thumb img {
  width: 100%;
  height: auto;
  max-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single .product_inner {
  margin-top: 40px;
}
@media screen and (min-width: 811px) {
  .single .product_inner .group {
    margin-bottom: 195px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner .group {
    margin-bottom: 100px;
  }
}
.single .product_inner h2 {
  position: relative;
  font-weight: 500;
  line-height: 1.75;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .single .product_inner h2 {
    margin-top: 40px;
    margin-bottom: 36px;
    padding: 6px 0 6px 45px;
    font-size: 39px;
  }
}
@media screen and (max-width: 1080px) {
  .single .product_inner h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner h2 {
    margin-top: 30px;
    margin-bottom: 26px;
    padding: 3px 0 3px 25px;
    font-size: 24px;
  }
}
.single .product_inner h2::before {
  content: " ";
  position: absolute;
  height: 100%;
  background-color: #06AE95;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 811px) {
  .single .product_inner h2::before {
    width: 17px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner h2::before {
    width: 10px;
  }
}
.single .product_inner h3 {
  margin-top: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.single .product_inner p {
  margin-top: 1.5em;
  line-height: 2.2;
}
@media screen and (min-width: 811px) {
  .single .product_inner p {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner p {
    font-size: 16px;
  }
}
.single .product_inner p.lg {
  margin-top: 1em;
  font-weight: 500;
}
@media screen and (min-width: 811px) {
  .single .product_inner p.lg {
    font-size: 28px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner p.lg {
    font-size: 22px;
  }
}
.single .product_inner a {
  text-decoration: underline;
}
.single .product_inner a:hover {
  color: #06AE95;
}
.single .product_inner ul {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 1.2em;
  list-style: disc;
}
.single .product_inner ul li {
  margin-top: 8px;
}
.single .product_inner ul > ul {
  list-style: circle;
}
.single .product_inner ol {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 1.2em;
  list-style: decimal;
}
.single .product_inner ol li {
  margin-top: 8px;
}
.single .product_inner blockquote {
  margin-top: 32px;
  margin-bottom: 32px;
  background-color: #F3F4F8;
  padding: 0 20px 1.6em;
  font-style: italic;
  padding-top: 1px;
}
.single .product_inner table {
  margin-top: 32px;
  margin-bottom: 32px;
  border-top: 1px solid #BDBDBD;
}
.single .product_inner table.max {
  width: 100%;
}
.single .product_inner table th,
.single .product_inner table td {
  padding: 20px 8px 20px 35px;
}
@media screen and (min-width: 811px) {
  .single .product_inner table th,
  .single .product_inner table td {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner table th,
  .single .product_inner table td {
    padding-left: 10px;
    font-size: 16px;
  }
}
.single .product_inner table th {
  font-weight: 700;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (min-width: 811px) {
  .single .product_inner table th {
    width: 22.1%;
    min-width: 155px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner table th {
    min-width: 105px;
  }
}
.single .product_inner table td {
  border-bottom: 1px solid #BDBDBD;
  letter-spacing: 0;
}
@media screen and (min-width: 811px) {
  .single .product_inner .col2 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner .col2 {
    margin-bottom: 40px;
  }
}
.single .product_inner .col2 p {
  margin: 0 0 1.5em;
  padding-left: 0;
}
.single .product_inner .col2_ttl {
  color: #2A313C;
}
@media screen and (min-width: 811px) {
  .single .product_inner .col2_ttl {
    font-size: 25px;
    margin: 50px 0 20px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner .col2_ttl {
    font-size: 21px;
  }
}
.single .product_inner .col2_img {
  border-radius: 0;
}
@media screen and (min-width: 811px) {
  .single .product_inner .col2_img {
    width: 53.6%;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner .col2_img {
    order: 2;
  }
}
.single .product_inner .col2_img p {
  margin: 0;
  padding-right: 10px;
  line-height: 2.65;
  text-align: right;
}
@media screen and (min-width: 811px) {
  .single .product_inner .col2_img p {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_inner .col2_img p {
    font-size: 16px;
  }
}
.single .product_inner .gmap {
  margin-top: 32px;
  margin-bottom: 32px;
}
.single .product_inner .youtube {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 811px) {
  .single .product_return {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_return {
    margin-top: 60px;
  }
}
.single .product_return p {
  display: flex;
  justify-content: center;
}

/*--------------------------------------------------------------
	page
--------------------------------------------------------------*/
@media screen and (min-width: 811px) {
  .page {
    padding-top: 140px;
  }
}
@media screen and (max-width: 810px) {
  .page {
    padding-top: 64px;
  }
}
.page h1 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .page h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .page h1 {
    font-size: 30px;
  }
}

/* ページタイトル */
.pageTitle {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 641px) {
  .pageTitle {
    height: 300px;
  }
}
@media screen and (max-width: 640px) {
  .pageTitle {
    height: 240px;
  }
}
.pageTitle_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pageTitle_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageTitle .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.pageTitle h1 {
  position: relative;
  color: #fff;
  z-index: 1;
}
.pageTitle h1::before {
  content: "";
  position: absolute;
  background: rgba(6, 174, 149, 0.8);
  transform: rotate(-45deg);
  z-index: -1;
}
@media screen and (min-width: 641px) {
  .pageTitle h1::before {
    left: -580px;
    top: -220px;
    width: 692px;
    height: 732px;
  }
}
@media screen and (max-width: 640px) {
  .pageTitle h1::before {
    left: -305px;
    top: -45px;
    width: 452px;
    height: 402px;
  }
}
.pageTitle h1 span {
  line-height: 1.2;
}
.pageTitle h1 img {
  width: 33px;
  margin-right: 13px;
}
.pageTitle_en {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (min-width: 641px) {
  .pageTitle_en {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .pageTitle_en {
    margin-bottom: 5px;
    font-size: 18px;
  }
}
.pageTitle_ja {
  display: block;
  font-weight: 500;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 641px) {
  .pageTitle_ja {
    font-size: 56px;
  }
}
@media screen and (max-width: 640px) {
  .pageTitle_ja {
    font-size: 48px;
  }
}

/* ページ */
@media screen and (min-width: 811px) {
  .page .content {
    padding-top: 100px;
  }
}
@media screen and (max-width: 810px) {
  .page .content {
    padding-top: 60px;
  }
}
.page .content_wrapper {
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.page .content_inner {
  margin-top: 40px;
}
.page .content_inner.blank {
  margin-top: 0;
}
@media screen and (min-width: 811px) {
  .page .content_inner .group {
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner .group {
    margin-bottom: 100px;
  }
}
.page .content_inner h2 {
  position: relative;
  font-weight: 500;
  line-height: 1.75;
  color: #06AE95;
}
@media screen and (min-width: 811px) {
  .page .content_inner h2 {
    margin-top: 40px;
    margin-bottom: 36px;
    padding: 1px 0 1px 25px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1080px) {
  .page .content_inner h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner h2 {
    margin-top: 30px;
    margin-bottom: 26px;
    padding: 3px 0 3px 25px;
    font-size: 24px;
  }
}
.page .content_inner h2::before {
  content: " ";
  position: absolute;
  height: 100%;
  background-color: #06AE95;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 811px) {
  .page .content_inner h2::before {
    width: 10px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner h2::before {
    width: 10px;
  }
}
.page .content_inner h3 {
  margin-top: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (min-width: 811px) {
  .page .content_inner h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner h3 {
    font-size: 18px;
  }
}
.page .content_inner p {
  margin-top: 1.5em;
  line-height: 1.8;
}
@media screen and (min-width: 811px) {
  .page .content_inner p {
    font-size: 16px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner p {
    font-size: 15px;
  }
}
.page .content_inner p.lg {
  margin-top: 1em;
  font-weight: 500;
}
@media screen and (min-width: 811px) {
  .page .content_inner p.lg {
    font-size: 28px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner p.lg {
    font-size: 22px;
  }
}
.page .content_inner a {
  text-decoration: underline;
}
.page .content_inner a:hover {
  color: #06AE95;
}
.page .content_inner ul {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 1.2em;
  list-style: disc;
}
.page .content_inner ul li {
  margin-top: 8px;
}
.page .content_inner ul > ul {
  list-style: circle;
}
.page .content_inner ol {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 1.2em;
  list-style: decimal;
}
.page .content_inner ol li {
  margin-top: 8px;
}
.page .content_inner blockquote {
  margin-top: 32px;
  margin-bottom: 32px;
  background-color: #F3F4F8;
  padding: 0 20px 1.6em;
  font-style: italic;
  padding-top: 1px;
}
.page .content_inner blockquote p {
  padding-left: 0;
}
.page .content_inner table {
  margin-top: 32px;
  margin-bottom: 32px;
  border-top: 1px solid #BDBDBD;
}
.page .content_inner table.max {
  width: 100%;
}
.page .content_inner table th,
.page .content_inner table td {
  padding: 20px 8px 20px 35px;
}
@media screen and (min-width: 811px) {
  .page .content_inner table th,
  .page .content_inner table td {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner table th,
  .page .content_inner table td {
    padding-left: 10px;
    font-size: 16px;
  }
}
.page .content_inner table th {
  font-weight: 700;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (min-width: 811px) {
  .page .content_inner table th {
    width: 22.1%;
    min-width: 155px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner table th {
    min-width: 105px;
  }
}
.page .content_inner table td {
  border-bottom: 1px solid #BDBDBD;
  letter-spacing: 0;
}
@media screen and (min-width: 811px) {
  .page .content_inner .col2 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner .col2 {
    margin-bottom: 40px;
  }
}
.page .content_inner .col2 p {
  margin: 0 0 1.5em;
  padding-left: 0;
}
.page .content_inner .col2_ttl {
  color: #2A313C;
}
@media screen and (min-width: 811px) {
  .page .content_inner .col2_ttl {
    font-size: 25px;
    margin: 50px 0 20px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner .col2_ttl {
    font-size: 21px;
  }
}
.page .content_inner .col2_img {
  border-radius: 0;
}
@media screen and (min-width: 811px) {
  .page .content_inner .col2_img {
    width: 53.6%;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner .col2_img {
    order: 2;
  }
}
.page .content_inner .col2_img p {
  margin: 0;
  padding-right: 10px;
  line-height: 2.65;
  text-align: right;
}
@media screen and (min-width: 811px) {
  .page .content_inner .col2_img p {
    font-size: 20px;
  }
}
@media screen and (max-width: 810px) {
  .page .content_inner .col2_img p {
    font-size: 16px;
  }
}
.page .content_inner .gmap {
  margin-top: 32px;
  margin-bottom: 32px;
}
.page .content_inner .youtube {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* 問題→解決 */
.problem h2,
.solution h2 {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #2A313C;
}
@media screen and (min-width: 811px) {
  .problem h2,
  .solution h2 {
    font-size: 34px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 810px) {
  .problem h2,
  .solution h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.problem li,
.solution li {
  border-radius: 20px;
}
@media screen and (max-width: 810px) {
  .problem li,
  .solution li {
    margin: 0 12px 24px;
    padding: 20px 15px;
  }
}
@media screen and (max-width: 640px) {
  .problem li,
  .solution li {
    margin: 0 0 20px;
  }
}
.problem_txt,
.solution_txt {
  text-align: center;
}

.problem {
  position: relative;
  background-image: url("../images/page/problem_bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 811px) {
  .problem {
    padding: 70px 0 90px;
  }
}
@media screen and (max-width: 810px) {
  .problem {
    padding: 60px 0;
  }
}
.problem::after {
  content: "";
  position: absolute;
  left: 50%;
  background-image: url("../images/page/problem_arrow.png");
  background-size: contain;
  transform: translateX(-50%);
}
@media screen and (min-width: 811px) {
  .problem::after {
    top: calc(100% - 50px);
    width: 98px;
    height: 98px;
  }
}
@media screen and (max-width: 810px) {
  .problem::after {
    top: calc(100% - 30px);
    width: 58px;
    height: 58px;
  }
}
@media screen and (min-width: 811px) {
  .problem li {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 810px) {
  .problem li {
    padding: 20px 15px;
  }
}
.problem_ttl {
  position: relative;
  color: #fff;
  background: #06AE95;
  border-radius: 5px;
}
@media screen and (min-width: 1081px) {
  .problem_ttl {
    padding: 13px 3px;
    font-size: 28px;
  }
}
@media screen and (max-width: 1080px) {
  .problem_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 810px) {
  .problem_ttl {
    padding: 5px 3px;
    font-size: 20px;
  }
}
.problem_ttl::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  background: #06AE95;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (min-width: 811px) {
  .problem_ttl::after {
    width: 32px;
    height: 20px;
  }
}
@media screen and (max-width: 810px) {
  .problem_ttl::after {
    width: 24px;
    height: 14px;
  }
}
.problem_txt {
  font-weight: 500;
}
@media screen and (min-width: 1081px) {
  .problem_txt {
    font-size: 23px;
  }
}
@media screen and (max-width: 1080px) {
  .problem_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .problem_txt {
    font-size: 16px;
  }
}

@media screen and (min-width: 811px) {
  .solution {
    padding: 60px 0 120px;
  }
}
@media screen and (max-width: 810px) {
  .solution {
    padding: 40px 0 100px;
  }
}
.solution li {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #06AE95;
}
.solution_txt {
  color: #06AE95;
  font-weight: 700;
}
@media screen and (min-width: 1081px) {
  .solution_txt {
    font-size: 26px;
  }
}
@media screen and (max-width: 1080px) {
  .solution_txt {
    font-size: 22px;
  }
}
@media screen and (max-width: 810px) {
  .solution_txt {
    font-size: 18px;
  }
}

/* ポイント */
@media screen and (min-width: 811px) {
  .point {
    padding: 120px 0 250px;
  }
}
@media screen and (max-width: 810px) {
  .point {
    padding: 80px 0 100px;
  }
}
@media screen and (min-width: 811px) {
  .point_list {
    padding-top: 120px;
  }
}
@media screen and (max-width: 810px) {
  .point_list {
    padding-top: 60px;
  }
}
.point_list li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 811px) {
  .point_list li {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 810px) {
  .point_list li {
    margin-bottom: 60px;
  }
}
.point .col2_num {
  opacity: 0.2;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .point .col2_num {
    font-size: 100px;
  }
}
@media screen and (max-width: 1080px) {
  .point .col2_num {
    font-size: 80px;
  }
}
@media screen and (max-width: 640px) {
  .point .col2_num {
    font-size: 60px;
    margin-bottom: 5px;
  }
}
.point .col2_ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 641px) {
  .point .col2_ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .point .col2_ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .point .col2_ttl {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

/* 特徴 */
@media screen and (min-width: 811px) {
  .feature_img {
    padding-top: 120px;
  }
}
@media screen and (max-width: 810px) {
  .feature_img {
    padding-top: 60px;
  }
}

/* 違い */
@media screen and (min-width: 811px) {
  .difference {
    padding: 80px 0 120px;
  }
}
@media screen and (max-width: 810px) {
  .difference {
    padding: 60px 0 80px;
  }
}
@media screen and (min-width: 811px) {
  .difference_list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 810px) {
  .difference_list {
    margin-top: 40px;
  }
}
@media screen and (min-width: 811px) {
  .difference .col3_img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 810px) {
  .difference .col3_img {
    margin-bottom: 10px;
  }
}
.difference .col3_ttl {
  margin-bottom: 15px;
}
.difference li {
  border-radius: 10px;
}
@media screen and (max-width: 810px) {
  .difference li {
    margin: 0 12px 24px;
  }
}
@media screen and (max-width: 640px) {
  .difference li {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .difference .col3_img {
    width: 30%;
  }
}

/* 事例 */
@media screen and (min-width: 811px) {
  .case {
    padding: 100px 0;
  }
}
@media screen and (max-width: 810px) {
  .case {
    padding: 80px 0;
  }
}
.case .ttl,
.case .ttl span {
  text-align: center;
}
@media screen and (max-width: 810px) {
  .case .ttl {
    margin-bottom: 30px;
  }
}
.case_ttl {
  font-weight: 700;
}
@media screen and (min-width: 811px) {
  .case_ttl {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
@media screen and (max-width: 810px) {
  .case_ttl {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.case_item {
  border-bottom: 1px solid #fff;
}
.case_item:first-of-type {
  padding-top: 0;
}
.case_item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 1081px) {
  .case_item {
    padding: 95px 100px 95px 50px;
  }
}
@media screen and (max-width: 1080px) {
  .case_item {
    padding: 85px 40px 85px 30px;
  }
}
@media screen and (max-width: 810px) {
  .case_item {
    padding: 40px 0 40px;
  }
}
@media screen and (min-width: 811px) {
  .case .col2_txt {
    padding-top: 30px;
  }
}

/* 設備紹介 */
.logo_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (min-width: 811px) {
  .logo_list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 810px) {
  .logo_list {
    margin-top: 30px;
  }
}
@media screen and (min-width: 811px) {
  .logo_list li {
    width: 42%;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 810px) {
  .logo_list li {
    width: 80%;
    margin-bottom: 45px;
  }
}

/* お客様の声 */
@media screen and (min-width: 811px) {
  .voice {
    padding: 100px 0 155px;
  }
}
@media screen and (max-width: 810px) {
  .voice {
    padding: 80px 0 125px;
  }
}
.voice_list {
  padding: 15px 0;
}
@media screen and (min-width: 811px) {
  .voice_list {
    margin-top: 55px;
  }
}
@media screen and (max-width: 810px) {
  .voice_list {
    margin-top: 35px;
  }
}
.voice_list li {
  position: relative;
  border-radius: 10px;
}
@media screen and (min-width: 1081px) {
  .voice_list li {
    margin: 0 20px 24px;
  }
}
@media screen and (min-width: 811px) {
  .voice_list li {
    padding: 40px 25px 55px;
  }
}
@media screen and (max-width: 810px) {
  .voice_list li {
    padding: 30px 15px 45px;
    margin: 0 0 45px;
  }
}
.voice_list li::before, .voice_list li::after {
  content: "";
  position: absolute;
  width: 14.5%;
  height: 10.4%;
  background-image: url("../images/page/voice_illust.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.voice_list li::before {
  top: -15px;
  left: -6px;
}
.voice_list li::after {
  bottom: -15px;
  right: -6px;
  transform: scale(-1, -1);
}
.voice_list li > div {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .voice_list li > div {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 810px) {
  .voice_list li > div {
    margin-bottom: 20px;
  }
}
.voice_img {
  margin-bottom: 0;
}
@media screen and (min-width: 811px) {
  .voice_img {
    width: 96px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 810px) {
  .voice_img {
    width: 88px;
    margin-right: 10px;
  }
}
.voice_ttl {
  margin: 0;
  text-align: left;
  line-height: 1.875;
  flex: 1;
}
@media screen and (min-width: 811px) {
  .voice_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 810px) {
  .voice_ttl {
    font-size: 18px;
  }
}
.voice_txt {
  padding: 0 10px;
  letter-spacing: 0.05em;
}

/* 主な実績 */
@media screen and (min-width: 811px) {
  .achievement {
    padding: 100px 0 115px;
  }
}
@media screen and (max-width: 810px) {
  .achievement {
    padding: 80px 0 95px;
  }
}
@media screen and (min-width: 811px) {
  .achievement_list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 810px) {
  .achievement_list {
    margin-top: 30px;
  }
}

/* 事業一覧 */
@media screen and (min-width: 811px) {
  .business-sm {
    padding: 88px 0;
  }
}
@media screen and (max-width: 810px) {
  .business-sm {
    padding: 68px 0;
  }
}
.business-sm_txt {
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 811px) {
  .business-sm_txt {
    margin: 24px 0 45px;
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .business-sm_txt {
    margin: 20px 0 35px;
    font-size: 16px;
  }
}
.business-sm_list {
  gap: 30px;
  align-items: unset;
}
.business-sm_list li {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
@media screen and (min-width: 811px) {
  .business-sm_list li {
    width: 54.64%;
    padding: 40px 45px;
  }
}
@media screen and (min-width: 1081px) {
  .business-sm_list li {
    width: 32.64%;
  }
}
@media screen and (max-width: 810px) {
  .business-sm_list li {
    padding: 30px 20px;
  }
}
.business-sm_list .col2_img {
  width: 100%;
  border-radius: 0;
}
@media screen and (min-width: 811px) {
  .business-sm_list .col2_img {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 810px) {
  .business-sm_list .col2_img {
    margin-bottom: 20px;
  }
}
.business-sm_list .col2_ttl,
.business-sm_list .col2_txt {
  text-align: center;
}
.business-sm_list .col2_ttl {
  line-height: 1.2;
}
@media screen and (min-width: 811px) {
  .business-sm_list .col2_ttl {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 810px) {
  .business-sm_list .col2_ttl {
    margin-bottom: 20px;
  }
}
.business-sm_list .col2_txt {
  line-height: 1.69;
}
@media screen and (min-width: 811px) {
  .business-sm_list .col2_txt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 810px) {
  .business-sm_list .col2_txt {
    margin-bottom: 30px;
  }
}
.business-sm_list .col2_btn {
  max-width: 100%;
  padding: 14px 10px;
  margin: auto auto 0;
}
.business-sm_list .btn-arrow .arrow {
  right: 18px;
  width: 34px;
  height: 34px;
}

/* 会社案内 */
.company.page .content_inner {
  margin-top: 0;
  margin-bottom: 80px;
}
.company.page .content_inner h2 {
  padding: 0;
  margin: 0;
  color: #06AE95;
  font-weight: 500;
}
@media screen and (min-width: 811px) {
  .company.page .content_inner h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 810px) {
  .company.page .content_inner h2 {
    font-size: 22px;
  }
}
.company.page .content_inner h2::before {
  content: none;
}
.company.page .content_inner ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .company.page .content_inner ul {
    margin-top: 20px;
  }
}
.company.page .content_inner ul li {
  width: 25%;
  list-style: none;
}
@media screen and (max-width: 640px) {
  .company.page .content_inner ul li {
    width: 50%;
  }
}
.company.page .content_inner ul li:nth-child(n+5) {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .company.page .content_inner ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.company.page .content_inner ul li a {
  text-decoration: none;
}
.company.page .content_inner ul li a > div {
  aspect-ratio: 7/5;
  overflow: hidden;
  text-align: center;
}
.company.page .content_inner ul li a > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.company.page .content_inner ul li a:hover {
  color: #2A313C;
}
.company.page .content_inner ul li a:hover > div img {
  transform: scale(1.1);
}
.company.page .content_inner ul li p {
  padding: 0;
  margin: 5px 0 0;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 811px) {
  .company.page .content_inner ul li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .company.page .content_inner ul li p {
    font-size: 13px;
  }
}
.company.page .content_inner ul li p span {
  display: block;
  text-align: center;
}
@media screen and (min-width: 811px) {
  .company.page .content_inner ul li p span {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .company.page .content_inner ul li p span {
    font-size: 16px;
  }
}

/* 事業紹介 */
.business .breadcrumb {
  background: #F3F4F8;
}
@media screen and (min-width: 811px) {
  .business-section {
    padding-top: 60px;
  }
}
@media screen and (max-width: 810px) {
  .business-section {
    padding-top: 40px;
  }
}
.business-section .business_list {
  margin-top: 12px;
  border-top: 1px solid #BDBDBD;
}
.business-section .business_list li {
  padding: 70px 0 90px 50px;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (max-width: 1080px) {
  .business-section .business_list li {
    padding: 50px 0 70px 30px;
  }
}
@media screen and (max-width: 640px) {
  .business-section .business_list li {
    padding: 30px 0 40px;
  }
}

/* エラー */
@media screen and (min-width: 811px) {
  .page .error {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .page .error {
    padding: 40px 0 60px;
  }
}
.page .error_wrapper {
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.page .error_wrapper h1 {
  text-align: center;
  color: #06AE95;
  line-height: 1.2;
}
@media screen and (min-width: 641px) {
  .page .error_wrapper h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 640px) {
  .page .error_wrapper h1 {
    font-size: 32px;
  }
}
.page .error_message {
  font-weight: 700;
  text-align: center;
  font-size: 16px;
}
.page .error_txt {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
.page .error_more {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}