@charset "utf-8";
/*
Theme Name: Amano Ryo
Theme URI: http://amanoryo.com
Description: An Ultra Responsive WordPress Theme
Version: 2.0.0
Author: Masato Takahashi
Author URI: http://wwwonder.jp
Date: 2016
Coding Rule: http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml
 
F 01. Flex Box Grid 1200px / 12 Columns
F 02. General Styles
F 03. Typography
F 04. Forms
F 05. Button
F 06. Position
F 07. Header
F 08. Content
F 09. Home
F 10. News
F 11. Schedule
F 12. Pagination
F 13. Footer
F 14. Privacy Policy, Terms of Use
F 15. Discography
F 16. Profile
 17. Support

F 18. Contactform 7 Specific Styling
F 19. 404
*/


/* ------------------------------------------------------------------------ */
/* 01. Flex Box Grid 960px / 12 Columns */
/* ------------------------------------------------------------------------ */

.container {
  position: relative;
  width: 1200px;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
}

.col {
  margin-left: 2%;
  margin-right: 2%;
  float: left;
}

.col.one    { width:  4.33333333333333%;  } /* 1000px:43px     768px:33px   */
.col.two    { width:  12.66666666666667%; } /* 1000px:126px    768px:96px   */
.col.three  { width:  21%;                } /* 1000px:210px    768px:161px  */
.col.four   { width:  29.33333333333333%; } /* 1000px:293px    768px:225px  */
.col.five   { width:  37.66666666666667%; } /* 1000px:376px    768px:289px  */
.col.six    { width:  46%;                } /* 1000px:460px    768px:353px  */
.col.seven  { width:  54.33333333333333%; } /* 1000px:543px    768px:417px  */
.col.eight  { width:  62.66666666666667%; } /* 1000px:626px    768px:481px  */
.col.nine   { width:  71%;                } /* 1000px:710px    768px:545px  */
.col.ten    { width:  79.33333333333334%; } /* 1000px:793px    768px:609px  */
.col.eleven { width:  87.66666666666667%; } /* 1000px:876px    768px:673px  */
.col.twelve { width:  96%;                } /* 1000px:960px    768px:737px  */


.one-half     { width: 48%;    } /* 960px: 460.8px    */
.one-third    { width: 30.66%; } /* 960px: 294.336px  */
.two-third    { width: 65.33%; } /* 960px: 627.168px  */
.one-fourth   { width: 22%;    } /* 960px: 211.2px    */
.three-fourth { width: 74%;    } /* 960px: 710.4px    */
.one-fifth    { width: 16.8%;  } /* 960px: 161.28px   */
.two-fifth    { width: 37.6%;  } /* 960px: 360.96px   */
.three-fifth  { width: 58.4%;  }
.four-fifth   { width: 67.2%;  }
.one-sixth    { width: 13.33%; }
.five-sixth   { width: 82.67%; }

.one-half,
.one-third,
.two-third,
.three-fourth,
.one-fourth,
.one-fifth,
.two-fifth,
.three-fifth,
.four-fifth,
.one-sixth,
.five-sixth {
  position: relative;
  margin-right: 4%;
  margin-bottom: 20px;
  float: left;
}

.last { margin-right: 0 !important; }

/* -- Self Clearing Goodness -- */
.container:after,
.row:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after { clear: both; }

.clearfix { zoom: 1; }

.clear {
  clear: both;
  visibility: hidden;
  width: 0;
  height: 0;
}



/* ------------------------------------------------------------------------ */
/* 02. General Styles
/* ------------------------------------------------------------------------ */

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  overflow: auto; /* Force Full Wide */
  font-size: 62.5%; /* =10px */
}

body {
  background-color: #fff;
  font-family: "Segoe UI", Roboto, "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.5rem; /* =15px */
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.02em;
}

  .inner-body {
    background-color: #E6E6E6;
    border-top: none;
  }



/* ------------------------------------------------------------------------ */
/* 03. Typography
/* ------------------------------------------------------------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1.6;
}

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

p { margin: 0 0 20px 0; }

  p img { margin: 0; }

em { font-style: italic; }

strong { font-weight: bold; }

small { font-size: 80%; }

hr {
  border: solid #e3e3e3;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 10px;
  height: 0;
}

pre {
  background: #f9f9f9;
  border: 1px solid #e3e3e3;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) inset;
  height: auto;
  margin: 0 0 20px;
  overflow-x: auto;
  padding: 20px;
}

.hidden { display: none !important; }


/* -- Links -- */
a,
a:visited {
  color: #0E1902;
  text-decoration: underline;
  outline: 0;
}

a:hover,
a:focus {
  color: #555;
  text-decoration: none;
}

a img:hover {
  opacity: 0.7;
}


/* -- Transititon for Links -- */
a,
a img {
          transition: all 0.3s ease-in-out;
}


/* -- Lists -- */
ul,
ol {
  margin: 0 0 20px 0;
}

ul { list-style: disc inside; }

ol { list-style: decimal inside; }

    ul li ul,
    ul li ol,
    ol li ul,
    ol li ol {
      margin: 10px 0 0 20px;
    }

ul li,
ol li {
  margin-bottom: 8px;
}

ul.bordered li,
ol.bordered li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

ul.bordered.dotted li,
ol.bordered.dotted li {
  border-bottom-style: dotted;
}



/* ------------------------------------------------------------------------ */
/* 04. Forms
/* ------------------------------------------------------------------------ */

form,
fieldset { margin-bottom: 20px; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
  background-color: #fff;
  padding: 8px 8px;
  outline: none;
  border-radius: 2px;
  display: block;
  margin: 0 0 15px 0;
  width: 400px;
  max-width: 100%;
  color: #666;
  border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus {
  border: 1px solid #bbb;
  color: #333;
}

textarea { min-height: 60px; }

select {
  width: 220px;
  padding: 5px;
}

label,
legend {
  cursor: pointer;
  display: block;
}

  label span,
  legend span { font-weight: bold; }

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  margin:0 5px 5px 0;
  font-size:1.3rem;
  line-height:13px;
  padding:12px 20px;
  border: 1px solid #ddd;
  font-weight:bold;
  display: inline-block;
  background-color: #FFFFFF;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  border: 1px solid #ddd;
  background-color: #f3f3f3;
  text-decoration: none;
}



/* ------------------------------------------------------------------------ */
/* 05. Button */
/* ------------------------------------------------------------------------ */

a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  margin:0 0 5px 0;
  font-size: 1.3rem;
  line-height:13px;
  padding:15px 30px;
  font-weight:bold;
  display: inline-block;
  color: #000;
  background-color: #FFFFFF;
  border: solid 1px #000000;
  text-decoration: none;
  letter-spacing: 1px;
}

a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  color: #FFF;
  background-color: #000;
}



/* ------------------------------------------------------------------------ */
/* 06. Position */
/* ------------------------------------------------------------------------ */

.align-left   { text-align: left !important; }
.align-center { text-align: center !important; }
.align-right  { text-align: right !important; }

.vertical-align-top    { vertical-align: top !important; }
.vertical-align-middle { vertical-align: middle !important; }
.vertical-align-bottom { vertical-align: bottom !important; }



/* ------------------------------------------------------------------------ */
/* 07. Header */
/* ------------------------------------------------------------------------ */

.header {
  background-color: #000;
  height: 80px;
}

  .header .logo {
    margin-top: 20px;
    line-height: 1.0;
  }
  
    .header .logo img { 
      max-width: 100%;
      height: auto;
    }
    
    .header .logo img:hover { opacity: 0.7; }
    
    .header .logo .logo-retina { display: none; }
    
    .header .navigation ul {
      list-style: none;
      display: flex;
      justify-content: flex-end;
      margin-bottom: 0;
    }
    
      .header .navigation ul li { margin-bottom: 0; }
      
        .header .navigation ul li a {
          display: block;
          text-decoration: none;
          font-size: 1.4rem;
          font-weight: 400;
          color: #fff;
          height: 80px;
          line-height: 80px;
          padding: 0 12px;
        }
        
        .header .navigation ul li a:hover { /*opacity: 0.7;*/ background-color: #222; }
        
        
        .header .navigation ul li.header-sns-icon.twitter-icon { margin-left: 40px; }
        
        .header .navigation ul li.header-sns-icon a {
          font-size: 2.0rem;
          padding: 0 7px;
        }








    /* Mobile Grobal Navi */



      .header .menu-toggle-switch {
        display: none; 
        position:absolute;
        width: 60px;
        height: 80px;
        top:0;
        left: 0;
        text-align: center;
      }

        .header .menu-toggle-switch i {
          font-size: 3.5rem !important;
          color: #FFF;
          padding: 21px 0;
          cursor: pointer;
        }







    .header .mobile-navigation { display: none; }













    @media only screen and (-webkit-min-device-pixel-ratio: 2), 
    only screen and (min-device-pixel-ratio: 2) {
      .header .logo .logo-standard { display: none; }
      .header .logo .logo-retina { display: inline; }
    }
    
/* -- Sticky Header -- */
@media only screen and (min-width: 960px) {
  .stuck {
    margin: 0 auto !important;
    position: fixed !important;
    top: 0;
    z-index: 2000;
    width: 100% !important;
    opacity: 0.95;
  }
}

@media only screen and (max-width: 959px) {
  .sticky-wrapper{ height: auto !important; }
}


/* ------------------------------------------------------------------------ */
/* 08. Content */
/* ------------------------------------------------------------------------ */

.page-wrap { padding: 40px 0; }

  .page-wrap .content {
    background-color: #FFF;
    padding: 50px;
    margin-bottom: 50px;
  }
  
  .page-wrap .content h2.content-title {
    font-size: 3.0rem;
    font-weight: 700;
    border-bottom: 3px solid #000;
    margin-bottom: 50px;
  }
  
  .page-wrap .content h3.content-title {
    font-size: 2.0rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
  }
  
  .page-wrap .content h3.content-index {
    font-size: 2.2rem;
    font-weight: 700;
    border-left: 7px solid #000;
    margin-bottom: 20px;
    padding-left: 10px;
  }
  
/* button area */
.button-area { margin-top: 30px; }

  .button-area div { text-align: center; }



/* ------------------------------------------------------------------------ */
/* 9. Home */
/* ------------------------------------------------------------------------ */

.top-recent-news {}

  .top-recent-news .news-item {
    border-bottom: 1px solid #CCC;
    padding: 15px 0;
  }

    .top-recent-news .news-item .post-meta {
      float: left;
      width: 210px;
    }
    
    .top-recent-news .news-item .post-meta .post-category {
      float: left;
      width: 100px;
      background-color: #FFF4D2;
      border-left: 10px solid #FFE599;
      padding-left: 10px;
    }

    .top-recent-news .news-item .post-meta .post-category.web {
      background-color: #FFD2D2;
      border-left: 10px solid #FF9999;
    }

    .top-recent-news .news-item .post-meta .post-category.tv {
      background-color: #DEFFD2;
      border-left: 10px solid #B3FF99;
    }

    .top-recent-news .news-item .post-meta .post-category.event {
      background-color: #FFF4D2;
      border-left: 10px solid #FFE599;
    }

    .top-recent-news .news-item .post-meta .post-category.cd {
      background-color: #FFD8B1;
      border-left: 10px solid #FFA64D;
    }

    .top-recent-news .news-item .post-meta .post-category.radio {
      background-color: #EAE3FF;
      border-left: 10px solid #CFBFFF;
    }

    .top-recent-news .news-item .post-meta .post-category.magazine {
      background-color: #D2FFF4;
      border-left: 10px solid #99FFE5;
    }

    .top-recent-news .news-item .post-meta .post-date {
      float: left;
      width: 100px;
      color: #777777;
      margin-left: 10px;
    }
    
      .top-recent-news .news-item .post-title a { font-weight: bold; }

.blog-item {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

  .blog-item .post-date {
    line-height: 1;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    color: #666;
  }
  
  .blog-item .post-title {
    line-height: 1.4;
    margin-top: 2px;
    padding: 0;
    font-weight: bold;
}





  .top-sns h3.content-title a { text-decoration: none; }


  .top-sns h3.content-title a i.fa-pen-square { color: #2C893A; }
  .top-sns h3.content-title a i.fa-twitter-square { color: #1DA1F2; }
  .top-sns h3.content-title a i.fa-youtube { color: #FF0000; }



/* ------------------------------------------------------------------------ */
/* 10. News */
/* ------------------------------------------------------------------------ */

.archive-post,
.single-post {}

  .archive-post .post-item,
  .single-post .post-item {
    padding-bottom: 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid #DDDDDD;
  }
  
    .archive-post .post-item .post-item-meta,
    .single-post .post-item .post-item-meta {
      margin-bottom: 10px;
    }
    
      .archive-post .post-item .post-item-meta .post-category,
      .single-post .post-item .post-item-meta .post-category {
        float: left;
        width: 100px;
        background-color: #FFF4D2;
        border-left: 10px solid #FFE599;
        padding-left: 10px;
      }







      .archive-post .post-item .post-item-meta .post-category.web,
      .single-post .post-item .post-item-meta .post-category.web {
      background-color: #FFD2D2;
      border-left: 10px solid #FF9999;
    }

      .archive-post .post-item .post-item-meta .post-category.tv,
      .single-post .post-item .post-item-meta .post-category.tv {
      background-color: #DEFFD2;
      border-left: 10px solid #B3FF99;
    }

      .archive-post .post-item .post-item-meta .post-category.event,
      .single-post .post-item .post-item-meta .post-category.event {
      background-color: #FFF4D2;
      border-left: 10px solid #FFE599;
    }

      .archive-post .post-item .post-item-meta .post-category.cd,
      .single-post .post-item .post-item-meta .post-category.cd {
      background-color: #FFD8B1;
      border-left: 10px solid #FFA64D;
    }

      .archive-post .post-item .post-item-meta .post-category.radio,
      .single-post .post-item .post-item-meta .post-category.radio {
      background-color: #EAE3FF;
      border-left: 10px solid #CFBFFF;
    }

      .archive-post .post-item .post-item-meta .post-category.magazine,
      .single-post .post-item .post-item-meta .post-category.magazine {
      background-color: #D2FFF4;
      border-left: 10px solid #99FFE5;
    }













      .archive-post .post-item .post-item-meta .post-date,
      .single-post .post-item .post-item-meta .post-date {
        float: left;
        width: 100px;
        color: #777777;
        margin-left: 20px;
      }
      
    .archive-post .post-item .post-title,
    .single-post .post-item .post-title {
      margin-bottom: 40px;
    }
    
      .archive-post .post-item .post-title h4,
      .single-post .post-item .post-title h4 {
        font-weight: bold;
        margin: 5px 0 0 0;
        color: #000;
        font-size: 1.8rem;
      }
      
        .archive-post .post-item .post-title h4 a { text-decoration: underline; }
        
        .archive-post .post-item .post-title a:hover { text-decoration: none; }
        
    .archive-post .post-item .post-content,
    .single-post .post-item .post-content { margin: 0;}



/* ------------------------------------------------------------------------ */
/* 11. Schedule */
/* ------------------------------------------------------------------------ */

.schedule-archive-table { width: 100%; }

  .schedule-archive-table th,
  .schedule-archive-table td {
    padding: 10px 10px;
    border: 1px solid #CCCCCC;
  }
  
    .schedule-archive-table th {
      text-align: left;
      font-weight: bold;
      vertical-align: middle;
    }
    
    .schedule-archive-table td { vertical-align: middle; }
    
    .schedule-archive-table td.date {
      width: 140px;
      text-align: center;
    }
    
      .schedule-archive-table td.date .calendar {
        width: 40px;
        height: 60px;
        border: 1px solid #DDDDDD;
        background-color: #FFF;
        padding: 1px;
        display: inline-block;
        margin:0;
      }
      
        .schedule-archive-table td.date .calendar .calendar-month {
          background-color: #006DD9;
          color: #FFF;
          font-size: 1.3rem;
          font-weight: bold;
          text-align: center;
        }
        
        .schedule-archive-table td.date .calendar .calendar-day {
          font-size: 2.2rem;
          font-weight: bold;
          text-align: center;
          line-height: 1;
          margin: 1px 0;
        }
        
        .schedule-archive-table td.date .calendar .calendar-day-of-week {
          font-size: 1.1rem;
          font-weight: bold;
          text-align: center;
          line-height: 1;
        }
        
      .schedule-archive-table td.date .from {
        width: 15px;
        height: 60px;
        line-height: 60px;
        display: inline-block;
        vertical-align: top;
      }

    .schedule-archive-table .schedule-item .post-meta {
      float: left;
      width: 100px;
      margin-right: 10px;
    }

      .schedule-archive-table .schedule-item .post-meta .meta-category {
        width: 100px;
        background-color: #FFF4D2;
        border-left: 10px solid #FFE599;
        padding-left: 10px;
      }




    .schedule-archive-table .schedule-item .post-meta .meta-category.web {
      background-color: #FFD2D2;
      border-left: 10px solid #FF9999;
    }

    .schedule-archive-table .schedule-item .post-meta .meta-category.tv {
      background-color: #DEFFD2;
      border-left: 10px solid #B3FF99;
    }

    .schedule-archive-table .schedule-item .post-meta .meta-category.event {
      background-color: #FFF4D2;
      border-left: 10px solid #FFE599;
    }

    .schedule-archive-table .schedule-item .post-meta .meta-category.cd {
      background-color: #FFD8B1;
      border-left: 10px solid #FFA64D;
    }

    .schedule-archive-table .schedule-item .post-meta .meta-category.radio {
      background-color: #EAE3FF;
      border-left: 10px solid #CFBFFF;
    }

    .schedule-archive-table .schedule-item .post-meta .meta-category.magazine {
      background-color: #D2FFF4;
      border-left: 10px solid #99FFE5;
    }












        .schedule-archive-table .schedule-item .post-title a { font-weight: bold; }



/* ------------------------------------------------------------------------ */
/* 12. Pagination */
/* ------------------------------------------------------------------------ */

.pagination {
  margin: 20px 0 50px;
  text-align: center;
}

  .pagination ul {
    display: inline-block;
    list-style-type: none;
  }
  
    .pagination ul li {
      border: 1px solid #E3E3E3;
      display: block;
      float: left;
      margin: 0;
      border-left: none;
    }
    
    .pagination ul li:first-child {
      border-left: 1px solid #E3E3E3;
      border-radius: 3px 0 0 3px;
    }
    
    .pagination ul li:last-child {
      border-left: none;
      border-radius: 0 3px 3px 0;
    }
    
    .pagination ul li.current {
      background-color: #000000; /* Accent Color */
      border-color: #000000; /* Accent Color */
      color: #FFF;
      padding: 8px 10px;
    }
    
      .pagination ul li a {
        display: block;
        padding: 8px 10px;
        text-decoration: none; 
      }
      
      .pagination ul li a:hover { text-decoration: none; }



/* ------------------------------------------------------------------------ */
/* 13. Footer
/* ------------------------------------------------------------------------ */

.footer {
  padding: 20px 0;
  background-color: #000;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #333;
  opacity:0.7;
  border-radius: 2px;
  transition: 0.4s all ease;
  text-align: center;
}

.back-to-top:hover {
  background-color: #000000;
  opacity:1.0;
}

  .back-to-top i {
    font-size: 3.5rem;
    line-height: 35px;
    color: #fff;
  }



/* ------------------------------------------------------------------------ */
/* 14. Privacy Policy, Terms of Use */
/* ------------------------------------------------------------------------ */

  .policy-content section,
  .terms-content section {
    margin-bottom: 30px;
    font-size: 1.2rem;
  }
  
    .policy-content section h3,
    .terms-content section h3 {
      font-size: 1.3rem;
      font-weight: bold;
    }
    
    .policy-content section p,
    .terms-content section p {
      font-size: 1.2rem;
    }
    
    .policy-content section ol.disc,
    .terms-content section ol.disc {
      list-style-type: disc;
      list-style-position: outside;
      margin-left: 20px;
    }
    
    .policy-content section ol.num,
    .terms-content section ol.num {
      list-style-type: decimal;
      list-style-position: outside;
      margin-left: 20px;
    }
    
    .policy-content section ol.num-lower-roman,
    .terms-content section ol.num-lower-roman {
      list-style-type: lower-roman;
      list-style-position: outside;
      margin-left: 20px;
    }
    
    .policy-content section li,
    .terms-content section li {
      font-size: 1.2rem;
      color: #333;
    }



/* ------------------------------------------------------------------------ */
/* 15. Discography */
/* ------------------------------------------------------------------------ */

.discography-content {}

  .discography-content .discography-item {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  
  .discography-content .discography-item .discography-cd-image {
    border:1px solid #E3E3E3;
    padding: 1px;
  }
  
    .discography-content .discography-item .discography-cd-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
  .discography-content .discography-item .discography-title {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
    .discography-content .discography-item p { margin-bottom: 30px; }



/* ------------------------------------------------------------------------ */
/* 16. Profile */
/* ------------------------------------------------------------------------ */

.profile-content {}

  .profile-content .profile-photo {
    border:1px solid #E3E3E3;
    padding: 1px;
  }
  
    .profile-content .profile-photo img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .profile-content .profile-name {
      font-weight: bold;
      font-size: 3.0rem;
      margin-bottom: 30px;
    }
    
      .profile-content .profile-name span {
        font-weight: normal;
        color: #666;
        margin-left: 10px;
      }
      
    .profile-content .profile-list { list-style: none; }
    
      .profile-content .profile-list li { border-bottom: 1px dotted #E3E3E3; }
      
      .profile-content .profile-list li strong {
        display: inline-block;
        width: 90px;
      }
      
    .profile-content .profile-divider {
      border: 0;
      height: 5px;
      background-color: #E3E3E3;
      margin: 30px 0;
    }
    
    .profile-content .profile-biography {}




/* ------------------------------------------------------------------------ */
/* 17. Support */
/* ------------------------------------------------------------------------ */

.support-content {}

  .support-content .support-intro {
    border: 2px solid #B28500;
    padding: 20px;
    font-weight: bold;
  }

  .support-content h2 { 
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
  }
  
    .support-content h2 span {
      border-bottom: 3px solid #000;
    }

  .support-content .delivery-address {
    border: 1px solid #666;
    padding: 20px;
  }


/* ------------------------------------------------------------------------ */
/* 17. Contactform 7 Specific Styling */
/* ------------------------------------------------------------------------ */

.wpcf7-form input[type="text"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"] {
  width: 400px;
  max-width: 100%;
  margin-top: 5px;
}

.wpcf7-form textarea {
  width: 100%;
  margin-top: 5px;
}

.wpcf7-form select { margin-top: 5px; }


.wpcf7c-conf {
    background-color: #999999 !important;
    border: 1px solid #333333 !important;
    color: black !important;
}



/* ------------------------------------------------------------------------ */
/* 18. 404 */
/* ------------------------------------------------------------------------ */

.page-not-found {
  text-align: center;
  padding: 150px 0 350px;
}

  .page-not-found h1 {
    font-size: 2.5rem;
    line-height: 1.0;
  }
  
  .page-not-found p { margin: 10px 0 30px; }



/* ------------------------------------------------------------------------ */
/* 19. Order */
/* ------------------------------------------------------------------------ */

.sale-cd {
  border:1px solid #999;
  padding: 10px;
  text-align:center;
}


