@charset "utf-8";
/* CSS Document */

:root {
  --primary-color: #E73656;
  /* オレンジ系 (画像参考) */
  --secondary-color: #007bff;
  /* 青系 (画像参考) */
  --text-color: #333;
  --background-color: #fff;
  --light-gray: #f4f4f4;
  --dark-gray: #555;
  --container-width: 1100px;
  --border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Regular*/
@font-face {
  font-family: "Myfont";
  src: url('../font/NotoSansJP-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*Medium*/
@font-face {
  font-family: "Myfont";
  src: url('../font/NotoSansJP-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*Bold*/
@font-face {
  font-family: 'Myfont';
  src: url('../font/NotoSansJP-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /*color: var(--text-color);*/
  background-color: var(--background-color);
  color: #49555C;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/* a:hover {
	opacity: .7;
} */
img {
  width: 100%;
  vertical-align: bottom;
}

.inner {
  max-width: 1200px;
  min-width: 1024px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.flexBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

h2.ttl {
  font-size: 3rem;
  letter-spacing: 0.05rem;
  padding-top: 50px;
  text-align: center;
}
h4 {
  display: inline-block;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
.inner h4+p {
  margin: 2rem auto;
  text-align: center;
  font-size: 24px;
}
.inner h4 > span {
	color: #E73656;
	font-weight: bold;
}
/** header
----------------------------------------------------------------------------**/
header {
  padding: 10px 6%;
}
header>.flexBox {
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 15%;
}
.headNav>li {
  margin-right: 25px;
}
.headNav>li:last-child {
  margin-right: 0;
}
.headNav a {
  font-size: 18px;
  color: #292929;
}
.headNav>li:last-child>a {
  background: #E73656;
  color: #fff;
  padding: 7px 25px;
  border-radius: 5px;
}
#js-header.is-show {
  position: fixed;
  width: 100vw;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 2;
}
/** hamburger　menu
----------------------------------------------------------------------------**/
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #292929;
  border-radius: 2px;
}

/** main
----------------------------------------------------------------------------**/
/* #main {} */
.fv {
  position: relative;
  margin-top: 5px;
  background: url("../images/bg_gray.jpg");
  background-size: cover;
  background-position-x: -180px;
  overflow: hidden;
}
.fv>.inner {
  max-width: inherit;
  min-width: inherit;
  margin: 0 auto;
  margin-left: 8%;
}
.fv>.flexBox {
  justify-content: space-between;
  text-align: left;
}
.fv_txt {
  margin-top: 5px;
  text-align: center;
}
.fv_txt>img {
  width: 35%;
}
.fv_txt>h2 {
  	font-weight: bold;
    font-size: 1.8vw;
    text-align: center;
    border-top: #49555C solid 1px;
    border-bottom: #49555C solid 1px;
    padding: 1.5rem 0px;
    margin: 2rem 0px;
}

span.title_pink {
    color: #E73656;
}
.fv_txt > h2 > span {
  font-size: 2.5vw;
}
.fv_txt {
  padding: 20px 8px;
	width: 50%;
}
.fv_txt small {
  display: block;
  text-align: left;
  margin: 1.2rem 0px;
}
.fv_txt sup {
	font-size: 0.6em;
}
.fv_img_wrap {
  position: relative;
  width: 50%;
}
.fv_img {
  width: 100%;
  position: relative;
  height: 60vh;
  min-width: 300px;
  overflow: hidden;
}

.fv_img .fade-img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  object-fit: cover;
  object-position: left
}

.fv_img .fade-img.show {
  opacity: 1;
}
.fv .btn_wrap {
	width: 48%;
}
.fv .btn_wrap:nth-child(2) {
    background-color: #fff;
}
.fv .btn_wrap:nth-child(2) a {
    color: #E73656;
}
.fv .btn_wrap:nth-child(2) span {
	background: #E73656;
	color: #fff;
}
.fv .btn_wrap:nth-child(2) span::after {
	border-color: #E73656 transparent transparent transparent;
}

/** Link BTN
---------------------------------------------**/
.btn_wrap {
	text-align: center;
	width: 85%;
	max-width: 410px;
    border-radius: 10px;
    background-color: #E73656;
    padding: 1rem 0px;
    margin: 3rem auto 0px;;
    position: relative;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	cursor : pointer;
}
.btn_wrap a {
	color: #fff;
    width: 100%;
    font-size: clamp(12px, 1.1vw, 28px);
    font-weight: 700;
    display: inline-block;
}
.btn_wrap:hover {
  transform: scale(0.99);
}

.btn_fv span::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #E73656 transparent transparent transparent;
}
.btn_fv span {
  color: #E73656;
  font-size: clamp(0.6rem, 1vw, 1.4rem);
  position: absolute;
  top: -65%;
  left: 4%;
  right: 4%;
  padding: 10px 0px;
  border: 2px solid #E73656;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.btn_fv span::after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/** infinity-scroll
---------------------------------------------**/
.scroll-infinity>h2 {
  font-size: 2.5rem;
}

.scroll-infinity>h2>span {
  color: #e73656;
  font-weight: bolder;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 9);
  margin: 0 25px;
}
.scroll-infinity__item>img {
  width: 100%;
}
/** reason
---------------------------------------------**/
#reason {
  background-image: linear-gradient(#ffffff, #F5F5F5);
  padding: 5rem 0px;
}

#reason h2 {
  color: #ffffff;
}
#reason .flexBox {
  justify-content: center;
  align-items: flex-start;
  margin-top: 4.5rem;
  opacity: 0;
  gap: 3%;
}
#reason .flexBox>li {
  width: 45%;
  background-color: #ffffff;
  margin-bottom: 3%;
}
#reason .flex_item {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  }
.flex_item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(73, 85, 92, 0) 0%, rgba(73, 85, 92, 0) 50%, rgba(73, 85, 92, 1) 100%);
}
.flex_item div {
  position: absolute;
  color: white;
  bottom: 4%;
  left: 4%;
  text-align: left;
  }
.flex_item p {
	margin-bottom: 5px;
}

.flex_item img {
  width: 100%;
  }

.flex_item  .item_title {
  font-size: 1.4rem;
  font-weight: bold;
}

/** point
---------------------------------------------**/
#point {
	background-color: #f5f5f5;
	padding: 3rem 0px;
}


@media (max-width: 767px) {
    .point_list {
        margin-top:32px
    }
}

.point_item_inner {
    max-width: 1200px;
    margin: 0 auto;
	text-align: left;
    display: -ms-grid;
    display: grid
}

.hukidashi {
    grid-area: hukidashi;
    background: no-repeat center/contain;
    padding-bottom: 40px
}

@media (max-width: 767px) {
    .hukidashi {
        padding-bottom:16px;
		text-align: center;
    }
}

.hukidashi img {
    max-height: 81px
}

@media (max-width: 767px) {
    .hukidashi img {
        max-height:none;
        max-width: 335px;
        width: 100%;
        margin: 0 auto
    }
}

.point_ttl {
    grid-area: ttl;
    font-size: 32px;
    color: #E73656;
    padding-left: 58px;
    padding-bottom: 16px;
    position: relative;
    font-weight: 600
}

@media (max-width: 767px) {
    .point_ttl {
        font-size:20px;
        padding-left: 36px;
		padding-bottom: 0px;
        margin: 0 auto
    }
}

.point_ttl::before {
    content: "";
    display: block;
    background: url("../img/02abc/point_icon_pointer.svg") no-repeat center/contain;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    left: 0
}

@media (max-width: 767px) {
    .point_ttl::before {
        width:30px;
        height: 30px
    }
}

.point_txt {
    grid-area: txt;
    max-width: 710px;
    padding-left: 58px;
    font-size: clamp(16px, 4vw, 18px);
}

@media (max-width: 767px) {
    .point_txt {
        margin-top:40px;
        max-width: none;
        padding-left: 0
    }
}

.point_img {
    grid-area: img;
    max-width: 380px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 767px) {
    .point_img {
        max-width:250px;
        margin: 40px auto 0
    }
}

.point_item {
    min-height: 450px;
    padding: 85px 0px 0px 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 1025px) and (max-width:1199px) {
    .point_item {
        padding:85px 40px
    }
}

@media (max-width: 1080px) {
    .point_item {
        padding:85px 20px
    }
}

@media (max-width: 767px) {
    .point_item {
        padding: 30px 0px;
    }
}
.point_item:nth-of-type(odd) .point_item_inner {
    grid-template-areas: "hukidashi img" "ttl img" "txt img";
    -ms-grid-rows: max-content max-content 1fr;
    grid-template-rows: max-content max-content 1fr;
    -webkit-column-gap: 100px;
    column-gap: 100px
}

@media (max-width: 767px) {
    .point_item:nth-of-type(odd) .point_item_inner {
        grid-template-areas:"hukidashi" "ttl" "img" "txt"
    }
}

.point_item:nth-of-type(even) .point_item_inner {
    grid-template-areas: "img hukidashi" "img ttl" "img txt";
    -ms-grid-rows: max-content max-content 1fr;
    grid-template-rows: max-content max-content 1fr;
    -webkit-column-gap: 100px;
    column-gap: 100px
}

@media (max-width: 767px) {
    .point_item:nth-of-type(even) .point_item_inner {
        grid-template-areas:"hukidashi" "ttl" "img" "txt"
    }
}


/*tips
---------------------------------------------**/
.tip_ttl {
	background-color: #ffffff;
    border-radius: 20px;
    padding: 36px 26px 36px 180px;
    margin: 64px 0px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;
    position: relative;
	overflow: visible;
	cursor : pointer;
}
.tip_ttl::after {
	position: absolute;
	content: '';
	display: inline-block;
	background-image: url('../img/02abc/point_icon_tips.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 100px;
    height: 40px;
    left: 2rem;
    top: 33%;
}


.m-table-02 {
    width: 100%;
    min-width: 100%;
    -webkit-box-shadow: 0 0 30px rgba(0,0,0,.1019607843);
    box-shadow: 0 0 30px rgba(0,0,0,.1019607843);
    border: 1px solid #fff;
    border-radius: 24px;
    overflow: hidden;
}

.m-table-02 td,.m-table-02 th {
    font-size: 1.1rem;
    border: 1px solid #f0f0f0;
}

.m-table-02 th {
    font-weight: 500;
    text-align: center;
}

.m-table-02 thead th {
    background-color: color-mix(in srgb,#f2f5f5 75%,#fff);
    padding: 13px 12px 11px;
}

.m-table-02 thead th:first-child {
    background-color: #dae2e6;
}

.m-table-02 tbody th {
    background-color: rgba(245,247,247,.5019607843);
    padding: 6px;
}

.m-table-02 tbody td {
    border-top: none;
    padding: 8px 4px 8px 8px;
}

.m-table-02 tbody td.is-strong {
    font-weight: 500;
    font-size: 1.4rem;
    border-top: 1px solid #f0f0f0;
    border-bottom: none;
    padding: 8px 16px;
}

.m-table-02 tbody td:has(ul) {
    background-color: rgba(245,247,247,.5019607843);
	    text-align: left;
}

.m-table-02 tbody td:has(ul) ul>li {
    display: grid;
    grid-template-columns: 1em 1fr;
}

.m-table-02 tbody td:has(ul) ul>li::before {
    content: "・"
}

.m-table-02__wrap {
    padding-bottom: 5px;
    margin-bottom: 24px;
}

.tip_table {
	display: none;
}
.tip_ttl::before { 
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	right: 3%;
	top: 35%;
	aspect-ratio: 1 / 1;
	background-color: #f81b46;
	-webkit-mask: url(../img/02abc/tip_icon_arrow.svg) no-repeat center / contain;
	mask: url(../img/02abc/tip_icon_arrow.svg) no-repeat center / contain;
	transform: rotate(90deg);
	transition: transform 0.3s ease-out;
}
.tip_ttl.close::before { 
	transform: rotate(-90deg); 
}
/** reason_detail
---------------------------------------------**/
#reason_detail {
  padding-bottom: 5rem;
  background: url("../images/bg_gray.jpg");
  background-size: cover;
  padding-top: 5rem;
}
/* .detail {} */
.detail {
  text-align: left;
  margin-top: 64px;
}
.detail>ul {
  background-color: #ffffff;
  padding: 3%;
}
.detail>.flexBox {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  opacity: 0;
}
.detail>.flexBox:last-of-type {
  margin-bottom: 0;
}

.detail>.flexBox>li:first-child {
  width: 40%;
}
.detail>.flexBox>li:last-child {
  width: 55%;
}
.detail>.flexBox>li>.flexBox {
  justify-content: left;
  gap: 5%;
  align-items: center;
}
.detail>.flexBox>li>div>b {
  color: #E73656;
  font-size: 5rem;
  font-weight: normal;
  font-family: 'Impact', sans-serif;
  margin-left: 15px;
}

.detail>.flexBox>li>div>p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
.detail>.flexBox>li>p {
  font-size: 18px;
  line-height: 2;
}
.detail>.flexBox>li>p>b {
  color: #E73656;
  font-size: clamp(16px, 4vw, 22px);
}

.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/** download
---------------------------------------------**/
.download {
	background-image: url(../img/01ab/performance_bg.png);
	padding: 5rem 0px;
}
.download  h4{
	border-left: none;
	border-right: none;
	margin-bottom: 36px;
}
.download .flexBox {
	display: flex;
	background-color: #fff;
	padding: 68px 32px;
	margin-top: 3.5rem;
	box-shadow: 0px 5px 33px 0px rgba(0, 0, 0, 0.15);
}
.download .flexBox > img.download_img {
	width: 45%;
}
.download .flexBox > div.download_txt {
	width: 55%;
}
.download ul.download_list {
	text-align: left;
    margin-left: 20%;
	font-size: clamp(16px, 4vw, 26px);
    line-height: 2;
	margin-bottom: 72px;
}
.download ul.download_list > li > span {
	font-size: clamp(0.7rem, 3vw, 1.1rem);
}
.download ul.download_list > li {
	position: relative;
	font-weight: bold;
}
.download ul.download_list > li::before {
	position: absolute;
    left: -2.2rem;
	top: 3px;
    content: url(../img/01ab/checkmark.svg);
    width: 1.6rem;
}
.dl_white {
	background-color: #ffffff;
	padding: 46px;
}


.attention {
	text-align: left;
	margin-top: 32px;
}
.attention p {
	display: inline-block;
	padding: 8px 16px;
	font-size: 1.2rem;
	border: solid 1px #292929;
}

.attention-list {
  list-style: none; /* デフォルトの点を消す */
  padding-left: 1em; /* 全体の左余白 */
}
.attention-list li {
  display: flex;
  align-items: flex-start;
}

.attention-list li::before {
  content: "※";
  margin-right: 0.4em;
  flex-shrink: 0;
}


/**sample
---------------------------------------------**/
#sample {
	padding: 5rem 0px;
    background-image: linear-gradient(#ffffff, #F5F5F5);
}
#sample .btns {
	margin: 86px 0px 0px 0px;
}
#sample button {
    color: #E73656;
    width: 49%;
    padding: 16px 0px;
    border: solid, 2px #E73756;
    border-radius: 10px 10px 0px 0px;
    background-color: #fff;
    font-size: clamp(1rem, 2.2vw, 1.7rem);
    font-weight: bold;
    border-bottom: none;
    font-family: inherit;
    cursor: pointer;
}
#sample button:hover {}


#training_content,
#seminar_content {
  display: none;
  box-shadow: 0px 5px 33px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

#training_btn.active,
#seminar_btn.active {
  color: #fff;
  background-color: #E73656;
  padding: 16px 0px;;
  border-radius: 10px 10px 0px 0px;
  /*box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);*/
}

#training_content.active,
#seminar_content.active {
  display: block;
}

.tabcontent_inner {
    padding: 60px;
	text-align: left;
	background-color: #ffffff;
	border-radius: 10px;
	font-weight: bold;
	font-size: 18px;
	line-height: 2.2rem;
	border-top: solid 16px #E73656;
}
.tabcontent_inner > .flexBox:nth-child(1) {
	margin-bottom: 64px;
}
.tabcontent_inner .tabcontent_txt {
	width: 63%;
}
.tabcontent_img {
	width: 30%;
}
.tabcontent_inner .tabcontent_ttl {
	font-weight: bolder;
	font-size: 1.6rem;
}
.tabcontent_ttl, p.tabcontent_name, .tabcontent_list-ttl {
    margin-bottom: 24px;
}
p.tabcontent_list-ttl {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #E73656;
    color: #E73656;
    font-weight: bold;
}

.before {
	width: 48%;
}
.before p {
	display: inline;
    background-color: #f5f5f5;
	font-weight: bold;
    padding: 8px 15px;
}

.before_list {
	background-color: #f5f5f5;
	margin: 24px 0px;
	padding: 1.5rem 3.5rem;
	min-height: 250px;
}
.before_list > li, .after_list > li {
	list-style: disc;
}

.after {
	width: 48%;
}
.after p {
	display: inline;
    background-color: #FFF2F5;
	color: #E73656;
	font-weight: bold;
    padding: 8px 15px;
}

.after_list {
	background-color: #FFF2F5;
	margin: 24px 0px;
	padding: 1.5rem 3.5rem;
	min-height: 250px;
}


/** contact
---------------------------------------------**/
#contact {
  margin-top: 5rem;
}
#contact .inner{
 padding-top: 4rem;
}
#contact .bg_img {
  padding: 30px 0 20px;
  background: url(../images/performance_bg.png);
  background-size: cover;
}

footer {
  padding: 10px 0;
}
footer p {
  font-size: 15px;
  text-align: center;
}

.sp-only {
		display: none;
	}

/** TAB
---------------------------------------------**/
@media (max-width: 1024px) and (min-width: 768px) {
  #wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  .inner {
    max-width: 94%;
    min-width: 94%;
    width: 94%;
    margin: 0 auto;
  }


  h2.ttl {
    font-size: 2.8vw;
    margin-top: -70px;
  }
  /** header
	--------------------------------------------------**/
  header {
    padding: 15px 3%;
  }
  header .logo {
    width: 20%;
  }
  header .logo>img {
    vertical-align: middle;
  }
  .headNav {
    /*width: 80%;*/
  }
  .headNav>li {
    margin-right: 15px;
  }
  .headNav a {
    font-size: 1.6vw;
  }
  .headNav>li:last-child>a {
    padding: 5px 15px;
  }

  /** main
	----------------------------------------------------------------------------**/
  .fv {
    background-position-x: -28rem;
  }
  .fv_txt>p {
    font-size: 1.5vw;
  }
  .fv_txt>p:last-of-type {
    font-size: 2vw;
  }
  .fv_txt>span {
    font-size: 1.7vw;
	top: -50%;
    font-size: clamp(0.6rem, 1vw, 1.4rem);
  }

  a.btn_fv {
    width: 85%;
    padding: 12px 0;
    font-size: 1.3vw;
	display: inline;
  }

  /** infinity-scroll
	---------------------------------------------**/
  .scroll-infinity {
    padding: 4rem 0;
  }
  .scroll-infinity__item {
    width: calc(100vw / 6);
    margin: 0 15px;
  }

  /** reason
	---------------------------------------------**/

  #reason .flexBox>li>a>p {
    font-size: 15px;
    line-height: 1.9;
  }
  /** reason_detail
	---------------------------------------------**/

  .detail>.flexBox>li>div>p {
    font-size: 2.5vw;
  }
  .detail>.flexBox>li>p {
    font-size: 1.85vw;
  }
   
  /** contact
	---------------------------------------------**/
  #contact h4 {
    font-size: 3.5vw;
  }
  #contact h4>span {
    font-size: 2.2vw;
  }
}



/** SP
---------------------------------------------**/
@media screen and (max-width: 768px) {
  /** common
	--------------------------------------------------**/
  #wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  .inner {
    max-width: 92%;
    min-width: 92%;
    width: 92%;
    margin: 0 auto;
  }

  h2.ttl {
    font-size: 5vw;
    margin-top: -20px;
  }
  .pc-only {
    display: none;
  }
  .inner h4{
    font-size: clamp(20px, 5vw, 26px);
  }
	.inner h4+p {
	font-size: clamp(16px, 4vw, 24px);
	}
  .sp-only {
		display: block;
	}

  /** header
	--------------------------------------------------**/
  header {
    padding: 10px 2%;
  }
  header .logo {
    width: 45%;
  }
  header .logo>img {
    vertical-align: middle;
  }

  .headNav>li {
    margin-right: 10px;
  }
  .headNav a {
    font-size: 3.3vw;
  }
  .headNav>li:last-child>a {
    padding: 5px 15px;
  }


  /** hamburger　menu
----------------------------------------------------------------------------**/
  /* レスポンシブ対応 */

  .headNav {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100vw;
    left: 0;
    position: absolute;
    top: 60px;
    right: auto;
    padding: 10px 0;
    z-index: 1;
  }

  .headNav.is-open {
    display: flex;
  }
  .headNav li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
  }
  .headNav li {
    width: 50%;
    max-width: 500px;
    text-align: center;
  }

  .headNav li:nth-child(2) a {
    margin-bottom: 15px;
  }
  .headNav li:nth-child(3) a {
    margin-bottom: 30px;
  }
  .headNav li:nth-child(4) a {
    margin-bottom: 50px;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 2;
    margin-left: auto;

  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
  }
  .hamburger span {
    transition: all 0.3s ease;
  }


  /** main
	----------------------------------------------------------------------------**/
  /* #main {} */
  .fv {
    position: relative;
    margin-top: 5px;
    background: url("../images/bg_gray.jpg")no-repeat;
    background-position-x: 92%;
    background-size: cover;
  }
  .fv .inner {
    margin: auto;
    flex-direction: column-reverse;
    width: 100%;
  }
  .fv_txt,
  .fv_img {
    width: 100%;
  }
  .fv_txt {
    width: 100%;
    margin-top: 0px;
  }
	
  .fv_txt > h2 {
	margin: 2rem 0px 0px 0px;
	}
	.fv_txt > h2,
	.fv_txt > h2 > .title_pink {
		font-size: 3.8vw;
	}
  .fv_txt > h2 > span {
  font-size: 5.4vw;
	}
  .fv_txt>p {
    font-size: 3vw;
    margin-bottom: 1rem;
    text-align: center;
  }

  .fv_txt>p:last-of-type {
    font-size: clamp(1rem, 7vw, 2rem);
  }
  .fv_txt > p > b {
	font-size: clamp(2rem, 6vw, 2.5rem);
  }	
  .fv_txt>span {
    margin-top: 15px;
    font-size: 3vw;
  }
  .fv_txt>img {
    width: 80%;
    margin: 10px 0;
  }
  .btn_fv span {
    font-size: clamp(0.8rem, 2vw, 1rem);
	left: 4%;
	right: 4%;
	top: -2rem;
  }
  .fv_img {
    display: block;
    height: 30vh;
    width: 100%;
    margin: 0 auto 5px;
    display: none;
  }

  a.btn_fv {
    width: 94%;
    padding: 15px 0;
    font-size: clamp(16px, 4vw, 24px);
    margin: 5px auto 30px;
	display: inline;
  }
  .fv .btn_wrap {
    width: 100%;
	max-width: 460px;
	margin: 4rem auto 0px;
	}
  /** infinity-scroll
	---------------------------------------------**/
  .scroll-infinity {
    padding: 2rem 0;
  }
  .scroll-infinity h2 {
    padding-top: 0;
  }
  .scroll-infinity__item {
    width: calc((100vw - 40px) / 4);
    /*width: calc(100vw / 4);*/
    margin: 0 10px;
  }
  /** point
	---------------------------------------------**/
	.point_ttl {
		font-size: clamp(18px, 6vw, 26px);
	}
	.tip_ttl {
		margin: 10px 0px;
        padding-left: 80px;
        font-size: 3vw;
        white-space: nowrap;
	}
	.tip_ttl::after {
		width: 60px;
		height: 20px;
		left: 3%;
		top: 40%;
	}
  /** reason
	---------------------------------------------**/
  #reason {
    margin-bottom: 0;
	padding: 4rem 0px;
  }
  #reason .flex-box {
    margin-top: 0;
  }
	.flex_item .item_title {
		font-size: clamp(15px, 4vw, 20px);
	}
  #reason .flexBox>li {
    width: 100%;
  }
  #reason .flexBox>li>a>p {
    font-size: 2.5vw;
    margin-top: 15px;
  }
	
  /** reason_detail
	---------------------------------------------**/
  #reason_detail {
    padding-bottom: 5rem;
  }
  .detail {
    margin-top: 3rem;
  }
  .detail>.flexBox {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
  }
  .detail>.flexBox:last-of-type {
    margin-bottom: 0;
  }

  .detail>.flexBox>li:first-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .detail>.flexBox>li:last-child {
    width: 80%;
    margin: 0 auto;
  }
  .detail>.flexBox>li>b {
    font-size: 10vw;
    font-family: 'Impact', sans-serif;
    margin-left: 0px;
    width: 10%;
  }
  .detail>.flexBox>li>div>p {
    font-size: 4vw;
    line-height: 1.5;
  }

  .detail>.flexBox>li>p:first-of-type {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 20px;
    line-height: 1.7;
    width: 100%;
  }
  /** download
	---------------------------------------------**/
  .download {
		padding: 5rem 0px;
  }
  .download .flexBox {
    display: block;
	padding: 24px 10px;
	margin-top: 2rem;
  }
	.download h4 {
	margin-bottom: 0px;
	font-size: clamp(18px, 4vw, 26px);
	}
  .download .flexBox > div.download_txt {
	width: 100%;
  }
	.dl_white { 
		padding: 24px 20px;
	}
  .download ul.download_list {
	font-size: clamp(18px, 4vw, 22px);
	margin-bottom: 24px;
    line-height: 1.7;
  }
  .download .flexBox > img.download_img {
    width: 80%;
	margin-bottom: 20px;
  }
	.attention {
			font-size: clamp(12px, 3vw, 16px);
		}
		.attention p {
			font-size: clamp(12px, 3vw, 16px);
	}
  /** sample
	---------------------------------------------**/
	#sample button {
	width: 49%;
	}
	#sample .btns {
    margin: 49px 0px 0px 0px;
	}
	#sample .tabcontent_txt {
		width: 100%;
	}
	#sample .tabcontent_inner {
		border-radius: 0px;
		padding: 32px 20px;
	}
	#sample .tabcontent_inner .tabcontent_ttl {
		font-size: 1.3rem;
	}
	#sample .tabcontent_img {
		margin-top: 20px;
	}
	#sample .tabcontent_img,#sample .tabcontent_txt, #sample .before, #sample .after {
		width: 100%;
	}
	#sample .before_list, #sample .after_list {
		padding: 32px 10%;
		min-height: 200px;
	}
 

  /** contact
	---------------------------------------------**/
  #contact {
    margin-top: 3rem;
  }
  #contact h4 {
    text-align: center;
    font-size: clamp(16px, 5.2vw, 26px);
    font-weight: bold;
    margin-top: 1rem;
  }
  #contact h4>span {
    display: block;
    font-size: 3.8vw;
    font-weight: normal;
    padding-top: 15px;
  }

  footer {
    padding: 10px 0;
  }
  footer p {
    font-size: 15px;
    text-align: center;
  }
}


@media screen and (min-width: 426px) {
	.mobile_only {
		display: none;
	}
	
}
