@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%;
  font-family: "游ゴシック Medium", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック体", "メイリオ", sans-serif;
}
img{
	width: 100%;
}
.none_text{
	display: none;
}
@media screen and (min-width: 741px) {
  .spNone {
    display: none;
  }
}
@media screen and (max-width: 740px) {
  .pcNone {
    display: none;
  }
}
/*hamburger*/
header {
  position: fixed;
  width: 100%;
  height: 90px;
  background: #fff;
  box-shadow: 0px 10px 10px -5px rgb(216 216 216 / 50%);
  z-index: 999;
}
header .header_area {
  width: 55%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .header_area .logo {
  width: 15%;
  padding-top: 15px;
}
header .header_area p {
  padding: 35px 0 0 40px;
  font-size: 25px;
}
.global-nav {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  padding-top: 40px;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
}
.hamburger {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 60px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
  font-size: 1.8rem;
  padding-bottom: 15px;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #111;
}
.global-nav__item a:hover {
  background-color: #eee;
}
.hamburger__line {
  position: absolute;
  left: 0px;
  width: 50px;
  height: 2px;
  background-color: #111;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 20px;
}
.hamburger__line--2 {
  top: 35px;
}
.hamburger__line--3 {
  top: 50px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}
@media screen and (max-width: 740px) {
  header .header_area {
    width: 100%;
  }
  header {
    height: auto;
  }
  header .header_area .logo {
    width: 40%;
    padding: 15px;
  }
  header .header_area p {
    padding: 20px 0 0 0;
    font-size: 1.2rem;
  }
  .inner_line {
    left: 0;
    width: 30px;
    height: 3px;
  }
  #hamburger {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  #line1 {
    top: 0;
  }
  #line2 {
    top: 14px;
  }
  #line3 {
    bottom: 0px;
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 0px;
    width: 25px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger__line {
    position: absolute;
    left: 0px;
    width: 25px;
    height: 2px;
    background-color: #111;
    transition: all .6s;
  }
  .hamburger {
    position: absolute;
    right: 10px;
    top: 0px;
    width: 25px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger__line--1 {
    top: 25px;
  }
  .hamburger__line--3 {
    top: 45px;
  }
}
/*hamburger end*/
/*contents_area*/
.contents_area {
  padding-top: 200px;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .contents_area {
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
  }
}
/*contents_area end*/
/*section_01*/
#section_01 {
  margin: 0 auto;
}
#section_01 h2 {
  font-size: 60px;
  font-weight: bold;
}
#section_01 h2 .small_text {
  font-size: 40px;
}
#section_01 h2 .color_01 {
  font-size: 90px;
  color: #009DD0;
  padding: 0 10px;
}
#section_01 h2 .color_02 {
  font-size: 90px;
  color: #FF7F3C;
  padding: 0 10px;
}
#section_01 h2 .color_03 {
  font-size: 25px;
  color: #CC2072;
}
#section_01 .border_bg {
  background: linear-gradient(45deg, #ECBC32, #CB2072, #612080, #1E2280, #009CCF);
  border-radius: 16px;
  padding: 2px;
  width: 100%;
  margin: 30px 0;
}
#section_01 h3 {
  background-color: #fff;
  border-radius: 15px;
  height: 50px;
  text-align: center;
  font-size: 30px;
  padding-top: 10px;
}
#section_01 .bg_erea {
  background-image: url(../img/bg_01.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 700px;
  margin: 0 auto;
  padding-bottom: 100px;
}
#section_01 .bg_erea ul {
  display: flex;
  justify-content: space-around;
  padding-top: 650px;
  font-weight: bold;
}
#section_01 .bg_erea ul li:nth-child(1) {
  width: 35%;
}
#section_01 .bg_erea ul li:nth-child(1) img {
  filter: drop-shadow(-5px 5px 5px rgba(0, 0, 0, 0.4));
}
#section_01 .bg_erea ul li:nth-child(2) {
  width: 50%;
  padding-top: 140px;
  text-align: center;
}
#section_01 .bg_erea ul li:nth-child(2) p:nth-child(1) {
  font-size: 25px;
}
#section_01 .bg_erea ul li:nth-child(2) p:nth-child(2) {
  font-size: 30px;
}
#section_01 .bg_erea ul li:nth-child(2) p:nth-child(2) .color_03 {
  font-size: 135px;
  color: #CC2072;
}
#section_01 .bg_erea ul li:nth-child(2) p:nth-child(3) {
  font-size: 25px;
  line-height: 1.5;
}
#section_01 .button_erea {
  width: 65%;
  margin: 0 auto;
}
#section_01 .button_erea ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section_01 .button_erea ul li:nth-child(1) {
  width: 44%;
}
#section_01 .button_erea ul li:nth-child(2) {
  width: 54%
}
#section_01 .button_erea ul li:nth-child(3) {
  width: 100%;
  padding-top: 15px;
}
@media screen and (max-width: 740px) {
  #section_01 .bg_erea {
    background-image: url(../img/bg_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 25px;
  }
  #section_01 h2 .small_text {
    font-size: 2rem;
    padding-left: 5px;
  }
  #section_01 h2 {
    font-size: 2.6rem;
    font-weight: bold;
    width: 95%;
    margin: 0 auto;
  }
  #section_01 h2 .color_01 {
    font-size: 3.5rem;
    color: #009DD0;
    padding: 0 5px;
  }
  #section_01 h2 .color_02 {
    font-size: 3.5rem;
    color: #FF7F3C;
    padding: 0 5px;
  }
  #section_01 .border_bg {
    background: linear-gradient(45deg, #ECBC32, #CB2072, #612080, #1E2280, #009CCF );
    border-radius: 16px;
    padding: 2px;
    width: 95%;
    margin: 15px auto 0;
  }
#section_01 h3 {
    background-color: #fff;
    border-radius: 15px;
    height: 27px;
    text-align: center;
    font-size: 1.4rem;
    padding-top: 5px;
    font-weight: bold;
}
  #section_01 .bg_erea ul {
    display: flex;
    justify-content: space-around;
    padding-top: 340px;
    font-weight: bold;
  }
  #section_01 .bg_erea ul li:nth-child(1) {
    width: 40%;
    padding-left: 5%;
  }
  #section_01 .bg_erea ul li:nth-child(2) {
    width: 50%;
    padding-top: 75px;
    text-align: center;
  }
  #section_01 .bg_erea ul li:nth-child(2) p:nth-child(1) {
    font-size: 1.4rem;
  }
  #section_01 .bg_erea ul li:nth-child(2) p:nth-child(2) {
    font-size: 2.6rem;
  }
  #section_01 .bg_erea ul li:nth-child(2) p:nth-child(2) .color_03 {
    font-size: 9.5rem;
    color: #CC2072;
    padding-right: 0;
    width: 80px;
    display: inline-block;
  }
  #section_01 .bg_erea ul li:nth-child(2) p:nth-child(3) {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  #section_01 .button_erea {
    width: 90%;
    margin: 15px auto;
  }
}
/*section_01 end*/
/*section_02*/
#section_02 {
  margin: 0 auto;
}
.video {
  margin: 90px 0;
  z-index: -1;
}
.video p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 740px) {
	.video {
  margin: 35px auto 20px;
  z-index: -1;
		width: 90%
}
}
/*section_02 end*/
/*section_03*/
#section_03 {
  margin: 0 auto;
}
#section_03 h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
#section_03 h3 .color_01 {
  color: #CC2072;
  font-size: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
#section_03 .rl_area {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
}
#section_03 .rl_area p {
  width: 47%;
  font-size: 16px;
  line-height: 2.7rem;
}
#section_03 .rl_area p .color_02 {
  font-weight: bold;
  display: inline-block;
  padding-bottom: 15px;
}
@media screen and (max-width: 740px) {
  #section_03 .rl_area {
    display: block;
  }
  #section_03 .rl_area p {
    width: 95%;
    font-size: 1.5rem;
    line-height: 2.7rem;
    margin: 0 auto 25px;
  }
  #section_03 .rl_area p .color_02 {
    font-size: 1.8rem;
  }
  #section_03 h3 .color_01 {
    font-size: 1.4rem;
  }
  #section_03 h3 {
    font-size: 2.4rem;
  }
  #section_03 .rl_area {
    margin-top: 25px;
  }
}
/*section_03 end*/
/*section_04*/
#section_04 {
  margin: 50px auto 0;
}
#section_04 h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
#section_04 h3 .color_01 {
  color: #CC2072;
  font-size: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
#section_04 p {
  font-size: 16px;
  line-height: 27px;
}
#section_04 p.text_01 {
  font-size: 25px;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin: 50px 0;
}
#section_04 p.text_01:before, #section_04 p.text_01:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}
#section_04 p.text_01:before {
  margin-right: 1rem;
}
#section_04 p.text_01:after {
  margin-left: 1rem;
}
#section_04 .flexbox {
  margin: 0 auto;
  width: 95%;
  border-bottom: 1px solid;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
#section_04 .flexbox ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#section_04 .flexbox ul li {
  width: 20%;
  padding-bottom: 35px;
  margin-right: 6.666%;
}
#section_04 .flexbox ul li:nth-child(4n) {
  margin-right: 0;
}
#section_04 .flexbox ul li p {
  text-align: center;
  padding-top: 25px;
  width: 80%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 17px;
}
#section_04 .rl_area_02 {
  width: 80%;
  margin: 0 auto;
}
#section_04 .rl_area_02 ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
#section_04 .rl_area_02 ul li:nth-child(1) {
  width: 10%;
}
#section_04 .rl_area_02 ul li:nth-child(2) {
  width: 60%;
  font-size: 33px;
  font-weight: bold;
  line-height: 1.6;
}
#section_04 .rl_area_02 ul li p {
  font-size: 18px;
  margin-bottom: 50px;
}
#section_04 .rl_area_02 ul li .color_01 {
  /*    padding-top: 0.15em;
    background-position: top left -1px;
    background-repeat: repeat-x;
    background-size: 1em .27em;
    background-image: radial-gradient(.1em .1em at center center,#009DD3,#009DD3 100%,transparent);
*/ color: #009DD3;
}
#section_04 .rl_area_02 ul li .color_02 {
  /*    padding-top: 0.15em;
    background-position: top left -1px;
    background-repeat: repeat-x;
    background-size: 1em .27em;
    background-image: radial-gradient(.1em .1em at center center,#FF7F3C,#FF7F3C 100%,transparent);
*/ color: #FF7F3C;
}
#section_04 rt {
  font-size: 10px;
  transform: scale(0.5);
  display: block;
}
#section_04 .rl_area_02 ul li .color_03 {
  color: #009DD3;
}
#section_04 .rl_area_02 ul li .color_04 {
  color: #FF7F3C;
}
#section_04 .rl_area_01 p {
  margin-bottom: 50px;
  line-height: 29px;
}
#section_04 .rl_area_01 p .color_03 {
  color: #009DD0;
}
#section_04 .rl_area_01 p .color_04 {
  color: #FF7F3C;
}
@media screen and (max-width: 740px) {
  #section_04 {
    width: 95%;
    margin: 25px auto 0;
  }
  #section_04 p {
    font-size: 1.5rem;
    line-height: 2.7rem;
  }
#section_04 .flexbox ul li {
    width: 32%;
    padding-bottom: 35px;
    margin-right: 2%;
}
  #section_04 .flexbox ul li:nth-child(3n) {
    margin-right: 0;
  }
  #section_04 .flexbox ul li p {
    text-align: center;
    padding-top: 25px;
    width: 90%;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
  #section_04 .rl_area_02 ul {
    margin-bottom: 25px;
    justify-content: space-between;
  }
  #section_04 .rl_area_02 {
    width: 95%;
    margin: 0 auto;
  }
  #section_04 .rl_area_02 ul li:nth-child(1) {
    width: 15%;
  }
  #section_04 .rl_area_02 ul li:nth-child(2) {
    width: 84%;
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: bold;
  }
  #section_04 .rl_area_01 p {
    margin-bottom: 50px;
    font-size: 1.5rem;
    line-height: 2.9rem;
  }
  #section_04 p.text_01 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 50px 0;
  }
  #section_04 rt {
    font-size: 10px;
    transform: scale(0.5);
    display: block;
  }
  #section_04 h3 .color_01 {
    font-size: 1.4rem;
  }
  #section_04 h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  #section_04 .flexbox {
    padding-bottom: 0px;
  }
	.sp_width{
		width: 95%;
		margin: 0 auto;
	}
}
/*section_04 end*/
/*section_05*/
#section_05 {
  margin: 0 auto;
}
#section_05 h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
#section_05 h3 .color_01 {
  color: #CC2072;
  font-size: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
#section_05 .bg_erea {
  background-image: url(../img/bg_02.jpg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
#section_05 .rl_area ul li {
  position: relative;
  margin-top: 50px;
  z-index: -1
}
#section_05 .rl_area ul li p:nth-child(1) {
  position: absolute;
  top: -25px;
  background-color: #fff;
  font-size: 30px;
  padding: 10px 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #CC2072;
  font-weight: bold;
}
#section_05 .rl_area ul li p:nth-child(2) {
  border: 2px solid #231F20;
  width: 60%;
  margin: 0 auto;
  font-size: 25px;
  padding: 50px 20px;
  margin-bottom: 50px;
  font-weight: bold;
  position: static;
}
#section_05 .rl_area_02 {
  text-align: center;
  margin-bottom: 100px;
}
#section_05 .rl_area_02 img {
  width: 4%;
  margin-bottom: 25px;
}
#section_05 .rl_area_02 p:nth-child(2) {
  font-size: 35px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
#section_05 .rl_area_02 p:nth-child(3) {
  font-size: 16px;
  text-align: left;
  line-height: 25px;
}
@media screen and (max-width: 740px) {
  #section_05 .bg_erea {
    background-image: url(../img/bg_02.jpg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-bottom: 25px;
  }
  #section_05 h3 {
    font-size: 2.4rem;
  }
  #section_05 .rl_area ul li p:nth-child(2) {
    border: 2px solid #231F20;
    width: 95%;
    margin: 0 auto;
    font-size: 1.8rem;
    padding: 50px 20px;
    margin-bottom: 50px;
    font-weight: normal;
    position: static;
    background-color: #fff;
    line-height: 2.8rem;
  }
  #section_05 .rl_area ul li:nth-child(1) p:nth-child(1) {
    position: absolute;
    top: -25px;
    background-color: #fff;
    font-size: 30px;
    padding: 10px 40px;
    color: #CC2072;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
  }
  #section_05 .rl_area ul li:nth-child(2) p:nth-child(1) {
    position: absolute;
    background-color: #fff;
    font-size: 30px;
    padding: 10px 40px;
    color: #CC2072;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
  }
  #section_05 .rl_area ul li:nth-child(3) p:nth-child(1) {
    position: absolute;
   background-color: #fff;
    font-size: 30px;
    padding: 10px 40px;
    color: #CC2072;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
  }
  #section_05 .rl_area_02 img {
    width: 8%;
    margin-bottom: 25px;
  }
  #section_05 .rl_area_02 p:nth-child(2) {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  #section_05 .rl_area_02 {
    text-align: center;
    width: 95%;
    margin: 0 auto;
  }
  #section_05 .rl_area_02 p:nth-child(3) {
    font-size: 1.5rem;
    text-align: left;
    line-height: 2.5rem;
    margin-bottom: 50px;
  }
  #section_05 h3 .color_01 {
    font-size: 1.4rem;
  }
  #section_05 h3 .color_02 {
    font-size: 3.6rem;
  }
  #section_05 .rl_area ul {
    position: relative;
  }
  #section_05 .rl_area ul li {
    position: static;
  }
}
/*section_05 end*/
/*section_06*/
#section_06 {
  margin: 0 auto;
}
#section_06 h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
#section_06 h3 .color_01 {
  color: #CC2072;
  font-size: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
#section_06 h3 .color_02 {
  color: #CC2072;
  font-size: 60px;
  padding-bottom: 10px;
  display: inline-block;
}
#section_06 .bg_erea_01, #section_06 .bg_erea_03 {
  width: 900px;
  margin: 0 auto;
  text-align: center;
}
#section_06 .bg_erea_01 img, #section_06 .bg_erea_03 img {
  width: 60%;
}
#section_06 .bg_erea_01 .bg_erea_02 {
  border: 25px solid #9DD9EB;
  margin-bottom: 100px;
}
#section_06 .bg_erea_03 .bg_erea_04 {
  border: 25px solid #FFE184;
  margin-bottom: 50px;
}
#section_06 .bg_erea_01 .bg_erea_02 ul, #section_06 .bg_erea_03 .bg_erea_04 ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#section_06 .bg_erea_01 .bg_erea_02 ul li:nth-child(1), #section_06 .bg_erea_03 .bg_erea_04 ul li:nth-child(1) {
  width: 20%;
  padding: 45px 0;
  padding-left: 5%;
}
#section_06 .bg_erea_01 .bg_erea_02 ul li:nth-child(1) img, #section_06 .bg_erea_03 .bg_erea_04 ul li:nth-child(1) img {
  width: 100%;
}
#section_06 .bg_erea_01 .bg_erea_02 ul li:nth-child(2), #section_06 .bg_erea_03 .bg_erea_04 ul li:nth-child(2) {
  width: 60%;
  text-align: left;
  padding-top: 50px;
  margin-right: 0%;
}
#section_06 .bg_erea_01 .bg_erea_02 ul li .text_ttl_01 {
  font-size: 40px;
  color: #009DD0;
  font-weight: bold;
}
#section_06 .bg_erea_03 .bg_erea_04 ul li .text_ttl_01 {
  font-size: 40px;
  color: #FF7F3C;
  font-weight: bold;
}
#section_06 .bg_erea_01 .bg_erea_02 ul li .text_01, #section_06 .bg_erea_03 .bg_erea_04 ul li .text_01 {
  font-size: 21px;
  line-height: 1.5;
  padding-bottom: 130px;
}
@media screen and (max-width: 740px) {
  #section_06 .bg_erea_01, #section_06 .bg_erea_03 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #section_06 .bg_erea_01 img, #section_06 .bg_erea_03 img {
    width: 85%;
  }
  #section_06 .bg_erea_01 .bg_erea_02 {
    border: 15px solid #9DD9EB;
    margin-bottom: 50px;
  }
  #section_06 .bg_erea_03 .bg_erea_04 {
    border: 15px solid #FFE184;
    margin-bottom: 50px;
  }
  #section_06 .bg_erea_01 .bg_erea_02 ul li:nth-child(1), #section_06 .bg_erea_03 .bg_erea_04 ul li:nth-child(1) {
    width: 30%;
    padding: 30px 0;
    padding-left: 5%;
  }
  #section_06 .bg_erea_01 .bg_erea_02 ul li:nth-child(2), #section_06 .bg_erea_03 .bg_erea_04 ul li:nth-child(2) {
    width: 60%;
    text-align: left;
    padding-top: 35px;
    margin-right: 0%;
  }
  #section_06 .bg_erea_01 .bg_erea_02 ul li .text_ttl_01 {
    font-size: 1.8rem;
    color: #009DD0;
    font-weight: bold;
  }
  #section_06 .bg_erea_03 .bg_erea_04 ul li .text_ttl_01 {
    font-size: 1.8rem;
    color: #FF7F3C;
    font-weight: bold;
  }
  #section_06 .bg_erea_01 .bg_erea_02 ul li .text_01 {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-bottom: 70px;
    padding-top: 4px;
    font-weight: bold;
  }
  #section_06 .bg_erea_03 .bg_erea_04 ul li .text_01 {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-bottom: 70px;
    padding-top: 4px;
    font-weight: bold;
  }
  #section_06 .bg_erea_01 .bg_erea_02 ul li p:nth-child(4).text_01 {
    padding-bottom: 50px;
  }
  #section_06 h3 .color_01 {
    font-size: 1.4rem;
  }
  #section_06 h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  #section_06 h3 .color_02 {
    font-size: 3.6rem;
  }
}
/*section_06 end*/
/*section_07*/
#section_07 {
  margin: 0 auto;
}
#section_07 h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
#section_07 h3 .color_01 {
  color: #CC2072;
  font-size: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
#section_07 .swiper-container {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 0 0;
}
#section_07 .swiper-container .swiper-wrapper {}
#section_07 .swiper-container .swiper-slide {
  background-color: rgba(204, 125, 114, 0.2);
}
#section_07 .swiper-container .swiper-slide .swip_contents_block {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  margin: 50px auto;
  position: relative;
  padding-top: 50px;
  height: 390px;
}
#section_07 .swiper-container .swiper-slide img {
  width: 20%;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: auto;
}
#section_07 .swiper-container .swiper-slide p {
  text-align: left;
  padding: 50px;
  font-size: 16px;
  line-height: 1.5;
}
#section_07 .swiper-container .swiper-slide p span {
  font-weight: bold;
  padding-bottom: 15px;
  display: inline-block;
}
#section_07 .swip_bg {
  background-color: #fff;
  padding: 50px 0 50px;
}
#section_07 .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url(../img/img_14_1.png);
  left: 5px;
  right: auto;
  background-size: 60%;
}
#section_07 .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("../img/img_15_1.png");
  right: 5px;
  left: auto;
  background-size: 60%;
}
#section_07 .swiper-pagination-bullet-active {
  background: #CC2072;
}
@media screen and (max-width: 740px) {
  #section_07 .swiper-container .swiper-slide img {
    width: 40%;
  }
  #section_07 .swiper-container .swiper-slide p {
    padding: 15px;
    font-size: 1.5rem;
    line-height: 2.5rem;
    width: 90%;
    margin: 0 auto;
  }
  #section_07 .swiper-container .swiper-slide .swip_contents_block {
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    margin: 20px auto 50px;
    position: relative;
    padding-top: 70px;
    height: 75vh;
  }
  #section_07 h3 .color_01 {
    font-size: 1.4rem;
  }
  #section_07 h3 {
    font-size: 2.4rem;
  }
  #section_07 .swiper-container .swiper-slide p span {
    font-size: 1.8rem;
  }
  #section_07 .swiper-container {
    width: 100%;
    padding: 85px 0 0;
  }
  #section_07 .swiper-container-horizontal > .swiper-pagination-bullets, #section_07 .swiper-pagination-custom, #section_07 .swiper-pagination-fraction {
    bottom: 20px;
  }
	#section_07 .swip_bg {
  padding: 25px 0 50px;
}
}
/*section_07 end*/
/*section_08*/
#section_08 {
  margin: 0 auto;
}
#section_08 .text_erea_01 {
  text-align: center;
}
#section_08 .text_erea_01 img {
  width: 25%;
  margin-bottom: 50px;
}
#section_08 .text_erea_01 p:nth-child(2) {
  font-size: 36px;
  color: #CC2072;
  text-align: left;
  font-weight: bold;
}
#section_08 .text_erea_01 p:nth-child(3) {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 50px;
  text-align: left;
  margin-bottom: 50px;
}
#section_08 .text_erea_02 {
background: linear-gradient(#FFA217, #D01C5C, #2B3986, #2B3986);
  text-align: center;
}
#section_08 .text_erea_02 p:nth-child(1) {
  color: #fff;
  font-size: 26px;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 20px;
}
#section_08 .text_erea_02 p:nth-child(3) {
  font-size: 26px;
  color: #fff;
  padding: 50px 0;
}
#section_08 .text_erea_02 img {
  width: 35%;
}
#section_08 .text_erea_02 .flexbox_01 {
  width: 60%;
  margin: 0 auto;
}
#section_08 .text_erea_02 .flexbox_01 ul {
  display: flex;
  justify-content: space-evenly;
}
#section_08 .text_erea_02 .flexbox_01 ul img {
  width: 100%;
}
#section_08 .text_erea_02 .flexbox_01 ul li:nth-child(1) {
  width: 40%;
}
#section_08 .text_erea_02 .flexbox_01 ul li:nth-child(2) {
  width: 50%;
}
#section_08 .text_erea_02 .flexbox_02 {
  padding: 50px 0 15px;
}
#section_08 .text_erea_02 .flexbox_02 ul img {
  width: 100%;
}
#section_08 .text_erea_02 .flexbox_02 ul {
    display: flex;
    justify-content: space-between;
    width: 55%;
    margin: 0px auto 50px;
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(1) {
    width: 40%;
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(1) img {
  filter: drop-shadow(-5px 5px 5px rgba(0, 0, 0, 1));
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) {
  width: 50%;
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(1) {
  padding-top: 50px;
  font-size: 25px;
  font-weight: bold;
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(2) {
  font-size: 30px;
  color: #fff;
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(2) .color_01 {
  font-size: 135px;
	letter-spacing: -20px;
}
#section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(3) {
  font-size: 20px;
  text-align: left;
  line-height: 1.5;
  padding-top: 0;
}
#section_08 .text_erea_03 {
  background-color: #404040;
}
#section_08 .text_erea_03 p {
  color: #fff;
  padding: 50px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 740px) {
  #section_08 .text_erea_01 img {
    width: 40%;
    margin-bottom: 25px;
  }
  #section_08 .text_erea_01 {
    text-align: center;
    width: 95%;
    margin: 0 auto;
  }
  #section_08 .text_erea_01 p:nth-child(3) {
    margin-top: 25px;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 2.8rem;
  }
  #section_08 .text_erea_02 p:nth-child(1) {
    font-size: 1.6rem;
    padding-top: 70px;
    padding-bottom: 20px;
  }
  #section_08 .text_erea_02 img {
    width: 60%;
  }
  #section_08 .text_erea_02 p:nth-child(3) {
    font-size: 1.6rem;
    color: #fff;
    padding: 25px 0;
  }
  #section_08 .text_erea_02 .flexbox_01 {
    width: 95%;
    margin: 0 auto;
  }
  #section_08 .text_erea_02 .flexbox_02 ul {
    width: 95%;
	  justify-content: space-around;
  }
  #section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(1) {
    padding-top: 25px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(2) .color_01 {
    font-size: 9.5rem;
    width: 80px;
    display: inline-block;
  }
  #section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(2) {
    font-size: 2.7rem;
  }
  #section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) {
    width: 50%;
    padding-left: 5%;
  }
  #section_08 .text_erea_02 .flexbox_02 ul li:nth-child(1) {
    width: 43%;
    padding-left: 4%;
  }
  #section_08 .text_erea_03 p {
    color: #fff;
    padding: 30px 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  #section_08 .text_erea_02 .flexbox_02 ul li:nth-child(2) p:nth-child(3) {
    font-size: 1.2rem;
  }
}
/*section_08 end*/
/*footer*/
footer {
  padding-bottom: 165px;
}
footer .footer_nav ul {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #000000;
  position: relative;
}
footer .footer_nav ul li {
  width: 33%;
  text-align: center;
  font-size: 15px;
  padding: 20px 0;
}
footer .footer_nav ul li + li:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  height: 14px;
  margin-top: -7px;
  border-right: 1px solid #585858;
}
footer p {
  text-align: center;
  font-size: 15px;
  padding: 10px;
}
@media screen and (max-width: 740px) {
  footer .footer_nav ul li {
    width: 33%;
    text-align: center;
    font-size: 1rem;
    padding: 20px 0;
  }
  footer p {
    font-size: 1rem;
  }
  footer {
    padding-bottom: 13rem;
  }
}
/*footer end*/
/*footerfloating*/
#footerFloatingMenu {
  display: block;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0px 10px #ccc;
  padding-bottom: 10px;
}
#footerFloatingMenu img {
  max-width: 99%;
}
#footerFloatingMenu .float_erea {
  width: 35%;
  margin: 0 auto;
  text-align: center;
}
#footerFloatingMenu p {
  font-size: 16px;
  padding: 15px;
  font-weight: bold;
}
#footerFloatingMenu p .color_01 {
  font-size: 13px;
}
#footerFloatingMenu ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
}
#footerFloatingMenu ul li:nth-child(1) {
  width: 40%;
}
#footerFloatingMenu ul li:nth-child(2) {
  width: 49%;
}
#footerFloatingMenu p .color_02 {
  color: #CC2072;
}
@media screen and (min-width: 741px) {
  #footerFloatingMenu ul {
    width: 75%;
    margin: 0 auto;
  }
  #footerFloatingMenu ul li:nth-child(1) {
    width: 43%;
  }
  #footerFloatingMenu ul li:nth-child(2) {
    width: 51%;
  }
}
@media screen and (max-width: 740px) {
  #footerFloatingMenu .float_erea {
    width: 95%;
  }
  #footerFloatingMenu p {
    font-size: 1.6rem;
  }
  #footerFloatingMenu p .color_01 {
    font-size: 1.3rem;
  }
}
/*footerfloating end*/

/*modal*/
@media screen and (min-width: 741px) {
	.modal-content {
	width: 100% ;
	height: 100vh;
}

}
@media screen and (max-width: 740px) {
		.modal-content {
	width: 100% ;
	height: 100vh;
}

}
.modal-content {
	margin: 0 ;
	padding: 10px 20px ;
	border: 2px solid #aaa ;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 99999 ;
	overflow: auto;

}
  
#modal-overlay {
	z-index: 1 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
}

.button-link {
	color: #000 ;
	text-decoration: underline ;
}
 
.button-link:hover {
	cursor: pointer ;
	color: #ccc ;
}


/*modal end*/

/*kiyaku*/
footer .Inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
	position: relative;
}

.cloce_button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    border: 1px solid #000;
    text-decoration: none;
    width: 35px;
    height: 35px;
}
.cloce_erea{}
footer .Inner-Headline {
  font-weight: bold;
  font-size: 32px;
}
@media screen and (max-width: 480px) {
  footer .Inner-Headline {
    font-size: 24px;
	  padding-top: 45px;
  }
	.cloce_button {
    top: 45px;
			line-height: 0.9;

}
}
footer .Inner-Text {
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 15px;
}
footer .Inner-Text.first {
  margin-top: 36px;
}
footer .Inner-Box {
  margin-top: 16px;
}
footer .Inner-Box-Headline {
  font-weight: bold;
  font-size: 28px;
}
@media screen and (max-width: 480px) {
  footer .Inner-Box-Headline {
    font-size: 20px;
  }
}
footer .Inner-Box-List {
  margin: 20px 0 0 40px;
}
footer .Inner-Box-List-Item {
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  list-style-type: decimal;
	font-size: 14px;
}
footer .Inner-Box-List-Item-Ol {
  margin: 20px 0 0 40px;
}
footer .Inner-Box-List-Item-Ol-Item {
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  list-style-type: decimal;
}
footer .Inner-Box-List-Item-Link {
  text-decoration: underline;
  display: inline-block;
  color: red;
}
footer .Inner-Box-Contact {
  margin-top: 36px;
}
footer .Inner-Box-Contact-Text {
  letter-spacing: 0.05em;
  line-height: 0;
  font-size: 15px;
	text-align: left;
}
footer .Inner-Box-Contact-Text:nth-child(2) {
  margin-top: 0px;
}
.footer Inner-Box-Item {
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  footer .Inner-Box-Item {
    letter-spacing: inherit;
    font-size: 14px;
  }
}

.inner-textleft{
	text-align: left;
	margin-top: 10px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    list-style-type: decimal;
    font-size: 14px;
}

/*kiyaku end*/

/*company*/
.company_area {
    padding-top: 150px;
    width: 900px;
    margin: 0 auto;
}

#company_section_01 h2 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
	/*color: #6d9cd9;*/
	margin-bottom: 30px;
	
}
#company_section_01 h3 {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}
#company_section_01 h3 span {
    font-size: 20px;
}
#company_section_01 ul{
	display: flex;
}
#company_section_01 ul li:first-child {
    width: 30%;
    font-size: 16px;
    padding: 20px 20px 20px 40px;
		background-color: #f5f6f7;
	font-weight: bold;
	    line-height: 35px;
}
#company_section_01 ul li:last-child {
    width: 70%;
    font-size: 20px;
    padding: 20px 20px 20px 40px;
    background-color: #ffffff;
    line-height: 35px;
}
.bg_erea{
	margin: 50px 0 ;
}
.color01{
border-top: 1px solid #d6d7d9;
}
.color02{
border-bottom: 1px solid #d6d7d9;
border-top: 1px solid #d6d7d9;
}
.color03{
border-bottom: 1px solid #d6d7d9;
}


@media screen and (max-width: 740px) {
	.company_area {
    padding-top: 100px;
    width: 95%;
    margin: 0 auto;
}
#company_section_01 h2 {
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
	margin-bottom: 30px;
	
}
#company_section_01 h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;

}
#company_section_01 h3 span {
    font-size: 1.6rem;
}	
#company_section_01 ul li:first-child {
    font-size: 1.2rem;
    padding: 10px;
    width: 30%;
    line-height: 25px;
}
#company_section_01 ul li:last-child {
    font-size: 1.2rem;
    padding: 10px;
	line-height: 25px;	
}
	.bg_erea{
	margin: 25px 0 ;
}
	
}
/*company end*/

.text_min{
	    font-size: small;
}