@charset "UTF-8";

/*============================
	parts
============================*/
/* btn ▼*/
.link__btn a {
  font-size: 1.5rem;
  color: #fff;
  display: block;
  width: 260px;
  line-height: 60px;
  background: #f784bd;
  text-align: center;
  transition-duration: 0.6s;
  padding: 0 1%;
  position: relative;
  
}
.link__btn i {
  color: #fff;
  position: absolute;
  top: 40%;
  right: 10%;
  transition: 0.5s;
}
.link__btn a:hover {
  background-position: center right 8%;
}
.link__btn a:hover i {
  right: 8%;
}

.link__btn span {
  display: block;
  color: #1337e6;
  font-size: 1.6rem;
}

.btn__border a {
  position: relative;
}

.btn__border a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1337e6;
  left: 50%;
  bottom: -20%;
  border-radius: 1px;
  transition: 0.5s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.bd-wh a::after {
  background: #fff;
}

.btn__border a:hover::after {
  width: 100%;
}

.link__btn a:hover {
  opacity: 0.9;
}

/* btn ▲*/

html.active {
  overflow: hidden;
}

a {
  transition: 0.5s;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.8em;
}

.font-en {
  font-family: "Roboto", sans-serif;
}

.font-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.font-ex {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 900;
}

.fuchidori {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

.fuchidori_bk {
  text-shadow: 1px 1px 0 #ccc, -1px -1px 0 #ccc, -1px 1px 0 #ccc, 1px -1px 0 #ccc, 0px 1px 0 #ccc, 0-1px 0 #ccc, -1px 0 0 #ccc, 1px 0 0 #ccc;
}

.bg__wh {
  background: #fff;
}

.bg_lg {
  background: -moz-linear-gradient(#00abd9, #00d9ae);
  background: -webkit-linear-gradient(#00abd9, #00d9ae);
  background: linear-gradient(#00abd9, #00d9ae);
}

.link__btn .bg_lg {
  background: url(../img/cmn/btn_arw_wh.png) no-repeat center right 10%, -moz-linear-gradient(90de, #00abd9, #00d9ae);
  background: url(../img/cmn/btn_arw_wh.png) no-repeat center right 10%, -webkit-linear-gradient(90deg, #00abd9, #00d9ae);
  background: url(../img/cmn/btn_arw_wh.png) no-repeat center right 10%, linear-gradient(90deg, #00abd9, #00d9ae);
}

.section__tit span {
  font-size: 6rem;
  margin-bottom: 10px;
  display: block;
}

.section__tit {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .reason__tit .font-en {
    transform: translateY(0.1em) !important;
    line-height: 1.1 !important;
  }
}

/* 吹き出し ▼*/
.section__pop {
  padding: 10px 15px;
  background: #fff;
  color: #00abd9;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.section__pop::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
  bottom: -40%;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.section__pop.color02 {
  color: #fff;
  background: -moz-linear-gradient(90deg, #00abd9, #00d9ae);
  background: -webkit-linear-gradient(90deg, #00abd9, #00d9ae);
  background: linear-gradient(90deg, #00abd9, #00d9ae);
}

.section__pop.color02::before {
  border-color: #00c2c4 transparent transparent transparent;
}

/* 吹き出し ▲*/
.marker01 {
  position: relative;
  z-index: 1;
}

.marker01::after {
  position: absolute;
  content: "";
  background: #f784bd;
  width: 104%;
  height: 12px;
  bottom: -5px;
  left: -2%;
  z-index: -1;
}
.marker02 {
  position: relative;
  z-index: 1;
}

.marker02::after {
  position: absolute;
  content: "";
  background: #f784bd;
  width: 100%;
  height: 10px;
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.marker03 {
  position: relative;
  z-index: 1;
}

.marker03::after {
  position: absolute;
  content: "";
  background: #f784bd;
  width: 104%;
  height: 12px;
  bottom: -5px;
  left: -2%;
  z-index: -1;
}

/*伸びる線*/

.stretch_border::after {
  content: "";
  width: 0;
  height: 1px;
  background: #d81626;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.7s;
}

/* hover zoom */
/*　画像の拡大　*/

.zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn:hover img {
  /*hoverした時の変化*/
  transform: scale(1.1);
  /*拡大の値を変更したい場合はこの数値を変更*/
}

.mask {
  display: block;
  line-height: 0;
  /*行の高さを0にする*/
  overflow: hidden;
  /*拡大してはみ出る要素を隠す*/
}

@media screen and (max-width: 768px) {
  .section__tit {
    font-size: 2.4rem;
  }

  .section__subtit {
    font-size: 3rem;
  }

  .btn__border a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .section__tit {
    font-size: 1.8rem;
  }

  .section__tit span {
    font-size: 4rem;
  }

  .section__subtit {
    font-size: 2.2rem;
    line-height: 1.8;
  }
}

/*============================
	header
============================*/

header {
  top: 0%;
  z-index: 999;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12); */
  background: #fff;
  width: 100%;
}
.header__flexwrap {
  height: 120px;
}

.header__flex--left {
  width: 19%;
}

.header__logo {
  width: 100%;
  max-width: 230px;
  height: auto;
  padding: 30px 0 0 1%;
}

.header__tel--wrap {
  margin: 0 0 0 auto;
  width: 68%;
  padding: 30px 3% 0 0;
}
.header__tel {
  font-size: min(3.6rem, 3vw);
  font-weight: bold;
  background: url(../img/cmn//icon_tel_hd.png) no-repeat center left;
  background-size: contain;
  padding-left: 30px;
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 10px auto;
  line-height: 1;
  white-space: nowrap;
}
.header__tel--time {
  text-align: right;
  font-size: min(1.2rem, 1vw);
  font-weight: bold;
}

.header__tel span {
  font-size: min(1.8rem, 1.4vw);
}
.header__contact {
  margin: 0 0 0 auto;
  width: 13%;
}
.header__contact a {
  display: block;
  padding: 0 5%;
  background: url(../img/cmn/icon_mail_hd.png) no-repeat center top 20px, #f784bd;
  padding: 70px 10% 0;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: min(1.9rem, 1.4vw);
  margin: 0 0 0 auto;
  min-width: 160px;
}

/***** g-nav PC ▼*****/

.g-nav__pc {
  height: 70px;
  background: #fde8f1;
  width: 100%;
  padding: 25px 0 0;
}
.g-nav__pc--ul {
  height: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.g-nav__pc--ul li {
  padding: 0 2%;
  text-align: center;
  width: 100%;
  position: relative;
}
.g-nav__pc--ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background: #1f0060;
  top: 0;
  right: 0;
}

.g-nav__li01 img {
  width: 24px;
}

.g-nav__pc--ul li a {
  white-space: nowrap;
  font-size: min(1.6rem, 1.4vw);
  font-weight: bold;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #333;
}
.g-nav__pc--ul li span {
  font-weight: bold;
}
.g-nav__sub--trg i {
  padding-left: 10px;
}

.g-nav__pc--ul li a:hover {
  opacity: 1;
  color: #1f0060;
}
.g-nav__sub--trg {
  position: relative;
}
.g-nav__sub {
  position: absolute;
  font-size: 1.4rem;
  padding: 15px 5%;
  background: rgba(255, 255, 255, 1);
  top: 45px;
  left: 150%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  z-index: 999;
  border-radius: 10px;
  display: none;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s;
  text-align: left;
  width: 100vw;
}

.g-nav__sub--trg:hover .g-nav__sub {
  display: flex;
  opacity: 1;
  height: auto;
  margin: 0;
  animation: subnavShow 0.5s linear 0s;
}
@keyframes subnavShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.g-nav__sub li img {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.g-nav__sub li a {
  color: #f784bd;
  text-align: center;
}
.g-nav__sub li a:hover {
  opacity: 0.5;
}
.g-nav__sub li:hover::before {
  display: none;
}
.g-nav__pc--ul .g-nav__sub li:not(:last-child)::before {
  display: none;
}

/* g-nav 伸びるボーダー */

/* .g-nav__pc--ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #03a7e4;
    left: 50%;
    bottom: -50%;
    border-radius: 1px;
    transition: .5s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.g-nav__pc--ul li a:hover:before {
    width: 100%;
}

.g-nav__sub li a:hover:before{
    display: none;
    
} */

/***** g-nav ▲*****/

/***** ハンバーガー ▼*****/

.header__menu {
  font-weight: bold;
  font-size: 1rem;
  z-index: 999;
  padding: 15px 10px;
  width: 52px;
  height: 52px;
  /* background: #00528d; */
  transition: 0.5s;
}

/* .header__menu.active {
    background: #00528d;
} */

.header__hamburger {
  width: 30px;
  height: 8px;
  cursor: pointer;
}

.header__hamburger span {
  background: #ff6600;
  height: 2px;
  width: 100%;
  left: 0;
}

.header__hamburger.active span {
  background: #ff6600;
}

.header__menu .header__menu--txt {
  font-size: 1rem;
  text-align: center;
  color: #ff6600;
  font-weight: bold;
  transition: 0.5s;
  margin-top: 5px;
}

/* .header__gnav--sp.active .header__menu--txt {
    
} */

.headerColor-default .header__hamburger span {
  background: #fff;
}

.headerColor-default .header__menu--txt {
  color: #fff;
  text-align: center;
  transition: 0.5s;
}

.header__hamburger--top {
  top: 0;
  transition: 0.5s;
}

.header__hamburger--middle {
  top: 42.5%;
  transition: 0.5s;
}

.header__hamburger--bottom {
  bottom: 0;
  transition: 0.5s;
}

.header__hamburger.active .header__hamburger--top {
  transform: translateY(3px) rotate(30deg);
}

.header__hamburger.active .header__hamburger--middle {
  display: none;
}

.header__hamburger.active .header__hamburger--bottom {
  transform: translateY(-3px) rotate(-30deg);
}

/***** sp nav *****/

.g-nav__bg {
  position: fixed;
  top: 0;
  right: -120%;
  height: 100vh;
  width: 60vw;
  transition: all 0.5s;
  background: #fff;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 50px 10% 100px;
  margin-top: 52px;
  z-index: 9999;
}

.g-nav__bg.active {
  right: 0;
}

.g-nav__sp-ul {
  margin: 0 0 0 auto;
  font-size: 1.6rem;
  margin-bottom: 50px;
}

.g-nav__sp ul li a,
.g-nav__sp ul li span {
  height: 100%;
  display: block;
  margin-bottom: 20px;
}

.g-nav__bg .header__tel {
  font-size: 3rem;
  line-height: 1em;
  margin-bottom: 50px;
}

.g-nav__sp .g-nav__tel span {
  font-size: 2.4rem;
}

.g-nav__sp .g-nav__tel {
  font-size: 3rem;
  line-height: 1.2;

  background: url(../img/cmn/icon_tel_hd.png) no-repeat center left;
  padding-left: 30px;
}
.g-nav__sp .header__tel--time {
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 1.2rem;
  text-align: left;
}

.header__tel--time {
  font-size: 1.6rem;
}

.g-nav__bg .g-nav__contact a {
  display: block;
  padding: 0 5%;
  width: 100%;
  line-height: 50px;
  background: url(../img/cmn/icon_mail_hd.jpg) no-repeat center left 10%, #ff6600;
  background-size: 10%;
  border-radius: 10px;
  padding-left: 10px;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .header__flexwrap {
    height: auto;
  }
  .g-nav__pc {
    display: none;
  }

  .g-nav__bg .pc {
    display: block;
  }

  .header__contact.pc {
    display: none;
  }

  header {
    height: 52px;
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 0;
    background: #fff;
  }

  header .inner__large {
    padding: 0;
    height: auto;
  }

  .header__txt {
    display: none;
  }

  .header__logo {
    width: 120px;
    min-width: auto;
    height: auto;
    margin: 5px 0 5px 10px;
    padding: 0;

    position: relative;
    z-index: 999;
  }

  .header__flexwrap {
    display: flex;
  }

  .header__flex-right {
    width: auto;
    text-align: left;
  }

  .header__flexright--sp {
    display: flex;
    align-items: center;
  }

  .header__contact a {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .header__flex-right {
    width: auto;
  }

  .g-nav__bg {
    width: 100vw;
  }
}

/*============================
	fv
============================*/
.fv {
  background: url(../img/top/bg_fv.jpg) no-repeat top center;
  background-size: 100%;
}

.fv .slick01 {
  width: 100%;
  margin: 0 auto;
}

/* .fv .slick01{
    min-height: 640px;
    width: auto;
} */

.fv__copy {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
  top: 55%;
  left: 50%;
  width: 60%;
}

.fv .mainvis_sp{
  display: none;
}

.fv__scroll {
  font-size: 1.4rem;
  color: #899dff;
  font-weight: normal;
  bottom: 10%;
  left: 50%;
  z-index: 99;
  position: absolute;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.fv__scroll::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  background: #899dff;
  left: 50%;
  bottom: -80px;
  animation: scrollAnime 2s 0s infinite;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

@keyframes scrollAnime {
  0% {
    height: 200%;
  }

  50% {
    height: 300%;
  }

  100% {
    height: 200%;
  }
}

.fv__scroll::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: #899dff;
  left: 45%;
  bottom: -74px;
  transform: rotate(-45deg);
}

/* スライド slick*/
/* 
.slide-animation {
    animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
} */

@media screen and (max-width: 768px) {
  .fv .slick01.pc {
    display: block;
  }

  .fv .slick01.sp {
    display: none;
  }

  .fv {
    margin-top: 52px;
  }
  .fv .mainvis_pc{
    display: none;
    }

  .fv .mainvis_sp{
  display: block;
  }

  .fv__scroll {
    bottom: 20%;
  }
}

@media screen and (max-width: 599px) {
  .fv {
    margin-top: 52px;
  }

  .fv .slick01.pc {
    display: none;
  }

  .fv .slick01.sp {
    display: block;
  }

  .fv__copy {
    width: 85%;
    right: -35%;
    top: 50%;
  }

  .fv__scroll {
    bottom: 12%;
  }
}

.fv .slick01.sp {
  width: 100%;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  right: 0%;
  bottom: 10px;
}

.slick-dots li {
  width: 30px;
}

.slick-dots li button:before {
  content: "●";
  width: 15px;
  height: 3px;
  font-size: 10px;
  color: #fff;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #fe9a06;
}

@media screen and (max-width: 599px) {
  .slick-dots li button:before {
    font-size: 10px;
  }
}

/*============================
	about
============================*/
.about {
  padding: 60px 0 200px;
}
.about .inner {
  padding: 0 2%;
}
.about__tit {
  font-size: 4rem;
  font-weight: bold;
  padding-top: 70px;
  background: url(../img/top/icon_about_tit.png) no-repeat center top;
  text-align: center;
  margin-bottom: 30px;
}
.about__lead {
  font-size: 2.4rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
}


.about__txt {
  text-align: center;
  font-size: 1.7rem;
  line-height: 2;
  margin-bottom: 50px;
}
.about .btn__products {
  margin-right: 5%;
}
.about .btn__company a {
  margin-left: 5%;
  background: #fff;
  border: solid 1px #f784bd;
  color: #f784bd;
}
.about .btn__company i {
  color: #f784bd;
}
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 599px) {
  .about {
    padding: 60px 0 120px;
  }
  .about .inner {
    padding: 0 5%;
  }
  .about__tit {
    font-size: 3rem;
  }
  .about__lead {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
  }
  .about__txt {
    text-align: left;
  }
  .about .btn__products {
    margin: 0 0 20px;
  }
  .btn__products a {
    margin: 0 auto;
  }
  .about .btn__company a {
    margin: 0 auto;
  }
}

/*============================
	products
============================*/
.products {
  padding: 200px 0 120px;
  position: relative;
  background: url(../img/top/bg_products.jpg);
  background-size: cover;
}

.products .inner {
  padding: 0 2%;
}
.products__tit {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  padding-top: 130px;
  text-align: center;
  margin-bottom: 16px;
  left: 50%;
  top: -130px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background: url(../img/top/products_tit_icon.png) no-repeat center top 50px, #fff;
}

.products__tit span {
  font-size: 2.4rem;
  color: #f784bd;
  display: block;
  margin-top: 10px;
}
.products__art {
  width: 46%;
  background: #f784bd;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
.products__art--txt {
  padding: 20px 5% 5px;
}
.products__art--txt a{
  color: #fff;
}
.products__art--h3 {
  font-weight: bold;
  padding: 0 5%;
  background: url(../img/top/btn_arw_long.png) no-repeat right 5% bottom;
  transition: 0.5s;
}
.products__art--h3:hover {
  background-position: right 7% bottom;
}
.products__art--h3 span {
  font-size: 2.7rem;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
.products__art--h3 a{
  color: #fff;
}
 
.products__art.art__bt {
  padding-top: 30px;
}

.products__art .products__art--img img{
  width: 100%;
}
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 599px) {
  .products {
    padding: 120px 0 60px;
  }
  .products .inner {
    padding: 0 5%;
  }
  .products__tit {
    width: 150px;
    height: 150px;
    top: -70px;
    font-size: 2.2rem;
    background-size: 30%;
    background-position: top 20px center;
    padding-top: 70px;
  }
  .products__tit span {
    font-size: 1.6rem;
  }
  .products__art {
    width: 100%;
  }
  .products__art--h3 span {
    font-size: 2rem;
  }
}

/*============================
	news
============================*/
.news {
  padding: 120px 0 70px;
}

.news .inner {
  padding: 0 2%;
}
.news .section__tit {
  font-size: 2rem;
  padding-left: 70px;
  background: url(../img/top/news_tit_icon.png) no-repeat center left;
  background-size: contain;
  margin-bottom: 60px;
}
.news .section__tit span {
  font-size: 4.5rem;
}
.news__dl {
  margin-bottom: 50px;
}
.news__dt {
  float: left;
  clear: both;
  color: #f784bd;
  margin-bottom: 40px;
  line-height: 26px;
}
.news__cat {
  font-size: 1.4rem;
  color: #fff;
  padding: 0 10px;
  line-height: 26px;
  background: #f784bd;
  display: inline-block;
  margin-left: 20px;
}
.news__dd {
  margin-left: 210px;
  line-height: 1.8;
  margin-bottom: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news .link__btn a {
  margin: 0 auto;
}

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

@media screen and (max-width: 599px) {
  .news {
    padding: 60px 0;
  }
  .news .inner {
    padding: 0 5%;
  }
  .news .section__tit {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .news .section__tit span {
    font-size: 3rem;
  }
  .news__dt {
    float: none;
    margin-bottom: 10px;
  }
  .news__dd {
    margin: 0 0 20px;
  }
}

/*============================
	reason
============================*/
.reason {
  padding: 70px 0 110px;
  background: url(../img/top/bg_reason.jpg) center top;
  background-size: cover;
}
.reason .inner {
  padding: 0 2%;
}
.reason__tit {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  margin-bottom: 70px;
}
.reason__tit img {
  margin-right: 10px;
  width: 200px;
}
.reason__tit .font-en {
  font-size: 8rem;
}
.reason .marker {
  font-weight: bold;
}
.reason__art {
  width: 32%;
  background: #fff;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.reason__icon {
  width: 21%;
  height: auto;
  margin: -10% auto 10px;
}
.reason__art--h3 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 36px;
  padding: 0 1%;
}
.reason__art--h3::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #f784bd;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}
.reason__art--txt {
  padding: 0 1%;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 599px) {
  .reason {
    padding: 60px 0;
  }
  .reason .inner {
    padding: 0 5%;
  }
  .reason__tit {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .reason__tit img {
    width: 120px;
  }
  .reason__tit .font-en {
    font-size: 5rem;
  }
  .reason__art {
    width: 100%;
  }
}

/*============================
	flow
============================*/
.flow {
  padding-top: 60px;
}

.flow__tit {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  padding-top: 70px;
  background: url(../img/top/flow_tit_icon.png) no-repeat center top;
  margin-bottom: 50px;
}
.flow__tit span {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ff6600;
  text-align: center;
  margin-top: 20px;
}
.flow__bg {
  padding-bottom: 80px;
  margin: 0 auto;
  max-width: 1560px;
  background: -webkit-linear-gradient(#fff 0%, #fff 20%, #fef7e4 20%, #fef7e4 100%);
  background: -moz-linear-gradient(#fff 0%, #fff 20%, #fef7e4 20%, #fef7e4 100%);
  background: #fff5fa;
}
.flow__flexwrap {
  margin-bottom: 70px;
}
.flow__art {
  width: 20%;
  margin: 0 1%;
  background: #fde8f1;
  padding: 110px 1% 20px;
  position: relative;
}
.flow__num {
  font-size: 5rem;
  font-weight: bold;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}
.flow__icon {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.flow__art--h3 {
  text-align: center;
  font-weight: bold;
}
.flow .link__btn a {
  margin: 0 auto;
  background: #fff;
  border: solid 1px #f784bd;
  color: #f784bd;
}
.flow .link__btn i {
  color: #f784bd;
}
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 599px) {
  .reason .inner {
    padding: 0 5%;
  }
  .flow__tit {
    font-size: 2rem;
  }
  .flow__tit span {
    font-size: 1.6rem;
  }
  .flow__flexwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
  }
  .flow__art {
    width: 31%;
    margin-bottom: 40px;
    padding: 70px 1% 10px;
  }
  .flow__num {
    font-size: 4rem;
    top: -35px;
  }
  .flow__icon {
    width: 25%;
    top: 40%;
  }
  .flow__art--h3 {
    line-height: 1.8;
  }
}
/*============================
	youtube
============================*/
.youtube {
  padding: 140px 0 170px;
  background: url(../img/top/bg_youtube.jpg) center center;
  background-size: cover;
}
.youtube__logo {
  text-align: center;
  margin-bottom: 40px;
}
.youtube__logo .youtube__icon {
  width: 270px;
}
.youtube__logo .link_icon {
  width: 20px;
  padding-bottom: 20px;
}
.youtube iframe {
  width: 700px;
  height: 400px;
  background: #ccc;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 599px) {
  .youtube {
    padding: 60px 0;
    background-size: contain;
  }
  .youtube .inner {
    padding: 0 5%;
  }
  .youtube__logo {
    margin-bottom: 20px;
  }
  .youtube__logo .youtube__icon {
    width: 150px;
  }
  .youtube iframe {
    width: 100%;
    height: auto;
  }
  .youtube__logo .link_icon {
    padding-bottom: 10px;
  }
}
/*============================
	footer contact
============================*/
.contact {
  padding: 60px 0;
  background: url(../img/cmn/bg_contact.jpg) no-repeat center top;
  background-size: cover;
}

.contact .inner {
  padding: 0 2%;
}

.contact__tit {
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px #fff;
  margin-bottom: 50px;
}

.contact__telwrap {
  width: 33%;
  padding-right: 1%;
}

.contact__tel {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  background: url(../img/cmn/icon_tel_ft.png) no-repeat center left;
  padding-left: 30px;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.contact__tel.sp {
  display: none;
}

.contanct__tel--time {
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 60px;
}

.contact__btn,
.estimation__btn {
  width: 30%;
}

.contact__btn a {
  max-width: 280px;
  display: block;
  font-size: 2rem;
  background: url(../img/cmn/icon_mail_ft.png) no-repeat center left 10%, #ff6600;
  color: #fff;
  max-width: 100%;
  line-height: 60px;
  text-align: center;
  padding: 0 10% 0 15%;
  white-space: nowrap;
}
.estimation__btn a {
  max-width: 280px;
  display: block;
  font-size: 2rem;
  background: url(../img/cmn/icon_estimation.png) no-repeat center left 10%, #f784bd;
  color: #fff;
  max-width: 100%;
  line-height: 60px;
  text-align: center;
  padding: 0 10% 0 15%;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .contact__tel {
    font-size: 3rem;
  }
  .estimation__btn a {
    font-size: 1.6rem;
  }

  .contact__btn a {
    font-size: 1.6rem;
    background-size: 10%;
    background-position: 5%;
  }

  .contanct__tel--time {
    margin-left: 0;
  }
}

@media screen and (max-width: 599px) {
  .contact {
    padding: 60px 0;
  }

  .contact .inner {
    padding: 0 5%;
  }
  .contact__tit span {
    font-size: 4rem;
  }
  .contact__tit {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .contact_txtbox {
    width: 100%;
    margin: -40px auto 0;
    padding: 60px 5% 40px;
  }

  .contact__txt {
    font-size: 1.6rem;
  }

  .contact__telwrap {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact__tel.pc {
    display: none;
  }

  .contact__tel.sp {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }

  .contact__tel {
    width: 100%;
  }
  .contanct__tel--time {
    text-align: center;
  }
  .contact__mailwrap {
    width: 100%;
  }

  .contact__btn a {
    line-height: 60px;
    font-size: 1.8rem;
  }
  .contact__btn,
  .estimation__btn {
    width: 90%;
    margin: 0 auto 20px;
  }
}

/*============================
	footer
============================*/

footer .footer__bottom {
  padding: 60px 1% 70px;
}

.footer__bt--left {
  width: 50%;
}

.footer__bt--right {
  width: 50%;
}

.footer__logo {
  width: 230px;
  margin: 0 30px 0 0;
}

.footer__adress {
  font-size: 1.3rem;
}
.footer__adress a {
  color: #1f0060;
  text-decoration: underline;
}

.footer__nav {
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

.footer__nav.top {
  margin-bottom: 30px;
}

.footer__nav li {
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer__nav li span {
  font-weight: bold;
}
.footer__nav a {
  width: 100%;
}

.footer__copyright {
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  footer .footer__bottom {
    padding: 60px 3%;
  }

  .footer__bt--left {
    width: 40%;
  }

  .footer__bt--right {
    width: 60%;
  }
}

@media screen and (max-width: 599px) {
  footer .footer__bottom {
    padding: 60px 5% 40px;
  }
  .footer__flexwrap {
    padding: 60px 0 30px;
    margin-bottom: 30px;
  }

  .footer__bt--left {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer__bt--right {
    width: 100%;
  }

  .footer__logo {
    width: 160px;
    margin-bottom: 20px;
  }

  .footer__fax {
    margin: 0;
  }

  .footer__nav {
    font-size: 1.4rem;
    width: 100%;
    border: none;
  }
  .footer__nav.bottom {
    width: 100%;
  }

  .footer__nav li:not(:last-child) {
    border: none;
  }

  footer .footer__nav li {
    margin-bottom: 20px;
    text-align: left;
  }

  .footer__nav li span {
    display: none;
  }

  .footer__copyright {
    text-align: left;
    padding-left: 5%;
    font-size: 1rem;
  }
}

/*============================
	page top
============================*/

#page-top a {
  position: fixed;
  width: 85px;
  height: 40px;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: 999;
}

#page-top.active a {
  opacity: 1;
}

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

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

/*============================
	tablet / sp
============================*/

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

/*============================
	sp only
============================*/

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


