﻿@charset "UTF-8";

/* ----全体設定---- */

.content_area {
  text-align: center;
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
}

.blue {
  color: #004a8e;
}

.f_contener {
  display: flex;
}

h1 {
  padding: 0;
  margin: 0;
  background: none;
}


/*---- 機能説明 ----*/

.function_text {
  display: flex;
  flex-direction: row;
  /*justify-content:center;*/
  color: #595757;
  width: 1000px;
  margin: auto;
}

.function_icon {
  width: 1000px;
  display: flex;
  justify-content: space-around;
  /* margin: 70px auto 30pt; */
  align-items: flex-start;
  margin: 30px auto;
}

.function_text.function_icon {
  padding-left: 45pt;
  padding-right: 45pt;
  margin: 80px auto 30pt;
}

p.title {
  font-size: 2.5em;
  font-weight: bold;
  margin-left: -150px;
}

p.title::first-letter {
  font-size: 200%;
  font-weight: normal;
}

.function_area {
  background-color: #e7edf6;
  width: 30%;
  margin: 0 auto;
  padding: 15px;
  padding-bottom: 0;
  box-shadow: 4px 4px 8px #b9b9b9;
}

.sub_title {
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 3%;
}

.function_area .text {
  text-align: left;
  font-size: 1.1em;
}

.function_area img {
  width: 70%;
}


/*---- LINE UP ----*/

#line_up {
  width: 1000px;
  margin: auto;
  color: black;
}

#line_up .title {
  font-size: 2.1em;
  margin: 80pt auto 30pt;
}

#line_up>img {
  margin-bottom: 50pt;
}

.title span {
  font-weight: bold;
}

.product_info {
  display: flex;
  margin-top: 40pt;
  width: 100%;
}

.product_info:last-child {
  margin-bottom: 40pt;
}

.product_info img {
  flex-basis: 50%;
}

.product_info>div {
  /* display: flex; */
  /* flex-direction: column; */
  text-align: left;
  /* flex-basis: 50%; */
  margin-left: 50pt;
  /* justify-content: space-between; */
  width: 100%;
}

.product_name {
  font-weight: bold;
  font-size: 1.4em;
  margin-top: 30px;
}

.product_disc {
  flex-grow: 0.2;
  padding-top: 3pt;
  font-size: 1.1em;
}

.product_price {
  flex-grow: 3;
  font-weight: bold;
  font-size: large;
  margin-bottom: 15px;
}

.product_price span {
  font-size: small;
  font-weight: normal;
}

.button {
  background-color: #eaa55a;
  padding: 7px;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  /* padding-top: 0px; */
}

.button a {
  text-align: center;
  color: white;
  font-size: 1.1em;
  position: relative;
}

.button::before {
  position: absolute;
  top: 12.5px;
  left: -100px;
  box-sizing: border-box;
  width: 16px;
  height: 12px;
  border: 10px solid transparent;
  border-left: 15px solid #FFF;
  content: "";
  vertical-align: middle;
}
.sub_title span{
    vertical-align: middle;
    display: table-cell;
}
.sub_title{
    display: table;
    width: 100%;
    height: 60px;
}
.button:hover{
  opacity: 0.8;
  transition: all 0.5s ease 0s;
}