@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Outfit:wght@100..900&family=Quicksand:wght@300..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

/* @import "_vars.scss"; */
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/*サイトのメインカラー*/
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

in your CSS
--------------------------------------------------------- */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(5%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-5%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

.zoomin {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-03s {
  animation-delay: 0.3s;
}

.animated.delay-05s {
  animation-delay: 0.5s;
}

.animated.delay-07s {
  animation-delay: 0.7s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media all and (max-width: 769px) {
  .animated.delay-1s,
  .animated.delay-2s,
  .animated.delay-3s,
  .animated.delay-4s,
  .animated.delay-5s {
    animation-duration: 0.3s;
  }
}

/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
  Use @include before(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

@include base-text_2($size); 

@include base-text_en($size); 
@include base-text_link(); 

in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerA {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.innerA .left_s {
  width: 30%;
  float: left;
}

.innerA .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}

.innerB .left,
.innerB .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left,
  .innerB .right {
    width: 100%;
    float: none;
  }
}

.innerB .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerB .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.innerC {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.innerC .left,
.innerC .right {
  width: 48%;
  float: left;
}

.innerC .right {
  margin-left: 4%;
}

.innerC .left_s {
  width: 30%;
  float: left;
}

.innerC .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*-----------------------------------------------------------------------------
ぶろぐ
<section id="entry" class="common_page__sec">
 <div class="single">
 <div class="nakaA">
  <h3>新着情報</h3>
  <div class="entry__cotent">
   <p class="data"><span>2018.09.20</span></p>
   <p class="entry__title">
   タイトルホームページを公開致しました</p>

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  padding-bottom: 80px;
}

#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
}

@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}

#entry .entry__cotent .data span {
  background: #b6b3b7;
  padding: 0.3em 0.5em;
}

#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #fdbe6e;
}

@media all and (max-width: 821px) {
  #entry .entry__cotent .entry__cotent__text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    YuGothic,
    "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,
    Arial,
    "メイリオ",
    Meiryo,
    sans-serif;
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 1rem;
  *font-size: small;
  *font: x-small;
  line-height: 1.8;
  margin: 0 auto;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
}

#body {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  background: #f9f8f4;
}

@media all and (max-width: 639px) {
  #body {
    overflow: hidden;
  }
}

#page {
  display: flex;
  flex-direction: column;
}

a:link,
a:visited,
a:hover {
  color: #fc9b32;
  text-decoration: none;
}

.tbox {
  border: 2px solid #fc9b32;
  padding: 15px;
  width: calc(100% - 34px);
}

.sign_ttl {
  border-bottom: 1px solid #111;
  font-size: 1.5rem;
  padding: 5px 0;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

#loader img {
  display: block;
  max-width: 280px;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

header {
  width: 100%;
  z-index: 2222;
  transition: 0.4s;
  background: #f1eee3;
  position: relative;
}

@media all and (max-width: 639px) {
  header {
    padding: 0;
  }
}

header:before {
  width: 100%;
  height: 213px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/head_bg.svg);
  left: 0;
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  background-size: 100%;
  top: 0;
}

header #head {
  position: relative;
  padding: 58px 20px 0;
  z-index: 22;
}

@media screen and (max-width: 768px) {
  header #head {
    width: 100%;
    left: 0;
    top: 0;
    padding: 0 0;
  }
}

@media all and (max-width: 639px) {
  header #head {
    padding-left: 0;
    background: none;
    margin-top: 0;
    border: none;
  }
}

header #head .logo {
  width: 300px;
  transition: 0.4s;
  position: absolute;
  top: 20px;
}

@media all and (max-width: 639px) {
  header #head .logo {
    width: 176px;
    padding: 20px 0 20px;
    left: auto;
    position: relative;
    top: 0;
    margin: auto;
  }
}

header #head .logo a {
  display: block;
  width: 100%;
  position: relative;
}

header #head .logo img {
  width: 100%;
  display: block;
  margin: auto;
}

@media all and (max-width: 639px) {
  header #head .logo img {
    width: auto;
    margin-top: 0;
  }
}

header #head .head_nav {
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  justify-content: end;
  max-width: 928px;
  margin-left: auto;
}

@media all and (max-width: 821px) {
  header #head .head_nav {
    display: none;
  }
}

header #head .head_nav li {
  position: relative;
}

header #head .head_nav li:nth-child(n + 2) {
  margin-left: 30px;
}

header #head .head_nav li:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f1eee3;
  opacity: 0;
  transition: 0.3s;
}

header #head .head_nav li:hover:before {
  opacity: 1;
  transition: 0.3s;
}

header #head .head_nav li a {
  display: block;
  color: #333333;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.6em;
  position: relative;
  transition: 0.4s;
}

header #head .head_nav li a.link_contact {
  background: #fc9b32;
  color: #fff;
  border-radius: 100px;
  padding: 11px 50px;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: -9px;
}

header #head .head_yoyaku {
  display: block;
  position: absolute;
  width: 217px;
  right: 0;
  top: 16px;
}

@media all and (max-width: 639px) {
  header #head .head_yoyaku {
    display: none;
  }
}

header #head .head_yoyaku img {
  display: block;
  width: 100%;
}

header #head {
  /* dropdownmenu */
}

header #head .head_nav li ul {
  position: absolute;
  top: 80px;
  display: block !important;
  padding-top: 0;
}

header #head .head_nav li ul li {
  visibility: hidden;
  overflow: hidden;
  display: block !important;
  width: 100%;
  height: auto;
  border-right: 0px solid #ddd;
  border-left: 0px solid #ddd;
  padding: 0 0 !important;
  margin: 0 1px 1px !important;
  width: 190px !important;
}

header #head .head_nav li ul li a {
  background: #fff;
  padding: 10px 0 10px 20px !important;
  margin: 0 0px !important;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 15px !important;
  color: #333333;
}

header #head .head_nav li ul li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  left: 5px;
  top: 10px;
  color: #fc9b32;
}

header #head .head_nav li ul li a:hover {
  color: #fc9b32;
}

header #head .head_nav li:hover ul li {
  visibility: visible;
  overflow: visible;
  height: 36px;
}

header {
  /*&.fixd {
       background: #fff;
       box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
       @include for-size(phone-only){

       }
    }*/
}

/* nav */
#navi {
  margin: auto;
  width: auto;
}

#navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -4px;
}

#navi li {
  list-style: none;
  text-align: center;
  margin: 0;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 16px 44px 17px;
  letter-spacing: 0.2rem;
}

#navi li a {
  width: 100%;
  height: 100%;
  line-height: 1.3;
  display: block;
  text-align: center;
  border: none;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
  color: #fdbe6e;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: bold;
}

#navi li a span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  font-weight: 300;
  color: #333333;
}

#navi li a img {
  display: block;
  width: auto;
  margin: 0 auto 10px;
  height: 32px;
}

#navi li a:hover {
  color: #fc9b32;
  opacity: 0.8;
}

/* /dropdownmenu */
.sp {
  display: none;
}

.pc {
  display: block;
  margin: 0 auto;
}

.spbr {
  display: none;
}

.pcbr {
  display: inline;
}

@media all and (max-width: 639px) {
  .spbr {
    display: inline;
  }
  .pcbr {
    display: none;
  }
}

.map {
  width: 100%;
  height: 450px;
}

/*  scrollbar  */
.scrollbar-y {
  width: 100%;
  height: 350px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .scrollbar-y {
    height: 200px;
  }
}

.scrollbar-y::-webkit-scrollbar {
  width: 5px;
}

.scrollbar-y::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.scrollbar-y::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mbox_white {
  background: rgba(255, 255, 255, 0.4);
  padding: 30px 20px;
}

/*link*/
/*containar*/
#contentwrap {
  width: 100%;
  flex: 1 1 auto;
  background-size: 160px;
  position: relative;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/site_bg.svg);
  background-size: 30px;
}

.single {
  position: relative;
  width: 1160px;
  margin: 0 auto;
  padding: 80px 0;
}

.single .tbox p {
  margin-bottom: 0px;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
}

#page-top a {
  display: block;
}

#page-top a img {
  display: block;
  width: 76px;
}

@media all and (max-width: 639px) {
  #page-top a img {
    width: 22px;
  }
}

#footer {
  width: 1160px;
  margin: 0 auto 0;
  padding: 40px 0;
}

#footer address {
  margin-top: 10px;
}

/* table */
table {
  margin: 10px 0;
}

table th {
  vertical-align: middle;
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.5;
  border: #ddd 1px solid;
  background: #fc9b32;
  color: #fff;
}

table td b {
  color: #fc9b32;
  font-size: 12px;
}

table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}

@media screen and (max-width: 800px) {
  table.rstable {
    width: 100%;
  }

  table.rstable td {
    display: block;
    text-align: center;
    width: calc(100% - 2px) !important;
    padding: 5px 0;
  }

  table.rstable th {
    display: block;
    width: calc(100% - 2px) !important;
    overflow: hidden;
    padding: 5px 0;
  }
}

table.tbl-2l {
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

table.tbl-2l th {
  padding: 15px 10px;
  font-weight: bold;
  line-height: 1.5;
  border: #ddd 0px solid;
  color: #555;
  background: none !important;
}

table.tbl-2l tr:nth-child(odd) {
  background: #f2f2f2 !important;
}

table.tbl-2l td {
  padding: 15px 10px;
  border: #eee 0px solid !important;
}

@media screen and (max-width: 800px) {
  table.tbl-2l {
    margin: 15px 0;
  }

  table.tbl-2l th {
    padding: 5px 0px;
  }

  table.tbl-2l td {
    padding: 5px 5px;
    text-align: left;
    width: calc(100% - 10px) !important;
  }
}

/* mailform */
.form {
  margin: 10px 0 10px;
}

.form dt span {
  color: #fff;
  background: #ff4f4f;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 1.1rem;
  border-radius: 2px;
  position: relative;
  top: -2px;
}

.form dl {
  margin: 10px 0;
  font-size: 1.6rem;
}

.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}

.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}

.form dd p {
  padding-top: 5px;
  color: #888;
}

.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.textarea,
textarea,
.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea {
  border-radius: 2px;
  border: 1px solid #ddd;
  height: 30px;
  padding: 0 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 30px;
  background: #fdbe6e;
  font-weight: bold;
  border: 2px solid #fdbe6e;
}

#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}

#mailform button:hover {
  background: #fff;
  color: #fdbe6e;
}

#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*Radio Text*/
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #64bcff;
  z-index: 1;
}

label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}

label.radio_text input[type="radio"]:checked {
  box-shadow: none;
}

label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #fff;
}

label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}

label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}

label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #fc9b32;
  border-bottom: 3px solid #fc9b32;
  transform: rotate(45deg);
  z-index: 1;
}

label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

label.checkbox_text input[type="checkbox"]:checked {
  box-shadow: none;
}

label.checkbox_text input[type="checkbox"]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}

label.checkbox_text input[type="checkbox"]:focus {
  box-shadow: 41px 0px #eee;
}

.fm-text {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
}

/*共通ルール*/
.single_new {
  width: 95%;
  margin: auto;
}

@media all and (max-width: 639px) {
  .single_new {
    width: 95%;
  }
}

div,
section {
  box-sizing: border-box;
}

@media all and (max-width: 1400px) {
  .single {
    width: 95%;
  }
}

#top_main {
  width: 100%;
  position: relative;
  height: auto;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_main_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 639px) {
  #top_main {
    height: auto;
  }
}

#top_main .top_main_vis {
  width: 89%;
  margin: 50px auto 0;
  position: relative;
}

@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    height: auto;
    border-radius: 0;
    margin-top: 20px;
    width: 95%;
  }
}

#top_main .top_main_vis:before,
#top_main .top_main_vis:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
}

#top_main .top_main_vis:before {
  width: 361px;
  height: 521px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_main_asirai-1.svg);
  top: -30px;
  left: 0;
}

@media all and (max-width: 639px) {
  #top_main .top_main_vis:before {
    width: 186px;
    height: 128px;
  }
}

#top_main .top_main_vis:after {
  width: 576px;
  height: 518px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_main_asirai-2.svg);
  bottom: -50px;
  right: 0;
}

@media all and (max-width: 639px) {
  #top_main .top_main_vis:after {
    width: 156px;
    height: 138px;
  }
}

#top_main .top_main_chachi {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 18%;
  z-index: 2;
  text-align: center;
}

@media all and (max-width: 639px) {
  #top_main .top_main_chachi {
    bottom: 15%;
    z-index: 33;
  }
}

#top_main .top_main_chachi .top_main_chachi_text {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  /* font-size: 40px; */
  font-size: 42px;
  font-weight: 700;
  color: #f08c3a;
  letter-spacing: 0.08em;
  line-height: 1.8;
  -webkit-text-stroke: 10px #fff;
  paint-order: stroke fill;
}

@media all and (max-width: 639px) {
  #top_main .top_main_chachi .top_main_chachi_text {
    font-size: 17px;
    line-height: 1.7;
    -webkit-text-stroke: 6px #fff;
  }
}

#top_main .top_main_chachi_sub {
  display: block;
  position: absolute;
  width: 91px;
  top: 0;
  right: 2%;
  z-index: 22;
}

@media all and (max-width: 639px) {
  #top_main .top_main_chachi_sub {
    width: 39px;
  }
}

/* 送迎ありワンポイント */
#top_main .top_main_sougei {
  position: absolute;
  left: 3%;
  bottom: -6%;
  z-index: 22;
  text-align: center;
}

#top_main .top_main_sougei .top_main_sougei_icon {
  display: block;
  width: 250px;
  margin: 0 auto 5px;
}

#top_main .top_main_sougei span {
  display: block;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f05b78;
  letter-spacing: 0.1em;
}

@media all and (max-width: 639px) {
  #top_main .top_main_sougei {
    left: 2%;
    bottom: -16%;
  }
  #top_main .top_main_sougei .top_main_sougei_icon {
    width: 60px;
  }
  #top_main .top_main_sougei span {
    font-size: 12px;
  }
}

@media all and (max-width: 639px) {
  #top_main.page_unde {
    padding: 0;
  }
}

#top_main.page_unde .single {
  padding: 0;
}

#top_main.page_unde .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  #top_main.page_unde .inner {
    display: block;
  }
}

#top_main.page_unde .inner .in_left {
  width: 43%;
}

@media all and (max-width: 639px) {
  #top_main.page_unde .inner .in_left {
    width: 100%;
  }
}

#top_main.page_unde .inner .in_left img._sp {
  display: none;
}

@media all and (max-width: 639px) {
  #top_main.page_unde .inner .in_left img._sp {
    display: block;
    width: 100%;
    border-radius: 10px;
  }
}

#top_main.page_unde .inner .in_right {
  width: 55%;
  margin-left: auto;
  position: relative;
}

#top_main.page_unde .inner .in_right:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 212px;
  height: 227px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/page_unde_in_right_before.svg);
  left: -100px;
  top: -40px;
}

@media all and (max-width: 639px) {
  #top_main.page_unde .inner .in_right {
    display: none;
  }
}

#top_main.page_unde .inner .in_right img {
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
}

#top_main.page_unde h2 {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 30px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 120px 0px 0;
  color: #f05b78;
}

@media all and (max-width: 639px) {
  #top_main.page_unde h2 {
    text-align: center;
    padding: 40px 0px 10px;
    font-family: YakuHanRP, "M PLUS 1p", sans-serif;
    font-size: 22px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}

#top_main.page_unde h3 {
  padding-bottom: 100px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  #top_main.page_unde h3 {
    padding-bottom: 0;
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    font-weight: 500;
  }
}

@keyframes textFlow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 送迎あり */
#top_1 .top_sougei_wrap {
  margin-top: 40px;
  text-align: center;
}

#top_1 .top_sougei_wrap .top_sougei_text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333;
  margin-top: 15px;
}

@media all and (max-width: 639px) {
  #top_1 .top_sougei_wrap .top_sougei_text {
    font-size: 15px;
  }
}

#top_1 .single {
  position: relative;
}

#top_1 .single:before,
#top_1 .single:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
}

#top_1 .single:before {
  width: 327px;
  height: 326px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_1_bg-1.svg);
  top: 0;
  left: -10%;
}

@media all and (max-width: 639px) {
  #top_1 .single:before {
    height: 176px;
    top: 50px;
  }
}

#top_1 .single:after {
  width: 441px;
  height: 286px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_1_bg-2.svg);
  bottom: 0;
  right: -5%;
}

@media all and (max-width: 639px) {
  #top_1 .single:after {
    width: 311px;
    height: 176px;
    bottom: 70px;
  }
}

#top_1 .top_1_text {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  line-height: 2.2em;
  color: #333333;
  margin-top: 40px;
  text-wrap: balance;
  word-break: auto-phrase;
  position: relative;
}

@media all and (max-width: 639px) {
  #top_1 .top_1_text {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-top: 30px;
  }
}

#top_1 .top_cms {
  max-width: 700px;
  width: 100%;
  margin: 90px auto 0;
  position: relative;
  z-index: 22;
}

#top_1 .top_cms .topics_list {
  margin-top: 30px;
}

@media all and (max-width: 639px) {
  #top_1 .top_cms .topics_list {
    margin-top: 0;
  }
}

#top_1 .top_cms .topics_list li {
  background: #fdbe6e;
  border-radius: 6px 100px 100px 6px;
  background: #fff;
}

#top_1 .top_cms .topics_list li:nth-child(n + 2) {
  margin-top: 20px;
}

#top_1 .top_cms .topics_list li a {
  display: block;
  padding: 33px;
  position: relative;
}

@media all and (max-width: 639px) {
  #top_1 .top_cms .topics_list li a {
    padding: 23px;
  }
}

#top_1 .top_cms .topics_list li a i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  margin: auto;
  line-height: 1em;
  height: 1em;
}

@media all and (max-width: 639px) {
  #top_1 .top_cms .topics_list li a i {
    display: none;
  }
}

#top_1 .top_cms .topics_list li .data {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #333333;
  font-weight: 500;
  margin-bottom: 5px;
}

#top_1 .top_cms .topics_list li .post_title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #333333;
}

@media all and (max-width: 639px) {
  #top_1 .top_cms .topics_list li .post_title {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

#top_1 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#top_2 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_2_bg.svg);
  background-size: 60px;
  position: relative;
  padding-bottom: 40px;
}

@media all and (max-width: 639px) {
  #top_2 {
    padding-top: 50px;
    margin-top: 50px;
  }
}

#top_2 .top_2_line {
  display: block;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_line {
    position: absolute;
    top: 0;
  }
}

#top_2 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#top_2 .top_2_sub_read {
  text-align: center;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #fc9b32;
  text-wrap: balance;
  word-break: auto-phrase;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_sub_read {
    font-family: YakuHanRP, "M PLUS 1p", sans-serif;
    font-size: 19px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.1em;
  }
}

#top_2 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 600;
  color: #333333;
  margin-top: 30px;
  line-height: 2.3em;
  text-wrap: balance;
  word-break: auto-phrase;
}

@media all and (max-width: 639px) {
  #top_2 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 2em;
  }
}

#top_2 a {
  display: block;
  width: 288px;
  position: relative;
  margin: 60px auto 0;
  text-align: center;
  background: #fdbe6e;
  padding: 13px 0;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 5px;
  color: #fff;
}

#top_2 a img {
  display: block;
  position: absolute;
  width: 24px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}

#top_2 .top_2_ki {
  display: block;
  position: absolute;
  width: 161px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -40px;
}

#top_3 {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #top_3 {
    padding-bottom: 50px;
  }
}

#top_3 .col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media all and (max-width: 639px) {
  #top_3 .col-2 {
    display: block;
  }
}

#top_3 .col-2 .col-2-item {
  width: 42%;
}

@media all and (max-width: 639px) {
  #top_3 .col-2 .col-2-item {
    width: 100%;
  }
}

#top_3 .col-2 .col-2-item:nth-child(2) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  #top_3 .col-2 .col-2-item:nth-child(2) {
    margin: 40px 0 0;
  }
}

#top_3 .col-2 .col-2-item .top_3_photo {
  display: block;
  position: relative;
}

#top_3 .col-2 .col-2-item .top_3_photo:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 183px;
  height: 173px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_3_photo_asirai-1.svg);
  bottom: -50px;
  left: -50px;
}

#top_3 .col-2 .col-2-item .top_3_photo.item-2:before {
  width: 173px;
  height: 183px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/top_3_photo_asirai-2.svg);
  left: auto;
  bottom: auto;
  top: -50px;
  right: -50px;
}

#top_3 .col-2 .col-2-item .top_3_photo img.top_3_photo_main {
  display: block;
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

#top_3 .col-2 .col-2-item .top_3_photo .top_3_photo_text {
  display: block;
  position: absolute;
  height: 67px;
  z-index: 22;
}

#top_3 .col-2 .col-2-item .top_3_photo .top_3_photo_text.texx-1 {
  left: 30px;
  top: -10px;
}

#top_3 .col-2 .col-2-item .top_3_photo .top_3_photo_text.texx-2 {
  right: 30px;
  bottom: -10px;
}

#top_3 .col-2 .col-2-item .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
  margin: 15px 0 10px;
}

#top_3 .col-2 .col-2-item .top_3_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #333333;
}

#top_3 .col-2 .col-2-item a {
  display: block;
  width: 288px;
  position: relative;
  margin: 30px auto 0;
  text-align: center;
  background: #fdbe6e;
  padding: 13px 0;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 5px;
  color: #fff;
}

@media all and (max-width: 639px) {
  #top_3 .col-2 .col-2-item a {
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
  }
}

#top_3 .col-2 .col-2-item a img {
  display: block;
  position: absolute;
  width: 24px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}

footer {
  background: #f1eee3;
  padding-bottom: 10px;
  margin-top: 60px;
  position: relative;
  border-radius: 60px 60px 0 0;
}

@media all and (max-width: 639px) {
  footer {
    padding: 50px 0;
    background-position: left;
  }
}

footer .foot_illust {
  display: block;
  position: absolute;
  width: 240px;
  top: -40px;
  right: -30px;
}

@media all and (max-width: 639px) {
  footer .foot_illust {
    width: 190px;
    top: -70px;
    right: 0;
  }
}

footer .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #333333;
  text-wrap: balance;
  word-break: auto-phrase;
}

footer .main span {
  display: block;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #f05b78;
}

footer .foot_contact_link {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

footer .foot_contact_link .foot_contact_link_item {
  width: 360px;
}

footer .foot_contact_link .foot_contact_link_item:nth-child(n + 2) {
  margin-left: 20px;
}

@media all and (max-width: 639px) {
  footer .foot_contact_link .foot_contact_link_item:nth-child(n + 2) {
    margin-top: 20px;
    margin-left: 0;
  }
}

footer .foot_contact_link .foot_contact_link_item a {
  display: block;
  text-align: center;
  background: #fc9b32;
  color: #fff;
  border-radius: 5px;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  padding: 15px 0;
}

footer .foot_contact_link .foot_contact_link_item a.item_line {
  background: #5fa643;
}

footer .foot_contact_link .foot_contact_link_item .line_sub {
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
}

footer .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

@media all and (max-width: 639px) {
  footer .inner {
    display: block;
    margin-top: 50px;
  }
}

footer .inner .in_left {
  width: 50%;
  position: relative;
  padding-left: 160px;
}

@media all and (max-width: 639px) {
  footer .inner .in_left {
    width: 100%;
    padding: 0;
  }
}

footer .inner .in_left .foot_logo {
  display: block;
  width: 133px;
  position: absolute;
  left: 0;
  top: 0;
}

@media all and (max-width: 639px) {
  footer .inner .in_left .foot_logo {
    margin: auto;
    position: relative;
  }
}

footer .inner .in_left .foot_name {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  footer .inner .in_left .foot_name {
    margin-top: 20px;
  }
}

footer .inner .in_left .foot_name span {
  display: block;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
}

footer .inner .in_left .info {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}

footer .inner .in_left .unei {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
}

footer .inner .in_right {
  width: 45%;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  footer .inner .in_right {
    width: 100%;
    margin-top: 40px;
  }
}

footer .copy {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  z-index: 2;
  color: #333333;
  text-align: center;
}

@media all and (max-width: 639px) {
  footer .copy {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 12px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    line-height: 1em;
    font-weight: 400;
    position: relative;
    margin-top: 50px;
    text-align: center;
  }
}

#nav_right {
  position: fixed;
  padding: 20px 15px 25px;
  background: #fc9b32;
  right: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  top: 82px;
}

@media all and (max-width: 639px) {
  #nav_right {
    width: 76px;
    height: 62px;
    padding: 14px 15px 25px;
    top: auto;
    bottom: 62px;
    display: none;
  }
}

#nav_right a {
  display: block;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1em;
  color: #f05b78;
}

@media all and (max-width: 639px) {
  #nav_right a {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 10px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

#nav_right a i {
  display: block;
  font-size: 23px;
  margin-bottom: 10px;
}

@media all and (max-width: 639px) {
  #nav_right a i {
    font-weight: 17px;
  }
}

#hanb_nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: 0.8s;
  background: #fdbe6e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media all and (max-width: 821px) {
  #hanb_nav {
    display: block;
    opacity: 1;
  }
}

@media all and (max-width: 639px) {
  #hanb_nav {
    width: 70px;
    height: 70px;
    right: 0;
    top: 0;
    display: flex;
  }
}

#hanb_nav.fixd {
  transition: 0.8s;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.menu__icon {
  position: relative;
  width: 30px;
  height: 20px;
  margin-bottom: 5px;
}

.menu__text {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

@media all and (max-width: 639px) {
  .menu {
    right: 23px;
    top: 18px;
  }
}

.menu__line {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}

.menu__line--top {
  top: 0;
}

.menu__line--center {
  top: 9px;
}

.menu__line--bottom {
  bottom: 0;
}

.menu__line--top.active {
  top: 9px;
  transform: rotate(45deg);
}

.menu__line--center.active {
  transform: scaleX(0);
}

.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(-45deg);
}

/*gnav*/
.gnav {
  background: #f9f8f4;
  opacity: 0;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transform: translateY(-200%);
  transition: 0.4s cubic-bezier(0.26, 0.06, 0, 1) all;
}

.gnav.is-active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2222;
}

.gnav .gnav__wrap {
  padding: 70px 0;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  flex-direction: column;
  width: 100%;
  background: #f1eee3;
}

@media all and (max-width: 639px) {
  .gnav .gnav__wrap {
    justify-content: flex-start;
    padding: 40px 0 40px;
  }
}

.gnav .gnav__wrap .sp-logo {
  max-width: 160px;
  margin: 0 auto 50px;
}

.gnav .gnav__wrap .sp-logo img {
  max-width: 100%;
}

@media all and (max-width: 639px) {
  .gnav .gnav__wrap .sp-logo {
    max-width: 120px;
  }
}

.gnav__menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media all and (max-width: 639px) {
  .gnav__menu {
    display: block;
  }
}

.gnav__menu .gnav__menu__item {
  width: 30%;
  margin-right: 5%;
}

.gnav__menu .gnav__menu__item:nth-child(3n) {
  margin-right: 0;
}

.gnav__menu .gnav__menu__item:nth-child(n + 4) {
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  .gnav__menu .gnav__menu__item:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  .gnav__menu .gnav__menu__item {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.gnav__menu .gnav__menu__item .item_read {
  color: #333333;
  text-decoration: none;
  transition: 0.5s;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0;
  display: block;
  line-height: 1.5em;
  padding: 15px 0;
}

.gnav__menu .gnav__menu__item .item_read.js-sp-parent {
  position: relative;
  display: block;
  cursor: pointer;
}

.gnav__menu .gnav__menu__item .item_read.js-sp-parent:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #f9f8f4;
}

.gnav__menu .gnav__menu__item .item_read.js-sp-parent.is-open:after {
  content: "\f068";
}

.gnav__menu .gnav__menu__item.bnn {
  margin-right: 0;
  margin-top: 70px;
}

.gnav__menu .gnav__menu__item.bnn .item_read {
  text-align: center;
  border: 1px solid #f4f1ed;
}

.gnav__menu .gnav__menu__item .gnav__menu_sub {
  display: none;
}

.gnav__menu .gnav__menu__item .gnav__menu_sub li {
  margin-top: 8px;
}

.gnav__menu .gnav__menu__item .gnav__menu_sub li:first-child {
  margin-top: 0;
}

.gnav__menu .gnav__menu__item .gnav__menu_sub li a {
  display: block;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #333333;
  font-weight: 500;
  text-align: left;
}

.gnav__menu__item a:hover {
  color: #000;
}

/*--------------------------------------------------
りのきっずについて (about.php)
----------------------------------------------------*/
#about_1 {
  position: relative;
  margin-top: 70px;
}

#about_1:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 718px;
  height: 611px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/about_1_br.svg);
  margin: auto;
  left: 0;
  right: 0;
}

#about_1 .single {
  position: relative;
}

#about_1 .single .about_1_illust-1 {
  position: absolute;
  width: 144px;
  display: block;
  right: 10%;
  top: 0;
}

@media all and (max-width: 639px) {
  #about_1 .single .about_1_illust-1 {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto;
  }
}

#about_1 .single .about_1_illust-2 {
  display: block;
  position: absolute;
  width: 169px;
  margin: auto;
  top: 0;
  bottom: 0;
}

@media all and (max-width: 639px) {
  #about_1 .single .about_1_illust-2 {
    display: none;
  }
}

#about_1 .single .about_1_illust-3 {
  display: block;
  position: absolute;
  width: 119px;
  bottom: 0;
  right: 0;
}

@media all and (max-width: 639px) {
  #about_1 .single .about_1_illust-3 {
    display: none;
  }
}

#about_1 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#about_1 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 2.2em;
  margin-top: 50px;
  text-wrap: balance;
  word-break: auto-phrase;
}

@media all and (max-width: 639px) {
  #about_1 .main {
    letter-spacing: 0;
    margin-top: 30px;
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    font-weight: 500;
    line-height: 2em;
  }
}

#about_2 {
  position: relative;
  margin-top: 140px;
  margin-bottom: 90px;
}

@media all and (max-width: 639px) {
  #about_2 {
    margin-top: 40px;
  }
}

#about_2 .single_new {
  background: #fff;
  border-radius: 10px;
}

#about_2 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
  margin: 0 0 30px;
}

@media all and (max-width: 639px) {
  #about_2 .read {
    margin: 50px auto 30px;
  }
}

#about_2 .innerB {
  position: relative;
}

#about_2 .innerB .about_2_asirai {
  display: block;
  position: absolute;
  width: 77px;
  right: -40px;
  top: -100px;
}

@media all and (max-width: 639px) {
  #about_2 .innerB .about_2_asirai {
    width: 47px;
    right: 20px;
    top: -20px;
  }
}

#about_2 .innerB .left img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#about_2 table {
  width: 100%;
}

#about_2 table th,
#about_2 table td {
  background: none;
  text-align: left;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  border: none;
  padding: 0;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

@media all and (max-width: 639px) {
  #about_2 table th,
  #about_2 table td {
    display: block;
  }
}

#about_2 table th {
  padding-right: 15px;
}

@media all and (max-width: 639px) {
  #about_2 table th {
    background: #eee;
  }
}

/*--------------------------------------------------
療育内容(service.php)
----------------------------------------------------*/
#service_1 {
  padding-top: 60px;
}

#service_1 .photo_eri {
  position: relative;
}

#service_1 .photo_eri .service_1_photo_text {
  display: block;
  position: absolute;
  width: 65px;
  left: 30px;
  top: -20px;
}

#service_1 .photo_eri .service_photo {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#service_1 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0;
  color: #333333;
  padding-top: 50px;
}

@media all and (max-width: 639px) {
  #service_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    font-weight: 500;
    letter-spacing: 0;
  }
}

#service_2 {
  margin-top: 40px;
  background: #f1eee3;
  position: relative;
  padding-bottom: 40px;
}

@media all and (max-width: 639px) {
  #service_2 {
    padding-top: 50px;
  }
}

#service_2 img.top_2_line {
  display: block;
}

@media all and (max-width: 639px) {
  #service_2 img.top_2_line {
    position: absolute;
    top: 0;
  }
}

#service_2 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

/* 4つの専門的アプローチ */
#service_2 .service_approach {
  margin-bottom: 40px;
}

#service_2 .service_approach_title {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #f05b78;
  letter-spacing: 0.1em;
}

#service_2 .service_approach_lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

#service_2 .service_approach_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#service_2 .service_approach_card {
  width: calc(50% - 8px);
  background: #fc9b32;
  color: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
}

#service_2 .service_approach_card_label {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #fff8b0;
}

#service_2 .service_approach_card_name {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

#service_2 .service_approach_card_text {
  font-size: 15px;
  line-height: 1.8;
}

@media all and (max-width: 639px) {
  #service_2 .service_approach_card {
    width: 100%;
    padding: 25px 15px;
  }
  #service_2 .service_approach_title {
    font-size: 18px;
  }
  #service_2 .service_approach_lead {
    font-size: 14px;
    text-align: left;
  }
  #service_2 .service_approach_card_label {
  font-size: 18px;
}
}

#service_2 .service_2_list {
  margin-top: 60px;
}

#service_2 .service_2_list li:nth-child(n + 2) {
  margin-top: 80px;
}

#service_2 .service_2_list li img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  #service_2 .service_2_list li img {
    width: 70%;
    margin: auto;
  }
}

#service_2 .service_2_list li .right_l {
  padding-top: 30px;
}

#service_2 .service_2_list li .service_2_list_read {
  background: #fff;
  border-radius: 3px;
  padding: 4px 20px;
}

#service_2 .service_2_list li .service_2_list_read span {
  position: relative;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #333333;
  padding-left: 25px;
}

#service_2 .service_2_list li .service_2_list_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 22px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/service_2_list_read_icon.svg);
  left: -3px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#service_2 .service_2_list li .service_2_list_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 0;
  color: #333333;
}

@media all and (max-width: 639px) {
  #service_2 .service_2_list li .service_2_list_main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

#service_3 {
  padding: 40px 0;
}

#service_3 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#service_3 .col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  #service_3 .col-2 {
    display: block;
  }
}

#service_3 .col-2 .col-2-item {
  width: 42%;
}

@media all and (max-width: 639px) {
  #service_3 .col-2 .col-2-item {
    width: 100%;
    margin: 0 0 40px;
  }
}

#service_3 .col-2 .col-2-item:nth-child(even) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  #service_3 .col-2 .col-2-item:nth-child(even) {
    margin: 0 0 40px;
  }
}

#service_3 .col-2 .col-2-item:nth-child(n + 3) {
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  #service_3 .col-2 .col-2-item:nth-child(n + 3) {
    margin: 0 0 40px;
  }
}

#service_3 .col-2 .item_photo {
  position: relative;
  padding-bottom: 30px;
}

#service_3 .col-2 .item_photo .item_photo_main {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#service_3 .col-2 .item_photo .service_3_item_photo_no {
  display: block;
  position: absolute;
  width: 67px;
  left: 20px;
  bottom: 0;
}

#service_3 .col-2 .service_3_item_read {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #333333;
  margin-top: 5px;
}

#service_3 .col-2 .service_3_item_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0;
  color: #333333;
}

/*--------------------------------------------------
一日の過ごし方・活動(schedule.php)
----------------------------------------------------*/
#schedule_1 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  line-height: 2.2em;
  margin-top: 30px;
  text-wrap: balance;
  word-break: auto-phrase;
}

@media all and (max-width: 639px) {
  #schedule_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    font-weight: 500;
    letter-spacing: 0;
  }
}

#schedule_1 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
  margin-top: 140px;
}

#schedule_1 .schedule_1_read_text {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  margin-top: 20px;
}

#schedule_1 .innerB {
  margin-top: 60px;
}

#schedule_1 .innerB .photo_eri {
  position: relative;
}

#schedule_1 .innerB .photo_eri .schedule_1_photo {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#schedule_1 .innerB .photo_eri .schedule_1_photo_text {
  display: block;
  position: absolute;
  width: 60px;
  left: 30px;
  top: -30px;
}

#schedule_1 .innerB ul {
  position: relative;
}

#schedule_1 .innerB ul:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 14px;
  height: 95%;
  left: 30px;
  margin: auto;
  top: 0;
  bottom: 0;
  background: #fdbe6e;
}

#schedule_1 .innerB ul li {
  background: #fff;
  padding: 10px 20px;
  border-radius: 6px 100px 100px 6px;
  position: relative;
}

#schedule_1 .innerB ul li:nth-child(n + 2) {
  margin-top: 10px;
}

#schedule_1 .innerB ul li p {
  position: relative;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  padding-left: 80px;
}

#schedule_1 .innerB ul li p span {
  display: block;
  position: absolute;
  color: #fc9b32;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  font-weight: 500;
  left: 0;
  margin: auto;
  top: 4px;
}

#schedule_2 {
  background: #fdfcfb;
  position: relative;
}

@media all and (max-width: 639px) {
  #schedule_2 {
    padding-top: 30px;
  }
}

@media all and (max-width: 639px) {
  #schedule_2 .top_2_line {
    position: absolute;
    top: 0;
  }
}

#schedule_2 .top_2_ki {
  display: block;
  position: absolute;
  width: 153px;
  top: 0;
  left: 30%;
}

@media all and (max-width: 639px) {
  #schedule_2 .top_2_ki {
    display: none;
  }
}

#schedule_2 .top_2_ki.item-2 {
  left: auto;
  right: 30%;
}

#schedule_2 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#schedule_2 .schedule_2_sub_read {
  display: block;
  margin: 40px auto 10px;
  max-width: 360px;
}

#schedule_2 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  margin-top: 20px;
}

#schedule_2 .col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  #schedule_2 .col-2 {
    display: block;
  }
}

#schedule_2 .col-2 .col-2-item {
  width: 42%;
}

@media all and (max-width: 639px) {
  #schedule_2 .col-2 .col-2-item {
    width: 100%;
  }
}

#schedule_2 .col-2 .col-2-item:nth-child(even) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  #schedule_2 .col-2 .col-2-item:nth-child(even) {
    margin: 40px 0 0;
  }
}

#schedule_2 .col-2 .item_photo {
  position: relative;
}

#schedule_2 .col-2 .item_photo .item_photo_main {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#schedule_2 .col-2 .service_3_item_read {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #333333;
  margin-top: 15px;
}

#schedule_2 .col-2 .service_3_item_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0;
  color: #333333;
}

/*--------------------------------------------------
ご利用案内(guide.php)
----------------------------------------------------*/
#guide_1 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
  margin-top: 90px;
}

#guide_1 .innerB {
  margin-top: 60px;
}

#guide_1 .innerB img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#guide_1 .innerB .guide_1_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0;
  margin-top: 50px;
}

#guide_1 .flow_1_table {
  max-width: 1007px;
  width: 100%;
  margin: 50px auto 0;
  border-top: 1px dashed #b6b3b7;
}

#guide_1 .flow_1_table th,
#guide_1 .flow_1_table td {
  background: none;
  border: none;
  border-bottom: 1px dashed #b6b3b7;
  padding: 40px;
  vertical-align: top;
}

@media all and (max-width: 639px) {
  #guide_1 .flow_1_table th,
  #guide_1 .flow_1_table td {
    display: block;
    padding: 40px 20px;
  }
}

#guide_1 .flow_1_table th {
  white-space: nowrap;
}

@media all and (max-width: 639px) {
  #guide_1 .flow_1_table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}

#guide_1 .flow_1_table th img {
  display: block;
  width: 50px;
  position: absolute;
  left: 0;
  top: 0;
}

#guide_1 .flow_1_table th .flow_1_item_read {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  text-align: left;
  padding-left: 65px;
  position: relative;
  padding-top: 10px;
}

#guide_1 .flow_1_table td .flow_1_item_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
}

#guide_2 {
  background: #f1eee3;
}

#guide_2 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#guide_2 .tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media all and (max-width: 639px) {
  #guide_2 .tab-wrap {
    display: block;
  }
}

#guide_2 .tab-wrap {
  /* 左タブ */
}

#guide_2 .tab-wrap .tab-menu {
  width: 25%;
}

@media all and (max-width: 639px) {
  #guide_2 .tab-wrap .tab-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

#guide_2 .tab-wrap .tab-menu .tab-btn {
  padding: 14px 20px;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 500;
  border-radius: 5px;
  margin-bottom: 14px;
  text-align: center;
  cursor: pointer;
  color: #333333;
  transition: 0.3s;
  background: #fff;
}

#guide_2 .tab-wrap .tab-menu .tab-btn.is-active {
  background: #fc9b32;
  color: #fff;
}

#guide_2 .tab-wrap .tab-menu .tab-btn:hover {
  background: #fc9b32;
  color: #fff;
  transition: 0.3s;
}

#guide_2 .tab-wrap {
  /* 右側 */
}

#guide_2 .tab-wrap .tab-content {
  width: 70%;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #guide_2 .tab-wrap .tab-content {
    width: 100%;
  }
}

#guide_2 .tab-wrap .tab-content {
  /* 切り替え */
}

#guide_2 .tab-wrap .tab-content .tab-panel {
  display: none;
}

#guide_2 .tab-wrap .tab-content .tab-panel.is-active {
  display: block;
}

#guide_2 .tab-wrap .tab-content .tab-panel .azuricamp_3_table_read {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 400;
  color: #333333;
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
}

#guide_2 .tab-wrap .tab-content .tab-panel .azuricamp_3_table_read::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #fc9b32;
  bottom: 0;
  left: 0;
}

#guide_2 .tab-wrap .tab-content .tab-panel .azuricamp_3_table_read span {
  padding-left: 25px;
  position: relative;
}

#guide_2 .tab-wrap .tab-content .tab-panel .azuricamp_3_table_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 17px;
  height: 16px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/service_2_list_read_icon.svg);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#guide_2 .tab-wrap .tab-content .tab-panel .faq_list li {
  border: 1px solid #fff;
  padding: 30px 40px;
  border-radius: 15px;
  margin-top: 30px;
  background: #f9f8f4;
}

@media all and (max-width: 639px) {
  #guide_2 .tab-wrap .tab-content .tab-panel .faq_list li {
    padding: 30px 20px;
  }
}

#guide_2 .tab-wrap .tab-content .tab-panel .faq_list li .q {
  border-bottom: 1px solid #fff;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0;
  font-weight: 500;
  color: #333333;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
}

#guide_2 .tab-wrap .tab-content .tab-panel .faq_list li .q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 400;
  color: #333333;
  transition: transform 0.3s ease;
}

#guide_2 .tab-wrap .tab-content .tab-panel .faq_list li .a {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0;
  font-weight: 500;
  color: #333333;
  margin-top: 15px;
  display: none;
}

#guide_2 .tab-wrap .tab-content .tab-panel .faq_list li.is-open .a {
  display: block;
}

#guide_2 .tab-wrap .tab-content .tab-panel .faq_list li.is-open .q::after {
  content: "−";
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
#contact_1 {
  padding-bottom: 60px;
}

#contact_1 .read {
  position: relative;
  display: table;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  border-radius: 100px;
  padding: 5px 40px;
  margin: auto;
  color: #e394bb;
  border: 2px dotted #e394bb;
  background: #fff;
}

#contact_1 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  margin-top: 20px;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
}

@media all and (max-width: 639px) {
  #contact_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.05em;
    font-weight: 500;
    font-weight: 500;
  }
}

#contact_1 .company_1__main {
  margin-top: 60px;
}

#contact_1 .company_1__main .form-pattern-1 {
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  #contact_1 .company_1__main .form-pattern-1 {
    padding: 40px 15px;
  }
}

#contact_1 .form-contents {
  padding: 55px 70px;
}

#contact_1 .form-contents form dl {
  font-weight: 400;
}

#contact_1 .accbox {
  margin-top: 40px;
}

#contact_1 .accbox label {
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}

#contact_1 .accbox label .more {
  display: block;
  text-align: center;
  border-top: 1px solid #fc9b32;
  border-bottom: 1px solid #fc9b32;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 400;
  color: #fc9b32;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 0;
  transition: 0.4s;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #contact_1 .accbox label .more {
    margin-left: 0;
  }
}

#contact_1 .accbox label .more span {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
}

#contact_1 .accbox label:hover .more {
  background: #fc9b32;
  color: #fff;
  transition: 0.4s;
}

#contact_1 .accbox label .single {
  padding: 0;
}

#contact_1 .accbox input {
  display: none;
  transition: 0.8s;
}

#contact_1 .accbox .accshow_1 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  position: relative;
}

#contact_1 .accbox .accshow_1 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  text-align: left;
  letter-spacing: 0;
  width: 85%;
  margin: auto;
}

@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main {
    line-height: 1.7em;
  }
}

#contact_1 .accbox .accshow_1 .main span {
  display: block;
  margin-top: 20px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
}

@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main span {
    margin-top: 35px;
  }
}

#contact_1 .cssacc_1:checked + .accshow_1 {
  height: auto;
  opacity: 1;
  transition: 0.8s;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 {
  padding-top: 60px;
  padding-bottom: 60px;
}

#topics_1 .single_new {
  background: #fff;
}

#topics_1 .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #topics_1 .inner {
    display: block;
  }
}

#topics_1 .inner .left {
  width: 67%;
}

@media all and (max-width: 639px) {
  #topics_1 .inner .left {
    width: 100%;
  }
}

#topics_1 .inner .right {
  width: 27%;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #topics_1 .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}

#topics_1 .inner .right .side_titem {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 25px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #fc9b32;
}

#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}

#topics_1 .inner .right .side_titem span {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  display: block;
}

#topics_1 .inner .right ul.post_list li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}

#topics_1 .inner .right ul.post_list li a {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}

#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #fc9b32;
  opacity: 0.5;
  position: relative;
}

#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 9px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 100px;
  display: inline-block;
  padding: 0 1.8em;
  position: absolute;
  top: 2px;
  left: 80px;
}

#topics_1 .inner .right ul.post_list li a .title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  font-weight: 500;
  color: #333333;
  display: block;
  margin-top: 8px;
  line-height: 1.6em;
}

#topics_1 .inner .right ul.post_list li a:hover {
  background: rgba(238, 238, 238, 0.4);
  transition: 0.4s;
}

#topics_1 .entry .data {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #fc9b32;
}

#topics_1 .entry .title {
  font-family: YakuHanRP, "M PLUS 1p", sans-serif;
  font-size: 21px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #333333;
}

#topics_1 .entry .main_cont {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 30px;
  font-weight: 500;
  color: #333333;
}

#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}

.top_2_photo {
  position: relative;
  margin: 20px auto 40px;
  max-width: 600px;
  width: 90%;
  z-index: 1;
}

.top_2_photo .top_2_clip {
  clip-path: polygon(15% 0, 89% 5%, 100% 45%, 85% 100%, 10% 95%, 0 55%);
}

.top_2_photo .top_2_clip img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  display: block;
}

.top_2_photo::before,
.top_2_photo::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.top_2_photo::before {
  top: -3%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: #e394bb;
  border-radius: 40% 80% 30% 90%/90% 90% 20% 60%;
}

.top_2_photo::after {
  bottom: -3%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: #f0e84d;
  border-radius: 10% 60% 70% 10%/50% 60% 40% 20%;
  animation-delay: -2s;
}

@media screen and (max-width: 800px) {
  .top_2_photo {
    margin: 10px auto 20px;
    max-width: 400px;
  }

  .top_2_photo::before {
    left: -5%;
    width: 40%;
    height: 40%;
  }

  .top_2_photo::after {
    right: -5%;
    width: 50%;
    height: 50%;
  }
}

/*# sourceMappingURL=style.css.map */

.btn-wrap {
  margin: 15px auto 0;
  max-width: 380px;
  width: 95%;
  text-align: center;
}

.btn-wrap.type1 {
  margin: 0 auto 30px;
  max-width: 380px;
  width: 95%;
  text-align: center;
}

.btn-wrap.instagram a {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/bg-instagram.png) no-repeat center/100% 100%;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.btn-wrap.instagram a:hover {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27531/bg-instagram.png) no-repeat center/200% 200%;
}

.btn-wrap.instagram a i {
  font-size: 1.3em;
}

.btn-wrap a {
  position: relative;
  display: block;
  padding: 30px 20px;
  color: #fff;
  background: #3d3936;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  border-radius: 60px;
  transition: all 0.3s ease;
}

@media all and (max-width: 896px) {
  .btn-wrap a {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 639px) {
  .btn-wrap a {
    font-size: 1.5rem;
  }
}

.btn-wrap a span {
  font-size: 1.5rem;
  position: absolute;
  transform: translateX(-50%);
  top: -1.25rem;
  left: 50%;
  display: table;
  width: 80%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.2rem;
  color: #3d3936;
  border-width: 3px;
  border-style: solid;
  border-color: #3d3936;
  border-radius: 100vh;
  background: #fff;
  animation: bounce-anm 2s ease infinite;
  transition: all 0.3s ease;
}

@media all and (max-width: 896px) {
  .btn-wrap a span {
    font-size: 1.3rem;
  }
}

@media all and (max-width: 639px) {
  .btn-wrap a span {
    font-size: 1.15rem;
  }
}

.btn-wrap a span:before,
.btn-wrap a span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

.btn-wrap a span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #3d3936 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.btn-wrap a span:after {
  bottom: -6px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.btn-wrap a i {
  margin-right: 0.75rem;
}

.btn-wrap a:hover {
  background: #5f7d99;
}

.btn-wrap a:hover span {
  color: #fff;
  background: #3d3936;
}

.btn-wrap a:hover span:after {
  border-color: #3d3936 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

@media all and (max-width: 896px) {
  .btn-wrap {
    margin: 15px auto 30px;
    max-width: 280px;
  }

  .btn-wrap a {
    padding: 25px 15px;
  }

  .btn-wrap a span {
    border-width: 2px;
    max-width: 160px;
  }

  .btn-wrap a span:after {
    bottom: -7px;
  }
}

@media all and (max-width: 896px) {
.btn-wrap.type1 {
  margin: 0 auto 90px;
  max-width: 280px;
}
}

@keyframes bounce-anm {
  0% {
    transform: translate(-50%, 0);
  }

  10% {
    transform: translate(-50%, 0);
  }

  20% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -3px);
  }

  50% {
    transform: translate(-50%, 0);
  }

  60% {
    transform: translate(-50%, -3px);
  }

  80% {
    transform: translate(-50%, 0);
  }

  100% {
    transform: translate(-50%, 0);
  }
}
