@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  position: relative;
  overflow-y: scroll;
  color: #333333;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.8;
  font-size: 1.6em;
  overflow: hidden;
}

/*縦方向の揃え位置を中央揃えに指定*/
input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: center;
  font-size: 0;
  line-height: 0;
  image-rendering: -webkit-optimize-contrast;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*禁則処理*/
p,
li,
dt,
dd,
th,
td,
pre {
  text-align: left;
  word-break: normal;
  word-wrap: break-word;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

input {
  height: 30px;
  margin: 0;
  box-sizing: border-box;
}

input[type=textbox]::before {
  content: attr(placeholder);
  color: #808080;
}

a:focus,
*:focus,
input[type=text]:focus {
  outline: none;
}

section {
  padding: 20px 0;
  position: relative;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

i {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.is-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.is-left {
  text-align: left;
}

.is-right {
  text-align: right;
}

.float_l {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .float_l {
    float: left;
  }
}

.float_r {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .float_r {
    float: right;
  }
}

.cf {
  display: block;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.cf::before {
  content: "";
  display: block;
  clear: both;
}

.l0 {
  line-height: 0;
}

/*================================================
 *  電話番号をスマホのみ有効に
 ================================================*/
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/*================================================
 *  表示切り替え
 ================================================*/
.sp-only {
  display: initial;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: initial;
  }
}

/*================================================
 *  余白
 ================================================*/
.p_s0 {
  padding: 0.5em;
}

.p_st0 {
  padding-top: 0.5em;
}

.p_sb0 {
  padding-bottom: 0.5em;
}

.p_stb0 {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.p_slr0 {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.p_sl0 {
  padding-left: 0.5em;
}

.p_sr0 {
  padding-right: 0.5em;
}

.p_s {
  padding: 1em;
}

.p_st {
  padding-top: 1em;
}

.p_sb {
  padding-bottom: 1em;
}

.p_stb {
  padding-top: 1em;
  padding-bottom: 1em;
}

.p_slr {
  padding-left: 1em;
  padding-right: 1em;
}

.p_sl {
  padding-left: 1em;
}

.p_sr {
  padding-right: 1em;
}

.p_s2 {
  padding: 2em;
}

.p_st2 {
  padding-top: 2em;
}

.p_sb2 {
  padding-bottom: 2em;
}

.p_stb {
  padding-top: 2em;
  padding-bottom: 2em;
}

.p_slr2 {
  padding-left: 2em;
  padding-right: 2em;
}

.p_sl2 {
  padding-left: 2em;
}

.p_sr2 {
  padding-right: 2em;
}

.p_s3 {
  padding: 3em;
}

.p_st3 {
  padding-top: 3em;
}

.p_sb3 {
  padding-bottom: 3em;
}

.p_stb3 {
  padding-top: 3em;
  padding-bottom: 3em;
}

.fb100 {
  flex-basis: 100%;
}

.fb90 {
  flex-basis: 90%;
}

.fb80 {
  flex-basis: 80%;
}

.fb70 {
  flex-basis: 70%;
}

.fb60 {
  flex-basis: 60%;
}

.fb50 {
  width: 50%;
}

.fb40 {
  flex-basis: 40%;
}

.fb30 {
  flex-basis: 30%;
}

.fb20 {
  flex-basis: 20%;
}

.fb10 {
  flex-basis: 10%;
}

/*================================================
 *  文字装飾
 ================================================*/
.memo {
  font-size: 14px;
}

.mi {
  color: red;
  font-weight: 600;
}

/*================================================
 *  幅
 ================================================*/
.area_full {
  margin: 0 calc(50% - 50vw);
}

.area_flex {
  display: block;
}
@media screen and (min-width: 768px) {
  .area_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: normal;
  }
}

.area_100 {
  max-width: 100px;
}

.area_150 {
  max-width: 150px;
}

.area_200 {
  max-width: 200px;
}

.area_300 {
  max-width: 300px;
}

.area_400 {
  max-width: 400px;
}

.area_500 {
  max-width: 500px;
}

.area_600 {
  max-width: 600px;
}

.area_700 {
  max-width: 700px;
}

.area_800 {
  max-width: 800px;
}

.area_900 {
  max-width: 900px;
}

.is-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.is-left {
  text-align: left;
}

.is-right {
  text-align: right;
}

.float_l {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .float_l {
    float: left;
  }
}

.float_r {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .float_r {
    float: right;
  }
}

.cf {
  display: block;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.cf::before {
  content: "";
  display: block;
  clear: both;
}

.l0 {
  line-height: 0;
}

.sp-only {
  display: initial;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: initial;
  }
}

.p_s0 {
  padding: 0.5em;
}

.p_st0 {
  padding-top: 0.5em;
}

.p_sb0 {
  padding-bottom: 0.5em;
}

.p_stb0 {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.p_slr0 {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.p_sl0 {
  padding-left: 0.5em;
}

.p_sr0 {
  padding-right: 0.5em;
}

.p_s {
  padding: 1em;
}

.p_st {
  padding-top: 1em;
}

.p_sb {
  padding-bottom: 1em;
}

.p_stb {
  padding-top: 1em;
  padding-bottom: 1em;
}

.p_slr {
  padding-left: 1em;
  padding-right: 1em;
}

.p_sl {
  padding-left: 1em;
}

.p_sr {
  padding-right: 1em;
}

.p_s2 {
  padding: 2em;
}

.p_st2 {
  padding-top: 2em;
}

.p_sb2 {
  padding-bottom: 2em;
}

.p_stb {
  padding-top: 2em;
  padding-bottom: 2em;
}

.p_slr2 {
  padding-left: 2em;
  padding-right: 2em;
}

.p_sl2 {
  padding-left: 2em;
}

.p_sr2 {
  padding-right: 2em;
}

.p_s3 {
  padding: 3em;
}

.p_st3 {
  padding-top: 3em;
}

.p_sb3 {
  padding-bottom: 3em;
}

.p_stb3 {
  padding-top: 3em;
  padding-bottom: 3em;
}

.pm_st {
  padding-top: -1em;
}

.pm_st2 {
  padding-top: -2em;
}

.pm_sb {
  padding-bottom: -1em;
}

.pm_sl {
  padding-left: -1em;
}

.pm_st {
  padding-right: -1em;
}

.fb100 {
  flex-basis: 100%;
}

.fb90 {
  flex-basis: 90%;
}

.fb80 {
  flex-basis: 80%;
}

.fb79 {
  flex-basis: 79%;
}

.fb70 {
  flex-basis: 70%;
}

.fb69 {
  flex-basis: 69%;
}

.fb60 {
  flex-basis: 60%;
}

.fb59 {
  flex-basis: 59%;
}

.fb50 {
  flex-basis: 50%;
}

.fb49 {
  flex-basis: 49%;
}

.fb40 {
  flex-basis: 40%;
}

.fb39 {
  flex-basis: 39%;
}

.fb30 {
  flex-basis: 30%;
}

.fb29 {
  flex-basis: 29%;
}

.fb20 {
  flex-basis: 20%;
}

.fb19 {
  flex-basis: 19%;
}

.fb10 {
  flex-basis: 10%;
}

.memo {
  font-size: 14px;
}

.mi {
  color: rgb(233, 0, 0);
  font-weight: 600;
}

.flexbox {
  display: block;
}
@media screen and (min-width: 768px) {
  .flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: normal;
  }
}

.area_full {
  margin: 0 calc(50% - 50vw);
}

.area_100 {
  max-width: 100px;
}

.area_200 {
  max-width: 200px;
}

.area_300 {
  max-width: 300px;
}

.area_400 {
  max-width: 400px;
}

.area_500 {
  max-width: 500px;
}

.area_600 {
  max-width: 600px;
}

.area_700 {
  max-width: 700px;
}

.area_800 {
  max-width: 800px;
}

.area_900 {
  max-width: 900px;
}

.area_1000 {
  max-width: 1000px;
}

.area_1200 {
  max-width: 1200px;
}

.font16 {
  font-size: 16px;
}

.font1416 {
  font-size: clamp(14px, 3vw, 16px);
}

.font18 {
  font-size: 18px;
}

.font1618 {
  font-size: clamp(16px, 3vw, 18px);
}

.font20 {
  font-size: 20px;
}

.font1820 {
  font-size: clamp(18px, 3vw, 20px);
}

.font1620 {
  font-size: clamp(16px, 3vw, 20px);
}

.font1622 {
  font-size: clamp(16px, 3vw, 22px);
}

.font2030 {
  font-size: clamp(20px, 3vw, 30px);
}

.memo {
  font-size: clamp(13px, 1.8vw, 14px);
  font-weight: 400;
}

.memoc {
  font-size: clamp(13px, 1.8vw, 14px);
  color: #808080;
  font-weight: 400;
}

.mi {
  font-weight: 600;
  color: #ea0124;
}

.bi {
  font-weight: 600;
  color: #333333;
}

.ri {
  font-size: initial;
  color: initial;
  border: none;
  text-decoration: none;
}

.mc {
  color: #036eb8;
}

.mcb {
  color: #036eb8;
  font-weight: 600;
}

.un {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #333333;
  display: inline;
}

.unb {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #333333;
  font-weight: 600;
  display: inline;
}

.unc {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ea0124;
  display: inline;
}

.uncb {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ea0124;
  font-weight: 600;
  display: inline;
}

.marker {
  background: linear-gradient(transparent 0%, #ff9 0%);
  display: inline;
}

.marker50 {
  background: linear-gradient(transparent 50%, #ff9 50%);
  display: inline;
}

.del {
  text-decoration: line-through;
}

.waku {
  border-width: 1px;
  border-style: solid;
  border-color: #333333;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
}

/*-- globalフォルダの中の_index.scss --*/
div.content {
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  div.content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  div.content {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (min-width: 1280px) {
  div.content {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.contents {
  position: relative;
  display: block;
  min-height: 100vh;
  max-width: 980px;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 50px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  scrollbar-width: 0;
}
.contents ::-webkit-scrollbar {
  width: 0;
}
@media screen and (min-width: 1024px) {
  .contents {
    padding-left: 0;
    padding-right: 0;
  }
}

/*バナーエリア*/
div.banner__wrap {
  background-color: #EEEEEE;
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
div.banner__wrap ul {
  display: block;
}
@media screen and (min-width: 768px) {
  div.banner__wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: normal;
  }
}
div.banner__wrap li {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;
  padding: 0.5em 0;
}
@media screen and (min-width: 768px) {
  div.banner__wrap li {
    padding: 0;
  }
}

.footer {
  background-color: white;
}

/*-- layoutフォルダの中の_index.scss --*/
.header {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav-area {
  position: absolute;
  height: 50px;
  transition: 0.6s ease;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
@media screen and (min-width: 970px) {
  .nav-area {
    height: 80px;
  }
}
.nav-area a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  opacity: 1;
}
.nav-area .nav-item {
  border-top: 0;
}

/*ハンバーガー*/
.hamburger {
  padding: 16px 8px 16px 8px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 970px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  height: 3px;
  width: 28px;
  transition: 0.6s ease;
  border-radius: 3px;
  background-color: #b59788;
}
.hamburger span::before {
  content: "";
  position: absolute;
  margin-top: -8px;
  background-color: #b59788;
  display: block;
  height: 3px;
  width: 28px;
  transition: 0.6s ease;
  border-radius: 3px;
}
.hamburger span::after {
  content: "";
  position: absolute;
  margin-top: 8px;
  background-color: #b59788;
  display: block;
  height: 3px;
  width: 28px;
  transition: 0.6s ease;
  border-radius: 3px;
}

.nav-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 50px;
  background-color: white;
  padding-right: 1em;
}
@media screen and (min-width: 970px) {
  .nav-header {
    border-bottom: none;
    margin-right: auto;
    height: 80px;
  }
}

.logo__container {
  display: flex;
  align-items: center;
  height: 50px;
  z-index: 1;
}
@media screen and (min-width: 970px) {
  .logo__container {
    height: 80px;
  }
}
.logo__container h1 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  max-width: 100%;
  font-size: 24px;
  margin-left: 1em;
}
@media screen and (min-width: 970px) {
  .logo__container h1 {
    max-width: 100%;
    font-size: 32px;
  }
}
.logo__container h1 span {
  font-size: 16px;
  font-weight: 300;
  padding-right: 1em;
}
@media screen and (min-width: 970px) {
  .logo__container h1 span {
    font-size: 20px;
  }
}

.navigation {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin: 0;
  background-color: white;
}
@media screen and (min-width: 970px) {
  .navigation {
    height: 80px;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
  }
}
.navigation > .nav-item {
  border-bottom: 1px solid white;
  z-index: 3;
}
@media screen and (min-width: 970px) {
  .navigation > .nav-item {
    border-bottom: none;
  }
}
@media screen and (min-width: 970px) {
  .navigation > .nav-item a {
    height: 100%;
  }
}
.navigation > li:last-child {
  margin-bottom: 100px;
}
@media screen and (min-width: 970px) {
  .navigation > li:last-child {
    margin-bottom: 0;
  }
}

.nav-item {
  border-bottom: 1px dotted #856352;
}
@media screen and (min-width: 970px) {
  .nav-item {
    border-top: 0;
    height: 100%;
  }
}
.nav-item :last-child {
  border: none;
}
.nav-item a {
  text-decoration: none;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  color: black;
  padding: 1em 1em 1em 3em;
}
@media screen and (min-width: 970px) {
  .nav-item a {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    background-color: transparent;
    padding: 0.5em 0.8em;
    height: 100%;
  }
}
.nav-item a:hover {
  color: black;
  background: #dccec7;
  z-index: 122;
}

@media screen and (max-width: 970px) {
  .navigation li:nth-child(2) {
    background-color: #ffe4d6;
  }
  .navigation li:nth-child(3) {
    background-color: #daeeee;
  }
  .navigation li:nth-child(4) {
    background-color: #fff8d3;
  }
  .navigation li:nth-child(5) {
    background-color: #c9f2ff;
  }
  .navigation li:nth-child(6) {
    background-color: #eaeaea;
  }
}

.nav-checkbox {
  display: none;
}
.nav-checkbox:not(:checked) ~ .nav-area {
  overflow: hidden;
  height: 50px;
}
@media screen and (min-width: 970px) {
  .nav-checkbox:not(:checked) ~ .nav-area {
    overflow: visible;
    height: 80px;
  }
}
.nav-checkbox:checked ~ .nav-area {
  transition: height 0.6s ease;
  height: 100vh;
  overflow-y: auto;
}
@media screen and (min-width: 970px) {
  .nav-checkbox:checked ~ .nav-area {
    height: initial;
    overflow: initial;
  }
}
.nav-checkbox:checked ~ .nav-area li .hamburger span {
  background-color: transparent;
}
.nav-checkbox:checked ~ .nav-area li .hamburger span::before {
  margin-top: 0;
}
.nav-checkbox:checked ~ .nav-area li .hamburger span::after {
  margin-top: 0;
}
.nav-checkbox:checked + .nav-area span::before {
  transform: rotate(225deg);
}
.nav-checkbox:checked + .nav-area span::after {
  transform: rotate(-225deg);
}

.nav-dropdown {
  position: relative;
  z-index: 2;
  background-color: white;
}
@media screen and (min-width: 970px) {
  .nav-dropdown {
    padding-right: 1.5em;
  }
}
@media screen and (min-width: 970px) {
  .nav-dropdown:hover > ul {
    position: absolute;
    left: 0;
    padding: 0;
    display: block;
    min-width: 100%;
    z-index: 200;
    background: white;
  }
}
.nav-dropdown > a {
  pointer-events: none;
  position: relative;
  display: inline-block;
  align-items: center;
}
@media screen and (min-width: 970px) {
  .nav-dropdown > a {
    display: flex;
  }
}
.nav-dropdown > a::after {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: auto;
  right: -1em;
  margin: auto;
  content: "";
  width: 0.6em;
  height: 0.6em;
  border: 0.6em solid transparent;
  border-left: 0.6em solid transparent;
  border-right: 0.6em solid transparent;
  border-top: 0.6em solid white;
}
@media screen and (min-width: 970px) {
  .nav-dropdown > a::after {
    position: absolute;
    top: 10px;
    bottom: 0;
    left: auto;
    right: -15px;
    margin: auto;
    content: "";
  }
}
.nav-dropdown > ul {
  display: none;
  overflow-x: hidden;
  padding: 0;
  border-top: 2px solid #b59788;
  position: relative;
  min-width: 100%;
}
@media screen and (min-width: 970px) {
  .nav-dropdown > ul {
    display: none;
    border-top: none;
  }
}
.nav-dropdown > ul .nav-item a {
  background: white;
  display: block;
  min-width: 100%;
  padding: 0.8em 1em 0.8em 4em;
  z-index: 122;
}
@media screen and (min-width: 970px) {
  .nav-dropdown > ul .nav-item a {
    color: black;
    background: white;
    padding: 0.6em 1em 0.6em 1em;
    white-space: nowrap;
  }
}
.nav-dropdown > ul .nav-item a:hover {
  background: white;
  z-index: 122;
}

.active ul {
  display: block;
}
@media screen and (min-width: 970px) {
  .active ul {
    display: none;
  }
}

.flex__wrap {
  display: block;
}
.flex__wrap div {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .flex__wrap div {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .flex__wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
  }
}

.colum__wrap {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-position: inside;
  list-style: none;
}
.colum__wrap li {
  width: 140px;
  text-align: center;
  margin: 0.5em;
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 8px;
  background-color: transparent;
  overflow: hidden;
}
@media screen and (min-width: 568px) {
  .colum__wrap li {
    width: 180px;
  }
}
.colum__wrap li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 10px 10px 10px;
}
.colum__image {
  width: 100px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.columth__wrap {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style-position: inside;
  list-style: none;
}
.columth__wrap li {
  width: 100%;
  height: 100px;
  display: flex;
  margin-left: 1em;
  margin-bottom: 1em;
  text-align: left;
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
}
.columth__wrap li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  height: 100px;
}
.columth__image {
  width: 102px;
  height: 102px;
  align-self: center;
}
.columth__text {
  padding-left: 1em;
  align-self: center;
}

.columlist__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .columlist__container {
    flex-direction: row;
  }
}
.columlist__container li {
  border-width: 1px;
  border-style: solid;
  border-color: gray;
  border-radius: 8px;
  background-color: transparent;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .columlist__container li {
    width: 32%;
    flex-direction: row;
  }
}
.columlist__container li a {
  padding: 0.5em 2em 0.5em 0.5em;
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  align-items: center;
}
.columlist__container li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 10px;
  margin: auto;
  content: "";
  width: 1em;
  height: 1em;
  border: 0.5em solid transparent;
  border-left: 0.5em solid #b59788;
}
.columlist__container::after {
  display: block;
  content: "";
  width: 32%;
}

.photo__wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.photo__wrap figure {
  width: 50%;
  text-align: center;
  padding-left: 2px;
  padding-right: 2px;
}
.photo__wrap figure .fitimg {
  display: block;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  font-family: "object-fit: cover;"; /*IE対策*/
}
@media screen and (min-width: 768px) {
  .photo__wrap figure {
    width: 33.3333333333%;
    padding: 0.5em;
  }
}
.photo__wrap figcaption {
  padding-bottom: 2em;
}

.incolum__wrap {
  display: block;
}
@media screen and (min-width: 768px) {
  .incolum__wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: normal;
  }
}
.incolum__wrap li {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 303.3333333333px;
  padding: 1em;
  border-width: 1px;
  border-style: solid;
  border-color: #bbbbbb;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
}
.incolum__wrap li a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}
.incolum__image {
  min-height: 0%;
}
.incolum__title {
  color: #b59788;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.5em 0;
}
.incolum__btn {
  display: block;
  margin-top: auto;
}
.incolum__btn a {
  display: inline-block;
  font-size: 1.8rem;
  color: white;
  padding: 0.5em 3em 0.5em 1em;
  margin: 1em;
  background-color: #b59788;
  border-radius: 6px;
}
.incolum__btn a:hover {
  background-color: #c9b2a7;
}
.incolum__btn span {
  position: relative;
  display: inline-block;
  align-items: center;
}
.incolum__btn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: -50px;
  margin: auto;
  content: "";
  width: 1em;
  height: 1em;
  border: 0.5em solid transparent;
  border-left: 0.5em solid white;
}

.tab__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 970px) {
  .tab__container {
    width: 100%;
  }
}
.tab__label {
  background: #F0F0F0;
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  order: -1;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.5rem;
  padding: 1em;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .tab__label {
    width: 25%;
  }
}
.tab__label p {
  align-self: center;
  text-align: left;
}
.tab__switch:checked + .tab__label + .tab__content {
  display: block;
}
.tab__switch:checked + .tab__label {
  background: #b59788;
}
.tab__switch {
  display: none;
}
.tab__content {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 2px solid #b59788;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .tab__content {
    padding: 1rem;
  }
}
.tab__content * {
  max-width: 100%;
}

.iframe__container {
  position: relative;
  width: 100%;
  padding-top: 30%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border: 1px solid #b59788;
}
.iframe__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.topnews__container {
  text-align: center;
}
.topnews__container ul {
  list-style: none;
  text-align: left;
  padding: 1em;
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
}
.topnews__container ul li {
  border-bottom: 1px dotted #b59788;
  margin-bottom: 0.5em;
}
.topnews__container .rireki {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 260px;
  margin-top: 1em;
}
.topnews__container .rireki a {
  padding: 0.6em 3em 0.6em 1em;
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: inline-block;
  align-items: center;
}
.topnews__container .rireki a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 10px;
  margin: auto;
  content: "";
  width: 1em;
  height: 1em;
  border: 0.5em solid transparent;
  border-left: 0.5em solid #b59788;
}
.topnews__container .rireki a:hover {
  color: white;
  opacity: 1;
  background-color: #b59788;
}
.topnews__container .rireki a:hover:before {
  width: 1em;
  height: 1em;
  border: 0.5em solid transparent;
  border-left: 0.5em solid white;
}

/*アイコンとbxのタイトル*/
.icontitle_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 1.5em;
  text-align: left;
}
@media screen and (max-width: 970px) {
  .icontitle_area {
    margin-top: calc(50px + 1em);
  }
}
.icontitle_area i {
  font-size: 5rem;
  padding-right: 10px;
  color: #b59788;
  font-weight: 400;
}
.icontitle_area .icontitle {
  flex: 1 1 0%;
}
.icontitle_area h3 {
  color: #b59788;
  font-weight: 400;
}
.icontitle_area .h3_en {
  font-size: 1.4rem;
  color: #8C8C8C;
  line-height: 1;
  display: block;
  padding-bottom: 10px;
}

div.pankuzu_area {
  display: none;
}
@media screen and (min-width: 768px) {
  div.pankuzu_area {
    display: block;
    max-width: 1200px;
    margin: 100px auto 50px auto;
    background-color: white;
    border-width: 1px;
    border-style: solid;
    border-color: #bbbbbb;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
  }
}

.pankuzu {
  padding: 0.5em 1em;
  font-size: 14px;
  margin: 0;
  list-style: none;
  text-align: left;
}
.pankuzu li {
  display: inline;
  list-style: none;
}
.pankuzu li:after { /* >を表示*/
  content: ">";
  padding: 0 0.2em;
  color: #555;
}
.pankuzu li:last-child:after {
  content: "";
}
.pankuzu li a {
  text-decoration: none;
  color: #b59788;
}

dl.hyou {
  display: block;
}
@media screen and (min-width: 768px) {
  dl.hyou {
    display: flex;
    flex-wrap: wrap;
    border-width: 1px;
    border-style: solid;
    border-color: #b59788;
    border-radius: 0;
    background-color: transparent;
    overflow: hidden;
    border-top: none;
  }
}
dl.hyou dt {
  width: 100%;
  text-align: left;
  background: white;
  padding: 0.5em 1em;
  margin-top: 1em;
  background-color: white;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #b59788;
}
@media screen and (min-width: 768px) {
  dl.hyou dt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 20%;
    padding: 10px;
    border-bottom: none;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #b59788;
    text-align: center;
    margin-top: 0;
  }
}
dl.hyou dd {
  border-left: none;
  padding: 1em;
  text-align: left;
  background-color: white;
}
@media screen and (min-width: 768px) {
  dl.hyou dd {
    margin: 0;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #b59788;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #b59788;
    width: 80%;
    background: #fff;
  }
}

dl.tejyun {
  display: block;
}
dl.tejyun dt {
  width: 100%;
  text-align: left;
  background: white;
  padding: 0.5em 1em;
  margin-top: 1em;
  font-size: 1.8rem;
  background-color: white;
}
dl.tejyun dd {
  padding: 1em;
  text-align: left;
}

dl.list__wrap {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style-position: inside;
  list-style: none;
}
dl.list__wrap div {
  width: 100%;
  display: flex;
  margin-bottom: 1em;
  text-align: left;
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  position: relative;
  display: inline-block;
  align-items: center;
}
@media screen and (min-width: 768px) {
  dl.list__wrap div:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    margin: auto;
    content: "";
    width: 1em;
    height: 1em;
    border: 18px solid transparent;
    border-left: 18px solid #b59788;
  }
}
dl.list__wrap div a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}
dl.list__wrap dt {
  font-size: 0;
  line-height: 0;
}
dl.list__wrap dt img {
  min-width: 150px;
  width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  dl.list__wrap dt img {
    min-width: 230px;
    width: 230px;
  }
}
dl.list__wrap dd {
  padding: 1em 3em 0 1em;
}
@media screen and (max-width: 970px) {
  dl.list__wrap dd {
    padding: 0.5em;
  }
}

table {
  border-collapse: collapse;
}
table th, table td {
  border: solid 1px;
  padding: 1em;
}

thead th {
  font-weight: 400;
}

.table_plus {
  border: 1px solid #b59788;
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  table-layout: fixed;
}
.table_plus td {
  background: white;
  padding: 0.5em 1em;
  border: 1px solid #b59788;
  border-collapse: collapse;
}
@media screen and (max-width: 970px) {
  .table_plus td {
    display: block;
    width: 100%;
  }
  .table_plus td[data-title]::before {
    color: #b59788;
    content: attr(data-title) " :";
    font-weight: bold;
    padding-right: 1em;
    display: inline;
  }
}
.table_plus thead th {
  border: 1px solid #b59788;
  background: #dccec7;
  color: white;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 970px) {
  .table_plus thead th {
    display: none;
  }
}
.table_plus tbody th {
  border: 1px solid #b59788;
  border-collapse: collapse;
  background: white;
  padding: 0.5em 1em;
  vertical-align: middle;
}
@media screen and (max-width: 970px) {
  .table_plus tbody th {
    display: block;
    width: 100%;
    background: #b59788;
    color: #fff;
  }
}

.table {
  border: 1px solid #c9b2a7;
  border-collapse: collapse;
  text-align: left;
}
.table td {
  background: #c9b2a7;
  padding: 4px 12px;
  display: block;
  width: 100%;
}
.table th {
  background: #a17c69;
  color: #fff;
  padding: 4px 12px;
  display: block;
  width: 100%;
}

.width5 {
  width: 5%;
}

.width10 {
  width: 10%;
}

.width15 {
  width: 15%;
}

.width20 {
  width: 20%;
}

.width22 {
  width: 22%;
}

.width25 {
  width: 25%;
}

.width30 {
  width: 30%;
}

.width40 {
  width: 40%;
}

.width50 {
  width: 50%;
}

.width60 {
  width: 60%;
}

div.tableres {
  overflow: auto;
  width: 100%;
}
div.tableres table {
  width: 900px;
}

/*-- objectフォルダの中の_index.scss --*/
.footer {
  border-top-width: 1px;
  border-top-style: dashed;
  border-top-color: #b59788;
}
.footer dl {
  display: block;
  padding: 2em;
}
@media screen and (min-width: 768px) {
  .footer dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: normal;
  }
}
.footer dl dt {
  padding: 0 2em;
}
.footer dl dd {
  padding: 0 2em;
}
.footer__copyright {
  background-color: #b59788;
  color: white;
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding: 10px 0;
  }
}

/*スライド画面*/
div.swiper-container {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  div.swiper-container {
    margin-top: 80px;
  }
}
div.swiper-container img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  div.swiper-container img {
    height: 700px;
  }
}

/*スライドのアニメーション文字左揃え*/
div.slide-content {
  position: absolute;
  top: 10px;
  left: 40%;
  transform: translate(-40%);
  color: #fff;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
div.slide-content p {
  font-weight: bold;
  line-height: 1.2;
}

p.slidecopy {
  margin-bottom: 15%;
  line-height: 1.2;
}

.slidecopy_1 {
  font-weight: bold;
  font-size: 10vw;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

.slidecopy_2 {
  font-weight: bold;
  color: #000000;
  font-size: 3vw;
}

.slidecopy_3 {
  font-weight: bold;
  font-size: 3vw;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

.slidecopy_4 {
  font-weight: bold;
  font-size: 10vw;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes fromleft {
  0% {
    left: 0%;
    opacity: 0;
  }
  100% {
    left: 30%;
    opacity: 1;
  }
}

@keyframes fromleft {
  0% {
    left: 0%;
    opacity: 0;
  }
  100% {
    left: 30%;
    opacity: 1;
  }
}
.swiper-slide-active .slide-content,
.slide-content {
  -webkit-animation: fromleft 0.6s ease-in-out 2s 1 normal both;
          animation: fromleft 0.6s ease-in-out 2s 1 normal both;
}

/*スライドのアニメーション文字右揃え*/
div.slide-content2 {
  position: absolute;
  top: 10px;
  left: 40%;
  transform: translate(-40%);
  color: #fff;
  width: 100%;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 5;
  height: 700px;
}
div.slide-content2 p {
  font-weight: bold;
  line-height: 1.2;
}

@-webkit-keyframes fromright {
  0% {
    left: 0%;
    opacity: 0;
  }
  100% {
    left: 78%;
    opacity: 1;
  }
}

@keyframes fromright {
  0% {
    left: 0%;
    opacity: 0;
  }
  100% {
    left: 78%;
    opacity: 1;
  }
}
.swiper-slide-active .slide-content2,
.slide-content2 {
  -webkit-animation: fromright 0.6s ease-in-out 2s 1 normal both;
          animation: fromright 0.6s ease-in-out 2s 1 normal both;
}

.aisatu_title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: normal;
  margin-top: -80px;
  z-index: 1;
}
@media screen and (min-width: 568px) {
  .aisatu_title {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    top: -120px;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .aisatu_title {
    top: -200px;
  }
}
@media screen and (min-width: 1024px) {
  .aisatu_title {
    top: -220px;
  }
}

h2.sisei {
  color: #b59788;
  font-weight: 600;
  font-size: 3rem;
}
@media screen and (min-width: 568px) {
  h2.sisei {
    font-size: 3.6em;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  h2.sisei {
    font-size: 5.4em;
  }
}
@media screen and (min-width: 1024px) {
  h2.sisei {
    font-size: 10rem;
  }
}

h2.copy {
  font-weight: 600;
  text-align: left;
  font-size: 1.6rem;
  margin-left: 0.5em;
}
@media screen and (min-width: 768px) {
  h2.copy {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  h2.copy {
    font-size: 3rem;
  }
}

.illust {
  max-width: 40px;
}
@media screen and (min-width: 568px) {
  .illust {
    max-width: 60px;
  }
}
@media screen and (min-width: 768px) {
  .illust {
    max-width: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .illust {
    max-width: 100px;
  }
}

.text__container {
  margin-top: 50px;
  text-align: left;
  clear: both;
}
.text__container:first-letter {
  font-size: 300%;
  font-weight: 600;
  float: left;
  padding-right: 0.2em;
}
@media screen and (min-width: 768px) {
  .text__container__top {
    margin-top: 100px;
  }
}

.catchcopy__area {
  margin-top: 1em;
  display: block;
}
@media screen and (min-width: 768px) {
  .catchcopy__area {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .catchcopy__area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: normal;
  }
}
.catchcopy__area ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .catchcopy__area ul {
    margin-top: 40px;
  }
}
.catchcopy__area ul li {
  font-size: 1.8rem;
  font-weight: 900;
  padding-bottom: 0.2em;
}
@media screen and (min-width: 768px) {
  .catchcopy__area ul li {
    font-size: 2.2rem;
  }
}
.catchcopy__area p {
  font-size: 138%;
  font-weight: 900;
  padding-top: 1em;
}
.catchcopy__copy {
  max-width: 600px;
}
.catchcopy__profile {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 10px;
  background-color: transparent;
  overflow: hidden;
  max-width: 600px;
  padding: 1em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .catchcopy__profile {
    margin-top: 40px;
  }
}
.catchcopy__profile dt {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .catchcopy__profile dt {
    font-size: 2rem;
  }
}

.keijiban__wrap {
  position: relative;
  background-image: url(../img/keijiban_repeat.png);
  background-repeat: repeat-y;
  background-position: 50% 50%;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .keijiban__wrap {
    margin-top: 100px;
  }
}
.keijiban__top {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
.keijiban__inner {
  max-width: 1260px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-top: 1em;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .keijiban__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .keijiban__inner {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .keijiban__inner {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .keijiban__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
  }
}
@media screen and (min-width: 768px) {
  .keijiban__inner {
    margin-top: 40px;
  }
}
.keijiban__inner h2 {
  margin-top: 2em;
  padding: 50px;
}
@media screen and (min-width: 768px) {
  .keijiban__inner h2 {
    margin-top: 100px;
  }
}
.keijiban__inner h3 {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .keijiban__inner h3 {
    margin-top: 40px;
  }
}
.keijiban__bottom {
  width: 100%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

.osirase__area {
  flex-basis: 49%;
  color: white;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.osirase__area p {
  text-align: left;
}
.osirase__area p span {
  text-align: right;
}
.osirase__note {
  display: block;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .osirase__note {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
  }
}
@media screen and (min-width: 768px) {
  .osirase__note {
    margin-top: 40px;
  }
}
.osirase__note dt {
  flex-basis: 39%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.osirase__note dd {
  flex-basis: 59%;
}

.sanka__area {
  flex-basis: 49%;
}
.sanka__list {
  background-color: hsla(0deg, 0%, 0%, 0.34);
  padding: 1em;
}
@media screen and (min-width: 768px) {
  .sanka__list {
    display: flex;
    flex-wrap: wrap;
    border-top: none;
  }
}
.sanka__list dt {
  color: white;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .sanka__list dt {
    display: block;
    width: 25%;
    text-align: center;
    margin-top: 0;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: white;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .sanka__list dt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: normal;
  }
}
.sanka__list dd {
  color: white;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: white;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .sanka__list dd {
    margin: 0;
    width: 75%;
  }
}

.jimo__area {
  color: white;
  display: block;
}
@media screen and (min-width: 768px) {
  .jimo__area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
  }
}
.jimo__area > div {
  margin-top: 1em;
  text-align: left;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .jimo__area > div {
    margin-top: 20px;
  }
}
.jimo__newstitle {
  margin-top: 1em;
  font-size: clamp(18px, 3vw, 30px);
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .jimo__newstitle {
    margin-top: 20px;
  }
}

.newgikai__area h3 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #990100;
  font-size: 2.2rem;
  font-weight: 600;
  color: #990100;
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .newgikai__area h3 {
    font-size: 3.8rem;
  }
}
.newgikai__area h4 {
  font-size: 1.6rem;
  font-weight: 600;
  width: 100%;
  color: #0166cc;
  margin: 0.3em 0 0.2em 0;
}
@media screen and (min-width: 768px) {
  .newgikai__area h4 {
    font-size: 2rem;
  }
}
.newgikai__title {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  justify-content: space-between;
  align-items: center;
  gap: normal;
  border-width: 1px;
  border-style: solid;
  border-color: white;
  border-radius: 0;
  background-color: #0166cc;
  overflow: hidden;
  margin-top: 1em;
  line-height: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .newgikai__title {
    margin-top: 40px;
  }
}
.newgikai__title h2 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: white;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .newgikai__title h2 {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .newgikai__title h2 {
    font-size: 4rem;
  }
}
.newgikai__title h2 span {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .newgikai__title h2 span {
    font-size: 6rem;
  }
}
.newgikai__title dt {
  padding-left: 5%;
}
.newgikai__title dd {
  padding: 1em;
}
.newgikai__title p {
  color: white;
  line-height: 2;
}
.newgikai__area {
  display: block;
}
@media screen and (min-width: 768px) {
  .newgikai__area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
  }
}
.newgikai__text {
  flex-basis: 68%;
}
.newgikai__photo {
  flex-basis: 28%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.newgikai__photo figure {
  text-align: left;
}
.newgikai__tayori h3 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #990100;
  font-size: 1.6rem;
  font-weight: 600;
  color: #990100;
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .newgikai__tayori h3 {
    font-size: 2rem;
  }
}
.newgikai__tayori h4 {
  font-size: 1.6rem;
  font-weight: 600;
  width: 100%;
  color: #0166cc;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .newgikai__tayori h4 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .newgikai__tayori h4 {
    margin-top: 20px;
  }
}
.newgikai__colum {
  display: block;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(9, 140, 255);
  border-radius: 10px;
  background-color: transparent;
  overflow: hidden;
  padding: 2em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .newgikai__colum {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: normal;
  }
}
@media screen and (min-width: 768px) {
  .newgikai__colum {
    margin-top: 40px;
  }
}
.newgikai__colum dt {
  flex-basis: 20%;
}
.newgikai__colum dd {
  flex-basis: 80%;
}

div.teireititle__area,
div.houkokutitle__area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: normal;
  background-color: #efe3cd;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  div.teireititle__area,
div.houkokutitle__area {
    margin-top: 40px;
  }
}
div.teireititle__area img,
div.houkokutitle__area img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
div.teireititle__area > div,
div.houkokutitle__area > div {
  margin: 0 3rem;
  align-self: center;
}
div.teireititle__area > div h2,
div.houkokutitle__area > div h2 {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  div.teireititle__area > div h2,
div.houkokutitle__area > div h2 {
    font-size: 3rem;
  }
}
div.teireititle__area > div h3,
div.houkokutitle__area > div h3 {
  margin-top: 0.5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  div.teireititle__area > div h3,
div.houkokutitle__area > div h3 {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  div.teireititle__area > div h3,
div.houkokutitle__area > div h3 {
    font-size: 2rem;
  }
}
div.teireititle__text,
div.houkokutitle__text {
  padding: 1em;
}

.houkoku__wrap h3 {
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: white;
  border-radius: 0;
  background-color: #0166cc;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 0.5em 0 1em;
  color: white;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .houkoku__wrap h3 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .houkoku__wrap h3 {
    margin-top: 40px;
  }
}
.houkoku__wrap h4 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #990100;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 0.5em 0 1em;
  color: #990100;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .houkoku__wrap h4 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .houkoku__wrap h4 {
    margin-top: 20px;
  }
}
.houkoku__wrap dl {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .houkoku__wrap dl {
    margin-top: 20px;
  }
}

.teirei__wrap h3 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #990100;
  font-size: 1.6rem;
  font-weight: 600;
  color: #990100;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .teirei__wrap h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .teirei__wrap h3 {
    margin-top: 100px;
  }
}
.teirei__wrap h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003d79;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .teirei__wrap h4 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .teirei__wrap h4 {
    margin-top: 10px;
  }
}
.teirei__wrap dl {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .teirei__wrap dl {
    margin-top: 20px;
  }
}

.colum__wrap {
  display: block;
  border-width: 2px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 10px;
  background-color: transparent;
  overflow: hidden;
  padding: 1em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .colum__wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: normal;
  }
}
@media screen and (min-width: 768px) {
  .colum__wrap {
    margin-top: 100px;
  }
}
.colum__wrap h3 {
  margin: 1em 0;
}
.colum__wrap dt {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.topics__area h4 {
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: #990100;
  overflow: hidden;
  color: white;
  padding: 0.2em 1em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .topics__area h4 {
    font-size: 1.8rem;
  }
}
.topics__area dl {
  margin: 1em;
}
.topics__area dt {
  font-size: 1.6rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .topics__area dt {
    font-size: 2rem;
  }
}

.qa__area {
  display: block;
}
@media screen and (min-width: 768px) {
  .qa__area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: normal;
  }
}
.qa__area dl {
  clear: both;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .qa__area dl {
    margin-top: 20px;
  }
}
.qa__area dt {
  margin-left: 0;
  padding: 0.5em 2em 1.5em 3em;
}
.qa__area dt::before {
  margin: 0 0.5em 0 -2em;
  padding: 0.2em 0.4em;
  content: "Q";
  border-radius: 0.2em;
  background: #87ceeb;
}
.qa__area dd {
  margin-bottom: 1em;
  margin-left: 0;
  padding: 0.5em 1em 1.5em 3em;
}
.qa__area dd::before {
  margin: 0 0.5em 0 -2em;
  padding: 0.2em 0.4em;
  content: "A";
  border-radius: 0.2em;
  background: #ffd700;
}
.qa__area .iken::before {
  font-family: "Font Awesome 5 Free";
  margin: 0 0.5em 0 -2em;
  padding: 0.2em 0.4em;
  content: initial;
  content: "\f075";
  font-weight: 900;
  background: initial;
  color: #87ceeb;
}
.qa__area > div {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.qa__area h3,
.qa__area h4 {
  flex-basis: 100%;
}
.qa__area h5 {
  display: inline-block;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  overflow: inherit;
  padding: 0.2em 1em;
  margin-bottom: 0.5em;
}

/*過去の議会報告*/
.kako__wrap h2 {
  background-color: #5548ab;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  line-height: 1.5;
  padding: 0.5em 1em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .kako__wrap h2 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .kako__wrap h2 {
    margin-top: 100px;
  }
}
.kako__wrap li {
  margin: 1em;
  list-style-position: inside;
  list-style-type: circle;
}

/*独立したコーナー*/
.kinenkan__wrap {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .kinenkan__wrap {
    margin-top: 40px;
  }
}
.kinenkan__wrap h2 {
  border-width: 1px;
  border-style: solid;
  border-color: #22ade8;
  border-radius: 10px;
  background-color: #22ade8;
  overflow: hidden;
  color: white;
  padding: 0.2em 1em;
  font-size: 1.8rem;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (min-width: 768px) {
  .kinenkan__wrap h2 {
    font-size: 2.4rem;
  }
}
.kinenkan__wrap h3 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #990100;
  font-size: 1.6rem;
  font-weight: 600;
  color: #990100;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .kinenkan__wrap h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .kinenkan__wrap h3 {
    margin-top: 20px;
  }
}
.kinenkan__wrap dl {
  display: block;
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .kinenkan__wrap dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
  }
}
.kinenkan__area {
  display: block;
  padding: 1em;
}
@media screen and (min-width: 1024px) {
  .kinenkan__area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: normal;
  }
}
.kinenkan__area h3 {
  margin: 1em 0;
}
.kinenkan__kanren {
  border-width: 1px;
  border-style: solid;
  border-color: white;
  border-radius: 0;
  background-color: #eafcff;
  overflow: hidden;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
  padding: 1em;
}

.yosan__container {
  background-color: rgb(236, 236, 236);
  margin: 0 calc(50% - 50vw);
  padding: 2em 0;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .yosan__container {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .yosan__container {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .yosan__container {
    padding-right: 0;
    padding-left: 0;
  }
}
.yosan__titlearea {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
}
.yosan__contentsarea {
  display: block;
  max-width: 1200px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .yosan__contentsarea {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1%;
  }
}
.yosan__contentsarea div {
  flex-basis: 32.3333333333%;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  align-self: stretch;
  padding: 1.5em;
  margin: 1em 0;
}

/*讃岐里山コーナー*/
div.satoyama {
  background-image: url(../img/keijiban.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 3000px;
  margin-top: 50px;
}
div.satoyama:before {
  content: "";
  display: block;
  background-repeat: repeat-x;
  background-image: url(../img/satoyama_top.png);
  background-position: 50% 0;
  overflow: hidden;
  min-height: 40px;
}

h3.satoyama_name {
  color: #6f4b21;
  background-color: #fff9f9;
  font-size: 1.2em;
  margin-top: 2em;
  margin-right: 1em;
  margin-bottom: 1em;
  font-weight: 700;
  padding: 0.6em;
  border-radius: 10px;
}

div.satoyama_photo img {
  padding-bottom: 20px;
}

dl.yama_list dt {
  font-size: 1.2em;
  padding-top: 0.5em;
  color: #ffffff;
  font-weight: 600;
}

dl.yama_list dd {
  padding-left: 1em;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  border-bottom: 1px dotted #ffffff;
  color: #ffffff;
}

div.map_button a {
  color: #ffffff;
  font-size: 1.2em;
  background-color: #76553f;
  display: inline-block;
  border: 1px solid #ffffff;
  padding-left: 1em;
  padding-right: 1em;
  text-decoration: none;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}

.map_button a:hover {
  background-color: #9b765e;
}

/*動画*/
video {
  max-width: 100%; /* はみ出ないように */
}

/*過去の里山リスト*/
h3.satoyamaarchive_title {
  color: #fff9f9;
  font-size: 1.2em;
  margin-top: 2em;
  margin-right: 1em;
  margin-bottom: 1em;
  font-weight: 700;
  padding: 0.6em;
  border-radius: 10px;
  border: 2px solid #fff9f9;
}

ul.satoyama_archive {
  padding-bottom: 20px;
}
ul.satoyama_archive li {
  margin: 1em;
}
ul.satoyama_archive li a {
  margin-top: 1em;
  color: #ffffff;
  font-size: 1.2em;
  text-decoration: none;
}

.hinokilogo__wrap {
  border-width: 2px;
  border-style: solid;
  border-color: rgb(113, 113, 113);
  border-radius: 10px;
  background-color: transparent;
  overflow: hidden;
}
.hinokilogo__wrap h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

.bosaimemo__wrap {
  border-width: 2px;
  border-style: solid;
  border-color: rgb(113, 113, 113);
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  margin-top: 1em;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .bosaimemo__wrap {
    margin-top: 40px;
  }
}

.hinoki__wrap {
  background-color: #fef3ed;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .hinoki__wrap {
    margin-top: 40px;
  }
}

.graph_title {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding: 0.2rem;
  font-size: clamp(1rem, 1.8vw, 1.8rem);
  margin: 1rem;
  font-weight: 600;
}

.soba__wrap {
  border-width: 3px;
  border-style: solid;
  border-color: black;
  border-radius: 10px;
  background-color: transparent;
  overflow: hidden;
  padding: 1rem 2rem;
  max-width: 1000px;
}

.minakuchi__wrap {
  background-color: #f7f9fa;
  margin-top: 1em;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .minakuchi__wrap {
    margin-top: 40px;
  }
}
.minakuchi__photo {
  position: relative;
}
@media screen and (min-width: 768px) {
  .minakuchi__text {
    position: absolute;
    right: 2rem;
    top: 3rem;
    max-width: 280px;
  }
}

div.gikaichan_area {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
div.gikaichan_area p {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1em 0;
}
div.gikaichan_area h2 {
  color: white;
  font-size: 1.8rem;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  border-radius: 50px;
  background-color: #000000;
  overflow: hidden;
  margin-top: 120px;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  div.gikaichan_area h2 {
    font-size: 2.4rem;
  }
}
div.gikaichan_area h2 span {
  display: block;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  color: yellow;
  font-size: 1.4rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  div.gikaichan_area h2 span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  div.gikaichan_area h2 span {
    display: inline-block;
  }
}
div.gikaichan_area h3 {
  margin-top: 30px;
}
div.gikaichan_area dl.qa {
  display: flow-root;
}
div.gikaichan_area dl.qa > dt {
  padding: 1em 0 1em 0;
}
div.gikaichan_area dl.qa > dt::before {
  content: "ギカイちゃん";
  padding-right: 1em;
  font-weight: 600;
}
div.gikaichan_area dl.qa > dd::before {
  content: "ケンセイ先生";
  padding-right: 1em;
  font-weight: 600;
}
div.gikaichan_area dl.qa > dd div img {
  max-width: 400px;
  height: 100%;
  padding: 1em;
}
div.gikaichan_area dl.qa > dd table {
  margin-top: 1em;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  div.gikaichan_area dl.qa > dd table {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  div.gikaichan_area dl.qa > dd table {
    width: 700px;
  }
}
div.gikaichan_area dl.inyou {
  border-width: 1px;
  border-style: solid;
  border-color: #b59788;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
  padding: 1em;
  margin: 1em;
}

div.gikaichan_title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: normal;
  margin: 2em 0;
}
div.gikaichan_title img {
  width: 40%;
}
div.gikaichan_title h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0;
  width: 60%;
}
@media screen and (min-width: 768px) {
  div.gikaichan_title h3 {
    font-size: 3rem;
  }
}

.backnumber__container ul {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .backnumber__container ul {
    margin-top: 40px;
  }
}
.backnumber__container ul li {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #b59788;
  padding: 0.5em 1em;
}
.backnumber__container ul a {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .backnumber__container ul a {
    font-size: 1.8rem;
  }
}

/*-- pageフォルダの中の_index.scss --*/
#pagetop {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%23942531"><path d="M7 14h10l-5-6z"></path><path d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z"></path></svg>');
  opacity: 0.5;
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 70px;
  z-index: 300;
}

/**
 * Swiper 8.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper {
  width: 100%;
  margin: 60px 0;
}

ul.contact__wrapper {
  display: block;
  position: fixed;
  bottom: 0;
  height: 160px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  z-index: 101;
}
ul.contact__wrapper li {
  width: 160px;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  ul.contact__wrapper {
    display: block;
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 2;
  }
  ul.contact__wrapper li {
    width: 200px;
    padding: 5px;
  }
}

/*-- utilityフォルダの中の_index.scss --*/
/*# sourceMappingURL=style.css.map */