@charset "utf-8";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/****************************
  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: 16px;
  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.6;
  color: #333333;
  min-width: 1100px;
  position: relative;
  background-color: #1DA96F;
}

body {
  position: relative;
}

ol, ul {
  list-style: none;
}

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

select {
  font-size: 14px;
  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: 70px;
  padding: 11px 30px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}

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

.sidebar {
  position: fixed;
  top: 50px;
  right: 0px;
  z-index: 10;
  opacity: 0;   /* 初期は透明 */
  transition: opacity 0.6s ease; /* ふわっと */
  background-color: #fff;
  padding: 20px;
  width: 270px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}

.sidebar.active {
  opacity: 1;   /* 表示 */
}

.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.active a {
  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;
  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: 23px 0;
  z-index: 30;
  border-top-right-radius: 10px;
}

/* 表示状態のクラス（左下からスライドイン） */
.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: 370px;
  margin: 0 20px 20px;
  font-size: 20px;
}

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

.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: 16px;
  padding: 9px 0;
}

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

.fixed-banner .cv li.cv__tell a {
  background-size: 16px 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 80% 140%;
  background-size: 60%;
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 90px 55px 41px;
  box-sizing: content-box;
}

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

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

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

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

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

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

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

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

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

.mv-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mv-list li {
  width: 246px;
  border: 3px solid #A7C7BA;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  position: relative;
  padding: 11px;
  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;
}

.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: 35px;
  position: relative;
}

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

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

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

.check-list li {
  font-size: 16px;
  padding-left: 30px;
  background: url(images/ico-check.svg) no-repeat 0px 3px;
  background-size: 20px auto;
  margin-bottom: 17px;
  font-weight: 500;
}

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

.price-head {
  position: relative;
}

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

.price-ttl span {
  font-size: 60px;
  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: 63px auto;
  color: #fff;
  padding-left: 85px;
  padding-right: 85px;
}

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

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

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

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

.price-label {
  position: absolute;
  left: -65px;
  top: -20px;
  width: 132px;
  height: 132px;
  line-height: 132px;
  border-radius: 50%;
  font-size: 40px;
  text-align: center;
  background-color: #EEEE8A;
}

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

.price-num01 {
  font-size: 80px;
  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: 32px;
}

.price-num01:before {
  content: '';
  position: absolute;
  top: 122px;
  right: 135px;
  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: 144px;
  top: 103px;
  border: 0 solid transparent;
  border-top: 7px solid red;
  border-radius: 20px 0 0;
  width: 28px;
  height: 28px;
  -webkit-transform: rotate(74deg);
  transform: rotate(74deg);
}

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

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

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

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

.price-btm {
  background-color: #064A2E;
  padding: 23px 0;
}

.cv-ttl {
  text-align: center;
  color: #EEEE8A;
  font-weight: 700;
  font-size: 30px;
  width: 650px;
  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: 20px;
}

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

.cv li {
  width: 330px;
}

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

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

.cv li.cv__tell a {
  background: url(images/ico-tell.svg) no-repeat 90% 50%;
  background-size: 27px 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;
  gap: 2%;
  margin-top: 20px;
}

.business-btn li {
  width: 49%;
}

.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: 80px;
  padding: 30px;
  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 88% 50%;
  background-size: 83px auto;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  border: 2px solid #333333;
}

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

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

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

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

.nayami-list {
  width: 625px;
  margin: 0 auto;
  padding-bottom: 150px;
  background: url(images/nayami-arw.svg) no-repeat 50% 84%;
  background-size: 325px auto;
  position: relative;
}

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

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

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

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

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

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

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

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

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

.reason-list li .reason-num {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}

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

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

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

.voice-list {
  margin-bottom: 25px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  // padding: 20px 35px;
  padding: 40px 85px;
  padding-left: 35px;
  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: 200px;
  text-align: center;
}

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

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

.voice-info {
  width: calc(100% - 148px);
  margin-left: auto;
}

.voice-info .ttl {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  max-width: 600px;
}

.voice-info .txt16 {
  max-width: 600px;
}

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

.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%;
}

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

.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: 54px;
  height: 54px;
  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: 24px;
}

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

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

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

.faq-answer .txt16 {
  width: calc(100% - 75px);
  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;
  gap: 30px;
}

.ft-cv {
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
  background: url(images/cv-ft.jpg) no-repeat top center;
  background-size: cover;
  padding: 105px 0 54px;
}

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

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

.access-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 30px;
}

.access-info {
  color: #fff;
}

.access-map {
  width: 440px;
  height: 266px;
}

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

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

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

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

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

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

.research_results-wrap {
  margin-top: 50px;
  margin-bottom: 80px;
}
/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  width: 100%;
  margin: 0 auto 80px;
  padding: 60px 90px 80px;
  max-width: 1090px;
  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);
}

.c-center02 {
  width: 100%;
  margin: 0 auto 50px;
  padding: 30px 0px 30px;
  max-width: 910px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*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-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-62 { width: 47.92%; }
.col-7 { width: 58.33333333%; }
.col-72 { width: 52.08%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }


.txt14 {
  font-size: 0.875rem;
}

.txt16 {
  font-size: 1rem;
}

.txt18 {
  font-size: 1.125rem;
}

.txt20 {
  font-size: 1.25rem;
}

strong {
  font-weight: bold;
}

/*color*/
.u-color-main {
  color: #1DA96F;
}
/*backgroud-color*/
.u-bg-main {
  background-color: #1DA96F;
}

.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: 30px;
}
.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: 45px; /* カラム間の余白 */
}
.layout_flex.col_r_01 > *:first-child {
    flex: 0 0 35%; /* 左カラム（画像） */
}
.layout_flex.col_r_01 > *:last-child {
    flex: 1; /* 右カラム（自動で残りを埋める → 約65%） */
}
.layout_flex.col_l_01 {
    display: flex;
    flex-direction: row-reverse; /* 要素の並びを逆にする */
    gap: 45px; /* カラム間余白 */
}

.layout_flex.col_l_01 > *:first-child {
    flex: 0 0 35%; /* 画像カラム */
}

.layout_flex.col_l_01 > *:last-child {
    flex: 1; /* テキストカラム（残りを埋める） */
}
.layout_flex.col_02 > * {
    width: calc((100% - 30px) / 2);
}
.layout_flex.col_03 > * {
    width: calc((100% - 60px) / 3);
}
.layout_flex.col_04 > * {
    width: calc((100% - 90px) / 4);
}



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

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

/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: block !important;
}
.u-sp {
  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{
  padding-top: 0 !important;
}
.u-pt-8{
  padding-top: 8px !important;
}
.u-pt-16{
  padding-top: 16px !important;
}
.u-pt-24{
  padding-top: 24px !important;
}
.u-pt-32{
  padding-top: 32px !important;
}
.u-pt-40{
  padding-top: 40px !important;
}
.u-pt-48{
  padding-top: 48px !important;
}
.u-pt-56{
  padding-top: 56px !important;
}
.u-pt-64{
  padding-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-r{
  font-weight: 400 !important;
}
.u-fw-n{
  font-weight: 500 !important;
}
.u-fw-b{
  font-weight: 700 !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: 1300px){
  
}