@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;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, "Outfit", "Zen Kaku Gothic New", sans-serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #d8d8d8;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #3d8594;
}
@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, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
}

#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: #2c2f58;
  text-decoration: none;
}

.tbox {
  border: 2px solid #2c2f58;
  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;
  background: #fff;
  position: relative;
}
header #head {
  margin: 0 auto;
  padding: 25px 0;
}
@media all and (max-width: 821px) {
  header #head {
    padding: 20px 10px;
    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 {
  width: 438px;
  position: relative;
}
@media all and (max-width: 639px) {
  header #head .logo {
    width: 249px;
    margin-top: 0;
  }
}
header #head .logo a {
  display: block;
}
@media all and (max-width: 639px) {
  header #head .logo a {
    margin-top: 0;
  }
}
header #head .logo img {
  width: 100%;
  height: auto;
}
header #head .head_nav {
  display: flex;
  list-style: none;
  margin-right: 250px;
}
header #head .head_nav > li {
  position: relative;
}
header #head .head_nav > li:nth-child(n+2) {
  margin-left: 30px;
}
header #head .head_nav > li:last-child {
  display: none;
}
header #head .head_nav > li a {
  text-decoration: none;
  display: block;
  color: #2c2f58;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  font-weight: 500;
  position: relative;
  padding-top: 10px;
  transition: 0.2s;
}
header #head .head_nav > li a span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-weight: 700;
  color: #3d8594;
}
header #head .head_nav > li a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 5px;
  height: 5px;
  background: #2c2f58;
  margin: auto;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s;
}
header #head .head_nav > li a:hover {
  color: #3d8594;
  transition: 0.2s;
}
header #head .head_nav > li a:hover:before {
  opacity: 1;
  transition: 0.2s;
}
@media all and (max-width: 821px) {
  header #head .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: rgba(44, 47, 88, 0.96);
    z-index: 9998;
    margin-right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
  }
  header #head .head_nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header #head .head_nav > li:nth-child(n+2) {
    margin-left: 0;
  }
  header #head .head_nav > li:last-child {
    display: block;
  }
  header #head .head_nav > li a {
    text-align: center;
    color: #fff;
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
  }
  header #head .head_nav > li a span {
    color: #3d8594;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
header a.contact_lin {
  position: absolute;
  display: table;
  top: 25px;
  right: 20px;
  padding-left: 37px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #297681 0%, #07105f 100%);
  padding: 16px 40px;
  border-radius: 100px;
}
@media all and (max-width: 821px) {
  header a.contact_lin {
    display: none;
  }
}

.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: #3d8594;
    position: fixed;
    top: 0px;
    right: 8px;
    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;
  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: #efa01f;
  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: #2c2f58;
  color: #fff;
}
table td b {
  color: #2c2f58;
  font-size: 12px;
}
table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}

/* 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: #3d8594;
  font-weight: bold;
  border: 2px solid #3d8594;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #3d8594;
}
#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 #2c2f58;
  border-bottom: 3px solid #2c2f58;
  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: auto;
  }
}
.top_main .top_main_vis img {
  display: block;
  height: 100%;
}
.top_main .fv-copy {
  position: absolute;
  left: 0;
  bottom: -9%;
  z-index: 2;
  padding: 48px 72px 42px 48px;
}
@media all and (max-width: 821px) {
  .top_main .fv-copy {
    padding: 28px 52px 24px 18px;
    position: relative;
    bottom: auto;
    margin-top: -40px;
  }
}
.top_main .fv-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #77c1ae 0%, #3d8594 100%);
  mix-blend-mode: multiply;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.top_main .fv-copy img {
  display: block;
  width: min(520px, 70vw);
  height: auto;
}
.top_main .fv-copy img,
.top_main .fv-copy .text {
  position: relative;
  z-index: 1;
}

.section_title {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #1d201f;
  font-weight: 600;
}
@media all and (max-width: 821px) {
  .section_title {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
  }
}
.section_title span {
  display: table;
  margin: auto;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 41px;
  font-size: 4.1rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  background: linear-gradient(90deg, #297681 0%, #07105f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
@media all and (max-width: 821px) {
  .section_title span {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 38px;
    font-size: 3.8rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}

.btt {
  display: block;
  margin: 50px auto 0;
}
.btt span {
  display: table;
  margin: auto;
  position: relative;
  color: #2c2f58;
  padding-right: 64px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
}
.btt span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 53px;
  height: 53px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  transition: 0.4s;
}
.btt:hover span:before {
  right: -6px;
  transition: 0.4s;
}

.top_news {
  padding-top: 70px;
  padding-bottom: 80px;
}
@media all and (max-width: 821px) {
  .top_news {
    padding-bottom: 0;
  }
}
.top_news .single {
  padding: 80px;
}
@media all and (max-width: 821px) {
  .top_news .single {
    padding: 60px 20px;
  }
}
.top_news .section_title {
  text-align: left;
}
@media all and (max-width: 821px) {
  .top_news .section_title {
    text-align: center;
  }
}
.top_news__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 821px) {
  .top_news__in {
    display: block;
  }
}
.top_news__in .right {
  width: 60%;
  margin-left: 60px;
}
@media all and (max-width: 821px) {
  .top_news__in .right {
    margin-left: 0;
    width: 100%;
  }
}
@media all and (max-width: 821px) {
  .top_news__postlist {
    margin-top: 30px;
  }
}
.top_news__postlist li {
  border-bottom: 1px solid #d8d8d8;
  padding: 15px;
}
.top_news__postlist li:first-child {
  border-top: 1px solid #d8d8d8;
}
.top_news__postlist li p {
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.top_news__postlist li p span {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  opacity: 0.7;
  display: block;
}
@media all and (max-width: 821px) {
  .top_news__postlist li p span {
    display: block;
  }
}

.top_about {
  position: relative;
}
.top_about: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/28141/top_about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: 0;
  top: 0;
  border-radius: 0 20px 20px 0;
}
@media all and (max-width: 821px) {
  .top_about:before {
    display: none;
  }
}
.top_about .section_title {
  text-align: left;
}
.top_about .section_title span {
  margin-left: 0;
}
.top_about .in {
  width: 52%;
  margin-left: auto;
}
@media all and (max-width: 821px) {
  .top_about .in {
    width: 100%;
  }
}
.top_about__main {
  margin-top: 40px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
  line-height: 2.5em;
}
.top_about__main span {
  display: block;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #3d8594;
  margin-bottom: 20px;
}
.top_about__bottom {
  display: block;
  position: absolute;
  bottom: -90px;
  max-width: 1287px;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.top_service {
  padding-top: 180px;
}
@media all and (max-width: 821px) {
  .top_service {
    padding-top: 0;
  }
}
.top_service .single_new {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/top_service_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_service__main {
  margin-top: 40px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
  text-align: center;
  line-height: 2em;
}
@media all and (max-width: 821px) {
  .top_service__main {
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
.top_service__main span {
  display: block;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #3d8594;
  margin-bottom: 10px;
}
.top_service__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 821px) {
  .top_service__list {
    display: block;
  }
}
.top_service__listitem {
  width: 32%;
  margin-right: 2%;
  background: #fff;
  background: #fff;
  border-radius: 20px;
}
@media all and (max-width: 821px) {
  .top_service__listitem {
    width: 100%;
    margin: 0 0 40px;
  }
}
.top_service__listitem:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 821px) {
  .top_service__listitem:nth-child(3n) {
    margin-bottom: 0;
  }
}
.top_service__listitem img {
  display: block;
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.top_service__listtext {
  padding: 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
}
.top_service__listtext span {
  display: block;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  font-weight: 600;
  color: #2c2f58;
  margin-bottom: 10px;
}

.top_recru {
  position: relative;
  padding-top: 100px;
}
@media all and (max-width: 821px) {
  .top_recru {
    padding-top: 0;
  }
}
.top_recru:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 85%;
  height: 73%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/top_recru_bg.jpg);
  left: 0;
  bottom: 10%;
}
.top_recru__title {
  display: block;
  position: relative;
  padding: 180px 0;
}
@media all and (max-width: 821px) {
  .top_recru__title {
    padding: 0;
  }
}
.top_recru__title:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63%;
  height: 100%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/top_recru.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
  border-radius: 40px 0 0 40px;
}
@media all and (max-width: 821px) {
  .top_recru__title:before {
    display: none;
  }
}
.top_recru__title .section_title {
  text-align: left;
}
.top_recru__title .section_title span {
  margin-left: 0;
}
.top_recru__title img._sp {
  display: none;
}
@media all and (max-width: 821px) {
  .top_recru__title img._sp {
    display: block;
    width: 100%;
  }
}
.top_recru__conte {
  position: relative;
}
@media all and (max-width: 821px) {
  .top_recru__conte .single {
    padding: 0;
  }
}
.top_recru__conte .top_recru__conte_asirai {
  display: block;
  position: absolute;
  max-width: 927px;
  width: 70%;
  left: 3%;
}
.top_recru__contein {
  width: 63%;
  margin-left: auto;
}
@media all and (max-width: 821px) {
  .top_recru__contein {
    width: 100%;
  }
}
.top_recru__contein .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
  line-height: 2em;
  text-wrap: balance;
  word-break: auto-phrase;
}
.top_recru__contein .main span {
  display: block;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1d201f;
  margin-bottom: 30px;
}
.top_recru__contein .btt span {
  margin-left: 0;
}
.top_recru__sli {
  margin-top: 50px;
}
.top_recru__sli ul li {
  padding: 0 10px;
}
.top_recru__sli ul li:nth-child(even) {
  margin-top: 40px;
}
.top_recru__sli ul li img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.top_works {
  position: relative;
  margin-top: 70px;
  margin-bottom: 80px;
}
@media all and (max-width: 821px) {
  .top_works {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.top_works:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 50%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/top_works_bg.jpg);
  opacity: 0.6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: 0;
}
.top_works__cont {
  max-width: 788px;
  width: 90%;
  margin: auto;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  padding: 60px;
}
@media all and (max-width: 821px) {
  .top_works__cont {
    padding: 60px 20px;
    width: 96%;
  }
}
.top_works__main {
  margin-top: 40px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
  line-height: 2.5em;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
.top_works__main span {
  display: block;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #3d8594;
  margin-bottom: 20px;
}

footer {
  position: relative;
  margin-top: 80px;
}
footer:before, footer:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 90%;
  bottom: 0;
}
footer:before {
  background: linear-gradient(90deg, #297681 0%, #07105f 100%);
}
footer:after {
  z-index: 2;
}
footer .single_new {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 821px) {
  footer .foot_cont {
    padding-top: 50px;
  }
}
footer .foot_cont .section_title {
  text-align: left;
}
footer .foot_cont .section_title span {
  margin-left: 0;
}
footer .foot_cont .inne {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 821px) {
  footer .foot_cont .inne {
    display: block;
  }
}
footer .foot_cont .inne .in_left {
  width: 43%;
}
@media all and (max-width: 821px) {
  footer .foot_cont .inne .in_left {
    width: 100%;
  }
}
footer .foot_cont .inne .in_right {
  margin-left: auto;
  width: 55%;
}
@media all and (max-width: 821px) {
  footer .foot_cont .inne .in_right {
    width: 100%;
    margin-top: 30px;
  }
}
footer .foot_cont .inne .in_right ul {
  border-top: 1px solid #3d8594;
  border-bottom: 1px solid #3d8594;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding: 30px 0;
}
@media all and (max-width: 821px) {
  footer .foot_cont .inne .in_right ul {
    display: block;
    border: none;
    padding: 0;
  }
}
footer .foot_cont .inne .in_right ul li a {
  display: table;
  position: relative;
  padding-left: 43px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #3d8594;
}
footer .foot_cont .inne .in_right ul li a img {
  display: block;
  position: absolute;
  width: 36px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
footer .foot_cont .inne .in_right ul li:nth-child(2) {
  border-left: 1px solid #3d8594;
  margin-left: 40px;
  padding-left: 40px;
}
@media all and (max-width: 821px) {
  footer .foot_cont .inne .in_right ul li:nth-child(2) {
    border: none;
    padding-left: 0;
    margin-left: 0;
  }
}
footer .foot_cont .foot_cont_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
  line-height: 2em;
}
footer .foot_bottom .single {
  position: relative;
}
footer .foot_bottom .foot_logo {
  display: block;
  max-width: 390px;
  width: 100%;
}
footer .foot_bottom .foot_bottom_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 500;
  color: #fff;
  margin-top: 35px;
}
footer .copy {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: 500;
  z-index: 2;
  color: #f5f7fa;
  position: absolute;
  right: 0;
  bottom: 80px;
}
@media all and (max-width: 821px) {
  footer .copy {
    position: relative;
    bottom: auto;
  }
}
@media all and (max-width: 639px) {
  footer .copy {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    margin-top: 50px;
    text-align: center;
  }
}

/*--------------------------------------------------
下層ページタイトル
----------------------------------------------------*/
.pagetitle {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media all and (max-width: 821px) {
  .pagetitle {
    padding: 0;
  }
}
.pagetitle:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(7, 16, 95, 0) 0%, rgba(7, 16, 95, 0.9) 90%, rgba(7, 16, 95, 0.9) 100%);
  mix-blend-mode: multiply;
  top: 0;
}
.pagetitle.page_about {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_abou.jpg);
}
.pagetitle.page_service {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_service.jpg);
}
.pagetitle.page_works {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_works.jpg);
}
.pagetitle.page_recruit {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_recruit.jpg);
}
.pagetitle.page_contact {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_contact.jpg);
}
.pagetitle h2 {
  text-align: left;
  color: #fff;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  font-weight: 600;
}
@media all and (max-width: 821px) {
  .pagetitle h2 {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: 500;
    font-weight: 600;
  }
}
.pagetitle h2 span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1em;
}
@media all and (max-width: 821px) {
  .pagetitle h2 span {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}

.page_item_read {
  position: relative;
  padding-left: 25px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  font-weight: 600;
}
.page_item_read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 17px;
  height: 5px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_cont_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}

/*--------------------------------------------------
会社概要(about.php)
----------------------------------------------------*/
.greeting {
  padding-top: 50px;
}
.greeting__main {
  max-width: 898px;
  margin: 30px auto 0;
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.3em;
}
.greeting__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.greeting__name {
  margin-left: 30px;
}
.greeting__name p {
  color: #1d201f;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
}

.companyprof .single_new {
  background: #f5f7fa;
}
.companyprof .innerB {
  margin-top: 60px;
}
.companyprof table.company_table {
  width: 100%;
  border-top: 1px solid #d8d8d8;
}
.companyprof table.company_table th,
.companyprof table.company_table td {
  background: none;
  text-align: left;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 13px;
}
@media all and (max-width: 821px) {
  .companyprof table.company_table th,
  .companyprof table.company_table td {
    display: block;
  }
}
@media all and (max-width: 821px) {
  .companyprof table.company_table th {
    background: #fff;
  }
}
.companyprof__his {
  margin-bottom: 50px;
}
.companyprof .history_table {
  width: 100%;
  margin-top: 15px;
}
.companyprof .history_table th,
.companyprof .history_table td {
  background: none;
  text-align: left;
  border: none;
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0;
}
.companyprof .page_item_read {
  border-bottom: 1px solid #fff;
}

.organization table {
  max-width: 1065px;
  width: 100%;
  border-top: 1px solid #d8d8d8;
}
.organization table th,
.organization table td {
  background: none;
  border: none;
  border-bottom: 1px dashed #d8d8d8;
  padding: 40px 20px;
  vertical-align: text-top;
}
@media all and (max-width: 821px) {
  .organization table th,
  .organization table td {
    display: block;
  }
}
.organization table th {
  color: #1d201f;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 40px 50px;
}
@media all and (max-width: 821px) {
  .organization table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.organization__text {
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.organization__text:nth-child(n+2) {
  margin-top: 20px;
}
.organization__text span {
  position: relative;
  display: block;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 24px;
}
.organization__text span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 17px;
  height: 5px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_cont_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
.organization tr:last-child th,
.organization tr:last-child td {
  border-bottom: 1px solid #d8d8d8;
}
@media all and (max-width: 821px) {
  .organization tr:last-child th {
    border-bottom: none;
  }
}

/*--------------------------------------------------
事業内容(service.php)
----------------------------------------------------*/
.service_page .service_layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 70px;
  align-items: start;
}
.service_page .service_nav {
  position: sticky;
  top: 120px;
  border-left: 3px solid #ddd;
  padding-left: 20px;
}
.service_page .service_nav ul {
  display: grid;
  gap: 18px;
}
.service_page .service_nav a {
  position: relative;
  display: block;
  color: #1d201f;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.service_page .service_nav a::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  width: 8px;
  height: 2px;
  background: linear-gradient(90deg, #297681 0%, #07105f 100%);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.service_page .service_nav a.is-active,
.service_page .service_nav a:hover {
  color: #3d8594;
}
.service_page .service_nav a.is-active::before {
  opacity: 1;
}
.service_page .service_contents {
  margin-top: 50px;
}
.service_page .service_block {
  scroll-margin-top: 130px;
  margin-bottom: 120px;
}
.service_page .service_block .service_contents__name {
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 26px;
  font-size: 2.6rem;
}
.service_page .service_block .service_contents__name span {
  margin-left: 10px;
  color: #2c2f58;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1em;
}
.service_page .service_lead {
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.service_page .service_dummy__list {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 821px) {
  .service_page .service_dummy__list {
    display: block;
  }
}
.service_page .service_dummy__list li {
  width: 48%;
}
@media all and (max-width: 821px) {
  .service_page .service_dummy__list li {
    width: 100%;
    margin: 0 0 40px;
  }
}
.service_page .service_dummy__list li:nth-child(even) {
  margin-left: auto;
}
.service_page .service_dummy__list li:nth-child(n+3) {
  margin-top: 50px;
}
@media all and (max-width: 821px) {
  .service_page .service_dummy__list li:nth-child(n+3) {
    margin-top: 0;
  }
}
.service_page .service_dummy__name {
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  font-weight: 600;
  position: relative;
  padding-left: 24px;
  margin-top: 20px;
}
.service_page .service_dummy__name:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 17px;
  height: 5px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_cont_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
.service_page .service_dummy__info {
  margin-top: 15px;
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .service_page .service_layout {
    display: block;
  }
  .service_page .service_nav {
    position: sticky;
    top: 70px;
    z-index: 10;
    margin-bottom: 40px;
    padding: 14px 0;
    border-left: none;
    background: rgba(255, 255, 255, 0.9);
    overflow-x: auto;
  }
  .service_page .service_nav ul {
    display: flex;
    gap: 20px;
    white-space: nowrap;
  }
  .service_page .service_nav a::before {
    display: none;
  }
}

/*--------------------------------------------------
実績紹介(works.php)
----------------------------------------------------*/
@media all and (max-width: 821px) {
  .works .single {
    padding-bottom: 0;
  }
}
.works .works_du__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 821px) {
  .works .works_du__list {
    display: block;
  }
}
.works .works_du__list li {
  width: 32%;
  margin-right: 2%;
}
@media all and (max-width: 821px) {
  .works .works_du__list li {
    width: 100%;
    margin: 0 0 50px;
  }
}
.works .works_du__list li:nth-child(3n) {
  margin-right: 0;
}
.works .works_du__list li:nth-child(n+4) {
  margin-top: 50px;
}
.works .works_du__list li img {
  display: block;
  width: 100%;
}
.works .works_du__name {
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  font-weight: 600;
  position: relative;
  padding-left: 24px;
  margin-top: 20px;
  line-height: 1.6em;
}
.works .works_du__name:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 17px;
  height: 5px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28141/page_cont_icon.svg);
  margin: auto;
  top: 15px;
  left: 0;
}
.works .works_du__info {
  margin-top: 15px;
  color: #1d201f;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

/*--------------------------------------------------
採用情報(recruit.php)
----------------------------------------------------*/
.rec_messe__read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #3d8594;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 30px;
  text-wrap: balance;
  word-break: auto-phrase;
}
.rec_messe .innerB {
  margin-top: 50px;
}
.rec_messe__main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
}

.rec_data .data_list {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 821px) {
  .rec_data .data_list {
    display: block;
  }
}
.rec_data .data_list__item {
  width: 23.5%;
  margin-right: 2%;
  background: #f5f7fa;
  padding: 40px;
}
@media all and (max-width: 821px) {
  .rec_data .data_list__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.rec_data .data_list__item:nth-child(4n) {
  margin-right: 0;
}
.rec_data .data_list__name {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 500;
  font-weight: 600;
  color: #2c2f58;
}
.rec_data .data_list img {
  display: block;
  width: 40%;
  margin: 15px auto;
}
.rec_data .data_list__text {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 500;
  font-weight: 600;
  color: #2c2f58;
}
.rec_data .data_list__text span {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
.rec_data .data_grh {
  background: #f5f7fa;
  padding: 40px 20px;
  margin: 40px auto 0;
  max-width: 600px;
  width: 100%;
}
.rec_data .data_grh .in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.rec_data .data_grh .in img {
  display: block;
  width: 172px;
}
.rec_data .data_grh .in .in_item {
  margin: 0 10px;
}
.rec_data .data_grh__name {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 500;
  font-weight: 600;
  color: #2c2f58;
}
.rec_data .data_grh__text {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  color: #2c2f58;
}
.rec_data .data_grh__text span {
  display: block;
}

.recinfo {
  margin-top: 60px;
  background: #f5f7fa;
}
.recinfo__main {
  text-align: center;
  margin-top: 20px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1d201f;
}
.recinfo .recruit_tabs {
  margin-top: 60px;
}
.recinfo .recruit_tabs__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 70px;
}
.recinfo .recruit_tabs__nav button {
  height: 72px;
  border: 1px solid #d9dde5;
  background: #fff;
  color: #1d201f;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: 0.3s;
  cursor: pointer;
}
.recinfo .recruit_tabs__nav button.is-active {
  color: #fff;
  background: linear-gradient(90deg, #297681 0%, #07105f 100%);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(7, 16, 95, 0.16);
}
.recinfo .recruit_tabs__contents {
  background: #fff;
  border-radius: 14px;
  padding: 70px 90px;
}
.recinfo .recruit_tabs__panel {
  display: none;
}
.recinfo .recruit_tabs__panel.is-active {
  display: block;
  animation: fadeTab 0.35s ease;
}
.recinfo .recruit_tabs__panel h3 {
  text-align: center;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 55px;
}
.recinfo .recruit_block {
  border-top: 1px dashed #d8d8d8;
  padding: 38px 0;
}
.recinfo .recruit_block:last-child {
  border-bottom: 1px dashed #d8d8d8;
}
.recinfo .recruit_block h4 {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 28px;
  padding-left: 26px;
}
.recinfo .recruit_block h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #297681 0%, #07105f 100%);
}
.recinfo .recruit_block table {
  width: 100%;
  border-collapse: collapse;
}
.recinfo .recruit_block table th,
.recinfo .recruit_block table td {
  padding: 10px 18px;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  background: none;
  color: #1d201f;
}
.recinfo .recruit_block table th {
  font-weight: 700;
  background: #eee;
}
.recinfo .recruit_block dl {
  display: grid;
  border-top: 1px solid #d8d8d8;
}
.recinfo .recruit_block dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  border-bottom: 1px solid #d8d8d8;
  padding: 20px;
}
.recinfo .recruit_block dl dt {
  font-weight: 700;
  color: #1d201f;
}
.recinfo .recruit_block dl dd {
  line-height: 1.9;
}
.recinfo .recruit_note {
  margin-top: 18px;
  font-size: 14px;
}
@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .recinfo .recruit_tabs__nav {
    gap: 12px;
    margin-bottom: 35px;
  }
  .recinfo .recruit_tabs__nav button {
    height: 56px;
  }
  .recinfo .recruit_tabs__contents {
    padding: 38px 22px;
    border-radius: 10px;
  }
  .recinfo .recruit_tabs__panel h3 {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .recinfo .recruit_block {
    padding: 28px 0;
  }
  .recinfo .recruit_block table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .recinfo .recruit_block dl div {
    display: block;
  }
  .recinfo .recruit_block dl dt {
    margin-bottom: 4px;
  }
}
.recinfo .recinfo__link {
  display: block;
  margin: 90px auto 0;
  max-width: 848px;
  width: 100%;
  position: relative;
}
.recinfo .recinfo__link img {
  display: block;
  width: 100%;
}
.recinfo .recinfo__link .btt {
  background: #fff;
  padding: 30px 0;
  max-width: 400px;
  border-radius: 100px;
  border: 1px solid #2c2f58;
  margin: -40px 20px 0 auto;
  position: relative;
}
@media all and (max-width: 821px) {
  .recinfo .recinfo__link .btt {
    width: 70%;
    padding: 20px 0;
  }
}
@media all and (max-width: 821px) {
  .recinfo .recinfo__link .btt span {
    padding-right: 40px;
  }
}
@media all and (max-width: 821px) {
  .recinfo .recinfo__link .btt span:before {
    width: 30px;
    height: 30px;
  }
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
.contact__tellink {
  background: #2c2f58;
  padding: 40px;
  margin: 50px auto;
  max-width: 600px;
  width: 100%;
}
.contact__tellinktext {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f5f7fa;
  text-wrap: balance;
  word-break: auto-phrase;
}
.contact__tellinkjikan {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f5f7fa;
  text-wrap: balance;
  word-break: auto-phrase;
}
.contact a {
  display: table;
  color: #3d8594;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-weight: 500;
  position: relative;
  padding-left: 60px;
  margin: 10px auto;
}
@media all and (max-width: 821px) {
  .contact a {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-weight: 500;
    padding-left: 48px;
  }
}
.contact a img {
  display: block;
  position: absolute;
  width: 48px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media all and (max-width: 821px) {
  .contact a img {
    width: 39px;
  }
}
.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 #2c2f58;
  border-bottom: 1px solid #2c2f58;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c2f58;
  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;
  }
}
.contact .accbox label .more span {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
.contact .accbox label:hover .more {
  background: #2c2f58;
  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, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1d201f;
  text-align: left;
  letter-spacing: 0;
  width: 85%;
  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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  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: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #2c2f58;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  font-weight: 500;
  display: block;
}
#topics_1 .inner .right ul.post_list li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#topics_1 .inner .right ul.post_list li a {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  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: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #2c2f58;
  opacity: 0.5;
  position: relative;
}
#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHaMP, "Zen Old Mincho", 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, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: 400;
  color: #1d201f;
  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: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #2c2f58;
}
#topics_1 .entry .title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 500;
  color: #1d201f;
}
#topics_1 .entry .main_cont {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 30px;
  color: #1d201f;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */