@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

#body {
  overflow: auto;
}

#body.hidden {
  overflow: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

ol, ul, li, dl, dt, dd {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
  min-height: 1%;
}

/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
.clear {
  clear: both;
}

/********************
animation setting
********************/
@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: .5;
    color: #fff;
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: .5;
    color: #fff;
  }
}

/********************
settings
********************/
::-moz-selection {
  background-color: rgba(0, 105, 255, 0.3);
}

::selection {
  background-color: rgba(0, 105, 255, 0.3);
}

html {
  font-family: '游ゴシック',YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
  font-size: 14px;
  line-height: 1.75;
  position: relative;
}

body {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  background-color: #fff;
}

img,
iframe,
object {
  line-height: 1;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #12aaaf;
  outline: none;
}

a,
a img {
  -webkit-transition: all .25s ease-in 0s;
  transition: all .25s ease-in 0s;
  border: none;
  outline: none;
}

a button {
  padding: 0;
  border: none;
  background: 0;
}

a:hover,
a:active,
a:focus {
  color: #0b676a;
}

a img:hover,
a img:active,
a img:focus {
  opacity: .87;
}

/********************
loading effects
********************/
.loadingAnim {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 150px;
  height: 1.25em;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #fff;
  will-change: transform, width;
}

.loadingAnim_line:before {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: 'LOADING';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

.loaded .loadingAnim_line:before {
  content: 'LOADED!';
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  background-color: #FAF6F9;
  /*★画面の色*/
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  transform: translateY(1%);
}

/********************
style
********************/
/*------------------------------------------*/
/* 変数 */
/*------------------------------------------*/
/*------------------------------------------*/
/* 全体 */
/*------------------------------------------*/
html {
  font-size: 62.5%;
  /*16px ×65.5%=10px*/
  color: #454444;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat','Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 2.0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  /*文字詰めしてバランスよくキレイに*/
  letter-spacing: 0.05em;
  /*文字間*/
}

a {
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  color: #454444;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  /*コンテンツ幅*/
  max-width: 1300px;
  padding: 0 8%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /*画像伸びない*/
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  /*両端揃え中央*/
}

.pc {
  display: block !important;
  /*PCは表示*/
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
    /*SPは非表示*/
  }
}

.sp {
  display: none !important;
  /*PCは非表示*/
}

@media only screen and (max-width: 767px) {
  .sp {
    display: block !important;
    /*SPは表示*/
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.shadow {
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
}

/*------------------------------------------*/
/* 共通 */
/*------------------------------------------*/
.title {
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.title span {
  display: block;
  font-size: 1.3rem;
}

/*------------------------------------------*/
/* ヘッダー */
/*------------------------------------------*/
header {
  background: url(https://alfagifu.jp/images/header2.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 700px;
  width: 100%;
}

@media screen and (max-width: 1250px) {
  header {
    background-attachment: scroll;
    /*背景固定解除*/
    background-position: right 46% bottom 45%;
    /*画像の表示位置調整*/
    height: 600px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 600px;
  }
}

#global-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  padding: 0 8%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 1000px) {
  #global-nav {
    /*ハンバーガーの中*/
    display: none;
    position: fixed;
    overflow-y: auto;
    width: 90%;
    height: 100vh;
    padding: 120px 0 0;
    background-color: #FAF6F9;
    z-index: 10;
  }
}

#global-nav .navlogo {
  width: 210px;
}

@media screen and (max-width: 1000px) {
  #global-nav .navlogo {
    display: none;
  }
}

#global-nav .nav__rglink {
  /*PCのみ*/
  background-color: #FC2674;
  padding: 5px;
  width: 74%;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  border-radius: 20px;
  margin-bottom: 15px;
  margin-left: 95px;
}

#global-nav .nav__rglink > a {
  color: #fff;
}

#global-nav .nav__rglink:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1000px) {
  #global-nav .nav__rglink {
    display: none;
  }
}

#global-nav .navlist {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

#global-nav .navlist span {
  display: block;
  font-size: 1.2rem;
  color: #454444;
  line-height: 1.5;
}

#global-nav .navlist__logo img {
  margin-top: 40px;
  width: 130px;
}

@media screen and (max-width: 1000px) {
  #global-nav .navlist {
    display: block;
    text-align: center;
    font-size: 1.5rem;
  }
}

#global-nav .navlist li {
  margin: 0 20px;
}

@media screen and (max-width: 1000px) {
  #global-nav .navlist li {
    margin-top: 40px;
  }
}

#global-nav .navlist li a {
  letter-spacing: 0.15em;
}

#global-nav .navlist li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1000px) {
  #global-nav .navlist li a {
    color: #FC2674;
    font-weight: 600;
    font-size: 1.8rem;
  }
}

.hamburger__back {
  display: none;
}

@media screen and (max-width: 1000px) {
  .hamburger__back {
    display: block;
    z-index: 5;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

@media screen and (max-width: 767px) {
  .hamburger__back {
    height: 80px;
  }
}

@media screen and (max-width: 1000px) {
  .hamburger__back--logo {
    position: relative;
    top: 18%;
    left: 6%;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger__back--logo {
    top: 25%;
    width: 130px;
  }
}

.menu-trigger {
  display: none;
}

@media screen and (max-width: 1000px) {
  .menu-trigger {
    position: fixed;
    display: block;
    width: 33px;
    height: 29px;
    top: 5.5%;
    right: 6%;
    z-index: 10;
  }
  .menu-trigger span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #454444;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 14px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
}

@media screen and (max-width: 1000px) and (max-width: 767px) {
  .menu-trigger {
    top: 3.5%;
  }
}

@media screen and (max-width: 1000px) {
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(15px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
  }
  @-webkit-keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
  }
}

/*------------------------------------------*/
/* TOPICS */
/*------------------------------------------*/
.topics {
  background-color: #fc2674de;
  color: #fff;
  padding: 30px 0;
}

@media screen and (max-width: 1000px) {
  .topics {
    padding: 40px 0;
  }
}

@media screen and (max-width: 1000px) {
  .topics__wrapper {
    display: block;
  }
}

.topics__left {
  width: 35%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .topics__left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.topics__right {
  width: 65%;
}

.topics__right table {
  width: 100%;
}

.topics__right--list {
  border-bottom: 1px dotted;
}

.topics__right--list:last-of-type {
  border-bottom: none;
}

.topics__right--day {
  padding: 20px 2em 20px 0;
  font-weight: 600;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .topics__right--day {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1.25em 0 0 0;
  }
}

.topics__right--info {
  padding: 20px 2em 20px 0;
  width: 100%;
}

.topics__right--info span a {
  display: inline-block;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .topics__right--info {
    display: block;
    padding: 5px 0 20px 0;
  }
}

@media screen and (max-width: 1000px) {
  .topics__right {
    width: 100%;
  }
}

/*------------------------------------------*/
/* ABOUT */
/*------------------------------------------*/
.about {
  position: relative;
  height: 650px;
}

@media screen and (max-width: 767px) {
  .about {
    height: 950px;
  }
}

.about .title {
  font-size: 3.3rem;
}

@media screen and (max-width: 767px) {
  .about .title {
    font-size: 3rem;
  }
}

.about.reach_top::before {
  height: 0;
  top: auto;
  bottom: 0;
}

.about.reach_bottom::before {
  height: 0;
}

.about::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(https://alfagifu.jp/images/about_dot.png) right 0%/contain repeat;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .about::before {
    background: url(https://alfagifu.jp/images/about_dot.png) right 0%/300% auto repeat;
  }
}

.about__text {
  color: #3B7CD6;
  position: absolute;
  top: 18%;
  left: 10%;
}

@media screen and (max-width: 767px) {
  .about__text {
    top: 7%;
    left: 0;
  }
}

.about__text--lead {
  margin-top: 30px;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .about__text--lead {
    margin-top: 15px;
    line-height: 2.2;
  }
}

.about__mean {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .about__mean {
    margin-top: 25px;
  }
}

.about__mean ul li {
  font-weight: 600;
  font-size: 1.6rem;
}

.about__mean p {
  padding-top: 20px;
  font-size: 1.5rem;
}

.about__pic {
  position: absolute;
}

.about__pic:first-of-type {
  top: 10%;
  right: 23%;
  width: 270px;
}

@media screen and (max-width: 1300px) {
  .about__pic:first-of-type {
    top: 10%;
    right: 16%;
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .about__pic:first-of-type {
    width: 200px;
    top: 55%;
    right: 7%;
  }
}

.about__pic:nth-of-type(2) {
  top: 48%;
  right: 37%;
  width: 220px;
}

@media screen and (max-width: 1300px) {
  .about__pic:nth-of-type(2) {
    top: 48%;
    right: 30%;
    width: 210px;
  }
}

@media screen and (max-width: 767px) {
  .about__pic:nth-of-type(2) {
    width: 160px;
    right: 53%;
    top: 70%;
  }
}

.about__pic:last-of-type {
  top: 60%;
  right: 18%;
  width: 225px;
}

@media screen and (max-width: 1300px) {
  .about__pic:last-of-type {
    top: 60%;
    right: 10%;
    width: 190px;
  }
}

@media screen and (max-width: 767px) {
  .about__pic:last-of-type {
    width: 140px;
    top: 81%;
    right: 17%;
  }
}

/*------------------------------------------*/
/* SERVICE */
/*------------------------------------------*/
.service {
  background-color: #faf6f9c2;
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 50px;
  }
}

.service .title {
  color: #FC2674;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .service .title {
    font-size: 3.0rem;
  }
}

.service .title span {
  color: #454444;
}

.service__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .service__wrapper {
    display: block;
  }
}

.service__no {
  color: #FC2674;
  font-size: 9.0rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.service__no--title {
  color: #FC2674;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 25px;
  letter-spacing: 0.10em;
}

.service__no--title span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .service__no--title span {
    font-size: 2.2rem;
  }
}

.service__main {
  position: relative;
  width: 48%;
  padding-right: 40px;
}

@media screen and (max-width: 767px) {
  .service__main {
    width: 100%;
    padding: 0;
  }
}

.service__logo {
  position: absolute;
  top: 0;
  right: 30px;
  width: 160px;
}

@media screen and (max-width: 767px) {
  .service__logo {
    top: -5%;
    right: 0;
    width: 140px;
  }
}

.service__text {
  margin-bottom: 30px;
}

.service__pic {
  width: 42%;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .service__pic {
    width: 90%;
    margin: 60px auto 0;
  }
}

.service__pic::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 100%;
  height: 100%;
  background-color: #FC2674;
  z-index: -1;
}

.snsbtn {
  width: 45%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FC2674;
  margin-bottom: 20px;
  border: solid 2px #FC2674;
  padding: 9px 0;
  border-radius: 20px;
}

.snsbtn:hover {
  background-color: #FC2674;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .snsbtn {
    width: 47%;
  }
}

.snsbtn__title {
  margin-left: 10px;
  font-weight: 600;
}

.snsbtn .fa-fw {
  text-align: center;
  width: 30px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service__rg {
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .service__rg {
    padding-bottom: 30px;
  }
}

.service__banner {
  padding: 45px 0;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .service__banner {
    padding: 20px 0 30px;
  }
}

.service__banner--text {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .service__banner--text {
    text-align: left;
    padding: 50px 0 30px;
  }
}

.service__banner--text span {
  font-size: 2.0rem;
  font-weight: 600;
  color: #FC2674;
  display: block;
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .service__banner--text span {
    font-size: 1.8rem;
  }
}

.service__banner--flag {
  position: absolute;
  z-index: 2;
  width: 6%;
  top: 14%;
  right: 13%;
}

@media screen and (max-width: 767px) {
  .service__banner--flag {
    width: 17%;
    top: 8%;
    right: 1%;
  }
}

.service__banner--upper {
  padding-bottom: 10px;
  font-size: 1.6rem;
  color: #FC2674;
  font-weight: 600;
}

.service__model {
  background-color: #FAF6F9;
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .service__model {
    padding: 60px 0 90px;
  }
}

.service__model .service__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

.service__model .service__no {
  color: #3B7CD6;
}

.service__model .service__no--title {
  color: #3B7CD6;
}

.service__model .service__logo {
  top: 7%;
}

@media screen and (max-width: 767px) {
  .service__model .service__logo {
    top: -5%;
    right: -30px;
    width: 150px;
  }
}

.service__model .service__pic {
  width: 38%;
}

@media screen and (max-width: 767px) {
  .service__model .service__pic {
    width: 90%;
    margin: 40px auto 0;
  }
}

.service__model .service__pic::before {
  left: 20px;
  top: 20px;
  width: 100%;
  height: 100%;
  background-color: #3B7CD6;
  z-index: -1;
}

.service__model .snsbtn {
  border: solid 2px #3B7CD6;
  color: #3B7CD6;
}

.service__model .snsbtn:hover {
  background-color: #3B7CD6;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .service__model .snsbtn {
    width: 50%;
  }
}

.service__manufacturing {
  background-color: #fff;
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .service__manufacturing {
    padding: 60px 0 80px;
  }
}

.service__manufacturing .service__no {
  color: #F66B6B;
}

.service__manufacturing .service__no--title {
  color: #F66B6B;
}

.service__manufacturing .service__logo {
  top: 20%;
  right: 50px;
}

@media screen and (max-width: 767px) {
  .service__manufacturing .service__logo {
    top: 18%;
    right: 5px;
  }
}

.service__manufacturing .service__pic {
  width: 42%;
}

@media screen and (max-width: 767px) {
  .service__manufacturing .service__pic {
    width: 90%;
  }
}

.service__manufacturing .service__pic::before {
  left: -20px;
  top: -20px;
  width: 100%;
  height: 100%;
  background-color: #F66B6B;
  z-index: -1;
}

.service__manufacturing .snsbtn {
  border: solid 2px #F66B6B;
  color: #F66B6B;
}

.service__manufacturing .snsbtn:hover {
  background-color: #F66B6B;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .service__manufacturing .snsbtn {
    width: 50%;
  }
}

/*------------------------------------------*/
/* PROFILE */
/*------------------------------------------*/
.profile {
  background-color: #FAF6F9;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .profile {
    padding-bottom: 50px;
  }
}

.profile .title {
  color: #FC2674;
  margin-bottom: 70px;
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .profile .title {
    font-size: 3.0rem;
    margin-bottom: 55px;
    padding-top: 50px;
  }
}

.profile .title span {
  display: block;
  color: #454444;
}

@media screen and (max-width: 767px) {
  .profile__wrapper {
    display: block;
  }
}

.profile__name {
  position: relative;
  width: 40%;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

@media screen and (max-width: 767px) {
  .profile__name {
    width: 100%;
  }
}

.profile__name--txt {
  letter-spacing: 0.15em;
  line-height: 1.7;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .profile__name--txt {
    width: 100%;
    text-align: center;
  }
}

.profile__name span {
  font-size: 2.0rem;
}

.profile__text {
  width: 65%;
  padding-left: 60px;
  border-left: 3px solid #FC2674;
}

@media screen and (max-width: 767px) {
  .profile__text {
    width: 100%;
    padding: 0;
    border: none;
    padding-top: 50px;
  }
}

/*------------------------------------------*/
/* COMPANY */
/*------------------------------------------*/
.company {
  background-color: #FAF6F9;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 70px;
  }
}

.company .title {
  color: #FC2674;
  margin-bottom: 70px;
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .company .title {
    font-size: 3.0rem;
    margin-bottom: 40px;
    padding-top: 50px;
  }
}

.company .title span {
  display: block;
  color: #454444;
}

.company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #8c9295;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .company__list {
    padding: 30px 0;
  }
}

.company__list:first-of-type {
  border-top: 1px dotted #8c9295;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .company__list:first-of-type {
    margin-top: 60px;
  }
}

.company__list--title {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .company__list--title {
    width: 30%;
  }
}

.company__list--detail {
  width: 75%;
}

.company__list--detail ul li {
  padding-left: 1em;
  text-indent: -2em;
}

.company__list--detail ul li::before {
  content: "●";
  position: relative;
  margin-right: 1em;
}

/*---------------------------
* CONTACT
----------------------------*/
.contact {
  background-color: #fff;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 50px;
  }
}

.contact .title {
  color: #FC2674;
  margin-bottom: 70px;
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .contact .title {
    font-size: 3.0rem;
    margin-bottom: 40px;
    padding-top: 50px;
  }
}

.contact .title span {
  display: block;
  color: #454444;
}

@media screen and (max-width: 767px) {
  .contact__wrapper {
    display: block;
  }
}

.contact__btn {
  background-color: #F66B6B;
  width: calc(100% / 2);
  margin: 80px 0 0 60px;
  border-radius: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #fff;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 50px 70px;
}

.contact__btn:hover {
  opacity: 0.6;
  color: #fff;
}

.contact__btn--icon {
  width: 30%;
}

.contact__btn--text {
  width: 70%;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .contact__btn {
    width: 100%;
    margin: 30px 0;
    padding: 25px 45px;
  }
}

.contact__btn:first-of-type {
  margin-left: 0;
  background-color: #FC2674;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 25px;
  background: #F66B6B;
  border-radius: 50%;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  #page_top {
    right: 10px;
  }
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-align: center;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f077';
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -17px;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
}

/*------------------------------------------*/
/* フッター */
/*------------------------------------------*/
footer {
  background-color: #FAF6F9;
  padding-bottom: 50px;
}

footer .footer__logo {
  width: 12%;
  margin: 0 auto;
  padding: 50px 0 20px;
  min-width: 140px;
}

@media screen and (max-width: 767px) {
  footer .footer__logo {
    width: 30%;
    padding: 50px 0 30px;
  }
}

footer small {
  font-size: 1.0rem;
}

.footer__navi img {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
}
/*# sourceMappingURL=style.css.map */