@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');
@charset "utf-8";
/**
 * 文字コード UTF-8N 改行コードLF
 * 共通CSS
 *
 * @package    Barman Soft Official
 * @copyright  Copyright (c) 2016-2019 Barman Soft, Inc.
 * @version    191201
 */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Sans JP',Meiryo,Arial Unicode MS,Hiragino Sans,Hiragino Kaku Gothic Std,MS Gothic,sans-serif;
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  background-color: #fff;
  color: #000;
}
img {
  border: 0px;
  max-width: 100%;
}
a {
  color: #969664;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul li {
    list-style-type: none;
}
input[type="text"] {
  padding: 10px;
  font-size: 16px;
  width: 55%;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}
input[type="text"]:focus {
  background: #fff;
}
textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  height: 10em;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  outline: none;
  -webkit-appearance: none;
}
textarea:focus {
  background: #fff;
}

* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
.clearfix:after {
  clear: both;
  display: block;
  height: 0px;
  line-height: 0px;
  content: ".";
  visibility: hidden;
}
.wrap {
  margin: 0 auto;
  padding: 0 20px;
  width: 1200px;
}
.sp, .tb {
  display: none;
}
button {
  cursor: pointer;
  outline: none;
}
/*----------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------------*/
header {
  display: flex;
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0.92;
  transition: 2s;
}
.fill header {
  height: 100vh;
  opacity: 1;
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #969664, rgb(150 150 100 / 85%));
}
header img {
  width: 70%;
  transition: 2s;
}
.fill header img {
  width: 100%;
}
header nav p {
  line-height: 28px;
  color: #fff;
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
  transition: 2s;
}
.fill header nav p {
  line-height: 40px;
  font-size: 18px;
}
header nav ul {
  display: flex;
}
header nav ul li a {
  margin-right: 20px;
  line-height: 40px;
  color: #fff;
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
  transition: 2s;
  border-bottom: 1px solid rgb(255 255 255 / 0%);
}
header nav ul li a:hover {
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
header nav ul li:last-child a {
  margin: 0;
}
/*----------------------------------------------------------------------
フッター
------------------------------------------------------------------------*/
footer {
  width: 100%;
  min-width: 1200px;
  min-height: 40px;
  background-color: #e7e7e7;
}
footer div.wrap {
  padding: 0 100px;
  width:100%;
}
footer copyright {
  display: block;
  margin: 10px 0;
  line-height: 20px;
  font-weight: 400;
  font-size: 12px;
  color: #969664;
  float: left;
}
/*----------------------------------------------------------------------
セクション
------------------------------------------------------------------------*/
section {
  padding-top: 100px;
  width: 100%;
  min-width: 1200px;
  min-height: calc(100vh - 40px);
  background-color: #fff;
}
section .wrap {
  padding: 50px 20px 100px;
}
section article {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}
section article:last-child {
  margin-bottom: 0px;
}
section article h1 {
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #969664;
}
section article h1 span {
  margin-left: 20px;
  font-size: 20px;
}
section h2 {
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #969664;
}
section h3 {
  margin: 20px 0;
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #969664;
}
section article h4 {
  margin-bottom: 20px;
  width: auto;
  line-height: 30px;
  font-size: 26px;
  color: #969664;
}
section article p {
  padding-top: 20px;
  font-size: 18px;
  line-height: 30px;
}
section article p span {
  font-size: 22px;
}
section article dl {
  display: flex;
  margin-top: 8px;
}
section article dl dt {
  width: 120px;
  min-width: 120px;
}
section article button:hover {
  opacity: 0.8;
  transition: 0.5s;
}
section article img {
  display: block;
  margin-right: 50px;
  width: 40%;
  float: left;
}
section article label {
  display: block;
  margin-top: 20px;
}
section article.right img {
  display: block;
  margin-right: 0px;
  margin-left: 50px;
  width: 40%;
  float: right;
}
section article.w100 h3 {
  position: relative;
  margin-bottom: 0px;
  border: 1px solid rgba(96, 164, 203, 1);
  border-radius: 20px 20px 0px 0px / 20px 20px 0px 0px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  font-weight: normal;
  text-indent: 40px;
  background-color: rgba(96, 164, 203, 1);
  color: #fff;
  float: none;
}
section article.w100 h3:before {
  content: " ";
  position: absolute;
  top: 8px;
  left: 16px;
  width: 22px;
  height: 22px;
  background: url(../image/light.png) no-repeat center center;
  background-size: 100% 100%;
}
section article.w100 p {
  border: 1px solid rgba(96, 164, 203, 1);
  border-radius: 0px 0px 20px 20px / 0px 0px 20px 20px;
  padding: 20px;
  width: 100%;
  float: none;
}
section div.error {
  display: block;
  margin-bottom: 40px;
  padding: 20px;
  width: 100%;
  height: auto;
  background: rgb(255 0 0 / 7%);
  border-radius: 6px;
  color: red;
  text-align: center;
}
section dl.link dt {
  margin-bottom: 10px;
  line-height: 24px;
  font-size: 22px;
}
section dl.link dd {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
}
section form {
  width: 100%;
}
section form dl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #969664;
}
section form dl dt {
  padding: 10px;
  width: 30%;
  font-size: 16px;
  color: #969664;
}
section form dl dd {
  padding: 10px;
  width: 70%;
  font-size: 16px;
  line-height: 32px;
}
section form div.button {
  margin: 30px auto;
  width:  430px;
}
section form button {
  display: block;
  margin: 0px auto;
  width: 200px;
  height: 45px;
  background: #969664;
  border: 1px solid rgba(150, 150, 100, 0.5);
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
}
section form button.fl {
  float: left;
  margin-right: 15px;
}
section form button.fr {
  float: right;
  margin-left: 15px;
}
section form button:hover {
  background: rgba(150, 150, 100, 0.8);
}
/*----------------------------------------------------------------------
セクション
------------------------------------------------------------------------*/
.modal {
  display: none;
  width: 580px;
  height: 360px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  box-shadow: 1px 1px 2.6px;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 6px;
  background: #fff;
}
.modal form {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px dashed #969664;
  border-radius: 5px;
  padding: 20px 43px;
}
.modal form h4 {
  margin: 0px;
  padding: 0px;
  font-size: 22px;
  line-height: 50px;
  color: #969664;
}
.modal form p {
  margin: 0px;
  padding: 0px;
}
.modal form dl {
  clear: both;
  margin-top: 20px;
  display: flex;
  width: 100%;
  border-style: none !important;
}
.modal form dl dt {
  width: 25%;
  line-height: 27px;
  float: left;
  border-style: none;
  padding: 0;
}
.modal form dl dd {
  width: 75%;
  float: left;
  border-style: none!important;
  padding: 0;
}
.modal form dl dd input {
  width: 90%;
  outline: none;
}
.modal form div {
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 30px;
}
.modal form button {
  border-style: none;
  width: 150px;
  height: 40px;
  font-size: 18px;
  background-color: #0188ff;
  border-radius: 3px;
  color: #fff;
  outline: none;
}
.modal button:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.modal button.cancel {
  background-color: #B0BEC5;
  float: left;
  margin-left: 50px;
}
.modal button.ok {
  float: right;
  margin-right: 50px;
}
