@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* @import "_vars.scss"; */
/* font */
/* width */
/* color */
/*サイトのメインカラー*/
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

in your CSS
--------------------------------------------------------- */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.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);
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !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 {
    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); 


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

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}
.innerB .left, .innerB .right {
  width: 48%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left, .innerB .right {
    width: 100%;
    float: none;
  }
}
.innerB .right {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}
.innerB .left_s {
  width: 30%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}
.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

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

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

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  padding-bottom: 80px;
}
#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #f5f6f1;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #ABCD04;
}
@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();
}
-------------------------------------------------------------------*/
/*awesome
-------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 1.6rem;
  *font-size: small;
  *font: x-small;
  line-height: 1.8;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
}
body.is-opened {
  height: 100%;
  overflow: hidden;
}

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

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

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

.space {
  padding: 0 15px;
}

.vertical_space {
  padding: 15px 0;
}

@media all and (max-width: 639px) {
  .more_link {
    font-size: 1.4rem !important;
  }
}

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

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

.top_bg01 {
  background: url("../img/top_bg01.png") no-repeat center top;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.top_bg01 section {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .top_bg01 {
    margin-bottom: 0px;
    padding-bottom: 40px;
  }
}

.infiniteslide1 {
  height: 200px !important;
  overflow: hidden;
  border-top: 3px solid #aaa;
  border-bottom: 3px solid #aaa;
}
.infiniteslide1 li img {
  height: 200px !important;
}
@media screen and (max-width: 768px) {
  .infiniteslide1 {
    height: 100px;
  }
  .infiniteslide1 img {
    height: 100px;
  }
}

.nbl {
  overflow: hidden;
}
.nbl dt {
  float: left;
  width: 7em;
  padding: 3px 5px;
  line-height: 1.3;
  color: #fff;
  background: #A64A96;
  text-align: center;
  margin: 0px 0;
}

.grid .nbl dt {
  width: 4em;
}
.grid .nbl dd {
  padding-left: 6em;
}

.nbl dd {
  padding-left: 9em;
  padding-top: 0px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 0px 0 10px;
}

.gallery {
  background: #f2f2f2;
  width: 100%;
  height: 200px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-bottom: 10px;
}

.grid {
  position: relative;
  margin: 0 0 30px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.grid-item {
  /*アニメーション*/
  transition: 0.3s ease-in-out;
  width: calc(33% - 30px) !important;
  font-size: 12px;
  background: #fff;
  padding: 10px 10px 10px;
  margin-left: 5px;
  margin-right: 5px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
}
.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  background-image: url(../img/pgb.png);
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
}
.grid-item * {
  transition: 0.3s;
}
.grid-item h5 {
  font-size: 1.6rem;
  text-align: center;
  color: #A64A96;
}
.grid-item p {
  line-height: 1.6em;
  font-size: 13px;
}
.grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.grid-item a:hover img {
  opacity: 0.1;
  transform: scale(1.2);
}

.split_bx {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bg_top.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
}
.split_bx img {
  top: 35%;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .split_bx {
    top: 0;
  }
}

.split {
  visibility: hidden;
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #A64A96;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  text-shadow: 0 2px 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}
@media screen and (max-width: 768px) {
  .split {
    font-size: 1.8rem;
  }
}

.scr2 {
  z-index: 999999999;
}

.blanket li {
  padding: 0px 0;
  height: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: -150px;
}
.blanket li:nth-child(2n) {
  display: block;
}
.blanket li:nth-child(2n) .image {
  margin: 0 auto;
}
.blanket li:nth-child(2n) .blanket_ttl_top {
  text-align: left;
  color: #ABCD04 !important;
}
.blanket li .image,
.blanket li .detailBox {
  width: 50%;
  box-sizing: border-box;
  transition-duration: 0.8s;
}
.blanket li .image {
  transform: translateY(0px);
}
.blanket li .image img {
  box-shadow: rgba(166, 74, 150, 0.1) -50px 50px 0 0;
}
.blanket li .detailBox {
  transform: translateY(-50%);
  position: relative;
}
.blanket li .textBox {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px 60px;
  border: 1px solid #A64A96;
}
.blanket li .blanket_ttl_top {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  letter-spacing: 0.2rem;
  font-size: 5rem;
  font-weight: normal;
  margin-bottom: 10px;
  text-indent: 2rem;
  text-align: right;
  transform: translateY(-100%);
  position: relative;
}
.blanket li .blanket_ttl_top span {
  display: block;
  font-size: 1.8rem;
}
.blanket li .blanket_ttl {
  font-size: 2.4rem;
  font-weight: normal;
  color: #A64A96;
  margin-bottom: 10px;
}
.blanket li .btn {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -30px);
}

.btn_slash {
  line-height: 1;
  color: #fff;
  text-align: center;
  width: 270px;
  margin: 0 auto;
}
.btn_slash:before {
  background: #ABCD04;
  transform: skew(-12deg);
  z-index: 2;
}
.btn_slash:after {
  transform: skew(-12deg) translate(8px, 8px);
  border-color: #ABCD04;
  z-index: 1;
}
.btn_slash:before, .btn_slash:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ABCD04;
  box-sizing: border-box;
  transition: 0.2s ease-out;
}
.btn_slash a {
  padding: 20px 0 21px;
  color: #fff;
  display: block;
  position: relative;
  z-index: 3;
  transition: 0.2s ease-out;
  text-decoration: none;
}
.btn_slash:hover:before {
  border-color: #02672c;
  background-color: #02672c;
  transform: skew(-12deg) translate(4px, 4px);
}
.btn_slash:hover:after {
  border-color: #02672c;
  transform: skew(-12deg) translate(4px, 4px);
}
.btn_slash:hover a {
  transform: translate(4px, 4px);
}

@media screen and (max-width: 768px) {
  .blanket li {
    display: block;
    margin: 0;
  }
  .blanket li:nth-child(2n) {
    display: block;
  }
  .blanket li:nth-child(2n) .image {
    margin: 0 auto;
  }
  .blanket li:nth-child(2n) .blanket_ttl_top {
    text-align: left;
  }
  .blanket li .image,
  .blanket li .detailBox {
    width: 100%;
  }
  .blanket li .detailBox {
    transform: translateY(0%);
    position: static;
    padding: 20px 0;
  }
  .blanket li .image img {
    box-shadow: rgba(166, 74, 150, 0.1) -10px 10px 0 0;
  }
  .blanket li .textBox {
    width: calc(100% - 20px);
    background: white;
    padding: 15px 10px;
  }
  .blanket li .blanket_ttl_top {
    font-size: 3rem;
    transform: translateY(0%);
    position: static;
    text-align: left;
    margin-bottom: 0;
    text-indent: 1rem;
  }
  .blanket li .blanket_ttl_top span {
    font-size: 1.3rem;
  }
  .blanket li .blanket_ttl {
    font-size: 2rem;
    font-weight: normal;
  }
  .blanket li .btn {
    width: 90% !important;
    position: static;
    top: 0;
    left: 0;
    transform: translate(0%, 0px);
  }
  .blanket .btn_slash {
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 25px auto 0;
  }
}
.bg_text1 {
  background: url("../img/bg_text1.png") no-repeat top center;
}

.mtext1 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .mtext1 {
    font-size: 1.5rem !important;
  }
}

.mtext2 {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mtext2 {
    font-size: 1.5rem !important;
  }
}
.mtext2 span {
  font-size: 1.5rem;
}

.border01 {
  border-top: 2px solid #ABCD04;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
}

.mtext02 {
  font-size: 2.3rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.mtext_big {
  font-size: 3rem;
}

.list_disc li {
  padding: 3px 0 3px 20px;
  text-align: left;
  position: relative;
  color: #292F4A;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 3px;
}
.list_disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: #ABCD04;
  font-size: 0.7em;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: inherit;
  }
}

.note-box {
  width: 80%;
  margin: auto;
  padding: 35px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .note-box {
    display: block;
    width: 99%;
    padding: 20px;
  }
}
.note-box.sec {
  margin-bottom: 80px;
}
.note-box .in_left {
  width: 30%;
}
@media all and (max-width: 639px) {
  .note-box .in_left {
    width: 100%;
  }
}
.note-box .in_right {
  width: 70%;
}
@media all and (max-width: 639px) {
  .note-box .in_right {
    width: 100%;
  }
}
.note-box .in_right .color1 {
  color: #A64A96;
}

header {
  width: 100%;
  z-index: 2222;
  position: absolute;
}
@media all and (max-width: 639px) {
  header {
    padding: 0;
  }
}
header #head {
  /* dropdownmenu */
}
@media screen and (max-width: 768px) {
  header #head {
    width: 100%;
    left: 0;
    top: 0;
    padding-left: 180px;
  }
}
@media all and (max-width: 639px) {
  header #head {
    padding-left: 0;
    margin-top: 0;
    background-size: 300%;
  }
}
header #head .inenr {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
header #head .inenr .in_right {
  margin-left: auto;
}
header #head .logo {
  width: 295px;
  transition: 0.4s;
  margin: 40px auto 0;
  margin-left: 40px;
}
@media all and (max-width: 1190px) {
  header #head .logo {
    width: 215px;
  }
}
@media all and (max-width: 639px) {
  header #head .logo {
    width: auto;
    position: relative;
    top: auto;
    background: none;
    padding: 0;
    margin-left: 20px;
    margin-top: 20px;
    left: auto;
  }
}
header #head .logo a {
  display: block;
  width: 100%;
  position: relative;
}
@media all and (max-width: 639px) {
  header #head .logo a {
    width: 200px;
    line-height: 1em;
  }
}
header #head .logo a:link, header #head .logo a:visited, header #head .logo a:hover {
  color: #fff;
  text-decoration: none;
}
header #head .logo img {
  width: 100%;
  display: block;
  margin: auto;
  margin-top: -4px;
}
@media all and (max-width: 639px) {
  header #head .logo img {
    width: auto;
    margin-top: 0;
  }
}
header #head .hed_nav_bg {
  margin-right: 50px;
  margin-top: 27px;
}
header #head .head_nav {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  justify-content: end;
  width: auto;
  z-index: 2;
  margin-top: 15px;
}
@media all and (max-width: 821px) {
  header #head .head_nav {
    display: none;
  }
}
header #head .head_nav li:nth-child(n+2) {
  margin-left: 30px;
}
header #head .head_nav li a {
  display: block;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
}
@media all and (max-width: 1190px) {
  header #head .head_nav li a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
header #head .hed_contact {
  display: block;
  border: 1px solid #292F4A;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 7px 60px;
  border-radius: 100px;
  display: table;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  header #head .hed_contact {
    display: none;
  }
}
header #head .head_nav li ul {
  position: absolute;
  top: 80px;
  display: block !important;
  padding-top: 30px;
}
header #head .head_nav li ul li {
  visibility: hidden;
  overflow: hidden;
  display: block !important;
  width: 100%;
  height: 0;
  border-right: 0px solid #ddd;
  border-left: 0px solid #ddd;
  padding: 0 0 !important;
  margin: 0 1px 1px !important;
  width: 190px !important;
}
header #head .head_nav li ul li a {
  background: #fff;
  padding: 5px 0 5px 20px !important;
  margin: 0 0px !important;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  font-size: 15px !important;
}
header #head .head_nav li ul li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  left: 5px;
  top: 7px;
  color: #A64A96;
}
header #head .head_nav li ul li a:link, header #head .head_nav li ul li a:visited {
  font-weight: normal;
}
header #head .head_nav li ul li a:hover {
  color: #333;
  font-weight: normal;
}
header #head .head_nav li:hover ul li {
  visibility: visible;
  overflow: visible;
  height: 40px;
}
header.fixd {
  display: block;
  transition: 0.6s;
  z-index: 9;
}

/* nav */
#navi {
  margin: auto;
  width: auto;
}
#navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -4px;
}
#navi li {
  list-style: none;
  text-align: center;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 16px 44px 17px;
  letter-spacing: 0.2rem;
}
#navi li a {
  width: 100%;
  height: 100%;
  line-height: 1.3;
  display: block;
  text-align: center;
  border: none;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
  color: #ABCD04;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#navi li a span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #292F4A;
}
#navi li a img {
  display: block;
  width: auto;
  margin: 0 auto 10px;
  height: 32px;
}
#navi li a:hover {
  color: #A64A96;
  opacity: 0.8;
}

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

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

.map {
  width: 100%;
  height: 450px;
}

/*  scrollbar  */
.scrollbar-y {
  width: 100%;
  height: 350px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .scrollbar-y {
    height: 200px;
  }
}
.scrollbar-y::-webkit-scrollbar {
  width: 5px;
}
.scrollbar-y::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
.scrollbar-y::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mbox_white {
  background: rgba(255, 255, 255, 0.4);
  padding: 30px 20px;
}

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

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

@media screen and (max-width: 800px) {
  table.rstable {
    width: 100%;
  }
  table.rstable td {
    display: block;
    text-align: center;
    width: calc(100% - 2px) !important;
    padding: 5px 0;
  }
  table.rstable th {
    display: block;
    width: calc(100% - 2px) !important;
    overflow: hidden;
    padding: 5px 0;
  }
}
table.tbl-2l {
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}
table.tbl-2l th {
  padding: 15px 10px;
  font-weight: bold;
  line-height: 1.5;
  border: #ddd 0px solid;
  color: #555;
  background: none !important;
}
table.tbl-2l tr:nth-child(odd) {
  background: #f2f2f2 !important;
}
table.tbl-2l td {
  padding: 15px 10px;
  border: #eee 0px solid !important;
}

@media screen and (max-width: 800px) {
  table.tbl-2l {
    margin: 15px 0;
  }
  table.tbl-2l th {
    padding: 5px 0px;
  }
  table.tbl-2l td {
    padding: 5px 5px;
    text-align: left;
    width: calc(100% - 10px) !important;
  }
}
.tbl {
  width: 80%;
  border-top: 1px solid #eee;
  margin: 40px auto 0;
}
.tbl th {
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #464a5b;
  padding: 1.1em 1.5em;
}
.tbl td {
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #464a5b;
  padding: 1.1em 1.5em;
}
@media all and (max-width: 639px) {
  .tbl {
    width: 90%;
  }
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 6px;
    font-size: 12px;
  }
  .tbl th span,
  .tbl td span {
    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: #ABCD04;
  font-weight: bold;
  border: 2px solid #ABCD04;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #ABCD04;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  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 #A64A96;
  border-bottom: 3px solid #A64A96;
  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: 90%;
  /* IE8以下とAndroid4.3以下用フォールバック */
  width: calc(100% - 100px);
  margin: auto;
}
@media all and (max-width: 639px) {
  .single_new {
    width: 95% !important;
  }
}

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

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

#top_main {
  width: 100%;
  position: relative;
  height: 100vh;
  background-image: url(../img/top_main_bg.jpg);
}
@media all and (max-width: 639px) {
  #top_main {
    height: auto;
  }
}
#top_main .top_main_vis {
  height: 100vh;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    height: auto;
  }
}
#top_main ul.slider {
  width: 80%;
  margin-left: auto;
  margin-right: 50px;
}
@media all and (max-width: 639px) {
  #top_main ul.slider {
    width: 100%;
    margin-top: 96px;
  }
}
#top_main ul.slider li {
  width: 100%;
  position: relative;
  background-image: url(../img/01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center right;
  height: 74vh;
  margin-top: 18vh;
  border-radius: 20px;
}
@media all and (max-width: 821px) {
  #top_main ul.slider li {
    margin-top: 14vh;
    height: 80vh;
  }
}
@media all and (max-width: 639px) {
  #top_main ul.slider li {
    height: 44vh;
    margin-top: 0;
  }
}
#top_main ul.slider li:nth-child(2) {
  background-image: url(../img/02.jpg);
}
#top_main ul.slider li:nth-child(3) {
  background-image: url(../img/03.jpg);
  background-position: center bottom;
}
#top_main .top_main_box {
  display: block;
  left: 40px;
  margin: auto;
  bottom: 12vh;
  position: absolute;
  z-index: 222;
  width: 800px;
}
@media all and (max-width: 639px) {
  #top_main .top_main_box {
    width: 80%;
    left: 0;
    right: auto;
    top: auto;
    position: relative;
  }
}
#top_main .top_main_box img {
  display: block;
  height: 100%;
  margin: auto;
}
#top_main .top_main_line {
  display: block;
  width: 100%;
  position: absolute;
  bottom: -1px;
}
#top_main.under {
  height: auto;
  background: none;
}
@media all and (max-width: 639px) {
  #top_main.under {
    height: auto;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
#top_main.under .page_bg {
  position: relative;
  margin-left: auto;
  margin-top: 150px;
}
@media all and (max-width: 639px) {
  #top_main.under .page_bg {
    margin-top: 100px;
  }
}
#top_main.under .page_bg:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 74%;
  border-radius: 20px;
  right: 10px;
}
#top_main.under .page_bg.page_about_bg:before {
  background-image: url(../img/page-title.jpg);
}
#top_main.under .page_bg.page_dayservice_bg:before {
  background-image: url(../img/page-title02.jpg);
  background-position: center bottom;
}
#top_main.under .page_bg.page_guidance_bg:before {
  background-image: url(../img/page-title03.jpg);
}
#top_main.under .page_bg.page_recruit_bg:before {
  background-image: url(../img/page-title04.jpg);
}
#top_main.under .page_bg.page_contact_bg:before {
  background-image: url(../img/page-title05.jpg);
  background-position: center;
}
#top_main.under .single {
  padding: 0;
  z-index: 22;
}
#top_main.under .single h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 43px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #292F4A;
  line-height: 1em;
  padding-top: 16vh;
  padding-bottom: 18vh;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_main.under .single h2 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    padding-top: 12vh;
    padding-bottom: 9vh;
  }
}

#top_5 {
  position: relative;
}
#top_5:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background: #A64A96;
  left: 0;
  top: 0;
}
#top_5 .single {
  position: relative;
}
#top_5 .read {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
}
#top_5 .read span {
  display: table;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #top_5 .read {
    font-size: 1.8rem;
  }
  #top_5 .read span {
    font-size: 1.6rem;
  }
}
#top_5 .inner {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  padding: 20px;
  margin: 0 auto;
  justify-content: center;
  color: #fff;
}
#top_5 .inner .in-right {
  width: 70%;
  margin-left: 50px;
}
@media all and (max-width: 639px) {
  #top_5 .inner {
    justify-content: left;
  }
  #top_5 .inner .in-right {
    width: 100%;
    margin-left: auto;
  }
}
#top_5 ul li {
  border-bottom: 1px solid #fff;
}
#top_5 ul li:first-child {
  border-top: 1px solid #fff;
}
#top_5 ul li a {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  padding: 15px;
  transition: 0.4s;
}
#top_5 ul li a:hover {
  background: rgba(255, 255, 255, 0.4);
  transition: 0.4s;
}
#top_5 ul li a span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-right: 20px;
  color: #ABCD04;
}
@media all and (max-width: 639px) {
  #top_5 ul li a {
    font-size: 1.4rem;
  }
  #top_5 ul li a span {
    font-size: 0.8em;
    display: block;
  }
}

#top_1 {
  position: relative;
  padding: 70px 0;
}
#top_1:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 130px;
  height: 105px;
  background-image: url(../img/top-asirai1.svg);
  right: 10%;
  top: -30px;
}
@media all and (max-width: 639px) {
  #top_1:before {
    width: 90px;
    height: 65px;
    right: 0;
  }
}
#top_1 .single {
  position: relative;
}
#top_1 .single:before, #top_1 .single:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}
#top_1 .single:before {
  width: 119px;
  height: 62px;
  background-image: url(../img/top-asirai2.svg);
  right: 0;
  top: 50px;
}
@media all and (max-width: 639px) {
  #top_1 .single:before {
    display: none;
  }
}
#top_1 .single:after {
  width: 100px;
  height: 109px;
  background-image: url(../img/top-asirai3.svg);
  right: -70px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media all and (max-width: 639px) {
  #top_1 .single:after {
    width: 45px;
    height: 69px;
    right: 0;
  }
}
#top_1 .top_1_asi_en {
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 140px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #FDE5DB;
  letter-spacing: 0;
  line-height: 1em;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  #top_1 .top_1_asi_en {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 57px;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
}
#top_1 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 40px;
}
@media all and (max-width: 639px) {
  #top_1 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
#top_1 .read span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  #top_1 .read span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
  }
}
#top_1 .icon {
  width: 230px;
  margin: 0 auto 20px;
}
#top_1 .icon img {
  max-width: 100%;
}
@media all and (max-width: 639px) {
  #top_1 .icon {
    width: 95px;
  }
}
#top_1 .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  width: 80%;
  margin: 40px auto 0;
  letter-spacing: 0;
  line-height: 2.5em;
  text-align: center;
  text-wrap: balance;
}
@media all and (max-width: 639px) {
  #top_1 .main {
    width: 100%;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 0;
  }
}
#top_1 .col-3 {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #top_1 .col-3 {
    display: block;
  }
}
#top_1 .col-3 .col-3-item {
  width: 32%;
  margin-right: 2%;
  position: relative;
  transition: 0.2s all ease;
}
@media all and (max-width: 639px) {
  #top_1 .col-3 .col-3-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
#top_1 .col-3 .col-3-item:last-child {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  #top_1 .col-3 .col-3-item:last-child {
    margin-bottom: 0;
  }
}
#top_1 .col-3 .col-3-item a {
  display: block;
  position: relative;
  border: 4px solid #A64A96;
  overflow: hidden;
  transition: 0.2s all ease;
  border-radius: 10px;
}
#top_1 .col-3 .col-3-item a img {
  display: block;
  width: 100%;
  transform: scale(1);
  transition: 0.2s all ease;
}
#top_1 .col-3 .col-3-item a p {
  position: absolute;
  background-color: #A64A96;
  color: #fff;
  padding: 5px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 10px;
  top: 0;
  border-radius: 0 10px 10px 0px;
}
#top_1 .col-3 .col-3-item:hover {
  transition: 0.2s all ease;
}
#top_1 .col-3 .col-3-item:hover a {
  transition: 0.2s all ease;
}
#top_1 .col-3 .col-3-item:hover a img {
  transform: scale(1.1);
}

#top_2 {
  position: relative;
  background-image: url(../img/top_3_bg.svg);
  background-size: 40px;
  padding: 70px 0;
}
@media all and (max-width: 639px) {
  #top_2 {
    padding: 40px 0;
  }
}
#top_2 .top_2_asi_en {
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 140px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(171, 205, 4, 0.3);
  letter-spacing: 0;
  line-height: 1em;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  #top_2 .top_2_asi_en {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 57px;
    letter-spacing: 0.1em;
    font-weight: 600;
    top: 30px;
  }
}
#top_2 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_2 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#top_2 ul {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #top_2 ul {
    width: 100%;
  }
}
#top_2 ul li {
  width: 23.5%;
  position: relative;
  padding: 0;
  margin-right: 2%;
  box-sizing: border-box;
}
#top_2 ul li:nth-child(4n) {
  margin-left: auto;
  margin-right: 0;
}
#top_2 ul li:nth-child(n+5) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #top_2 ul li:nth-child(n+5) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #top_2 ul li {
    width: 48%;
  }
  #top_2 ul li:nth-child(2n) {
    margin-left: auto;
    margin-right: 0;
  }
}
#top_2 ul li .thams {
  display: block;
  width: 100%;
  height: 214px;
  line-height: 204px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 821px) {
  #top_2 ul li .thams {
    height: 140px;
    line-height: 198px;
  }
}
@media all and (max-width: 639px) {
  #top_2 ul li .thams {
    margin: auto;
  }
}
#top_2 ul li .thams img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  font-family: "object-fit: contain;";
}
#top_2 ul li .thams:hover:after {
  right: 10px;
  transition: 0.2s;
}
#top_2 ul li .data {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 500;
  color: #ABCD04;
  margin-top: 15px;
  margin-bottom: 9px;
  line-height: 1em;
}
#top_2 ul li .data span {
  display: inline-block;
  background: #ABCD04;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  margin-left: 15px;
}
#top_2 ul li .data span.cat_7362 {
  background: #EE87B4;
}
@media all and (max-width: 639px) {
  #top_2 ul li .data {
    margin-left: 5%;
  }
}
#top_2 ul li .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  display: block;
  color: #292F4A;
  line-height: 1.5em;
}
#top_2 .more_link {
  display: block;
  width: 300px;
  border-radius: 100px;
  background: #A64A96;
  text-align: center;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  padding: 10px 0;
  border: 1px solid #A64A96;
  margin: 40px auto 0;
  transition: 0.2s ease all;
}
#top_2 .more_link:hover {
  background-color: #fff;
  color: #A64A96;
}

#top_3 {
  position: relative;
  margin-top: 200px;
  margin-bottom: 150px;
}
@media all and (max-width: 639px) {
  #top_3 {
    margin-top: 30px;
  }
}
#top_3:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/top-recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 20px 20px 0;
}
@media all and (max-width: 639px) {
  #top_3:before {
    display: none;
  }
}
#top_3 .top_3_asi_en {
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 140px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #F6FBD8;
  letter-spacing: 0;
  line-height: 1em;
  right: 0;
  top: -120px;
}
@media all and (max-width: 639px) {
  #top_3 .top_3_asi_en {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 57px;
    letter-spacing: 0.1em;
    font-weight: 600;
    top: 0;
  }
}
#top_3 .top_3_item {
  width: 45%;
  margin-left: auto;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_3 .top_3_item {
    width: 100%;
  }
}
#top_3 .top_3_item img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #top_3 .top_3_item img._sp {
    display: block;
    width: 100%;
    border-radius: 10px;
  }
}
#top_3 .top_3_item .read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #292F4A;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_3 .top_3_item .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 15px;
  }
}
#top_3 .top_3_item .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #top_3 .top_3_item .main {
    font-size: inherit;
  }
}
#top_3 .top_3_item .more_link {
  display: block;
  width: 300px;
  border-radius: 100px;
  background: #A64A96;
  text-align: center;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  padding: 10px 0;
  margin: 40px 0 0;
  border: 1px solid #A64A96;
  transition: 0.2s all ease;
}
#top_3 .top_3_item .more_link:hover {
  background-color: #fff;
  color: #A64A96;
}
@media all and (max-width: 639px) {
  #top_3 .top_3_item .more_link {
    margin: 40px auto 0;
  }
}
#top_3 .list-inline {
  margin-top: 10px;
  padding: 20px;
  background-color: #eee;
}
#top_3 .list-inline li {
  display: inline;
  color: #A64A96;
  font-weight: 500;
  font-size: 1.8rem;
}
#top_3 .list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  font-weight: normal;
  color: #A64A96;
}
@media all and (max-width: 639px) {
  #top_3 .list-inline li {
    font-size: 1.4rem;
  }
}

#top_4 {
  padding-bottom: 80px;
}
#top_4 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#top_4 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_4 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#top_4 ul {
  width: 85%;
  margin: 60px auto 0;
}
@media all and (max-width: 639px) {
  #top_4 ul {
    width: 100%;
  }
}
#top_4 ul li:nth-child(n+2) {
  margin-top: 50px;
}
#top_4 ul li .guidance_3_item_read {
  border-bottom: 1px dashed #292F4A;
  color: #292F4A;
  position: relative;
  padding: 10px;
  padding-left: 55px;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 15px;
}
@media all and (max-width: 639px) {
  #top_4 ul li .guidance_3_item_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    letter-spacing: 0;
  }
}
#top_4 ul li .guidance_3_item_read img {
  display: block;
  width: 39px;
  position: absolute;
  left: 0;
}
#top_4 ul li .guidance_3_item_anser {
  position: relative;
  padding-left: 55px;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_4 ul li .guidance_3_item_anser {
    font-size: inherit;
    font-weight: 500;
    letter-spacing: 0;
  }
}
#top_4 ul li .guidance_3_item_anser img {
  display: block;
  width: 39px;
  position: absolute;
  left: 0;
}

footer {
  display: block;
}
footer .foot_contact {
  background: #EE87B4;
  border-radius: 20px;
  color: #fff;
}
@media all and (max-width: 821px) {
  footer .foot_contact {
    border-radius: 0;
  }
  footer .foot_contact.single_new {
    width: 100% !important;
  }
}
footer .foot_contact .contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
footer .foot_contact .contact_bnr > li {
  width: 300px;
  max-width: 100%;
  position: relative;
}
footer .foot_contact .contact_bnr > li:last-child {
  margin-left: 20px;
}
footer .foot_contact .contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  border: none;
  font-size: 2.8rem;
  color: #fff;
  transition: all 0.3s ease;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50px;
  line-height: 2;
}
footer .foot_contact .contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
}
footer .foot_contact .contact_bnr > li .bnr_tel:hover {
  opacity: 0.7;
}
footer .foot_contact .contact_bnr > li .bnr_mail {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50px;
  line-height: 2;
  color: #fff;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
footer .foot_contact .contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
}
footer .foot_contact .contact_bnr > li .bnr_mail:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #403831;
}
footer .foot_contact .contact_bnr > li span {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1.3rem;
  border-radius: 5px;
}
footer .foot_contact .contact_bnr > li span .icon {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  filter: grayscale(1);
}
footer .foot_contact .contact_bnr > li a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  line-height: 1.2;
  font-size: 1.8rem;
}
footer .foot_contact .contact_bnr > li a:before {
  margin-right: 8px;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  footer .foot_contact .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
  footer .foot_contact .contact_bnr > li:last-child {
    margin-left: auto;
  }
  footer .foot_contact .contact_bnr > li .bnr_tel {
    font-size: 2.4rem;
    line-height: 2;
  }
  footer .foot_contact .contact_bnr > li a {
    font-size: 1.3rem;
    margin: 0 auto;
    white-space: nowrap;
    width: 100%;
    line-height: 2;
  }
  footer .foot_contact .contact_bnr > li a:before {
    transform: translateY(-2px);
  }
}
footer .foot_contact .fukidashi-mini {
  margin: -5px auto 20px;
  text-align: center;
}
footer .foot_contact .fukidashi-mini span {
  display: inline-block;
  position: relative;
  background: #FFF67F;
  padding: 3px 15px;
  min-width: 180px;
  border-radius: 40px;
  text-align: center;
  color: #292F4A;
  font-weight: 500;
}
footer .foot_contact .fukidashi-mini span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #FFF67F;
}
@media all and (max-width: 821px) {
  footer .foot_contact .fukidashi-mini {
    margin: 0px auto 20px;
  }
}
@media all and (max-width: 639px) {
  footer .foot_contact .fukidashi-mini {
    margin: 0px auto 20px;
  }
}
footer .foot_contact .read {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 30px;
}
footer .foot_contact .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 34px;
  letter-spacing: 0.1em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  footer .foot_contact .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  footer .foot_contact .read span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    letter-spacing: 0.1em;
  }
}
footer .foot_contact .item_read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  footer .foot_contact .item_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    letter-spacing: 0.1em;
    font-weight: 500;
    letter-spacing: 0;
  }
}
footer .foot_contact .flogo {
  width: 300px;
  margin-bottom: 20px;
}
footer .foot_contact .flogo img {
  max-width: 100%;
}
@media all and (max-width: 639px) {
  footer .foot_contact .flogo {
    width: 200px;
    margin: 0 auto 20px;
  }
}
footer .foot_contact .jusho {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  footer .foot_contact .jusho {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
    letter-spacing: 0;
  }
}
footer .foot_contact a {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
  letter-spacing: 0;
}
footer .foot_contact .main {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  footer .foot_contact .main {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
    letter-spacing: 0;
  }
}
footer .foot_contact .innerB {
  margin-top: 50px;
  padding: 0 20px;
}
footer .copy {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: block;
  width: auto;
  position: relative;
  width: 100%;
  z-index: 2;
  font-weight: 500;
  color: #292F4A;
  padding: 15px 0;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  footer .copy {
    position: relative;
    bottom: auto;
  }
}

#nav_right {
  position: fixed;
  padding: 20px 15px 25px;
  background: #A64A96;
  right: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  top: 82px;
}
@media all and (max-width: 639px) {
  #nav_right {
    width: 76px;
    height: 62px;
    padding: 14px 15px 25px;
    top: auto;
    bottom: 62px;
    display: none;
  }
}
#nav_right a {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #FFF67F;
}
@media all and (max-width: 639px) {
  #nav_right a {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}
#nav_right a i {
  display: block;
  font-size: 23px;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #nav_right a i {
    font-weight: 17px;
  }
}

.foot_nav {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 100px;
  padding: 15px 50px;
}
.foot_nav li a {
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  color: #384754;
}
.foot_nav li:nth-child(n+2) {
  margin-left: 30px;
}
@media all and (max-width: 639px) {
  .foot_nav {
    display: none;
  }
}

#hanb_nav {
  position: fixed;
  padding: 15px 15px 40px;
  background: #A64A96;
  right: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: 0.8s;
  border-radius: 100px 0 0 100px;
}
@media all and (max-width: 821px) {
  #hanb_nav {
    display: block;
    opacity: 1;
  }
}
@media all and (max-width: 639px) {
  #hanb_nav {
    width: 76px;
    height: 62px;
    right: 0;
    transition: 0.8s;
  }
}
#hanb_nav.fixd {
  display: block;
  opacity: 1;
  transition: 0.8s;
}

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

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

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

.menu__line--bottom {
  bottom: 0;
}

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

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

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

/*gnav*/
.gnav {
  background: #A64A96;
  opacity: 0;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transform: translateY(-200%);
  transition: 0.4s cubic-bezier(0.26, 0.06, 0, 1) all;
}
.gnav.is-active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2222;
}
.gnav .gnav__wrap {
  padding: 70px 0;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  flex-direction: column;
  width: 100%;
}
@media all and (max-width: 639px) {
  .gnav .gnav__wrap {
    justify-content: flex-start;
    padding: 40px 0 40px;
  }
}
.gnav .gnav__wrap .sp-logo {
  max-width: 160px;
  margin: 0 auto 50px;
}
.gnav .gnav__wrap .sp-logo img {
  max-width: 100%;
}
@media all and (max-width: 639px) {
  .gnav .gnav__wrap .sp-logo {
    max-width: 120px;
  }
}

.gnav__menu {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  .gnav__menu {
    display: block;
  }
}
.gnav__menu .gnav__menu__item {
  width: 30%;
  margin-right: 5%;
  border-bottom: 1px dashed #A64A96;
  position: relative;
}
.gnav__menu .gnav__menu__item:nth-child(3n) {
  margin-right: 0;
}
.gnav__menu .gnav__menu__item:nth-child(n+4) {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  .gnav__menu .gnav__menu__item:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .gnav__menu .gnav__menu__item {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
.gnav__menu .gnav__menu__item .item_read {
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 0;
  display: block;
  letter-spacing: 0.2em;
  line-height: 1.2em;
  padding: 15px 0;
  position: relative;
  padding-right: 25px;
  border-bottom: 1px dashed #fff;
}
.gnav__menu .gnav__menu__item .item_read:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 0;
  background-image: url(../img/link_icon.svg);
  margin: auto;
  top: 18px;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent {
  position: relative;
  display: block;
  cursor: pointer;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #EE87B4;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent.is-open:after {
  content: "\f068";
}
.gnav__menu .gnav__menu__item.bnn {
  margin-right: 0;
  margin-top: 70px;
}
.gnav__menu .gnav__menu__item.bnn .item_read {
  text-align: center;
  border: 1px solid #f4f1ed;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub {
  display: none;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li {
  margin-top: 8px;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li:first-child {
  margin-top: 0;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li a {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #292F4A;
  font-weight: 500;
  text-align: left;
}

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

/*--------------------------------------------------
ディライト(about.php)
----------------------------------------------------*/
#about_1 {
  background: #FFF67F;
  padding: 100px 0;
}
#about_1 .single {
  background: #fff;
  border-radius: 20px;
}
#about_1 .single .inner {
  width: 80%;
  margin: auto;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #about_1 .single .inner {
    display: block;
  }
}
#about_1 .single .inner.sec {
  margin-top: 60px;
}
#about_1 .single .inner .in_left {
  width: 30%;
}
@media all and (max-width: 639px) {
  #about_1 .single .inner .in_left {
    width: 100%;
  }
}
#about_1 .single .inner .in_left .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: left;
}
#about_1 .single .inner .in_left .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #about_1 .single .inner .in_left .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#about_1 .single .inner .in_right {
  width: 70%;
}
@media all and (max-width: 639px) {
  #about_1 .single .inner .in_right {
    width: 100%;
  }
}

#about_2 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#about_2 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #about_2 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#about_2 .about_2_item.sec {
  margin-top: 140px;
}
@media all and (max-width: 639px) {
  #about_2 .about_2_item.sec {
    margin-top: 0;
  }
}
#about_2 .innerB {
  margin-top: 60px;
}
#about_2 .innerB .about_2_item_photo {
  position: relative;
  border: 1px solid #eee;
  border-radius: 10px;
}
#about_2 .innerB .about_2_item_photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#about_2 .innerB .about_2_item_read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #about_2 .innerB .about_2_item_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #292F4A;
    letter-spacing: 0;
  }
}
#about_2 .innerB .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  margin-top: 30px;
}
#about_2 .innerB .more_link {
  display: block;
  width: 300px;
  border-radius: 100px;
  background: #A64A96;
  text-align: center;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  padding: 10px 0;
  margin: 40px 0 0;
}
#about_2 .innerB .more_link:hover {
  background-color: #fff;
  color: #A64A96;
}
#about_2 .ggmap {
  margin-top: 50px;
}
#about_2 .about_2_guara {
  margin-top: 90px;
  margin-bottom: 80px;
}
#about_2 .about_2_guara .about_2_guara_read {
  position: relative;
}
#about_2 .about_2_guara .about_2_guara_read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 3px;
  background: #A64A96;
  margin: auto;
  top: 0;
  bottom: 0;
}
#about_2 .about_2_guara .about_2_guara_read span {
  display: table;
  background: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  letter-spacing: 0;
  position: relative;
  padding-right: 15px;
}
@media all and (max-width: 639px) {
  #about_2 .about_2_guara .about_2_guara_read span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#about_2 .about_2_guara ul {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 30px;
}
#about_2 .about_2_guara ul li {
  width: 23.5%;
  margin-right: 2%;
  position: relative;
}
#about_2 .about_2_guara ul li:nth-child(4n) {
  margin-right: 0;
}
#about_2 .about_2_guara ul li:nth-child(n+5) {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #about_2 .about_2_guara ul li:nth-child(n+5) {
    margin-top: 30px;
  }
}
@media all and (max-width: 821px) {
  #about_2 .about_2_guara ul li {
    width: 48%;
    margin-right: 0;
  }
}
@media all and (max-width: 821px) {
  #about_2 .about_2_guara ul li:nth-child(even) {
    margin-left: auto;
  }
}
@media all and (max-width: 821px) {
  #about_2 .about_2_guara ul li:nth-child(n+3) {
    margin-top: 30px;
  }
}
#about_2 .about_2_guara ul li a {
  display: block;
  width: 100%;
  height: 188px;
  line-height: 178px;
  overflow: hidden;
  background: #eee;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  #about_2 .about_2_guara ul li a {
    height: 108px;
    line-height: 108px;
  }
}
#about_2 .about_2_guara ul li a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  font-family: "object-fit: contain;";
}

/*--------------------------------------------------
ユニコーンについて(unicorn.php)
----------------------------------------------------*/
#unicorn_1 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#unicorn_1 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #unicorn_1 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#unicorn_1 .single_new {
  margin-top: 50px;
}
#unicorn_1 .sungle {
  background-color: #fff;
}
#unicorn_1 .icon {
  width: 150px;
  margin: 20px auto 20px;
}
#unicorn_1 .icon img {
  max-width: 100%;
}
@media all and (max-width: 639px) {
  #unicorn_1 .icon {
    width: 100px;
  }
}
#unicorn_1 .innerB {
  max-width: 100%;
  margin: 0px auto 0;
  background-color: rgba(166, 74, 150, 0.1);
  padding: 80px 50px;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  #unicorn_1 .innerB {
    padding: 40px 30px;
  }
}
#unicorn_1 .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  width: 60%;
  margin: 40px auto 0;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
  text-wrap: balance;
}
@media all and (max-width: 639px) {
  #unicorn_1 .main {
    width: 100%;
    font-size: inherit;
  }
}
#unicorn_1 .sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #unicorn_1 .sub {
    width: 100%;
    margin-top: 20px;
    font-size: inherit;
  }
}
#unicorn_1 .unicorn_1_item_read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
}
#unicorn_1 .unicorn_1_item_read.tmmm {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #unicorn_1 .unicorn_1_item_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

#unicorn_2 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#unicorn_2 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #unicorn_2 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#unicorn_2 .single_new {
  position: relative;
  width: 1160px;
  margin: 0 auto;
}
#unicorn_2 .mtitle_box {
  background: #A64A96;
  position: relative;
  padding: 15px 30px 15px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  line-height: 1.4;
  color: #fff;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  #unicorn_2 .mtitle_box {
    font-size: 1.6rem;
    display: block;
  }
}
#unicorn_2 .unicorn_2_item {
  margin-top: 60px;
}
#unicorn_2 .unicorn_2_item.sec {
  margin-top: 100px;
}
#unicorn_2 .unicorn_2_item img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  #unicorn_2 .unicorn_2_item img._pc {
    display: none;
  }
}
#unicorn_2 .unicorn_2_item img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #unicorn_2 .unicorn_2_item img._sp {
    display: block;
  }
}
#unicorn_2 .unicorn_2_item .unicorn_2_item_read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
}
#unicorn_2 .unicorn_2_item .unicorn_2_item_read.tmmm {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #unicorn_2 .unicorn_2_item .unicorn_2_item_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#unicorn_2 .unicorn_2_item .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #unicorn_2 .unicorn_2_item .main {
    margin-top: 10px;
    font-size: inherit;
  }
}
#unicorn_2 .col-2 {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
#unicorn_2 .col-2 .col-2-item {
  width: 48%;
}
#unicorn_2 .col-2 .col-2-item:nth-child(even) {
  margin-left: auto;
}
#unicorn_2 .tbl {
  width: 100%;
}
#unicorn_2 .tbl th {
  background-color: #EE87B4;
  color: #fff;
  border-bottom: 1px solid #fff;
}

#unicorn_3 {
  margin-top: 80px;
  background-color: rgba(255, 246, 127, 0.3);
  margin-bottom: 60px;
}
#unicorn_3 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#unicorn_3 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #unicorn_3 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
}
#unicorn_3 .innerB {
  margin-top: 30px;
  margin-bottom: 80px;
}
#unicorn_3 .innerB.type1 {
  margin-bottom: 0;
}
#unicorn_3 .mtitle_box {
  background: #ABCD04;
  margin-top: 40px;
  position: relative;
  padding: 15px 30px 15px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  line-height: 1.4;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #unicorn_3 .mtitle_box {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    display: block;
  }
}
#unicorn_3 .unicorn_3_item_read {
  position: relative;
  margin-bottom: 10px;
}
#unicorn_3 .unicorn_3_item_read span {
  display: table;
  background: #fff;
  font-weight: 500;
  color: #A64A96;
  letter-spacing: 0;
  position: relative;
  padding: 5px 15px;
  border: 1px solid #A64A96;
  border-radius: 3px;
}
#unicorn_3 .list_check {
  display: flex;
  flex-wrap: wrap;
}
#unicorn_3 .list_check li {
  padding: 8px;
  margin-bottom: 5px;
  color: #292F4A;
}
#unicorn_3 .list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  margin-right: 10px;
  color: #292F4A;
}
@media all and (max-width: 639px) {
  #unicorn_3 .list_check li {
    padding: 0;
    width: 98%;
    margin: 0 auto 10px;
    font-size: inherit;
  }
}
#unicorn_3 ul.flow_list {
  position: relative;
  margin-top: 30px;
}
#unicorn_3 ul.flow_list:before {
  content: "";
  display: block;
  width: 7px;
  height: 100%;
  background: #A64A96;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
#unicorn_3 ul.flow_list li {
  position: relative;
  padding-left: 86px;
}
@media all and (max-width: 639px) {
  #unicorn_3 ul.flow_list li {
    padding-left: 53px;
  }
}
#unicorn_3 ul.flow_list li:nth-child(n+2) {
  margin-top: 20px;
}
#unicorn_3 ul.flow_list li:before, #unicorn_3 ul.flow_list li:after {
  content: "";
  display: block;
  position: absolute;
}
#unicorn_3 ul.flow_list li:before {
  width: 64px;
  height: 1px;
  border-bottom: 1px dashed #292F4A;
  top: 17px;
  left: 0;
}
@media all and (max-width: 639px) {
  #unicorn_3 ul.flow_list li:before {
    width: 34px;
  }
}
#unicorn_3 ul.flow_list li:after {
  width: 13px;
  height: 13px;
  margin: auto;
  border-radius: 50px;
  background: #A64A96;
  top: 13px;
  left: -3px;
}
#unicorn_3 ul.flow_list li .flow_list_read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #unicorn_3 ul.flow_list li .flow_list_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#unicorn_3 ul.flow_list li .flow_list_main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  color: #292F4A;
  margin-top: 5px;
  line-height: 1.6em;
}
@media all and (max-width: 639px) {
  #unicorn_3 ul.flow_list li .flow_list_main {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 0;
  }
}

/*--------------------------------------------------
ご利用の流れ(guidance.php)
----------------------------------------------------*/
#guidance_1 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#guidance_1 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #guidance_1 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#guidance_1 .innerB {
  margin-bottom: 40px;
}
#guidance_1 .note-box {
  background-color: rgba(166, 74, 150, 0.1);
  box-shadow: none;
  width: 100%;
  border-radius: 15px;
}
#guidance_1 .image_list img {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin-top: 20px;
}
#guidance_1 .guidance_1_read {
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: left;
  color: #292F4A;
}
#guidance_1 .guidance_1_read span {
  display: block;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #guidance_1 .guidance_1_read {
    font-size: 1.8rem;
  }
  #guidance_1 .guidance_1_read span {
    font-size: 1.4rem;
  }
}
#guidance_1 ul.flow_list {
  position: relative;
  margin-top: 30px;
}
#guidance_1 ul.flow_list:before {
  content: "";
  display: block;
  width: 7px;
  height: 100%;
  background: #aaa;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
#guidance_1 ul.flow_list li {
  position: relative;
  padding-left: 86px;
}
@media all and (max-width: 639px) {
  #guidance_1 ul.flow_list li {
    padding-left: 53px;
  }
}
#guidance_1 ul.flow_list li:nth-child(n+2) {
  margin-top: 20px;
}
#guidance_1 ul.flow_list li:before, #guidance_1 ul.flow_list li:after {
  content: "";
  display: block;
  position: absolute;
}
#guidance_1 ul.flow_list li:before {
  width: 64px;
  height: 1px;
  border-bottom: 1px dashed #ABCD04;
  top: 17px;
  left: 0;
}
@media all and (max-width: 639px) {
  #guidance_1 ul.flow_list li:before {
    width: 34px;
  }
}
#guidance_1 ul.flow_list li:after {
  width: 13px;
  height: 13px;
  margin: auto;
  border-radius: 50px;
  background: #ABCD04;
  top: 13px;
  left: -3px;
}
#guidance_1 ul.flow_list li .flow_list_read {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #guidance_1 ul.flow_list li .flow_list_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#guidance_1 ul.flow_list li .flow_list_main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  color: #292F4A;
  margin-top: 5px;
  line-height: 1.6em;
}
@media all and (max-width: 639px) {
  #guidance_1 ul.flow_list li .flow_list_main {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 0;
  }
}

#guidance_2 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#guidance_2 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #guidance_2 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  #guidance_2 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#guidance_2 .innerB {
  max-width: 90%;
  margin: 0 auto;
  border-bottom: 1px dashed #292F4A;
  padding: 30px 0;
}
#guidance_2 .innerB.first {
  border-top: 2px solid #292F4A;
  margin: 50px auto 0;
}
#guidance_2 .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  margin-top: 10px;
  line-height: 1.6em;
}
#guidance_2 .main.sec {
  margin-top: 60px;
}
#guidance_2 .main span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 7px;
}
@media all and (max-width: 639px) {
  #guidance_2 .main {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  #guidance_2 .main span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    letter-spacing: 0.1em;
  }
}

/*--------------------------------------------------
採用情報(recruit.php)
----------------------------------------------------*/
#recruit_1 .read {
  text-align: center;
  color: #ABCD04;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: 600;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #recruit_1 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 600;
    letter-spacing: 0;
  }
}
#recruit_1 .main {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #recruit_1 .main {
    font-size: inherit;
  }
}
#recruit_1 .recruit_ul {
  margin-top: 80px;
}
#recruit_1 .recruit_ul li.inner:nth-child(n+2) {
  margin-top: 60px;
}
#recruit_1 .recruit_ul li.inner img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#recruit_1 .recruit_ul li.inner .recruit_1_item_read {
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
}
#recruit_1 .recruit_ul li.inner .recruit_1_item_read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  color: #EE87B4;
}
@media all and (max-width: 639px) {
  #recruit_1 .recruit_ul li.inner .recruit_1_item_read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  #recruit_1 .recruit_ul li.inner .recruit_1_item_read span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
#recruit_1 .recruit_ul li.inner .recruit_1_item_main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  color: #292F4A;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #recruit_1 .recruit_ul li.inner .recruit_1_item_main {
    font-size: inherit;
  }
}
#recruit_1 .recruit_ul li.inner .list_check li {
  padding: 8px;
  margin-bottom: 5px;
  color: #292F4A;
}
#recruit_1 .recruit_ul li.inner .list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  margin-right: 10px;
  color: #292F4A;
}
@media all and (max-width: 639px) {
  #recruit_1 .recruit_ul li.inner .list_check li {
    width: 98%;
    margin: 0 auto 0px;
    font-size: 1.4rem;
  }
}

#recruit_2 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#recruit_2 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #recruit_2 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#recruit_2 .recruit_2_item {
  border-top: 3px solid #292F4A;
  margin-top: 60px;
}
#recruit_2 .recruit_2_item .inner {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #recruit_2 .recruit_2_item .inner {
    display: block;
  }
}
#recruit_2 .recruit_2_item .inner .in_left {
  width: 15%;
}
@media all and (max-width: 639px) {
  #recruit_2 .recruit_2_item .inner .in_left {
    width: 100%;
  }
}
#recruit_2 .recruit_2_item .inner .in_left p {
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 32px;
  line-height: 1.6em;
}
#recruit_2 .recruit_2_item .inner .in_left p span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #recruit_2 .recruit_2_item .inner .in_left p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#recruit_2 .recruit_2_item .inner .in_right {
  width: 80%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #recruit_2 .recruit_2_item .inner .in_right {
    width: 100%;
  }
}
#recruit_2 .recruit_2_item .inner .in_right table {
  width: 100%;
}
#recruit_2 .recruit_2_item .inner .in_right table th,
#recruit_2 .recruit_2_item .inner .in_right table td {
  background: none;
  border: none;
  border-bottom: 1px dashed #292F4A;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  padding: 20px 15px;
}
@media all and (max-width: 639px) {
  #recruit_2 .recruit_2_item .inner .in_right table th,
  #recruit_2 .recruit_2_item .inner .in_right table td {
    display: block;
  }
}
#recruit_2 .recruit_2_item .inner .in_right table th.non,
#recruit_2 .recruit_2_item .inner .in_right table td.non {
  border-bottom: none;
}
#recruit_2 .recruit_2_item .inner .in_right table th {
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  #recruit_2 .recruit_2_item .inner .in_right table th {
    text-align: left;
    background: rgba(238, 238, 238, 0.5);
  }
}

#recruit_3 {
  padding-bottom: 80px;
}
#recruit_3 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#recruit_3 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
#recruit_3 .company_1__main {
  width: 100%;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #recruit_3 .company_1__main {
    width: 100%;
    margin-top: 20px;
  }
}
#recruit_3 .company_1__main .form-pattern-1 {
  background: none;
}
@media all and (max-width: 639px) {
  #recruit_3 .company_1__main .form-contents {
    padding: 0;
  }
}
#recruit_3 .company_1__main .form {
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #recruit_3 .company_1__main .form {
    padding: 15px 0;
  }
}
#recruit_3 .company_1__main dl {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
#recruit_3 .company_1__main dt,
#recruit_3 .company_1__main dd {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 500;
  color: #292F4A;
}
#recruit_3 .company_1__main dt .textarea,
#recruit_3 .company_1__main dt textarea,
#recruit_3 .company_1__main dt .dropdown,
#recruit_3 .company_1__main dt .textarea2,
#recruit_3 .company_1__main dd .textarea,
#recruit_3 .company_1__main dd textarea,
#recruit_3 .company_1__main dd .dropdown,
#recruit_3 .company_1__main dd .textarea2 {
  width: 98%;
  border: none;
  background: #fff;
  border: 1px solid #eee;
}
#recruit_3 .company_1__main dt .textarea.item-2,
#recruit_3 .company_1__main dt textarea.item-2,
#recruit_3 .company_1__main dt .dropdown.item-2,
#recruit_3 .company_1__main dt .textarea2.item-2,
#recruit_3 .company_1__main dd .textarea.item-2,
#recruit_3 .company_1__main dd textarea.item-2,
#recruit_3 .company_1__main dd .dropdown.item-2,
#recruit_3 .company_1__main dd .textarea2.item-2 {
  width: 200px;
  margin-bottom: 5px;
}
#recruit_3 .company_1__main dt .textarea2,
#recruit_3 .company_1__main dd .textarea2 {
  width: 10em;
  height: 30px;
  margin-right: 10px;
}
#recruit_3 .company_1__main dt select,
#recruit_3 .company_1__main dd select {
  height: 30px;
}
#recruit_3 .company_1__main a {
  color: #EA909A;
  text-decoration: underline;
}
#recruit_3 .company_1__main dt span {
  border-radius: 100px;
  padding: 0.2em 1em;
}
#recruit_3 .company_1__main dt span:before {
  background: #ABCD04;
}
#recruit_3 .company_1__main dd {
  border-color: #eee;
}
#recruit_3 .company_1__main .fm-text p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
}
#recruit_3 .form-button button {
  border-radius: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 1px solid #A64A96;
  background: #fff;
  color: #A64A96;
  padding: 1em 3em;
}
#recruit_3 .form-button button:hover {
  background: #A64A96;
  color: #fff;
  transition: 0.4s;
}
#recruit_3 .accbox {
  margin-top: 40px;
}
#recruit_3 .accbox label {
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}
#recruit_3 .accbox label .more {
  display: block;
  text-align: center;
  border-top: 1px solid #A64A96;
  border-bottom: 1px solid #A64A96;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 0;
  transition: 0.4s;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #recruit_3 .accbox label .more {
    margin-left: 0;
  }
}
#recruit_3 .accbox label .more span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
#recruit_3 .accbox label:hover .more {
  background: #A64A96;
  color: #fff;
  transition: 0.4s;
}
#recruit_3 .accbox label .single {
  padding: 0;
}
#recruit_3 .accbox input {
  display: none;
  transition: 0.8s;
}
#recruit_3 .accbox .accshow_1 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  position: relative;
}
#recruit_3 .accbox .accshow_1 .single {
  padding: 40px 0 0;
}
#recruit_3 .accbox .accshow_1 .read {
  margin-top: 40px;
  margin-bottom: 40px;
}
#recruit_3 .accbox .accshow_1 .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  text-align: left;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #recruit_3 .accbox .accshow_1 .main {
    line-height: 1.7em;
  }
}
#recruit_3 .accbox .accshow_1 .main span {
  display: block;
  margin-top: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #recruit_3 .accbox .accshow_1 .main span {
    margin-top: 35px;
  }
}
#recruit_3 .cssacc_1:checked + .accshow_1 {
  height: auto;
  opacity: 1;
  transition: 0.8s;
}

/*--------------------------------------------------
ブログ(blog.php)
----------------------------------------------------*/
#blog_1 {
  padding-bottom: 80px;
}
#blog_1 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#blog_1 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
#blog_1 ul {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #blog_1 ul {
    width: 100%;
  }
}
#blog_1 ul li {
  width: 23.5%;
  position: relative;
  padding: 0;
  margin-right: 2%;
  box-sizing: border-box;
}
#blog_1 ul li:nth-child(4n) {
  margin-left: auto;
  margin-right: 0;
}
#blog_1 ul li:nth-child(n+5) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #blog_1 ul li:nth-child(n+5) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #blog_1 ul li {
    width: 100%;
    float: none;
    margin-bottom: 40px;
    margin-right: 0;
  }
}
#blog_1 ul li .thams {
  display: block;
  width: 100%;
  height: 214px;
  line-height: 204px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 821px) {
  #blog_1 ul li .thams {
    height: 140px;
    line-height: 198px;
  }
}
@media all and (max-width: 639px) {
  #blog_1 ul li .thams {
    margin: auto;
  }
}
#blog_1 ul li .thams img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  font-family: "object-fit: contain;";
}
#blog_1 ul li .thams:hover:after {
  right: 10px;
  transition: 0.2s;
}
#blog_1 ul li .data {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 500;
  color: #ABCD04;
  margin-top: 15px;
  margin-bottom: 9px;
  line-height: 1em;
}
#blog_1 ul li .data span {
  display: inline-block;
  background: #ABCD04;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  margin-left: 15px;
}
@media all and (max-width: 639px) {
  #blog_1 ul li .data {
    margin-left: 5%;
  }
}
#blog_1 ul li .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  display: block;
  color: #292F4A;
  line-height: 1.5em;
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
@media all and (max-width: 639px) {
  #contact_1 {
    padding-top: 50px;
  }
}
#contact_1 .read {
  text-align: center;
  color: #292F4A;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#contact_1 .read span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #contact_1 .read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
#contact_1 .main {
  margin: 40px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
  text-align: center;
}
@media all and (max-width: 639px) {
  #contact_1 .main {
    font-size: inherit;
    text-wrap: balance;
  }
}
#contact_1 .col-2 {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #contact_1 .col-2 {
    display: block;
  }
}
#contact_1 .col-2 .col-2-item:nth-child(2) {
  margin-left: 60px;
}
@media all and (max-width: 639px) {
  #contact_1 .col-2 .col-2-item:nth-child(2) {
    margin: auto;
  }
}
#contact_1 .col-2 .col-2-item p span {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  background: #EA909A;
  color: #fff;
  border-radius: 100px;
  padding: 0px 15px;
  margin-right: 15px;
}
@media all and (max-width: 639px) {
  #contact_1 .col-2 .col-2-item p span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    letter-spacing: 0;
  }
}
#contact_1 .col-2 .col-2-item p span.nisi {
  background: #EE87B4;
}
#contact_1 .col-2 .col-2-item p a {
  color: #A64A96;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #contact_1 .col-2 .col-2-item p a {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 33px;
    letter-spacing: 0.1em;
    font-weight: 500;
    letter-spacing: 0;
  }
}
#contact_1 .contact_1__main {
  width: 100%;
  margin-top: 70px;
}
#contact_1 .contact_1__main .read_box {
  position: relative;
}
#contact_1 .contact_1__main .read_box:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 3px;
  background: #A64A96;
  margin: auto;
  top: 0;
  bottom: 0;
}
#contact_1 .contact_1__main .read_box span {
  display: table;
  background: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  letter-spacing: 0;
  position: relative;
  padding-right: 15px;
}
@media all and (max-width: 639px) {
  #contact_1 .contact_1__main .read_box span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  #contact_1 .contact_1__main {
    width: 100%;
    margin-top: 50px;
  }
}
#contact_1 .contact_1__main .form-pattern-1 {
  background: none;
}
@media all and (max-width: 639px) {
  #contact_1 .contact_1__main .form-contents {
    padding: 0;
  }
}
#contact_1 .contact_1__main .form {
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #contact_1 .contact_1__main .form {
    padding: 15px 0;
  }
}
#contact_1 .contact_1__main dl {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
#contact_1 .contact_1__main dt,
#contact_1 .contact_1__main dd {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 500;
  color: #292F4A;
}
#contact_1 .contact_1__main dt .textarea,
#contact_1 .contact_1__main dt textarea,
#contact_1 .contact_1__main dt .dropdown,
#contact_1 .contact_1__main dt .textarea2,
#contact_1 .contact_1__main dd .textarea,
#contact_1 .contact_1__main dd textarea,
#contact_1 .contact_1__main dd .dropdown,
#contact_1 .contact_1__main dd .textarea2 {
  width: 98%;
  border: none;
  background: #fff;
  border: 1px solid #eee;
  height: 50px;
}
#contact_1 .contact_1__main dt .textarea.item-2,
#contact_1 .contact_1__main dt textarea.item-2,
#contact_1 .contact_1__main dt .dropdown.item-2,
#contact_1 .contact_1__main dt .textarea2.item-2,
#contact_1 .contact_1__main dd .textarea.item-2,
#contact_1 .contact_1__main dd textarea.item-2,
#contact_1 .contact_1__main dd .dropdown.item-2,
#contact_1 .contact_1__main dd .textarea2.item-2 {
  width: 200px;
  margin-bottom: 5px;
}
#contact_1 .contact_1__main dt .textarea2,
#contact_1 .contact_1__main dd .textarea2 {
  width: 10em;
  height: 30px;
  margin-right: 10px;
}
#contact_1 .contact_1__main dt select,
#contact_1 .contact_1__main dd select {
  height: 30px;
}
#contact_1 .contact_1__main a {
  color: #EA909A;
  text-decoration: underline;
}
#contact_1 .contact_1__main dt span {
  border-radius: 100px;
  padding: 0.2em 1em;
}
#contact_1 .contact_1__main dt span:before {
  background: #ABCD04;
}
#contact_1 .contact_1__main dd {
  border-color: #eee;
}
#contact_1 .contact_1__main .fm-text p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
}
#contact_1 .form-button button {
  border-radius: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 1px solid #A64A96;
  background: #fff;
  color: #A64A96;
  padding: 1em 3em;
}
#contact_1 .form-button button:hover {
  background: #A64A96;
  color: #fff;
  transition: 0.4s;
}
#contact_1 .accbox {
  margin-top: 40px;
}
#contact_1 .accbox label {
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}
#contact_1 .accbox label .more {
  display: block;
  text-align: center;
  border-top: 1px solid #A64A96;
  border-bottom: 1px solid #A64A96;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #A64A96;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 0;
  transition: 0.4s;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox label .more {
    margin-left: 0;
  }
}
#contact_1 .accbox label .more span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
#contact_1 .accbox label:hover .more {
  background: #A64A96;
  color: #fff;
  transition: 0.4s;
}
#contact_1 .accbox label .single {
  padding: 0;
}
#contact_1 .accbox input {
  display: none;
  transition: 0.8s;
}
#contact_1 .accbox .accshow_1 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  position: relative;
}
#contact_1 .accbox .accshow_1 .single {
  padding: 40px 0 0;
}
#contact_1 .accbox .accshow_1 .read {
  margin-top: 40px;
  margin-bottom: 40px;
}
#contact_1 .accbox .accshow_1 .main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  text-align: left;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main {
    line-height: 1.7em;
  }
}
#contact_1 .accbox .accshow_1 .main span {
  display: block;
  margin-top: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main span {
    margin-top: 35px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
#contact_1 .cssacc_1:checked + .accshow_1 {
  height: auto;
  opacity: 1;
  transition: 0.8s;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#news_1 ul {
  width: 80%;
  margin: auto;
}
#news_1 ul li {
  border-bottom: 1px solid #eee;
}
#news_1 ul li a {
  display: block;
  padding: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  color: #292F4A;
}
#news_1 ul li a span {
  margin-right: 15px;
}

#topics_1, #topics_2 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#topics_1 .single_new, #topics_2 .single_new {
  background: #fff;
  border-radius: 10px;
}
#topics_1 .inner, #topics_2 .inner {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_1 .inner, #topics_2 .inner {
    display: block;
  }
}
#topics_1 .inner .left, #topics_2 .inner .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .left, #topics_2 .inner .left {
    width: 100%;
  }
}
#topics_1 .inner .right, #topics_2 .inner .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right, #topics_2 .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_1 .inner .right .side_titem, #topics_2 .inner .right .side_titem {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #A64A96;
}
#topics_1 .inner .right .side_titem.sec, #topics_2 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span, #topics_2 .inner .right .side_titem span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
}
#topics_1 .entry .data, #topics_2 .entry .data {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #A64A96;
}
#topics_1 .entry .title, #topics_2 .entry .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #292F4A;
  letter-spacing: 0;
  border-left: 4px solid #A64A96;
  padding-left: 10px;
  margin-bottom: 10px;
}
#topics_1 .entry .main_cont, #topics_2 .entry .main_cont {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 30px;
  font-weight: 500;
  color: #292F4A;
  letter-spacing: 0;
}
#topics_1 .entry .main_cont img, #topics_2 .entry .main_cont img {
  max-width: 100%;
  display: block;
}

#topics_1_in {
  padding-top: 60px;
  padding-bottom: 60px;
}
#topics_1_in .single_new {
  background: #fff;
  border-radius: 10px;
}
#topics_1_in .inner {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_1_in .inner {
    display: block;
  }
}
#topics_1_in .inner .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_1_in .inner .left {
    width: 100%;
  }
}
#topics_1_in .inner .left ul li {
  border-bottom: 1px solid #A64A96;
}
#topics_1_in .inner .left ul li:first-child {
  border-top: 1px solid #A64A96;
}
#topics_1_in .inner .left ul li a {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #292F4A;
  padding: 15px;
  transition: 0.4s;
}
#topics_1_in .inner .left ul li a:hover {
  background: rgba(255, 255, 255, 0.4);
  transition: 0.4s;
}
#topics_1_in .inner .left ul li a span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-right: 20px;
  color: #EE87B4;
}
#topics_1_in .inner .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_1_in .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_1_in .inner .right .side_titem {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #A64A96;
}
#topics_1_in .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1_in .inner .right .side_titem span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
}

#topics_2_in {
  padding-top: 60px;
  padding-bottom: 60px;
}
#topics_2_in .single_new {
  background: #fff;
  border-radius: 10px;
}
#topics_2_in .inner {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_2_in .inner {
    display: block;
  }
}
#topics_2_in .inner .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_2_in .inner .left {
    width: 100%;
  }
}
#topics_2_in .inner .left ul {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_2_in .inner .left ul {
    width: 100%;
  }
}
#topics_2_in .inner .left ul li {
  width: 30.5%;
  position: relative;
  padding: 0;
  margin-right: 2%;
  box-sizing: border-box;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  #topics_2_in .inner .left ul li {
    width: 48%;
  }
  #topics_2_in .inner .left ul li:nth-child(2n) {
    margin-left: auto;
    margin-right: 0;
  }
}
#topics_2_in .inner .left ul li .thams {
  display: block;
  width: 100%;
  height: 214px;
  line-height: 204px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 821px) {
  #topics_2_in .inner .left ul li .thams {
    height: 140px;
    line-height: 198px;
  }
}
@media all and (max-width: 639px) {
  #topics_2_in .inner .left ul li .thams {
    margin: auto;
  }
}
#topics_2_in .inner .left ul li .thams img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  font-family: "object-fit: contain;";
}
#topics_2_in .inner .left ul li .thams:hover:after {
  right: 10px;
  transition: 0.2s;
}
#topics_2_in .inner .left ul li .data {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 500;
  color: #ABCD04;
  margin-top: 15px;
  margin-bottom: 9px;
  line-height: 1em;
}
#topics_2_in .inner .left ul li .data span {
  display: inline-block;
  background: #ABCD04;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  margin-left: 15px;
}
#topics_2_in .inner .left ul li .data span.cat_7362 {
  background: #EE87B4;
}
@media all and (max-width: 639px) {
  #topics_2_in .inner .left ul li .data {
    margin-left: 5%;
  }
}
#topics_2_in .inner .left ul li .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  display: block;
  color: #292F4A;
  line-height: 1.5em;
}
#topics_2_in .inner .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_2_in .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_2_in .inner .right .side_titem {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #A64A96;
}
#topics_2_in .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_2_in .inner .right .side_titem span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
}