@charset "UTF-8";
/* =========================================================
Reset CSS
========================================================= */
/* Box sizing */
@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");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin / Padding reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

/* Base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
  background: #fff;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* Image */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* Link */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* List */
ul,
ol {
  list-style: none;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* iframe */
iframe {
  border: none;
}

/* Utility */
main {
  display: block;
}

section {
  position: relative;
}

address {
  font-style: normal;
}

/* SP tap highlight */
a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* selection */
::selection {
  background: #ffe8a3;
  color: #333;
}

/* @import "_vars.scss"; */
/*サイトのメインカラー*/
/* =====================================================
  Freelia override variables
===================================================== */
/* =====================================================
演出
===================================================== */
/* ふわっと表示 */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 少し遅れて表示 */
.js-fade-delay {
  transition-delay: 0.18s;
}

/* ふわふわ動く装飾 */
.float {
  animation: float 4.5s ease-in-out infinite;
}

.float-slow {
  animation: float 6s ease-in-out infinite;
}

.float-reverse {
  animation: floatReverse 5.5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatReverse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}
/**

  @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%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}
.innerB .left,
.innerB .right {
  width: 48%;
}
@media all and (max-width: 639px) {
  .innerB .left,
  .innerB .right {
    width: 100%;
  }
}
.innerB .right {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}
.innerB .left_s {
  width: 30%;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
  }
}
.innerB .right_l {
  width: 66%;
  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 #f8c8d2;
}
@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
-------------------------------------------------*/
/* =====================================================

===================================================== */
/* =====================================================
  Freelia TOP
  画像は common.php の $assets で差し替え
===================================================== */
html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0 auto;
  color: #5b514b;
  background: #fffdf8;
  line-height: 1.9;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
}

#body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.inner {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .inner {
    width: min(100% - 32px, 1120px);
  }
}

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

.section {
  padding: 78px 0;
}
@media all and (max-width: 639px) {
  .section {
    padding: 52px 0;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 86px 0 34px;
  border-radius: 999px;
  background: #f8c8d2;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(110, 90, 80, 0.16);
}
.btn--yellow {
  background: #f6c84f;
}
.btn--blue {
  background: #6dbfe2;
}
.btn--outline {
  min-width: 156px;
  color: #5b514b;
  background: #fff;
  border: 1px solid rgba(122, 98, 87, 0.18);
  box-shadow: none;
}
.btn--outline::after {
  border: 1px solid rgba(122, 98, 87, 0.18);
  background: #fff;
}
.btn i {
  position: absolute;
  margin: auto;
  top: 19px;
  right: 25px;
  color: #fff;
  z-index: 2;
  font-size: 11px;
}

@media all and (max-width: 639px) {
  .btn {
    font-size: 14px;
  }
}
.sec-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.sec-title span {
  position: relative;
  color: #7a6257;
  font-family: "Quicksand", sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 600;
  padding-left: 29px;
  letter-spacing: 0.06em;
  line-height: 1em;
}
.sec-title span::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 24px;
  height: 34px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28097/title_icon.svg);
  left: 0;
  top: 0;
  bottom: 0;
}
.sec-title h2,
.sec-title h3 {
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 10px;
}
.sec-title--center {
  justify-content: center;
  text-align: center;
}
@media all and (max-width: 639px) {
  .sec-title {
    flex-direction: column;
    gap: 8px;
  }
  .sec-title span {
    display: block;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 28px 0;
  z-index: 9999;
}
.header__inner {
  width: min(1160px, 100% - 54px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__logo {
  width: 190px;
  line-height: 1;
  flex: 0 0 auto;
  position: relative;
  z-index: 30;
}
.header__logo a,
.header__logo img {
  display: block;
}
.header__nav {
  margin-left: auto;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.header__nav ul li:last-child {
  display: none;
}
.header__nav a {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  color: #5b514b;
  transition: color 0.25s ease;
}
.header__nav a:hover {
  color: #ee9dae;
}
.header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  background: #ee9dae;
  box-shadow: 0 10px 22px rgba(238, 157, 174, 0.25);
}
.header__hamburger {
  display: none;
  position: relative;
  z-index: 10000;
}
@media all and (max-width: 821px) {
  .header {
    position: fixed;
    padding: 14px 0;
  }
  .header__inner {
    width: calc(100% - 30px);
    gap: 0;
    justify-content: space-between;
  }
  .header__logo {
    width: 95px;
  }
  .header__hamburger {
    display: flex;
    position: relative;
    z-index: 30;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ee9dae;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: 0.3s;
  }
  .header__hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 25;
    width: min(82vw, 360px);
    height: 100vh;
    margin-left: 0;
    padding: 100px 28px 40px;
    background: #fff;
    box-shadow: -10px 0 30px rgba(122, 98, 87, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav ul {
    display: block;
    min-width: initial;
  }
  .header__nav ul li {
    border-bottom: 1px solid rgba(122, 98, 87, 0.12);
  }
  .header__nav ul li:last-child {
    display: block;
  }
  .header__nav a {
    display: block;
    padding: 18px 0;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
  .header__contact {
    display: none;
  }
}

.mv {
  position: relative;
  min-height: 790px;
  overflow: hidden;
}
.mv .kumo {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  transform: scaleX(-1);
  z-index: 3;
}
.mv__photo {
  position: absolute;
  inset: 0;
}
.mv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 255, 255, 0.26) 65%, rgba(255, 255, 255, 0.04) 100%), radial-gradient(circle at 15% 80%, rgba(255, 243, 191, 0.9), transparent 34%);
}
.mv__overlay img {
  display: block;
  position: absolute;
  bottom: -1px;
  width: 100%;
}
.mv__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 100% - 64px);
  margin: 0 auto;
  padding-top: 235px;
}
.mv__brand {
  margin-bottom: 18px;
  color: #ee9dae;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.mv__copy {
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 47px;
  font-size: 4.7rem;
  font-weight: 500;
  line-height: 1.5;
}
.mv__copy span {
  color: #ee9dae;
  font-size: 115%;
}
.mv__text {
  margin-top: 18px;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
}
.mv__tegaki .hosi {
  display: block;
  width: 55px;
  position: absolute;
  left: -80px;
  top: 40%;
}
.mv__tegaki .kira {
  display: block;
  width: 113px;
  position: absolute;
  left: 30%;
  top: 27%;
}
.mv__buttons {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}
@media all and (max-width: 821px) {
  .mv {
    min-height: 640px;
  }
  .mv__inner {
    padding-top: 130px;
  }
  .mv__brand {
    margin-bottom: 0;
  }
  .mv__copy {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 34px;
    font-size: 3.4rem;
  }
  .mv__rainbow {
    right: -80px;
    width: 410px;
  }
}
@media all and (max-width: 639px) {
  .mv {
    min-height: auto;
    padding-bottom: 80px;
  }
  .mv .mv__photo img {
    object-position: 65% center;
  }
  .mv__overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 255, 255, 0.26) 65%, rgba(255, 255, 255, 0.04) 100%), radial-gradient(circle at 15% 80%, rgba(255, 243, 191, 0.9), transparent 34%);
  }
  .mv__inner {
    width: calc(100% - 32px);
    padding-top: 70px;
  }
  .mv__copy {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }
  .mv__text {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .mv__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .mv .mv__tegaki .kira {
    display: none;
  }
}

.news {
  background: #fff;
  position: relative;
}
.news__niji {
  display: block;
  width: 153px;
  position: absolute;
  top: -90px;
  right: 10%;
}
.news__shabon {
  display: block;
  width: 230px;
  position: absolute;
  top: -30px;
  left: 4%;
}
@media all and (max-width: 639px) {
  .news__shabon {
    width: 170px;
    left: 0;
  }
}
.news__list {
  border-top: 1px solid rgba(122, 98, 87, 0.14);
}
.news__item {
  border-bottom: 1px solid rgba(122, 98, 87, 0.14);
}
.news__item a {
  display: grid;
  grid-template-columns: 130px 100px 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 19px 0;
  transition: background 0.25s ease, padding 0.25s ease;
}
.news__item a:hover {
  padding-left: 16px;
  background: rgba(255, 243, 191, 0.2);
}
.news__item time {
  color: #7a6257;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 24px;
  border-radius: 999px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}
.news__cat--10194 {
  background: #ffe2ea;
  color: #a75d68;
}
.news__cat--10195 {
  background: #dff3fb;
  color: #4f8ca3;
}
.news__title {
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.news__arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(122, 98, 87, 0.5);
  border-right: 2px solid rgba(122, 98, 87, 0.5);
  transform: rotate(45deg);
}
@media all and (max-width: 639px) {
  .news__niji {
    width: 103px;
    top: -30px;
    right: 4%;
  }
  .news__item a {
    grid-template-columns: 1fr 82px 20px;
    gap: 10px;
  }
  .news__item time {
    grid-column: 1/2;
  }
  .news__item .news__cat {
    grid-column: 2/3;
  }
  .news__item .news__title {
    grid-column: 1/3;
  }
  .news__item .news__arrow {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}

.section__more {
  margin-top: 28px;
  text-align: right;
}
@media all and (max-width: 639px) {
  .section__more {
    text-align: center;
  }
}

.message {
  position: relative;
  background: #fff;
}
.message.section {
  padding-top: 40px;
}
.message__single_new {
  width: 96%;
  margin: auto;
  padding: 80px 0;
  background: radial-gradient(circle at 12% 10%, rgba(223, 243, 251, 0.92), transparent 18%), linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  border-radius: 15px;
  position: relative;
}
.message__single_new .message_illust {
  display: block;
  position: absolute;
  width: 125px;
  top: 0;
  right: 10%;
}
.message .inner {
  position: relative;
}
.message .inner .kira {
  display: block;
  width: 113px;
  position: absolute;
  left: -110px;
  top: -50px;
}
.message__shabon {
  display: block;
  width: 230px;
  position: absolute;
  top: -30px;
  right: -4%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .message__shabon {
    top: -70px;
  }
}
.message__box {
  position: relative;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
}
.message__img {
  overflow: hidden;
}
.message__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.message h2 {
  margin-bottom: 24px;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
}
.message .main {
  margin-bottom: 16px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #5b514b;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.message .btn {
  margin-top: 12px;
}
@media all and (max-width: 821px) {
  .message__box {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .message__img {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .message h2 {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    font-size: 2rem;
  }
  .message__box {
    padding: 0;
  }
}
.message__single_new .message_illust {
  width: 85px;
  top: 0;
  right: 0;
  display: none;
}

.service {
  background: #fff;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28097/bg_masu.svg);
  background-size: 9px;
  position: relative;
}
.service .sec-title {
  justify-content: center;
}
.service .service_illust-1 {
  display: block;
  position: absolute;
  width: 200px;
  top: -40px;
  left: 6%;
}
.service .service_illust-2 {
  display: block;
  position: absolute;
  width: 140px;
  bottom: 70px;
  right: 6%;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: 96%;
  margin: 60px auto 0;
}
@media all and (max-width: 821px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 639px) {
  .service .service_illust-1 {
    width: 120px;
  }
  .service .service_illust-2 {
    width: 80px;
    bottom: 20px;
  }
}

.service-card {
  position: relative;
  display: block;
  padding: 48px 52px 34px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card::before {
  content: "☆";
  position: absolute;
  right: 30px;
  top: 34px;
  color: rgba(246, 200, 79, 0.82);
  font-size: 62px;
  font-size: 6.2rem;
  line-height: 1;
  transform: rotate(14deg);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(92, 88, 70, 0.14);
}
.service-card:hover img {
  transform: scale(1.06);
}
.service-card--kids {
  background: #fff9e8;
}
.service-card--link {
  background: #eaf3fc;
}
.service-card__sub {
  color: #f6c84f;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}
.service-card--link .service-card__sub {
  color: #6dbfe2;
}
.service-card h3 {
  margin-bottom: 24px;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 31px;
  font-size: 3.1rem;
  text-align: center;
  font-weight: 600;
}
.service-card figure {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 10px;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.72/1;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card .service-card--main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #5b514b;
  font-weight: 500;
  margin-bottom: 26px;
}
.service-card .btn {
  width: 100%;
}
@media all and (max-width: 639px) {
  .service-card {
    padding: 30px 24px;
  }
  .service-card::before {
    display: none;
  }
  .service-card h3 {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .service-card__sub {
    text-wrap: balance;
    word-break: auto-phrase;
  }
  .service-card .service-card--main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.about {
  background: #fff;
}
.about__single_new {
  width: 96%;
  margin: auto;
  padding: 80px 0;
  background: radial-gradient(circle at 12% 10%, rgba(223, 243, 251, 0.92), transparent 18%), linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  border-radius: 15px;
  position: relative;
}
.about__single_new .message_illust {
  display: block;
  position: absolute;
  width: 125px;
  top: 0;
  right: 10%;
}
.about__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.about .main {
  margin-bottom: 24px;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #5b514b;
}
.about__illust {
  max-width: 422px;
  width: 100%;
}
.about__illust img {
  display: block;
  width: 100%;
}
@media all and (max-width: 821px) {
  .about__box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}
@media all and (max-width: 639px) {
  .about__box {
    padding: 0;
  }
  .about .main {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .about__illust {
    max-width: auto;
    width: 70%;
    margin-top: 30px;
  }
}

.contact-band {
  padding: 0 0 64px;
  background: #dff3fb;
  position: relative;
}
.contact-band__line {
  display: block;
  width: 100%;
  position: absolute;
  top: -1px;
}
.contact-band__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(92, 88, 70, 0.08);
}
@media all and (max-width: 821px) {
  .contact-band__inner {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  align-items: center;
  padding: 30px 34px;
  border-right: 1px solid rgba(122, 98, 87, 0.12);
  transition: background 0.25s ease;
}
.contact-card:last-child {
  border-right: 0;
}
.contact-card:hover {
  background: rgba(255, 243, 191, 0.24);
}
.contact-card .item_sub_name {
  display: block;
  position: relative;
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 110px;
  width: 100%;
  margin-top: 7px;
  line-height: 1.6em;
}
.contact-card .item_sub_name img {
  display: block;
  width: 85px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.contact-card .item_sub_name span {
  display: block;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 13px;
}
.contact-card .item_sub_name strong {
  font-family: "Quicksand", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  color: #ee9dae;
}
@media all and (max-width: 821px) {
  .contact-card {
    border-right: 0;
    border-bottom: 1px solid rgba(122, 98, 87, 0.12);
  }
}

.footer {
  position: relative;
  padding: 46px 0 28px;
  background: #dff3fb;
}
.footer__brand img {
  width: 170px;
  margin-bottom: 18px;
}
.footer__brand p {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 40px;
}
.footer__nav a {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.25s ease;
}
.footer__nav a:hover {
  color: #ee9dae;
}
.footer__copy {
  width: min(1160px, 100% - 48px);
  margin: 34px auto 0;
  color: rgba(91, 81, 75, 0.62);
  font-size: 12px;
  font-size: 1.2rem;
}
@media all and (max-width: 821px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #7a6257;
  background: #fff;
  border: 1px solid rgba(122, 98, 87, 0.14);
  box-shadow: 0 10px 24px rgba(92, 88, 70, 0.12);
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .pagetop {
    right: 14px;
    bottom: 14px;
    min-width: 96px;
    min-height: 38px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*================================================
ルミナスキッズ(kids.php)
==================================================*/
.kidsfv {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.kidsfv__photo {
  position: absolute;
  inset: 0;
}
.kidsfv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.kidsfv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.3) 65%, rgba(255, 255, 255, 0.05) 100%), radial-gradient(circle at 18% 78%, rgba(255, 243, 191, 0.85), transparent 34%);
}
.kidsfv__overlay img {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.kidsfv__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 100% - 64px);
  margin: 0 auto;
  padding-top: 210px;
  padding-bottom: 150px;
}
.kidsfv__cont {
  width: min(560px, 52%);
}
.kidsfv__brand {
  margin-bottom: 14px;
  color: #f6c84f;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.kidsfv__copy {
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 54px;
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.kidsfv__copy span {
  color: #f6c84f;
  font-size: 115%;
}
.kidsfv__text {
  margin-top: 22px;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1;
}
@media all and (max-width: 821px) {
  .kidsfv {
    min-height: 560px;
    z-index: 1;
  }
  .kidsfv__inner {
    width: calc(100% - 40px);
    padding-top: 150px;
    padding-bottom: 110px;
  }
  .kidsfv__cont {
    width: 58%;
  }
  .kidsfv__copy {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .kidsfv__text {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .kidsfv {
    min-height: auto;
    padding-bottom: 70px;
  }
  .kidsfv__photo {
    position: relative;
    height: 330px;
    margin-top: 0;
  }
  .kidsfv__photo img {
    object-position: 62% center;
  }
  .kidsfv__overlay {
    background: none;
  }
  .kidsfv__overlay img {
    height: 54px;
    object-fit: cover;
  }
  .kidsfv__inner {
    width: calc(100% - 32px);
    padding-top: 36px;
    padding-bottom: 0;
  }
  .kidsfv__cont {
    width: 100%;
  }
  .kidsfv__brand {
    margin-bottom: 8px;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .kidsfv__copy {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.5;
  }
  .kidsfv__text {
    margin-top: 16px;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.kidsvalues {
  background: #fff;
}
.kidsvalues__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}
.kidsvalues__card {
  position: relative;
}
.kidsvalues__card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: rgba(122, 98, 87, 0.15);
}
.kidsvalues__itemread {
  position: relative;
  padding-left: 81px;
  color: #7a6257;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6em;
}
.kidsvalues__itemread img {
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  width: 70px;
}
.kidsvalues__photo {
  display: block;
  margin-top: 20px;
  border-radius: 10px;
}
.kidsvalues__itemtext {
  margin-top: 15px;
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media all and (max-width: 821px) {
  .kidsvalues__list {
    display: block;
  }
  .kidsvalues__card {
    margin-bottom: 60px;
  }
}

.kids-program {
  padding: 90px 0;
  background: #fff;
}
.kids-program__single_new {
  width: 96%;
  margin: auto;
  padding: 80px 0;
  background: #fefaf0;
  border-radius: 15px;
  position: relative;
}
.kids-program__illust {
  display: block;
  position: absolute;
  width: 80px;
  top: 80px;
  right: 5%;
}
.kids-program__illust-2 {
  display: block;
  position: absolute;
  width: 130px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 5%;
}
.kids-program__main {
  text-align: center;
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.kids-program__inner {
  width: min(1160px, 100% - 40px);
  margin: 0 auto;
}
.kids-program__map {
  position: relative;
  padding-bottom: 180px;
  margin-top: 60px;
}
.kids-program__center {
  position: relative;
  margin: auto;
  width: 45%;
  z-index: 2;
}
.kids-program__center img {
  width: 100%;
  display: block;
}
.kids-program__item {
  position: absolute;
  width: 25%;
  padding: 24px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(139, 111, 78, 0.08);
  background: #fff;
}
.kids-program__item h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.kids-program__item p {
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.kids-program__item--life {
  left: 0;
  top: 0;
}
.kids-program__item--life h3 {
  color: #58a96d;
}
.kids-program__item--sense {
  right: 0;
  top: 0;
}
.kids-program__item--sense h3 {
  color: #e59465;
}
.kids-program__item--action {
  left: 0;
  top: 230px;
}
.kids-program__item--action h3 {
  color: #5ca5c9;
}
.kids-program__item--communication {
  right: 0;
  top: 230px;
}
.kids-program__item--communication h3 {
  color: #9a79cb;
}
.kids-program__item--social {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.kids-program__item--social h3 {
  color: #d5a93d;
}
@media all and (max-width: 821px) {
  .kids-program {
    padding: 0 0;
  }
  .kids-program .kids-program__illust {
    width: 50px;
    top: 0;
  }
  .kids-program .kids-program__main {
    text-wrap: balance;
    word-break: auto-phrase;
  }
  .kids-program__inner {
    display: block;
    width: calc(100% - 30px);
    padding: 0;
    border-radius: 28px;
  }
  .kids-program__map {
    margin-top: 40px;
    min-height: auto;
    display: grid;
    gap: 16px;
    padding-bottom: 0;
  }
  .kids-program__center {
    position: static;
    transform: none;
    margin: 0 auto 20px;
    width: 70%;
  }
  .kids-program__item {
    position: static;
    width: 100%;
    transform: none;
  }
}

.daily-schedule {
  padding: 100px 0;
  background: #fff;
}
.daily-schedule__inner {
  width: min(1000px, 100% - 40px);
  margin: 0 auto;
}
.daily-schedule__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}
.daily-schedule__tab {
  min-width: 220px;
  height: 62px;
  border-radius: 999px;
  border: 2px solid rgba(122, 98, 87, 0.1);
  background: #fff;
  color: #7a6257;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  transition: 0.3s;
}
.daily-schedule__tab.is-active {
  background: #fff3bf;
  border-color: #fff3bf;
}
.daily-schedule__body {
  margin-top: 40px;
  padding: 0 50px;
  border-radius: 20px;
  background: #fff;
}
.daily-schedule__panel {
  display: none;
}
.daily-schedule__panel.is-active {
  display: block;
}
.daily-schedule__list {
  display: grid;
}
.daily-schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding-top: 30px;
}
.daily-schedule__item::before {
  content: "";
  position: absolute;
  left: 108px;
  bottom: 0;
  height: 100%;
  width: 2px;
  background: rgba(122, 98, 87, 0.12);
}
.daily-schedule__item:last-child::before {
  height: 40%;
  bottom: auto;
  top: 0;
}
.daily-schedule__time {
  position: relative;
  color: #7a6257;
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
}
.daily-schedule__time::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff3bf;
  z-index: 2;
}
.daily-schedule__time.time_ja {
  font-size: 1.7rem;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
}
.daily-schedule__content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
}
.daily-schedule__content img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.daily-schedule__text h5 {
  margin-bottom: 10px;
  color: #7a6257;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
.daily-schedule__text p {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #5b514b;
  line-height: 2;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .daily-schedule {
    padding: 70px 0;
  }
  .daily-schedule__inner {
    width: calc(100% - 30px);
  }
  .daily-schedule__tabs {
    flex-direction: column;
  }
  .daily-schedule__tab {
    width: 100%;
    min-width: initial;
    height: 56px;
  }
  .daily-schedule__body {
    padding: 30px 0;
    border-radius: 20px;
  }
  .daily-schedule__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .daily-schedule__item::before {
    display: none;
  }
  .daily-schedule__time {
    padding-left: 20px;
  }
  .daily-schedule__time::after {
    left: 0;
    right: auto;
  }
  .daily-schedule__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .daily-schedule__content img {
    width: 100%;
    height: auto;
  }
  .daily-schedule__text h5 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 0;
  }
}

/*================================================
ルミナスリンク(link.php)
==================================================*/
.linkfv {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.linkfv__photo {
  position: absolute;
  inset: 0;
}
.linkfv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.linkfv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.3) 65%, rgba(255, 255, 255, 0.05) 100%), radial-gradient(circle at 18% 78%, rgba(223, 243, 251, 0.82), transparent 34%);
}
.linkfv__overlay img {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.linkfv__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 100% - 64px);
  margin: 0 auto;
  padding-top: 210px;
  padding-bottom: 150px;
}
.linkfv__cont {
  width: min(560px, 52%);
}
.linkfv__brand {
  margin-bottom: 14px;
  color: #6dbfe2;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.linkfv__copy {
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 54px;
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.linkfv__copy span {
  color: #6dbfe2;
  font-size: 115%;
}
.linkfv__text {
  margin-top: 22px;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1;
}
@media all and (max-width: 821px) {
  .linkfv {
    min-height: 560px;
  }
  .linkfv__inner {
    width: calc(100% - 40px);
    padding-top: 150px;
    padding-bottom: 110px;
  }
  .linkfv__cont {
    width: 58%;
  }
  .linkfv__copy {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .linkfv__text {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .linkfv {
    min-height: auto;
    padding-bottom: 70px;
  }
  .linkfv__photo {
    position: relative;
    height: 330px;
    margin-top: 70px;
  }
  .linkfv__photo img {
    object-position: 68% center;
  }
  .linkfv__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.34) 55%, rgba(255, 255, 255, 0) 100%);
  }
  .linkfv__overlay img {
    height: 54px;
    object-fit: cover;
  }
  .linkfv__inner {
    width: calc(100% - 32px);
    padding-top: 36px;
    padding-bottom: 0;
  }
  .linkfv__cont {
    width: 100%;
  }
  .linkfv__brand {
    margin-bottom: 8px;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .linkfv__copy {
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.5;
  }
  .linkfv__text {
    margin-top: 16px;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.link-concept {
  padding: 100px 0;
  background: #fff;
}
.link-concept__inner {
  width: min(1160px, 100% - 40px);
  margin: 0 auto;
}
.link-concept__concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  padding: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(223, 243, 251, 0.35), rgba(255, 226, 234, 0.25));
}
.link-concept__image img {
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(122, 98, 87, 0.08);
}
.link-concept__content .link-concept_illust {
  display: block;
}
.link-concept__content p {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.link-concept__content p:not(:first-child) {
  margin-top: 10px;
}
.link-concept__support {
  margin-top: 120px;
  padding-top: 120px;
  position: relative;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28097/tensen.svg);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 45px;
}
.link-concept__support-box {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.link-concept__support-image img {
  border-radius: 30px;
}
.link-concept__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.link-concept__tags li {
  padding: 4px 28px;
  border-radius: 999px;
  border: 1px solid #6dbfe2;
  color: #6dbfe2;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.7rem;
}
.link-concept__tags li i {
  font-size: 80%;
}
.link-concept__support-content p {
  line-height: 2.2;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.link-concept__support-content p:not(:first-child) {
  margin-top: 22px;
}
.link-concept .sec-title h3 {
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .link-concept {
    padding: 70px 0;
  }
  .link-concept__inner {
    width: calc(100% - 30px);
  }
  .link-concept__concept, .link-concept__support-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
    border-radius: 28px;
  }
  .link-concept__concept {
    padding: 30px 20px;
  }
  .link-concept__support {
    margin-top: 80px;
  }
  .link-concept__image img, .link-concept__support-image img {
    border-radius: 22px;
  }
}

.link_suport {
  background: #fff;
  padding-bottom: 150px;
}
.link_suport .inner {
  padding-top: 120px;
  position: relative;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28097/tensen.svg);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 45px;
}
.link_suport .kidsvalues__itemread img {
  top: -24px;
}
@media all and (max-width: 639px) {
  .link_suport {
    padding-bottom: 0;
  }
}

/*================================================
会社概要(about.php)
==================================================*/
.about {
  background: #fff;
}
.about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}
.about__card {
  position: relative;
  /*&:not(:last-child)::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	right: -30px;
  	transform: translateY(-50%);
  	width: 1px;
  	height: 100%;
  	background: rgba($brown, 0.15);
  }*/
}
.about__text_eri {
  position: relative;
}
.about__text_eri:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 185px;
  height: 188px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28097/about_subread_bg.svg);
  margin: auto;
  left: 0;
  right: 0;
  top: -80px;
  z-index: 1;
  opacity: 0.6;
}
.about__subread {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1em;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}
.about__subread span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-size: 2rem;
}
.about__itemread {
  position: relative;
  color: #7a6257;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6em;
  text-align: center;
  z-index: 2;
  position: relative;
}
.about__photo {
  display: block;
  margin-top: 20px;
  border-radius: 10px;
  z-index: 2;
  position: relative;
  width: 35%;
  margin: 20px auto;
}
.about__itemtext {
  margin-top: 15px;
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7em;
  z-index: 2;
  position: relative;
}
.about__profile {
  margin-top: 160px;
}
.about__profile .innerB {
  margin-top: 60px;
}
.about__profile table {
  width: 100%;
  border-top: 1px solid #eee;
  margin-top: 20px;
}
.about__profile table th,
.about__profile table td {
  background: none;
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #eee;
  padding: 20px;
}
.about__profile table th {
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  .about__list {
    display: block;
  }
  .about__card {
    margin-bottom: 40px;
  }
  .about__profile {
    padding-bottom: 0;
  }
  .about__profile table th,
  .about__profile table td {
    display: block;
  }
  .about__profile table th {
    background: rgba(238, 238, 238, 0.5);
  }
}

.staff__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
.staff__list li {
  width: 23.5%;
  margin-right: 2%;
}
@media all and (max-width: 821px) {
  .staff__list li {
    width: 48%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.staff__list li:nth-child(4n) {
  margin-right: 0;
}
.staff__list li:nth-child(n+5) {
  margin-top: 60px;
}
@media all and (max-width: 821px) {
  .staff__list li:nth-child(n+5) {
    margin-top: 0;
  }
}
@media all and (max-width: 821px) {
  .staff__list li:nth-child(even) {
    margin-left: auto;
  }
}
.staff__list li img {
  width: 100%;
  aspect-ratio: 350/350;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.staff__name {
  text-align: center;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #7a6257;
  margin-top: 6px;
}
.staff__info {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #5b514b;
  line-height: 1.6em;
}
.staff__zayu {
  background: #fff6e9;
  margin-top: 30px;
  padding: 20px 19px 10px;
  position: relative;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #5b514b;
}
.staff__zayu span {
  display: block;
  position: absolute;
  background: #f6c84f;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 20px;
  border-radius: 100px;
  top: -9px;
}

.sisetu {
  background: #fff;
}
.sisetu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.sisetu__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(122, 98, 87, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sisetu__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(122, 98, 87, 0.12);
}
.sisetu__item:hover img {
  transform: scale(1.06);
}
.sisetu__item img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sisetu__item p {
  padding: 18px 20px;
  text-align: center;
  color: #7a6257;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  background: #fff;
}
@media all and (max-width: 821px) {
  .sisetu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
}
@media all and (max-width: 639px) {
  .sisetu__list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }
  .sisetu__item {
    border-radius: 22px;
  }
  .sisetu__item p {
    padding: 14px 16px;
    font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/*================================================
採用情報(recruit.php)
==================================================*/
.recruit {
  padding: 100px 0;
  background: #fff;
}
.recruit__inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.recruit-message .innerB {
  margin-top: 40px;
}
.recruit-message .main {
  color: #5b514b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 80px;
}
.recruit-message img.recruit-message_photo {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.recruit-message img.recruit-message_illust {
  display: block;
  position: absolute;
  width: 200px;
  top: -90px;
  right: -70px;
}
.recruit-message .posillust2 {
  display: block;
  position: absolute;
  width: 100px;
  bottom: -70px;
  right: 0;
  transform: rotate(45deg);
}
.recruit-message .right {
  position: relative;
}
@media all and (max-width: 639px) {
  .recruit-message img.recruit-message_illust {
    position: relative;
    margin: 40px auto 0;
    top: auto;
    right: auto;
  }
}

.recruit-person {
  margin-top: 120px;
  position: relative;
}
.recruit-person .pos {
  display: block;
  position: absolute;
  width: 100px;
  transform: scaleX(-1);
  top: 70px;
  left: -40px;
}
.recruit-person__box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  padding: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 226, 234, 0.35), rgba(255, 243, 191, 0.35));
}
.recruit-person__image {
  text-align: center;
}
.recruit-person__photo {
  width: 260px;
  border-radius: 50%;
}
.recruit-person__capshion {
  display: block;
  height: 24px;
  margin: 0 auto 15px;
}
.recruit-person__list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}
.recruit-person__list li {
  position: relative;
  padding: 12px 22px;
  border-radius: 8px;
  background: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
}
.recruit-person__list li i {
  color: #ff9db5;
}
.recruit-person p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

.recruit-benefit {
  margin-top: 120px;
}
.recruit-benefit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.recruit-benefit__item {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(122, 98, 87, 0.08);
}
.recruit-benefit__item img.photo {
  margin-bottom: 22px;
  border-radius: 10px;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.recruit-benefit__item img.no {
  display: block;
  position: absolute;
  width: 100px;
  top: 0;
}
.recruit-benefit__item h4 {
  color: #7a6257;
  font-weight: 600;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
}
.recruit-benefit__item h5 {
  color: #ff9db5;
  font-weight: 500;
  font-size: 21px;
  font-size: 2.1rem;
  text-align: center;
}
.recruit-benefit__item p {
  margin-top: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .recruit-benefit__list {
    display: block;
    width: 96%;
    margin: auto;
  }
  .recruit-benefit__item {
    padding: 40px 20px;
    margin-bottom: 50px;
  }
}

.recruit-job {
  margin-top: 120px;
}
.recruit-job__tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}
.recruit-job__tab {
  min-width: 200px;
  height: 58px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(122, 98, 87, 0.14);
  color: #7a6257;
  font-weight: 600;
  transition: 0.3s;
}
.recruit-job__tab.is-active {
  background: #dff3fb;
  border-color: #dff3fb;
}
.recruit-job__panel {
  display: none;
  margin-top: 36px;
  padding: 44px;
  border-radius: 15px;
  border: 1px solid #eee;
}
.recruit-job__panel.is-active {
  display: block;
}
.recruit-job__panel table {
  width: 100%;
}
.recruit-job__panel tr {
  border-bottom: 1px solid rgba(122, 98, 87, 0.12);
}
.recruit-job__panel tr:last-child {
  border-bottom: none;
}
.recruit-job__panel th,
.recruit-job__panel td {
  padding: 22px 10px;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
.recruit-job__panel th {
  width: 180px;
  color: #7a6257;
  font-weight: 600;
}
.recruit-job__panel td {
  font-weight: 500;
}
.recruit-job__bottom {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 50px;
}
.recruit-job a.tellink {
  display: block;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
  color: #ee9dae;
}
.recruit-job a.tellink span {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #5b514b;
  font-weight: 500;
  margin-left: 15px;
}

@media all and (max-width: 639px) {
  .recruit {
    padding: 70px 0;
  }
  .recruit__inner {
    width: calc(100% - 30px);
  }
  .recruit-message,
  .recruit-person__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
    border-radius: 28px;
  }
  .recruit-person,
  .recruit-benefit,
  .recruit-job {
    margin-top: 80px;
  }
  .recruit-benefit__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .recruit-job__tabs {
    flex-direction: column;
  }
  .recruit-job__tab {
    width: 100%;
  }
  .recruit-job__panel {
    padding: 24px 18px;
  }
  .recruit-job__panel tr,
  .recruit-job__panel th,
  .recruit-job__panel td {
    display: block;
    width: 100%;
  }
  .recruit-job__panel th {
    padding-bottom: 4px;
  }
  .recruit-job__panel td {
    padding-top: 0;
  }
}
/*================================================
お問い合わせ(contact.php)
==================================================*/
.contact {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 100px;
}
.contact .accbox {
  margin-top: 40px;
}
.contact .accbox label {
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}
.contact .accbox label .more {
  display: block;
  text-align: center;
  border-top: 1px solid #74b9d8;
  border-bottom: 1px solid #74b9d8;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  color: #74b9d8;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 0;
  transition: 0.4s;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .contact .accbox label .more {
    margin-left: 0;
  }
}
.contact .accbox label .more span {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
}
.contact .accbox label:hover .more {
  background: #74b9d8;
  color: #fff;
  transition: 0.4s;
}
.contact .accbox label .single {
  padding: 0;
}
.contact .accbox input {
  display: none;
  transition: 0.8s;
}
.contact .accbox .accshow_1 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  position: relative;
}
.contact .accbox .accshow_1 .main {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #5b514b;
  text-align: left;
  letter-spacing: 0;
  width: 90%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .contact .accbox .accshow_1 .main {
    line-height: 1.7em;
  }
}
.contact .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;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .contact .accbox .accshow_1 .main span {
    margin-top: 35px;
  }
}
.contact .cssacc_1:checked + .accshow_1 {
  height: auto;
  opacity: 1;
  transition: 0.8s;
  padding-top: 50px;
}
@media all and (max-width: 639px) {
  .contact .form-contents {
    padding: 0;
  }
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
#topics_1 .inner_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_1 .inner_item {
    display: block;
  }
}
#topics_1 .inner_item .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_1 .inner_item .left {
    width: 100%;
  }
}
#topics_1 .inner_item .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_1 .inner_item .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_1 .inner_item .right .side_titem {
  font-family: "Quicksand", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  color: #74b9d8;
}
#topics_1 .inner_item .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner_item .right .side_titem span {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
}
#topics_1 .inner_item .right ul.post_list li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#topics_1 .inner_item .right ul.post_list li a {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner_item .right ul.post_list li a .data {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #74b9d8;
  opacity: 0.5;
  position: relative;
}
#topics_1 .inner_item .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 100px;
  display: inline-block;
  padding: 0 1.8em;
  position: absolute;
  top: 2px;
  left: 80px;
}
#topics_1 .inner_item .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;
  color: #5b514b;
  display: block;
  margin-top: 4px;
  line-height: 1.8em;
}
#topics_1 .inner_item .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-size: 13px;
  font-size: 1.3rem;
  color: #74b9d8;
}
#topics_1 .entry .title {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  color: #5b514b;
}
#topics_1 .entry .main_cont {
  font-family: YakuHaRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 30px;
  color: #5b514b;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */