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

/*セクション間余白----------------------------------------------------------- */
html {
  max-width: 2000px;
  margin: 0 auto;
}
section {
  padding: 120px 0;
}
footer {
  padding: 15px 0;
}
@media (min-width: 768px) and (max-width: 1229px) {
  section {
    padding: 75px 0;
  }
  .section_height {
    padding-top: 75px;
    margin-top: -75px;
  }
}
/*色関連----------------------------------------------------------- */
.cl_bk {color: #484848;}
.cl_01 {color: #c8b479;}
.cl_02 {color: #736846;}
.bg_01 {background-color: #fffbd4;}

/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 60%, #ffd200 50%);
  background: -o-linear-gradient(transparent 60%, #ffd200 50%);
  background: linear-gradient(transparent 60%, #ffd200 50%);
  font-weight: bold;
}

/*リンク色----------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

/*はみ出し画像中央----------------------------------------------------------- */
.wic_wrap {
  overflow-x: hidden;
}
.wic img {
  width: auto;
  max-width: unset;
}
.wic1 {
  margin-left: calc(50% - 1000px);
}
.wic1 img {
  width: 2000px;
  max-width: 2000px;
}
@media (min-width: 768px) and (max-width: 1229px) {
  .wic1 {
    margin-left: calc(50% - 615px);
  }
  .wic1 img {
    width: 1230px;
    max-width: 1230px;
  }
}

/*Page Top----------------------------------------------------------- */
.pagetop a {
  background-color: #736846;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
}

/*Header----------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  /* box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3); */
  background: #fff;
  height: 100px;
  width: 100%;
}
header .logo {
  padding: 0 15px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc_head_nav {
  display: flex;
  align-items: center;
  line-height: 1.2;
  padding-right: 15px;
}
header .pc_head_nav ul {
  display: flex;
  align-items: center;
  gap: 45px;
}
header .pc_head_nav ul li {
  display: block;
  font-size: 16px;
}
header .pc_head_nav ul a {
  display: block;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1229px) {
  header {
    height: 60px;
  }

  header .logo {
    height: 100%;
    display: flex;
    align-items: center;
  }
  header .logo img {
    height: 100%;
  }
  header .pc_head_nav ul {
    display: none;
  }
}

/*Navi----------------------------------------------------------- */
nav {
  padding-left: 0;
  padding-right: 0;
  background-color: #fffbd4;
  position: absolute;
  top: 60px;
  width: 100%;
}
nav ul {
  display: flex;
  color: #736846;
}
nav li {
  width: 20%;
  border-left: 1px solid #736846;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1em;
}
nav li:last-child {
  border-right: 1px solid #736846;
}
nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #736846;
  font-weight: bold;
  padding: 24px 0;
  background-color: #fffbd4;
  text-align: center;
}
nav li a p {
  -ms-word-break: break-all;
  word-break: break-all;
}
@media screen and (max-width: 1229px) {
#nav_toggle {
  position: absolute;
  top: 8px;
  /**/
  right: 8px;
  /**/
  width: 40px;
  /**/
  height: 30px;
}
#nav_toggle div {
  position: relative;
  width: 30px;
  /**/
  margin: 0 auto;
}
#nav_toggle span {
  display: block;
  height: 4px;
  background: #736846;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
}
#nav_toggle span:nth-child(1) {
  top: 5px;
  /**/
}
#nav_toggle span:nth-child(2) {
  top: 15px;
  /**/
}
#nav_toggle span:nth-child(3) {
  top: 25px;
  /**/
}
.open #nav_toggle span:nth-child(1) {
  top: 12px;
  /**/
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav_toggle span:nth-child(3) {
  top: 12px;
  /**/
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
div#nav_toggle:after {
  content: "MENU";
  color: #736846;
  display: block;
  padding-top: 80%;
  /**/
  font-family: "Roboto Condensed",sans-serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-align: center;
}
.open div#nav_toggle:after {
  content: "CLOSE";
}
nav ul {
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
nav li {
  width: 100%;
  border-left: 0;
  border-right: 0;
}
nav li:last-child {
  border-right: 0;
}
nav li a:link,
nav li a:visited {
  flex-direction: row;
  color: #736846;
}
.nav_jp {
  padding-bottom: 0;
  padding-right: 10px;
}
nav li {
  position: relative;
}
nav li:before {
  position: absolute;
  content: "";
  right: 10px;
  width: 8px;
  height: 12px;
  background-image: url(../img/sp_menu_arrow.png);
}
}

/*MV----------------------------------------------------------- */
@media screen and (max-width: 1229px) {
  .mv img {
    width: 100%;
  }
}

/*sec01----------------------------------------------------------- */
.sec01_line img {
  width: 80%;
}
@media (min-width: 768px) and (max-width: 1229px) {
}

/*sec02----------------------------------------------------------- */
.sec02 {
}
.sec02_box {
  border-radius: 30px;
}
.sec02_wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.sec02_item:nth-child(1) {
  width: 45%;
}
.sec02_item:nth-child(2) {
  width: 50%;
}
.sec02_head {
  font-weight: 900;
}
@media (min-width: 768px) and (max-width: 1229px) {
}

/*sec03----------------------------------------------------------- */
.sec03 {
  background: url(../img/pc_sec03_bg.png) no-repeat center center / cover;
}

/*sec04----------------------------------------------------------- */
.sec04 {
}
.sec04_box {
  position: relative;
  border: 3px solid #736846;
  border-radius: 30px;
  background-color: #fffeed;
}
.sec04_box::before {
  content: '';
  position: absolute;
  background: url(../img/pc_sec04_img01.png) no-repeat center center / contain;
  max-width: 268px;
  width: 100%;
  max-height: 211px;
  height: 100%;
  bottom: 0;
  left: 30px;
}
.sec04_box::after {
  content: '';
  position: absolute;
  background: url(../img/pc_sec04_img02.png) no-repeat center center / contain;
  max-width: 264px;
  width: 100%;
  max-height: 165px;
  height: 100%;
  top: 20px;
  right: 20px;
}
.sec04_btn {
  width: fit-content;
}
@media screen and (max-width: 1229px) {
  .sec04_box::before {
    width: 30%;
    height: 30%;
    left: -20px;
  }
  .sec04_box::after {
    width: 30%;
    height: 30%;
    right: -10px;
  }
  .sec04_btn {
    width: 60%;
  }
}
/*sec05----------------------------------------------------------- */
.sec05 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}
.sec05 table tr {
  height: 80px;
  vertical-align: middle;
}
.sec05 table th,
.sec05 table td {
  border-bottom: 2px dashed #cfbe8b;
}
.sec05 table tr:first-child th,
.sec05 table tr:first-child td {
  border-top: 2px dashed #cfbe8b;
}
.sec05 table tr:last-child th,
.sec05 table tr:last-child td {
  border-bottom: none;
}
.sec05 table th {
  font-weight: bold;
  width: 30%;
  padding: 30px;
  padding-right: 0;
  color: #736846;
  text-align-last: left;
  vertical-align: middle;
}
.sec05 table td {
  padding: 30px 0;
  vertical-align: middle;
  width: 70%;
}
.sec05 table tr:last-child th,
.sec05 table tr:last-child td {
  vertical-align: top;
}
.sec05 iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 1229px) {
  .sec05 table th {
    padding: 15px;
  }
  .sec05 table th {
    width: 35%;
  }
  .sec05 table td {
    width: 65%;
  }
}
/*sec06----------------------------------------------------------- */
.sec06 {
  background-color: #fff;
}
.sec06 li:not(:last-child) {
  padding-bottom: 30px;
}
.sec06 .qa_q {
  background: #cfbe8b;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  line-height: 1;
  transition: all .3s;
  cursor: pointer;
  gap: 15px;
}
.sec06 .qa_q.open {
  border-radius: 15px 15px 0 0;
}
.sec06 .qa_btn {
  position: relative;
  content: "";
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 40px;
  min-width: 40px;
}
.sec06 .qa_btn:before,
.sec06 .qa_btn:after {
  position: absolute;
  content: "";
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: #cfbe8b;
}
.sec06 .qa_btn:before {
  width: 20px;
  height: 2px;
}
.sec06 .qa_btn:after {
  width: 2px;
  height: 20px;
  transition: all .3s;
}
.sec06 .qa_btn.open:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sec06 .qa_a {
  background: #fffbd4;
  padding: 30px;
  border-radius: 0 0 15px 15px;
}
.sec06 .qa_a a {
  color: #736846;
  text-decoration: underline;
}
.sec06 .qa_q-wrap p:first-of-type {
  border-right: 2px solid #fff;
  padding-right: 15px;
  width: 39px;
}
.qa_q-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(100% - 45px);
}
.qa_q-wrap p:last-child {
  width: calc(100% - 57px);
  line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 1229px) {
  .sec06 .qa_q,
  .sec06 .qa_a {
    padding: 25px;
  }
}
/*sec06----------------------------------------------------------- */
/*sec07----------------------------------------------------------- */
.sec07 {
  background-color: #cfbe8b;
  padding: 120px 0;
}

.sec07 p {
  font-size: 24px;
  color: #fff;
}

/*Footer----------------------------------------------------------- */
footer {
}

