@charset "UTF-8";
/*変数*/
:root {
  --main_color: #ab5354;
  --black: #4d4d4d;
}

/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/* b, strong {font-weight: bolder;} */

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*--------------------------------------
サイト共通定義
--------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
	font-size: 62.5%;
}

body {
  line-height: 1.8;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  width: 100%;
  color: #323232;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
	font-family: '游明朝', YuMincho, Times New Roman, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
  font-weight: 300;
	font-size: 1.4rem;/* 変更 */
  position: relative;
}
body.open {
  overflow: hidden;
}
@media (min-width: 600px) {
  body.open {
    overflow: auto;
  }
}

body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 100px;
}

::-moz-selection {
  background: var(--main_color);
  color: #fff;
}

::selection {
  background: var(--main_color);
  color: #fff;
}

ul::-webkit-scrollbar {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

.bg_color {
  background: #f6f3f0;
}

.flex {
  display: block;
}
@media (min-width: 1025px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* 改行*/
@media (min-width: 1250px) {
  .br_1250 {
    display: none;
  }
}
@media (max-width: 1249px) {
  .br_1250 {
    display: block;
  }
}
@media (min-width: 1080px) {
  .br_1080 {
    display: none;
  }
}
@media (max-width: 1079px) {
  .br_1080 {
    display: block;
  }
}
@media (min-width: 1025px) {
  .br_1025 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .br_1025 {
    display: block;
  }
}
@media (max-width: 399px) {
  .br_1025 {
    display: none;
  }
}
@media (min-width: 600px) {
  .br_600 {
    display: none;
  }
}
@media (max-width: 599px) {
  .br_600 {
    display: block;
  }
}
/*--------------------------------------
共通のtable
--------------------------------------*/
table {
  border-spacing: 0;
}

.table_01 {
  width: 100%;
  font-size: 12px;
}
@media (min-width: 600px) {
  .table_01 {
    font-size: 16px;
  }
}
.table_01 tr:last-child th {
  padding: 50px 15px;
}
@media (min-width: 1025px) {
  .table_01 tr:last-child th {
    padding: 40px 15px;
  }
}
.table_01 tr:last-child td {
  padding: 50px 15px;
}
@media (min-width: 1025px) {
  .table_01 tr:last-child td {
    padding: 40px 15px;
  }
}
.table_01 tr th {
  background: #F2F1EC;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  padding: 30px 15px;
  width: 50%;
  text-align: center;
}
@media (min-width: 1025px) {
  .table_01 tr th {
    padding: 20px 15px;
  }
}
.table_01 tr td {
  border-bottom: 4px solid #fff;
  padding: 30px 15px;
  text-align: right;
  position: relative;
  width: 50%;
  z-index: -1;
}
@media (min-width: 1025px) {
  .table_01 tr td {
    padding: 20px 15px;
  }
}
.table_01 tr td:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #9c9c9c;
  width: 100%;
  height: 100%;
}
.table_01 tr:last-child th,
.table_01 tr:last-child td {
  border-bottom: none;
}

.table_02 {
  width: 100%;
  padding: 20px;
  font-size: 12px;
  text-align: left;
  font-size: 12px;
}
@media (min-width: 600px) {
  .table_02 {
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  .table_02 {
    padding: 80px;
    background: #f6f3f0;
  }
}
.table_02 tr th {
  border-bottom: 1px solid;
  width: 40%;
  padding: 20px 0 5px;
}
@media (min-width: 600px) {
  .table_02 tr th {
    width: 30%;
  }
}
.table_02 tr td {
  border-bottom: 1px solid;
  width: 60%;
  padding: 20px 0 5px;
}
@media (min-width: 600px) {
  .table_02 tr td {
    width: 70%;
  }
}

.table_03 {
  width: 100%;
  font-size: 12px;
}
@media (min-width: 600px) {
  .table_03 {
    font-size: 16px;
  }
}
.table_03 tr th {
  background: #F2F1EC;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  vertical-align: middle;
  padding: 5px;
  width: 25%;
  text-align: center;
}
@media (min-width: 600px) {
  .table_03 tr th {
    padding: 20px 5px;
  }
}
.table_03 tr td {
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  text-align: right;
  position: relative;
  vertical-align: middle;
  padding: 5px;
  width: 25%;
  z-index: -1;
}
@media (min-width: 600px) {
  .table_03 tr td {
    padding: 20px 5px;
  }
}
.table_03 tr td:last-child {
  border-right: none;
}
.table_03 tr td:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #9c9c9c;
  width: 100%;
  height: 100%;
}
.table_03 tr:last-child th,
.table_03 tr:last-child td {
  border-bottom: none;
}
.table_03 tr:first-child th {
  border-top: 4px solid #fff;
}
.table_03 tr:first-child th:last-child {
  border-right: none;
}

/*--------------------------------------
共通のform
--------------------------------------*/
form {
  width: 100%;
  margin: auto;
  font-size: 12px;
}
@media (min-width: 600px) {
  form {
    font-size: 16px;
  }
}
form .required_red {
  color: #a5233b;
}
form .item {
  overflow: hidden;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px dashed #dfe3e8;
  padding: 15px 10px;
}
@media (min-width: 1025px) {
  form .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* height: 80px; */
    padding: 20px 10px;
  }
}


form .item .label {
  /* background: #e9eeed; */
  width: 100%;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  /* padding: 10px 0; */
  cursor: auto;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  form .item .label {
   margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  form .item .label {
    width: 30%;
  }
}
form .item > div {
  width: 100%;
  /* border: solid 1px #9c9c9c; */
  /* padding: 10px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          flex-wrap: wrap;
}
@media (min-width: 600px) {
  form .item > div {
    /* padding: 20px 10px; */
  }
}
@media (min-width: 1025px) {
  form .item > div {
    width: 70%;
  }
}
form .item > div .inputs {
  height: 100%;
  width: 100%;
  outline: none;
  background: #f6f3f0;
  padding: 10px;
  font-size: 14px;
}
@media (min-width: 600px) {
  form .item > div .inputs {
    padding: 15px;

  }
}

form  .item .post_code_box input {
  width: 40%;
}
.error {
  margin-bottom: 30px;
  text-align: center;
}
.error li {
  color: #a5233b;
}

.btn_area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
  margin: 30px auto 0;
}
.btn_area input[type=submit],
.btn_area a {
  background: var(--main_color);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 0 10px;
}
.btn_area input[type=reset] {
  background: #aaa;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
}

.page_list {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page_list li {
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
}
.page_list li.active {
  background: #ab5354;
  color: #fff;
}
.page_list li.arrow {
  border: none;
}
.page_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 属性ごとのスタイル */
form .comment{
  height: auto;
}
form .radiobtn .inputs,
form .checkbox .inputs  {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 600px) {
  form .radiobtn .inputs,
  form .checkbox .inputs  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
form .radiobtn .inputs .contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .radiobtn .inputs label {
  margin-left: 3px;
}
@media (min-width: 600px) {
  form .radiobtn .inputs label {
    margin-right: 15px;
  }
}
form .checkbox input {
  vertical-align: baseline;
}
@media (min-width: 600px) {
  form .checkbox  label {
    margin-right: 15px;
  }
}

form .pulldown select {
  width: 100%;
  position: relative;
  padding: 0 15px;
  height: 40px;
}
form .pulldown div {
  /* width: 70%; */
  position: relative;
  background: #f3f4f5;
}
form .pulldown div::before {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 0 3px 3px 0;
  background-color: var(--main_color);
  content: '';
}
form .pulldown div::after {
  position: absolute;
  right: 16px;
  content: "";
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  background: #d8cfc8;
  position: fixed;
  width: min(100%, 2000px);
  z-index: 2;
}
header .header_contents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 50px;
  grid-template-columns: 1fr 1fr 1fr 50px;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
      grid-template-areas: "a . c e";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 1520px);
  margin: auto;
}
@media (min-width: 600px) {
  header .header_contents {
    -ms-grid-columns: 1fr 20px auto 20px 50px;
    grid-template-columns: 1fr auto 50px;
    gap: 0 20px;
    height: auto;
  }
}
@media (min-width: 1025px) {
  header .header_contents {
        grid-template-areas: "a . d b c";
    -ms-grid-columns: 1fr 20px auto 20px auto;
    grid-template-columns: 1fr auto auto;
    gap: 10px 20px;
    padding: 10px 10px 0;
  }
}
header p {
  -ms-grid-column-align: end;
      justify-self: end;
  padding-right: 10px;
  text-align: right;
}
@media (min-width: 600px) {
  header p {
    width: 100%;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
}
header p a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 25px;
}
@media (min-width: 600px) {
  header p a:hover {
    opacity: 0.7;
  }
}
header p a span {
  display: none;
}
@media (min-width: 600px) {
  header p a span {
    display: inline-block;
    color: var(--main_color);
  }
}
header p a i {
  color: var(--main_color);
  font-size: 30px;
}
header h1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  padding-left: 10px;
  position: relative;
  z-index: 1;
  grid-area: a;
}
@media (min-width: 1025px) {
  header h1 {
    padding-left: 0;
  }
}
header h1 img {
  width: 160px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1025px) {
  header h1 img {
    width: 280px;
  }
}
header .sns {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  grid-area: b;
}
@media (min-width: 1025px) {
  header .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .mail {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: c;
}
@media (min-width: 600px) {
  header .mail {
    display: block;
  }
}
@media (min-width: 1025px) {
  header .mail {
    color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1025px) {
  header .mail a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 60px;
    background: #ab5354;
    font-size: 1.6rem;
  }
}
header .mail a span {
  display: none;
}
@media (min-width: 1025px) {
  header .mail a span {
    display: inline-block;
    color: #fff;
  }
}
@media (min-width: 1025px) {
  header .mail a i {
    display: none;
  }
}
header .info {
  display: none;
  padding-right: 10px;
  line-height: 1.6;
  grid-area: d;
}
header .info .open {
  display: block;
  font-size: 1.8rem;
  text-align: left;
  line-height: 2.4rem;
}
header .info .open .open_s {
  font-size: 1.4rem;
}
header .info i {
  font-size: 22px;
}
@media (min-width: 1025px) {
  header .info {
    display: block;
    background: #d8cfc8;
    font-family: '游明朝', YuMincho, Times New Roman, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
    letter-spacing: 0.06em;
    padding-right: 0;
  }
}
header .pc_nav_box {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 4;
  grid-column-end: 5;
  position: relative;
}
header .pc_nav_box ul {
  display: none;
}
@media (min-width: 1025px) {
  header .pc_nav_box ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    width: min(100%, 1520px);
    font-size: 16px;
    margin: auto;
  }
  header .pc_nav_box ul li:first-of-type a {
    border-left: none;
  }
  header .pc_nav_box ul li a {
    position: relative;
    display: block;
    border-left: 1px solid rgba(163, 72, 50, 0.3);
    color: #1e1e1e;
    text-align: center;
    padding: 20px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
    line-height: 1.4;
    font-size: 1.4rem;
  }
  header .pc_nav_box ul li a:hover {
    background: #eee6df;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  header .pc_nav_box ul li a span {
    font-size: 10px;
    color: #707070;
  }
}
header nav {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  height: 100%;
  -ms-grid-column-align: end;
      justify-self: end;
  background: var(--main_color);
  border-left: 1px solid #fff;
  position: relative;
  grid-area: e;
  width: 51px;
  height: 45px;
  /* ハンバーガーメニューボタン */
  /* ハンバーガーボタンアニメーション */
}
@media (min-width: 1025px) {
  header nav {
    border-left: none;
    display: none;
  }
}
header nav .nav_list {
  position: fixed;
  -webkit-overflow-scrolling: auto;
  width: 100%;
  height: calc(100vh - 43px);
  top: 45px;
  right: 0;
  background: rgba(163, 72, 50, 0.95);
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  padding: 50px 0;
  gap: 20px;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media (min-width: 600px) {
  header nav .nav_list {
    padding: 50px;
  }
}
@media (min-width: 1025px) {
  header nav .nav_list {
    position: absolute;
    width: 478px;
    padding: 50px 120px;
  }
}
header nav .nav_list ul {
  width: 100%;
  height: 100%;
  padding: 0 50px 100px;
  overflow-y: scroll;
}
@media (min-width: 600px) {
  header nav .nav_list ul {
    padding: 0;
  }
}
header nav .nav_list ul li {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  line-height: 3.3;
}
header nav .nav_list ul li > a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 18px;
  color: #fff;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  padding: 0 10px;
  border-bottom: 1px solid #fff;
}
header nav .nav_list ul li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  bottom: -1px;
  margin: auto;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: -1;
}
header nav .nav_list ul li > a:hover {
  color: var(--main_color);
}
header nav .nav_list ul li > a:hover .fa-caret-right {
  color: #fff;
}
header nav .nav_list ul li > a:hover:before {
  background: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
header nav .nav_list ul li > a .fa-caret-right {
  color: var(--main_color);
}
header nav .nav_list ul li > a .fa-stack {
  width: 22px;
}
@media (min-width: 600px) {
  header nav .nav_list ul li > a {
    font-size: 20px;
  }
}
header nav .nav_list ul li:nth-last-child(2) {
  margin-bottom: 30px;
}
header nav .nav_list ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
header nav .nav_list ul li:last-child .sns {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
}
header nav .nav_list ul li:last-child .sns a {
  background: #fff;
}
header nav .nav_list ul li:last-child .sns a i {
  color: var(--main_color);
}
header nav .menu-btn {
  display: none;
}
header nav .menu-btn:checked ~ .nav_list {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
@media (min-width: 600px) {
  header nav .menu-btn:checked ~ .nav_list {
    border: none;
  }
}
header nav .menu-btn:checked ~ .nav_list a,
header nav .menu-btn:checked ~ .nav_list li {
  opacity: 1;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
header nav .menu-btn:checked ~ .bg {
  display: block;
}
header nav .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header nav .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
header nav .menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-btn:checked ~ nav {
  border-left: 1px solid #000;
}
header nav .menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 1;
  position: relative;
}
header nav .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-icon .navicon:before, header nav .menu-icon .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-icon .navicon:before {
  top: 9px;
}
header nav .menu-icon .navicon:after {
  bottom: 9px;
}

/*--------------------------------------
メイン
--------------------------------------*/
main {
  padding-bottom: 80px;
}
main .mainvisual {
  position: relative;
}
@media (min-width: 1025px) {
  main .mainvisual {
    margin-top: 145px;
  }
}
main .mainvisual .swiper-pagination-horizontal {
  bottom: 20px;
}
main .mainvisual .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #d8cfc8;
  opacity: 1;
}
main .mainvisual .swiper-pagination-bullet-active {
  background: #d8cfc8;
}
main .mainvisual .swiper-pagination {
  z-index: 1;
}
main .mainvisual img {
  width: 100%;
}
@media (max-width: 1024px) {
  main .mainvisual img {
    margin-top: 45px;
  }
}
main .mainvisual .sp {
  display: block;
}
@media (min-width: 600px) {
  main .mainvisual .sp {
    display: none;
  }
}
main .mainvisual .pc {
  display: none;
}
@media (min-width: 600px) {
  main .mainvisual .pc {
    display: block;
  }
}
main .subvisual {
  background: url(../images/sv.jpg) no-repeat 50% 0/cover;
  height: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0 80px;
}
@media (min-width: 600px) {
  main .subvisual {
    background: url(../images/sv.jpg) no-repeat 50% 60%/cover;
  }
}
@media (min-width: 1025px) {
  main .subvisual {
    margin: 145px 0 80px;
    height: 50vh;
  }
}
main .subvisual h2 {
  color: #745945;
  text-shadow:0 0 10px #fff;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-top: 58px;
}
@media (min-width: 600px) {
  main .subvisual h2 {
    font-size: 3.0rem;
    letter-spacing: 0.5em;
  }
}
main .cat {
  padding: 60px 10px;
}
@media (min-width: 600px) {
  main .cat {
    padding: 60px 40px;
  }
}
main .cat .text {
  font-size: 1.3rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  main .cat .text {
    font-size: 1.5rem;
  }
  main .cat .text_bold {
    font-size: 2.0rem;
    font-weight: 600;
  }
}
@media (max-width: 599px) {
  main .cat .text_bold {
    font-size: 1.6rem;
    font-weight: 600;
  }
}
@media (min-width: 600px) {
  main .cat_01 {
    padding: 100px 40px 150px;
  }
}
main .cat_01 .cat_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
main .cat_01 .cat_box li {
  position: relative;
}
main .cat_01 .cat_box li .text_box {
  color: #323232;
  padding: 20px 30px;
  background: #f6f3f0;
}
main .cat_01 .cat_box li h3 {
  font-size: 2.0rem;
  border-left: 6px solid #ab5354;
  padding-left: 5px;
  margin-bottom: 10px;
}
main .cat_01 .cat_box li p {
  font-size: 14px;
}
main .cat_01 .cat_box li img {
  width: 100%;
}
main .cat_02 {
  position: relative;
  background: url(../images/bg_greeting.jpg) center top no-repeat;
  /*background-size: 500px;*/
  margin: 80px 0;
}
@media (min-width: 1025px) {
  main .cat_02 {
    margin: 100px 0;
  }
}
main .cat_02 .inner img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: auto;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  main .cat_02 .inner img {
    position: absolute;
    width: 50%;
    top: -50px;
    left: 0;
    margin-bottom: 0;
  }
}
main .cat_02 .inner .text_box {
  width: 100%;
  margin-left: auto;
  text-align: center;
}
@media (min-width: 1025px) {
  main .cat_02 .inner .text_box {
    width: 45%;
    text-align: left;
  }
}
@media (min-width: 600px) {
  main .cat_03 {
    padding: 120px 40px;
  }
}
main .cat_03 .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 600px) {
  main .cat_03 .inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
main .cat_03 .inner img {
  width: 100%;
}
main .bg_other {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 600px) {
  main .bg_other {
    height: 395px;
  }
}
main .cat_04 {
  padding: 60px 40px;
  background: #f6f3f0;
}
@media (max-width: 599px) {
  main .cat_04 {
    padding: 60px 20px;
  }
}
main .cat_04 .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 600px) {
  main .cat_04 .box {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
    gap: 20px;
  }
}
main .cat_04 .box article a {
  display: block;
  -webkit-box-shadow: 0px 0px 10px -8px black;
          box-shadow: 0px 0px 10px -8px black;
}
main .cat_04 .box article a div {
  position: relative;
}
main .cat_04 .box article a div img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 600px) {
  main .cat_04 .box article a div img {
    margin-bottom: 5px;
    height: 300px;
  }
}
main .cat_04 .box article a div h3 {
  background: rgba(255, 255, 255, 0.6);
  color: #1e1e1e;
  font-size: 1.4rem;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (min-width: 600px) {
  main .cat_04 .box article a div h3 {
    font-size: 1.6rem;
    padding: 20px 10px;
  }
}
main .cat_04 picture img {
  width: 100%;
}
main .cat_05 {
  padding: 60px 40px;
  background: #f6f3f0;
}
main .cat_05 section .news_list h3,
.index_10 .news_list h3 {
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  main .cat_05 {
    padding: 60px 20px;
  }
}
main .cat_05 section .news_list {
  margin-bottom: 20px;
}
main .cat_05 section .news_list li {
  max-width: 800px;
  margin: auto;
}
main .cat_05 section .news_list li a,
.index_10 .news_list li a {
  border-bottom: 1px solid #ab5354;
  display: block;
  padding: 10px 0 6px 20px;
} 
@media (min-width: 600px) {
  main .cat_05 section .news_list li a,
  .index_10 .news_list li a {
    padding: 10px 0 10px 20px;
  }
}
main .cat_05 section .news_list li a article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}
@media (min-width: 600px) {
  main .cat_05 section .news_list li a article {
    font-size: 14px;
  }
}
main .cat_05 section .news_list li a article time {
  margin-right: 10px;
}
@media (min-width: 600px) {
  main .cat_05 section .news_list li a article h3 br {
    display: none;
  }
}
main .cat_05 section .news_list li a article .notice,
.index_10 .news_list li a article .notice {
  background: #ab5354;
  color: #fff;
  display: inline-block;
  line-height: 1.5;
  padding: 5px 20px 4px;
  margin: 0 6px 5px 0;
}
@media (min-width: 600px) {
  main .cat_05 section .news_list li a article .notice,
  .index_10 .news_list li a article .notice {
    margin: 0 10px 0 0;
  }
}
main .cat_05 section .news_list li:last-of-type a {
  border: none;
}
main .cat_05 section .twitter_box {
  border: 1px solid #707070;
  padding: 10px;
}
main .cat_06 {
  position: relative;
  padding: 60px 40px 40px;
}
@media (max-width: 599px) {
  main .cat_06 {
    padding: 60px 20px 40px;
  }
}
main .cat_06 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  main .cat_06 .grid {
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
  }
}
main .cat_06 .grid iframe {
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  main .cat_06 .grid iframe {
    margin-bottom: 0;
  }
}
main .cat_06 .box .info {
  border: 1px solid #323232;
  padding: 40px 60px;
}
@media (max-width: 799px) {
  main .cat_06 .box .info {
    padding: 40px;
  }
}
@media (max-width: 599px) {
  main .cat_06 .box .info {
    padding: 40px 60px;
  }
}
@media (max-width: 360px) {
  main .cat_06 .box .info {
    padding: 40px;
  }
}
main .cat_06 .box .info:nth-of-type(2) {
  border-bottom: none;
}
main .cat_06 .box .info:nth-of-type(2) ul {
  margin-bottom: 0;
}
main .cat_06 .box .info h3 {
  font-size: 2.0rem;
  display: inline-block;
}
main .cat_06 .box .info ul {
}
@media (min-width: 600px) {
  main .cat_06 .box .info ul {
    font-size: 1.6rem;
  }
}
main .cat_06 .box .info ul li span {
  text-indent: 4em;
  display: block;
}
main .cat_08 {
  padding: 60px 40px;
  background: #fff;
}
@media (max-width: 599px) {
  main .cat_08 {
    padding: 60px 20px;
  }
}
@media (min-width: 600px) {
  main .cat_08 .inner > .text {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  main .cat_08 .inner > div {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
main .cat_08 .inner > div section {
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  main .cat_08 .inner > div section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
main .cat_08 v > div section img {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}
main .cat_08 .inner > div section .secondary_title,
.index_4 .inner .tertiary_title .secondary_title {
  font-size: 20px;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--main_color);
  line-height: 1;
}
main .cat_08 .inner > div section .secondary_title span,
.index_4 .inner .tertiary_title .secondary_title span {
  border-left: 8px solid;
  color: var(--main_color);
  display: inline-block;
  padding-left: 5px;
  line-height: 1;
  position: relative;
  margin-bottom: 10px;
  line-height: 2.8rem;
}
@media (min-width: 600px) {
  main .cat_08 .inner > div section .text {
    margin-bottom: 0;
  }
}



@media (min-width: 600px) {
  main .cat_08 .inner .sec_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main .cat_08 .inner .sec_item > P {
    width: 40%;
    padding-bottom: 0;
  }
  main .cat_08 .inner .sec_item .group {
    width: 56%;
  }
}
main .cat_08 .inner .sec_item {
  padding-bottom: 40px;
}
@media (min-width: 1025px) {
  main .cat_08 .inner .sec_item {
    padding-bottom: 80px;
  }
  main .cat_08 .inner .sec_item:last-child {
    padding-bottom: 0;
  }
}
main .cat_08 .inner .sec_item:last-child .text {
  padding-bottom: 0;
}
main .cat_08 .inner .sec_item .text {
  padding: 20px 10px 40px;
  font-size: 1.5rem;
  line-height: 2;
}
@media (min-width: 1025px) {
  main .cat_08 .inner .sec_item .text {
    padding: 10px 0 0;
  }
}
@media (max-width: 599px) {
  main .cat_08 .inner .sec_item .text {
    padding: 20px 10px;
    line-height: 2.6rem;
  }
}
/* 小見出し*/
main .cat_08 .inner .sec_item .group .secondary_title {
  font-size: 2.0rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #ab5354;
  line-height: 1;
}
main .cat_08 .inner .sec_item .group .secondary_title span {
  border-left: 8px solid;
  color: #ab5354;
  display: inline-block;
  padding-left: 5px;
  line-height: 1;
  position: relative;
  margin-bottom: 10px;
}



/*--------------------------------------
フッター
--------------------------------------*/
footer {
  background: #d8cfc8;
}
footer address {
  background: var(--main_color);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
footer address h2 {
  color: #fff;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  footer address {
    padding: 80px 20px;
  }
}
footer address .title {
  color: #fff;
}
footer address .title span {
  color: #fff;
}
footer address p {
  font-size: 12px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  footer address p {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
footer address p br {
  display: block;
}
@media (min-width: 600px) {
  footer address p br {
    display: none;
  }
}
@media (min-width: 600px) {
  footer address .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: min(100%, 750px);
    margin: auto;
  }
  footer address .btn a {
    width: 50%;
  }
}
footer .footer_bottom {
  width: clamp(320px, calc(100% - 20px), 1520px);
  margin: auto;
}
@media (min-width: 600px) {
  footer .footer_bottom {
    padding: 30px 0 30px;
  }
}
@media (min-width: 1025px) {
  footer .footer_bottom {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr 0;
    grid-template-rows: 1fr 0;
        grid-template-areas: "a b b c" "a b b d";
  }
  footer .footer_bottom > h1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  footer .footer_bottom > .sns {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
  }
  footer .footer_bottom > .mail {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  footer .footer_bottom > .info {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
}
footer .footer_bottom figure {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  text-align: center;
  grid-area: a;
}
@media (min-width: 1025px) {
  footer .footer_bottom figure {
    text-align: left;
  }
}
footer .footer_bottom figure img {
  width: 100px;
  display: inline-block;
  margin: 40px 20px;
}
@media (min-width: 600px) {
  footer .footer_bottom figure img {
    margin: 0 0 50px;
  }
}
@media (min-width: 1025px) {
  footer .footer_bottom figure img {
    margin: 0;
  }
}
@media (min-width: 1025px) {
  footer .footer_bottom figure img {
    width: 140px;
  }
}
footer .footer_bottom .info {
  grid-area: b;
}
footer .footer_bottom .info ul {
  border-bottom: 1px solid #E4E4E4;
  line-height: 1.4;
  padding: 0 20px 40px;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  footer .footer_bottom .info ul {
    border-bottom: none;
    padding: 0 0 0 20px;
    margin-bottom: 0;
  }
}
footer .footer_bottom .info ul li {
  font-size: 14px;
  margin-bottom: 5px;
}
footer .footer_bottom .info ul li span {
  background: #eee6df;
  color: #1e1e1e;
  display: inline-block;
  width: 100px;
  text-align: center;
  padding: 4px;
  margin-right: 10px;
}
@media (min-width: 600px) {
  footer .footer_bottom .info ul li span {
    padding: 4px 10px;
  }
}
footer .footer_bottom .info ul li span:not(.indent) {
  background: #eee6df;
  font-size: 12px;
  color: #2d2d2d;
  display: inline-block;
  width: 105px;
  text-align: center;
  padding: 3px 6px;
  margin-right: 8px;
}
footer .footer_bottom .info ul li .indent {
  display: block;
  text-align: left;
  background: transparent;
  width: auto;
  color: var(--black);
}
@media (min-width: 600px) {
  footer .footer_bottom .info ul li .indent {
    margin-top: 0;
    text-indent: 102px;
  }
}
footer .footer_bottom .sns {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: c;
}
@media (min-width: 600px) {
  footer .footer_bottom .sns {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
footer .footer_bottom .copyrights {
  color: #9CA2A1;
  display: block;
  grid-area: d;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 1025px){
  header h1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  header .sns {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  header .mail {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  header .info {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  footer .footer_bottom figure {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer .footer_bottom > figure {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  footer .footer_bottom .info {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  footer .footer_bottom > .info {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
  }
  footer .footer_bottom .sns {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  footer .footer_bottom > .sns {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  footer .footer_bottom .copyrights {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  footer .footer_bottom > .copyrights {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
}
@media (min-width: 1025px) {
  footer .footer_bottom .copyrights {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-bottom: 0;
    text-align: right;
    color: #636363;
  }
}
footer .arrow_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 40px;
}
footer .arrow_top a {
  display: none;
}
@media (min-width: 1025px) {
  footer .arrow_top a {
    font-size: 1.5em;
    position: fixed;
    bottom: 40px;
    background: #ab5354;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    z-index: 1;
  }
}

/*--------------------------------------
タイトル
--------------------------------------*/
/* トップページの共通タイトル */
.title {
  font-size: 24px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
}
/*
.title::before {
  content: "";
  border-radius: 10px;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--main_color);
  height: 5px;
  width: 50px;
}
*/
@media (min-width: 600px) {
  .title {
    font-size: 3.6rem;
  }
}
.title span {
  color: #1e1e1e;
  display: block;
  font-size: 0.6em;
  letter-spacing: 0;
  font-size: 1.6rem;
}

.sub_title {
  font-size: 24px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .sub_title {
    font-size: 2.4rem;
  }
}
.sub_title span {
  color: var(--main_color);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0;
}

/* 下層ページの共通タイトル1 */
.secondary_title {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .secondary_title {
    margin-bottom: 40px;
  }
}
.secondary_title h3 {
  color: var(--main_color);
  font-size: 2.0rem;
  line-height: 1;
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 16px;
  line-height: 1.4;
}
.secondary_title h3::before {
  position: absolute;
  content: "";
  bottom: 0%;
  left: calc(50% - 40px);
  width: 80px;
  height: 2px;
  border-top: solid 2px var(--main_color);
  display: inline-block;
  border-radius: 8px;
}
@media (min-width: 1025px) {
  .secondary_title h3 {
    font-size: 2.4rem;
  }
}

/* 下層ページの共通タイトル2 */
.tertiary_title h4 {
  border-bottom: 5px solid;
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
}
/*
.tertiary_title h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 20%;
  height: 5px;
  background: var(--main_color);
}
*/
@media (min-width: 1025px) {
  .tertiary_title h4 {
    font-size: 26px;
  }
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
/*Moreボタン*/
.btn_01 {
  font-size: 14px;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  width: min(100%, 200px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_01 i {
  font-size: 10px;
}
.btn_01 i::before {
  vertical-align: -2px;
}
.btn_01:hover {
  background: #ab5354;
  border: 1px solid #ab5354;
  color: #fff;
}

/*カテゴリリンクボタン、一覧へ戻るボタン*/
.btn_02 {
  background: #fff;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 10px;
  max-width: 350px;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn_02:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.btn_02:hover {
  color: #fff;
}
.btn_02:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (min-width: 600px) {
  .btn_02 {
    margin: 0 auto;
  }
}
.btn_02 i:first-child {
  font-size: 1.4em;
}

/*footerのお問い合わせボタン*/
.btn_03 {
  border: 2px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: yu-gothic-pr6n, sans-serif;
  font-size: 22px;
  text-align: left;
  padding: 0 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  height: 90px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .btn_03 {
    font-size: 24px;
    padding: 0 30px;
  }
}
.btn_03.mail_btn {
  background: rgba(255, 255, 255, 0.7);
  color: var(--main_color);
}
.btn_03.mail_btn:hover {
  background: white;
}
.btn_03 i {
  margin-right: 20px;
}
.btn_03 br {
  display: none;
}
@media (min-width: 1025px) {
  .btn_03 br {
    display: block;
  }
}

.btn_04 {
  position: relative;
  font-size: 14px;
  background: var(--main_color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
  max-width: 140px;
    padding: 7px;
    margin-left: 10px;
}
@media (min-width: 600px) {
  .btn_04 {
    padding: 12px;
    width: min(100%, 360px);
  }
}
@media (min-width: 1025px) {
  .btn_04 {
    font-size: 15px;
  }
}

@media (min-width: 600px) {
  .btn_04::after {
    position: absolute;
    right: 14px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*--------------------------------------
共通のSNSアイコン
--------------------------------------*/
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 20px;
  }
}
@media (min-width: 1025px) {
  .sns {
    margin-bottom: 0;
  }
}
.sns a {
  color: #1e1e1e;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.sns a i {
  color: #1e1e1e;
  font-size: 40px !important;
}
.sns a:hover {
  opacity: 0.7 !important;
}
.sns a:last-child {
  margin-right: 0;
}

/*--------------------------------------
下層ページ
--------------------------------------*/
.sec {
  margin-bottom: 40px;
}
.sec:last-child {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .sec:last-child {
    /* margin-bottom: 120px; */
  }
}
.sec p {
  padding-bottom: 40px;
}
.sec .text {
  padding: 40px 20px;
  font-size: 1.6rem;
  line-height: 2;
}

.spacing {
  padding: 0 20px;
}

@media (min-width: 600px) {
  .index_2 .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 600px) {
  .index_2 .group > div {
    width: 48%;
  }
  .index_2 .group > div:last-child {
    margin-top: 63px;
  }
}
@media (min-width: 1025px) {
  .index_2 .group > div:last-child {
    margin-top: 74px;
  }
}
.index_2 .text {
  padding: 40px 0 80px;
  text-align: center;
}
@media (min-width: 1025px) {
  .index_2 .text {
    padding: 40px 0 80px;
  }
}
.index_2 .text.bg_color {
  padding: 40px;
}
.index_2 table {
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .index_3 .sec_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index_3 .sec_item > P {
    width: 48%;
    padding-bottom: 0;
  }
  .index_3 .sec_item .group {
    width: 48%;
  }
}
@media (min-width: 1025px) {
  .index_3 .sec_item {
    padding-bottom: 80px;
  }
  .index_3 .sec_item:last-child {
    padding-bottom: 0;
  }
}
.index_3 .sec_item:last-child .text {
  padding-bottom: 0;
}
.index_3 .sec_item .text {
  padding: 40px 20px 100px;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1025px) {
  .index_3 .sec_item .text {
    padding: 40px 0 0;
  }
}

@media (min-width: 600px) {
  .index_4 .sec_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 600px) {
  .index_4 .sec_item > div {
    width: 48%;
  }
  .index_4 .sec_item > div > p {
    padding-bottom: 0;
  }
  .index_4 .sec_item > div:last-child {
  }
}
.index_4 .sec_item > div .text {
  padding: 20px 0 0;
  font-size: 1.4rem;
}
@media (min-width: 1025px) {
  .index_4 .sec_item > div:last-child {
  }
  .index_4 .sec_item > div .text {
    padding: 20px 0 0;
  }
}
@media (min-width: 600px) {
  .index_4 .map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .index_4 .map > div {
    width: 48%;
  }
}
.index_4 .map .address {
  padding: 40px 0 0 40px;
}
@media (min-width: 600px) {
  .index_4 .map .address {
    width: 48%;
    padding: 40px 0 0 80px;
  }
}

@media (min-width: 600px) {
  .index_5 .sec .sec_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 80px;
  }
  .index_5 .sec .sec_item > P {
    width: 38%;
    padding-bottom: 0;
  }
  .index_5 .sec .sec_item .group {
    width: 58%;
  }
}
.index_5 .sec .sec_item .text {
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 600px) {
  .index_5 .sec .sec_item .text {
    padding: 40px 20px 0;
  }
}
.index_5 .sec .sec_item:last-child .text {
  padding-bottom: 0;
}
.index_5 .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: right;
  padding: 0 20px;
  margin: auto;
}
.index_5 .product p {
  padding: 0;
}
.index_5 .product span {
  position: relative;
  display: block;
  width: 20%;
}
@media (min-width: 600px) {
  .index_5 .product span {
    width: 30%;
  }
}
@media (min-width: 1025px) {
  .index_5 .product span {
    width: 50%;
  }
}
.index_5 .product span:before {
  background: var(--black);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
}
.index_5 h4 {
  background: #F2F2F2;
  padding: 10px 0;
  text-align: center;
}
.index_5 .table_01 {
  margin-bottom: 40px;
}
.index_5 .text {
  padding: 40px 20px;
}

.index_6 .sec p {
  padding-bottom: 10px;
}
.index_6 .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1025px) {
  .index_6 .box {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.index_6 .box article a {
  padding: 10px;
  border: 1px solid;
  display: block;
}
.index_6 .box article a img {
  display: block;
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 600px) {
  .index_6 .box article a img {
    height: 178px;
  }
}
.index_6 .box article a time {
  font-size: 12px;
}
.index_6 .box article a h3 {
  color: #ab5354;
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
}
@media (min-width: 600px) {
  .index_6 .box article a h3 {
    font-size: 18px;
  }
}
.index_6 .box article a .text {
  font-size: 12px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  padding: 0;
}
.index_6 .box article a .stickarrow {
  width: 60px;
  height: 8px;
  margin-left: auto;
  border-bottom: 1px solid;
  border-right: 1px solid;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

@media (min-width: 1025px) {
  .index_7 .sec:first-child {
    width: 48%;
  }
  .index_7 .sec:first-child img {
    width: 60%;
    margin: auto;
    display: block;
  }
  .index_7 .sec:last-child {
    width: 48%;
  }
}
@media (min-width: 1025px) {
  .index_7 .sec:first-child {
    width: 68%;
  }
  .index_7 .sec:last-child {
    width: 28%;
  }
}
.index_7 .inner:first-child {
  margin-bottom: 40px;
}
.index_7 .inner .text {
  padding: 20px;
  font-size: 1.4rem;
  line-height: 2;
}
.index_7 .inner .text img {
  width: auto!important;
  max-width: 100%;
  height: auto!important;
}
.index_7 .inner .text.bg_color {
  margin-bottom: 40px;
}
.index_7 h4 {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 20px;
}
.index_7 h4 span {
  font-size: 1.4rem;
  margin-left: 10px;
}
.index_7 h4:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--main_color);
  left: 0;
  bottom: 0;
}
.index_7 .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-bottom: 40px;
  position: relative;
}
.index_7 .box article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #707070;
}
.index_7 .box article a p {
  width: 50%;
  padding: 0 20px 0 0;
}
.index_7 .box article a p img {
  display: block;
  width: 100%;
  height: 108px;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_7 .box article a h5 {
  color: #707070;
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
}



.index_8 address {
  background: var(--main_color);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.index_8 address h2 {
  color: #fff;
  font-size: 2.0rem;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .index_8 address {
    padding: 60px 20px;
  }
}
.index_8 address .title {
  color: #fff;
}
.index_8 address .title span {
  color: #fff;
}
.index_8 address p {
  font-size: 12px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .index_8 address p {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.index_8 address p br {
  display: block;
}
@media (min-width: 600px) {
  .index_8 address p br {
    display: none;
  }
}
@media (min-width: 600px) {
  .index_8 address .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: min(100%, 750px);
    margin: auto;
  }
  .index_8 address .btn a {
    width: 50%;
  }
}



.index_9 p {
  text-align: center;
  font-size: 1.4rem;
}
.index_9 .required_red {
  color: #a5233b;
}
@media (min-width: 600px) {
  .index_9 p {
    font-size: 1.8rem;
  }
}

.index_10 .news_list {
  margin-bottom: 20px;
}
.index_10 .news_list li {
  max-width: 800px;
  margin: auto;
}
.index_10 .news_list li a article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}
.index_10 .news_list li a article time {
  margin-right: 10px;
}
@media (min-width: 600px) {
  .index_10 .news_list br {
    display: none;
  }
}

.index_11 .frame_box {
  background: #f6f3f0;
  padding: 16px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .index_11 .frame_box {
    padding: 40px;
  }
}
.index_11 .frame_box .text {
  padding: 0;
  font-size: 1.4rem;
}


.index_12 .question {
  color: var(--main_color);
}
.index_12 .question div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.index_12 .question div span {
  background: var(--main_color);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  padding: 10px;
  width: 45px;
  height: 45px;
}
.index_12 .answer {
  background: #F2F1EC;
  color: var(--main_color);
  margin-bottom: 80px;
  padding: 20px;
}
@media (min-width: 1025px) {
  .index_12 .answer {
    padding: 20px 0;
  }
}
.index_12 .answer:last-child {
  margin-bottom: 0;
}
.index_12 .answer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.index_12 .answer div span {
  background: #fff;
  color: var(--main_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  padding: 10px;
  width: 45px;
  height: 45px;
}
.index_12 .answer p {
  color: var(--black);
  font-size: 12px;
  padding: 0 40px;
}
@media (min-width: 600px) {
  .index_12 .answer p {
    padding: 0 55px;
  }
}