@charset "utf-8";

/* ==========================================================================
Foundation [ reset / base ]
========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html,
body {
  font-size: 14px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  background-color: #1DA96F;
}
body {
  padding-top: 60px;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
select {
  font-size: 12px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

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

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.din-r {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.din-b {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  width: 100%;
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 11px 20px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
}

.l-header-logo {
  width: 226px;
}

/* --- ハンバーガー --- */
.hamburger {
  position: fixed;
  top: 10px;
  right: 15px;
  display: flex;
  flex-direction: column; /* 縦に並べる */
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1101;
}

/* 3本線 */
.hamburger span {
  display: block;
  width: 26px;
  height: 1px;             /* 線の太さ */
  margin: 4px 0;           /* 上下余白 */
  background: #222;        /* 線の色 */
  border-radius: 2px;      /* 少し丸みをつけると綺麗 */
  transition: transform 0.35s ease, opacity 0.2s ease;
}

/* Xにしたときのスタイル */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- オーバーレイ --- */
.overlay {
  position: fixed;
  inset: 0; /* top/right/bottom/left:0 */
  background: rgba(0,0,0,0.0); /* 初期は透明 */
  pointer-events: none; /* 非表示時はクリックを透過させる */
  opacity: 0;
  transition: background 0.25s ease, opacity 0.25s ease;
  z-index: 1100; /* ハンバーガーより下、サイドバーより低め */
}

/* オープン時（半透明の黒） */
.overlay.active {
  pointer-events: auto; /* クリックを受け取る */
  background: rgba(0,0,0,0.4);
  opacity: 1;
}

/* --- サイドバー（モバイルのスライドイン） --- */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    z-index: 1110; /* オーバーレイより上でコンテンツよりもっと上 */
    transition: left 0.32s cubic-bezier(.2,.9,.3,1);
    padding: 60px 20px;
    overflow-y: auto;
    /* PC用のopacityフェードインとは別扱いになる想定 */
  }
  .sidebar.open {
    left: 0;
  }

  /* サブメニュー アコーディオン */
  .submenu { display: none; margin-left: 12px; }
  .submenu.open { display: block; }
}

/* --- PC用は既存の固定表示/opacity切替を残す --- */
@media (min-width: 769px) {
  .overlay { display: none; } /* PCではオーバーレイ使わない（必要なら有効化可） */
}

.sidebar ul li {
  border-bottom: 1px dashed #ccc;
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding: 15px 0 15px 20px;
}

.sidebar ul li a::before{
  content: '';
  position: absolute;
  box-sizing: border-box;
  left: -3px;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border: 1px solid #1DA96F;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.sidebar ul li a::after{
  content: '';
  position: absolute;
  left: 1px;
  top: 50%;
  margin-top: -1px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #1DA96F;
  border-right: 1px solid #1DA96F;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidebar ul li a.active {
  color: #1DA96F;
}



/* Main
---------------------------------------------------------------*/

.l-wrapper {
  overflow: hidden;
  width: 100%;
}

#main {
  width: 100%;
  margin: 0 auto;
}


/* Footer
---------------------------------------------------------------*/

.l-copyright {
  margin-top: 40px;
}

.l-copyright p {
  max-width: 1080px;
  padding: 7px 20px;
  margin: 0 auto;
  font-size: 0.8125rem;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.fixed-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translate(-110%, 110%); /* 初期は画面外（左下） */
  transition: transform 400ms cubic-bezier(.2,.9,.2,1), opacity 300ms;
  opacity:0;
  will-change: transform, opacity;
  z-index:1000;
  pointer-events:auto;
  background-color: #064A2E;
  padding: 7px 0;
  z-index: 30;
}

/* 表示状態のクラス（左下からスライドイン） */
.fixed-banner.visible {
  transform: translate(0, 0);
  opacity:1;
}

/* 非表示アニメーション（スッと消える） */
.fixed-banner.hiding {
  transform: translate(-110%, 110%);
  opacity:0;
}

/* ユーザが閉じた時: アクセシブルに隠す */
.fixed-banner[aria-hidden="true"] { display:none !important; }

.fixed-banner .cv-ttl {
  width: 90%;
  margin: 0 5% 10px;
  font-size: 16px;
  padding: 7px 0;
}

.fixed-banner .cv-ttl span {
  font-size: 13px;
}

.fixed-banner .cv {
  width: 94%;
  margin: 0 auto;
  gap: 0px;
  justify-content: space-between;
}

.fixed-banner .cv li {
  width: 48%;
}

.fixed-banner .cv li a {
  font-size: 12px;
  padding: 5px 0;
}

.fixed-banner .cv li.cv__line a {
  background-size: 16px auto;
}

.fixed-banner .cv li.cv__tell a {
  background-size: 12px auto;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

/*メインビジュアル*/
.mv {
  background: url(images/mv-bg.jpg) no-repeat top center;
  background-size: cover;
  padding-bottom: 101px;
}

.mv-inner {
  background: url(images/mv.png) no-repeat 20% 100%;
  background-size: auto 60%;
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 20px 15px 49px;
  box-sizing: border-box;
}

.mv-catch01 {
  margin-bottom: 20px;
}

.mv-catch01 p {
  position: relative;
  background-color: #EEEE8A;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

.mv-catch01 p:before {
  position: absolute;
  content: '';
  left: 64px;
  bottom: -20px;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 11px solid transparent;
  border-left: 16px solid #EEEE8A;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mv-catch02 {
  margin-bottom: 10px;
}

.mv-catch02 p {
  font-size: 16px;
  font-weight: 700;
}

.mv-catch03 {
  margin-bottom: 20px;
}

.mv-catch03 h1 {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.3;
}

.mv-catch03 h1 span {
  font-size: 28px;
}

.mv-catch03 h1 p {
  font-size: 34px;
}

.mv-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.mv-list li {
  width: 70%;
  margin-bottom: 10px;
  border: 3px solid #A7C7BA;
  background-color: rgba(255,255,255,.7);
  box-sizing: border-box;
  position: relative;
  padding: 6px 4px;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.mv-list li:before {
  content: '';
  position: absolute;
  width: 25px;
  height: 20px;
  left: 8px;
  top: -10px;
  background: url(images/mv-catch-bg.svg);
  background-repeat: no-repeat;
}

.mv-list li span {
  display: contents;
}

.licence {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.lead {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.lead:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -20px;
  width: 40px;
  height: 5px;
  background-color: #1DA96F;
  border-radius: 4px;
}

.lead h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 12px;
}

.check-list {
  margin: 35px 0 35px 0px;
}

.check-list li {
  font-size: 14px;
  padding-left: 27px;
  background: url(images/ico-check.svg) no-repeat 0px 2px;
  background-size: 18px auto;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.price {
  background-color: #1DA96F;
  border-radius: 10px;
}

.price-head {
  position: relative;
}

.price-ttl {
  padding-top: 30px;
  text-align: center;
  margin-bottom: 28px;
}

.price-ttl span {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.4;
  background: url(images/ttl-white-left.svg) no-repeat left center, url(images/ttl-white-right.svg) no-repeat right center;
  background-size: 33px auto;
  color: #fff;
  padding-left: 40px;
  padding-right: 40px;
}

.price-ttl-sub {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  color: #F3E575;
  margin-bottom: 10px;
  position: absolute;
  right: -10px;
  top: 60px;
  width: 70px;
  height: 70px;
  background-color: #0F8E59;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
  padding-top: 15px;
  box-sizing: border-box;
}

.price-ttl-sub span {
  font-size: 16px;
  display: inline-block;
  margin-right: 3px;
  line-height: 1;
}

.price-inner {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  margin: 0 auto 25px;
  position: relative;
  text-align: center;
}

.price-att-txt {
  font-size: 12px;
  padding: 0 5px 5px;
  color: red;
}

.price-label {
  position: absolute;
  left: -25px;
  top: -30px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  background-color: #EEEE8A;
}

.price-label span {
  font-size: 20px;
}

.price-num01 {
  font-size: 30px;
  color: red;
  font-weight: 400;
  position: relative;
}

.price-num01 span {
  display: inline-block;
  position: relative;
}

.price-num01 span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: red;
}

.price-num01 em {
  font-size: 20px;
}

.price-num01:before {
  content: '';
  position: absolute;
  top: 42px;
  right: 36px;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border: 15px solid transparent;
  border-left: 15px solid red;
  -webkit-transform: rotate(109deg);
  transform: rotate(109deg);
}

.price-num01:after {
  content: '';
  position: absolute;
  right: 44px;
  top: 23px;
  border: 0 solid transparent;
  border-top: 6px solid red;
  border-radius: 20px 0 0;
  width: 25px;
  height: 26px;
  -webkit-transform: rotate(74deg);
  transform: rotate(85deg);
}

.price-num {
  font-size: 55px;
  line-height: 1.1;
  color: #1DA96F;
}

.price-num .txt01 {
  font-size: 41px;
}

.price-num .txt02 {
  font-size: 56px;
}

.price-num .txt03 {
  font-size: 18px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.price-btm {
  background-color: #064A2E;
  padding: 23px 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cv-ttl {
  text-align: center;
  color: #EEEE8A;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
  padding: 14px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

.cv-ttl span {
  display: block;
  font-size: 14px;
}

.cv {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cv li {
  width: 100%;
  max-width: 300px;
}

.cv li a {
  width: 100%;
  display: block;
  border-radius: 200px;
  text-align: center;
  padding: 11px 0;
  font-size: 20px;
  font-weight: 700;
}

.cv li.cv__line a {
  background: url(images/ico-line.svg) no-repeat 90% 50%;
  background-size: 30px auto;
  background-color: #1DA96F;
  color: #fff;
}

.cv li.cv__tell a {
  background: url(images/ico-tell.svg) no-repeat 90% 50%;
  background-size: 24px auto;
  background-color: #EEEE8A;
  color: #333;
}

.business-btn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  margin-top: 20px;
}

.business-btn li {
  width: 100%;
  margin-bottom: 10px;
  max-width: 320px;
}

.business-btn li a {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  position: relative;
  border: 2px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.business-btn li.youtube-btn a {
  background: url(images/ico-youtube.svg) no-repeat 96% 50%;
  background-size: 24px auto;
  background-color: #2A92B7;
}

.business-btn li.amazon-btn a {
  background-color: #BC046E;
}

.business-btn li a span {
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  line-height: 1.4;
}

.business-btn li.amazon-btn a:before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.insta {
  margin-top: 30px;
  padding: 15px;
  border-radius: 10px;
  background: -webkit-linear-gradient(top left, rgba(157,65,203,1) 0%, rgba(236,52,125,1) 33%, rgba(247,111,110,1) 72%, rgba(227,204,76,1) 100%);
  background: -o-linear-gradient(top left, rgba(157,65,203,1) 0%, rgba(236,52,125,1) 33%, rgba(247,111,110,1) 72%, rgba(227,204,76,1) 100%);
  background: linear-gradient(to bottom right, rgba(157,65,203,1) 0%, rgba(236,52,125,1) 33%, rgba(247,111,110,1) 72%, rgba(227,204,76,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.insta-inner {
  background: url(images/ico-insta.svg) no-repeat 95% 10%;
  background-size: 33px auto;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px 10px 10px;
  border: 2px solid #333333;
}

.insta-inner .ttl {
  font-size: 20px;
  color: #BC046E;
  font-weight: 700;
  line-height: 1.2;
}

.insta-inner span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

.txt16 + .txt16 {
  margin-top: 15px;
}

.nayami .c-center {
  background-color: #FAFAEA;
}

.nayami-thum {
  height: 0;
  width: 100%;
  margin: 0 auto 30px;
  padding-bottom: 26%;
  background: url(images/nayami.jpg) no-repeat top center;
  background-size: 100%;
}

.nayami-list {
  width: 84%;
  margin-left: 16%;
  margin: 0 auto;
  padding-bottom: 120px;
  background: url(images/nayami-arw.svg) no-repeat 50% 89%;
  background-size: 225px auto;
  position: relative;
}

.nayami-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #989898;
  position: relative;
  line-height: 1.5;
  font-size: 16px;
}

.nayami-list li:before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url(images/ico-check.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

h3:not([class]) {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 17px;
  position: relative;
  line-height: 1.4;
}

h3:not([class]):before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #1DA96F;
  border-radius: 2px;
}

.service .c-center {
  background-color: #EDFFF6;
}

.reason-list {
  position: relative;
  padding-left: 35px;
  padding-top: 10px;
}

.reason-list:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #333;
}

.reason-list li {
  margin-bottom: 40px;
  padding-left: 15px;
  position: relative;
}

.reason-list li:before {
  content: '';
  position: absolute;
  left: -34px;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #EEEE8A;
  border: 4px solid #1DA96F;
}

.reason-list li .reason-num {
  text-align: left;
}

.reason-list li .reason-num span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.reason-list li .reason-num p {
  display: block;
  font-size: 56px;
  line-height: 1;
  color: #1DA96F;
}

.reason-list li .reason-inner .ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.voice-list {
  margin-bottom: 25px;
  padding: 20px 25px;
  border-radius: 10px;
  background-color: rgba(29, 169, 111, 0.1);
}

.voice-list:nth-child(2n) {
  background-color: rgba(238, 238, 138, 0.1);
}

.voice-thum {
  width: 125px;
  margin: 0 auto 10px;
  text-align: center;
}

.voice-thum img {
  max-width: 95px;
  margin: 0 auto 13px;
  width: 100%;
}

.voice-thum .voicer {
  font-size: 14px;
  font-weight: 700;
}

.voice-info {
  width: 100%;
  margin-top: 10px;
}

.voice-info .ttl {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.movie-voice {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.movie-voice iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.voice-info .sub-ttl {
  font-weight: 500;
  color: #1DA96F;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
  max-width: 560px;
}

.faq-list {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 20px 20px;
}

.faq-list + .faq-list {
  margin-top: 30px;
}

.faq-question {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 25px;
}

.faq-question span ,
.faq-answer span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1DA96F;
  color: #fff;
  font-size: 20px;
}

.faq-answer span {
  background-color: #EEEE8A;
  color: #333;
}

.faq-question h3 {
  color: #3B4D53;
  font-weight: 700;
  width: calc(100% - 55px);
  margin-left: auto;
  margin-top: 6px;
}

.faq-answer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.faq-answer .txt16 {
  width: calc(100% - 55px);
  margin-left: auto;
}

.lead.type02:before {
  background: #EEEE8A;
}

.lead.type02 h2 {
  color: #ffffff;
}

.f-banner {
  margin: 24px 0 0px;
}

.f-banner ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 92.5%;
  margin: 0 auto 30px;
}

.ft-cv {
  width: 92.5%;
  max-width: 910px;
  margin: 0 auto;
  background: url(images/cv-ft-sp.jpg) no-repeat top center;
  background-size: cover;
  border: 3px solid #fff;
  padding: 55px 0 24px;
}

.ft-cv-inner h2 {
  color: #fff;
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0px 3px 6px #08643E;
}

.ft-cv-inner p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  text-shadow: 0px 3px 6px #08643E;
  margin-bottom: 20px;
}

.access-inner {
  display: block;
}

.access-info {
  width: 92.5%;
  margin: 0 auto 20px;
  color: #fff;
}

.access-map {
  width: 92.5%;
  margin: 0 auto 20px;
  height: 200px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-info__head {
  font-size: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.before-after_body {
  margin-top: 30px;
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
  margin-bottom: 30px;
}

.before-after li {
  width: 48%;
}

.case-thum {
  margin-bottom: 20px;
}

.research_results-wrap {
  margin-top: 30px;
  margin-bottom: 50px;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  width: 100%;
  max-width: 96%;
  margin: 0 auto 50px;
  padding: 30px 15px 40px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.07);
}


/*btn*/

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

.flex-right {
  justify-content:flex-end;
}

/* column */
.col-sp-1 { width: 8.33333333%; }
.col-sp-2 { width: 16.66666667%; }
.col-sp-3 { width: 25%; }
.col-sp-4 { width: 33.33333333%; }
.col-sp-5 { width: 41.66666667%; }
.col-sp-6 { width: 50%; }
.col-sp-7 { width: 58.33333333%; }
.col-sp-8 { width: 66.66666667%; }
.col-sp-9 { width: 75%; }
.col-sp-10 { width: 83.33333333%; }
.col-sp-11 { width: 91.66666667%; }
.col-sp-12 { width: 100%; }

.txt14 {
  font-size: 0.928571429rem;
}

.txt16 {
  font-size: 1rem;
}

.txt18 {
  font-size: 1.142857143rem;
}

.txt20 {
  font-size: 1.285714286rem;
}

strong {
  font-weight: bold;
}

/*color*/
.u-color-main {
  color: #1DA96F;
}
/*backgroud-color*/
.u-bg-main {
  background-color: #1DA96F;
}
/*==========
Effect
==========*/
.rotate {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.rotate.trigger {
  -webkit-animation-name: rotate;
          animation-name: rotate;
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

.fadeUpList > * {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.popUp {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUp.trigger {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

.popUpList > * {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUpList.trigger > * {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

@-webkit-keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.layout_flex {
    max-width: 1040px;
    margin: 15px auto 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.layout_flex .boxType {
    /*width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.layout_flex img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.layout_flex.col_r_01 {
  gap: 25px; /* カラム間の余白 */
}
.layout_flex.col_l_01 {
    display: flex;
    flex-direction: row-reverse; /* 要素の並びを逆にする */
    gap: 25px; /* カラム間余白 */
}

.layout_flex {
  margin: 20px 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.layout_flex.col_02 > *,
.layout_flex.col_03 > * {
  width: 100%;
}
.layout_flex.col_04 > * {
  width: calc((100% - 20px) / 2);
}
.content-btn-db {
  padding: 6px 26px;
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-sp {
  display: block !important;
}
.u-pc {
  display: none !important;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc{
  display:         box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n{
  font-weight: 500 !important;
}
.u-fw-b{
  font-weight: bold !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}

/*可変幅*/
@media screen and (max-width: 355px){
  
}