@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- styleではコンテンツ（データ入れ）で使用する基本タグのCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- homeではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて10pxにリセットしています。
**    指定単位は[ px ][ rem ][ em ]を使用。
**    例 16px = 1.6rem
** -- 行間は1.6にリセットしています。
**    単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**    [ base ]のcontentsクラスで指定しています。
**    変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  border-bottom: 3px solid #007ad7;
}

.hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  width: 960px;
  margin: 0 auto;
}

.hd_logo {
  width: 240px;
}
.hd_logo img {
  height: auto;
  width: 100%;
}

.hd_text {
  margin-left: 20px;
  width: calc(100% - 550px);
  font-size: 1.7em;
  font-weight: 800;
}

.hd_bnr {
  width: 200px;
}
.hd_bnr img {
  height: auto;
  width: 100%;
}

.hd_jasdaq {
  width: 180px;
}
.hd_jasdaq img {
  height: auto;
  width: 30%;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  background: url(../images/nav_bg.png) no-repeat;
  display: flex;
  justify-content: center;
}

.nav {
  background: url(../images/nav_hover.png) no-repeat;
  overflow: visible;
  width: 960px;
}

.nav_list {
  display: flex;
  justify-content: space-between;
}
.nav_list img {
  transition: All 0.5s ease;
}
.nav_list img:hover, .nav_list img.current {
  opacity: 0;
}
.nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_list > li > a {
  color: #111;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.nav_list > li > a::before, .nav_list > li > a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
.nav_list > li > a::before, .nav_list > li > a::after {
  transition: all 0.3s;
}
.nav_list > li > a:hover, .nav_list > li > a.current {
  color: #fff;
}
.nav_list > li > a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nav_list > li > a:hover::after, .nav_list > li > a.current::after {
  transform: scale(2) rotate(180deg);
  background: #007ad7;
}
.nav_list > li:hover .nav_clist {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_clist {
  display: none;
  transition: All 0.5s ease;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
.nav_clist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}
.nav_clist > li > a {
  background-color: #010d41;
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.nav_clist > li > a:hover, .nav_clist > li > a.current {
  opacity: 0.8;
}
.nav_clist > li:hover .nav_glist {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  background: url(../images/con_bg.png) no-repeat;
  display: flex;
  justify-content: center;
}

.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 960px;
}

.main {
  order: 1;
  width: 700px;
}

.main_wide {
  width: 100%;
}

.side {
  order: 2;
  width: 230px;
}

.side_head {
  background-color: #EEE;
  color: #111;
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/common/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  font-size: 1.4em;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover {
  text-decoration: underline;
}

.side_facebook_list li {
  margin-bottom: 5px;
}
.side_facebook_list li a {
  background: url(../images/icon_facebook.png) no-repeat 10px center;
  border: 1px solid #3B579D;
  border-radius: 5px;
  color: #3B579D;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 12px 10px 12px 45px;
  text-decoration: none;
}
.side_facebook_list li a:hover {
  background-color: #DCE2F1;
}
.side_facebook_list a.nocss {
  background: none;
  border: none;
  border-radius: 0;
  color: #3B579D;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0;
  text-decoration: underline;
}
.side_facebook_list a.nocss:hover {
  opacity: 0.8;
}

/*  */
#archive_list {
  width: 960px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  flex-wrap: wrap;
}
#archive_list .archive_list_box {
  margin: 10px;
  overflow: hidden;
  position: relative;
}
#archive_list .archive_list_box img {
  width: 300px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
#archive_list .archive_list_box a {
  display: block;
  text-decoration: none;
  color: #000;
}

.archive_list_text {
  font-size: 15px;
  display: block;
  color: #332812;
}

.archive_list_box.archive_list_item a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 420px;
  height: 150px;
}
.archive_list_box.archive_list_item a .pc_title {
  background-color: #fff;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  padding: 10px;
  height: 100%;
}
.archive_list_box.archive_list_item .original_cate_icon {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 5px;
  height: 100%;
}

#archive_list .archive_list_box .tag a {
  background: #b6081f;
  text-align: center;
  color: #fff;
  width: 120px;
  font-size: 13px;
  display: block;
}
#archive_list .archive_list_box a {
  display: block;
  text-decoration: none;
  color: #000;
}

section.piku-up-item #archive_list .archive_list_box {
  width: 100%;
  margin: 10px;
  overflow: hidden;
  position: relative;
}
section.piku-up-item #archive_list .archive_list_box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.piku-up-item #archive_list .archive_list_text {
  font-size: 2rem;
  display: block;
  margin: 2% 0;
  color: #332812;
  font-weight: bold;
  overflow: hidden;
}
section.piku-up-item #archive_list .archive_list_title {
  float: left;
  font-size: 1.8rem;
  width: 83%;
}
section.piku-up-item #archive_list .archive_list_box .archive_list_day {
  display: block;
  width: 17%;
  text-align: left;
  font-size: 15px;
  float: left;
  border: 1px solid;
  text-align: center;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  background: #007ad7;
  display: flex;
  justify-content: center;
}

.ft {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 960px;
}

.ft_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ft_nav_item {
  /*width: calc( (100% - 60px) / 4 );*/
}

.ft_nav_list li {
  margin-bottom: 5px;
}
.ft_nav_list a {
  color: #FFF;
  font-size: 1.2rem;
  text-decoration: none;
}
.ft_nav_list a:hover {
  text-decoration: underline;
}

.ft_copy {
  color: #FFF;
  font-size: 0.9em;
  text-align: center;
}

div#fixeBox {
  position: fixed;
  bottom: 10px;
  left: calc(50% - 480px);
  width: 960px;
}

img#fixeBox_close {
  position: fixed;
  bottom: 130px;
  left: calc(50% + 480px);
  cursor: pointer;
}

.fixeBox_none {
  display: none;
}

#float {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 300;
  display: none;
}
#float ul {
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
}
#float ul li {
  margin-top: 5px;
}
#float ul li:first-child {
  margin-top: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*-------
  .pt {
      border-radius: 50%;
      background-color: rgba(29, 39, 121, 0.8);;
      bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      right: 10px;
      position: fixed;
      width: 40px;
      z-index: 100;
  }
  .pt:hover {
      opacity: 0.6;
  }
  .pt_btn {
      cursor: pointer;
      display: block;
      width: 14px;
      height: 14px;
      margin-top: 5px;
      transform: rotate(45deg);
      position: relative;
  }
  .pt_btn::before,
  .pt_btn::after{
      background-color: #FFF;
      content: "";
      display: block;
      top: 0;
      left: 0;
      position: absolute;
  }
  .pt_btn::before{
      width: 5px;
      bottom: 0;
  }
  .pt_btn::after{
      height: 5px;
      right: 0;
  }
  ----*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** common
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/* bnr */
.bnr_list li {
  margin-bottom: 4px;
}
.bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/common/icon_elink_black.png) no-repeat 16px center;
  font-size: 1.4em;
  color: #000000;
}
.bnr_list a:hover {
  background-color: #000;
  background-image: url(../images/common/icon_elink_white.png);
  color: #FFF;
}

/* news */
.news_table {
  width: 100%;
}
.news_table tr {
  border-bottom: 1px dotted #999;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.news_date {
  background: url(../images/icon-arrow.png) no-repeat 0 5px;
  font-size: 1.2em;
  padding-left: 15px;
  width: 120px;
  vertical-align: top;
}

.news_title {
  font-size: 1.3em;
  vertical-align: top;
}

.news_icon_new {
  display: inline-block;
  color: #C00;
  font-weight: bold;
  margin-left: 0.5em;
}

.btn {
  width: 80%;
  margin: 0 auto;
}
.btn p {
  float: left;
  width: 45%;
  margin-right: 10%;
}
.btn p:last-child {
  margin-right: 0;
}
.btn p a {
  display: block;
  text-align: center;
  line-height: 5;
  border: 2px solid #00abeb;
  color: #00abeb;
  text-decoration: none;
  border-radius: 5px;
}
.btn p a:hover {
  opacity: 0.8;
}

.recruit_btn {
  width: 300px;
  margin: 20px auto;
  border: 2px solid #007ad7;
  border-radius: 5px;
  box-sizing: border-box;
}
.recruit_btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  color: #007ad7;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.recruit_btn a:hover {
  color: #FFF;
}
.recruit_btn a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #007ad7;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.recruit_btn a:hover::before {
  transform: scale(1, 1);
}

.catch_con {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.catch_con figure {
  width: 50%;
  margin: 0 20px 0 0;
}
.catch_con figure img {
  width: 100%;
}

.catch_text {
  width: 50%;
}
.catch_text p {
  font-size: 14px;
  line-height: 2.3;
}
.catch_text .catch_text_title {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #0d29a6;
  line-height: 1.6;
  text-align: center;
}

.recruit_movie {
  width: 960px;
  margin: 40px auto;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_bnr_wide {
  margin: 30px 0;
}
.index_bnr_wide .index_bnr_wide_item {
  margin-bottom: 20px;
}
.index_bnr_wide .index_bnr_wide_item:nth-last-child(1) {
  margin-bottom: 0;
}

#index_bnr_small ul {
  display: flex;
  flex-wrap: wrap;
}
#index_bnr_small li {
  width: 33.3333333333%;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 12px;
  text-align: left;
}
#index_bnr_small h2 {
  line-height: 3;
  font-size: 1.6rem;
  font-weight: bolder;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}
#index_bnr_small li a {
  color: #000;
}
#index_bnr_small li a img {
  width: 300px;
  height: 90px;
}
#index_bnr_small li h3 {
  font-size: 135%;
}

.index_con {
  padding-bottom: 30px;
  width: 960px;
}

.index_main_head {
  position: relative;
  margin: 2em 0;
  padding: 0.8em 1em;
  color: #007ad7;
  font-size: 1.6rem;
  border: 3px solid #007ad7;
}
.index_main_head:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #007ad7;
}
.index_main_head:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 33px;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #FFF;
  z-index: 1;
}

.index_nav {
  margin-bottom: 30px;
}

.index_nav_list {
  display: flex;
  justify-content: space-between;
}
.index_nav_list img {
  height: auto;
  width: 470px;
}
.index_nav_list p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.index_news_item {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.index_news_con {
  order: 2;
  width: 740px;
}

.index_news_con_head {
  border-bottom: 1px solid #007ad7;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.index_news_con_head a {
  color: #007ad7;
  font-size: 1.6rem;
  text-decoration: none;
}

.index_news_thum {
  order: 1;
  width: 200px;
}
.index_news_thum img {
  height: auto;
  width: 100%;
}

.index_news_btn {
  color: #007ad7;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
}
.index_news_btn:before {
  content: ">> ";
}
.index_news_btn:hover {
  text-decoration: underline;
}

.index_news_btn_wrap {
  margin-top: 5px;
  text-align: right;
}

.index_news_toarchive {
  margin-top: 20px;
}

.index_news_toarchive_link {
  font-size: 1.6rem;
}
.index_news_toarchive_link:before {
  content: ">> ";
}

.index_slide {
  margin-bottom: 60px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_eyecatch {
  margin-bottom: 30px;
}

.page_sdesign_mcon h1 {
  color: #007ad7;
  font-size: 12px;
  text-align: center;
  margin-bottom: 30px;
}
.page_sdesign_mcon h1 .sub_ttl {
  display: block;
  font-size: 36px;
}

.page_sdesign_txt_kakudai {
  color: #007ad7;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 90px;
}
.page_sdesign_txt_kakudai:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 30px 0 30px;
  border-color: #007ad7 transparent transparent transparent;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 30px);
  content: " ";
}

.page_sdesign_glry > div {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  height: 400px;
  overflow: hidden;
  margin-bottom: 60px;
}
.page_sdesign_glry > div:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** houjin
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.kojin_index_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.kojin_index_main_head {
  border-top: 3px solid #C00;
  background: linear-gradient(to bottom, #ffbdbd 0%, #fff 79%);
  color: #C00;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding: 10px 10px 0 10px;
}
.kojin_index_main_head .subttl {
  font-size: 0.8em;
  margin-left: 2rem;
}

.kojin_index_nav_list_col_02 li {
  width: calc((100% - 20px) / 2);
  margin-bottom: 20px;
}

.kojin_index_nav_list_col_03 li {
  width: calc((100% - 40px) / 3);
  margin-bottom: 20px;
}

.kojin_index_nav_list_col_04 li {
  width: calc((100% - 60px) / 4);
}

.kojin_index_nav_item {
  background-color: #C00;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.kojin_index_nav_thum {
  height: auto;
  width: 100%;
}

.kojin_index_nav_link {
  color: #FFF;
  display: block;
  text-decoration: none;
}
.kojin_index_nav_link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.kojin_index_nav_title {
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
}

.kojin_index_nav_text {
  display: block;
  font-size: 0.9rem;
  padding: 5px 10px;
  text-align: center;
}

.kojin_index_news_item {
  border-top: 2px solid #C00;
  margin-bottom: 10px;
}
.kojin_index_news_item a {
  color: #C00;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  padding: 20px 10px 10px;
}
.kojin_index_news_item a:hover {
  background-color: #FAE2E2;
}

.kojin_index_news_con {
  width: calc(100% - 220px);
}

.kojin_index_news_con_head {
  border-bottom: 1px solid #C00;
  font-size: 1.4rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.kojin_index_news_con_text {
  color: #111;
  font-size: 1.4rem;
}

.kojin_index_news_thum {
  width: 200px;
}
.kojin_index_news_thum img {
  height: auto;
  width: 100%;
}

.kojin_chirashi_head {
  background-color: #007ad7;
  color: #FFF;
  font-size: 2.6rem;
  margin-bottom: 30px;
  text-align: center;
  width: 45%;
}

.kojin_chirashi_konshu_head {
  border-bottom: 1px solid #007ad7;
  font-size: 3rem;
  margin-bottom: 10px;
}

.kojin_chirashi_konshu {
  border-bottom: 1px solid #007ad7;
  padding-bottom: 30px;
  margin: 30px 0 40px;
}

.kojin_chirashi_konshu_text {
  font-size: 1.4rem;
}

.kojin_chirashi_konshu_btn {
  background-color: #007ad7;
  border-radius: 5px;
  color: #FFF;
  display: block;
  font-weight: bold;
  font-size: 2rem;
  padding: 5px;
  text-align: center;
  text-decoration: none;
}
.kojin_chirashi_konshu_btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.kojin_chirashi_kakushu {
  margin-bottom: 40px;
}

.kojin_chirashi_kakushu_item {
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.kojin_chirashi_kakushu_link {
  color: #111;
  display: block;
  text-decoration: none;
}
.kojin_chirashi_kakushu_link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.kojin_chirashi_kakushu_title {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
}

.kojin_chirashi_omachi {
  background-color: #007ad7;
  border-radius: 5px;
  color: #FFF;
  font-size: 2rem;
  text-align: center;
  padding: 10px;
}

.kojin_chirashi_omachi_btn {
  background-color: #FFF;
  border-radius: 5px;
  color: #007ad7;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1em;
  text-align: center;
  padding: 0 1em;
  text-decoration: none;
}
.kojin_chirashi_omachi_btn:hover {
  opacity: 0.8;
}

.kojin_index_servie_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.kojin_index_servie_list li {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.kojin_index_servie_list li img {
  width: 100%;
  height: auto;
}

.kojin_index_sns_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.kojin_index_sns_list li {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}

/*---------- 190517 テスト用（サークル紹介）として追加 ----------*/
#index_club {
  height: 400px;
}
#index_club iframe {
  height: 100%;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** houjin
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.houjin_index_bnr_list {
  display: flex;
  flex-wrap: wrap;
}
.houjin_index_bnr_list li {
  width: calc((100% - 30px) / 3);
  margin-bottom: 10px;
  margin-right: 10px;
}

.houjin_index_contact {
  margin-top: 40px;
}

.houjin_index_main_head {
  border-top: 3px solid #007ad7;
  background: linear-gradient(to bottom, #CCDAFF 0%, #fff 79%);
  color: #007ad7;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding: 10px 10px 0 10px;
}
.houjin_index_main_head .subttl {
  font-size: 0.8em;
  margin-left: 2rem;
}

.houjin_index_news_item {
  border-top: 2px solid #007ad7;
  margin-bottom: 10px;
}
.houjin_index_news_item a {
  color: #007ad7;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  padding: 20px 10px 10px;
}
.houjin_index_news_item a:hover {
  background-color: #EAEDFB;
}

.houjin_index_news_con {
  width: calc(100% - 220px);
}

.houjin_index_news_con_head {
  border-bottom: 1px solid #007ad7;
  font-size: 1.4rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.houjin_index_news_con_text {
  color: #111;
  font-size: 1.4rem;
}

.houjin_index_news_thum {
  width: 200px;
}
.houjin_index_news_thum img {
  height: auto;
  width: 100%;
}

.houjin_index_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.houjin_index_nav_list img {
  height: auto;
  width: 100%;
}

.houjin_index_nav_list_col_03 li {
  width: calc((100% - 40px) / 3);
  margin-bottom: 20px;
}

/* single */
.shopinfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shopinfo_map {
  margin-bottom: 20px;
  width: 100%;
}
.shopinfo_map iframe {
  height: 400px;
  width: 100%;
}

.shopinfo_table {
  width: 450px;
}

.shopinfo_qr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 220px;
}

ul.hojin_bnr_foot li {
  width: 49%;
  margin-right: 1%;
  margin-bottom: 2%;
  float: left;
}

.hojin_bnr_foot img {
  width: 100%;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** solution_case
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.solution_case_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.solution_case_item {
  width: calc((100% - 2em - 1px) / 2);
  margin: 0 2em 2em 0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1);
}
.solution_case_item:nth-child(2n) {
  margin-right: 0;
}
.solution_case_item a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.5s ease;
}
.solution_case_item a:hover {
  opacity: 0.8;
}

.solution_case_item_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.solution_case_item_ttl h2 {
  margin-bottom: 10px;
  padding: 0 0.5em 0 0.5em;
  color: #111;
  font-size: 1.8rem;
  text-align: center;
}

.solution_case_item_more {
  width: 100%;
  margin: auto 0 0;
  padding: 7px 10px;
  background: #004a79;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15em;
}

.solution_case_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 30px 0 20px;
}
.solution_case_link > * {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 1em - 1px) / 2);
  height: auto;
  margin: 0 1em 0 0;
  color: #fff;
}
.solution_case_link > *:nth-child(2n) {
  margin-right: 0;
  background: #007ad7;
  border-radius: 10px;
}
.solution_case_link > *:nth-child(2n)::before {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/solution/icon_solution_tel.png) no-repeat center center;
  background-size: cover;
}

.solution_case_link_item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #007ad7;
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.solution_case_link_item a:hover {
  opacity: 0.8;
}
.solution_case_link_item a::before {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/solution/icon_solution_mail.png) no-repeat center center;
  background-size: cover;
}
.solution_case_link_item p {
  display: block;
  width: 100%;
  margin: 0 !important;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.solution_case_link_item p:first-of-type {
  margin-bottom: 5px;
  font-weight: normal;
}
.solution_case_link_item p:last-of-type {
  font-size: 1.4em;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 編集部分
  ******************************************************************************
  ----------------------------------------------------------------------------*/
#fixeBox {
  position: fixed;
  bottom: 10px;
  left: calc(50% - 480px);
  width: 960px;
}

#fixeBox_close {
  position: fixed;
  bottom: 100px;
  left: calc(50% + 480px);
  cursor: pointer;
}

.fixeBox_none {
  display: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.flot_left {
  width: 50%;
  float: left;
}
.flot_left:nth-child(2) {
  margin-right: 0;
}

/*-------------------
  プログラミング教室
  -------------------*/
#p-s-form {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 10;
  -webkit-animation: fuwarin 1.5s ease-in-out infinite alternate;
          animation: fuwarin 1.5s ease-in-out infinite alternate;
}
#p-s-form img {
  width: 200px;
}

@-webkit-keyframes fuwarin {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fuwarin {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.p-s-area {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-s-area a {
  display: inline-block;
  background: #007ad7;
  border: 5px solid #007ad7;
  color: #fff;
  text-decoration: none;
  width: 32%;
  text-align: center;
  margin: 5px;
  line-height: 3;
  font-size: 18px;
  transition: all 0.2s;
}
.p-s-area a:hover {
  background: #fff;
  color: #007ad7;
  font-weight: bold;
}
.p-s-area a::after {
  content: "";
  background: url(../images/btn-arrow.png) no-repeat;
  width: 20px;
  height: 5px;
  display: inline-block;
  background-size: 12px;
  margin-left: 10px;
  filter: saturate(0%) brightness(10);
  border-bottom: 1px solid #fff;
  background-position: 12px 1px;
  padding-right: 2px;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.p-s-area a:hover::after {
  margin-left: 20px;
  border-color: #007ad7;
  background-position: 31px 1px;
  width: 39px;
  filter: saturate(100%);
}

/*-------
  コンタクトフォーム

  .nittei_1 option:nth-of-type(2),
  .nittei_2 option:nth-of-type(2),
  .nittei_3 option:nth-of-type(2){
      background:#ccc;
      color:#c00;
  }-------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** single
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.single_relateNews {
  background-color: #EFEFEF;
  padding: 30px;
  margin-top: 50px;
}

.single_relateNews_head {
  position: relative;
  margin: 0 0 2em;
  padding: 0.8em 1em;
  color: #007ad7;
  font-size: 1.6rem;
  border: 3px solid #007ad7;
}
.single_relateNews_head:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #007ad7;
}
.single_relateNews_head:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 33px;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #FFF;
  z-index: 1;
}

.single_relateNews_item {
  display: flex;
  justify-content: space-between;
  font-size: 1.6em;
  margin-bottom: 20px;
}

.single_relateNews_con {
  order: 2;
  width: calc(100% - 220px);
}

.single_relateNews_con_head {
  border-bottom: 1px solid #007ad7;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.single_relateNews_con_head a {
  color: #007ad7;
  font-size: 1.6rem;
  text-decoration: none;
}

.single_relateNews_thum {
  order: 1;
  width: 200px;
}
.single_relateNews_thum img {
  height: auto;
  width: 100%;
}

.single_relateNews_btn {
  color: #007ad7;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
}
.single_relateNews_btn:before {
  content: ">> ";
}
.single_relateNews_btn:hover {
  text-decoration: underline;
}

.single_relateNews_btn_wrap {
  margin-top: 5px;
  text-align: right;
}
.single_nas_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 10px;
  margin-bottom: 20px;
}
.single_nas_contact h5{
  width: 100%;
  font-weight: bold;
  text-align: center;
}
.single_nas_contact img{
  width: 100px;
  margin-right: 30px;
}
.single_nas_contact a{
  font-size: 2em;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: bold;
}
.single_nas_contact p{
  margin-bottom: 0!important;
  font-size: 1em!important;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/* ==== contents === */
.mcon {
  font-size: 1.4rem;
  /* フォントサイズ */
  line-height: 1.6;
  /* 行間 */
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  border-bottom: 1px solid #007ad7;
  color: #007ad7;
  font-size: 2rem;
  margin-bottom: 20px;
  padding: 0 10px 5px 15px;
  position: relative;
}
.mcon h1:before {
  background-color: #007ad7;
  content: "";
  width: 7px;
  top: 5px;
  left: 0;
  bottom: 8px;
  position: absolute;
}
.mcon h2 {
  border-left: 6px solid #007ad7;
  font-size: 1.8rem;
  margin-bottom: 10px;
  margin-top: 20px;
  padding: 0 0.5em 0 0.5em;
}
.mcon h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted rgb(0, 0, 0);
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}
.mcon ol li {
  margin-left: 1.5em;
  margin-bottom: 0.5rem;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5rem;
}

/* a */
/* h */
/* hr */
/* iframe */
/* img */
/* ol */
/* p */
/* ul */
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** shoplist
  ******************************************************************************
  ----------------------------------------------------------------------------*/
#shoplist {
  width: 960px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  box-sizing: border-box;
  margin: 3% 0;
  border-radius: 5px;
  margin: 0 auto;
}
#shoplist h2 {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  border-left: none;
}
#shoplist .shoplist_box {
  width: 48%;
  margin: 20px 0;
}
#shoplist .shoplist_box a {
  transition: All 0.5s ease;
}
#shoplist .shoplist_box a:hover {
  opacity: 0.6;
}
#shoplist .shoplist_box ul {
  display: flex;
  align-items: center;
  margin-bottom: 3%;
  list-style-type: none;
}
#shoplist .shoplist_box ul li {
  margin-left: 5px;
  list-style-type: none;
}
#shoplist .shoplist_box ul li:first-child {
  margin-right: auto;
  margin-left: -5px;
}

.top_base p {
  margin-top: 2%;
}

.mia a {
  display: block;
  font-size: 19px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 10px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header 追加分
  ******************************************************************************
  ----------------------------------------------------------------------------*/
header.hd_bg div.hd_h {
  font-size: 1.4rem;
  color: #fff;
  background: #007ad7;
}
header.hd_bg div.hd_h div {
  width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
}
header.hd_bg div.hd_h div ul li {
  display: inline-block;
  margin-right: 1rem;
}
header.hd_bg div.hd_h div ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 店舗/営業所一覧
  ******************************************************************************
  ----------------------------------------------------------------------------*/
section.index_shop {
  width: 100%;
  margin-bottom: 20px;
}
section.index_shop h2 {
  line-height: 3;
  font-size: 1.6rem;
  font-weight: bolder;
}

div.index_shop_con {
  display: flex;
  background: #ededed;
  font-weight: bolder;
}
div.index_shop_con h3 {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  padding-right: 20px;
  cursor: pointer;
}
div.index_shop_con > div {
  flex: 32%;
  max-width: 32%;
  margin-left: 1%;
  line-height: 3;
  cursor: pointer;
}
div.index_shop_con div.index_shop_list_wrap,
div.index_shop_con div ul {
  display: none;
}
div.index_shop_con div.index_shop_area h4 {
  padding-left: 15px;
  border-left: 3px solid #af0202;
  margin-bottom: 5px;
  line-height: 2;
  font-size: 1.3rem;
}
div.index_shop_con div ul li {
  width: 100% !important;
}
div.index_shop_con div ul li a {
  display: block;
  margin-bottom: 10px;
  padding: 0 0 0 15px !important;
  color: #000;
  font-size: 1.3rem;
  text-decoration: none;
  border: 0 !important;
  line-height: 2;
}
div.index_shop_con > * h3::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(135deg);
}
div.index_shop_con > * h3.open:after {
  transform: rotate(-45deg);
  top: 35%;
}

/****************************************************************************************
  item開始
  ****************************************************************************************/
#original_wrap {
  position: relative;
  width: 960px;
  height: auto;
  padding: 50px;
  text-align: center;
  background-image: url("https://times.applied-net.jp/wp-content/uploads/2022/05/8e1b944f4389bdaab6f11d5bc83190c8.jpg");
  margin: 20px 0;
}
#original_wrap p {
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin: 15px 3px;
}
#original_wrap .more_btn p {
  color: #696969;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 18px 3px 15px 3px;
}
#original_wrap span.line {
  color: #fff;
  font-size: 25px;
  padding: 1px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  margin-top: 10px;
  display: inline-block;
}
#original_wrap.original_pc {
  padding-bottom: 5px;
}

.type_list_new {
  margin: 20px auto 30px;
}

/****************************************************************************************
  shop-report
  ****************************************************************************************/
.archive_list_text {
  font-size: 20px;
  display: block;
  color: #332812;
  background-color: #fff;
  font-weight: bold;
}

.archive_list_box.archive_list_item a {
  display: block;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
}
.archive_list_box.archive_list_item a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 420px;
  height: 150px;
}

ul.type_list_new li a {
  display: block;
  width: 100%;
  height: 50px;
  color: #333;
  text-align: center;
  text-decoration: none;
  padding: 10px 10px 15px;
  font-size: 18px;
  font-weight: bold;
  background-color: #fff;
  border-bottom: 10px solid #696969;
  letter-spacing: 4px;
  border-radius: 0.3em 0.3em 0 0;
}

#archive_list .archive_list_box .tag a {
  background: #b6081f;
  text-align: center;
  color: #fff;
  width: 120px;
  font-size: 13px;
  display: block;
}
#archive_list .archive_list_box a {
  display: block;
  text-decoration: none;
  color: #000;
}

h3.sintyoku {
  margin: 20px 0;
}

ul.type_list_new {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
ul.type_list_new li {
  width: calc((100% - 40px) / 3);
  box-sizing: border-box;
}

.tag ul.shop-report-list li {
  float: left;
  width: 25%;
  margin: 1%;
}

.shop-report-list li {
  width: 100%;
}

.more_btn a {
  display: block;
  width: 97%;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.1em;
  overflow: hidden;
  margin-top: 50px;
  text-decoration: none;
}
.more_btn a p {
  color: #696969;
  font-size: 15px;
  font-weight: bold;
}
.more_btn a p span {
  font-size: 10px;
  color: #fff;
}

#con .sigle h3 {
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  margin: 12px 0 8px 0;
  border: none;
}
#con .sigle h2 {
  font-size: 30px;
  font-weight: bold;
  padding: 0;
  margin: 24px 0 14px 0;
  background: none;
  padding-left: 10px;
  border-left: 4px solid #000000;
}
#con .sigle table td img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

#main table th,
#main table td {
  vertical-align: top;
}

#archive_list .archive_list_box .archive_list_day {
  display: inline-block;
  width: 50%;
  text-align: right;
  font-size: 10px;
}
#archive_list .archive_list_box .tag {
  width: 45%;
  display: inline-block;
}

#original_wrap section {
  width: 210px;
  float: left;
  vertical-align: top;
  margin: 10px;
  margin-bottom: 18px;
}

#PIKUUPITEM_wrap section {
  width: 440px;
  float: left;
  vertical-align: top;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
  margin: 10px;
  padding: 10px;
}

#original_wrap section .archive_list_title {
  font-size: 13px;
  width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.5;
}
#original_wrap section .tag a {
  background: #b6081f;
  text-align: center;
  color: #fff;
  width: 100%;
  margin-top: 10px;
}
#original_wrap section .box {
  flex-wrap: wrap;
  display: -webkit-flex;
  flex-wrap: wrap;
}
#original_wrap .box {
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
}
#original_wrap .box .archive_list_box.archive_list_item {
  width: calc((100% - 60px) / 4);
}
#original_wrap .box .archive_list_box.archive_list_item a img {
  width: 100%;
  height: auto;
}
#original_wrap .box .archive_list_box.archive_list_item a .pc_thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

#PIKUUPITEM_wrap .box {
  display: block;
}
#PIKUUPITEM_wrap .archive_list_text {
  display: none;
}

#original_wrap .archive_list_day::before {
  right: 0;
  border-left: 5px solid #1A3654;
  content: "";
  position: absolute;
  top: 100%;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top: 5px solid #1A3654;
}

after {
  content: "";
  position: absolute;
  top: 100%;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top: 5px solid #1A3654;
}

#original_wrap .archive_list_day {
  font-size: 13px;
  font-weight: bold;
  color: #5f3914;
  text-align: right;
  position: relative;
  padding: 3px 13px;
  font-size: 13px;
  color: #FFF;
  background: #5f3914;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  margin-right: -15px;
  text-align: center;
}
#original_wrap .index p {
  color: #000;
  font-size: 10px;
  line-height: 1;
}
#original_wrap .index p.pc_title {
  margin: 30px auto;
  color: #fff;
  background-color: #000;
  font-size: 10px;
  line-height: 1;
}

/*  */
ul.shop-report-list {
  flex-wrap: wrap;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  flex-wrap: wrap;
  width: 25%;
  display: block;
}

.br a {
  margin-bottom: 20px;
  display: block;
}

.column .archive_list_text {
  width: 300px;
}

p.click {
  margin: 5px;
}

/*  */
.list_align {
  position: inline-block;
}/*# sourceMappingURL=style.css.map */

/*----------------------------------------------------------------------------
******************************************************************************
** デジタルサイネージ
******************************************************************************
----------------------------------------------------------------------------*/
.sns_flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 2em;
}

.sns_flex .sns {
  text-align: center;
  width: 32%;
  border: 1px solid #4472c4;
}

.sns_flex .sns .sns_ttl span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  width: 80%;
  margin: auto;
  border-bottom: 1px dotted #666666;
  padding-bottom: 10px;
  margin-bottom: 5px;
  margin-top: 20px;
}

.sns_flex .sns .sns_ttl span .sns_ttl_txt {
	margin-bottom: 0;
  font-size: 2.0rem;
  }

.sns_flex .sns .sns_ttl span .sns_icon {
  width: 30px;
}

.sns_flex .sns img {
  width: 100%;
}

.sns_flex .sns .sns_det {
  padding: 10px 15px;
  margin-bottom: 0;
}

.short_flex {
  display: flex;
  width: 770px;
  justify-content: space-between;
  gap: 2em;
  margin: auto;
  margin-bottom: 30px;
}

.short_flex .short {
  text-align: center;
  width: 32%;
}

.short_flex .short .short_ttl {
  margin-bottom: 0;
  font-size: 2.0rem
}

.short_flex .short figure {
  position: relative;
}

.short_flex .short figure iframe {
  position: absolute;
  right: 11.2%;
  width: 185px;
  height: 322px;
  top: 2.3%;
}

.pr_flex {
  display: flex;
  width: 770px;
  justify-content: space-between;
  gap: 2em;
  margin: auto;
  margin-bottom: 30px;
}

.pr_flex .pr {
  text-align: center;
  width: 32%;
}

.pr_flex .pr .pr_ttl {
  margin-bottom: 0;
  font-size: 2.0rem;
  height: 94px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dotted #666666;
}

.pr_flex .pr .pr_det {
  padding: 5px;
}

.pr_flex .pr figure {
  position: relative;
}

.pr_flex .pr figure iframe {
  position: absolute;
  right: 11.2%;
  width: 185px;
  height: 322px;
  top: 2.3%;
}

#case-box_movie {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.case-inrbox_movie {
  width: 31.5%;
  background-color: #fff;
  border: 1px solid #4472c4;
  margin-bottom: 20px;
}

.case-inrbox_movie .case-img_movie {
  width: 100%;
  background-color: #cccccc;
}

.case-inrbox_movie .case-txt_movie {
  width: 80%;
  margin: 0 auto;
  padding: 5px 15px;
  border-bottom: 1px dotted #666666;
  font-size: 2.0rem;
  text-align: center;
  margin-bottom: 0;
}

.case-inrbox_movie .case-txt_movie_detail {
  width: 100%;
  padding: 15px 4px;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0;
}

.pr iframe .ytp-title-text {
  display: none;
}

.pr iframe .ytp-shorts-title-channel {
  display: none;
}

.sp_only {
  display: none;
}