@charset "UTF-8";
/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
* {
  margin: 0;
  padding: 0; }

body {
  font-family: 'Sawarabi Mincho', sans-serif;
  background-color: #fff6df;
  width: 100%;
  height: auto; }

header {
  width: 100%;
  height: 50px;
  background-color: white;
  position: relative; }
  header .logo__area {
    width: 200px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 0 0 20px; }
    header .logo__area img {
      width: 100%;
      height: auto; }

.title1 {
  width: 100%;
  height: auto; }
  .title1 img {
    width: 100%;
    height: 100px;
    object-fit: cover; }

.sub {
  width: 90%;
  height: auto;
  margin: 20px auto; }
  .sub p {
    font-size: 12px;
    text-align: center; }

.title {
  width: 90%;
  height: 30px;
  margin: 10px auto;
  text-align: center; }
  .title p {
    font-weight: bold;
    font-size: 20px; }

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

.head_test:before,
.head_test::after {
  background-color: #ff7b00;
  border-radius: 5px;
  content: "";
  display: block;
  width: 60px;
  height: 10px; }

.head_test:before {
  left: -5px; }

.head_test:after {
  right: -5px; }

.container {
  width: 100%;
  height: auto; }
  .container .grid {
    max-width: 800px;
    margin: 0 auto 50px; }
    .container .grid .cell {
      list-style: none;
      width: 60%;
      height: auto;
      margin: 30px auto 10px;
      text-align: center; }
      .container .grid .cell img {
        width: 100%;
        height: auto;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6); }
      .container .grid .cell .btn {
        width: 200px;
        height: auto;
        background-color: #e00000;
        color: white;
        border: 1px solid #e20000;
        border-radius: 20px;
        padding: 5px 10px;
        margin: 20px auto;
        font-weight: 600;
        font-size: 10px;
        cursor: pointer;
        transition: all 0.3s; }
        .container .grid .cell .btn.slide-bg {
          position: relative;
          overflow: hidden;
          z-index: 1; }
          .container .grid .cell .btn.slide-bg span {
            display: inline-block;
            width: 100%;
            height: 100%;
            background-color: white;
            position: absolute;
            top: 0;
            left: 0;
            transform: translateX(-100%);
            transition: transform 0.3s;
            z-index: -1; }
          .container .grid .cell .btn.slide-bg:hover {
            color: black; }
            .container .grid .cell .btn.slide-bg:hover span {
              transform: none; }
  .container .content {
    width: 50%;
    height: auto;
    margin: 0 auto 30px; }
    .container .content .triangle {
      width: 10px;
      height: 10px;
      border: 5px solid;
      border-color: transparent transparent #565656 #565656;
      transform: rotate(-45deg);
      margin: 0 auto 20px; }
    .container .content ol {
      counter-reset: number;
      list-style-type: none !important;
      padding: 0.5em; }
      .container .content ol li {
        position: relative;
        line-height: 1.5em;
        padding: 0.5em 0.5em 0.5em 30px;
        font-size: 0.8rem; }
        .container .content ol li span {
          font-weight: bolder; }
        .container .content ol li:before {
          position: absolute;
          counter-increment: number;
          content: counter(number);
          display: inline-block;
          background: #ff9102;
          color: white;
          font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
          font-weight: bold;
          font-size: 15px;
          left: 0;
          width: 25px;
          height: 25px;
          line-height: 25px;
          text-align: center;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.footer {
  width: 100%;
  height: 100px;
  text-align: center; }
  .footer .logo img {
    width: 10%;
    height: auto; }
  .footer p {
    font-size: 8px;
    color: black;
    margin: 30px auto; }
  .footer .sns {
    width: 80%;
    height: auto;
    margin: 0 auto;
    text-align: center; }
    .footer .sns img {
      width: 30px;
      height: 30px;
      margin: 0 10px; }

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

Stylesheet: 480px以上(スマホの横向き)のモニタで適用

******************************************************************/
  header {
    height: 80px; }

  .sub p {
    font-size: 14px; }

  .title h1 {
    font-size: 20px; }

  .container .grid .cell .btn {
    width: 250px; } }
@media screen and (min-width: 600px) {
    /******************************************************************

Stylesheet: 600px以上のタブレットやモニタで適用

******************************************************************/
  .sub {
    margin: 40px auto; }
    .sub p {
      font-size: 18px; }

  .title {
    margin: 20px auto 0px; }
    .title h1 {
      font-size: 24px; }

  .title1 img {
    height: 150px; }

  .head_test:before,
  .head_test::after {
    width: 80px; }

  .container .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .container .grid .cell {
      width: 50%; }
      .container .grid .cell p {
        margin-bottom: 1.2rem; }
      .container .grid .cell img {
        width: 80%; }
      .container .grid .cell .btn {
        width: 300px;
        font-size: 12px; }
  .container .content {
    width: 40%; }
    .container .content ol li {
      font-size: 1rem; } }
@media screen and (min-width: 960px) {
  /******************************************************************
  
  Stylesheet: 960px以上のモニタで適用
  
  ******************************************************************/
  .title1 img {
    height: 200px; }

  .title {
    margin: 20px auto 0; }

  .head_test:before,
  .head_test::after {
    width: 120px; }

  .container .grid .cell img {
    width: 70%; }
  .container .grid .cell .btn {
    width: 300px;
    padding: 10px 10px;
    margin: 40px auto;
    font-size: 14px; }
  .container .content {
    width: 30%; } }
@media screen and (min-width: 1280px) {
  /******************************************************************
  
  Stylesheet: 1280px以上のモニタで適用
  
  ******************************************************************/
  .container .content {
    width: 20%; } }
@media (min-resolution), (-webkit-min-device-pixel-ratio: 2) {
  /******************************************************************
  
  Stylesheet: Retinaディスプレイで適用
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  .icon {
  	background: url(images/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  */ }
@media print {
  /******************************************************************
  
  Stylesheet: プリンタのみに適用
  
  ******************************************************************/ }
