@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Quicksand:wght@300..700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* @import "_vars.scss"; */
/* color */
/*サイトのメインカラー*/
/* サイトサイズ */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@media all and (max-width: 769px) {
  .animated.delay-1s,
  .animated.delay-2s,
  .animated.delay-3s,
  .animated.delay-4s,
  .animated.delay-5s {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
  }
}
/**

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

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

@include base-text_2($size); 

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

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

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  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%;
  }
}

.innerC {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.innerC .left,
.innerC .right {
  width: 48%;
  float: left;
}
.innerC .right {
  margin-left: 4%;
}
.innerC .left_s {
  width: 30%;
  float: left;
}
.innerC .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

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

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  padding-bottom: 80px;
}
#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #f9f8f4;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #fc700f;
}
@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: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

#body {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  position: relative;
}
#body:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 489px;
  height: 235px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/head_bg.svg);
  right: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  #body {
    overflow: hidden;
  }
}

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

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

.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: relative;
}
header #head {
  margin: 0 auto;
  padding: 35px 0;
}
@media all and (max-width: 821px) {
  header #head {
    padding: 20px 20px;
    top: 0;
    width: 96%;
  }
}
header #head .inner {
  display: flex;
  flex-wrap: wrap;
}
header #head .inner .in_right {
  margin-left: auto;
  position: relative;
}
header #head .logo {
  position: relative;
}
@media all and (max-width: 639px) {
  header #head .logo {
    margin-top: 0;
  }
}
header #head .logo a,
header #head .logo .logo__link {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media all and (max-width: 639px) {
  header #head .logo a,
  header #head .logo .logo__link {
    gap: 8px;
    margin-top: 0;
  }
}
header #head .logo .logo__mark {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}
@media all and (max-width: 639px) {
  header #head .logo .logo__mark {
    width: 42px;
  }
}
header #head .logo .logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  line-height: 1.25;
}
header #head .logo .logo__catch {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #40291b;
}
@media all and (max-width: 639px) {
  header #head .logo .logo__catch {
    font-size: 10px;
  }
}
header #head .logo .logo__name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  header #head .logo .logo__name {
    font-size: 16px;
  }
}
header #head .hed_contact__tel {
  position: relative;
  display: table;
  padding-left: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  header #head .hed_contact__tel {
    display: none;
  }
}
header #head .hed_contact__tel img {
  display: block;
  width: 37px;
  position: absolute;
  left: 0;
  margin: auto;
  top: 4px;
}
header #head .hed_contact__tel span {
  display: block;
  color: #40291b;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  font-weight: 700;
  text-align: right;
  line-height: 1.6em;
}
header .grnav {
  margin-bottom: 30px;
}
header .grnav .head_nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin-right: 250px;
  width: 100%;
}
header .grnav .head_nav > li {
  flex: 1;
  position: relative;
  border-left: 1px solid rgba(64, 41, 27, 0.15);
}
header .grnav .head_nav > li:last-child {
  border-right: 1px solid rgba(64, 41, 27, 0.15);
}
header .grnav .head_nav > li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #40291b;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  font-weight: 700;
  position: relative;
  padding: 10px 10px;
  height: 100%;
  transition: 0.2s;
}
header .grnav .head_nav > li a img {
  display: block;
  width: 36px;
  margin: auto 0;
  margin-right: 8px;
}
header .grnav .head_nav > li a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 5px;
  height: 5px;
  background: #fc700f;
  left: 0;
  right: 0;
  margin: auto;
  top: 10px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s;
}
header .grnav .head_nav > li a:hover {
  color: #fc700f;
}
header .grnav .head_nav > li a:hover:before {
  opacity: 1;
}
@media all and (max-width: 821px) {
  header .grnav .head_nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    margin-right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
  }
  header .grnav .head_nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .grnav .head_nav > li {
    flex: unset;
    width: 100%;
    border: none;
  }
  header .grnav .head_nav > li a {
    text-align: center;
    color: #40291b;
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
  }
}

.hamburger {
  display: none;
}
@media all and (max-width: 821px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: #fc700f;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 9999;
  }
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* /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);
}

/*link*/
/*containar*/
#contentwrap {
  width: 100%;
  flex: 1 1 auto;
  background-size: 160px;
}

.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: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e66c1f;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
#page-top a i {
  font-size: 22px;
  line-height: 1;
}
#page-top a:hover {
  background: #fc700f;
}
#page-top a img {
  display: block;
  width: 76px;
}
@media all and (max-width: 639px) {
  #page-top a img {
    width: 22px;
  }
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 15px;
    right: 15px;
  }
  #page-top a {
    width: 46px;
    height: 46px;
  }
  #page-top a i {
    font-size: 18px;
  }
}

#footer {
  width: 1160px;
  margin: 0 auto 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;
  color: #fff;
}
table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}
table td b {
  font-size: 12px;
}

/* 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: #fc700f;
  font-weight: bold;
  border: 2px solid #fc700f;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #fc700f;
}
#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 #e66c1f;
  border-bottom: 3px solid #e66c1f;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}

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

/*共通ルール*/
.single_new {
  width: 95%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .single_new {
    width: 95%;
  }
}

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

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

.top_main {
  width: 100%;
  position: relative;
  height: auto;
}
.top_main .top_main_vis {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .top_main .top_main_vis {
    height: 30vh;
  }
}
.top_main .top_main_vis:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(249, 248, 244, 0.9) 0%, rgba(249, 248, 244, 0.9) 30%, rgba(249, 248, 244, 0) 100%);
  z-index: 2;
}
@media all and (max-width: 639px) {
  .top_main .top_main_vis #cms-slider-1-1-area,
  .top_main .top_main_vis .slider_wrapper,
  .top_main .top_main_vis .main_slider__outer,
  .top_main .top_main_vis .main_slider,
  .top_main .top_main_vis .swiper-wrapper,
  .top_main .top_main_vis .swiper-slide,
  .top_main .top_main_vis .main_slider__inner {
    height: 100% !important;
    min-height: 100%;
  }
}
.top_main .top_main_vis .slider_wrapper {
  --swiper-wrapper-height: 100%;
}
.top_main .top_main_vis img {
  display: block;
  height: 100%;
  object-fit: cover;
}
@media all and (max-width: 639px) {
  .top_main .top_main_vis img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }
}
.top_main__chachi {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  left: 3%;
}
.top_main__chachi__read {
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 44px;
  font-size: 4.4rem;
  color: #40291b;
}
@media all and (max-width: 639px) {
  .top_main__chachi__read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.4em;
  }
}
.top_main__chachi__text {
  margin-top: 40px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 600;
  color: #40291b;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .top_main__chachi__text {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
  }
}
.top_main .top_main_illust {
  display: block;
  position: absolute;
  right: 160px;
  bottom: 30px;
  max-width: 383px;
  width: 50%;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .top_main .top_main_illust {
    width: 37%;
    right: 0;
    bottom: -10px;
  }
}
.top_main .top_main_line {
  display: block;
  width: 100%;
  position: absolute;
  bottom: -1px;
  z-index: 2;
}

.section_title {
  text-align: center;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 44px;
  font-size: 4.4rem;
  color: #40291b;
  font-weight: 700;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 821px) {
  .section_title {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 29px;
    font-size: 2.9rem;
  }
}

.btt {
  display: block;
  width: 290px;
  margin: 50px auto 0;
  background: #f5b630;
  border-radius: 100px;
  padding: 15px 0;
  position: relative;
}
.btt span {
  display: table;
  margin: auto;
  position: relative;
  color: #fff;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  font-weight: 500;
}
.btt img {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 15px;
}

.top_news .single_new {
  background: #fdf7ea;
  border-radius: 20px;
}
.top_news .tag {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.top_news .tag li button {
  padding: 12px 40px;
  border-radius: 100px;
  border: 1px solid #e66c1f;
  background: #fff;
  color: #e66c1f;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
@media all and (max-width: 639px) {
  .top_news .tag li button {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.top_news .tag li.is-active button {
  background: #e66c1f;
  color: #fff;
}
.top_news .post_list {
  margin-top: 40px;
  position: relative;
}
.top_news .post_list .top_news_illust {
  display: block;
  width: 229px;
  position: absolute;
  right: -90px;
  bottom: -30px;
}
@media all and (max-width: 639px) {
  .top_news .post_list .top_news_illust {
    display: none;
  }
}
.top_news .tab_content {
  display: none;
}
.top_news .tab_content.is-active {
  display: block;
}
.top_news .news_list {
  background: #fff;
  border-radius: 20px;
  padding: 80px 80px;
}
@media all and (max-width: 639px) {
  .top_news .news_list {
    padding: 60px 20px;
  }
}
.top_news .news_list li {
  border-bottom: 1px solid #ddd;
}
.top_news .news_list li:first-child {
  border-top: 1px solid #ddd;
}
.top_news .news_list li a {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #40291b;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  transition: 0.4s;
}
@media all and (max-width: 639px) {
  .top_news .news_list li a {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
  }
}
.top_news .news_list li a:hover {
  background: #f9f8f4;
  transition: 0.4s;
}
.top_news .news_list li time {
  min-width: 120px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .top_news .news_list li time {
    width: 100%;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
    display: block;
  }
}

.top_pholi {
  padding-top: 100px;
}
.top_pholi .single_new {
  background: #f9f8f4;
  border-radius: 20px;
}
.top_pholi .innerB {
  margin-top: 60px;
  align-items: center;
}
.top_pholi .innerB img {
  display: block;
  width: 100%;
}
.top_pholi__read {
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 33px;
  font-size: 3.3rem;
  color: #ed6c5f;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  .top_pholi__read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.top_pholi__read.center {
  text-align: center;
}
.top_pholi__text {
  margin-top: 20px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
@media all and (max-width: 639px) {
  .top_pholi__text {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.top_pholi__text.abouttext {
  line-height: 2em;
  margin-top: 40px;
}
.top_pholi .torikumi {
  margin: 90px auto 0;
  max-width: 938px;
  width: 100%;
}
.top_pholi .torikumi__list {
  margin: 20px auto 0;
}
.top_pholi .torikumi__list li {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  border-bottom: 1px dashed #969696;
  padding: 20px;
}
@media all and (max-width: 639px) {
  .top_pholi .torikumi__list li {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.top_pholi .torikumi .data {
  margin-left: auto;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  margin-top: 20px;
  width: fit-content;
}
@media all and (max-width: 639px) {
  .top_pholi .torikumi .data {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.top_pholi .about {
  margin: 90px auto 0;
  background: #fff;
  border-radius: 15px;
  padding: 90px;
  position: relative;
}
@media all and (max-width: 639px) {
  .top_pholi .about {
    padding: 50px 20px;
  }
}
.top_pholi .about:before, .top_pholi .about:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
}
.top_pholi .about:before {
  width: 116px;
  height: 174px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/top_pholi_about_asirai-1.svg);
  top: -30px;
  left: -50px;
}
.top_pholi .about:after {
  width: 155px;
  height: 138px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/top_pholi_about_asirai-2.svg);
  bottom: -30px;
  right: -50px;
}
.top_pholi .about img {
  display: block;
  margin-top: 30px;
}

.site_page {
  padding: 40px 0;
}
.site_page .col-3 {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .site_page .col-3 {
    display: block;
  }
}
.site_page .col-3 .in_item {
  display: flex;
  flex-direction: column;
  width: 32%;
  margin-right: 2%;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 15px;
  padding: 40px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  .site_page .col-3 .in_item {
    width: 100%;
    margin: 0 0 30px;
    padding: 30px 20px;
  }
}
.site_page .col-3 .in_item:nth-child(3) {
  margin-right: 0;
}
.site_page .col-3 .in_item .btt {
  margin-top: auto;
}
.site_page__read {
  text-align: center;
  color: #ed6c5f;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .site_page__read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.site_page__text {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  text-align: center;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  .site_page__text {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.site_page__illust {
  display: block;
  margin: 20px auto;
  width: auto;
  max-width: 70%;
  height: 160px;
  object-fit: contain;
}
@media all and (max-width: 639px) {
  .site_page__illust {
    height: 150px;
  }
}

.recruit {
  background: #fdf7ea;
  position: relative;
}
.recruit:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 277px;
  height: 336px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/cont_bottom_bg.svg);
  bottom: 0;
  left: 0;
}
.recruit .col-3 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .recruit .col-3 {
    display: block;
  }
}
.recruit .col-3 .in_item {
  width: 32%;
  margin-right: 2%;
}
@media all and (max-width: 639px) {
  .recruit .col-3 .in_item {
    width: 100%;
    margin: 0 0 30px;
  }
}
.recruit .col-3 .in_item:nth-child(3) {
  margin-right: 0;
}
.recruit .col-3 .in_item .recruit__link {
  display: block;
  border-radius: 10px;
  padding: 17px 27px 24px;
}
.recruit .col-3 .in_item .recruit__link.kango {
  background: #fdebe8;
  border: 1px solid #e15935;
}
.recruit .col-3 .in_item .recruit__link.igaku {
  background: #e6f4ee;
  border: 1px solid #3aad95;
}
.recruit .col-3 .in_item .recruit__link.rinshoui {
  background: #eaebf8;
  border: 1px solid #4a5cb4;
}
.recruit__read {
  text-align: center;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #e66c1f;
}
.recruit__inread {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 600;
  position: relative;
  width: fit-content;
  padding-right: 30px;
}
@media all and (max-width: 639px) {
  .recruit__inread {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 600;
  }
}
.recruit__inread.colo_kango {
  color: #e15935;
}
.recruit__inread.colo_igaku {
  color: #3aad95;
}
.recruit__inread.colo_rinshoui {
  color: #4a5cb4;
}
.recruit__inread img {
  display: block;
  position: absolute;
  width: 20px;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.recruit__text {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  margin-top: 7px;
  line-height: 1.6em;
}
@media all and (max-width: 639px) {
  .recruit__text {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}

.site_right_bann {
  position: fixed;
  right: 0;
  z-index: 55;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .site_right_bann {
    top: auto;
    bottom: 20px;
    transform: translateY(0);
  }
}
.site_right_bann a {
  display: block;
  width: 100px;
}
@media all and (max-width: 639px) {
  .site_right_bann a {
    width: 60px;
  }
}
.site_right_bann a img {
  display: block;
  width: 100%;
}

footer {
  position: relative;
}
@media all and (max-width: 639px) {
  footer {
    padding-top: 50px;
  }
}
footer:before, footer:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
}
footer:before {
  width: 259px;
  height: 195px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/foot_bg_l.svg);
  left: 0;
  bottom: 0;
}
footer:after {
  width: 361px;
  height: 149px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/foot_bg_r.svg);
  right: 0;
  bottom: 0;
}
footer .foot_logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media all and (max-width: 639px) {
  footer .foot_logo {
    gap: 10px;
  }
}
footer .foot_logo .foot_logo__mark {
  display: block;
  width: 66px;
  height: auto;
  flex-shrink: 0;
}
@media all and (max-width: 639px) {
  footer .foot_logo .foot_logo__mark {
    width: 48px;
  }
}
footer .foot_logo .foot_logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  line-height: 1.25;
}
footer .foot_logo .foot_logo__catch {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #40291b;
}
@media all and (max-width: 639px) {
  footer .foot_logo .foot_logo__catch {
    font-size: 11px;
  }
}
footer .foot_logo .foot_logo__name {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  footer .foot_logo .foot_logo__name {
    font-size: 18px;
  }
}
footer .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}
footer .inner .in_item .info {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
@media all and (max-width: 639px) {
  footer .inner .in_item .info {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
}
footer .inner .in_item .gaibukinnk {
  display: block;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px;
  color: #e15935;
  background: #fdf7ea;
  text-align: center;
  border: 1px solid #e15935;
  padding: 12px 0;
  border-radius: 3px;
  position: relative;
  z-index: 2;
}
footer .inner .in_item .foot_nav {
  display: flex;
  flex-wrap: wrap;
  width: 484px;
}
@media all and (max-width: 639px) {
  footer .inner .in_item .foot_nav {
    display: none;
  }
}
footer .inner .in_item .foot_nav li {
  width: 50%;
}
footer .inner .in_item .foot_nav li a {
  display: block;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
footer .inner .in_item .foot_nav li a i {
  font-size: 70%;
  color: #e66c1f;
  margin-right: 5px;
}
footer .copy {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  font-weight: 500;
  z-index: 2;
  color: #fcf3f0;
  text-align: center;
  padding: 10px 0;
}
@media all and (max-width: 639px) {
  footer .copy {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    margin-top: 50px;
    text-align: center;
  }
}

/*--------------------------------------------------
下層ページタイトル
----------------------------------------------------*/
.page_title {
  padding: 80px 0 90px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/page_title_bg.png);
  background-position: top center;
  background-size: cover;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page_title:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  bottom: 0;
  left: 0;
}
.page_title:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(230, 108, 31, 0.12);
  right: 10%;
  top: 30px;
}
.page_title__en {
  position: relative;
  color: #e66c1f;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page_title h2 {
  text-align: center;
  color: #40291b;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 600;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.page_title h2:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #e66c1f;
  border-radius: 999px;
  margin: 22px auto 0;
}
@media all and (max-width: 821px) {
  .page_title {
    padding: 55px 0 65px;
  }
  .page_title__en {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .page_title h2 {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 600;
  }
}

/*--------------------------------------------------
徳島健康生協について(about.php)
----------------------------------------------------*/
.about_read {
  position: relative;
}
.about_read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 221px;
  height: 171px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/about_read_bg.svg);
  margin: auto;
  left: 0;
  right: 0;
  top: 40px;
}
.about_read__main {
  max-width: 1050px;
  width: 100%;
  margin: 40px auto 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  line-height: 2.2em;
}
@media all and (max-width: 639px) {
  .about_read__main {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.about_read .about_read_illust {
  display: block;
  margin: 40px auto 0;
  max-width: 187px;
  width: 60%;
}

.about_kumiai .single_new {
  background: #fdf7ea;
  border-radius: 20px;
}
.about_kumiai__item {
  margin-top: 60px;
}
.about_kumiai__item__read {
  background: #fff;
  border-radius: 6px;
  color: #ed6c5f;
  padding: 0 20px;
  position: relative;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  padding-left: 50px;
  margin-bottom: 30px;
}
@media all and (max-width: 639px) {
  .about_kumiai__item__read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.about_kumiai__item__read i {
  font-size: 70%;
  margin-right: 6px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 21px;
  left: 20px;
}
.about_kumiai__item__main {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
@media all and (max-width: 639px) {
  .about_kumiai__item__main {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.about_kumiai__item__mainsub {
  margin-top: 15px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #40291b;
}
.about_kumiai__item .kumiai_illust {
  display: block;
  width: 312px;
  margin-left: auto;
  margin-top: 20px;
}
.about_kumiai__item__readsub {
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  color: #e66c1f;
  border-bottom: 2px dashed #e66c1f;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .about_kumiai__item__readsub {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    font-size: 2rem;
  }
}
.about_kumiai .innerB {
  margin-top: 60px;
}
.about_kumiai .inner {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .about_kumiai .inner {
    display: block;
  }
}
.about_kumiai .inner .in_item {
  width: 48%;
}
@media all and (max-width: 639px) {
  .about_kumiai .inner .in_item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about_kumiai .inner .in_item:nth-child(even) {
  margin-left: auto;
}
.about_kumiai .inner .in_item:nth-child(n+3) {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  .about_kumiai .inner .in_item:nth-child(n+3) {
    margin-top: 0;
  }
}

.about_info table {
  max-width: 800px;
  width: 100%;
  margin: 50px auto;
  border-top: 1px solid #eee;
}
.about_info table th,
.about_info table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  border-bottom: 1px solid #eee;
  padding: 20px;
}
@media all and (max-width: 639px) {
  .about_info table th,
  .about_info table td {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    display: block;
  }
}
@media all and (max-width: 639px) {
  .about_info table th {
    background: #eee;
  }
}
.about_info .about_info__numbers {
  max-width: 1000px;
  width: 100%;
  margin: 70px auto 0;
}
.about_info .about_info__numbers__note {
  text-align: right;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #40291b;
  margin-bottom: 15px;
}
@media all and (max-width: 639px) {
  .about_info .about_info__numbers__note {
    text-align: left;
  }
}
.about_info .about_info__numbers__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media all and (max-width: 639px) {
  .about_info .about_info__numbers__list {
    grid-template-columns: 1fr;
  }
}
.about_info .about_info__numbers__list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.about_info .about_info__numbers__list .icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  margin-right: 20px;
}
.about_info .about_info__numbers__list .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about_info .about_info__numbers__list .label {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  font-weight: 600;
  color: #40291b;
  line-height: 1.4;
}
.about_info .about_info__numbers__list .num {
  margin-top: 5px;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #e66c1f;
  font-weight: 700;
  margin-left: 15px;
}
.about_info .about_info__numbers__list .num span {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: 4px;
  color: #40291b;
}
.about_info__bottom {
  max-width: 945px;
  width: 100%;
  margin: 100px auto 0;
  background: #fdf7ea;
  border-radius: 10px;
  padding: 50px 0;
}
@media all and (max-width: 639px) {
  .about_info__bottom {
    padding: 50px 20px;
  }
}
.about_info__bottom .inn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .about_info__bottom .inn {
    display: block;
  }
}
.about_info__bottom .inn__right {
  margin-left: 50px;
}
@media all and (max-width: 639px) {
  .about_info__bottom .inn__right {
    margin-left: 0;
  }
}
.about_info__bottom .read {
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  font-size: 2.7rem;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  .about_info__bottom .read {
    text-align: center;
  }
}
.about_info__bottom .data_list {
  width: 378px;
}
@media all and (max-width: 639px) {
  .about_info__bottom .data_list {
    width: 100%;
    margin-top: 20px;
  }
}
.about_info__bottom .data_list li:nth-child(n+2) {
  margin-top: 10px;
}
.about_info__bottom .data_list li a {
  display: block;
  background: #fff;
  position: relative;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
@media all and (max-width: 639px) {
  .about_info__bottom .data_list li a {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.about_info__bottom .data_list li a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 19px;
  height: 19px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/icon_kango.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}

.history {
  position: relative;
  padding: 100px 0;
}
.history .single {
  background: #f9f8f4;
  border-radius: 20px;
}
.history_list {
  position: relative;
  padding-left: 120px;
  width: 90%;
  margin: 50px auto 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .history_list {
    padding-left: 0;
  }
}
.history_list:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 40px;
  height: 100%;
  background: #f4dfd8;
  left: 20px;
  top: 0;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .history_list:before {
    display: none;
  }
}
.history_item {
  position: relative;
}
.history_item:nth-child(n+2) {
  margin-top: 40px;
}
.history_item:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 16px;
  height: 16px;
  background: #ed6c5f;
  border-radius: 50%;
  left: -88px;
  top: 24px;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .history_item:before {
    display: none;
  }
}
.history_item:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 80px;
  height: 1px;
  border-bottom: 1px solid #ed6c5f;
  left: -80px;
  top: 31px;
}
@media all and (max-width: 639px) {
  .history_item:after {
    display: none;
  }
}
.history_item.is-open .history_head {
  background: #fdebe8;
  border-radius: 10px 10px 0 0;
  /* 矢印を上向きに回転 */
}
.history_item.is-open .history_head::after {
  transform: translateY(-50%) rotate(-135deg);
}
.history_head {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 10px 10px 0 0;
  padding: 20px 30px;
  text-align: left;
  cursor: pointer;
  position: relative;
}
@media all and (max-width: 639px) {
  .history_head {
    padding: 10px 20px;
  }
}
.history_head .year {
  color: #e66c1f;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  font-size: 2.7rem;
}
@media all and (max-width: 639px) {
  .history_head .year {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.history_head::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #e66c1f;
  border-bottom: 2px solid #e66c1f;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}
@media all and (max-width: 639px) {
  .history_head::after {
    right: 20px;
  }
}
.history_head:hover {
  background: #fdebe8;
}
.history_body {
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 0 40px 40px;
  display: none;
}
@media all and (max-width: 639px) {
  .history_body {
    padding: 0 20px 10px;
  }
}
.history_item.is-open .history_body {
  display: block;
}
.history_table {
  width: 100%;
  margin: 0;
}
.history_table tr {
  border-bottom: 1px solid #e5e5e5;
}
.history_table tr:first-child {
  border-top: 1px solid #e5e5e5;
}
.history_table th,
.history_table td {
  padding: 25px 15px;
  vertical-align: top;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 600;
  color: #40291b;
  border: none;
}
@media all and (max-width: 639px) {
  .history_table th,
  .history_table td {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    display: block;
    padding: 15px;
  }
}
.history_table th {
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  .history_table th {
    padding-bottom: 0;
    text-align: left;
  }
}
.history .history_illust {
  display: block;
  width: 181px;
  margin: 50px auto 0;
}

/*--------------------------------------------------
健康づくり・まちづくり(community.php)
----------------------------------------------------*/
.community_read__main {
  max-width: 1050px;
  width: 100%;
  margin: 40px auto 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  line-height: 2.2em;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  .community_read__main {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.community_read .bottom {
  margin-top: 100px;
  background: rgba(253, 235, 232, 0.6);
  padding: 80px;
  border-radius: 20px;
  border: 1px solid #e15935;
}
@media all and (max-width: 639px) {
  .community_read .bottom {
    padding: 60px 20px;
  }
}
.community_read .bottom__read {
  text-align: center;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #e15935;
}
@media all and (max-width: 639px) {
  .community_read .bottom__read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.community_read .bottom__btns {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.community_read .bottom__btns .btt {
  margin: 50px 0 0;
}
@media all and (max-width: 639px) {
  .community_read .bottom__btns {
    display: block;
  }
  .community_read .bottom__btns .btt {
    margin: 50px auto 0;
  }
}

.community_kumiai {
  position: relative;
  padding: 90px 0;
}
.community_kumiai .single_new {
  background: #fdf7ea;
  border-radius: 20px;
}
.community_kumiai .innerB {
  margin-top: 50px;
  align-items: center;
}
.community_kumiai .innerB img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.community_kumiai__sub_read {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  .community_kumiai__sub_read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.community_kumiai__main {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  .community_kumiai__main {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.community_kumiai__item {
  margin-top: 60px;
}
.community_kumiai .ommunity_kumiai__item_illust {
  display: block;
  position: absolute;
  width: 275px;
  right: 0;
  bottom: 80px;
}
@media all and (max-width: 639px) {
  .community_kumiai .ommunity_kumiai__item_illust {
    position: relative;
    bottom: auto;
  }
}
.community_kumiai table {
  width: 80%;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .community_kumiai table {
    width: 100%;
  }
}
.community_kumiai table th,
.community_kumiai table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  padding: 5px 10px;
}
@media all and (max-width: 639px) {
  .community_kumiai table th,
  .community_kumiai table td {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    display: block;
  }
}
@media all and (max-width: 639px) {
  .community_kumiai table th {
    background: #fff;
  }
}

.community_activ__uncor {
  margin: 60px 0 90px;
}
.community_activ__uncor ul {
  display: flex;
  gap: 30px;
}
@media all and (max-width: 639px) {
  .community_activ__uncor ul {
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
  }
}
.community_activ__uncor ul li {
  width: calc((100% - 90px) / 4);
  flex-shrink: 0;
}
@media all and (max-width: 639px) {
  .community_activ__uncor ul li {
    width: 180px;
  }
}
.community_activ__uncor ul li a {
  width: 100%;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fdebe8;
  transition: 0.3s;
  box-sizing: border-box;
  padding: 40px 20px;
  border: 1px solid #e15935;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.community_activ__uncor ul li a span {
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2em;
  color: #e15935;
}
@media all and (max-width: 639px) {
  .community_activ__uncor ul li a span {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.community_activ__uncor ul li a img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.community_activ__uncor ul li a:hover {
  transform: translateY(-5px);
}
.community_activ__intro {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.9;
  color: #40291b;
  margin-bottom: 35px;
}
.community_activ__coming {
  background: #fff;
  border-radius: 18px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.community_activ__coming p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
.community_activ__item {
  margin-bottom: 100px;
}
.community_activ__item__read {
  color: #ed6c5f;
  position: relative;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  padding-left: 30px;
  margin-bottom: 35px;
}
@media all and (max-width: 639px) {
  .community_activ__item__read {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.community_activ__item__read i {
  font-size: 70%;
  margin-right: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 21px;
  left: 0;
  margin: auto;
}
.community_activ__item__list.detail_type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
@media all and (max-width: 821px) {
  .community_activ__item__list.detail_type {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 639px) {
  .community_activ__item__list.detail_type {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.community_activ__item__list.detail_type .item {
  width: auto;
  margin: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.community_activ__item__list.detail_type .item:nth-child(n+4) {
  margin-top: 0;
}
.community_activ__item__list.detail_type .item--wide {
  grid-column: span 2;
}
@media all and (max-width: 821px) {
  .community_activ__item__list.detail_type .item--wide {
    grid-column: span 2;
  }
}
@media all and (max-width: 639px) {
  .community_activ__item__list.detail_type .item--wide {
    grid-column: span 1;
  }
}
.community_activ__item__list.detail_type .item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.community_activ__item__list.detail_type .item__body {
  padding: 24px;
}
@media all and (max-width: 639px) {
  .community_activ__item__list.detail_type .item__body {
    padding: 20px;
  }
}
.community_activ__item__list.detail_type .item h3 {
  color: #e66c1f;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .community_activ__item__list.detail_type .item h3 {
    font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.community_activ__item__list.detail_type .item__catch {
  color: #ed6c5f;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
}
.community_activ__item__list.detail_type .item__lead {
  color: #40291b;
  line-height: 1.8;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}
.community_activ__item__list.detail_type .item__toggle {
  width: 100%;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid #e66c1f;
  background: #fff;
  color: #e66c1f;
  cursor: pointer;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s;
}
.community_activ__item__list.detail_type .item__toggle:hover {
  background: #e66c1f;
  color: #fff;
}
.community_activ__item__list.detail_type .item__detail {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(64, 41, 27, 0.25);
}
.community_activ__item__list.detail_type .item__detail dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
}
@media all and (max-width: 639px) {
  .community_activ__item__list.detail_type .item__detail dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.community_activ__item__list.detail_type .item__detail dt {
  color: #e66c1f;
  font-weight: 700;
  line-height: 1.7;
}
.community_activ__item__list.detail_type .item__detail dd {
  margin: 0;
  line-height: 1.7;
  color: #40291b;
}
.community_activ__item__list.detail_type .item__detail .place_block {
  padding: 16px 0;
  border-bottom: 1px dashed rgba(64, 41, 27, 0.2);
}
.community_activ__item__list.detail_type .item__detail .place_block:first-child {
  padding-top: 0;
}
.community_activ__item__list.detail_type .item__detail .place_block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.community_activ__item__list.detail_type .item__detail .place_block h4 {
  color: #e66c1f;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.community_activ__item__list.detail_type .item__detail .place_block p {
  line-height: 1.7;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #40291b;
}
.community_activ__item__list.detail_type .item__detail .place_block p + p {
  margin-top: 10px;
}
.community_activ__item__list.detail_type .item__detail .btt {
  margin-top: 10px;
}
.community_activ__item__list.detail_type .item.is-open .item__detail {
  display: block;
}

/*--------------------------------------------------
医療・介護・保健予防(medical.php)
----------------------------------------------------*/
.area_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.area_link li a {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  transition: 0.3s;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  .area_link li a {
    width: 130px;
    height: 130px;
  }
}
.area_link li a span {
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2em;
}
@media all and (max-width: 639px) {
  .area_link li a span {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.area_link li a small {
  display: block;
  margin-top: 5px;
  font-family: YakuHaRP, "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4em;
  letter-spacing: 0;
}
.area_link li a:hover {
  transform: translateY(-5px);
}
.area_link li.tokushima a {
  border: 1px solid #ed6c5f;
  background: #fdebe8;
}
.area_link li.tokushima a span,
.area_link li.tokushima a small {
  color: #ed6c5f;
}
.area_link li.ishii a {
  border: 1px solid #e66c1f;
  background: #fbf9f3;
}
.area_link li.ishii a span,
.area_link li.ishii a small {
  color: #e66c1f;
}
.area_link li.kenhoku a {
  border: 1px solid #f5b630;
  background: #fdf7ea;
}
.area_link li.kenhoku a span,
.area_link li.kenhoku a small {
  color: #f5b630;
}
.area_link li.kennan a {
  border: 1px solid #3aad95;
  background: #e6f4ee;
}
.area_link li.kennan a span,
.area_link li.kennan a small {
  color: #3aad95;
}
.area_link li.kensei a {
  border: 1px solid #4a5cb4;
  background: #eaebf8;
}
.area_link li.kensei a span,
.area_link li.kensei a small {
  color: #4a5cb4;
}

.medical_contents {
  margin-bottom: 100px;
}
.medical_contents .single_new {
  background: #f9f8f4;
  border-radius: 20px;
}
.medical_contents .section_title.tokushima {
  color: #ed6c5f;
}
.medical_contents .section_title.ishii {
  color: #e66c1f;
}
.medical_contents .section_title.kenhoku {
  color: #f5b630;
}
.medical_contents .section_title.kennan {
  color: #3aad95;
}
.medical_contents .section_title.kensei {
  color: #4a5cb4;
}
.medical_contents__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2%;
  row-gap: 50px;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  .medical_contents__list {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.medical_contents__list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 0;
  align-items: start;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
}
@media all and (max-width: 639px) {
  .medical_contents__list li {
    padding: 30px 15px;
  }
}
.medical_contents__list__name {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #40291b;
  line-height: 1.5em;
}
@media all and (max-width: 639px) {
  .medical_contents__list__name {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: 600;
  }
}
.medical_contents__list__name i {
  font-size: 75%;
}
.medical_contents__list__name.tokusima i {
  color: #ed6c5f;
}
.medical_contents__list__name.ishii i {
  color: #e66c1f;
}
.medical_contents__list__name.kenhoku i {
  color: #f5b630;
}
.medical_contents__list__name.kennan i {
  color: #3aad95;
}
.medical_contents__list__name.kensei i {
  color: #4a5cb4;
}
.medical_contents__list__info {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  margin-top: 20px;
  line-height: 1.6em;
}
@media all and (max-width: 639px) {
  .medical_contents__list__info {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.medical_contents__list__text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #40291b;
  line-height: 1.6em;
}
@media all and (max-width: 639px) {
  .medical_contents__list__text {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.medical_contents__list__tag {
  position: absolute;
  left: 20px;
  top: -13px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .medical_contents__list__tag {
    left: 15px;
  }
}
.medical_contents__list .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid currentColor;
  font-weight: 700;
  line-height: 1;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .medical_contents__list .tag {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 5px 12px;
  }
}
.medical_contents__list .tag--medical {
  color: #e66c1f;
}
.medical_contents__list .tag--care {
  color: #3aad95;
}
.medical_contents__list .tag--checkup {
  color: #4a5cb4;
}
.medical_contents__list .tag--vaccine {
  color: #b1478a;
}
.medical_contents__list__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.medical_contents__list a {
  display: block;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #40291b;
  background: #f9f8f4;
  text-align: center;
  border-radius: 6px;
  padding: 10px 0;
}
.medical_contents__list a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------
医療・介護・保健予防(faq.php)
----------------------------------------------------*/
.faq_uncor__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.faq_uncor__list li:nth-child(n+2) {
  margin-left: 30px;
}
.faq_uncor__list a {
  display: block;
  position: relative;
  padding-right: 30px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
}
.faq_uncor__list a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28095/icon_kango.svg);
  transform: rotate(90deg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

.faq_contents .single_new {
  background: #fdf7ea;
  border-radius: 20px;
  margin-bottom: 100px;
}
.faq_contents__list {
  margin-top: 60px;
}
.faq_contents__list li {
  background: #fff;
  border-radius: 10px;
}
.faq_contents__list li:nth-child(n+2) {
  margin-top: 20px;
}
.faq_contents__list__question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}
@media all and (max-width: 639px) {
  .faq_contents__list__question {
    padding: 25px 20px;
  }
}
.faq_contents__list__p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  color: #40291b;
  padding-right: 20px;
}
@media all and (max-width: 639px) {
  .faq_contents__list__p {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
  }
}
.faq_contents__list__p i {
  color: #ed6c5f;
  margin-right: 10px;
}
.faq_contents__list__answer {
  display: none;
  padding: 0 40px 25px;
}
.faq_contents__list__a {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #40291b;
  line-height: 1.8em;
}
@media all and (max-width: 639px) {
  .faq_contents__list__a {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.faq_contents .faq_contact {
  margin-top: 20px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #f0e4c8;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .faq_contents .faq_contact {
    padding: 16px;
  }
}
.faq_contents .faq_contact__item {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #40291b;
  line-height: 1.7em;
}
@media all and (max-width: 639px) {
  .faq_contents .faq_contact__item {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.faq_contents .faq_contact__item:nth-child(n+2) {
  margin-top: 6px;
}
.faq_contents .faq_contact__item i {
  color: #e66c1f;
  margin-right: 10px;
}
.faq_contents .faq_contact__item a {
  color: #e15935;
  font-weight: 700;
  text-decoration: underline;
}
.faq_contents .faq_icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq_contents .faq_icon:before, .faq_contents .faq_icon:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #e66c1f;
  top: 0;
  bottom: 0;
}
.faq_contents .faq_icon:after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.faq_contents li.active .faq_icon:after {
  transform: rotate(0);
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
.contact .form-contents {
  margin-top: 50px;
  padding: 60px;
}
@media all and (max-width: 639px) {
  .contact .form-contents {
    padding: 60px 20px;
  }
}
.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 #e66c1f;
  border-bottom: 1px solid #e66c1f;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  color: #e66c1f;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 40px;
  transition: 0.4s;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .contact .accbox label .more {
    margin-left: 0;
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
  }
}
.contact .accbox label .more span {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .contact .accbox label .more span {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
  }
}
.contact .accbox label:hover .more {
  background: #e66c1f;
  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: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #40291b;
  text-align: left;
  letter-spacing: 0;
  width: 85%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .contact .accbox .accshow_1 .main {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.7em;
  }
}
.contact .accbox .accshow_1 .main span {
  display: block;
  margin-top: 20px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  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;
}

/*--------------------------------------------------
新着情報(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: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right .side_titem {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  font-weight: 500;
  display: block;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right .side_titem span {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 600;
  }
}
#topics_1 .inner .right ul.post_list li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#topics_1 .inner .right ul.post_list li a {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  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;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right ul.post_list li a {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #e66c1f;
  opacity: 0.5;
  position: relative;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right ul.post_list li a .data {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHaRP, "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 .right ul.post_list li a .title {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #40291b;
  display: block;
  margin-top: 4px;
  line-height: 1.8em;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right ul.post_list li a .title {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
  }
}
#topics_1 .inner .right ul.post_list li a:hover {
  background: rgba(238, 238, 238, 0.4);
  transition: 0.4s;
}
#topics_1 .entry .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #e66c1f;
}
@media all and (max-width: 639px) {
  #topics_1 .entry .data {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#topics_1 .entry .title {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  color: #40291b;
}
@media all and (max-width: 639px) {
  #topics_1 .entry .title {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: 600;
  }
}
#topics_1 .entry .main_cont {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 30px;
  color: #40291b;
}
@media all and (max-width: 639px) {
  #topics_1 .entry .main_cont {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
  }
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}
