@charset "UTF-8";
/* CSS Document */
@media screen and (min-width: 768px) {
  /* line 16, main.scss */
  #wrapper {
    width: 100%;
    padding-left: 200px;
    background-color: #fff;
  }
}
/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
/* line 27, main.scss */
#header .pc_menu {
  display: none;
  position: fixed;
  width: 200px;
  height: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  background-color: #d71420;
  color: #fff;
  z-index: 9999;
}
/* line 38, main.scss */
#header .pc_menu .logo {
  text-align: center;
  padding: 50px 15px;
}
/* line 45, main.scss */
#header .pc_menu #head_nav ul li a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  height: 45px;
  line-height: 45px;
  -webkit-transition: .5s;
  transition: .5s;
  /* 0.5秒で値をなめらかに変化させる */
}
/* line 53, main.scss */
#header .pc_menu #head_nav ul li a:before {
  content: '';
  width: 7px;
  height: 7px;
  display: block;
  top: 50%;
  left: 20px;
  position: absolute;
  z-index: auto;
  margin-top: -4px;
  color: inherit;
  border: 1px solid;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .15s ease-out background,.15s ease-out transform;
  transition: .15s ease-out background,.15s ease-out transform;
}
/* line 70, main.scss */
#header .pc_menu #head_nav ul li a:hover:before {
  background: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}
/* line 76, main.scss */
#header .pc_menu #head_nav ul li span {
  padding-left: 40px;
}
/* line 79, main.scss */
#header .pc_menu #head_nav ul li .en, #header .pc_menu #head_nav ul li .ja {
  display: block;
  /* position指定がある時は無くても可 */
  width: 100%;
  position: absolute;
  /* .enと.jaを重ねて表示 */
  -webkit-transition: .5s;
  transition: .5s;
  /* 0.5秒で値をなめらかに変化させる */
}
/* line 85, main.scss */
#header .pc_menu #head_nav ul li .en {
  opacity: 1;
  /* 普段は英語表記を表示 */
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
/* line 91, main.scss */
#header .pc_menu #head_nav ul li .ja {
  opacity: 0;
  /* 普段は日本語表記を透明に */
  font-weight: 600;
  letter-spacing: 1px;
}
/* line 96, main.scss */
#header .pc_menu #head_nav ul li a:hover .en {
  /* aにホバーしたとき英語表記は透明に */
  opacity: 0;
}
/* line 99, main.scss */
#header .pc_menu #head_nav ul li a:hover .ja {
  /* aにホバーしたとき日本語表記を表示 */
  opacity: 1;
}
/* line 102, main.scss */
#header .pc_menu #head_nav ul li.on a:before {
  background: #fff;
}

@media screen and (min-width: 768px) {
  /* line 111, main.scss */
  #header .pc_menu {
    display: block;
  }
}
/*----------------------------------------------------
	スマホナビ
----------------------------------------------------*/
/* line 118, main.scss */
.sp_menu {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  background: #DC1420;
  height: 50px;
}
/* line 128, main.scss */
.sp_menu .sp_logo {
  line-height: 50px;
  margin-left: 15px;
}
/* line 132, main.scss */
.sp_menu #nav-toggle,
.sp_menu #nav-toggle span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
/* line 139, main.scss */
.sp_menu #nav-toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #DC1420;
  top: 0;
  right: 0;
  z-index: 2;
}
/* line 148, main.scss */
.sp_menu #nav-toggle span {
  position: absolute;
  background: #fff;
  width: 30px;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
/* line 157, main.scss */
.sp_menu #nav-toggle span:nth-of-type(1) {
  top: 15px;
}
/* line 160, main.scss */
.sp_menu #nav-toggle span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
/* line 164, main.scss */
.sp_menu #nav-toggle span:nth-of-type(3) {
  bottom: 15px;
}
/* line 167, main.scss */
.sp_menu.open #nav-toggle span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
/* line 171, main.scss */
.sp_menu.open #nav-toggle span:nth-of-type(2) {
  opacity: 0;
}
/* line 174, main.scss */
.sp_menu.open #nav-toggle span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
/* line 178, main.scss */
.sp_menu .sp_nav {
  display: none;
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 1;
  min-width: 180px;
  width: 35%;
  border-left: 1px solid #e5e5e5;
  background-color: rgba(255, 255, 255, 0.85);
}
/* line 188, main.scss */
.sp_menu .sp_nav .sp_navInner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
/* line 193, main.scss */
.sp_menu .sp_nav .sp_navInner li {
  border-bottom: 1px solid #e5e5e5;
}
/* line 195, main.scss */
.sp_menu .sp_nav .sp_navInner li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #222;
  padding: 12px 15px;
}

@media screen and (max-width: 767px) {
  /* line 207, main.scss */
  .sp_menu {
    display: block;
  }
}
/*----------------------------------------------------
	メインビジュアル
----------------------------------------------------*/
/* line 214, main.scss */
#mainvisual {
  position: relative;
  background: url(../img/mainbg001.png) no-repeat center;
  background-size: cover;
  height: 100vh;
}
/* line 219, main.scss */
#mainvisual:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50vh;
  background-color: #ffeff0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
/* line 231, main.scss */
#mainvisual .main_txt {
  text-align: center;
}
/* line 233, main.scss */
#mainvisual .main_txt .visual_key {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'PT Serif', serif;
  font-size: 48px;
  font-size: 4.8rem;
  letter-spacing: 5px;
  color: #d71420;
  font-weight: 600;
}
/* line 247, main.scss */
#mainvisual .main_txt .visual_sub {
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #808080;
}
/* line 257, main.scss */
#mainvisual .main_txt .scroll_btn {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 40px;
  z-index: 10;
  text-align: center;
}
/* line 265, main.scss */
#mainvisual .main_txt a {
  font-family: 'PT Serif', serif;
  letter-spacing: 2px;
  color: #d71420;
  font-weight: 600;
  text-decoration: none;
  padding-top: 60px;
}
/* line 273, main.scss */
#mainvisual .main_txt a span {
  position: absolute;
  top: -60px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #d71420;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* line 284, main.scss */
#mainvisual .main_txt a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #d71420;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  /* line 335, main.scss */
  #mainvisual .main_txt .visual_key {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  /* line 345, main.scss */
  #mainvisual .main_txt .visual_key {
    font-size: 32px;
    font-size: 3.2rem;
  }
  /* line 348, main.scss */
  #mainvisual .main_txt .visual_sub {
    top: 62%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
/*----------------------------------------------------
	アンカー
----------------------------------------------------*/
/* line 358, main.scss */
#to_contents {
  background-color: #ffdcde;
}
/* line 364, main.scss */
#to_contents .link_wrap .link_title .link_title_h {
  font-family: 'PT Serif', serif;
  letter-spacing: 2px;
  font-size: 40px;
  font-size: 4rem;
  color: #222;
  margin-bottom: 20px;
}
/* line 370, main.scss */
#to_contents .link_wrap .link_title .link_title_h span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  color: #808080;
  font-weight: 500;
}
/* line 379, main.scss */
#to_contents .link_wrap .link_title a {
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  /* line 387, main.scss */
  #to_contents {
    padding: 80px 0;
  }
  /* line 389, main.scss */
  #to_contents .link_wrap {
    position: relative;
    margin: 0 auto;
    height: 1400px;
    max-width: 1160px;
    padding: 100px 0;
    overflow: hidden;
  }
  /* line 396, main.scss */
  #to_contents .link_wrap .link_txt_box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  /* line 403, main.scss */
  #to_contents .link_wrap .link_title {
    position: relative;
    display: block;
    border: 5px solid #fff;
    z-index: 20;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    position: absolute;
    width: 260px;
    height: 220px;
  }
  /* line 413, main.scss */
  #to_contents .link_wrap .link_title:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  /* line 417, main.scss */
  #to_contents .link_wrap .link_title .link_title_h {
    -webkit-transform: translate(-100px, 0);
            transform: translate(-100px, 0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  /* line 421, main.scss */
  #to_contents .link_wrap .link_title .link_title_more {
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
  /* line 424, main.scss */
  #to_contents .link_wrap .link_title:hover .link_title_more {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  /* line 427, main.scss */
  #to_contents .link_wrap .link_title a {
    text-decoration: none;
  }
  /* line 430, main.scss */
  #to_contents .link_wrap .link_title:hover .link_title_h {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  /* line 433, main.scss */
  #to_contents .link_wrap .link_title .link_title_more {
    display: inline-block;
    width: 160px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #fff;
    color: #d71420;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  /* line 443, main.scss */
  #to_contents .link_wrap .link_title:hover .link_title_more {
    background-color: #d71420;
    color: #fff;
  }
  /* line 447, main.scss */
  #to_contents .link_wrap .link_title.link_title_concept {
    left: 330px;
    top: 430px;
  }
  /* line 451, main.scss */
  #to_contents .link_wrap .link_title.link_title_service {
    left: 440px;
    top: 0;
  }
  /* line 455, main.scss */
  #to_contents .link_wrap .link_title.link_title_works {
    left: 70px;
    top: 950px;
  }
  /* line 459, main.scss */
  #to_contents .link_wrap .link_title.link_title_about {
    right: 100px;
    top: 770px;
  }
  /* line 463, main.scss */
  #to_contents .link_wrap .link_title.link_title_contact {
    right: 320px;
    bottom: 0;
  }
  /* line 468, main.scss */
  #to_contents .link_wrap .link_sp_img {
    display: none;
  }
  /* line 471, main.scss */
  #to_contents .link_wrap .link_img {
    position: absolute;
    background-color: #fff;
  }
  /* line 474, main.scss */
  #to_contents .link_wrap .link_img img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.6;
  }
  /* line 483, main.scss */
  #to_contents .link_wrap .link_img.active {
    z-index: 10 !important;
  }
  /* line 486, main.scss */
  #to_contents .link_wrap .link_img.active img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
  }
  /* line 494, main.scss */
  #to_contents .link_wrap .link_img.link_img_concept {
    top: 260px;
    left: 0;
    z-index: 4;
  }
  /* line 499, main.scss */
  #to_contents .link_wrap .link_img.link_img_service {
    top: 40px;
    right: 0;
    z-index: 5;
  }
  /* line 504, main.scss */
  #to_contents .link_wrap .link_img.link_img_works {
    top: 690px;
    left: 100px;
    z-index: 2;
  }
  /* line 509, main.scss */
  #to_contents .link_wrap .link_img.link_img_about {
    top: 490px;
    right: 140px;
    z-index: 3;
  }
  /* line 514, main.scss */
  #to_contents .link_wrap .link_img.link_img_contact {
    bottom: 40px;
    right: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 1199px) {
  /* line 524, main.scss */
  #to_contents {
    background-color: #ffdcde;
    padding: 80px 0;
  }
  /* line 527, main.scss */
  #to_contents .link_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  /* line 532, main.scss */
  #to_contents .link_wrap .link_box {
    width: 49%;
    text-align: center;
    position: relative;
    margin-bottom: 150px;
  }
  /* line 537, main.scss */
  #to_contents .link_wrap .link_box .link_txt_box {
    position: absolute;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -100px;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
  /* line 548, main.scss */
  #to_contents .link_wrap .link_box .link_txt_box .link_title_h {
    font-size: 30px;
    font-size: 3rem;
  }
  /* line 551, main.scss */
  #to_contents .link_wrap .link_box .link_txt_box .link_title_more {
    font-size: 12px;
    font-size: 1.2rem;
  }
  /* line 556, main.scss */
  #to_contents .link_wrap .link_img {
    display: none;
  }
  /* line 559, main.scss */
  #to_contents .link_wrap .link_title_more {
    display: inline-block;
    width: 160px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #d71420;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  /* line 576, main.scss */
  #to_contents .link_wrap .link_box {
    width: 100%;
    margin-bottom: 160px;
  }
  /* line 579, main.scss */
  #to_contents .link_wrap .link_box .link_txt_box {
    bottom: -120px;
  }
  /* line 581, main.scss */
  #to_contents .link_wrap .link_box .link_txt_box .link_title_h {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
/*----------------------------------------------------
	タイトル
----------------------------------------------------*/
/* line 592, main.scss */
.post_box .title_style01 {
  margin-bottom: 50px;
  font-family: 'PT Serif', serif;
  letter-spacing: 2px;
  font-size: 40px;
  font-size: 4rem;
  color: #d71420;
  text-align: center;
}
/* line 599, main.scss */
.post_box .title_style01 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #808080;
  font-weight: 500;
}

/* line 608, main.scss */
#concept {
  padding: 120px 0 230px;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffffff), color-stop(50%, #eeeeee));
  background: linear-gradient(to bottom, #ffffff 50%, #eeeeee 50%);
}
/* line 611, main.scss */
#concept .concept_box {
  position: relative;
}
/* line 613, main.scss */
#concept .concept_box .concept_image {
  text-align: right;
}
/* line 616, main.scss */
#concept .concept_box .concept_txt {
  position: absolute;
  bottom: -170px;
  left: 0;
  z-index: 1;
  background-color: #fff;
  max-width: 600px;
  padding: 60px 50px;
}
/* line 624, main.scss */
#concept .concept_box .concept_txt .concept_titile {
  margin-bottom: 20px;
  font-family: 'PT Serif', serif;
  letter-spacing: 2px;
  font-size: 32px;
  font-size: 3.2rem;
  color: #d71420;
  text-align: center;
}
/* line 631, main.scss */
#concept .concept_box .concept_txt .concept_titile span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #808080;
  font-weight: 500;
}
/* line 640, main.scss */
#concept .concept_box .concept_txt p {
  line-height: 2;
}

@media (max-width: 991px) {
  /* line 647, main.scss */
  #concept {
    padding: 120px 0 60px;
  }
  /* line 650, main.scss */
  #concept .concept_box .concept_image {
    text-align: center;
  }
  /* line 653, main.scss */
  #concept .concept_box .concept_txt {
    position: static;
    max-width: 100%;
    padding: 40px 20px;
  }
  /* line 657, main.scss */
  #concept .concept_box .concept_txt .concept_titile {
    font-size: 22px;
    font-size: 2.2rem;
  }
  /* line 659, main.scss */
  #concept .concept_box .concept_txt .concept_titile span {
    font-size: 13px;
    font-size: 1.3rem;
  }
  /* line 663, main.scss */
  #concept .concept_box .concept_txt p {
    line-height: 1.5;
  }
}
/* line 670, main.scss */
#service {
  padding-top: 120px;
}
/* line 672, main.scss */
#service .service_list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
/* line 676, main.scss */
#service .service_list > li {
  background-color: #ffeff0;
  padding: 25px 0;
}
/* line 679, main.scss */
#service .service_list > li:first-child {
  padding: 0 0 25px;
}
/* line 682, main.scss */
#service .service_list > li:last-child {
  padding: 25px 0 60px;
}
/* line 685, main.scss */
#service .service_list > li .inner {
  position: relative;
}
/* line 688, main.scss */
#service .service_list > li .service_image {
  max-width: 52%;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
/* line 693, main.scss */
#service .service_list > li .service_image img {
  width: 100%;
}
/* line 697, main.scss */
#service .service_list > li .service_txt {
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 52%;
  background-color: #fff;
  border: solid 5px #ffdcde;
  padding: 70px 50px 70px 80px;
  z-index: 1;
}
/* line 706, main.scss */
#service .service_list > li .service_txt h3 {
  position: relative;
  color: #d71420;
  font-size: 14px;
  font-size: 1.4rem;
}
/* line 710, main.scss */
#service .service_list > li .service_txt h3 span {
  margin-bottom: 30px;
  font-family: 'PT Serif', serif;
  letter-spacing: 2px;
  font-size: 30px;
  font-size: 3rem;
  color: #222;
  display: block;
}
/* line 718, main.scss */
#service .service_list > li .service_txt h3:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: red;
}
/* line 730, main.scss */
#service .service_list > li:nth-child(1) {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iI2ZmZWZmMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), color-stop(40%, #ffeff0));
  background: linear-gradient(to bottom, #ffffff 40%, #ffeff0 40%);
}
/* line 734, main.scss */
#service .service_list > li:nth-child(2) .service_image {
  margin-left: auto;
}
/* line 737, main.scss */
#service .service_list > li:nth-child(2) .service_txt {
  left: 15px;
  padding: 70px 80px 70px 50px;
}

@media screen and (max-width: 1199px) {
  /* line 749, main.scss */
  #service .service_list > li .service_txt {
    padding: 30px 30px 30px 60px;
  }
  /* line 752, main.scss */
  #service .service_list > li .service_txt h3 span {
    font-size: 26px;
    font-size: 2.6rem;
  }
  /* line 759, main.scss */
  #service .service_list > li:nth-child(2) .service_txt {
    padding: 30px 60px 30px 30px;
  }
}
@media screen and (max-width: 991px) {
  /* line 771, main.scss */
  #service .service_list > li .service_txt {
    bottom: -140px;
    width: 85%;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 3;
    padding: 30px;
  }
  /* line 780, main.scss */
  #service .service_list > li .service_txt h3 span {
    font-size: 26px;
    font-size: 2.6rem;
  }
  /* line 786, main.scss */
  #service .service_list > li .service_image {
    max-width: 100%;
    margin-bottom: 160px;
  }
  /* line 791, main.scss */
  #service .service_list > li:nth-child(2) .service_txt {
    right: 0;
    left: 0;
    padding: 30px;
  }
}
/* line 802, main.scss */
.payment {
  background-color: #ffdcde;
  padding: 50px 0;
  text-align: center;
}
/* line 806, main.scss */
.payment dl {
  display: inline-block;
}
/* line 808, main.scss */
.payment dl dt {
  margin-bottom: 20px;
}
/* line 811, main.scss */
.payment dl dd {
  text-align: center;
}

@media screen and (min-width: 768px) {
  /* line 819, main.scss */
  .payment dl dt {
    float: left;
    margin-bottom: 0;
  }
  /* line 823, main.scss */
  .payment dl dd {
    padding-left: 240px;
    text-align: left;
  }
}
/* line 831, main.scss */
#works {
  padding: 120px 0 20px;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjMwJSIgc3RvcC1jb2xvcj0iI2ZmZWZmMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #ffffff), color-stop(30%, #ffeff0));
  background: linear-gradient(to bottom, #ffffff 30%, #ffeff0 30%);
}
/* line 834, main.scss */
#works .works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
/* line 842, main.scss */
#works .works_list li {
  width: 32%;
  background-color: #fff;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 60px;
}
/* line 849, main.scss */
#works .works_list li a {
  text-decoration: none;
  color: #222;
}
/* line 852, main.scss */
#works .works_list li a .works_txt_box {
  padding: 30px;
}
/* line 854, main.scss */
#works .works_list li a .works_txt_box h3 {
  color: #d71420;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
}
/* line 859, main.scss */
#works .works_list li a .works_txt_box .category {
  color: #808080;
  text-align: center;
}
/* line 863, main.scss */
#works .works_list li a .works_txt_box .more_btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #808080;
  border: solid 1px #808080;
  text-align: center;
  padding: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1PX;
}
/* line 878, main.scss */
#works .works_list li:hover {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* line 882, main.scss */
#works .works_list li:hover a img {
  opacity: 1;
}
/* line 886, main.scss */
#works .works_list li:hover a .works_txt_box .more_btn {
  background-color: #d71420;
  border: solid 1px #d71420;
  color: #fff;
}

@media screen and (max-width: 991px) {
  /* line 898, main.scss */
  #works {
    background: #ffeff0;
  }
  /* line 901, main.scss */
  #works .works_list li {
    width: 49%;
  }
  /* line 903, main.scss */
  #works .works_list li a {
    text-decoration: none;
    color: #222;
  }
  /* line 906, main.scss */
  #works .works_list li a .works_txt_box {
    padding: 15px;
  }
  /* line 908, main.scss */
  #works .works_list li a .works_txt_box h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  /* line 911, main.scss */
  #works .works_list li a .works_txt_box .more_btn {
    left: 15px;
    right: 15px;
  }
  /* line 915, main.scss */
  #works .works_list li a .works_txt_box .category {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  /* line 927, main.scss */
  #works .works_list li {
    width: 100%;
  }
}
/* line 934, main.scss */
#about {
  padding: 120px 0 120px;
  text-align: center;
}
/* line 937, main.scss */
#about dl {
  border: solid 1px #ccc;
  display: inline-block;
  padding: 30px 60px;
}
/* line 941, main.scss */
#about dl dt {
  float: left;
  margin-bottom: 5px;
}
/* line 945, main.scss */
#about dl dd {
  padding-left: 140px;
  text-align: left;
  margin-bottom: 5px;
}

@media screen and (max-width: 414px) {
  /* line 954, main.scss */
  #about dl {
    padding: 20px;
  }
  /* line 956, main.scss */
  #about dl dd {
    padding-left: 100px;
  }
}
/* line 963, main.scss */
#partner {
  background-color: #ffeff0;
  padding: 120px 0 120px;
}
/* line 966, main.scss */
#partner h3 {
  font-size: 20px;
  font-size: 2rem;
}
/* line 970, main.scss */
#partner .clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/* line 975, main.scss */
#partner .patner_left {
  float: left;
  width: 49%;
}
/* line 979, main.scss */
#partner .patner_right {
  float: right;
  width: 49%;
}
/* line 983, main.scss */
#partner .patner_box {
  background-color: #fff;
  padding: 60px;
  border: solid 5px #ffdcde;
  margin-bottom: 50px;
}
/* line 988, main.scss */
#partner .patner_box h3 {
  color: #d71420;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
/* line 994, main.scss */
#partner .patner_box h3:after {
  position: absolute;
  display: block;
  margin: 0 auto;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  content: '';
  width: 30px;
  height: 1px;
  background-color: #d71420;
}

@media screen and (max-width: 991px) {
  /* line 1012, main.scss */
  #partner .patner_box {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  /* line 1019, main.scss */
  #partner .patner_left {
    float: left;
    width: 100%;
  }
  /* line 1023, main.scss */
  #partner .patner_right {
    float: right;
    width: 100%;
  }
  /* line 1027, main.scss */
  #partner .patner_box {
    margin-bottom: 20px;
  }
}
/* line 1032, main.scss */
#contact {
  background-color: #fff;
  padding: 120px 0 60px;
  min-height: 100vh;
}
/* line 1036, main.scss */
#contact .submit_btn {
  margin: 30px 0 0 0;
}
/* line 1039, main.scss */
#contact .privacy_box {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  height: 200px;
  overflow: scroll;
  margin: 8px 0;
}
/* line 1047, main.scss */
#contact .privacy_box dl dt {
  font-weight: 600;
  float: none;
  width: auto;
  font-size: 12px;
  padding: 0;
  text-align: left;
  border-top: none;
  margin: 0px;
}
/* line 1057, main.scss */
#contact .privacy_box dl dd {
  margin-bottom: 20px;
  border-top: none;
  padding: 0 !important;
  font-size: 12px;
}
/* line 1062, main.scss */
#contact .privacy_box dl dd:last-child {
  margin-bottom: 0;
}
/* line 1065, main.scss */
#contact .privacy_box dl dd ul {
  padding-left: 1.5em !important;
  margin-bottom: 8px !important;
}
/* line 1068, main.scss */
#contact .privacy_box dl dd ul li {
  list-style: disc !important;
}

@media screen and (min-width: 415px) {
  /* line 1078, main.scss */
  #contact table {
    background-color: #fff;
    border-top: none;
    border-right: none;
    border-left: none;
  }
  /* line 1083, main.scss */
  #contact table th {
    padding: 14px 10px 14px 10px;
    vertical-align: top;
    text-align: right;
    border-bottom: none;
    border-right: none;
    width: 180px;
  }
  /* line 1091, main.scss */
  #contact table td {
    padding: 0 10px;
    border-bottom: none;
  }
  /* line 1096, main.scss */
  #contact .submit_btn {
    margin: 30px 0 0 190px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1104, main.scss */
  #contact table th {
    padding: 14px 10px 14px 100px;
    width: 300px;
  }
  /* line 1109, main.scss */
  #contact .submit_btn {
    margin: 30px 0 0 310px;
  }
  /* line 1112, main.scss */
  #contact .privacy_box {
    max-width: 80%;
  }
}
@media screen and (max-width: 991px) {
  /* line 1120, main.scss */
  #contact table input[type=text],
  #contact table input[type=email],
  #contact table input[type=tel],
  #contact table textarea {
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  /* line 1132, main.scss */
  #contact table th {
    background-color: #eee;
  }
}
/* line 1139, main.scss */
#footer .copyright {
  padding: 20px 0;
  text-align: right;
  background-color: #fff;
  color: #999;
}

/* line 1146, main.scss */
.fade-in {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}
/*新着情報*/
#mainvisual.news{
	height: 400px;
}
#mainvisual.news:after{
	height: 200px;
}
#news{
    padding: 100px 0;
    background-color: #ffdcde;
}
#news .inner{
	max-width: 1040px;
	margin: 0 auto;
}
#news .news_list ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
#news .news_list ul li{
	margin-bottom: 10px;
}
#news .news_list ul li .switch{
	cursor: pointer;
	padding-right: 15px;
	background-color: #fff;
	padding: 20px 40px 20px 25px;
}
#news .news_list ul li .switch.open{
	background-color: #fff;
}
#news .news_list ul li dt p{
	display: inline-block;
	padding: 0 10px;
	margin-bottom: 0;
}
#news .news_list ul li dt{
	position: relative;
}
#news .news_list ul li dt:after{
	display: block;
	content: "";
	width: 0;
  height: 0;
	position: absolute;
	right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #d71420;
}
#news .news_list ul li dt.open:after{
  top: 40%;
	transform:rotateX(180deg);
}
#news .news_list ul li dt p.date{
	color: #d71420;
    padding: 0 10px 0 0;
}
#news .news_list ul li dt p.cat{
	min-width: 70px;
	padding: 0 5px;
	text-align: center;
	margin: 0 10px;
	color: #fff;
	border-radius: 2px;
}
#news .news_list ul li dt p.rec_cat{
	background-color: #d71420;
}
#news .news_list ul li dd{
	display: none;
	background-color: #ffeff0;
	padding: 20px 25px;
}
#news .news_list ul li dd a{
	color: #d71420;
	text-decoration: underline;
}
#news .news_list ul li dd a:hover{
	text-decoration: none;
}
@media screen and (max-width: 414px) {
	#mainvisual.news{
	height: 300px;
}
#mainvisual.news:after{
	height: 150px;
}
#news{
    padding: 60px 0;
}
#news .news_list ul li dt p.tit{
	display: block;
	margin: 5px 0 0 0;
	padding: 0;
}
}