@charset "UTF-8";

/* フォントの指定
--------------------------------------------- */
@font-face {
    font-family: "NotoSansJP";
    src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
           font-weight: 400;
           font-style: normal;
           display:swap;
}
@font-face {
    font-family: "NotoSansJP";
    src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
           font-weight: 500;
					 font-style: normal;
           display:swap;
}
@font-face {
    font-family: "NotoSansJP";
    src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
          font-weight: 700;
           font-style: normal;
           display:swap;
}
@font-face {
    font-family: "NotoSansJP";
    src: url("../fonts/NotoSansJP-Black.woff2") format("woff2");
          font-weight: 800;
					font-style: normal;
          display:swap;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-Regular.woff2") format("woff2");
           font-weight: 400;
           font-style: normal;
           display:swap;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-Medium.woff2") format("woff2");
           font-weight: 500;
           font-style: normal;
           display:swap;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-SemiBold.woff2") format("woff2");
           font-weight: 600;
           font-style: normal;
           display:swap;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-SemiBoldItalic.woff2") format("woff2");
           font-weight: 600;
           font-style: italic;
           display:swap;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-Bold.woff2") format("woff2");
           font-weight: 700;
           font-style: normal;
           display:swap;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-BoldItalic.woff2") format("woff2");
           font-weight: 700;
           font-style: italic;
           display:swap;
}
body {
  font-size: 1rem;
	line-height: 1.5;
}
.notosans,html,body {
  font-family: "Helvetica Neue", "Helvetica", 'NotoSansJP', sans-serif ,"YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo";
}
.josefin {
	font-family: "JosefinSans", "Helvetica Neue", "Helvetica", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}


/* 全体
--------------------------------------------- */

#fixed-bottom-menu {
  display: none;
}

html {
	box-sizing: border-box;
  color: #191919;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
body {
	color: #191919;
	padding: 0;
	margin: 0;
}
a {
  text-decoration: none;
  background-color: transparent;
}
p {margin: 0; padding: 0;vertical-align:baseline;}
img {
	border-style: none;
  height: auto;
	max-width: 100%;
}
.txt_cl_gr {
	color: #00aaa0;
}
.txt_cl_or {
	color: #ff931e;
}
.txt_cl_y {
	color: #fdf57a;
}
.txt_cl_kon {
	color: #004678;
}
.txt_cl_bk {
	color: #000;
}
.txt_udl{
    text-decoration: underline;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.pc {display: block;}
.sp {display: none;}
@media screen and (max-width:640px){
	.sp {display: block;}
	.pc {display: none;}
}
h1,h2,h3,h4 {font-size: 1em;clear: both; margin:0;}

/* サイド固定ボタン */

.btn_contact_txt {
  font-size: 1.375em;
  font-size: clamp(1em,1.6vw,1.375em);
  padding: 4% 2% 3% 2%;
  display: flex;
  justify-content: center;
  line-height: 1.4;
  text-align: center;
}
.btn_contact_txt_size {
  font-size: 1.1818em;
}
.btn_contact_txt_size.txt_cl_gr {
    font-size: 1.5em;
}
.btn_contact_fix {
	position: fixed;
	top: 0;
	right: 0;
	background: #fff;
  border: 3px solid #FFF;
  box-sizing: border-box;
  text-align: left;
  z-index: 3;
  max-width: 300px;
  min-width: 220px;
  width: 22vw;
}
.btn_contact_fix a {
  height: 100%;
  width: 100%;
  color: #000;
  font-weight: bold;
}
.btn_contact_btn {
	color: #FFF;
  text-align: center;
  width: 100%;
  background: linear-gradient(to right, #8bdf3f, #22b573);
  padding: 5.2% 5%;
  font-size: 1.1818em;
  font-size: clamp(1em,2vw,1.1818em);
  position: relative;
  letter-spacing: 0.1em;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_contact_btn::after{
  position: absolute;
  content: '';
  right: 6px;
  bottom: 6px;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  border: 11px solid transparent;
  border-right: 11px solid #fff;
  border-bottom: 11px solid #fff;
}

@media screen and (max-width:1100px){
.btn_contact_btn::after {
    width: 6px;
    height: 6px;
    border: 6px solid transparent;
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff;
  }
}

@media screen and (max-width:640px){
  .btn_contact_fix {
    bottom:0;
    top: auto;
    height: 65px;
    width: 100%;
    max-width: 100%;
  }
  .btn_contact_txt {
    display: none;
  }
}


/* FV
--------------------------------------------- */
.sec_fv {
  position: relative;
  z-index: -2;
  color: #FFF;
  overflow: hidden;
    min-height: 100vh;
}
.sec_fv::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/miniej/bg_fv.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  animation: fade_fv 8s both;
}
.sec_fv::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background-color: rgba(0, 70, 120, 0.6);
  z-index: -1;
}
@keyframes fade_fv {
  0% {
      -webkit-transform: scale(1.1) translateZ(0);
      transform: scale(1.1) translateZ(0);
  }

  100% {
      -webkit-transform: scale(1) translateZ(0);
      transform: scale(1) translateZ(0);
  }
}
.wrap_fv {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 130px 0;
}
.ttl_main {
  max-height: 204px;
  height: 100%;
    width: 52%;
  margin: 0;
  padding: 0;
}
.ttlbox_main {
  max-width: 770px;
  width: 55vw;
  max-height: 204px;
  height: 15vw;
  padding-left: 5.5%;
  padding-top: 4.8%;
  position: relative;
}
.bg_header {
   background: linear-gradient(to right, #20aac4 0%,#0071bc 26%); 
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  max-width: 770px;
  width: 55vw;
  max-height: 204px;
  height: 15vw;
  z-index: -1;
}
.logo_img img{
  width: 100%;
  display: block;
}
.logo_txt {
  display: block;
  font-size: 1.25rem;
    font-size: clamp(0.8rem, 1.5vw, 1.5rem);
  color: #FFF;
  margin-bottom: 5px;
}
.logo_img {
    display: block;
    max-width: 180px;
}
.ttl_subcopy {
  font-size: 1.5em;
  font-size: clamp(1.0625em,1.69vw,1.5em);
  margin-bottom: 15px;
}
.copy_main_box {
  text-align: center;
  margin-bottom: 30px;
}
.ttl_maincopy {
  font-size: 3.375em;
  font-size: clamp(1.68em,3.8vw,3.375em);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.maincopy_a {
  font-size: 1.24em;
}
.maincopy_b {
  font-size: 1.462em;
}
.ttl_point_main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 2rem;
  font-size: clamp(1.05em,2.3vw,2em);
  font-weight: bold;
  letter-spacing: 0.1em;
  width: auto;
}
.ttl_point_main_en {
  align-items: center;
}
.ttl_point_txt {
  text-align: center;
}
.ttl_point_main::before,.ttl_point_main::after {
  content: '';
  height: 35px;
  width: 3px;
  border-radius: 2px;
  background-color: #FFF;
}
.ttl_point_main::before {
  transform:rotate(-25deg) translate(0px, 4px);
  margin-right: 20px;
}
.ttl_point_main::after{
  transform:rotate(25deg) translate(0px, 4px);
  margin-left: 20px;
}
.ttl_point_a {
  font-size: 1.218em;
}
.ttl_point_logo {
  width: 355px; 
  margin-right: 5px;
}
.ttl_point_logo img {
  width: 100%;
}
.wrap_gyoukai span{
  display: block;
}
.wrap_gyoukai .tsume ,.tsume{
  letter-spacing: -0.2em;
  display: inline;
}
.list_point_main {
  width:min(100%,870px);
    aspect-ratio:87/61;
  margin: 0 auto ;
    padding: 0;
  display: flex;
  justify-content: space-between;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
.list_point_main li {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: relative;
    counter-increment: mycounter;
    list-style: none;
    z-index: 2;
}
.list_point_main_en li {
  font-size: clamp(1em, 3vw, 1.2em);
  padding: 2%;
  line-height: 1.2;
}
.list_point_main span {
  display: inline-flex;
}
.list_point_main_en span {
  display: inline;
}
.border_y {
  position: relative;
}
.border_y_en {
  background-color: #fdf57a;
}
.border_y::after{
  content: '';
  position: absolute;
  width: 110%;
  height: 13px;
  background-color: #fdf57a;
  bottom: 0;
  left: -5%;
  z-index: -1;
}
.boder_t::before,.boder_t::after,.boder_b::before,.boder_b::after {
  content: '';
  position: absolute;
  width: 32.5%;
  height: 32.5%;
  opacity: 0.3;
  display: block;
}
.boder_t::before,.boder_t::after {
  top: -2px;
  border-top: 5px solid #22b573;
}
.boder_t::before {
  left: -2px;
  border-left: 5px solid #22b573;
  border-top-left-radius: 88%;
}
.boder_t::after {
  right: -2px;
  border-right: 5px solid #22b573;
  border-top-right-radius:88%;
}
.boder_b::before,.boder_b::after {
  bottom: -2px;
  border-bottom: 5px solid #22b573;
}
.boder_b::before {
  left: -2px;
  border-left: 5px solid #22b573;
  border-bottom-left-radius: 88%;
}
.boder_b::after {
  right: -2px;
  border-right: 4px solid #22b573;
  border-bottom-right-radius:88%;
}

.list_point_img {
  height: 34%;
}
.list_point_img img{
  margin-top: -8px;
  width: auto;
  height: 100%;
}
.list_point_txt {
  text-align: center;
}

@media screen and (max-width:980px){
  .ttl_subcopy .sp2{
    display: block;
  }
}

@media screen and (max-width:760px){
  .ttl_subcopy .sp{
    display: block;
  }

  .list_point_main {
    padding: 0;
  }
  .list_point_main li {
  }
  .ttl_point_logo {
    width: 50vw; 
  }
  .ttl_point_main {
    margin-bottom: 20px;
  }
  .ttl_point_main::before,.ttl_point_main::after {
    height: 25px;
    width: 2px;
    border-radius: 2px;
  }
  .boder_t::before,.boder_t::after,.boder_b::before,.boder_b::after {
    width: 30px;
    height: 30px;
  }
  .boder_t::before,.boder_t::after {
    border-top: 2px solid #22b573;
    top: 0px;
  }
  .boder_t::before {
    border-left: 2px solid #22b573;
    border-top-left-radius: 36px;
    left: 0px;
  }
  .boder_t::after {
    border-right: 2px solid #22b573;
    border-top-right-radius:36px;
    right: 0;
  }
  .boder_b::before,.boder_b::after {
    border-bottom: 2px solid #22b573;
    bottom: 0;
  }
  .boder_b::before {
    border-left: 2px solid #22b573;
    border-bottom-left-radius: 36px;
    bottom: 0;
  }
  .boder_b::after {
    border-right: 2px solid #22b573;
    border-bottom-right-radius:36px;
  }
  .list_point_txt {
    text-align: left;
  }
  .list_point_img {
    margin-right: 15px;
    height: auto;
    width: 30%;
  }
}

@media screen and (max-width:640px){
  .sec_fv {
        padding-top: 0;
        padding-bottom: 0;
  }
 .sec_fv::after {
    background-size: 100% auto;
    background-repeat: repeat;
}
  .l-header {
    width: 100%;
  }
  .bg_header {
    background:none;
    clip-path: none;
    position: absolute;
    max-width: inherit;
        width: 100%;
        height: 120px;
    overflow: hidden;
  }
  .copy_main_box {  
    margin-bottom: 70px;
  }
  .bg_header::before {
    content: '';
   background: linear-gradient(to right, #20aac4 0%,#0071bc 26%); 
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    position: absolute;
    max-width: inherit;
        width: 100%;
        height: 100%;
  }
  .ttlbox_main {     
    padding-left: 0;
    padding-top: 1px;
    width: 100%;
  }
  .logo_img,.ttl_main {
    width: 35vw;
  }
}

@media screen and (max-width:400px) and (max-height:600px){ 
  .circle_gyoukai {
      width: 115px;
      height: 115px;
      top: 91px;
      left: 4%;
  }
  .sec_fv {
    padding-top: 139px;
  }
  .ttl_subcopy {
      font-size: clamp(0.9em,1.69vw,1.5em);
      text-align: left;
      padding-left: 40%;
  }
  .copy_main_box {
      margin-bottom: 40px;
  }
}

/* ヘッダー
--------------------------------------------- */

header {
  display: block;
}
.head_inner {
	display: none;
}
.l-header {
	position: absolute;
  padding: 0;
  z-index: 4;
  top: 0;
  left: 0;
}
.l-header__container {
	height: 100px; /* ヘッダー高さ */
	max-width: 2000px; /* ヘッダーコンテンツ内側の最大幅 */
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.h_menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
	justify-content: space-around;
}
.h_menu_wrap {
	width: calc(100% - 534px);
  padding: 4px 2.5% 0 2.5%;
}
.h_menu li {
  line-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
	height: 100%;
	margin: 0 1.25%;
}
.h_menu li a{
	color: #4C4C4C;
	font-weight: 500;
	font-size: 0.888em;
	text-decoration: none;
  z-index: 2;
	transition: 500ms;
}
.h_menu li a:hover {
	opacity: 1;
	color: #4399F8;
	font-weight: 600;
	transform: translate(2px,2px);
	transition: 500ms;
}

@media screen and (max-width:640px) {
	.l-header__container {
		height: 70px;
		background-color: rgb(255,255,255,0.9);
	}
	.home .l-header__container {
		background-color:inherit;
	}
}
@media screen and (max-width:1320px) {
	.h_menu .sp{
		display: block;
	}
}
@media screen and (max-width:1090px) {
	.h_menu li a {
		font-size: 0.8888em;
	}
	.h_menu_wrap {
	width: calc(100% - 434px);
	}
}
/* トップページのスマホ以外、スクロール後にヘッダー固定 */
@media screen and (min-width:640px) {
	.home .l-header{
		height: 0;
		display: none;
	}
	.home .scrolled .l-header{
		height: auto;
		display:block;
	}
}
 /* スマホメニュー */
@media screen and (max-width:640px) {
  .head_inner {
    display: block;
  }
	.h_menu .sp{
		display: none;
	}
  .h_menu_logo ,.ttl_main{
    width: 62vw;
    margin: 20px;
  }
  .h_menu_logo a,.ttl_main a{
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
  }
  .h_menu_wrap {
    transform: scale(0,1);
    transition: all ease 200ms;
    position: fixed;
    z-index: 999;
       background: linear-gradient(to right, #20aac4 0%,#0071bc 26%);  /* スマホメニュー全体背景 */
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    flex-wrap: wrap;
    flex-direction: inherit;
		align-items: flex-start;
  }
  .h_menu {
    width: 90%;
    display: flex;
		justify-content: space-between;
		margin: 0 auto 1.5em auto;
		flex-wrap: wrap;
		padding-top: 75px;
		text-align: left;
    padding-left:20px;
  }
  .h_menu li{
    height: auto;
    align-items: center;
		padding: 10px;
		margin: 0 ;
		background-color: inherit;
		width: 100%;
		letter-spacing: 1px;
  }
  .h_menu li a {
		display: block;
    padding: 0.5em 0;
    width: 100%;
		color: #FFF;
		font-size: 1.1875em;
    font-weight: bold;
		line-height: 1.3;
    position: relative;
  }
  .h_menu li a::before{
    content: '';
    position: absolute;
    top: 0.9em;
    left: -14px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .h_menu a:after{
		display: none;
  }
	.l-header {
		background-color:inherit;
	}
	.cmn_info { /* お問い合わせ部分を削除 */
		display: none;
	}
	.home .logo_cmn {
		display: none; /* トップページはロゴを削除 */
	}
	.h_menu li {
    padding: 4% 1%;
	}
	.h_menu li a:hover {
		color: #FFF;
	}
}

/* ハンバーガーメニュー
--------------------------------------------- */
.humb_btn {
	display: none;
  width: 60px; /* メニューボタンサイズ */
  height: 60px;
  top: 14px; /* メニューボタン位置 */
  right: 12px;
	z-index: 1000;
	background-color: #fff; /* メニューボタン背景色 */
	border-radius: 50%;
	position: fixed;
}
.humb_btn label {
  display: flex;
  flex-wrap: wrap;
  height: 100%; /* メニューボタンサイズ高さ */
  align-items: center;
  cursor: pointer;
	margin: 0;
	text-align: center;
	padding: 18px 10px 20px 10px;
}
.humb_btn span {
  display: block;
	margin: 0 auto;
  width: 65%; /* メニュー棒の長さ */
  height: 3px; /* メニュー棒の太さ */
   background: linear-gradient(to right, #20aac4 0%,#0071bc 26%); 
	border-radius: 5px;
	transition: all ease 200ms;
}
#h_open:checked ~ .humb_btn label{
	align-content: center;
}
#h_open:checked ~ .humb_btn span:nth-of-type(1) {
 transform: rotate(-45deg);
 transform-origin: center;
 margin-top: 3px;
}
#h_open:checked ~ .humb_btn span:nth-of-type(2) {
	transform: rotate(45deg);
	transform-origin: center;
	margin-top: -4px;
}

@media screen and (max-width:640px) {
  .humb_btn {
		display: block;
  }
  #h_open:checked ~ .head_inner .h_menu_wrap {
    transform: scale(1);
  }
  #h_open:checked ~ .humb_btn {
    transform: scale(1);
  }
}


/* ミニEJとは？
--------------------------------------------- */

.sec_about {
    background: url(../img/miniej/bg_about.webp) no-repeat center / 100% 100%;
  padding-top: 120px;
    padding-bottom: min(20vw, 95px);
  overflow: hidden;
    position: relative;
}
.wrap_about {
    max-width: 1100px;
    width: 90%;
  margin: 0 auto;
  position: relative;
    z-index: 2;
}
.wrap_about::before{
    content: 'ABOUT';
    font-family:"JosefinSans", "Helvetica Neue", "Helvetica", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: min(22vw,9.5625em);
    z-index: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    top: -0.2em;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: 0.1em;
    text-align: center;
    display: flex;
    justify-content: center;
    line-height: 1;
}
.ttl_about {
    color: #004678;
  font-size: clamp(2.125em,2.8vw,2.5em);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  position: relative;
  z-index: 2;
  margin-bottom: min(15vw,120px);
}

.about_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    margin-bottom: min(20vw, 50px);
}
.about_name{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-left: min(5vw, 50px);
    margin: 25px 0;
}
.about_photo {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding-left: min(5vw, 50px);
    line-height: 1;
    position: relative;
    margin-bottom: min(4vw,30px);
}
.about_txt {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding-left: min(5vw, 50px);
    font-size: 22px;
    font-weight: 500;
    line-height: 200%;
}
@media screen and (max-width:780px) {
.about_grid {
    display: block;
}
    .about_name,
    .about_photo,
    .about_txt{
        padding-left: 0;
    }
}

.about_name_row {
    display: inline-block;
    line-height: 1;
    font-size: min(6.5vw, 29px);
    padding: 10px 15px;
    background: #fff;
    margin: 0 0 15px;
    box-shadow: 5px 5px rgba(62, 229, 197, 0.3);
}
.about_name_row.txt_big {
    font-size: min(7vw, 36px);
}
.about_name_row.txt_big .txt_big{
    font-size: min(7.5vw,46px);
}

.about_photo .photo img {
    border-radius: 10px;
    overflow: hidden;
    line-height: 1;
}
.about_photo .ico {
    position: absolute;
    z-index: 2;    
    width: min(40vw, 230px);
    top: -11.5%;
    right: 4%;
}
.about_txt {
    font-size: clamp(0.9375em, 1.41vw, 1.25em);
}
@media screen and (max-width:780px) {
.about_name_row {
    margin-bottom: 0;
    width: 100%;
    padding: 0 15px;
    line-height: 1.3;
    text-align: center;
}
.about_name_row:first-child{
    padding-top: 10px;
}
.about_name_row:last-child{
    padding-bottom: 10px;
}
.about_photo .ico {
    top: -4%;
    right: -5vw;
}
}

.about_catch {
    width: min(100%, 780px);
    margin: 0 auto;
}

.sec_about::after {
    content: "";
    display: block;
    width: 35vw;
    aspect-ratio: 1 / 1;
    background: url(../img/miniej/bg_aboutimg.svg) no-repeat top left / 100% 100%;
    position: absolute;
    bottom: min(7vw,100px);
    z-index: 1;
    opacity: 0.2;
}

@media screen and (max-width:780px) {
.sec_about::after{
    width: 60vw;
    bottom: -17vw;    
}
}

/* 販売料金のご案内
--------------------------------------------- */
.sec_price {
    background: #ededed;
    padding-bottom: min(20vw, 95px);
    position: relative;
}
.wrap_price {
    max-width: 1100px;
    width: 90%;
  margin: 0 auto;
  position: relative;
    z-index: 2;
}
.wrap_price::before{
    content: 'PRICE';
    font-family:"JosefinSans", "Helvetica Neue", "Helvetica", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: min(22vw,9.5625em);
    z-index: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    top: -0.15em;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: 0.1em;
    text-align: center;
    display: flex;
    justify-content: center;
    line-height: 1;
}
.txt_ttl_price {
    line-height: 1;
}
.ttl_price {
    color: #004678;
  font-size: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  position: relative;
  z-index: 2;
    margin-bottom: min(15vw, 80px);
}
.subttl_price {
    font-weight: normal;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.price_head_wrap{
    margin-bottom: min(17vw, 120px);
    position: relative;
}
.price_head_inr::after {
    content: "";
    display: block;
    width: 40px;
    height: 25px;
    background: #175d8f;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin: -1px auto 0;
}
.price_head {
    background: url(../img/miniej/bg_pricehead.webp) no-repeat center / cover;
    font-size: min(6vw,30px);
    font-weight: 600;
    color: #fff;
    padding: min(6vw, 30px) 0;
    text-align: center;
}
.txt_b_y {
    color: #fdf690;
    font-size: min(7.5vw,38px);
}
.human {
    position: absolute;
    width: min(22vw, 150px);
    bottom: 24px;
    right: calc(calc(100vw - 760px) / 2 - min(20vw, 150px));
}
@media screen and (min-width:1101px) {
    br.w1100{
        display: none;
    }
}
@media screen and (max-width:1100px) {
.human{
    right: calc(calc(100vw - 460px) / 2 - min(20vw, 150px));
}
}
@media screen and (max-width:780px) {    
.human{
    right: 0;
}
}


.product_photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
@media screen and (max-width:640px) {
.product_photo img {
    width: auto;
    height: 45vw;
}
}

table.price_tbl {
    width: min(100%, 770px);
    table-layout: fixed;
    border-spacing: 0;
    margin: 0 auto min(4vw, 20px);
    border-right: 1px solid #80a2bb;
}
table.price_tbl tr:nth-of-type(2n) {
    background: #f5f8fa;
}
table.price_tbl th,
table.price_tbl td{
    font-size: min(4.5vw, 24px);
    padding: min(3vw, 18px) min(4vw, 14px);
}
table.price_tbl th {
    width: 68%;
    background: #004678;
    color: #fff;
    border-right: 1px solid;
    line-height: 1;
}
table.price_tbl th:nth-of-type(2) {
    width: 32%;
    border-right: none;
    text-align: center;
}

table.price_tbl th .mini {
    font-weight: normal;
    font-size: 75%;
}
table.price_tbl td {
    border-bottom: 1px solid #80a2bb;
    border-left: 1px solid #80a2bb;
}
table.price_tbl td:nth-of-type(2){
    text-align: center;
}
table.price_tbl .num {
    background: #20aac4;
    color: #fff;
    width: min(5vw,30px);
    min-width: min(5vw,30px);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: 500;
    font-size: 75%;
    margin-right: min(3vw, 18px);
}
.td_inr {
    display: flex;
    margin: 0;
    align-items: center;
    line-height: 140%;
}


.tbl_txt{
    font-size: 1.111em;
    font-weight: bold;
    text-align: center;
}

/* ５つのメリット
--------------------------------------------- */

.sec_merit {
    background: url(../img/miniej/bg_merits.webp) no-repeat center / 100% 100%;
  padding-top: 120px;
  padding-bottom: 95px;
  overflow: hidden;
}
.wrap_merit {
    max-width: 1050px;
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.wrap_merit::before{
    content: 'MERITS';
    font-family:"JosefinSans", "Helvetica Neue", "Helvetica", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 9.5625em;
    z-index: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: -0.4em;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: 0.1em;
    text-align: center;
    display: flex;
    justify-content: center;
}
.art_merit {
  background-color: #fff;
  border-radius: 15px;
  font-size: clamp(0.9375em,1.41vw,1.25em);
  line-height: 1.95;
  font-weight: 500;
  position: relative;
    padding: 65px 5.5% 70px 5.5%;
  margin-bottom: 98px;
}
.art_merit01 {
    margin-left: -3%;
    margin-right: 3%;
}
.art_merit02 {
    margin-left: 3%;
    margin-right: -3%;
}
.art_merit:last-child{
  margin-bottom: 0;
}
.ttl_merit {
    color: #004678;
  font-size: clamp(2.125em,2.8vw,2.5em);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  position: relative;
  z-index: 2;
  margin-bottom: 120px;
}
.logo_ttl_merit {
  width: 28%;
  margin-right: 10px;
}
.txt_ttl_merit {
  display: flex;
  align-items: baseline;
}
.ttl_merit_no {
  font-size: 1.25em;
}
.no_merit { 
  position: absolute;
  font-size: 1em;
  font-weight: 500;
  color: #b2c7d6;
  display: flex;
  flex-flow: column;
  line-height: 0.9;
  letter-spacing: 0.1em;
  top: -2.3em;
}
.no_merit_l{
  left: 7%;
}
.no_merit_r{
    width: 60%;
    right: 0;
    padding-left: 2.5%;
}
.txt_no_merit {
    font-size: 4.375em;
}
.ttlbox_art_merit {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: clamp(1.5em,2.85vw,2em);
  width: 60%;
  padding-left: 2.5%;
  line-height: 1.4;
}
.ttlbox_art_merit_r ,.txt_merit_about_r{
  margin-left: auto;
}
.ttl_art_merit {
  line-height: 1.4;
}
.ttl_art_merit_b {
  border-bottom: 3px solid #004678;
  display: inline-block;
  line-height: 1.4;
}
.ttl_art_merit_b_sp {
  display: inline-block;
}
.txt_merit_about {
    margin-bottom: 0;
    width: 60%;
  font-weight: 500;
  padding-left: 2.5%;
}
.txt_merit_about .mini {
    font-size: 90%;
}
.img_art_merit01 {
    margin-bottom: 24px;
    width: 35%;
    max-width: 330px;
    position: absolute;
    top: -45px;
    border-radius: 15px;
    overflow: hidden;
    max-height: 470px;
}
.img_art_merit_r {
  right: 4%;
}
.img_art_merit_l {
  left: 4%;
}
.img_art_merit01 img {
  border-radius: 15px;
}
.figure_cost {
  margin: 0;
  margin-bottom: 40px;
}
.figure_cost_l {
  width: 48%;
}
.figure_cost_r {
  width: 44%;
}
.figure_cost figcaption{
  margin-bottom: 20px;
  line-height: 1.8;
}
.flex_figure_cost {
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 40px;
}
.figca_cost_s {
  font-size: 0.8em;
  font-weight: 500;
}
.figca_cost_l {
  padding-left: 5%;
}
.txt_runningcost {
  padding-left: 2.5%;
  padding-right: 4.5%;
}
.flex_support {
  justify-content: center;
  flex-wrap: wrap;
}
.ttlbox_sub_support {
  display: flex;
  justify-content: center;
  flex-flow: column-reverse;
  text-align: center;
  background-image: url(../img/miniej/deco_subsc_circle.svg);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}
.ttl_sub_support {
  color: #00aaa0;
  font-weight: bold;
  display: inline-block;
  font-size: 1.4em;
}
.ttl_sub_support span {
 position: relative;
 z-index: 1;
}
.ttl_sub_support span::before{
  content: '';
  background-color: #fdf57a;
  height: 16px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: -1;
}
.box_support {
 width: 20%;
 margin: 2%;
 line-height: 1.6;
}
.box_support .txt_cl_gr {
  font-weight: bold;
}
.ico_support {
  width: 42%;
  margin: 0 auto 10px auto;
}
.ico_support img{
  width: 100%;
}

@media screen and (max-width:640px){
  .img_art_merit01 {
    position: static;
    width: 95%;
    margin: 0 auto 10px auto;
  }
  .ttlbox_art_merit {
    font-size: 2em;
  }
  .ttlbox_art_merit {
    width: 100%;
  }
  .ico_support {
    margin: 0 auto 0px auto;
  }
  .box_support {
    width: 44%;
  }
  .no_merit {
    left: 0;
    right: 0;
        margin: auto;
    text-align: center;
  }
  .txt_merit_about {
    width: 100%;
    padding-right: 2.5%;
  }
  .figure_cost {
    font-size: 1.13em;
  }
  .figure_cost_l,.figure_cost_r {
    width: 100%;
  }
  .figca_cost_l {
  padding-left: 2.5%;
  }
  .logo_ttl_merit {
    width: 80%;
    margin: 0 auto;
  }
  .figca_cost_r {
    padding-left: 2.5%;
  }
  .flex_figure_cost {
    margin-bottom: 0px;
  }
  .txt_merit_about {
    margin-bottom: 30px;
  }
  .art_merit {
        padding: 40px 5.5% 20px 5.5%;
        margin-left: auto;
        margin-right: auto;
  }
  .ttl_art_merit_b {
    border-bottom: none;
  }
  .ttl_art_merit_b_sp {
    display: inline-block;
    border-bottom: 3px solid #19b2a9;
  }
  .ttlbox_art_merit_r {
    text-align: left;
  }
  .wrap_merit::before{ 
    font-size: 22vw;
  }
}

/*ご注文書ダウンロード
--------------------------------------------- */
.sec_download {
    padding: 80px 0 100px;
}
.download_ttl {
    font-size: min(7vw, 28px);
    text-align: center;
    margin-bottom: 35px;
    color: #004678;
}
.download_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(90%, 660px);
    min-height: min(30vw, 200px);
    border-radius: 12px;
    background: linear-gradient(to right, rgba(34, 181, 115, 1) 0%, rgba(0, 170, 160, 1) 100%);
    margin: 0 auto;
    box-shadow: 6px 6px 0 0 rgba(62, 229, 197, 0.3);
    transition: all ease 300ms;
}
.download_btn:hover {
    transform: translateY(6px);    
    box-shadow: 0 0 0 0 rgba(62, 229, 197, 0.3);
}
.dl_ico{
    width: min(12vw,72px);
}
.dl_namewrap {
    text-align: center;
    margin: 38px min(2%, 30px);
}
.dl_mainname{
    font-size: min(7vw,37px);
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.dl_subname {
    font-size: min(6vw,29px);
    color: #fcee21;
    font-weight: bold;
    display: inline-block;
    border-bottom: 2px solid;
    line-height: 1;
    padding-bottom: min(1vw,9px);
    margin-bottom: min(2vw,14px);
    letter-spacing: 1.5px;
}
@media screen and (max-width:640px){
.download_btn {
    flex-direction: column;
    padding: 25px 0 45px;
}
.dl_namewrap {
    margin: 3.5vw auto 0;
}
}
/* ミニEJ試験用キット組み立て方
--------------------------------------------- */
.sec_setup{
    position: relative;
  background: url(../img/miniej/bg_movie.webp) no-repeat center / cover;
}
.sec_setup::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,70,120,0.7);
    mix-blend-mode: multiply;    
}
.wrap_setup{
    padding: 90px 0 100px;
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.movie_wrap{
    width: min(90vw,900px);
    margin: 0 auto 80px;
    line-height: 1;
    background: #000;
}
.setup_movie {
    width: 100%;
}
.setup_download{
    
}
.setup_btn {
    margin: 0 auto;
    color: #fff;
    font-size: 1.25em;
    line-height: 1.2;
    border: 2px solid;
    border-radius: min(4vw,16px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(90vw, 780px);
    padding: 1.2em min(3%,1em);
    background: rgba(0,70,120,1);
    transition: all ease 300ms;
}
.setup_btn:hover {
    background: rgba(0,70,120,0);
}
.setup_btn::after {
    content: "▲";
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 50%;
    font-size: 0.6em;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    transform: rotate(90deg);
}

/* 導入までの流れ
--------------------------------------------- */

.sec_flow {
  background-image: url(../img/miniej/bg_dots.png);
  background-repeat: repeat;
  font-size: clamp(0.9375em,1.41vw,1.125em);
  text-align: center;
  padding-top: 100px;
  padding-bottom: min(12vw,100px);
  font-weight: 500;
}
.wrap_flow {
  max-width: 1010px;
  width: 90%;
  margin: 0 auto;
}
.ttl_flow {
  font-size: 2.222em;
  margin-bottom: 60px;
}
.ttl_sub_flow {
  font-size:1.4em;
  color: #20aac4;
  font-weight: bold;
  margin-bottom: 10px;
 }
.list_flow {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin-bottom: 75px;
  padding: 0;
  padding-left: 5%;
}
.list_flow li {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  width: 88%;
  margin-bottom: 20px;
  list-style: none;
  position: relative;
  counter-increment: mycounter;
  padding: 3% 5%;
}
.list_flow li::before {
  counter-increment: rank;
  content: counter(mycounter, decimal-leading-zero);
  color: #4dbbd0;
  width: 20%;
  display: flex;
  justify-content: center;
  font-size: 4.27em;
  font-weight: 500;
  font-family: "JosefinSans", "Helvetica Neue", "Helvetica", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  position: absolute;
  left: -20%;
  top: 15%;
}
.list_flow li::after {
  content: '';
  width: 2px;
  background-color: #4dbbd0;
  height: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  left: -10%;
  top: 80%; 
}
.list_flow li:last-child::after{
  content: none;
}
.list_flow li:last-child {
  margin-bottom: 0;
}
.ico_flow {
  position: absolute;
  width: 18%;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  z-index: 0;
  overflow: hidden;
}
.ico_flow img {
  width: min(65%,80px);
}
.ico_flow::before {
  content: '';
  width: 80%;
  background-color: #c7eaf0;
  border-radius: 50%;
  right: 0;
  top: 0%;
  height: 100%;
  bottom: 0;
  transform: scale(1.5) translateX(-18%);
  z-index: -1;
  position: absolute;
  display: flex;
  align-items: center;
}
.txt_flow,.ttl_sub_flow {
  width: 83.5%;
  margin-left: auto;
}
 .list_flow_impt .ico_flow::before {
  background-color:#00aaa0;
}
.list_flow_impt .ttl_sub_flow span {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.list_flow_impt .ttl_sub_flow span::before{
  content: '';
  height: 14px;
  background-color: #fdf57a;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media screen and (min-width:641px){
    .list_flow_impt .ico_flow img{
        -webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
    }
}
@media screen and (max-width:640px){
  .list_flow {
    margin-bottom: 40px;
    padding-left: 0;
  }
  .list_flow li {
    width: 100%;
    padding: 8% 5%;
    margin-bottom: 60px;
  }
  .list_flow li::before {
    width: 100%;
    font-size: 2.8em;
    left: 0;
    right: 0;
    top: -0.7em;
  }
  .list_flow li::after {
    height: 42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -27px;
    top: auto;
  }
  .ico_flow::before {
    content: none;
  }
  .ico_flow {
        width: 19%;
        left: 0;
        top: 10%;
        height: auto;
  }
  .list_flow .list_flow_impt {
      background-color: #fdf57a;
  }
  .txt_flow, .ttl_sub_flow {
    width: 95%;
    margin-right: auto;
    text-align: center;
  }
}

/* 資料請求・お問合せ
--------------------------------------------- */

.sec_contact {
  font-size: clamp(0.9375em,1.41vw,1.125em);
  font-weight: 500;
  text-align: center;
  padding: 80px 0 10px 0;
  overflow: hidden;
}

.wrap_contact {
    background: #fffeed;
    border: 4px solid #00aaa0;
    border-radius: 16px;
    width: min(90%, 1000px);
    margin: 0 auto;
    padding-top: min(10vw,70px);
}

.txtbox_contact {
  font-size: 1.111em;
  font-weight: bold;
    margin-top: min(10vw, 65px);
    padding-bottom: min(12vw,75px);
}
.call {
    margin-top: 20px;
}
.call a{
  color: #00aaa0;
  font-size: min(11vw,72px);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
    line-height: 1;
}
.call a::before {
    content: '';
    background-image: url(../img/subsc/ico_subsc_call.svg);
    width: min(9vw,50px);
    aspect-ratio: 18 / 23;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 5px 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
}
.call_time {
  font-weight: 500;
  font-size: 0.7777em;
}
.txtbox_contact p {
  margin-bottom: 10px;
  }
.wrap_form {
  background-color: rgba(0,170,160,0.1);
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 5%;
}
.ttl_sub_contact {
  font-size: 1.6666em;
  font-weight: bold;
  margin-bottom: 50px;
}

@media screen and (max-width:640px) {
}


/* 資料請求・お問合せフォーム
--------------------------------------------- */

.contact_form{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}
.contact_form .small{
	line-height: 1.8;
}
.sec_contact_form {
	padding-top: 70px;
	padding-bottom: 200px;
}
.wrap_contact_form {
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
}
.ttl_privacy {
	font-weight: 500;
	text-align: left;
	margin-bottom: 8px;
	margin-top: 30px;
	font-size: 1em;
}
.txtarea_privacy {
	border-radius: 5px;
	background-color: #fff;
	width: 100%;
	height: 200px;
	overflow: scroll;
	text-align: left;
	font-size: 0.8em;
	padding: 2.5%;
	margin-bottom: 30px;
}
.txtarea_privacy p {
	margin-bottom: 10px;
}
.label01 {
	display: flex;
	justify-content: space-between;
	text-align: left;
	padding: 12px 0;
}
.label02 {
	padding: 12px 0;
	text-align: left;
}
.label_l{
	width: 22%;
	font-weight: 500;
	padding: 10px 0;
}
.label_td{
	width: 78.5%;
	margin-left: auto;
}
.label_th {
	margin-bottom: 10px;
	font-weight: 500;
}
.label_r {
	width: 75%;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    color: #4C4C4C;
    border: none;
    border-radius: 5px;
    padding: 10px;
}
.label_txtlong input[type="text"]{
	width: 100%;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    width: 100%;
}
.wpcf7-text ,.wpcf7-textarea{
width: 100%;
}
.privacy_check {
	margin-bottom: 50px;
	font-weight: 500;
  display: flex;
  justify-content: center;
}
::placeholder {
	color: #808080;
	font-size: 0.9em;
}
select {
    border: 1px solid #B2B2B2;
    padding: 10px;
    border-radius: 5px;
}
.wrap_label02 {
	margin-top: 20px;
}
.form_txt_s {
  line-height: 1.5;
  font-size: 0.777em;
  padding-top: 10px;
  display: block;
  color: #19b2a9;
}
.form_about {
  font-size: 0.888em;
  margin-bottom: 20px;
}

/* inputボタン
--------------------------------------------- */
input[type="button"], input[type="reset"], input[type="submit"] {
  background:linear-gradient(to right, #22b573, #00aaa0);
	color: #FFF;
	font-size: 1.1em;
	font-weight: 500;
	text-align: center;
	padding: 20px 100px;
	border-radius: 5px;
	border: none;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: 500ms;
}

input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover{
	border: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: 500ms;
}


@media screen and (max-width:640px) {
	.label_l {
		width: 100%;
	}
	.label_r {
		width: 100%;
	}
	.label01 {
		flex-direction: column;
	}
	::placeholder {
		color: #808080;
		font-size: 0.7em;
	}
	input[type="text"]{
		width: 100%;
	}
	.label_postcode input[type="text"]{
		width: 80%;
	}
	input[type="button"], input[type="reset"], input[type="submit"] {
    width: 90%;
    padding: 20px 0;
	}
	.label_td {
    width: 100%;
    margin-left: 0;
	}
	.privacy_check {
    font-size: 1.1em;
	}
}




/* フッター
--------------------------------------------- */
footer {
  text-align: center;
  padding: 100px 10% 5% 10%;
}
.logo_footer {
  margin-bottom: 20px;
}
.corp {
  font-size: 1.125em;
  margin-bottom: 40px;
  font-weight: 500;
}
.copy {
  color: #999;
  font-size: 0.875em;
  letter-spacing: 0.1em;
}

@media screen and (max-width:640px){
  footer {
      padding-bottom: 20%;
  }
}

.list_point_main li ,.ttl_point_main{
  animation: poko .5s both;
}
.ttl_point_main {
  animation-delay: 0.4s;
}
.list_point_main li:nth-child(1){
  animation-delay: 0.6s;
}



/* アニメーション
--------------------------------------------- */

@keyframes poko {
  0% {
      opacity: 0;
      -webkit-transform: scale(.9) translateZ(0);
      transform: scale(.9) translateZ(0);
  }

  100% {
      opacity: 1;
      -webkit-transform: scale(1) translateZ(0);
      transform: scale(1) translateZ(0);
  }
}

/* アニメーション 汎用
--------------------------------------------- */

/* 下から上にフェードイン */
.fadeIn_bottom {
	transition: transform .3s ease;
	opacity: 0;
}
.fadeIn_bottom_on {
	opacity: 1;
	animation: fadeIn_bottom .5s ease-in-out forwards;
}
@keyframes fadeIn_bottom {
	0% {
			opacity: 0;
			transform: translateY(30px);
	}
	100% {
			opacity: 1;
			transform: translateY(0);
	}
}

/* フェードイン */
.fadeIn {	opacity: 0;}
.fadeIn_on {animation: fadeIn .5s ease-in-out forwards;}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/* 画像縮小から原寸へ */
.fade_imgscale{
	opacity: 0;
}
.fade_imgscale_on {
  animation: fade_imgscale .5s ease-in-out forwards;
}
@keyframes fade_imgscale {
	0% {
			transform: scale(1.1);
			opacity: 0;
	}
	100% {
			transform: scale(1);
			opacity: 1;
	}
}



/* 左からフェードイン 汎用
--------------------------------------------- */

.box {
	transition: transform .3s ease;
	opacity: 0;
	transform:translateX(-30px);
}
.boxin {
	transform:translateX(0px);
	opacity: 1;
	animation-name:fadeIn;
  animation-duration:500ms;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
}
.box img{
	transform: scale(1.5);
	transition: 500ms;
}
.boxin img{
	transform: scale(1.0);
	transition: 500ms;
}

@keyframes fadeIn {
    0% {
        opacity:0;
        transform:translateX(-20px);
    }
    100% {
        opacity:1;
       transform:translateX(0px);
    }
}
