@charset "UTF-8";

/* ==========================================================================
カスタマイズ
========================================================================== */
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.uk-text-large {
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 2;
  color: #000000;
}

.uk-text-lead {
  font-size: 18px;
  font-size: 1.2rem;
  line-height: 2;
  color: #000000;
}

.uk-text-small {
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: 1.7;
}

.uk-margin-medium-top {
  margin-top: 50px !important;
}

.uk-margin-medium-bottom {
  margin-bottom: 50px !important;
}

.uk-margin-large-top {
  margin-top: 100px !important;
}

.uk-margin-large-bottom {
  margin-bottom: 100px !important;
}

.uk-padding {
  padding: 50px;
}

.uk-modal {
  background: rgba(0, 0, 0, 0.8);
}

.uk-modal-dialog {
  width: auto;
  max-width: 900px !important;
}

@media screen and (max-width: 640px) {
  .uk-margin-medium-top {
    margin-top: 30px !important;
  }

  .uk-margin-medium-bottom {
    margin-bottom: 30px !important;
  }

  .uk-margin-large-top {
    margin-top: 70px !important;
  }

  .uk-margin-large-bottom {
    margin-bottom: 70px !important;
  }

  .uk-padding {
    padding: 30px;
  }
}

/* ==========================================================================
汎用CSS
========================================================================== */
html {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  vertical-align: baseline;
  background-color: #ffffff;
  color: #000000;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: .5s;
}

a:hover {
  color: #999999;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

/* ドラッグ時の文字色・背景色 */
::selection {
  background-color: #999999;
}

::-moz-selection {
  background-color: #999999;
}

/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
/* テキスト */
.color_white {
  color: #ffffff !important;
}

.color_black {
  color: #000000 !important;
}

.color_brown {
  color: #be9115;
}

.color_orange {
  color: #f29600;
}

.font_patua {
  font-family: "Patua One", sans-serif;
}

/* 行間詰め */
.txt_line-none {
  line-height: 1 !important;
}

.txt_line-small {
  line-height: 1.2 !important;
}

/* リンク */
a.txt_link {
  color: #be9115;
  text-decoration: underline;
}

a.txt_link:hover {
  color: #be9115;
  text-decoration: none;
}

a.opacity {
  transition: .5s;
}

a.opacity:hover {
  opacity: .8;
}

/* 背景・ボーダー */
.bg_white {
  background-color: #ffffff;
}

.bg_black {
  background-color: #000000;
}

.bg_gray {
  background-color: #f0f0f0;
}

.bg_brown {
  background-color: #be9115;
}

.bd_white {
  border: solid 1px #ffffff;
}

.bd_black {
  border: solid 1px #000000;
}

/* 下層ページのレイアウトに関する設定
----------------------------------------------------------------- */
/* ページタイトル */
.page_ttl h2 {
  background-image: url(/resource/images/head_default.jpg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  width: 100%;
  color: #ffffff;
  font-family: "Patua One", sans-serif;
  font-size: 42px;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
}

.page_ttl h2 span {
  font-size: 35px;
  font-size: 2.3333333333rem;
}

.page_ttl .shadow {
  text-shadow: 0px 0px 20px #999;
}

@media screen and (max-width: 640px) {
  .page_ttl h2 {
    font-size: 30px;
    font-size: 2rem;
  }
}

/* サブメニュー */
.page_menu {
  padding: 50px 0 30px;
}

.page_menu h3 {
  margin-bottom: 40px;
}

.page_menu ul {
  display: flex;
  flex-wrap: wrap;
}

.page_menu ul li {
  padding: 0 10px 20px;
}

.page_menu ul li a {
  display: inline-block;
  background-color: #be9115;
  padding: 25px 0;
  width: 100%;
  color: #ffffff;
  font-size: 21px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
  transition: .5s;
}

.page_menu ul li a:after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/to_top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.page_menu ul li a:hover {
  background-color: rgba(190, 145, 21, 0.8);
}

@media screen and (max-width: 960px) {
  .page_menu ul li {
    padding: 0 5px 10px;
  }

  .page_menu ul li a {
    padding: 15px 0;
    font-size: 15px;
    font-size: 1rem;
  }

  .page_menu ul li a:after {
    width: 18px;
    height: 9px;
    right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .page_menu {
    padding: 50px 0;
  }

  .page_menu h3 {
    margin-bottom: 25px;
  }

  .page_menu ul {
    display: block;
  }

  .page_menu ul li {
    padding: 0;
  }

  .page_menu ul li:nth-child(n+2) {
    margin-top: 10px;
  }
}

/* 余白（各項目を囲う用） */
.padding_tb100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 640px) {
  .padding_tb100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* 見出し */
.ttl_main,
.ttl_sub {
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.ttl_main {
  font-size: 30px;
  font-size: 2rem;
  line-height: 1.8;
}

.ttl_sub {
  font-size: 24px;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .ttl_main {
    font-size: 27px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

/* ボタン */
.btn_brown a,
.btn_brown button,
.btn_brown_large a,
.btn_brown_large button {
  display: block;
  color: #ffffff;
  background-color: #be9115;
  border: solid 2px #be9115;
  font-family: "Patua One", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  transition: .5s;
}

.btn_brown a:hover,
.btn_brown button:hover,
.btn_brown_large a:hover,
.btn_brown_large button:hover {
  color: #be9115;
  background-color: #ffffff;
}

.btn_brown a,
.btn_brown button {
  font-size: 18px;
  font-size: 1.2rem;
  padding: 20px 0;
}

.btn_brown_large a,
.btn_brown_large button {
  font-size: 21px;
  font-size: 1.4rem;
  padding: 40px 0;
}

.btn_circle a {
  position: relative;
  display: inline-block;
  color: #be9115;
  background-color: #ffffff;
  border: solid 2px #be9115;
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  transition: .5s;
}

.btn_circle a span {
  position: absolute;
  display: inline-block;
  text-align: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7rem;
}

.btn_circle a:hover {
  color: #ffffff;
  background-color: #be9115;
}

@media screen and (max-width: 640px) {

  .btn_brown_large a,
  .btn_brown_large button {
    padding: 20px 10px;
  }
}

/* フレックスボックス */
.flex_box {
  display: inline-flex;
  display: -webkit-inline-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: nowrap;
  justify-content: space-between;
}

.flex_box_2c>* {
  flex-basis: 45%;
}

.flex_box_3c>* {
  flex-basis: 30%;
}

@media screen and (max-width: 640px) {
  .flex_box {
    display: inline-block;
    display: -webkit-inline-block;
  }

  .flex_box_2c>*,
  .flex_box_3c>* {
    flex-basis: 100%;
  }

  .flex_box_2c>*:nth-of-type(n+2),
  .flex_box_3c>*:nth-of-type(n+2) {
    margin-top: 30px;
  }
}

/* 開閉ボックス */
.page_toggle {
  border-bottom: solid 1px #000000;
  position: relative;
}

.page_toggle .ttl_sub {
  font-size: 21px;
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 0;
}

.page_toggle .toggle_pointer {
  font-size: 21px;
  font-size: 1.4rem;
  cursor: pointer;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}

.page_toggle .toggle_pointer img {
  width: 12px;
  height: 9px;
  margin-bottom: 3px;
}

.page_toggle:nth-child(n+2) {
  margin-top: 50px;
}

.page_toggle_inner {
  padding: 50px 0;
}

@media screen and (max-width: 640px) {
  .page_toggle_inner {
    padding: 40px 0;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼過去コーディング（削除予定）▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/* フォントファミリー */
.title-logo {
  font-family: 'Titan One';
  font-family: 'Slabo 27px';
  font-family: 'Patua One';
}

.menu-logo {
  font-family: 'Sanchez';
}

.pc_tit,
.about_tit {
  font-size: 42px;
}

/* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲過去コーディング（削除予定）▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ==========================================================================
テーブル
========================================================================== */
table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

table.tb_main tr {
  border-bottom: solid 1px #dddddd;
}

table.tb_main tr:first-child {
  border-top: solid 1px #dddddd;
}

table.tb_main th,
table.tb_main td {
  padding: 1rem 0 1rem 1rem;
}

table.tb_main th {
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  width: 25%;
}

@media screen and (max-width: 640px) {

  table.tb_main th,
  table.tb_main td {
    display: block;
  }

  table.tb_main th {
    width: 100%;
    padding: .5rem 0 0;
  }

  table.tb_main td {
    padding: 0 0 .5rem 1rem;
  }
}

/* ==========================================================================
   リスト
========================================================================== */
/* リセット */
ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

/* ドット */
ul.list_dot li {
  text-indent: -1em;
  margin-left: 1em;
}

ul.list_dot li:before {
  content: "・";
  color: #be9115;
  font-weight: bold;
}

ul.list_dot li:nth-child(n+2) {
  margin-top: 20px;
}

/* ドット大 */
ul.list_dot_large li {
  text-indent: -1em;
  margin-left: 1em;
}

ul.list_dot_large li:before {
  content: "●";
  color: #be9115;
  font-weight: bold;
  margin-right: .1em;
}

/* 数字（IEで文字化けするため数字はひとまず手入力） */
ul.list_number li {
  text-indent: -1em;
  margin-left: 1em;
}

ul.list_number li span.no {
  color: #be9115;
  font-weight: bold;
  margin-right: .25em;
}

ul.list_number li:nth-child(n+2) {
  margin-top: 20px;
}

/* ==========================================================================
ヘッダー
========================================================================== */
.header {
  height: 60px;
  width: 100%;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}

.header .okaken_logo {
  height: auto;
  width: 70px;
}

.hd_menu {
  margin-right: 15px;
  height: 60px;
}

.uk-navbar-nav {
  width: 100%;
  height: 60px;
  justify-content: space-between;
}

.uk-navbar-nav li a,
.uk-navbar-nav-sub-menu {
  padding: 0 12px;
  height: 60px;
  color: black;
  letter-spacing: 1px;
  transition: .5s;
  font-family: 'Sanchez';
  font-size: 13px;
  line-height: 60px;

  @media (max-width: 767px) {
    padding: 0;
    height: auto;
    line-height: 1;
  }
}

.uk-navbar-nav li a:hover,
.uk-navbar-nav-sub-menu:hover {
  opacity: 0.7;
}

/* .uk-navbar-nav li:last-child a {
  color: #ffffff;
  background-color: black;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  margin: 10px 0;
  height: 40px;
} */

@media screen and (min-width: 1230px) {
  #sp_header {
    display: none;
  }
}

/* ------------------------------
SPヘッダーメニュー
------------------------------ */
@media screen and (max-width: 1230px) {
  #pc_header {
    display: none;
  }

  .topnav {
    height: 45px;
    width: 100%;
    background-color: #ffffff;
  }

  .logo {
    display: inline-block;
    height: 45px;
    padding: 10px;
  }

  /* - - - - - - - - - - - - - - - - - - - -
ハンバーガー
- - - - - - - - - - - - - - - - - - - - */
  .spmenu {
    width: 30px;
    color: #5e5e5e;
    margin: 12px 5px auto auto;
    position: relative;
    top: -50px;
  }

  nav {
    /* text-align: left;
    height: 30px;
    width: 100px; */
  }

  #main {
    margin: 0px auto;
    padding: 0;
  }

  #main>li {
    /* display: inline-block;
    padding: 15px 5px;
    width: 200px; */
    line-height: 1;
    margin-bottom: 35px;
  }

  #main li a {
    color: #000000;
    font-family: 'Sanchez';
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .uk-offcanvas-bar {
    width: 300px;
    background-color: #ffffff;
    padding: 60px 48px 0;
  }

  .uk-offcanvas-close {
    color: #5e5e5e !important;
    position: absolute;
    top: 11px;
    right: 12px;
  }
}

/* ==========================================================================
フッター
========================================================================== */
.footer {
  line-height: 1;
  padding: 50px 0 20px;
}

.footer .totop {
  width: auto;
  height: 20px;
}

.footer .copyright {
  font-family: "Sanchez", sans-serif;
  font-size: 10px;
  font-size: 0.6666666667rem;
}

.contact_tel {
  display: inline-block;
  font-family: "Patua One", sans-serif;
  font-size: 33px;
  font-size: 2.2rem;
}

.contact_tel[href^="tel:"] {
  pointer-events: none;
}

/* YouTube・Instagram */
.sns_nav {
  margin-top: 20px;
}

.sns_nav ul {
  display: flex;
}

.sns_nav ul li {
  flex-basis: 60px;
  transition: .5s;
}

.sns_nav ul li:first-child {
  margin-right: 10px;
}

.sns_nav ul li:hover {
  opacity: .7;
}

footer .sns_nav {
  margin-top: 40px;
}

footer .sns_nav ul li {
  flex-basis: 40px;
}

@media screen and (max-width: 640px) {
  .footer {
    padding-top: 30px;
  }

  .contact_tel[href^="tel:"] {
    pointer-events: auto;
  }

  .sns_nav {
    margin-top: 30px !important;
  }

  .sns_nav ul {
    justify-content: center;
  }
}

/* ==========================================================================
index
========================================================================== */
/* ------------------------------
背景画像固定
------------------------------ */
.fixed-bg {
  min-height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg_02 {
  background-image: url(../images/bg_02b.jpg);
}

.bg_03 {
  background-image: url(../images/bg_03.png);
}

/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  width: 100%;
  margin: auto;
  animation-name: fade;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

@media screen and (max-width: 760px) {
  .box {
    margin: auto;
    overflow: hidden;
  }
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: bgAnime 30s infinite;
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
  background-image: url(../images/slide/top01c.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  animation-delay: 0s;
}

.box .src2 {
  background-image: url(../images/slide/top02c.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  animation-delay: 6s;
}

.box .src3 {
  background-image: url(../images/slide/top03c.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  animation-delay: 12s;
}

.box .src4 {
  background-image: url(../images/slide/top04c.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  animation-delay: 18s;
}

.box .src5 {
  background-image: url(../images/slide/top05c.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  animation-delay: 24s;
}

@media screen and (max-width: 1024px) {
  .box .src1 {
    background-image: url(../images/slide/top01.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }

  .box .src2 {
    background-image: url(../images/slide/top02.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }

  .box .src3 {
    background-image: url(../images/slide/top03.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }

  .box .src4 {
    background-image: url(../images/slide/top04.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }

  .box .src5 {
    background-image: url(../images/slide/top05.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }
}

@keyframes bgAnime {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.slick-slider {
  height: 100%;
}

.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.slick-slide {
  position: relative;
}

.slick-slide .logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo_slide_sp,
.slick-slide .logo_slide_sp {
  width: 70%;
}

@media screen and (min-width: 760px) {

  .logo_slide_sp,
  .slick-slide .logo_slide_sp {
    display: none;
  }
}

@media screen and (max-width: 760px) {

  .logo_slide,
  .slick-slide .logo_slide {
    display: none;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
各コンテンツ
- - - - - - - - - - - - - - - - - - - - */
.uk-container {
  max-width: 1180px;
}

.uk-card {
  width: auto;
  padding: 0 23px 40px 23px;
}

/* もっと見る ボタン */
.cp_btn {
  display: inline-block;
  width: 250px;
  height: 50px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #be9115;
  border-radius: 0px;
  transition: .5s;
  margin-top: 50px;
  font-size: 18px;
  line-height: 45px;
  letter-spacing: 3px;
  padding: 0;
  background: #be9115;
}

a.cp_btn:hover {
  background: none;
  color: #be9115;
}

.top-zeh-container {
  max-width: 1180px;
  margin: -40px auto 80px;
}

@media screen and (max-width: 760px) {
  .top-zeh-container {
    margin: 60px auto 80px;
  }
}

@media screen and (max-width: 640px) {
  .top-zeh-container {
    margin: 48px auto 64px;
    padding: 0 15px;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
NEWS
- - - - - - - - - - - - - - - - - - - - */
.news_container {
  width: 100%;
  height: auto;
  display: block;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  padding: 50px 0;
}

.chijime {
  margin: 0 70px;
}

.uk-grid {
  margin: 0;
}

.news {
  min-width: 450px;
}

.news h2 {
  font-size: 42px;
  line-height: 1;
}

.news p {
  font-size: 14px;
  line-height: 1;
  margin: 20px 0;
  transition: .5s;
}

.news p:hover {
  color: #999999;
}

.links_btn {
  margin: auto 0;
}

@media screen and (min-width: 960px) {
  .links_btn {
    padding-left: 0;
  }
}

@media screen and (max-width: 960px) {
  .news_container {
    width: 100%;
    height: auto;
    display: block;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 0;
    padding: 50px 0;
  }

  .chijime {
    margin: 0;
  }
}

.links {
  padding: 0;
  transition: .5s;
}

.links:hover {
  opacity: 0.8;
}

@media screen and (max-width: 760px) {
  .news_container {
    padding: 30px 20px;
    padding-bottom: 40px;
  }

  .news h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
  }

  .news p {
    width: 450px;
    font-size: 13px;
  }

  .links_btn {
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .news_container {
    padding: 20px 10px;
    padding-bottom: 40px;
  }

  .news {
    min-width: 0;
    padding: 0;
  }

  .news p {
    width: 100%;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
Okaken LABO
- - - - - - - - - - - - - - - - - - - - */
.top_labo_wrap a:hover img {
  opacity: 0.8 !important;
}

.top_labo_txt {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  width: 100%;
}

.top_labo_txt h4 {
  font-size: 28px;
  color: #ffffff;
}

/* - - - - - - - - - - - - - - - - - - - -
Event
- - - - - - - - - - - - - - - - - - - - */
.ls_fair {
  -webkit-animation: blink 3s ease-in-out infinite alternate;
  -moz-animation: blink 3s ease-in-out infinite alternate;
  animation: blink 3s ease-in-out infinite alternate;
  width: 100%;
  margin-bottom: 50px;
  display: block;
}

.ls_fair .ls_fair_pc {
  transition: .5s;
}

.ls_fair .ls_fair_pc:hover {
  opacity: 0.8;
}

.ls_fair .ls_fair_sp {
  display: none;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
  .ls_fair .ls_fair_pc {
    display: none;
  }

  .ls_fair .ls_fair_sp {
    display: block;
    width: 100%;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
Photo Clip
- - - - - - - - - - - - - - - - - - - - */
.photoclip {
  padding: 80px 0;
}

.slider {
  padding-top: 40px;
}

.slide img {
  transition: .5s;
}

.slide img:hover {
  opacity: 0.8;
}

.pc_txt {
  color: black;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.dots {
  padding-top: 30px;
}

.dots a {
  width: 15px;
  height: 15px;
  background-color: #dedede;
  border: none;
}

.uk-dotnav>.uk-active>* {
  background-color: #be9115;
}

.button {
  text-align: center;
}

@media screen and (min-width: 760px) {
  .sp_slide {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .photoclip {
    padding: 40px 0 70px 0;
  }

  .slider {
    padding-top: 20px;
  }

  .pc_slide {
    display: none;
  }

  .dots {
    padding-top: 15px;
  }

  .cp_btn {
    width: 100%;
    padding: 0px;
    margin-top: 20px;
  }

  .pc_tit {
    font-size: 28px;
  }

  .pc_txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .pc_txt {
    font-size: 15px;
  }

  .slider ul li {
    padding: 0 0px;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
About us
- - - - - - - - - - - - - - - - - - - - */
.about {
  padding: 40px 0 60px 0;
}

.about_tit {
  padding: 100px 0;
}

.about_box {
  padding-top: 15px;
}

.about_txt {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  width: 100%;
}

.about_txt h3 {
  font-size: 38px;
  color: #ffffff;
}

.about_txt2 {
  font-size: 13px;
  font-weight: 400;
}

.about_txt3 {
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
}

.uk-transition-scale-up {
  transition: 1s;
  transform: scale3d(1, 1, 1);
}

.uk-accordion-title::after {
  display: none;
}

.uk-accordion-content {
  margin: 0;
}

.modal {
  width: 100%;
  display: none;
}

.modal_box {
  width: 85%;
  margin: 0 auto;
}

.accordion_box {
  display: inline-block;
  width: 100%;
  height: 45px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0px;
  transition: .5s;
  margin-top: 0px;
  font-size: 14px;
  line-height: 45px;
  padding: 0;
  background: rgba(0, 0, 0, 0.7);
}

.accordion_box:hover {
  background: #ffffff;
  color: #be9115;
  font-weight: 600;
}

.accordion_box_sp {
  display: inline-block;
  width: 100%;
  height: 45px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0px;
  transition: .5s;
  margin-top: 0px;
  font-size: 14px;
  line-height: 45px;
  padding: 0;
  background: #be9115;
}

.accordion_box_sp:hover {
  background: #ffffff;
  color: #be9115;
  font-weight: 600;
}

@media screen and (max-width: 760px) {
  .about_box_pc {
    display: none;
  }
}

@media screen and (min-width: 760px) {
  .accordion {
    display: none;
  }
}

@media screen and (min-width: 550px) {
  .spbr {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .about {
    padding: 10px 15px;
  }

  .about_tit {
    font-size: 28px;
    padding: 50px 0;
    color: #ffffff;
  }

  .about_txt {
    text-align: center;
    text-decoration: none;
    color: #ffffff;
  }

  .about_txt h3 {
    font-size: 28px;
    color: #ffffff;
  }

  .about_txt2 {
    font-size: 12px;
    font-weight: 400;
  }

  .about_txt3 {
    font-size: 14px;
    font-weight: 600;
    padding-top: 10px;
  }
}

@media screen and (max-width: 550px) {
  .about {
    padding: 10px 5px;
  }

  .about_box {
    padding: 0 5px;
  }

  .uk-grid+.uk-grid-small,
  .uk-grid-small>.uk-grid-margin,
  *+.uk-grid-margin-small {
    margin-top: 10px;
  }

  .accordion_box_sp {
    height: 30px;
    line-height: 30px;
    border: 1px solid #ffffff;
    font-size: 10px;
    letter-spacing: 0px;
  }

  .accordion_box_sp:hover {
    border: 1px solid #be9115;
  }

  .about_txt h3 {
    font-size: 24px;
    color: #ffffff;
  }

  .about_txt2 {
    font-size: 11px;
    font-weight: 400;
  }

  .about_txt3 {
    font-size: 13px;
    font-weight: 600;
    padding-top: 10px;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
natural_energy
- - - - - - - - - - - - - - - - - - - - */
.natural_energy_img {
  background: url(../images/bg_line-image2.png) repeat-x;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;

  @media (max-width: 767px) {
    font-size: 24px;
  }
}

.natural_energy_img>p {}

.natural_energy {
  margin-top: 100px;
  color: #000;
}

.natural_energy .natural_energy_tit {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 50px;
}

.natural_energy .natural_energy_txt {
  font-size: 15px;
  text-align: center;
  line-height: 30px;
}

.natural_energy img {
  max-width: 648px;
  width: 100%;
  margin: 50px 0 100px 0;
}

/* - - - - - - - - - - - - - - - - - - - -
kagu
- - - - - - - - - - - - - - - - - - - - */
.kagu {
  margin-bottom: 50px;
  transition: .5s;
}

.kagu:hover {
  opacity: 0.8;
}

.kagu_img {
  background: url(../images/bg_line-image.png) repeat-x;
  height: 120px;
}

.kagu_btn {
  padding: 20px 0;
  font-size: 22px;
  letter-spacing: 1px;
}

@media screen and (max-width: 760px) {
  .kagu {
    margin: 30px 0;
  }

  .kagu_btn {
    padding: 10px 0;
    font-size: 18px;
    letter-spacing: 1px;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
video
- - - - - - - - - - - - - - - - - - - - */
.video_txt {
  text-align: center;
  font-size: 12px;
  margin: 90px 0 42px 0;
}

.video {
  max-width: 480px;
  width: 100%;
  height: 270px;
  background: url(../images/video_title.jpg) no-repeat;
  background-size: 100%;
  margin: 0 auto;
}

.video:hover {
  cursor: pointer;
}

video {
  width: 100%;
  /*     display: none; */
  visibility: hidden;
}

.controls {
  max-width: 180px;
  margin: 50px auto;
  display: flex;
}

.start_img {
  width: 30px;
  float: left;
  margin: 10px 10px;
}

.start_img:hover {
  cursor: pointer;
}

.mute_img {
  width: 20px;
  float: left;
  margin: 15px 10px 10px 10px;
}

.mute_img:hover {
  cursor: pointer;
}

.input {
  text-align: center;
}

#go img {
  width: 13px;
  cursor: pointer;
  margin: 18px 10px;
  color: #000;
}

#back img {
  width: 13px;
  cursor: pointer;
  margin: 18px 10px;
  color: #000;
  transform: scale(-1, 1);
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  max-width: 480px;
  margin-top: 15px;
  outline: none;
  border: none;
  pointer-events: none;
}

input[type=range]:focus {
  outline: none;
  border: none;
}

/* WebKit・Blink向け 溝のスタイル */
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 31px;
  cursor: pointer;
  animate: 0.2s;
  background: #000;
  /*   border-radius: 1.3px; */
  border-bottom: 15px solid #fff;
  border-top: 15px solid #fff;
}

/* WebKit・Blink向け つまみのスタイル */
input[type=range]::-webkit-slider-thumb {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  /* 以下は つまみの縦位置調整 */
  margin-top: -3px;
  /* (つまみの高さ - トラックの高さ) / 2 。つまみの高さは border を含む */
}

/* 何故か上の margin-top 指定が Edge に効いてしまうので、Edge向けに設定をリセット */
@supports (-ms-ime-align: auto) {
  input[type=range]::-webkit-slider-thumb {
    margin-top: 0 !important;
  }
}

/* WebKit・Blink向け focus時のスタイル */
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #000;
}

/* Firefox向け 溝のスタイル */
input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: #000;
  border-color: #fff;
  border-bottom: 15px solid #fff;
  border-top: 15px solid #fff;
  margin-top: 15px;
}

input[type=range]:focus::-moz-range-track {
  border: none;
  outline: none;
  z-index: -1;
}

/* Firefox向け つまみのスタイル */
input[type=range]::-moz-range-thumb {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  border: none;
}

/* Edge・IE向け 溝のスタイル */
input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  /*   border-width: 16px 0; */
  color: transparent;
  /*
	border-bottom: 15px solid #fff;
	border-top: 15px solid #fff;
*/
}

/* Edge・IE向け 溝の色（つまみより左側） */
input[type=range]::-ms-fill-lower {
  background: #000;
  border-radius: 2.6px;
}

/* Edge・IE向け 溝の色（つまみより右側） */
input[type=range]::-ms-fill-upper {
  background: #000;
  border: 0.2px solid #000;
  border-radius: 2.6px;
}

/* Edge・IE向け つまみのスタイル */
input[type=range]::-ms-thumb {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
}

/* Edge・IE向け focus時の色（つまみより左側） */
input[type=range]:focus::-ms-fill-lower {
  background: #000;
}

/* Edge・IE向け focus時の色（つまみより右側） */
input[type=range]:focus::-ms-fill-upper {
  background: #000;
}

/* Edge・IE向け ポップアップを非表示に */
input[type=range]::-ms-tooltip {
  display: none;
}

/* - - - - - - - - - - - - - - - - - - - -
kodawari
- - - - - - - - - - - - - - - - - - - - */
.kodawari {
  height: auto;
  padding: 150px 0;
}

.txt_lead {
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  margin: 0 0 25px 40px;
}

.bg_white2 {
  background-color: rgba(255, 255, 255, 0.8);
  width: 60%;
}

.txt_lead2 {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  padding: 50px;
  line-height: 30px;
}

@media screen and (max-width: 760px) {
  .kodawari {
    height: auto;
    padding: 50px 0;
  }

  .txt_lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    padding: 0px 0 15px 15px;
  }

  .bg_white2 {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
  }

  .txt_lead2 {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    padding: 20px 15px;
    line-height: 28px;
  }
}

/* - - - - - - - - - - - - - - - - - - - -
カレンダー
- - - - - - - - - - - - - - - - - - - - */
.calendar-archives.calendrier {
  box-shadow: none !important;
  margin-top: 20px;
}

.calendar-archives.calendrier .calendar-navigation {
  background: #797979 !important;
  text-shadow: 0px 0px 0px black !important;
  border-radius: 0px !important;
}

.calendar-archives.calendrier .calendar-navigation .prev-year,
.calendar-archives.calendrier .calendar-navigation .next-year {
  border-right: 1px rgba(255, 255, 255, 0.5) solid !important;
  box-shadow: 0px 0px 0px black !important;
  border-radius: 0px !important;
}

.calendar-archives.calendrier .calendar-navigation .menu-container ul.menu {
  box-shadow: none !important;
  border-radius: 0px !important;
  border: 1px solid #b3b3b3 !important;
}

.calendar-archives.calendrier .calendar-navigation .menu-container li>a.selected {
  background: black !important;
}

.calendar-archives.calendrier .calendar-navigation .menu-container li>a:hover {
  background: #797979 !important;
}

.calendar-archives.calendrier .month.has-posts,
.calendar-archives.calendrier .day.has-posts {
  background: #ffffff !important;
}

.calendar-archives.calendrier .month.has-posts a,
.calendar-archives.calendrier .day.has-posts a {
  background-color: #000000 !important;
}

/* ==========================================================================
News / Staff Blog / 会長日記 / Open House
========================================================================== */
/* ==========================================================================
Photo Clip
========================================================================== */
/* ==========================================================================
Performance
========================================================================== */
.performance_data_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-size: 2.4rem;
  font-weight: bold;
}

.performance_data_txt span {
  font-size: 25px;
  font-size: 1.6666666667rem;
  font-weight: normal;
}

@media screen and (max-width: 960px) {
  .performance_data_txt {
    font-size: 22px;
    font-size: 1.4666666667rem;
  }

  .performance_data_txt span {
    font-size: 20px;
    font-size: 1.3333333333rem;
  }
}

@media screen and (max-width: 640px) {
  .performance_data {
    flex-wrap: wrap-reverse;
  }

  .performance_data .performance_data_txt {
    padding-left: 0px;
    font-size: 25px;
    font-size: 1.6666666667rem;
  }

  .performance_data .performance_data_txt span {
    font-size: 22px;
    font-size: 1.4666666667rem;
  }

  .performance_data img {
    padding-left: 0px;
  }
}

/* ==========================================================================
Plan
========================================================================== */
.icon_step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-color: #be9115;
  border-radius: 50%;
  font-family: "Patua One", sans-serif;
  font-size: 21px;
  font-size: 1.4rem;
  text-align: center;
  margin: auto;
  width: 90px;
  height: 90px;
  z-index: 10;
  position: relative;
}

.step_style {
  margin-top: -45px;
  z-index: 1;
  padding: 90px 0 50px;
}

ul.serc_list {
  display: inline-block;
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}

ul.serc_list li {
  margin-bottom: 20px;
}

ul.serc_list li:last-child {
  margin-bottom: 0;
}

ul.serc_list li img {
  margin-right: 5px;
  margin-bottom: 3px;
  width: 20px;
  height: auto;
}

ul.plan_flow li {
  background-color: #f0f0f0;
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
  padding: 15px 0;
  position: relative;
}

ul.plan_flow li:after {
  content: "";
  background-image: url(/resource/images/plan_triicon.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -27px;
  margin: auto;
  width: 60px;
  height: 24px;
}

ul.plan_flow li:last-child {
  margin-bottom: 0;
}

ul.plan_flow li:last-child:after {
  content: none;
}

@media screen and (max-width: 640px) {
  .step_style {
    padding: 75px 30px 30px;
  }

  ul.serc_list li {
    text-indent: -25px;
    margin-left: 25px;
  }
}

/* ==========================================================================
Housing
========================================================================== */
/* オカケンならではの工夫
----------------------------------------------------------------- */
ul.housing_style li:nth-child(n+2) {
  margin-top: 50px;
}

ul.housing_style .uk-accordion-title {
  color: #ffffff;
  background-color: #be9115;
  background-position: center left 20px;
  background-repeat: no-repeat;
  background-size: 120px auto;
  font-size: 21px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 50px 0;
  position: relative;
  transition: .5s;
}

ul.housing_style .uk-accordion-title span {
  font-family: "Patua One", sans-serif;
  font-weight: normal;
  margin-right: 1rem;
}

ul.housing_style .uk-accordion-title:before {
  content: "";
  background-image: url(/resource/images/ico_plus.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto;
}

ul.housing_style .uk-accordion-title:hover {
  opacity: .8;
}

ul.housing_style .uk-open .uk-accordion-title:before {
  background-image: url(/resource/images/ico_minus.svg);
}

ul.housing_style .uk-accordion-content {
  padding: 50px 40px 100px;
}

@media screen and (max-width: 960px) {
  ul.housing_style li:nth-child(n+2) {
    margin-top: 30px;
  }

  ul.housing_style .uk-accordion-title {
    background-size: 90px auto;
    padding: 30px 0;
  }

  ul.housing_style .uk-accordion-title span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }

  ul.housing_style .uk-accordion-title:before {
    right: 20px;
  }

  ul.housing_style .uk-accordion-content {
    padding: 30px 20px 60px;
  }

  ul.housing_style .uk-accordion-content .ttl_main {
    font-size: 21px;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
  ul.housing_style li:nth-child(n+2) {
    margin-top: 15px;
  }

  ul.housing_style .uk-accordion-title {
    background-position: center left 10px;
    background-size: 45px auto;
    font-size: 12px;
    font-size: 0.8rem;
    text-align: center;
    padding: 15px 0;
  }

  ul.housing_style .uk-accordion-title:before {
    width: 10px;
    height: 10px;
    right: 10px;
  }
}

/* ==========================================================================
After Service
========================================================================== */
/* ==========================================================================
Voice
========================================================================== */
ul.voice_nav li {
  padding: 0 10px;
  transition: .5s;
}

ul.voice_nav li p {
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 5px;
}

ul.voice_nav li:hover {
  opacity: .8;
}

ul.voice_nav li:nth-child(n+4) {
  margin-top: 30px;
}

/* PC */
@media screen and (min-width: 640px) {

  #voice1 .ttl_main,
  #voice2 .ttl_main,
  #voice3 .ttl_main,
  #voice4 .ttl_main,
  #voice5 .ttl_main,
  #voice6 .ttl_main,
  #voice7 .ttl_main {
    margin-bottom: 80px;
  }

  .uk-grid-margin.mt_remove {
    margin-top: 0;
  }

  .posi_left {
    text-align: left;
  }
}

/* SP */
@media screen and (max-width: 640px) {
  .page_voice .padding_tb100:first-of-type {
    padding-top: 50px;
  }

  ul.voice_nav li {
    padding: 0;
  }

  ul.voice_nav li:nth-child(n+2) {
    margin-top: 20px;
  }
}

/* ==========================================================================
How to live
========================================================================== */
/* ==========================================================================
Staff Room
========================================================================== */
/* ==========================================================================
Company
========================================================================== */
/* 会社概要 */
.company_outline_subbox {
  display: flex;
}

.company_outline_subbox>*:nth-of-type(n+2) {
  margin-left: 25px;
}

@media screen and (max-width: 640px) {
  .company_outline_subbox {
    display: block;
  }

  .company_outline_subbox>*:nth-of-type(n+2) {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* 会社紹介のバナー */
.company_movie_bnr_wrap {
  padding-bottom: 100px;
}

@media screen and (max-width: 640px) {
  .company_movie_bnr_wrap {
    padding-bottom: 70px;
  }
}

.company_movie_bnr {
  display: block;
  margin: auto;
  background-color: #f5eedc;
  border: 3px solid #be9115;
  text-align: center;
  max-width: 580px;
  font-size: 24px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #be9115;
  font-family: "Patua One", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .company_movie_bnr {
    padding: 1.2rem 0;
    font-size: 24px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.company_movie_bnr:hover {
  opacity: 0.7;
  color: #be9115;
}

/* ZEH_リンクボタン */
.zeh_btn_wrap {
  padding-top: 100px;
}

@media screen and (max-width: 640px) {
  .zeh_btn_wrap {
    padding-top: 70px;
  }
}

.zeh_btn {
  display: block;
  margin: auto;
  background-color: #f5eedc;
  border: 3px solid #be9115;
  text-align: center;
  max-width: 580px;
  padding: 1.6rem 0;
  font-size: 26px;
  font-size: 1.7333333333rem;
  line-height: 1.5;
  color: #be9115;
  font-family: "Patua One", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .zeh_btn {
    padding: 1.2rem 0;
    font-size: 24px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.zeh_btn span {
  font-size: 22px;
  font-size: 1.4666666667rem;
}

@media screen and (max-width: 640px) {
  .zeh_btn span {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.zeh_btn:hover {
  opacity: 0.7;
  color: #be9115;
}

/* ==========================================================================
Okaken Labo
========================================================================== */
.taiken_flex div {
  width: 100%;
}

.ttl_txt {
  border-bottom: 1px solid #be9115;
  display: table;
  margin: auto;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  top: -25px;
}

.logday_list_wrap {
  display: inline-block;
}

.logday_list_wrap p span {
  font-size: 12px;
  font-size: 0.8rem;
}

.logday_list_row {
  max-width: 100%;
  white-space: nowrap;
  margin: auto;
  color: #000000;
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logday_list_row div {
  max-width: 130px;
  width: 100%;
}

.logday_list_row div img {
  width: 100%;
}

.logday_list_row .from {
  max-width: 40px;
  margin: 0 20px;
}

.app_btn {
  max-width: 180px;
  margin: 20px auto 0;
}

.logday_note {
  padding: 30px;
}

.logday_note .btn_brown {
  margin-top: 30px;
  max-width: 260px;
}

.logday_note .btn_brown a {
  padding: 15px 0;
}

@media screen and (max-width: 640px) {
  .logday_note {
    padding: 30px 20px;
  }

  .logday_note .btn_brown {
    margin-top: 20px;
  }

  .logday_note .btn_brown a {
    padding: 20px 0;
  }
}

.l_yoyaku {
  font-size: 18px;
  font-size: 1.2rem;
  background-color: #be9115;
  margin-left: .5em;
}

.l_close {
  font-size: 18px;
  font-size: 1.2rem;
  background-color: #666666;
}

.sun_list {
  color: #000000;
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 auto;
}

.sun_list li {
  margin: 8px 20px;
}

.sun_list li span {
  font-weight: bold;
}

.sun_icon {
  width: 30px;
  height: auto;
  margin-bottom: 8px;
}

@media screen and (max-width: 640px) {
  .sun_list {
    line-height: 1.5;
  }
}

.labo_Data_tit {
  font-size: 24px;
  font-size: 1.6rem;
  border-bottom: 3px solid #be9115;
  text-align: left;
  font-weight: bold;
  color: #000000;
  line-height: 1.5;
}

.oc_icon {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 18px;
  font-size: 1.2rem;
  text-align: right;
}

.oc_icon img {
  height: 15px;
  width: auto;
}

.c_success {
  position: relative;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.c_success:nth-child(n+2) {
  margin-top: 30px;
}

@media screen and (min-width: 640px) {
  .c_success {
    display: flex;
  }
}

.jikken {
  color: #ffffff;
  font-weight: bold;
  background-color: #be9115;
}

@media screen and (min-width: 640px) {
  .jikken {
    color: #ffffff;
    font-weight: bold;
    background-color: #be9115;
    width: 75px;
    line-height: 75px;
    font-size: 1.2rem;
    border-radius: 50%;
  }
}

.alignmiddle {
  display: flex;
  align-items: center;
  text-align: left;
}

.alignmiddle_lbl {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jikken_p {
  color: #000000;
  font-size: 18px;
  font-size: 1.2rem;
}

.l_ok {
  background-color: #cc1c1c;
  font-size: 15px;
  font-size: 1rem;
}

.sun_list {
  display: table;
}

.sun_list li {
  margin: 12px 20px;
}

.sun_list li .sun_icon {
  float: left;
}

.sun_list li p {
  text-indent: -10px;
  padding-left: 40px;
  line-height: 1.75;
}

.red_txt {
  margin-bottom: 25px;
  color: #cc1c1c;
  font-weight: bold;
}

.experiment {
  font-size: 1.2rem;
  margin-top: 30px;
}

.experiment tbody {
  vertical-align: top;
}

.experiment th {
  font-weight: normal;
}

.btn_circle_none {
  width: 7rem;
}

/* ==========================================================================
戸建賃貸住宅CASA
========================================================================== */
/* ==========================================================================
CASAロングステイ体験
========================================================================== */
/* ==========================================================================
健康に暮らす家
========================================================================== */
.livehealth_point {
  text-align: center;
  background-image: url("/resource/images/feature_back.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 100px 0;
}

.livehealth_point h3 {
  color: #ffffff;
  font-size: 27px;
  font-size: 1.8rem;
}

.livehealth_point_number {
  display: inline-block;
  color: #ffffff;
  background-color: #be9115;
  font-size: 30px;
  font-size: 2rem;
  font-family: "Patua One", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
  padding: 10px 20px;
}

@media screen and (max-width: 640px) {
  .livehealth_point {
    padding: 70px 0;
  }
}

/* ==========================================================================
健康に暮らす家
========================================================================== */
/* ==========================================================================
お問い合わせ
========================================================================== */
.contact_container {
  padding: 50px;
  margin-bottom: 50px !important;
}

.contact_container h4 {
  font-weight: bold;
  margin-bottom: 25px;
}

.contact_container p.contact_tel {
  font-family: 'Patua One';
  font-size: 36px;
  letter-spacing: 0.1em;
}

.contact_mail {
  background-color: #fff;
  padding: 50px;
  margin-top: 30px;
}

.contact_mail .contact_mail_inner {
  border-top: solid 1px #f0f0f0;
  display: flex;
  padding: 25px 10px;
}

.contact_mail .contact_mail_inner .contact_mail_label {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  width: 30%;
}

.contact_mail .contact_mail_inner .contact_mail_label span {
  background-color: #f29600;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  margin-left: 0.5em;
}

.contact_mail .contact_mail_inner div.contact_mail_form,
.contact_mail .contact_mail_inner ul.kengaku {
  font-size: 14px;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 70%;
}

.contact_mail .contact_mail_inner div.contact_mail_form select,
.contact_mail .contact_mail_inner div.contact_mail_form input[type="text"],
.contact_mail .contact_mail_inner div.contact_mail_form input[type="email"],
.contact_mail .contact_mail_inner div.contact_mail_form textarea,
.contact_mail .contact_mail_inner ul.kengaku select,
.contact_mail .contact_mail_inner ul.kengaku input[type="text"],
.contact_mail .contact_mail_inner ul.kengaku input[type="email"],
.contact_mail .contact_mail_inner ul.kengaku textarea {
  margin: 0;
  padding: 0;
  border: solid 1px #e8e8e8;
  font-size: 14px;
  height: 32px;
}

.contact_mail .contact_mail_inner div.contact_mail_form input[type="text"],
.contact_mail .contact_mail_inner div.contact_mail_form input[type="email"],
.contact_mail .contact_mail_inner div.contact_mail_form textarea,
.contact_mail .contact_mail_inner ul.kengaku input[type="text"],
.contact_mail .contact_mail_inner ul.kengaku input[type="email"],
.contact_mail .contact_mail_inner ul.kengaku textarea {
  padding: 5px;
  width: 100%;
}

.contact_mail .contact_mail_inner div.contact_mail_form .error,
.contact_mail .contact_mail_inner ul.kengaku .error {
  color: tomato;
  font-size: 12px;
}

.contact_mail .contact_mail_inner ul.kengaku li {
  padding-bottom: 10px;
}

.contact_mail .contact_mail_inner ul.kengaku li:last-child {
  padding-bottom: 0;
}

.contact_mail .contact_mail_inner ul.kengaku li:nth-child(n+2) input[type="text"] {
  width: 2em;
}

.contact_mail .contact_mail_inner:last-child {
  display: block;
  padding: 50px 0 0;
}

.checkbox {
  display: none;
}

.checkbox+.checkbox-icon {
  position: relative;
  vertical-align: middle;
  border: 2px solid #000;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 5px;
}

.checkbox:checked+.checkbox-icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 6px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

.formTable {
  background-color: #fff;
  padding: 50px;
  margin-top: 30px;
}

.formTable tr {
  border-top: solid 1px #f0f0f0;
  display: flex;
  padding: 25px 10px;
}

.formTable tr th {
  font-weight: bold;
  text-align: left;
  width: 30%;
}

.formTable tr td {
  font-size: 14px;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 70%;
}

@media screen and (max-width: 768px) {
  .contact_container {
    padding: 50px 20px;
  }

  .contact_container p.contact_tel {
    font-size: 27px;
  }

  .contact_mail {
    padding: 25px 20px;
  }

  .contact_mail .contact_mail_inner {
    display: block;
    padding: 20px 0;
  }

  .contact_mail .contact_mail_inner .contact_mail_label {
    width: 100%;
  }

  .contact_mail .contact_mail_inner div.contact_mail_form,
  .contact_mail .contact_mail_inner ul.kengaku {
    width: 100%;
  }

  .contact_mail .contact_mail_inner div.contact_mail_form {
    margin-top: .5rem;
  }
}

/* ==========================================================================
Price
========================================================================== */
ul.price_point {
  display: inline-block;
  line-height: 1.5;
  text-align: left;
}

ul.price_point li {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

ul.price_point li .number {
  color: #ffffff;
  background-color: #be9115;
  font-family: "Patua One", sans-serif;
  font-size: 21px;
  font-size: 1.4rem;
  text-align: center;
  padding: 5px 0;
  margin-right: 20px;
  width: 45px;
}

ul.price_point li .txt {
  margin-top: 11px;
}

ul.price_point li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .page_price .padding_tb100 {
    padding-top: 50px;
  }

  .page_price .uk-padding {
    padding: 30px 20px;
  }
}

/* ==========================================================================
Staff Room
========================================================================== */
.b_border {
  border-bottom: 2px solid #ccc;
}

.names_pd {
  padding-left: 15px;
  padding-right: 15px;
}

.s_person:first-of-type {
  margin-top: 100px;
}

.s_person {
  margin-bottom: 140px;
}

@media screen and (max-width: 640px) {
  .s_person .uk-grid>* {
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .s_person {
    margin-bottom: 70px;
  }
}

.person_grid_medium {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
}

.person_grid_medium>* {
  margin-left: 10%;
}

.person_grid_medium>*:first-child {
  margin-left: 0;
}

.person_grid_medium .grid_3_clm {
  width: 30.6666666667%;
}

.person_grid_medium .grid_2_clm {
  width: 45%;
}

@media screen and (max-width: 640px) {
  .person_grid_medium>* {
    margin-top: 5.333rem;
    margin-left: 0;
  }

  .person_grid_medium>*:first-child {
    margin-top: 0;
  }

  .person_grid_medium .grid_3_clm,
  .person_grid_medium .grid_2_clm {
    width: 100%;
  }
}

.person_wrap {
  margin: auto;
}

.person_wrap .person_list {
  padding: 0;
  transition: .3s;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
}

.person_wrap .person_list .person_list_img {
  border-radius: 50%;
  display: block;
  margin: auto;
  width: 40%;
  margin-right: 6%;
}

@media screen and (max-width: 640px) {
  .person_wrap .person_list .person_list_img {
    display: block;
    width: 75%;
    margin: auto;
    text-align: center;
  }
}

.person_wrap .person_list .person_list_img img {
  width: 100%;
  border-radius: 50%;
}

.person_wrap .person_list .person_list_txt {
  width: 54%;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .person_wrap .person_list .person_list_txt {
    display: block;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .person_wrap .person_list .person_list_txt h3 {
    margin-top: 1rem;
  }
}

.person_wrap .person_list .person_list_txt h3 span {
  font-weight: 200;
  line-height: 2;
  margin-top: 0.5rem;
}

.person_wrap .person_list .person_list_txt p {
  margin-top: 15px;
  font-size: 13px;
}

.person_wrap .person_list .person_botton a {
  font-size: 15px;
  padding: 10px 0;
  max-width: 160px;
  border: 1px solid #be9115;
  margin-top: 20px;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 640px) {
  .person_wrap .person_list .person_botton a {
    display: block;
    margin: auto;
    text-align: center;
    max-width: 210px;
    padding: 15px 0;
    margin-top: 20px;
  }
}

.person_wrap .person_list .person_botton a:hover {
  border: 1px solid #be9115;
}

.person_wrap .uk-button-default {
  border: 0px solid;
}

.person_box {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  padding: 30px 30px;
}

@media screen and (max-width: 640px) {
  .person_box {
    padding: 20px 0 0 0;
  }
}

.person_box .grid_2_clm {
  width: 50%;
}

@media screen and (max-width: 640px) {
  .person_box>* {
    margin-top: 2rem;
    margin-left: 0;
  }

  .person_box>*:first-child {
    margin-top: 0;
  }

  .person_box .grid_2_clm {
    width: 100%;
  }
}

.person_box .font_margin_top {
  margin-top: 30px;
}

.person_box img {
  width: 100%;
}

.person_batten {
  top: 20px;
  right: 20px;
  color: #000;
}

.person_batten:hover {
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  .person_batten {
    top: 12px;
    right: 12px;
  }
}

.person_txt {
  min-height: 100% !important;
  padding-right: 40px;
}

@media screen and (max-width: 640px) {
  .person_txt {
    padding-right: 0;
  }
}

.person_txt h4 {
  line-height: 1.8;
}

.person_close {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .person_close {
    display: block !important;
    margin: 40px auto 0;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.08rem;
    line-height: 3;
    width: 70%;
    background-color: #000;
    border: 1px solid #000;
  }
}

/* ==========================================================================
Okaken Select
========================================================================== */
.ttl_select h2 {
  background-image: url(/resource/images/head_select.jpg);
  color: #000000;
}

/* ==========================================================================
OKAKEN BASE
========================================================================== */
.garage_bg01 {
  margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
  .garage_bg01 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .garage_bg01 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}

.garage_wrap {
  margin-left: -30px;
}

.garage_wrap .garage_img {
  margin-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .garage_wrap .garage_img {
    margin-bottom: 60px;
  }
}

.garage_wrap .garage_img p {
  margin-top: 20px;
  line-height: 1.5;
}

.garage_wrap .uk-grid {
  margin-left: -30px;
}

@media screen and (max-width: 640px) {
  .garage_bg02 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}

.garage_bg03 {
  margin-top: 30px;
}

@media screen and (max-width: 640px) {
  .garage_bg03 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 640px) {
  .garage_bg03 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}

/* ==========================================================================
ZEH
========================================================================== */
@media screen and (max-width: 640px) {
  .zeh_page_ttl h2 span {
    font-size: 20px;
    font-size: 1.3333333333rem;
  }
}

.zeh_ttl_sub {
  font-size: 22px;
  font-size: 1.4666666667rem;
}

@media screen and (max-width: 640px) {
  .zeh_ttl_sub {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.zeh_logo {
  max-width: 360px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.zeh_logo img {
  width: 100%;
}

.zeh_goal {
  padding-bottom: 100px;
}

@media screen and (max-width: 640px) {
  .zeh_goal {
    padding-bottom: 70px;
  }
}

.zeh_goal .zel_goal_table {
  max-width: 640px;
  border: 2px solid #be9115;
  margin: 0 auto;
  margin-top: 1.666rem;
}

@media screen and (max-width: 640px) {
  .zeh_goal .zel_goal_table {
    max-width: 320px;
  }
}

.zeh_goal .zel_goal_table tbody tr th,
.zeh_goal .zel_goal_table tbody tr td {
  border: 2px solid #be9115;
  color: #be9115;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  vertical-align: top;
  width: 33%;
}

.zeh_goal .zel_goal_table tbody tr th {
  font-size: 18px;
  font-size: 1.2rem;
  padding: 15px 1rem;
}

.zeh_goal .zel_goal_table tbody tr td {
  font-size: 26px;
  font-size: 1.7333333333rem;
  padding: 12px 1rem;
}

.zeh_photo {
  margin-left: -30px;
}

.zeh_goal_content .zeh_goal_item {
  padding-top: 80px;
}

.zeh_goal_content .zeh_goal_item p {
  margin-top: 1rem;
}

/* 2023.04.19 追加 */

.zeh_goal .zel_wrap {
  max-width: 640px;
  border: 2px solid #be9115;
  border-right: none;
  margin: 0 auto;
  margin-top: 1.666rem;
}

@media screen and (max-width: 640px) {
  .zeh_goal .zel_wrap {
    max-width: 320px;
    border: none;
  }
}

.zeh_goal .zel_wrap .zel_result_goals {
  display: flex;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .zeh_goal .zel_wrap .zel_result_goals {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.zeh_goal .zel_wrap .zel_result_goals div {
  justify-content: center;
  border-right: 2px solid #be9115;
  color: #be9115;
  box-sizing: border-box;
  width: 25%;
  line-height: 1.2;
}

@media screen and (max-width: 640px) {
  .zeh_goal .zel_wrap .zel_result_goals div {
    width: calc(50% - 5px);
    border: 2px solid #be9115;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 640px) {

  .zeh_goal .zel_wrap .zel_result_goals div:nth-of-type(2n),
  .zeh_goal .zel_wrap .zel_result_goals div:last-of-type() {
    border-right: 2px solid #be9115;
  }
}

.zeh_goal .zel_wrap .zel_result_goals div dt {
  font-size: 18px;
  font-size: 1.2rem;
  padding: 15px 1rem;
  border-bottom: 2px solid #be9115;
  font-weight: bold;
}

.zeh_goal .zel_wrap .zel_result_goals div dd {
  font-size: 26px;
  font-size: 1.7333333333rem;
  padding: 12px 1rem;
  font-weight: bold;
}

/* ==========================================================================
各ページ
========================================================================== */
/* =============== photoclip =============== */
.photoclip-container {
  max-width: 980px;
}

.photoclip_menu {
  margin: 0;
  padding: 0 15px;
  font-family: 'Titan One';
  font-family: 'Slabo 22px';
  font-family: 'Patua One';
  font-weight: normal;
}

.photoclip_menu li {
  width: 50%;
  padding: 0;
  border: 1px solid #000;
  border-right: none;
}

.photoclip_menu li:last-child {
  border-right: 1px solid black;
}

.photoclip_menu li a {
  font-family: 'Sanchez';
  text-transform: none !important;
  letter-spacing: 1px;
}

.uk-subnav-pill a {
  padding: 0;
}

.work_menu {
  margin: 0;
  padding: 0 15px;
}

.work_menu li {
  border: 1px solid black;
  width: 12.5%;
  padding: 0;
  border-top: none;
  border-right: none;
}

.work_menu li:last-child {
  border-right: 1px solid black;
}

.material_menu {
  margin: 0;
  padding: 0 15px;
}

.material_menu li {
  border: 1px solid black;
  width: 16.66%;
  padding: 0;
  border-top: none;
  border-right: none;
}

.material_menu li:last-child {
  border-right: 1px solid black;
}

.photoclip_img {
  width: 20%;
  color: black;
  font-size: 13px;
}

.photoclip_img p {
  margin-top: 5px;
}

.photoclip_img a:hover {
  color: gray;
}

.photoclip_img img {
  margin-top: 30px;
}

.photoclip_img:hover {
  opacity: 0.7;
}

.uk-subnav-pill>*> :first-child {
  padding: 8px 10px;
  background: transparent;
  color: #000;
}

a {
  color: inherit;
}

photoclip_img p {
  margin: 0 auto;
  text-align: center;
}

.photoclip_main {
  margin-top: 50px;
  padding-bottom: 150px;
}

.photo-clip_menu {
  margin-top: 80px;
}

/* =============== blog =============== */
.blog-container {
  max-width: 1080px;
}

.staffblog {
  color: #000;
}

.blog_main {
  margin-top: 100px;
  float: left;
  width: 65%;
  padding-right: 3%;
}

.post_head h2 {
  font-size: 25px;
}

.post_head .day {
  font-size: 13px;
  margin: 5px 0 70px 0;
}

.content {
  font-size: 15px;
  line-height: 40px;
  margin-bottom: 200px;
}

.blog_category {
  float: right;
  width: 30%;
  margin-top: 100px;
  padding-left: 7%;
}

.blog_category h3 {
  display: block;
  border: 1px solid #a9a9a9;
  padding: 10px 0;
  text-align: center;
  font-size: 17px;
  letter-spacing: 3px;
}

.blog_category .past {
  background: #d9d9d9;
  transition: 0.5s;
}

.blog_category .past:hover {
  background: #ffffff;
}

.blog_category ul {
  margin: 0 0 80px 0;
  padding: 0;
}

.blog_category li {
  border-bottom: 1px solid #a9a9a9;
  line-height: 20px;
  padding-left: 5px;
  font-size: 15px;
  margin-top: 15px;
  padding-bottom: 15px;
}

.blog_category img {
  padding-bottom: 40px;
  display: block;
  margin: 0 auto;
}

.blog_category a {
  color: #000;
  text-decoration: none;
}

.blog_category a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.category {
  border-bottom: 1px solid #a9a9a9;
  padding-bottom: 10px;
}

.category_tit {
  line-height: 20px;
  padding-left: 5px;
  font-size: 15px;
  margin-top: 20px;
}

.category_txt {
  line-height: 20px;
  padding-left: 5px;
  font-size: 13px;
  margin: 11px 0;
}

.calendar {
  padding-top: 40px;
}

/* =============== ↓↓↓↓↓↓↓↓↓↓↓↓↓↓ レスポンシブ ↓↓↓↓↓↓↓↓↓↓↓↓ =============== */
@media screen and (max-width: 700px) {
  .post_head h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .post_head .day {
    font-size: 13px;
    margin: 0px 0 60px 0;
  }

  .content {
    font-size: 15px;
    line-height: 40px;
    margin: 50px 0 70px 0;
  }

  .chairman_back h2 {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 4px;
  }
}

/* =============== photoclip 中 =============== */
.space {
  width: 100%;
  height: 100px;
}

.photoclip_pic {
  margin-top: 50px;
}

.photoclip_pic img {
  margin: 20px 0;
  width: auto;
  max-height: 900px;
}

.house {
  margin-top: 100px;
  color: #000;
}

.house .house_tit {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 50px;
}

.house .house_txt {
  font-size: 15px;
  text-align: left;
  line-height: 30px;
}

.photoclip_more {
  padding-bottom: 100px;
}

.padding_0 {
  padding: 0;
}

/* =============== ↓↓↓↓↓↓↓↓↓↓↓↓↓↓ レスポンシブ ↓↓↓↓↓↓↓↓↓↓↓↓ =============== */
@media screen and (max-width: 790px) {
  .photoclip_menu li {
    width: 50%;
    padding: 0;
  }

  .work_menu li:nth-child(4) {
    border-right: 1px solid black;
  }

  .photoclip_img {
    width: 33.33%;
    margin-top: 10px;
  }

  .work_menu li {
    width: 25%;
  }

  .material_menu li:nth-child(3) {
    border-right: 1px solid black;
  }

  .material_menu li {
    width: 33.33%;
  }

  .uk-subnav-pill>*> :first-child {
    padding: 5px 10px;
    background: transparent;
    color: #000;
  }

  .photo-clip_menu {
    margin-top: 40px;
  }

  .photoclip_main {
    margin-top: 0px;
    padding-bottom: 150px;
  }

  /* =============== photoclip 中 =============== */
  .photoclip_pic {
    margin-top: 20px;
  }

  .photoclip_pic img {
    margin: 8px 0;
  }

  .house {
    margin-top: 50px;
  }

  .house .house_tit {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .house .house_txt {
    font-size: 13px;
    text-align: left;
    line-height: 25px;
  }

  .photoclip_more {
    padding-bottom: 50px;
  }
}

/* =============== ↓↓↓↓↓↓↓↓↓↓↓↓↓↓ レスポンシブ ↓↓↓↓↓↓↓↓↓↓↓↓ =============== */
@media screen and (max-width: 500px) {
  .photoclip_img {
    width: 50%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 700px) {
  .blog_main {
    margin-top: 50px;
    width: 100%;
    float: none;
    margin-right: 0;
    padding-right: 0;
  }

  .blog_main h2 {
    font-size: 20px;
  }

  .blog_main p {
    font-size: 15px;
  }

  .blog_main .day {
    margin-bottom: 50px;
    font-size: 13px;
  }

  .blog_category {
    width: 100%;
    float: none;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-top: 50px;
    margin-left: 0;
    padding-left: 0;
  }

  .blog_category h3 {
    text-align: center;
    font-size: 17px;
    padding: 10px 0;
  }

  .blog_category img {
    width: 300px;
    padding: 20px 0 70px 0;
  }

  .blog_category li {
    font-size: 13px;
  }
}

/* =============== casa =============== */
.casa_txt {
  margin-top: 60px;
  font-size: 15px;
  line-height: 30px;
  color: #000000;
}

.sanpou {
  margin-bottom: 100px !important;
}

.sanpou p {
  margin-top: 50px;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
}

.sanpou a img {
  width: 180px;
  margin-top: 20px;
}

.casa_con {
  margin-top: 100px;
  color: #000;
}

.casa_con .casa_con_tit {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
}

.casa_con .casa_con_status {
  font-size: 16px;
  margin-bottom: 30px;
}

.casa_con .casa_con_txt {
  font-size: 15px;
  line-height: 30px;
}

/* =============== ↓↓↓↓↓↓↓↓↓↓↓↓↓↓ レスポンシブ ↓↓↓↓↓↓↓↓↓↓↓↓ =============== */
@media screen and (max-width: 700px) {
  .casa_txt {
    margin-top: 30px;
    font-size: 13px;
    line-height: 25px;
  }

  .casa_con {
    margin-top: 50px;
  }

  .casa_con .casa_con_tit {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .casa_con .casa_con_txt {
    font-size: 13px;
    line-height: 25px;
  }
}

/* =============== ↓↓↓↓↓↓↓↓↓↓↓↓↓↓ レスポンシブ ↓↓↓↓↓↓↓↓↓↓↓↓ =============== */
@media screen and (max-width: 700px) {
  .ls_fair_con {
    margin-top: 60px;
  }

  .ls_fair_con .ls_fair_tit {
    font-size: 20px;
  }

  .ls_fair_con .ls_fair_img img {
    margin: 15px 0;
  }

  .ls_fair_con .ls_fair_txt {
    margin-top: 30px;
    font-size: 14px;
    line-height: 25px;
  }

  .ls_fair_con .thum {
    margin-top: 50px;
    display: block;
  }

  .ls_fair_con .thum a,
  .ls_fair_con .thum div {
    width: 70%;
    margin: 40px auto;
    display: block;
  }

  .ls_fair_con .thum a img,
  .ls_fair_con .thum div img {
    width: 100%;
  }

  .ls_fair_con .thum a h3,
  .ls_fair_con .thum div h3 {
    margin-top: 10px;
    font-size: 18px;
  }

  .mail_contact {
    padding: 60px 0;
  }

  .mail_contact .ls_mail {
    width: 90%;
    height: 80px;
    font-size: 16px;
    line-height: 80px;
    margin: 0px auto 50px auto;
  }

  .mail_contact .ls_tell p {
    font-size: 15px;
  }

  .mail_contact .ls_tell a {
    font-size: 23px;
  }
}

@media screen and (min-width: 700px) {
  .ls_tell a[href^="tel:"] {
    pointer-events: none;
  }
}

/* =============== news_con =============== */
.news_con {
  color: #000;
  margin-top: 100px;
  margin-bottom: 150px;
}

.news_main {
  float: left;
  width: 70%;
  padding-right: 3%;
}

.news_main h3 {
  font-size: 25px;
}

.news_main .day {
  font-size: 13px;
  margin-top: 20px;
}

.news_main .news_txt {
  font-size: 15px;
  margin-top: 50px;
  line-height: 40px;
}

.news_main img {
  min-width: 100%;
  margin-top: 100px;
}

.news_category {
  float: right;
  width: 25%;
}

.news_category p {
  width: 100%;
  border: 1px solid #a9a9a9;
  padding: 7px 0;
  text-align: center;
  font-size: 15px;
}

.news_category ul {
  margin-top: 20px;
  padding: 0;
}

.news_category ul li {
  border-bottom: 1px solid #a9a9a9;
  line-height: 20px;
  padding-left: 10px;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

.news_category ul li a {
  color: #000;
  text-decoration: none;
}

.news_category ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.wp-pagenavi {
  text-align: center;
  margin-top: 50px;
}

.pages {
  display: none;
}

/* =============== ↓↓↓↓↓↓↓↓↓↓↓↓↓↓ レスポンシブ ↓↓↓↓↓↓↓↓↓↓↓↓ =============== */
@media screen and (max-width: 700px) {
  .news_con {
    margin: 50px 0px;
  }

  .news_main {
    margin-top: 0px;
    width: 100%;
    float: none;
    margin-right: 0;
    padding-right: 0;
  }

  .news_main h3 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .news_main .day {
    margin: 0px;
    font-size: 13px;
  }

  .news_main .news_txt {
    font-size: 15px;
    margin: 0;
    margin: 50px 0 70px 0;
  }

  .news_main img {
    width: 500px;
    margin-top: 50px;
  }

  .news_category {
    width: 100%;
    float: none;
    margin: 0 auto;
    padding-bottom: 30px;
    margin-top: 50px;
    margin-left: 0;
    padding-left: 0;
  }

  .news_category p {
    text-align: center;
    font-size: 16px;
    padding: 7px 0;
    letter-spacing: 1px;
  }

  .news_category li {
    font-size: 13px;
  }
}

/* =============== 404 =============== */
.nf404 {
  color: #000;
  margin-top: 100px;
  height: 600px;
}

.nf404 h3 {
  text-align: center;
  font-size: 25px;
}

@media screen and (max-width: 700px) {
  .nf404 {
    color: #000;
    margin-top: 100px;
    height: 250px;
  }

  .nf404 h3 {
    text-align: center;
    font-size: 17px;
  }
}

/*# sourceMappingURL=style.css.map */
