@charset "utf-8";
@media screen and (max-width:640px) {
  img {
    width: 100%;
    display: block;
    height: auto;
  }
  body {
    line-height: 1.5;
    font-size: 0.8rem;
  }
  #main p {
    font-size: 1.0rem;
  }
  .pc {
    display: none;
  }
  /***トップへ戻るボタン***/
  #page_top {
    width: 95px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #0074bf;
    opacity: 0.6;
    border-radius: 15px;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 100px;
    height: 60px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -25px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a::after {
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  /***トップへ戻るボタンここまで***/
  /*ヘッダー*/
  header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #logo {
    width: 40%;
    margin: 15px;
    float: left;
  }
  #logo span {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
  #nav-toggle {
    width: 30px;
    height: 25px;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
  }
  /*ハンバーガーメニューのナビゲーションを表示:*/
  #global-nav {
    background-color: rgba(249, 249, 249, 0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 23px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .6s ease;
  }
  .open #global-nav {
    visibility: visible;
    opacity: 1;
  }
  #global-nav ul {
    opacity: 0;
    transform: translateY(-200px);
    transition: all .8s ease;
  }
  .open #global-nav ul {
    opacity: 1;
    transform: translateY(0);
  }
  .open #global-nav ul {
    opacity: 1;
    transform: translateY(0);
  }
  #global-nav a {
    display: block;
    padding: 10px 0;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  #tel li {
    background-image: url("../images/tel.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 8%;
    padding-left: 11px;
    margin-left: 15px;
    text-align: center;
    padding-top: 5px;
  }
  #tel a {
    color: #0074bf;
    font-size: 2.2rem;
    font-weight: bold;
  }
  #mail {
    width: 100%;
  }
  #mail span {
    background-image: url("../images/mail.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12%;
    padding-left: 47px;
    padding-top: 2px;
  }
  #gnavi li:last-child a {
    line-height: 100%;
    background: #b6252e;
    background: linear-gradient(to right, #f22431, #b6252e);
    color: #fff;
    padding: 10px 37px;
  }
  #home a {
    color: #0074bf;
  }
  #office a {
    color: #0074bf;
    margin-bottom: 10px;
  }
  /*ハンバーガーメニュー3本:*/
  #nav-toggle > div {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transfom .6s ease-in-out, top .5s ease;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 10px;
  }
  #nav-toggle span:nth-child(3) {
    top: 20px;
  }
  .open #nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .open #nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .open #nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  /*ハンバーガーメニュー:終了*/
  /*メインビジュアル*/
  main {
    width: 100%;
    margin: 0 auto;
  }
  #main1 {
    position: relative;
    overflow: hidden;
  }
  #main1 h1 {
    position: absolute;
    padding: 5%;
    top: 52%;
    left: 7%;
    right: 23%;
    font-size: 1.0rem;
    color: #333;
    z-index: 1;
    line-height: 1.5;
    background: rgba(236, 240, 244, 0.8);
    border-radius: 10px;
  }
  #mainPhoto {
    background-image: url("../images/main01.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 350px;
  }
  .anim-box.zoomin.is-animated {
    animation: zoomIn 3s cubic-bezier(0.6, 3, 0.8, 2) 1 forwards;
  }
  @keyframes zoomIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  /*コンテンツ　見出し*/
  h2 {
    text-align: center;
    color: #fff;
    font-size: 1.0rem;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  #content {
    width: 100%;
    height: 25px;
    background-color: #0074bf;
    padding-top: 9px;
    padding-bottom: 10px;
  }


 /*打ち出し　 オーナー様共通CSS*/	
#ownarmain{
    width: 100%;
	margin-top: 20px;
	}

    /*コンテンツ　最新物件情報CSS*/
    #NewBukkenInfo {
        margin-left: auto;
        line-height: 1.4;
        margin-bottom: 45px;
        font-family: heisei-maru-gothic-std, sans-serif;
        font-weight: 400;
        font-style: normal;

    }
    #NewBukkenInfo table {
        width: 100%;
    }
    #NewBukkenInfo table caption {
        font-size: 120%;
    }
    #NewBukkenInfo table th {
        text-align: center;
        background-color: #87cefa;
        padding: 0.5em;
        border:solid 2px #fff;
    }
    #NewBukkenInfo table td {
        padding: 0.5em;
        display: table-cell;
        vertical-align: middle;
        border:solid 1.8px #ddd;
    }

    #NewBukkenInfo table td img {
        width: 100px;
        height: auto;
        margin: 0 auto;
    }

    #NewBukkenInfo a:hover {
        opacity: 0.5;
    }
    /*コンテンツ　最新物件情報CSS*ここまで/
  /*コンテンツ　テナント様 オーナー様共通*/
  h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-left: 3%;
    margin-bottom: 20px;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  h4 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  section p {
    font-size: 1.0rem;
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .intro a {
    color: #0074bf;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
  }
  /*コンテンツ　テナント様 オーナー様共通*/
  /*コンテンツ　テナント様start*/
  #tenant {
    margin-bottom: 50px;
  }
  #tenant_p {
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #bukken1 {
    background-image: url(../images/bukken1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 230px;
  }
  #bukken1:hover {
    background-image: url(../images/bukken1-1.jpg);
  }
  #tenant .bukken section {
    background-color: #3eb370;
    height: 230px;
  }
  .bukken ul {
    padding-top: 5px;
  }
  .bukken li {
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
  }
  #tenant span {
    background-image: url("../images/tel.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 9%;
    padding-top: 14px;
    margin-left: -8px;
  }
  #tenant a span {
    color: #0074bf;
    font-size: 1.9rem;
    padding-left: 38px;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  #tokyo {
    margin-bottom: 10px
  }
  /*コンテンツ　テナント様end*/
  /*コンテンツ　オーナー様*/
  #bukken2 {
    background-image: url(../images/bukken2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 230px;
    position: relative;
    bottom: 230px;
  }
  #bukken2:hover {
    background-image: url(../images/bukken2-2.jpg);
  }
  #ownar .bukken section {
    background-color: #f69522;
    height: 230px;
    position: relative;
    top: 230px;
  }
  .bukken ul {
    padding-top: 5px;
  }
  .bukken li {
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
  }
  #ownar span {
    background-image: url("../images/mail.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12%;
  }
  #ownar a span {
    color: #ffffff;
    font-size: 1.5rem;
    padding-left: 40px;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 2px;
  }
  #ownar li a {
    display: block;
    text-decoration: none;
    transition: ease all .3s;
    line-height: 38px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    width: 330px;
    height: 40px;
    position: relative;
    background: #b6252e;
    background: linear-gradient(to right, #f22431, #b6252e);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1px;
    margin-bottom: 25px;
  }
  #tokyo2 {
    margin-bottom: 10px
  }
  /*コンテンツ　オーナー様end*/
  /*コンテンツ　街並み*/
  #city {
    width: 100%;
    height: auto;
  }
  #cityscape img {
    width: 100%;
    height: auto;
  }
  /*コンテンツ　街並みend*/
  /*コタニ興業から2ページ目～残す*/
  /*フッター*/
  footer {
    width: 100%;
    background-color: #0074bf;
  }
  #footerInner {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  #logo4 {
    width: 50%;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  #footerInner nav {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #gnavi2 {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
  }
  #gnavi2 a {
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    display: block;
  }
  #mail2 a {
    background-image: url(../images/mail2.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 18px;
    padding-bottom: 0px;
    background-size: 15%;
  }
  #gnavi2 li {
    font-size: 0.7rem;
    list-style: none;
  }
  #copy {
    color: #ffffff;
  }
  footer p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.7rem;
  }
  /*コンテンツ　会社概要 start*/
  section#coinfo {
    margin: 130px 0;
    font-size: 1.3rem;
  }
  section#coinfo dl {
    display: block;
    width: 100%;
    margin-left: 3%;
  }
  #coinfo h2 {
    color: #333;
    text-align: left;
    font-size: 1.3rem;
    margin-left: 3%;
  }
  #coinfo h2::before {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 10px solid #3eb370;
    border-right: 4px solid #6bf2a1;
    width: 0px;
    height: 14px;
    top: 30px;
    left: 0;
  }
  #coinfo h2::after {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 10px solid #3eb370;
    border-right: 4px solid #6bf2a1;
    width: 0px;
    height: 14px;
    top: 30px;
    left: 0;
  }
  section#coinfo dl dt, section#coinfo dl dd {
    float: none;
    display: block;
    padding: 10px 0;
    border-top: 1px dotted #3eb370;
    line-height: 1.6rem;
  }
  section#coinfo dl dt {
    width: 100%;
    font-weight: bold;
    color: #3eb370;
  }
  section#coinfo dl dd {
    width: 100%;
  }
  ection#coinfo dl dd ul li a:link {
    color: #3eb370;
  }
  #coinfo a {
    color: #3eb370;
  }
  /*コンテンツ　会社概要 end*/
  /*コンテンツ　プライバシーポリシー start*/
  section#privacy {
    margin: 130px 0;
    font-size: 1.3rem;
  }
  #privacy h2 {
    margin-left: 3px;
    color: #333;
    font-size: 1.3em;
    text-align: left;
    font-weight: bold;
  }
  #privacy h2::before {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 10px solid #3eb370;
    border-right: 4px solid #6bf2a1;
    width: 0px;
    height: 20px;
    top: 30px;
    left: 0;
  }
  #privacy h2::after {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 10px solid #3eb370;
    border-right: 4px solid #6bf2a1;
    width: 0px;
    height: 20px;
    top: 30px;
    left: 0;
  }
  section#privacy h4 {
    margin: 40px auto 0 auto;
    font-weight: bold;
    margin-left: 5px;
    text-align: left;
  }
  section#privacy h4::before {
    content: "";
    border-left: 5px solid #3eb370;
    padding-right: 5px;
    width: 0px;
    height: 20px;
  }
  section#privacy p {
    margin: 10px auto 0 auto;
    line-height: 1.8rem;
  }
  /*コンテンツ　プライバシーポリシー end*/
  /*コンテンツ　問い合わせ start*/
  section#contact {
    margin: 130px 0;
  }
  section#contact h2 {
    color: #333;
    text-align: left;
    font-size: 1.3rem;
    margin-left: 3%;
    margin-bottom: 30px;
  }
  #contact h2::before {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 14px solid #3eb370;
    border-right: 6px solid #6bf2a1;
    width: 0px;
    height: 15px;
    top: 30px;
    left: 0;
  }
  #contact h2::after {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 14px solid #3eb370;
    border-right: 6px solid #6bf2a1;
    width: 0px;
    height: 15px;
    top: 30px;
    left: 0;
  }
  section#contact #item {
    margin-left: 3%;
  }
  section#contact table {
    width: 100%;
    margin: 25px 3%;
  }
  section#contact table th, section#contact table td {
    display: block;
    float: none;
    padding: 10px 0;
    border-top: 1px dotted #3eb370;
    text-align: left;
    line-height: 1.6rem;
  }
  section#contact table th {
    width: 100%;
    color: #3eb370;
  }
  section#contact table td {
    width: 100%;
  }
  section#contact table td input[type=text] {
    width: 80%;
    padding: 5px;
  }
  section#contact table td textarea {
    width: 95%;
    padding: 5px;
  }
  section#contact table td select {
    padding: 5px;
  }
  section#contact table th span {
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #DC0F12;
  }
  section#contact .buttons {
    text-align: center;
    outline: none;
  }
  section#contact input[type=submit], section#contact input[type=reset], section#contact input[type=button], .buttons a {
    -webkit-appearance: none;
    border-radius: 0;
    padding: 20px 40px;
    margin-bottom: 20px;
    background-color: #ef771d;
    color: #ffffff;
    font-size: 0.8em;
    font-weight: bolder;
  }
  /*コンテンツ　問い合わせ end*/
  /*確認 start*/
  .buttons input {
    width: 160px;
  }
  /*確認 end*/
  /*error start*/
  #error {
    padding-bottom: 50px;
  }
  /*error end*/
  /*thank you start*/
  #contact2 p {
    margin-bottom: 50px;
    ;
  }
  section#contact2 {
    width: 80%;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  section#contact2 h2 {
    color: #333;
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  #contact2 h2::before {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 10px solid #3eb370;
    border-right: 4px solid #6bf2a1;
    width: 0px;
    height: 20px;
    top: 30px;
    left: 0;
  }
  #contact2 h2::after {
    display: inline-block;
    content: "";
    z-index: 1;
    border-left: 10px solid #3eb370;
    border-right: 4px solid #6bf2a1;
    width: 0px;
    height: 20px;
    top: 30px;
    left: 0;
  }
  /*thank you end*/
}