@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Quicksand:wght@300..700&family=Yusei+Magic&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* @import "_vars.scss"; */
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*サイトのメインカラー*/
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: 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 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !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 {
    -webkit-animation-duration: 0.3s;
    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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #d8d8d8;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #0071b9;
}
@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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
}

#body {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  #body {
    overflow: hidden;
  }
}

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

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

.tbox {
  border: 2px solid #0093d2;
  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;
}
header #head {
  margin: 0 33px;
}
@media all and (max-width: 821px) {
  header #head {
    margin: 0;
  }
}
header #head .inner {
  padding-top: 50px;
}
@media all and (max-width: 639px) {
  header #head .inner {
    padding: 0;
  }
}
header #head .inner .in_left {
  width: 144px;
  position: absolute;
  top: 30px;
}
@media all and (max-width: 639px) {
  header #head .inner .in_left {
    width: 90px;
    margin-top: 0;
    top: 0;
  }
}
header #head .inner .in_right {
  margin-left: auto;
  position: relative;
  width: 960px;
}
header #head .logo {
  position: relative;
}
@media all and (max-width: 639px) {
  header #head .logo {
    padding: 13px;
  }
}
header #head .logo a {
  display: block;
}
header #head .logo a img {
  width: 100%;
  height: auto;
}
header #head .head_nav {
  display: flex;
  list-style: none;
  justify-content: end;
  background: #fff;
  border: 2px solid #0093d2;
  padding: 0;
  border-radius: 100px;
}
@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: 32px;
}
header #head .head_nav > li a {
  text-decoration: none;
  display: block;
  color: #333d37;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  font-weight: 400;
  padding: 27px 0;
  transition: 0.4s;
}
header #head .head_nav > li a:hover {
  color: #0093d2;
  transition: 0.4s;
}
header #head .head_nav > li:last-child {
  background: #0093d2;
  border-radius: 0 100px 100px 0;
}
header #head .head_nav > li:last-child a {
  padding: 27px 39px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  font-weight: 400;
  color: #fff;
}

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

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

.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;
}
#contentwrap.kasou {
  padding-top: 100px;
}
@media all and (max-width: 639px) {
  #contentwrap.kasou {
    padding-top: 30px;
  }
}
#contentwrap.kasou:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 100px;
  background: #fffaf2;
  top: 0;
}
@media all and (max-width: 639px) {
  #contentwrap.kasou:before {
    height: 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: #0093d2;
  color: #fff;
}
table td b {
  color: #0093d2;
  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: #0071b9;
  font-weight: bold;
  border: 2px solid #0071b9;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #0071b9;
}
#mailform button * {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.form-button * {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  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 #0093d2;
  border-bottom: 3px solid #0093d2;
  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;
  margin-top: -30px;
}
@media all and (max-width: 639px) {
  #top_main {
    margin-top: 30px;
  }
}
#top_main:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 671px;
  height: 886px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/top_main_bg.svg);
  left: 0;
  top: -20px;
}
@media all and (max-width: 639px) {
  #top_main:before {
    height: 296px;
  }
}
#top_main .top_main_vis {
  width: 75%;
  margin-left: auto;
  margin-top: 70px;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    height: auto;
    margin-top: 40px;
  }
}
#top_main .top_main_vis img.top_main {
  display: block;
  width: 100%;
  border-radius: 20px 0 0 20px;
  position: relative;
  z-index: 1;
}
#top_main .top_main_chachi {
  position: absolute;
  height: 624px;
  margin: auto;
  z-index: 2;
  left: 11%;
  top: 140px;
}
@media all and (max-width: 821px) {
  #top_main .top_main_chachi {
    height: 112px;
    left: 3%;
    bottom: -10px;
  }
}
@media all and (max-width: 639px) {
  #top_main .top_main_chachi {
    width: 19%;
    height: auto;
    top: 50px;
    bottom: auto;
    left: 30px;
  }
}
#top_main .top_main_chachi img {
  display: block;
  height: 100%;
  margin: auto;
}
@media all and (max-width: 639px) {
  #top_main .top_main_chachi img {
    height: auto;
  }
}
#top_main.page_unde {
  position: relative;
  padding: 260px 0 90px;
}
@media all and (max-width: 639px) {
  #top_main.page_unde {
    margin-top: 30px;
    padding: 70px 0 50px;
  }
}
#top_main.page_unde:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 68%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0;
  top: 60px;
  border-radius: 50px 0 0 50px;
}
#top_main.page_unde.page_about:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/page_about_bg.jpg);
}
#top_main.page_unde.page_service:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/page_service_bg.jpg);
}
#top_main.page_unde.page_medical:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/page_medical_bg.jpg);
}
#top_main.page_unde.page_recruit:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/page_recruit_bg.jpg);
}
#top_main.page_unde.page_contact:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/page_contact_bg.jpg);
}
#top_main.page_unde h2 {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 33px;
  font-size: 3.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333d37;
  z-index: 2;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_main.page_unde h2 {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: 400;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}
#top_main.page_unde h2 span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_main.page_unde h2 span {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1em;
  }
}

.top_main_text_bottom {
  margin: 60px 0;
  padding: 0 60px;
  position: relative;
}
@media all and (max-width: 639px) {
  .top_main_text_bottom {
    margin-top: 30px;
    padding: 0 10px 0 30%;
  }
}
.top_main_text_bottom:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 502px;
  height: 367px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/top_main_text_bottom_bg.svg);
  right: 0;
  bottom: -100px;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .top_main_text_bottom:before {
    display: none;
  }
}
.top_main_text_bottom .top_main_text {
  text-align: right;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .top_main_text_bottom .top_main_text {
    line-height: 2em;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
    margin-top: 0;
  }
}

#top_1 {
  position: relative;
}
#top_1 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_1 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#top_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #top_1 .read span {
    margin-bottom: 10px;
  }
}
#top_1 .read {
  text-align: left;
}
@media all and (max-width: 639px) {
  #top_1 .read {
    text-align: center;
  }
}
#top_1 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_1 .inner {
    display: block;
  }
}
#top_1 .inner .in_right {
  width: 60%;
  margin-left: 40px;
}
@media all and (max-width: 639px) {
  #top_1 .inner .in_right {
    width: 100%;
    margin: 20px 0 0;
  }
}
@media all and (max-width: 639px) {
  #top_1 .innerB .right {
    margin-top: 60px;
  }
}
#top_1 .news_post {
  width: 100%;
  margin-top: 30px;
}
#top_1 .news_post li {
  padding: 20px 10px;
  border-bottom: 1px solid #d8d8d8;
}
#top_1 .news_post li:first-child {
  border-top: 1px solid #d8d8d8;
}
#top_1 .news_post li a {
  display: block;
}
#top_1 .news_post li p {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
}
#top_1 .news_post li p span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #475950;
  margin-bottom: 5px;
}

#top_2 {
  position: relative;
  background: #fffaf2;
  padding-top: 60px;
}
#top_2 .top_2_bg {
  display: block;
  width: 100%;
  position: absolute;
  top: -1px;
}
@media all and (max-width: 639px) {
  #top_2 .top_2_bg {
    display: none;
  }
}
#top_2 .top_2-1 {
  display: block;
  width: 453px;
  position: absolute;
  top: 0;
  left: 2%;
}
@media all and (max-width: 639px) {
  #top_2 .top_2-1 {
    position: relative;
    width: 40%;
  }
}
#top_2 .single {
  position: relative;
}
@media all and (max-width: 639px) {
  #top_2 .single {
    padding-top: 0;
  }
}
#top_2 .top_2-2 {
  display: block;
  width: 234px;
  position: absolute;
  right: -30px;
  top: 50px;
}
@media all and (max-width: 639px) {
  #top_2 .top_2-2 {
    position: relative;
    width: 80%;
    right: auto;
    top: auto;
    margin: auto;
  }
}
#top_2 .top_2-3 {
  display: block;
  width: 165px;
  position: absolute;
  margin: auto;
  bottom: 220px;
  right: 2%;
}
@media all and (max-width: 639px) {
  #top_2 .top_2-3 {
    display: none;
  }
}
@media all and (max-width: 639px) {
  #top_2 {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #top_2 {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
#top_2 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_2 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#top_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #top_2 .read span {
    margin-bottom: 10px;
  }
}
#top_2 .top_2_sec_read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #0071b9;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_2 .top_2_sec_read {
    margin-bottom: 20px;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
  }
}
#top_2 .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_2 .main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2em;
  }
}
#top_2 .bottom {
  max-width: 878px;
  width: 95%;
  margin: 80px auto 0;
  position: relative;
  background: #fff6e9;
  border-radius: 20px;
  padding: 50px 70px 40px;
}
@media all and (max-width: 639px) {
  #top_2 .bottom {
    padding: 50px 20px;
  }
}
#top_2 .bottom .bottom_read {
  display: table;
  background: #fff;
  color: #ff9d33;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  border: 1px solid #ff9d33;
  border-radius: 5px;
  padding: 9px 40px;
  margin-top: -70px;
}
@media all and (max-width: 639px) {
  #top_2 .bottom .bottom_read {
    padding: 9px 30px;
  }
}
#top_2 .bottom .bottom_text {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
  margin-top: 24px;
}

#top_3 {
  position: relative;
}
#top_3 .top_3_line {
  display: block;
  width: 100%;
}
#top_3 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_3 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#top_3 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #top_3 .read span {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 639px) {
  #top_3 .read {
    text-align: center;
  }
}
#top_3 .main {
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 20px;
}
#top_3 .single {
  padding-top: 0;
  padding-bottom: 20px;
}
@media all and (max-width: 639px) {
  #top_3 .single {
    padding-top: 50px;
  }
}
#top_3 .innerB {
  margin-top: 50px;
  position: relative;
  padding: 60px 0;
}
@media all and (max-width: 639px) {
  #top_3 .innerB {
    padding: 0;
  }
}
#top_3 .innerB:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 80%;
  height: 100%;
  background: #fffaf2;
  top: 0;
  right: 0;
  border-radius: 20px;
  z-index: -1;
}
@media all and (max-width: 639px) {
  #top_3 .innerB:before {
    display: none;
  }
}
#top_3 img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#top_3 .top_3_text {
  padding-right: 50px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 30px;
}
#top_3 .top_3_text span {
  display: block;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
  color: #0071b9;
}
#top_3 .top_4_line {
  display: block;
  width: 100%;
}

#top_4 {
  position: relative;
  background: #fffaf2;
  padding-bottom: 90px;
}
@media all and (max-width: 639px) {
  #top_4 {
    padding-bottom: 0;
  }
}
#top_4 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_4 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#top_4 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #top_4 .read span {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 639px) {
  #top_4 .read {
    text-align: center;
  }
}
#top_4 .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #top_4 .list {
    display: block;
  }
}
#top_4 .list li {
  width: 32%;
  margin-right: 2%;
  background: #fff;
  border-radius: 15px;
  position: relative;
  padding-bottom: 30px;
}
@media all and (max-width: 639px) {
  #top_4 .list li {
    width: 100%;
    margin-bottom: 80px;
  }
}
#top_4 .list li:nth-child(3n) {
  margin-right: 0;
}
#top_4 .list li img {
  display: block;
  width: 100%;
  border-radius: 15px 15px 0 0;
}
#top_4 .list li .top_4_text {
  padding: 30px 20px;
}
#top_4 .list li .top_4_text .top_4_item_read {
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #ff9d33;
}
#top_4 .list li .top_4_text .top_4_item_main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 10px;
}
#top_4 .list li a {
  display: block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  background: #0093d2;
  border-radius: 100px;
  max-width: 288px;
  width: 80%;
  padding: 10px 0;
  bottom: -23px;
}
#top_4 .list li a span {
  display: table;
  margin: auto;
  position: relative;
  color: #fff;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  padding-right: 30px;
}
#top_4 .list li a span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}
#top_4 .bile_tori {
  display: block;
  position: absolute;
  width: 130px;
  right: 5%;
}
@media all and (max-width: 639px) {
  #top_4 .bile_tori {
    bottom: -40px;
    width: 80px;
  }
}

#top_5 {
  padding: 40px 0;
}
#top_5 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_5 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#top_5 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #top_5 .read span {
    margin-bottom: 10px;
  }
}
#top_5 .innerB {
  margin-top: 50px;
}
#top_5 .innerB img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#top_5 .innerB .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 30px;
}
#top_5 a {
  display: block;
  margin: 50px auto 0;
  background: #0093d2;
  border-radius: 100px;
  max-width: 300px;
  width: 80%;
  padding: 10px 0;
}
#top_5 a span {
  display: table;
  margin: auto;
  position: relative;
  color: #fff;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  padding-right: 30px;
}
#top_5 a span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

#sp_bottm {
  display: none;
  width: 100%;
  background: #7cc6df;
  z-index: 44;
}
@media all and (max-width: 639px) {
  #sp_bottm {
    display: block;
    position: fixed;
    bottom: 0;
  }
}
#sp_bottm ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#sp_bottm ul li {
  width: 25%;
}
#sp_bottm ul li:nth-child(even) {
  background: #a7dcb9;
}
#sp_bottm ul li a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 12px 0;
  font-size: 24px;
  line-height: 1em;
}

footer #foot_cont {
  background: #0071b9;
  margin-top: 50px;
  padding-top: 30px;
  border-radius: 50px 50px 0 0;
}
@media all and (max-width: 639px) {
  footer #foot_cont {
    padding: 50px 0;
    background-position: left;
  }
}
footer #foot_cont .inenr {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inenr {
    display: block;
  }
}
footer #foot_cont .inenr .in_left {
  width: 40%;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inenr .in_left {
    width: 100%;
  }
}
footer #foot_cont .inenr .in_right {
  width: 55%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inenr .in_right {
    width: 100%;
    margin-top: 20px;
  }
}
footer #foot_cont .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #fff;
}
footer #foot_cont .read span {
  display: block;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
}
footer #foot_cont .links {
  width: 349px;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .links {
    width: 100%;
  }
}
footer #foot_cont .links li {
  border: 1px solid #fff;
  border-radius: 5px;
}
footer #foot_cont .links li:nth-child(n + 2) {
  margin-top: 10px;
}
footer #foot_cont .links li a {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 25px;
  font-size: 2.5rem;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
footer #foot_cont .links li a span {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 5px;
}
footer #foot_cont .foot_logo {
  display: block;
  margin-left: auto;
  width: 130px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .foot_logo {
    width: 90px;
    margin: 60px auto 0;
  }
}
footer #foot_cont .jusho {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  margin-top: 30px;
  text-align: right;
}
@media all and (max-width: 639px) {
  footer #foot_cont .jusho {
    text-align: center;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
footer .copy {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
}
@media all and (max-width: 639px) {
  footer .copy {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    position: relative;
    margin-top: 50px;
    text-align: center;
  }
}

#nav_right {
  position: fixed;
  padding: 20px 15px 25px;
  background: #0093d2;
  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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1em;
  color: #ff9d33;
}
@media all and (max-width: 639px) {
  #nav_right a {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 10px;
    font-size: 1rem;
    font-weight: 400;
  }
}
#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;
  padding: 15px 15px 40px;
  right: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  transition: 0.8s;
  border-radius: 100px 0 0 100px;
}
@media all and (max-width: 821px) {
  #hanb_nav {
    display: block;
    opacity: 1;
  }
}
@media all and (max-width: 639px) {
  #hanb_nav {
    width: 76px;
    height: 62px;
    right: 0;
    transition: 0.8s;
  }
}
#hanb_nav.fixd {
  transition: 0.8s;
}

.menu {
  position: fixed;
  height: 20px;
  right: 35px;
  top: 32px;
  width: 30px;
  cursor: pointer;
  cursor: hand;
}
@media all and (max-width: 639px) {
  .menu {
    right: 23px;
    top: 18px;
  }
}

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

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

.menu__line--bottom {
  bottom: 0;
}

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

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

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

/*gnav*/
.gnav {
  background: #fffaf2;
  opacity: 0;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transform: translateY(-200%);
}
.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: linear-gradient(to bottom, #d5dee7 0%, #e8ebf2 50%, #e2e7ed 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), linear-gradient(33deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  background-blend-mode: normal, color-burn;
} */
.gnav .gnav__wrap {
  padding: 70px 0;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  flex-direction: column;
  width: 100%;

  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/top_main_bg.svg") no-repeat center 30%;
  background-size: cover;
}
@media all and (max-width: 639px) {
  .gnav .gnav__wrap {
    justify-content: flex-start;
    padding: 40px 0 40px;
  }
}

.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: #333d37;
  text-decoration: none;
  transition: 0.5s;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  font-weight: 600;
  padding: 0;
  display: block;
  line-height: 1.5em;
  padding: 15px 0;
  text-align: center;
  position: relative;
}
.gnav__menu .gnav__menu__item .item_read span {
  display: block;
  font-size: 10px;
  font-size: 1rem;
  color: #ac88b9;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 2px;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent:after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ac88b9;
  transition: 0.3s;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent.is-open:after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}
.gnav__menu .gnav__menu__item .gnav__menu_sub {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li:last-child {
  border-bottom: none;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li a {
  padding: 12px 20px !important;
  text-align: left !important;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  color: #333d37;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li a:before {
  content: "・";
  margin-right: 5px;
  color: #ac88b9;
}

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

/*--------------------------------------------------
部屋紹介(about.php)
----------------------------------------------------*/
#about_1 {
  position: relative;
  padding-top: 60px;
}
#about_1 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #about_1 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#about_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #about_1 .read span {
    margin-bottom: 10px;
  }
}
#about_1 .about_1_sub_read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #0071b9;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
#about_1 .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
  line-height: 2em;
}
@media all and (max-width: 639px) {
  #about_1 .main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
#about_1 .about_1-1 {
  display: block;
  position: absolute;
  width: 234px;
  right: 2%;
  bottom: 0;
  margin: auto;
  top: 0;
}
@media all and (max-width: 639px) {
  #about_1 .about_1-1 {
    position: relative;
  }
}
#about_1 .about_1-2 {
  display: block;
  position: absolute;
  width: 165px;
  left: 2%;
  bottom: 0;
  margin: auto;
}
@media all and (max-width: 639px) {
  #about_1 .about_1-2 {
    display: none;
  }
}

@media all and (max-width: 639px) {
  #about_2 {
    margin-top: 60px;
  }
}
#about_2 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #about_2 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#about_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #about_2 .read span {
    margin-bottom: 10px;
  }
}
#about_2 .innerB {
  margin-top: 50px;
}
#about_2 .innerB table {
  width: 100%;
  border-top: 1px solid #eee;
}
#about_2 .innerB table th,
#about_2 .innerB table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  border-bottom: 1px solid #eee;
  padding: 12px 10px;
}
@media all and (max-width: 639px) {
  #about_2 .innerB table th,
  #about_2 .innerB table td {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #about_2 .innerB table th {
    background: rgba(238, 238, 238, 0.3);
  }
}
#about_2 .bottom {
  max-width: 1088px;
  width: 90%;
  margin: 70px auto 0;
  background: #fffaf2;
  border-radius: 20px;
  padding: 50px 70px;
  position: relative;
}
@media all and (max-width: 639px) {
  #about_2 .bottom {
    margin-top: 40px;
    padding: 50px 40px;
  }
}
#about_2 .bottom .col-2 {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #about_2 .bottom .col-2 {
    display: block;
  }
}
#about_2 .bottom .col-2 .col-2_item {
  width: 48%;
}
@media all and (max-width: 639px) {
  #about_2 .bottom .col-2 .col-2_item {
    width: 100%;
  }
}
#about_2 .bottom .col-2 .col-2_item:nth-child(even) {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #about_2 .bottom .col-2 .col-2_item:nth-child(even) {
    margin-top: 40px;
  }
}
#about_2 .bottom .col-2 .col-2_item .bottom_read {
  position: relative;
}
#about_2 .bottom .col-2 .col-2_item .bottom_read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #d8d8d8;
  margin: auto;
  top: 0;
  bottom: 0;
}
#about_2 .bottom .col-2 .col-2_item .bottom_read span {
  display: table;
  background: #fffaf2;
  position: relative;
  padding-left: 28px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #333d37;
  font-weight: 500;
  padding-right: 10px;
}
#about_2 .bottom .col-2 .col-2_item .bottom_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/item_read_icon_b.svg);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#about_2 .bottom .col-2 .col-2_item .bottom_text {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 5px;
}
#about_2 .bottom .tori {
  display: block;
  position: absolute;
  width: 120px;
  right: -30px;
  bottom: -20px;
}
@media all and (max-width: 639px) {
  #about_2 .bottom .tori {
    bottom: -30px;
  }
}

#about_3 {
  padding-bottom: 50px;
}
@media all and (max-width: 639px) {
  #about_3 {
    margin-top: 50px;
  }
}
#about_3 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #about_3 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#about_3 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #about_3 .read span {
    margin-bottom: 10px;
  }
}
#about_3 .about_3_item {
  max-width: 986px;
  width: 100%;
  margin: 50px auto 0;
}
#about_3 .about_3_item_read {
  background: #fffaf2;
  padding: 7px 15px;
  border-radius: 5px;
}
#about_3 .about_3_item_read span {
  display: table;
  background: #fffaf2;
  position: relative;
  padding-left: 28px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #333d37;
  font-weight: 500;
  padding-right: 10px;
}
#about_3 .about_3_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/item_read_icon_y.svg);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#about_3 .about_3_item_text {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 20px;
  line-height: 2em;
}
#about_3 .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #about_3 .list {
    display: block;
  }
}
#about_3 .list li {
  width: 48%;
}
@media all and (max-width: 639px) {
  #about_3 .list li {
    width: 100%;
    margin-bottom: 10px;
  }
}
#about_3 .list li:nth-child(even) {
  margin-left: auto;
}
#about_3 .list li:nth-child(n + 3) {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #about_3 .list li:nth-child(n + 3) {
    margin-top: 0;
  }
}
#about_3 .list li a {
  display: block;
  position: relative;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  padding: 15px 10px;
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  transition: 0.4s;
}
@media all and (max-width: 639px) {
  #about_3 .list li a {
    padding-right: 50px;
  }
}
#about_3 .list li a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 18px;
  height: 18px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/link_icon_b.svg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#about_3 .list li a:hover {
  background: #fffaf2;
  transition: 0.4s;
}
#about_3 .list li .sanshou {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333d37;
  text-align: right;
  margin-top: 10px;
}

/*--------------------------------------------------
利用者様・ご家族の方へ(service.php)
----------------------------------------------------*/
#service_1 {
  position: relative;
  padding-top: 60px;
}
#service_1 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #service_1 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#service_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #service_1 .read span {
    margin-bottom: 10px;
  }
}
#service_1 .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
  line-height: 2em;
}
@media all and (max-width: 639px) {
  #service_1 .main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
#service_1 .service_1_item {
  margin-top: 60px;
}
#service_1 .service_1_item .service_1_item_read {
  background: #fffaf2;
  padding: 7px 15px;
  border-radius: 5px;
}
#service_1 .service_1_item .service_1_item_read span {
  display: table;
  background: #fffaf2;
  position: relative;
  padding-left: 28px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #333d37;
  font-weight: 500;
  padding-right: 10px;
}
#service_1 .service_1_item .service_1_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/item_read_icon_y.svg);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#service_1 .service_1_item .list-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
#service_1 .service_1_item .list-1 li {
  width: 23.5%;
  margin-right: 2%;
}
#service_1 .service_1_item .list-1.type3column li {
  width: 31.3%;
  margin-right: 2%;
}
@media all and (max-width: 639px) {
  #service_1 .service_1_item .list-1 li {
    width: 50%;
    margin-right: 0;
    margin-bottom: 50px;
  }
  #service_1 .service_1_item .list-1.type3column li {
    width: 100%;
    margin-right: 0;
  }
}
#service_1 .service_1_item .list-1 li:nth-child(3n),
#service_1 .service_1_item .list-1 li:last-child {
  margin-right: 0;
}
#service_1 .service_1_item .list-1 li:nth-child(n + 4) {
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #service_1 .service_1_item .list-1 li:nth-child(n + 4) {
    margin-top: 0;
  }
}
#service_1 .service_1_item .list-1 li img {
  display: block;
  margin: 0 auto 15px;
  width: 40%;
}
#service_1 .service_1_item .list-1 li .service_1_item_text {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #service_1 .service_1_item .list-1 li .service_1_item_text {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
  }
}
#service_1 .service_1_item .list-1 li .service_1_item_text span {
  display: block;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
}
#service_1 .service_1_item .list-1 li .service_1_item_text span.mini {
  display: block;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  #service_1 .service_1_item .list-1 li .service_1_item_text span {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
  }
}
#service_1 .service_1_item .service_1_item_text_2 {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 20px;
}
#service_1 .service_1_item .service_1_item_text_2 span.iryou {
  color: #0093d2;
}
#service_1 .service_1_item .service_1_item_text_2 span.kaigo {
  color: #0071b9;
}
#service_1 .service_1_item .service_1_item_text_2 span.jiyu {
  color: #46aabf;
}
#service_1 .service_1_item_flow {
  display: block;
  max-width: 681px;
  width: 100%;
  margin: 60px auto 0;
}

@media all and (max-width: 639px) {
  #service_2 {
    margin-top: 50px;
  }
}
#service_2 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #service_2 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#service_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #service_2 .read span {
    margin-bottom: 10px;
  }
}
#service_2 .price-section {
  max-width: 1060px;
  margin: 60px auto 0;
}
@media all and (max-width: 639px) {
  #service_2 .price-section {
    margin-top: 20px;
  }
}
#service_2 .price-section .price-tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  gap: 10px;
}
#service_2 .price-section .price-tab-menu li {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  background: #ffffff;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-menu li {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
#service_2 .price-section .price-tab-menu li.kaigo {
  border: 1px solid #0071b9;
  color: #0071b9;
}
#service_2 .price-section .price-tab-menu li.kaigo.active {
  background-color: #0071b9;
  color: #fff;
}
#service_2 .price-section .price-tab-menu li.iryou {
  border: 1px solid #0093d2;
  color: #0093d2;
}
#service_2 .price-section .price-tab-menu li.iryou.active {
  background-color: #0093d2;
  color: #fff;
}
#service_2 .price-section .price-tab-menu li.jippi {
  border: 1px solid #46aabf;
  color: #46aabf;
}
#service_2 .price-section .price-tab-menu li.jippi.active {
  background-color: #46aabf;
  color: #fff;
}
#service_2 .price-section .price-tab-menu li:hover {
  background-color: rgba(0, 115, 187, 0.05);
}
#service_2 .price-section .price-tab-container {
  background-color: #fffdfa;
  padding: 40px 60px;
  border-radius: 10px;
}
#service_2 .price-section .price-tab-container .price-content {
  display: none;
}
#service_2 .price-section .price-tab-container .price-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
#service_2 .price-section .price-tab-container .price-content .price-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 33px;
  font-size: 3.3rem;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-title {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 400;
  }
}
#service_2 .price-section .price-tab-container .price-content .price-title.kaigo {
  color: #0071b9;
}
#service_2 .price-section .price-tab-container .price-content .price-title.iryou {
  color: #0093d2;
}
#service_2 .price-section .price-tab-container .price-content .price-title.jippi {
  color: #46aabf;
}
#service_2 .price-section .price-tab-container .price-content .price-item {
  background: #fff;
  padding: 25px 45px;
  margin-bottom: 20px;
  border-radius: 4px;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-item {
    padding: 0;
    background: none;
  }
}
#service_2 .price-section .price-tab-container .price-content .price-item .price-subtitle {
  margin: 0;
}
#service_2 .price-section .price-tab-container .price-content .price-item .price-subtitle span {
  display: table;
  position: relative;
  padding-left: 28px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-item .price-subtitle span {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#service_2 .price-section .price-tab-container .price-content .price-item .price-subtitle span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/item_read_icon_b.svg);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-item .price-table-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    border: 1px solid #e1edff;
  }
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-item .price-table-wrapper::before {
    content: "← 横スクロールできます →";
    display: block;
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-bottom: 5px;
  }
}
#service_2 .price-section .price-tab-container .price-content .price-item .price-table {
  width: 100%;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-item .price-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    white-space: nowrap;
  }
}
#service_2 .price-section .price-tab-container .price-content .price-item .price-table th,
#service_2 .price-section .price-tab-container .price-content .price-item .price-table td {
  background: none;
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333d37;
  padding: 13px 10px;
}
@media all and (max-width: 639px) {
  #service_2 .price-section .price-tab-container .price-content .price-item .price-table th,
  #service_2 .price-section .price-tab-container .price-content .price-item .price-table td {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 400;
  }
}
#service_2 .price-section .price-tab-container .price-content .price-item .price-table th {
  background: #fffaf2;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 600px) {
  #service_2 .price-section .price-tab-menu {
    flex-direction: column;
    gap: 5px;
  }
  #service_2 .price-section .price-tab-menu li {
    padding: 10px;
  }
  #service_2 .price-section .price-tab-container {
    padding: 30px 15px;
  }
}

/*--------------------------------------------------
医療関係者の方へ(medical.php)
----------------------------------------------------*/
#medical_1 {
  position: relative;
  padding-top: 60px;
}
#medical_1 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #medical_1 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#medical_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #medical_1 .read span {
    margin-bottom: 10px;
  }
}
#medical_1 table {
  margin: 50px auto 0;
  max-width: 568px;
  width: 100%;
  border-top: 1px solid #d8d8d8;
}
#medical_1 table th,
#medical_1 table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 20px;
  background: rgba(245, 247, 250, 0.3);
}
#medical_1 table tr:nth-child(even) th,
#medical_1 table tr:nth-child(even) td {
  background: #fffaf2;
}
#medical_1 a {
  display: block;
  margin: 50px auto 0;
  background: #0093d2;
  border-radius: 100px;
  max-width: 400px;
  width: 80%;
  padding: 10px 0;
}
#medical_1 a span {
  display: table;
  margin: auto;
  position: relative;
  color: #fff;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  padding-right: 30px;
}
#medical_1 a span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

#medical_2 {
  padding-bottom: 60px;
}
#medical_2 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #medical_2 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#medical_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #medical_2 .read span {
    margin-bottom: 10px;
  }
}
#medical_2 .main {
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 30px;
}
#medical_2 ul {
  margin-top: 60px;
}
#medical_2 ul li {
  max-width: 992px;
  width: 85%;
}
@media all and (max-width: 639px) {
  #medical_2 ul li {
    width: 100%;
  }
}
#medical_2 ul li:nth-child(even) {
  margin-left: auto;
}
#medical_2 ul li:nth-child(n + 2) {
  margin-top: 80px;
}
#medical_2 ul li img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#medical_2 ul li .medical_2_item_read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 20px;
}
#medical_2 ul li .medical_2_item_text {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 15px;
}

/*--------------------------------------------------
採用情報(recruit.php)
----------------------------------------------------*/
#recruit_1 {
  position: relative;
  padding-top: 60px;
}
#recruit_1 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #recruit_1 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#recruit_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #recruit_1 .read span {
    margin-bottom: 10px;
  }
}
#recruit_1 .recruit_1_sub_read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #0071b9;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
#recruit_1 .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
  line-height: 2em;
}
@media all and (max-width: 639px) {
  #recruit_1 .main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
#recruit_1 .video {
  max-width: 600px;
  width: 100%;
  margin: 60px auto 0;
}
#recruit_1 .video video {
  display: block;
  width: 100%;
}

#recruit_2 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #recruit_2 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#recruit_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #recruit_2 .read span {
    margin-bottom: 10px;
  }
}
#recruit_2 table {
  max-width: 980px;
  width: 100%;
  margin: 50px auto 0;
  border-top: 1px solid #d8d8d8;
}
#recruit_2 table th,
#recruit_2 table td {
  background: none;
  border: none;
  border-bottom: 1px dashed #d8d8d8;
  text-align: left;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  padding: 20px;
  vertical-align: text-top;
}
@media all and (max-width: 639px) {
  #recruit_2 table th,
  #recruit_2 table td {
    display: block;
  }
}
#recruit_2 table th {
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  #recruit_2 table th {
    background: rgba(238, 238, 238, 0.5);
  }
}
#recruit_2 table tr:last-child th,
#recruit_2 table tr:last-child td {
  border-bottom: 1px solid #d8d8d8;
}

#recruit_3 {
  padding-bottom: 60px;
}
#recruit_3 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #recruit_3 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#recruit_3 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #recruit_3 .read span {
    margin-bottom: 10px;
  }
}
#recruit_3 .recruit_3_item {
  margin-top: 60px;
}
#recruit_3 .recruit_3_item.sec {
  margin-top: 120px;
}
#recruit_3 .recruit_3_read {
  position: relative;
}
#recruit_3 .recruit_3_read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #d8d8d8;
  margin: auto;
  top: 0;
  bottom: 0;
}
#recruit_3 .recruit_3_read span {
  display: table;
  background: #fff;
  position: relative;
  padding-left: 28px;
  font-size: 22px;
  font-family: "Yusei Magic", sans-serif;
  color: #333d37;
  font-weight: 500;
  padding-right: 10px;
}
#recruit_3 .recruit_3_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/item_read_icon_b.svg);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#recruit_3 .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #recruit_3 .inner {
    display: block;
  }
}
#recruit_3 .inner .in_photo {
  width: 26%;
}
@media all and (max-width: 639px) {
  #recruit_3 .inner .in_photo {
    width: 90%;
    margin: auto;
  }
}
#recruit_3 .inner .in_photo .staff_photo {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#recruit_3 .inner .in_photo .in_photo_cmp {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #recruit_3 .inner .in_photo .in_photo_cmp {
    text-align: center;
  }
}
#recruit_3 .inner .in_photo .bike {
  display: block;
  width: 80%;
  border-radius: 10px;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #recruit_3 .inner .in_photo .bike {
    margin: auto;
  }
}
#recruit_3 .inner .in_text {
  width: 68%;
  margin-left: auto;
  padding-top: 60px;
}
@media all and (max-width: 639px) {
  #recruit_3 .inner .in_text {
    width: 100%;
  }
}
#recruit_3 .inner .in_text .list li {
  width: 80%;
  background: #f5f7fa;
  border-radius: 10px;
  padding: 30px 60px;
  position: relative;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #recruit_3 .inner .in_text .list li {
    width: 100%;
    padding: 30px 20px;
  }
}
#recruit_3 .inner .in_text .list li:nth-child(even) {
  margin-left: auto;
}
#recruit_3 .inner .in_text .list li:nth-child(n + 2) {
  margin-top: 40px;
}
#recruit_3 .inner .in_text .list li:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 35px;
  height: 46px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27763/memo_pin.svg);
  top: -20px;
  left: -20px;
}
#recruit_3 .inner .in_text .list li .recruit_3_temo_read {
  font-family: "Yusei Magic", sans-serif;
  font-size: 23px;
  color: #0071b9;
  font-weight: 500;
}
#recruit_3 .inner .in_text .list li .recruit_3_temo_text {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-weight: 400;
  color: #333d37;
  margin-top: 15px;
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
#contact_1 .read {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  font-weight: 500;
  color: #333d37;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #contact_1 .read {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: 500;
  }
}
#contact_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0093d2;
}
@media all and (max-width: 639px) {
  #contact_1 .read span {
    margin-bottom: 10px;
  }
}
#contact_1 .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 40px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
  line-height: 2em;
}
@media all and (max-width: 639px) {
  #contact_1 .main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
#contact_1 .price-section {
  width: 100%;
  margin: 60px auto 0;
}
#contact_1 .price-section .price-tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  gap: 10px;
}
#contact_1 .price-section .price-tab-menu li {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  background: #ffffff;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  border: 1px solid #0071b9;
  color: #0071b9;
}
#contact_1 .price-section .price-tab-menu li.active {
  background-color: #0071b9;
  color: #fff;
}
#contact_1 .price-section .price-tab-menu li:hover {
  background-color: rgba(0, 115, 187, 0.05);
}
#contact_1 .price-section .price-tab-container {
  background-color: #fffdfa;
  padding: 60px 60px;
  border-radius: 10px;
  margin-top: 60px;
}
#contact_1 .price-section .price-tab-container .price-content {
  display: none;
}
#contact_1 .price-section .price-tab-container .price-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
#contact_1 .price-section .price-tab-container .price-content .tel_item {
  margin-top: 50px;
}
#contact_1 .price-section .price-tab-container .price-content .tel_item .tel_item_read {
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
  color: #0093d2;
}
#contact_1 .price-section .price-tab-container .price-content .tel_item a {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 39px;
  font-size: 3.9rem;
  font-weight: 500;
  color: #0093d2;
  text-align: center;
}
#contact_1 .price-section .price-tab-container .price-content .price-title {
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 400;
  color: #0071b9;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #contact_1 .price-section .price-tab-container .price-content .price-title {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
  }
}
#contact_1 .price-section .price-tab-container .price-content .fotm_ue_main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333d37;
  margin-top: 20px;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
#contact_1 .price-section .price-tab-container .price-content .price-item {
  margin-top: 60px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 600px) {
  #contact_1 .price-section .price-tab-menu {
    flex-direction: column;
    gap: 5px;
  }
  #contact_1 .price-section .price-tab-menu li {
    padding: 10px;
  }
  #contact_1 .price-section .price-tab-container {
    padding: 30px 15px;
  }
}
#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 #0093d2;
  border-bottom: 1px solid #0093d2;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #0093d2;
  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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}
#contact_1 .accbox label:hover .more {
  background: #0093d2;
  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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: 400;
  color: #333d37;
  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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-weight: 400;
  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: 160px;
  padding-bottom: 60px;
}
#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: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 25px;
  font-size: 2.5rem;
  color: #0093d2;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  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: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  color: #0093d2;
  opacity: 0.5;
  position: relative;
}
#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  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: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: 400;
  color: #333d37;
  display: block;
  margin-top: 4px;
  line-height: 1.8em;
}
#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: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  color: #0093d2;
}
#topics_1 .entry .title {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #333d37;
}
#topics_1 .entry .main_cont {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 30px;
  color: #333d37;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
} /*# sourceMappingURL=style.css.map */

/* サムネイル型・ブログCMSへ変更 */

.news-box {
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
}

.news-box.type1 {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px dashed #223351;
  -webkit-box-shadow: 10px 10px rgba(34, 51, 81, 0.3);
  box-shadow: 10px 10px rgba(34, 51, 81, 0.3);
}

@media all and (max-width: 639px) {
  .news-box.type1 {
    padding: 20px 3px;
  }
}

@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -10px auto 25px;
    width: 90%;
    padding: 10px;
  }
}

.news-title {
  text-align: center;
  font-weight: 600;
  border-right: 1px dashed #223351;
  padding: 5px 20px;
  color: #111;
}

.news-title span {
  font-size: 2.5rem;
  display: block;
  font-family: "Abel", sans-serif;
  font-weight: 600;
  margin-bottom: -5px;
  color: #223351;
}

@media all and (max-width: 639px) {
  .news-title {
    padding: 5px 10px;
    width: 100%;
    font-size: 1.2rem;
    border-right: 0;
  }

  .news-title span {
    font-size: 2rem;
  }
}

.news-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
  margin-left: 20px;
}

@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}
.post_list {
  position: relative;
  margin: 0 0 16px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.post_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100% !important;
  position: relative;
  padding: 8px;
  background: #ffffff;
  border-top: 1px solid #d8d8d8;
}

.post_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.post_list .blog_bx .blog_bx_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post_list .blog_bx .blog_bx_flex div {
  width: calc(100% - 120px);
  padding: 20px 10px;
}

.post_list .blog_bx:hover {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  background: #f9f9f9;
}

.post_list .blog_bx figcaption {
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  margin-bottom: 0px;
  -webkit-box-shadow: rgba(34, 51, 81, 0.1) 0 0 1px 1px;
  box-shadow: rgba(34, 51, 81, 0.1) 0 0 1px 1px;
}

.post_list .blog_bx * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.post_list .blog_bx img {
  vertical-align: middle;
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.post_list .blog_bx:hover img {
  opacity: 1 !important;
}
.post_list .blog_bx .ttm {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #475950;
  margin-bottom: 5px;
}

@media all and (max-width: 639px) {
  .post_list .blog_bx .ttm {
    font-size: 0.9rem;
  }
}

.post_list .blog_bx .ctg {
  float: none;
  font-weight: 600;
  border-bottom: 1px solid #223351;
  color: #223351;
  text-align: left;
  font-size: 1.2rem;
  width: 130px;
  padding: 0 0 3px 0;
  margin: 0 auto 8px 0;
  letter-spacing: 0.02rem;
}

@media all and (max-width: 639px) {
  .post_list .blog_bx .ctg {
    font-size: 1rem;
    width: 130px;
    line-height: 1.5;
    padding: 0 0 5px 0;
    border: none;
    border-bottom: 1px solid #223351;
  }
}

.post_list .blog_bx .blog_ttl {
  clear: both;
  color: #333d37;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
}

@media all and (max-width: 639px) {
  .post_list .blog_bx .blog_ttl {
    font-size: 1.1rem;
    letter-spacing: 0.02rem;
    line-height: 1.2;
  }
}

.post_list.list .ttl {
  display: none;
}
.scrollbar {
  min-height: 100px;
  max-height: 180px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.scrollbar.news {
  max-height: 400px;
  padding: 10px;
}

.scrollbar.policy-box {
  max-height: 300px;
}

.scrollbar::-webkit-scrollbar {
  overflow: hidden;
  width: 1px;
  background: #fafafa;
}

.scrollbar::-webkit-scrollbar:horizontal {
  height: 1px;
}

.scrollbar::-webkit-scrollbar-button {
  display: none;
}

.scrollbar::-webkit-scrollbar-piece {
  background: #eee;
}

.scrollbar::-webkit-scrollbar-piece:start {
  background: #eee;
}

.scrollbar::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-corner {
  background: #333;
}
