@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/



/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "sans-serif";
  font-weight: normal;
  color: #000;
}

/*リンク文字の設定*/
a {
  text-decoration: none;
}

a:link, a:visited {
  color: #fff;
}

a:hover, a:active {
  color: #fff;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto
}


p {
  text-align: justify;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-image: url(../images/bg-stone-tate.jpg);
  background-size: contain;
}

/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.5em;
}

/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width: 750px;
  margin: 0 auto;
  padding-top: 60px;
  /*真ん中に要素を置きたいときに使う*/
}


/* スマホ用のCSS */
@media screen and (max-width: 768px) {

.article{
  padding-top: 50px;
}
}

.font_01 {
  font-size: 1.9em;
}

.underline {
  background: linear-gradient(transparent 30%, #fbf654 10%);
}

.bold {
  font-weight: 600;
}


/*--------------------------------------------------
ヘッダー設定
-----------------------------------------------------*/

header {
  position: fixed;
  width: 100%;
  padding: 1.1rem;
  background-color: #1a1a1a;
  box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
  z-index: 80;
}

/* スマホ用のCSS */
@media screen and (max-width: 768px) {

header{
  padding: 0.3rem;
}

}


.header_nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  width: 1000px;
}

.header_cta {
  display: flex;
}

.header_cta a {
  width: 125px;
  font-size: 14px;
  padding: 15px 8px;
  margin-left: 10px;
}

.btn_contact {
  background: #fff;
  border: 2px solid #e44d5c;
  color: #e44d5c;
  text-decoration: none;
}

.btn_dl {
  color: #fff;
  border: 2px solid #a58142;
  background-color: #a58142;
}

.header_cta a:hover {
  opacity: 0.5;
  color: #fff;
}

.topbg {
  background-color: #e44d5c;
}

.top {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.hamburger-menu {
  display: none;
}

.main-nav {
  display: flex;
}

.main-nav li {
  color: #ffffff;
  margin-left: 18px;
}

.main-nav a {
  width: auto;
  font-size: 15px;
}

.main-nav a:hover {
  border-bottom: 2px solid #fff;
  padding-bottom: .5rem;
  background: none;
}

.main-nav a::before {
  content: '';
}


.top {
  font-size: 13px;
}

.logo {
  width: 17rem;
}

/* スマホ用のCSS */
@media screen and (max-width: 768px) {

.main-nav{
  display: none;
}

.hamburger-menu {
  display: block;
}

/* ハンバーガーメニュー */
.menu-btn {
  position: fixed;
  top: 7px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #9d7f4a;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

/* ボタンタップ時はｘにする */
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

/* spメニュー装飾 */
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #2aab9f;
}

.menu-content ul {
  padding: 70px 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #f2fbfb;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ボタン押していないときは非表示*/
.menu-content {
  width: 100%;
  height: 60%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #9d7f4a;
  transition: all 0.5s;
  opacity: 0.9;
  /*アニメーション設定*/
}

/* ボタンタップで表示 */
#menu-btn-check:checked~.menu-content {
  left: 0;
  /*メニューを画面内へ*/
}
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/

table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

th, td {
  padding: 1.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f0f0f0;
  text-align: center;
  white-space: nowrap;
}

td {
  background-color: #fff;
  text-align: left;
}

/*スマホでは行が列になるテーブルタグ*/
.table_style_01 {
  text-align: left;
  vertical-align: middle;
}

.inner {
	max-width: 800px;
	margin: 0 auto;
  word-wrap: break-all;
  padding: 50px 50px ;
}

@media screen and (max-width: 768px) {
/* スマホ用のCSS */
.inner {
    word-wrap: break-all;
    padding: 20px 20px ;
  }
}



/*--------------------------------------------------
フォーム
-----------------------------------------------------*/

.form {
	max-width: 800px;
	margin: 0 auto;
  padding: 50px 50px ;
}


@media screen and (max-width: 768px) {
/* スマホ用のCSS */
.form {
  padding: 20px 20px 40px 20px;
}
}

.table_form{
  width: 100%;
  margin-bottom: 30px;
}

.form-text{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}

.form-textarea{
  width: 100%;
  padding: 10px;
  height: 200px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}

form th{
  width: 30%;
}

form td{
  width: 70%;
}

@media screen and (max-width: 768px) {
/* スマホ用のCSS */

form th{
  width: 100%;
  display: block;
}

form td{
  width: 100%;
  display: block;
}
}

.contact-submit{
  background-color: #a58142; /* 背景色 */
  color: #fff; /* 文字色 */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  padding: 20px 50px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}


@media screen and (max-width: 768px) {
/* スマホ用のCSS */
.contact-submit{
  padding: 20px 60px;
}
}

.contact-submit:hover {
  opacity: 0.5;
  background: #a58142;
}

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy {
  padding: 1em 2em;
}

/*--------------------------------------------------
お問い合わせ
-----------------------------------------------------*/
.contact_mian {
  padding: 1em 2em;
}

/*テーブルタグ*/
.main-contents table {
  margin-bottom: 1.5em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 5px;
}

.main-contents th, .main-contents td {
  background-color: #f6f6f6;
  padding: 10px;
  text-align: left;
  border-left: 1px solid #fff;
}

.main-contents th {
  background: #121779;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #1a1a1a;
  padding: 2em 0em;
  line-height: 4em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
  margin-bottom: -5em;
}

.footer a {
  color: #fff;
}

.footer p {
  text-align: center !important;
}


/*--------------------------------------------------
戻るボタン
-----------------------------------------------------*/

.back-btn{
  text-align: center;
  padding: 0 0 50px 0;
}

.btn--back,
a.btn--back {
  color: #fff;
  background-color: #a58142;
  padding: 20px 50px;
}

.btn--back:hover,
a.btn--back:hover {
  color: #fff;
  background: #a58142;
}

.pc-none{
  display: block;
}

@media screen and (max-width: 768px) {
/* スマホ用のCSS */

.back-btn{
  text-align: center;
  padding: 10px 0 50px 0;
}

.btn--back,
a.btn--back {
  color: #fff;
  background-color: #a58142;
  padding: 20px 60px;
}

.pc-none{
  display: none
}

}
