@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* 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;
  }
}
/* animation
----------------------------------*/
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100.5%;
    width: 0;
  }
}
@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-content.move .animation-bar:before {
  animation: animation-bar 1.5s ease 0s 1 normal forwards;
}
.animation-content.move .animation-txt {
  animation: animation-txt 0s ease 0.8s 1 normal forwards;
}
.animation-content .animation-box {
  display: block;
  text-align: center;
}
.animation-content .animation-bar {
  position: relative;
  display: block;
  transform: translate3d(0, 0, 0);
}
.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to right, #cd853f, #c79a74);
}
.animation-content .animation-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2s;
}
.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 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 page_section_line() ; 

in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerA {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.innerA .left_s {
  width: 30%;
}
.innerA .right_l {
  width: 66%;
  margin-left: 4%;
}

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@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%;
    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%;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}
.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: YakuHaMP, "Zen Old Mincho", serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #c3baaf;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #c79a74;
}
@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 {
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 1rem;
  *font-size: small;
  *font: x-small;
  line-height: 1.8;
  margin: 0 auto;
  font-family: YakuHaMP, "Zen Old Mincho", 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: #cd853f;
  text-decoration: none;
}

.tbox {
  border: 2px solid #cd853f;
  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;
}

header {
  width: 100%;
  z-index: 2222;
  transition: 0.4s;
  position: absolute;
}
@media all and (max-width: 639px) {
  header {
    position: relative;
  }
}
header .logo {
  width: 184px;
  display: block;
  margin-top: 40px;
  margin-left: 40px;
}
@media all and (max-width: 639px) {
  header .logo {
    width: 144px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
  height: auto;
}

/* --- 右側固定サイドバー (常に表示) --- */
.side-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 100vh;
  z-index: 1000; /* 最前面 */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3333;
  background: #fff;
  border-left: 1px solid #eee;
}
@media all and (max-width: 639px) {
  .side-bar {
    height: auto;
    padding: 0 0;
  }
}
.side-bar .in_bottom {
  position: absolute;
  bottom: 30px;
}
.side-bar .in_bottom__sns {
  margin-bottom: 40px;
}
.side-bar .in_bottom__sns li:nth-child(n+2) {
  margin-top: 30px;
}
.side-bar .in_bottom__sns li a {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: auto;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2f2a26;
}
.side-bar .in_bottom__sns li a i {
  margin-bottom: 5px;
}
.side-bar .in_bottom img {
  display: block;
  width: 30%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .side-bar .in_bottom img {
    display: none;
  }
}

/* 縦書きのMENUラベル */
.menu-label {
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.3em;
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .menu-label {
    display: none;
  }
}

/* ハンバーガーボタン本体 */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin-top: 30px;
  position: relative;
}

/* 共通 */
.hamburger span {
  display: block;
  height: 1px;
  background-color: #3a342f;
  transition: all 0.4s ease;
}

/* 1本目（一番長い） */
.hamburger span:nth-child(1) {
  width: 32px;
}

/* 2本目 */
.hamburger span:nth-child(2) {
  width: 22px;
}

/* 3本目（一番短い） */
.hamburger span:nth-child(3) {
  width: 14px;
}

/* クリックされた時のハサミのようなクロス（×印） */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 32px;
}

.hamburger.is-active span:nth-child(2) {
  transform: rotate(-45deg);
  width: 32px;
}

.hamburger.is-active span:nth-child(3) {
  opacity: 0;
}

/* --- 全画面オーバーレイメニュー --- */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  /* --- グラデーションの設定 --- */
  /* 似たトーンのティファニーブルーを3色ほど混ぜます */
  animation: gradientAnimation 10s ease infinite; /* 10秒かけてループ */
  /* 初期状態は隠す */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.full-menu .inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media all and (max-width: 639px) {
  .full-menu .inner {
    display: block;
  }
}
.full-menu .inner__photo {
  width: 50%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28142/nav_photo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 639px) {
  .full-menu .inner__photo {
    display: none;
  }
}
.full-menu .inner__text {
  width: 50%;
  background: #f7f5f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
@media all and (max-width: 639px) {
  .full-menu .inner__text {
    width: 100%;
    height: 100%;
  }
}
.full-menu .logo {
  display: block;
  width: 200px;
  margin: 0;
}
.full-menu nav {
  display: block;
  height: auto;
}
.full-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.full-menu nav li {
  list-style: none;
}
.full-menu nav a {
  display: grid;
  grid-template-columns: 150px auto;
  align-items: center;
  column-gap: 24px;
  text-decoration: none;
  color: #2f2a26;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.full-menu nav a span {
  display: block;
  text-align: right;
  color: #c79a74;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  letter-spacing: 0.08em;
}
.full-menu nav a:hover {
  opacity: 0.7;
  transform: translateX(6px);
}

/* 背景を動かすアニメーションの定義 */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* メニューが開いた時 */
.full-menu.is-active {
  opacity: 1;
  visibility: visible;
}

/* --- メインコンテンツの仮設定 --- */
main {
  padding-right: 80px; /* サイドバーの分だけ余白を空ける */
  height: 200vh; /* スクロール確認用 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* /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: #f7f5f2;
  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: #cd853f;
  color: #fff;
}
table td b {
  color: #cd853f;
  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: #c79a74;
  font-weight: bold;
  border: 2px solid #c79a74;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #c79a74;
}
#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 #cd853f;
  border-bottom: 3px solid #cd853f;
  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 .top_main_vis {
  width: 100%;
  position: relative;
  margin: auto;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    height: auto;
  }
}
#top_main .top_main_vis img {
  display: block;
  height: 100%;
}
#top_main .main_chashi {
  position: absolute;
  height: 270px;
  margin: auto;
  left: 2%;
  bottom: 0;
  top: 0;
  z-index: 33;
}
@media all and (max-width: 639px) {
  #top_main .main_chashi {
    height: 70%;
    margin: auto;
    top: auto;
    bottom: 10px;
  }
}
#top_main .main_chashi img {
  display: block;
  margin: auto;
}
#top_main .top_main__bottom {
  display: block;
  margin: 40px auto 0; /* 左寄せ、または全体のバランスを見て調整 */
  width: calc((100% - 80px) * 0.9); /* 全体から80px引いた中での95% */
}

a.botn_link {
  display: block;
  border: 1px solid #cd853f;
  margin-top: 40px;
  max-width: 100%;
  width: 380px;
  padding: 20px 0;
}
a.botn_link span {
  display: table;
  margin: auto;
  position: relative;
  padding-right: 62px;
}
a.botn_link span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 52px;
  height: 22px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28142/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

.top_1__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  color: #3a342f;
  text-align: center;
}
@media all and (max-width: 639px) {
  .top_1__read {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.top_1__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.6em;
  letter-spacing: 0;
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .top_1__main {
    margin-top: 20px;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.top_1 .inlinks {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  .top_1 .inlinks {
    display: block;
  }
}
.top_1 .inlinks__item {
  width: 48%;
}
@media all and (max-width: 639px) {
  .top_1 .inlinks__item {
    width: 100%;
  }
}
.top_1 .inlinks__item:nth-child(2) {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .top_1 .inlinks__item:nth-child(2) {
    margin-top: 50px;
  }
}
.top_1 .inlinks__photo {
  width: 100%;
  position: relative;
}
.top_1 .inlinks__photo .photo_text {
  position: absolute;
  background: #fff;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2f2a26;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  left: 30px;
  padding: 15px 0;
  letter-spacing: 0.12em;
}
@media all and (max-width: 639px) {
  .top_1 .inlinks__photo .photo_text {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
.top_1 .inlinks__photo img {
  display: block;
  width: 100%;
}
.top_1 .inlinks__itemread {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #3a342f;
  margin-top: 15px;
}
@media all and (max-width: 639px) {
  .top_1 .inlinks__itemread {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
  }
}
.top_1 .inlinks__itemmain {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}

.top_2 {
  margin-top: 90px;
}
.top_2__photo {
  display: block;
  position: relative;
}
.top_2__photo .top_2__photo_text {
  display: block;
  max-height: 68px;
  height: 100%;
  position: absolute;
  left: 30px;
  top: -4px;
}
.top_2__photo .kesiki {
  display: block;
  width: 100%;
}
.top_2 .top_2__text {
  position: relative;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .top_2 .top_2__text {
    transform: translateY(0);
  }
}
.top_2 .top_2__text:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 55%;
  height: 100%;
  background: #f7f5f2;
  right: 0;
}
@media all and (max-width: 639px) {
  .top_2 .top_2__text:before {
    display: none;
  }
}
.top_2 .top_2__text__item {
  width: 44%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .top_2 .top_2__text__item {
    width: 100%;
  }
}
.top_2__textread {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #3a342f;
}
@media all and (max-width: 639px) {
  .top_2__textread {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
  }
}
.top_2__textmain {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}

footer {
  padding-right: 80px;
  background: #f8f6f4;
}
footer .foot .foot_logo {
  display: block;
  width: 250px;
}
@media all and (max-width: 639px) {
  footer .foot .foot_logo {
    width: 170px;
    margin: 40px auto 0;
  }
}
footer .foot__in {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  footer .foot__in {
    display: block;
  }
}
footer .foot__right {
  width: 57%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  footer .foot__right {
    display: none;
  }
}
footer .foot__right .footnav {
  display: flex;
  flex-wrap: wrap;
}
footer .foot__right .footnav li {
  width: 33.333333%;
}
footer .foot__right .footnav li:nth-child(n+4) {
  margin-top: 15px;
}
footer .foot__right .footnav li a {
  display: block;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2f2a26;
}
footer .foot__name {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #3a342f;
}
footer .foot__info {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3a342f;
}
footer .copy {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: 300;
  z-index: 2;
  color: #2f2a26;
  text-align: center;
  padding: 15px 0;
}
@media all and (max-width: 639px) {
  footer .copy {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    font-weight: 400;
    position: relative;
    text-align: center;
    padding: 0;
  }
}

/*--------------------------------------------------
下層ページ共通
----------------------------------------------------*/
.pagetitle {
  height: clamp(360px, 40vw, 570px);
}
@media all and (max-width: 639px) {
  .pagetitle {
    height: auto;
  }
}
.pagetitle__in {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
@media all and (max-width: 639px) {
  .pagetitle__in {
    display: block;
  }
}
.pagetitle__photo {
  width: 50%;
  height: 100%;
}
@media all and (max-width: 639px) {
  .pagetitle__photo {
    width: 100%;
    height: auto;
  }
}
.pagetitle__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagetitle__text {
  width: 50%;
  background: #f7f5f2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 639px) {
  .pagetitle__text {
    width: 100%;
  }
}
.pagetitle__con {
  width: 80%;
}
@media all and (max-width: 639px) {
  .pagetitle__con {
    padding: 40px 0;
  }
}
.pagetitle__en {
  color: #cd853f;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 23px;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  .pagetitle__en {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
.pagetitle h2 {
  color: #3a342f;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .pagetitle h2 {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 400;
  }
}
.pagetitle__read {
  color: #2f2a26;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .pagetitle__read {
    margin-top: 20px;
  }
}

.pagesec_title {
  text-align: center;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 400;
  color: #3a342f;
}
@media all and (max-width: 639px) {
  .pagesec_title {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 400;
  }
}
.pagesec_title span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #cd853f;
}
@media all and (max-width: 639px) {
  .pagesec_title span {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}

/*--------------------------------------------------
世音について(about.php)
----------------------------------------------------*/
.philosophy {
  position: relative;
  margin-top: 100px;
}
.philosophy:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 46%;
  height: 100%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28142/philosophy_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0;
}
@media all and (max-width: 639px) {
  .philosophy:before {
    display: none;
  }
}
.philosophy__cont {
  width: 50%;
}
@media all and (max-width: 639px) {
  .philosophy__cont {
    width: 100%;
  }
}
.philosophy__cont .pagesec_title {
  text-align: left;
}
.philosophy__main {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 50px;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  .philosophy__main {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2em;
  }
}

.greeting {
  margin-top: 100px;
}
.greeting .single_new {
  background: #f8f6f4;
  position: relative;
}
@media all and (max-width: 639px) {
  .greeting .single_new {
    padding: 50px 0;
  }
}
.greeting__subcopy {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2f2a26;
  text-align: center;
  margin: 30px 0;
}
@media all and (max-width: 639px) {
  .greeting__subcopy {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.greeting__main {
  max-width: 976px;
  margin: auto;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.5em;
}
.greeting__bottom {
  display: block;
  position: absolute;
  height: 90px;
  right: 0;
  right: 40px;
  bottom: -20px;
}

.infomartion__inner {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .infomartion__inner {
    display: block;
  }
}
.infomartion__inner .company-table {
  border-top: 1px solid #eee;
}
@media all and (max-width: 639px) {
  .infomartion__inner .company-table {
    width: 100%;
  }
}
.infomartion__inner .company-table th,
.infomartion__inner .company-table td {
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  padding: 20px 40px;
}
@media all and (max-width: 639px) {
  .infomartion__inner .company-table th,
  .infomartion__inner .company-table td {
    display: block;
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .infomartion__inner .company-table th {
    background: rgba(238, 238, 238, 0.5);
  }
}
.infomartion__logo {
  width: 180px;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .infomartion__logo {
    margin: auto;
  }
}
.infomartion__logo img {
  display: block;
  width: 110px;
  height: auto;
}
@media all and (max-width: 639px) {
  .infomartion__logo img {
    margin: auto;
  }
}

/*--------------------------------------------------
個人向けサポート(support.php)
----------------------------------------------------*/
@media all and (max-width: 639px) {
  .supportread {
    padding: 40px 0;
  }
}
.supportread__title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 400;
  color: #3a342f;
  text-align: center;
}
@media all and (max-width: 639px) {
  .supportread__title {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.supportread__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.6em;
  letter-spacing: 0;
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .supportread__main {
    margin-top: 20px;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}

.concerns .single_new {
  background: #f7f5f2;
}
@media all and (max-width: 639px) {
  .concerns .single_new {
    padding: 40px 0;
  }
}
.concerns__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .concerns__main {
    margin-top: 20px;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.concerns .itemlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  .concerns .itemlist {
    display: block;
  }
}
.concerns .itemlist li {
  width: 30%;
  margin-right: 5%;
}
@media all and (max-width: 639px) {
  .concerns .itemlist li {
    width: 100%;
    margin: 0 0 30px;
  }
}
.concerns .itemlist li:nth-child(3), .concerns .itemlist li:last-child {
  margin-right: 0;
}
.concerns .itemlist li:nth-child(n+4) {
  margin-top: 60px;
}
.concerns .itemlist li img {
  display: block;
  margin: auto;
  width: 29%;
}
.concerns .itemlist__tilte {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #3a342f;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
}
.concerns .itemlist__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-bottom: 10px;
}
.concerns .itemlist__main i {
  color: #cd853f;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .approach {
    padding: 40px 0;
  }
}
.approach__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 30px;
  text-align: center;
}
.approach .approachlist {
  max-width: 1050px;
  width: 100%;
  margin: 60px auto 0;
}
.approach .approachlist__item {
  margin-bottom: 60px;
}
.approach .approachlist__in {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media all and (max-width: 639px) {
  .approach .approachlist__in {
    display: block;
    gap: 0;
  }
}
.approach .approachlist__photo {
  width: 35%;
}
@media all and (max-width: 639px) {
  .approach .approachlist__photo {
    width: 100%;
  }
}
.approach .approachlist__photo img {
  display: block;
  width: 100%;
}
.approach .approachlist__text {
  width: 60%;
}
@media all and (max-width: 639px) {
  .approach .approachlist__text {
    width: 100%;
    margin-top: 20px;
  }
}
.approach .approachlist__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #3a342f;
}
.approach .approachlist__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}

.flow .single_new {
  background: #f7f5f2;
}
.flow__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.2em;
  letter-spacing: 0;
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .flow__main {
    margin-top: 20px;
    text-align: left;
  }
}
.flow .flowlist {
  max-width: 980px;
  width: 100%;
  margin: 70px auto 0;
  counter-reset: flow;
}
@media all and (max-width: 639px) {
  .flow .flowlist {
    counter-reset: inherit;
    padding: 0;
    width: 95%;
  }
}
.flow .flowlist li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 34px;
  border-top: 1px solid rgba(205, 133, 63, 0.28);
}
@media all and (max-width: 639px) {
  .flow .flowlist li {
    display: block;
    padding: 34px 0;
    gap: 0;
    box-sizing: border-box;
  }
}
.flow .flowlist li:last-child {
  border-bottom: 1px solid rgba(205, 133, 63, 0.28);
}
.flow .flowlist__num {
  display: block;
  width: 47px;
}
@media all and (max-width: 639px) {
  .flow .flowlist__num {
    margin: auto;
  }
}
.flow .flowlist__title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
  color: #3a342f;
}
@media all and (max-width: 639px) {
  .flow .flowlist__title {
    text-align: center;
  }
}
.flow .flowlist__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 12px;
}

.supportcontact__box {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 60px;
  border: 1px solid rgba(205, 133, 63, 0.45);
  text-align: center;
  background: #fff;
}
@media all and (max-width: 639px) {
  .supportcontact__box {
    padding: 40px 20px;
    border: none;
  }
}
.supportcontact__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.2em;
  letter-spacing: 0;
  margin-top: 24px;
}
@media all and (max-width: 639px) {
  .supportcontact__main {
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.supportcontact .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  height: 56px;
  margin-top: 36px;
  border: 1px solid #cd853f;
  color: #cd853f;
  text-decoration: none;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.supportcontact .btn:hover {
  background: #cd853f;
  color: #fff;
}

/*--------------------------------------------------
社会・地域向けプロジェクト(project.php)
----------------------------------------------------*/
.activities__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 30px;
  text-align: center;
}
.activities .approachlist {
  max-width: 1050px;
  width: 100%;
  margin: 60px auto 0;
}
.activities .approachlist__item {
  margin-bottom: 60px;
}
.activities .approachlist__in {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media all and (max-width: 639px) {
  .activities .approachlist__in {
    display: block;
  }
}
.activities .approachlist__photo {
  width: 35%;
}
@media all and (max-width: 639px) {
  .activities .approachlist__photo {
    width: 100%;
  }
}
.activities .approachlist__photo img {
  display: block;
  width: 100%;
}
.activities .approachlist__text {
  width: 60%;
}
@media all and (max-width: 639px) {
  .activities .approachlist__text {
    width: 100%;
    margin-top: 20px;
  }
}
.activities .approachlist__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #3a342f;
}
@media all and (max-width: 639px) {
  .activities .approachlist__read {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 400;
  }
}
.activities .approachlist__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}
.activities .activities_bot {
  border-left: 2px solid #9eaabd;
  margin-top: 30px;
  padding-left: 20px;
}
.activities .activities_bot__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  font-weight: 500;
  color: #5273a3;
}
.activities .activities_bot__text {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}

.bousai {
  position: relative;
  padding: 80px 0;
}
.bousai:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 95%;
  margin: auto;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #f7f5f2;
}
@media all and (max-width: 639px) {
  .bousai:before {
    display: none;
  }
}
.bousai .title {
  position: relative;
}
.bousai .title:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 45%;
  height: 100%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28142/bousai_photo.jpg);
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 639px) {
  .bousai .title:before {
    display: none;
  }
}
.bousai .title__text {
  width: 50%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .bousai .title__text {
    width: 100%;
  }
}
.bousai .title__sub {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #3a342f;
}
.bousai .title__name {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 400;
  color: #3a342f;
  line-height: 1em;
  margin-top: 6px;
}
.bousai .title__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 40px;
  line-height: 2.3em;
}
.bousai .cont__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 400;
  color: #3a342f;
  text-align: center;
}
@media all and (max-width: 639px) {
  .bousai .cont__read {
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.bousai .cont__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
  line-height: 2.3em;
  text-align: center;
}
.bousai .cont__item {
  background: #fff;
  padding: 80px;
  margin-top: 80px;
  position: relative;
}
@media all and (max-width: 639px) {
  .bousai .cont__item {
    padding: 0;
  }
}
.bousai .cont__itemread {
  display: table;
  background: #c79a74;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  padding: 0 20px;
  position: absolute;
  top: -10px;
}
@media all and (max-width: 639px) {
  .bousai .cont__itemread {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 400;
  }
}
.bousai .cont img {
  display: block;
  width: 100%;
}
.bousai .cont ul li {
  border-left: 2px solid #9eaabd;
  margin-top: 30px;
  padding-left: 20px;
}
.bousai .cont ul li .midasi {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  font-weight: 500;
  color: #5273a3;
}
.bousai .cont ul li .itemrtextmain {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}
.bousai .cont .case_midasi {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  font-weight: 500;
  color: #5273a3;
  margin-top: 15px;
}
.bousai .cont .case_text {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
}

.other__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  padding: 6px 10px;
  margin-top: 60px;
  color: #cd853f;
  border-top: 1px solid #c79a74;
  border-bottom: 1px solid #c79a74;
}
.other__read:nth-child(n+2) {
  margin-top: 90px;
}
.other__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 30px;
}
.other__main span {
  display: block;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.other__incont {
  border-left: 2px solid #9eaabd;
  padding-left: 20px;
  margin-top: 30px;
}
.other__incontread {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  font-weight: 500;
  color: #5273a3;
  line-height: 1.6em;
}
.other__incontxt {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  margin-top: 10px;
}

.vision {
  padding-bottom: 90px;
}
.vision__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #2f2a26;
  margin-top: 40px;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  .vision__main {
    text-wrap: balance;
    word-break: auto-phrase;
  }
}

/*--------------------------------------------------
ご賛同・協力機関について(partners.php)
----------------------------------------------------*/
.partnerslead__main {
  max-width: 920px;
  margin: auto;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.5em;
  text-align: center;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
}
.partnerslead__main span {
  color: #cd853f;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}

.recruitment__box {
  margin: 60px auto 0;
}
.recruitment__catch {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #3a342f;
  margin-bottom: 30px;
}
.recruitment__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.3em;
  letter-spacing: 0;
}
.recruitment__target {
  max-width: 920px;
  margin: 50px auto 0;
  border-left: 2px solid #9eaabd;
  padding-left: 22px;
}
.recruitment__targetread {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  font-weight: 500;
  color: #5273a3;
}
.recruitment__targettext {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.1em;
  letter-spacing: 0;
  margin-top: 12px;
}

@media all and (max-width: 639px) {
  .merit {
    margin-top: 40px;
  }
}
.merit .single_new {
  background: #f8f6f4;
}
@media all and (max-width: 639px) {
  .merit .single_new {
    padding: 40px 0;
  }
}
.merit__inner {
  max-width: 1050px;
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 70px;
}
@media all and (max-width: 639px) {
  .merit__inner {
    display: block;
    gap: 0;
  }
}
.merit__photo {
  width: 38%;
}
@media all and (max-width: 639px) {
  .merit__photo {
    width: 100%;
  }
}
.merit__photo img {
  display: block;
  width: 100%;
}
.merit__text {
  width: 62%;
}
@media all and (max-width: 639px) {
  .merit__text {
    width: 100%;
    margin-top: 20px;
  }
}
.merit__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #3a342f;
  line-height: 1.8em;
}
@media all and (max-width: 639px) {
  .merit__read {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
  }
}
@media all and (max-width: 639px) {
  .merit__read br {
    display: none;
  }
}
.merit__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.2em;
  letter-spacing: 0;
  margin-top: 24px;
}
.merit__note {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 22px;
  padding: 18px 22px;
  background: #d7cdb2;
}

@media all and (max-width: 639px) {
  .partnerlist {
    padding-top: 40px;
  }
}
.partnerlist__main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
  line-height: 2.2em;
  letter-spacing: 0;
  text-align: center;
  margin-top: 30px;
  text-wrap: balance;
  word-break: auto-phrase;
}
.partnerlist__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  width: 100%;
  margin: 60px auto 0;
}
.partnerlist__logos li {
  height: 130px;
  border: 1px solid rgba(205, 133, 63, 0.25);
  background: #f7f5f2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c79a74;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  letter-spacing: 0.1em;
}

.partnerscontact {
  padding-bottom: 100px;
}
.partnerscontact .supportcontact__main {
  text-align: center;
}
.partnerscontact .botn_link {
  margin: 40px auto 0;
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
.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 #cd853f;
  border-bottom: 1px solid #cd853f;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #cd853f;
  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: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
.contact .accbox label:hover .more {
  background: #cd853f;
  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: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2f2a26;
  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: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  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;
}

/*--------------------------------------------------
BLOG(blog.php)
----------------------------------------------------*/
#blog_1 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #2f2a26;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #blog_1 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#blog_1 ul.post_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list {
    width: 100%;
    display: block;
  }
}
#blog_1 ul.post_list li {
  width: 32%;
  position: relative;
  padding: 0;
  margin-right: 2%;
  box-sizing: border-box;
}
#blog_1 ul.post_list li:nth-child(3n) {
  margin-left: auto;
  margin-right: 0;
}
#blog_1 ul.post_list li:nth-child(n+4) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list li:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list li {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
#blog_1 ul.post_list li .thams {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 821px) {
  #blog_1 ul.post_list li .thams {
    height: 207px;
    line-height: 198px;
  }
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list li .thams {
    margin: auto;
  }
}
#blog_1 ul.post_list li .thams img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  min-width: 100%;
  min-height: 100%;
  font-family: "object-fit: contain;";
}
#blog_1 ul.post_list li .title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  display: block;
  color: #2f2a26;
  line-height: 1.6em;
  margin-top: 15px;
}
#blog_1 ul.post_list li .title span {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  display: table;
  font-weight: 400;
  color: #2f2a26;
}
#blog_1 .pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
#blog_1 .pages a {
  display: block;
  padding: 0 20px;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2a26;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#topics_1 .single_new {
  background: #fff;
}
#topics_1 .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_1 .inner {
    display: block;
  }
}
#topics_1 .inner .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .left {
    width: 100%;
  }
}
#topics_1 .inner .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_1 .inner .right .side_titem {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #cd853f;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  font-weight: 400;
  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: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #cd853f;
  opacity: 0.5;
  position: relative;
}
#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
  font-size: 0.9rem;
  font-weight: 400;
  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: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: 400;
  color: #2f2a26;
  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: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #cd853f;
}
#topics_1 .entry .title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #2f2a26;
}
#topics_1 .entry .main_cont {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 30px;
  color: #2f2a26;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */