@charset "UTF-8";
/* 
Theme Name: tmp1
Theme URL: http://tmp1/
Description: tmp1
Author: tmp1
 */
@import url("layout2.css");
@import url("layout_pc2.css");
@import url("layout_tlsp2.css");
@import url("common2.css");
@import url("animate2.css");
/*=========================

=========================*/
/*=========================
<time>2023年4月1日</time>
<time datetime="2023-04-01">2023年4月1日</time>
<time datetime="<?php echo get_the_date('Y-m-d'); ?>"><?php echo get_the_date('Y年m月d日'); ?></time>

1●	コンスタントケース	全て大文字　各単語をアンダーバーで繋ぐ	PHP_HENSU_NAME
2●	パスカルケース	各単語の先頭が大文字	PhpHensuName
3●	キャメルケース	最初の単語以外の単語の先頭が大文字	phpHensuName
4●	スネークケース	各単語をアンダーバーで繋ぐ	php_hensu_name
5	ケバブケース	各単語をハイフンで繋ぐ	php-hensu-name

cssはキャメル


□クラス名はパスカルケースで記述する。
クラス定数名はコンスタントケースで記述する。
関数名はキャメルケースで記述する。
<?php
class ClassTest{
    const CLASS_NUM = 1;
    function testMethod(){
        $TestHensu = ‘test’;
        echo $TestHensu;
    }
}
?>

□WordPressの命名規則
変数と関数はスネークケースで、全て小文字にする。
クラス名はスネークケースで、各単語の先頭を大文字にする。
定数名はスネークケースで、全て大文字にする。

<?php
class Class_Test{
    const CLASS_NUM = 1;
    function test_method(){
        $test_hensu = ‘test’;
        echo $test_hensu;
    }
}
?>

□Laravel
変数：スネーク記法
メソッド：ローワーキャメル記法

$user_name
$college_name_current
userProfile()
postRegister()

=========================*/
/*-------------------------

-------------------------*/
/*テーブル1*/
.table1 {
  border-collapse: collapse;
  width: 100%;
}

.table1 th.t_top {
  border-top: #be1309 4px solid;
}

.table1 th {
  border-bottom: #e3e3e3 1px dotted;
  text-align: left;
  padding: 10px;
  font-weight: normal;
}

.table1 td.t_top {
  border-top: #b3b3b3 4px solid;
}

.table1 td {
  border-bottom: #e3e3e3 1px dotted;
  text-align: left;
  padding: 10px;
}

.table1 tr:hover {
  background: #3d80df;
  color: #ffffff;
}

/* PC 769px以上 */
@media print, screen and (min-width: 769px) {
  /*枠*/
  /*テーブル*/
  .table {
    border-collapse: collapse;
    display: table;
  }
  .table .row {
    display: table-row;
  }
  .table .row > div {
    display: table-cell;
    margin: 15px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
  }
  .table .row div:nth-child(1) {
    background-color: #f4f1ea;
    width: 30%;
    text-align: center;
    vertical-align: middle;
  }
  .table .row div a {
    color: #45281c;
    text-decoration: underline;
  }
  .table .row div a:hover {
    text-decoration: none;
    color: #999;
  }
}

/* Tablet 768pxまで */
@media only screen and (max-width: 768px) {
  /*=========================
コンテンツ共通
=========================*/
  /*スマホテーブル横スクロール
    テーブルを囲む<div class="scroll"></div>*/
  .scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

/* Mobile 640pxまで */
/*=========================

=========================*/
/*-------------------------

-------------------------*/
/*
li:nth-child(odd)
li:nth-child(even)
li:nth-child(2)
li:nth-last-child(2)
background-size:400px auto;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;	

SiteGuard WP Plugin　※ログインURLが変わる
BackUpWordPress
Better Delete Revision
Contact Form 7
Contact Form 7 add confirm
Meta Slider
PS Auto Sitemap
Responsive Lightbox
Google XML Sitemaps
XML Sitemaps  Auctollo
backwpup
*/
