@charset "UTF-8";
/*----------------------------------------------------------
	reset
--------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

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


img {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}

ul,
dl {
  list-style-type: none;
}

input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button, input, select, textarea {
  margin: 0;
}

input, select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
}

/* iOSでのデフォルトスタイルをリセット */
input {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  box-sizing: border-box;
  /* cursor: pointer; */
}

input::-webkit-search-decoration {
  display: none;
}

input:focus {
  outline-offset: -2px;
}

textarea {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  box-sizing: border-box;
  font-size: smaller;
}

select {
  color: var(--text-color);
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*----------------------------------------------------------
	Base
--------------------------------------------------------- */
:root {
  --main-color: #1962AC;
  --text-color: #333333;
  --link-text: #1560AC;
  --orange: #F19939;
  --green: #009457;
  --gray: #C9C9C9;
  --filter-white: invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(99%) contrast(99%);/*#FFFFFF*/
  --filter-navy: invert(23%) sepia(73%) saturate(1223%) hue-rotate(188deg) brightness(95%) contrast(97%);/*#214C90*/
  --fliter-green: invert(37%) sepia(100%) saturate(832%) hue-rotate(121deg) brightness(86%) contrast(101%);/*#009457*/
}

body {
  font-size: 1rem;
  color: var(--text-color);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  line-height: 1.5;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (max-width: 850px) {
  * {
    -webkit-text-size-adjust: 100%;
    word-break: normal;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-break: normal;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

p {
  line-height: 1.5;
}

a {
  -webkit-tap-highlight-color: transparent;
  transition: 0.3s;
  color: var(--text-color);
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  text-decoration: underline;
  cursor: pointer;
}

input[type="text"], input[type="password"] {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 8px;
  margin-bottom: 10px;
}

input[type="text"]:focus, textarea:focus {
  outline: none;
  box-shadow: 0px 0px 4px 1px rgb(16, 54, 108);
  border-color: transparent;
}

.spDisp {
  display: none !important;
}

.pcDisp {
  display: block !important;
}

.sitewidth {
  max-width: 1232px;
  margin: auto;
  padding: 0 16px;
}

.innerwidth {
  max-width: 1232px;
  margin: auto;
  padding: 0 16px;
}

.section {
  width: 100%;
  padding: 80px 0;
}

@media screen and (max-width: 1024px) {
  .spDisp {
    display: block !important;
    line-height: 0;
  }

  .pcDisp {
    display: none !important;
  }

  br.sp {
    display: block;
  }

  br.pc {
    display: none;
  }

  .section {
    padding: 40px 0;
  }
}

@media screen and (max-width: 599px) {
  .sitewidth, .innerwidth {
    padding: 0 3%;
  }

  .spDisp-inline {
    display: inline!important;
  }
  .section, .section.pt-40 {
    padding: 20px 0!important;
  }
}

/* -------------------- margin -------------------- */
.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-00 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}
.ml-20 {
  margin-left: 20px;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.mb-n10 {
  margin-bottom: -10px!important;
}
.mr-50 {
  margin-right: 50px!important;
}
.mr-60 {
  margin-right: 60px!important;
}

/* -------------------- padding -------------------- */
.p-0 {
  padding: 0!important;
}
.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-00 {
  padding-bottom: 0 !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-40 {
  padding-left: 40px !important;
}
@media only screen and (max-width: 1050px) {
  .mt-0L {
    margin-top: 0 !important;
  }
  .mt-10L {
    margin-top: 10px !important;
  }
  .mb-0L {
    margin-bottom: 0 !important;
  }
  .mb-10L {
    margin-bottom: 10px !important;
  }
  .mb-n10L {
    margin-bottom: -10px!important;
  }
  .mt-20L {
    margin-top: 20px !important;
  }
  .mb-20L {
    margin-bottom: 20px !important;
  }
  .pl-0L {
    padding-left: 0!important;
  }
  .pb-40L {
    padding-bottom: 40px!important;
  }
  
}
@media only screen and (max-width: 768px) {
  .mt-10tb {
    margin-top: 10px !important;
  }

}
@media only screen and (max-width: 599px) {
  .mt-0sp {
    margin-top: 0 !important;
  }
  .mb-0sp {
    margin-bottom: 0 !important;
  }
  .mt-10sp {
    margin-top: 10px !important;
  }
  .mb-10sp {
    margin-bottom: 10px !important;
  }
  .mb-20sp {
    margin-bottom: 20px !important;
  }
  .mb-n10 {
    margin-bottom: 0!important;
  }
}

/* -------------------- adjust -------------------- */
.align-c {
  text-align: center !important;
}

.align-l {
  text-align: left !important;
}

.align-r {
  text-align: right !important;
}

.fw-b {
  font-weight: bold;
}

.f-sizeS {
  font-size: 14px;
}

.f-sizeM {
  font-size: 16px;
}

.f-sizeL {
  font-size: 24px;
}

.f-red {
  color: #E73836;
}

@media only screen and (max-width: 1024px) {
  .f-sizeL {
    font-size: 22px;
  } 
  .align-c_sp {
    text-align: center !important;
  }
}

/*================= 見出しスタイル =================*/
.h-style {
  position: relative;
  border-bottom: 5px solid;
  color: var(--green);
  font-weight: bold;
  font-size: 46px;
  display: inline-block;
  margin-bottom: 60px;
  padding: 10px 20px;
}

.h-style:before,
.h-style:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}

.h-style:before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: var(--green);
  margin-left: -16px;
}

.h-style:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: #FFF;
  margin-left: -10px;
}

.h-style.ver2:after {
  border-top-color: #B9E9F5;
}

.h-style.orange {
  color: var(--orange);
}

.h-style.orange:before {
  border-top-color: var(--orange);
}

.h-style.blue {
  color: var(--main-color);
}

.h-style.blue::before {
  border-top-color: var(--main-color);
}
.h-style.blue::after {
  border-top-color: #91d1e5;;
}

.h-style.blue.back-g::after {
  border-top-color: #eceff2;
}

.h-icon {
  content: "";
  display: inline-block;
  background-image: url(../img/common/icon_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 104px;
  height: 127px;
  position: absolute;
  left: -40%;
  bottom: -10%;
}

.h-icon.sea {
  background-image: url(../img/common/icon_04.png);
  background-size: contain;
  width: 120px;
  height: 100px;
  left: -80%;
  bottom: -7%;
}

.h-icon.sea.situmon {
  left: -45%;
  bottom: -10%;
}

.h-icon.ver2 {
  background-image: url(../img/common/icon_01.png);
  background-size: contain;
  width: 104px;
  height: 112px;
  left: -80%;
}

.h-icon.left {
  left: -70%;
}

.h-icon.sodan {
  background-image: url(../img/common/icon_03.png);
  background-size: contain;
  width: 100px;
  height: 119px;
  left: -40%;
  bottom: -20%;
}


.h-style2 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}

.h-style3 {
  color: #E73836;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.h-style3 .front {
  color: var(--text-color);
  font-size: 40px;
  font-weight: normal;
  display: block;
}

.h-style3 .back {
  color: var(--main-color);
  font-size: 34px;
  font-weight: normal;
  display: block;
}

.h-style3::after {
  content: "";
  display: inline-block;
  width: 223px;
  height: 240px;
  background-image: url(../img/common/icon_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -55%;
  right: -20px;
}

.h-style4 {
  font-size: 28px;
  font-weight: bold;
  padding: 4px 20px;
  margin-bottom: 40px;
  border-left: 4px solid var(--main-color);
}

.h-style4 .h-data {
  display: flex;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}

.h-style4 .h-data .cat {/*桑員*/
  width: 190px;
  color: #FFF;
  text-align: center;
  background-color: #B32E8B;
  margin-right: 20px;
  padding: 2px;
}

.h-style4 .h-data .cat.sanshi {/*三泗*/
  background-color: #064895;
}

.h-style4 .h-data .cat.suzuka {/*鈴鹿*/
  background-color: #548145;
}

.h-style4 .h-data .cat.kinan {/*紀南*/
  background-color: #E95D58;
}

.h-style4 .h-data .cat.kameyama {/*亀山*/
  background-color: #C48A03;
}

.h-style4 .h-data .cat.tsu {/*津*/
  background-color: #DE5AC0;
}

.h-style4 .h-data .cat.iga {/*伊賀*/
  background-color: #85913B;
}

.h-style4 .h-data .cat.matsuzaka {/*松阪多気*/
  background-color: #8A7347;
}

.h-style4 .h-data .cat.iseshima {/*伊勢志摩*/
  background-color: #2F8476;
}

.h-style4 .h-data .cat.kihoku {/*紀北*/
  background-color: #824880;
}

.h-style5 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.h-style6 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.h-style7 {
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.h-style-maru {
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}

.h-style-maru::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}

.h-style8 {
  color: #FFF;
  padding: 10px 20px;
  background-color: var(--main-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.h-style-font-blue {
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.h-style-left {
  font-weight: bold;
  font-size: 1.1rem;
  padding-left: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--main-color);
}

.slash-box {
  background: linear-gradient(-45deg, #1962AC 25%, #FFFFFF 25%, #FFFFFF 50%, #1962AC 50%, #1962AC 75%, #FFFFFF 75%, #FFFFFF);
  background-size: 4px 4px;
  margin: 30px 0 20px;
  padding: 6px 6px;
}

.slash-box .slash-title{
  background-color: #FFFFFF;
  padding: 14px 10px 10px;
  word-break: break-all;
  font-size: 1.5em;
  font-weight:bold;
}


@media only screen and (max-width: 1024px) {
  .h-style {
    font-size: 28px;
    border-bottom: 4px solid;
    margin-left: 40px;
  }

  .h-style.blue::after {
    border-top-color: #c9e8f1;
  }

  .h-icon {
    width: 60px;
    height: 74px;
    left: -24%;
  }

  .h-icon.sea {
    width: 90px;
    height: 75px;
    left: -65%;
    bottom: -15%;
  }

  .h-icon.ver2 {
    width: 75px;
    height: 80px;
    left: -55%;
  }

  .h-icon.left {
    left: -38%;
  }

  .h-icon.sodan {
    width: 65px;
    height: 77px;
    left: -28%;
  }

  .h-style.orange > br {
    display: none;
  }
  .h-style2 {
    font-size: 32px;
  }

  .h-style3 {
    font-size: 36px;
  }

  .h-style3 .front, .h-style3 .back {
    display: inline-block;
  }

  .h-style3 .front {
    font-size: 26px;
  }

  .h-style3 .back {
    font-size: 26px;
  }

  .h-style3::after {
    width: 100px;
    height: 110px;
    top: initial;
    right: -20px;
    bottom: 50%;
  }

  .h-style4 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .h-style4 .h-data {
    margin-bottom: 10px;
  }

  .h-style5 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .slash-box .slash-title {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 599px) {
  .h-style3::after {
    right: -8%;
    bottom: 90%;
  }

  .h-icon.sea.situmon {
    width: 75px;
    height: 64px;
    left: -32%;
  }
  .h-style8 {
    padding: 10px 15px;
  }
}

/*================= 背景色 =================*/
.bg-green {
  background-color: #F0F4F2;
}

.bg-blue {
  background-image: linear-gradient(154deg, rgba(185, 233, 245, 1) 48%, rgba(215, 242, 249, 1) 48%, rgba(255, 255, 255, 1) 100%);
}

.bg-rock {
  background-image: url(../img/common/bg_rock_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6%;
}

.bg-gray {
  background-color: #ECEFF2;
}

@media only screen and (max-width: 1024px) {
  .bg-rock {
    background-image: url(../img/common/bg_rock_sp.png);
    background-position: bottom;
    padding-bottom: 26%!important;
  }
}

@media only screen and (max-width: 599px) {
  .bg-blue {
    background-image: linear-gradient(130deg, rgba(185, 233, 245, 1) 48%, rgba(215, 242, 249, 1) 48%, rgba(255, 255, 255, 1) 100%);
  }
}

/*================= ボタンスタイル =================*/
.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  border: 3px solid transparent;
  border-radius: 50vh;
  padding: 15px 40px 15px 20px;
  position: relative;
  min-width: 270px;
}

.btn:hover {
  text-decoration: none;
}

/*みどり枠 →*/
.btn.btn-waku {
  color: var(--green);
  border-color: var(--green);
  background-color: #fff;
}

.btn.btn-waku::after {
  content: "";
  width: 1.4em;
  height: 1em;
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translatey(-50%);
  background-image: url(../img/svg/ico_arrow.svg);
  background-size: contain;
  filter: var(--fliter-green)
}

.btn.btn-waku:hover {
  color: var(--green);
  background-color: #caf0e1;
  opacity: 1;
}

/*オレンジべた塗り　→矢印*/
.btn.btn-beta-arrow {
  color: #fff;
  border-color: var(--orange);
  background-color: var(--orange);
}

.btn.btn-beta-arrow::after {
  content: "";
  width: 1.4em;
  height: 1em;
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translatey(-50%);
  background-image: url(../img/svg/ico_arrow.svg);
  background-size: contain;
  filter: var(--filter-white)
}

/*グレーべた塗り　←矢印*/
.btn.btn-beta-arrow-l {
  color: var(--text-color);
  border-color: var(--gray);
  background-color: var(--gray);
  padding: 15px 20px 15px 40px;
}

.btn.btn-beta-arrow-l::after {
  content: "";
  width: 1.4em;
  height: 1em;
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  background-image: url(../img/svg/ico_arrow.svg);
  background-size: contain;
  filter: invert(0%) sepia(83%) saturate(7500%) hue-rotate(210deg) brightness(115%) contrast(115%);
}


.btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.btn.btn-arrow {
  color: var(--link-text);
  border: 2px solid var(--link-text);
  border-radius: 0;
  min-width: auto;
  width: calc(100% / 5 - 10px);
  margin-bottom: 10px;
  padding: 15px 20px;
}

.btn.btn-arrow::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(../img/svg/ico_arrow2.svg);
  background-size: contain;
  filter: var(--filter-navy);
  position: absolute;
  left: 20px;
  top: calc(50% - 10px);
}

.btn.btn-arrow:hover {
  color: var(--link-text);
  background-color: #D8EBFF;
  opacity: 1;
}

.btn.btn-arrowL {
  color: #FFF;
  border: 2px solid var(--link-text);
  background-color: var(--link-text);
  border-radius: 6px;
  min-width: auto;
  width: calc(100% / 2 - 10px);
  margin-bottom: 10px;
  padding: 15px 36px 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn.btn-arrowL::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(../img/svg/ico_arrow2.svg);
  background-size: contain;
  filter: var(--filter-white);
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
}
.btn.btn-arrowL.pdf::before {
  width: 24px;
  height: 26px;
  background-image: url(../img/svg/ico_pdf.svg);
  background-repeat: no-repeat;
  right: 19px;
  top: calc(50% - 13);
}

.btn.btn-arrowL > span {
  font-size: .8rem;
}

.btn.btn-arrowL-line {
  color: var(--link-text);
  border: 2px solid var(--link-text);
  border-radius: 6px;
  min-width: auto;
  width: calc(100% / 2 - 10px);
  margin-bottom: 10px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn.btn-arrowL-line::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/svg/ico_open.svg);
  background-size: contain;
  filter: var(--filter-navy);
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
}

.btn.btn-arrowL-line:hover {
  color: var(--link-text);
  background-color: #D8EBFF;
  opacity: 1;
}

.btn.btn-arrowL-line > span {
  font-size: .8rem;
}


.btn-area {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.btn-area .btn {
  margin: 0 10px;
}


@media only screen and (max-width: 1024px) {
  .btn.btn-arrow {
    width: 48%;
  }
}

@media only screen and (max-width: 599px) {
  .btn.btn-arrowL-line, .btn.btn-arrowL {
    width: 100%;
  }
  .btn-area {
    display: block;
    text-align: center;
    padding: 20px 0;
  }
  .btn-area .btn {
    margin: 0 0 10px;
  }
  
}

/*================= ボタンスタイル end =================*/

.read-more {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 40px 10px 0;
  position: relative;
  color: var(--link-text);
}

.read-more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4em;
  height: 1em;
  background-image: url(../img/svg/ico_arrow.svg);
  filter: invert(27%) sepia(75%) saturate(1343%) hue-rotate(187deg) brightness(94%) contrast(89%);;
}

.read-more.grn::after {
  filter: invert(30%) sepia(37%) saturate(5042%) hue-rotate(144deg)
    brightness(94%) contrast(101%);
}

.all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media only screen and (max-width: 599px) {
  .read-more {
    font-size: 16px;
    padding: 10px 30px 10px 0;
  }
}

/*================= header =================*/
.header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--gray);
}

.header_inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 10px 15px;
  z-index: 100;
}

.logo a {
  display: block;
}

.logo h1 img {
  max-width: 268px;
  width: 100%;
}

@media (max-width: 1024px) {
  a[href*="tel:"] {
  cursor: default;
  text-decoration: none;
  }
}

.nav-pc {
  display: block;
}

.nav-sp {
  display: none;
}

.nav-pc-ineer {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}

.header__menu .r-line > a {
  position: relative;
}

.header__menu .r-line > a::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #333;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  transform: scaleX(0.5);
}

.header__menu .r-line > a.top::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #333;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  transform: scaleX(0.5);
}

.nav_list {
  display: flex;
}

.nav_list li a {
  color: #323232;
  padding: 0 10px;
  position: relative;
  display: block;
  text-align: center;
}

.nav_list li a img {
  width: 100%;
  height: auto;
  max-width: 35px;
  transition: .3s;
}

.nav_list li a img:hover {
  text-decoration: none;
  opacity: .7;
}

/* 検索 */
#searchArea {
  width: 240px;
  position: relative;
  margin-left: 16px;
}
 
#searchArea .mado {
  padding: 10px 16px;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  margin-bottom: 0;
}

#searchArea .glass {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  width: 40px;
  height: 39px;
  color: #FFF;
  background-color: var(--main-color);
  background-image: url(../img/svg/ico_glass.svg);
  background-repeat: no-repeat;
  background-size: 24px 35px;
  background-position: center;
  border-radius: 0 4px 4px 0;
}

.contact img {
  max-height: 100px;
  margin-left: 24px;
}

@media only screen and (max-width: 1024px) {
  #searchArea {
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }

  #searchArea .glass {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 34px;
    background-color: #FFF;
    background-image: url(../img/svg/ico_glass_sp.svg);
  }


}

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

.main-nav ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.main-nav li {
  width: calc(100% / 6);
}

.main-nav li a {
  color: var(--text-color);
  font-weight: bold;
  display: block;
  text-decoration: none;
  padding: 15px 0;
}

.main-nav li a.current::after {
  background-color: #beddea;
  opacity: 1;
}

.main-nav li a:hover,
.main-nav li a.current {
  background-color: #e1f0f7;
  opacity: 1;
}

li.mega__menu > a {
  position: relative;
}

ul.mega__menu-second {
  visibility: hidden;
  opacity: 0;
}

li.mega__menu ul.mega__menu-second {
  position: absolute;
  top: 160px;
  left: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: #fff;
  /* メガメニューの背景色 */
  padding: 15px 0 40px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  box-shadow: 0px 2px 4px 0px rgba(155, 155, 155, 0.6);
  z-index: 100;
  text-align: left;
}

li.mega__menu:hover ul.mega__menu-second {
  top: 155px;
  visibility: visible;
  opacity: 1;
}

ul.mega__menu-second .maga-list-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

ul.mega__menu-second .maga-list-box a {
  position: relative;
  padding: 15px 6px 15px 30px;
}

ul.mega__menu-second .maga-list-box a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/svg/ico_arrow3.svg);
  filter: invert(23%) sepia(73%) saturate(1223%) hue-rotate(188deg) brightness(95%) contrast(97%);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  position: absolute;
  left: 15px;
  top: calc(50% - 8px);
}

ul.mega__menu-second .mega-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.mega__menu-second .mega-list::after {
  content: "";
  display: block;
  width: 32%;
}

ul.mega__menu-second .mega-list li {
  width: 32%;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  border-bottom: 1px solid #dedede;
}



@media only screen and (max-width: 1024px) {
  .header {
    height: 62px;
    box-shadow: 0px 1px 4px 0px rgba(155, 155, 155, 0.6);
  }

  .nav-pc {
    display: none;
  }

  .nav-sp {
    display: block;
  }

  .logo {
    top: 0;
    transform: initial;
  }

  .logo a img {
    max-width: 140px;
  }

  .nav_list {
    text-align: center;
    margin-right: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
  }

  .nav_list li {
    margin: 10px 0;
    padding: 0;
    max-width: 150px;
    width: 100%;
    text-align: center;
    border-right: 1px solid #e5ecef;
  }

  .nav_list li:last-child {
    border-right: 0;
  }

  .nav_list li a {
    padding: 0;
    font-weight: 400;
  }

  .nav_list li a.current::after {
    bottom: -10px;
  }

  .nav_list li a::after,
  .nav_list li a.current::after {
    bottom: -10px;
  }

  .nav_item {
    text-align: center;
    padding: 0 14px;
  }

  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }

  .nav_item a:hover {
    background-color: #eee;
  }

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    top: 0;
  }

  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }

  /* Nav items */
  .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-top: 60px;
    clear: both;
    background: var(--main-color);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    z-index: 100;
  }

  /* Hamburger menu button */
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  /* Hamburger menbu text */
  .menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    opacity: 0;
    transition: 0.5s;
    padding: 15px;
    display: block;
  }

  .menu .menu-in {
    border-top: 1px solid #fff;
    opacity: 0;
    transition: 0.5s;
  }

  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }

  .menu .menu-in.arrow,
  .menu-acco,
  #links01 li {
    position: relative;
  }

  .menu .menu-in.arrow a::after,
  #links01 li a::after {
    content: "";
    width: 22px;
    height: 15px;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/svg/ico_arrow.svg);
    background-size: contain;
    filter: invert(94%) sepia(6%) saturate(25%) hue-rotate(197deg)
      brightness(105%) contrast(105%);
  }

  .menu-acco::after {
    content: "";
    width: 1.4em;
    height: 1.4em;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/svg/ico_toggle_p.svg);
    filter: invert(94%) sepia(6%) saturate(25%) hue-rotate(197deg)
      brightness(105%) contrast(105%);
  }

  .menu-btn.show:checked + .menu-acco::after {
    background-image: url(../img/svg/ico_toggle_m.svg);
  }

  .menu-btn {
    display: none;
  }

  .menu-icon {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .navicon {
    background-color: #404040;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #404040;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .navicon:before {
    top: 9px;
  }

  .navicon:after {
    bottom: 9px;
  }

  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }

  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }

  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  /* Hamburger Menu Animation End */
  .menu-acco {
    display: block;
    padding: 15px;
    color: #fff;
    cursor: pointer;
  }

  ul#links01, ul#links02 {
    margin: 0;
    padding: 0;
    background: #3676b7;
    list-style: none;
  }

  #links01 li, ul#links02 li{
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-top: 1px solid #fff;
    opacity: 0;
    margin-top: -1px;
  }

  #menu_bar01:checked ~ #links01 li, #menu_bar02:checked ~ #links02 li {
    height: 55px;
    opacity: 1;
  }

  #links01 li a, #links02 li a {
    padding: 15px 40px 15px 40px;
  }
}

@media only screen and (max-width: 599px) {
  .logo {
    padding: 10px 0px;
  }
}

/*----------------- slider -----------------*/
/* KV */
.slider-img img {
  width: 100%;
  max-width: 700px;
  margin: 0 15px;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  cursor: pointer;
}

.prev_icon {
  left: 30px;
}

.next_icon {
  right: 30px;
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "â€¢";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.slick-dots {
  bottom: -36px;
}

.slick-dots li {
  margin: 0 10px;
  width: 20px;
  height: 20px;
}

.slick-dots li button:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray);
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background: var(--main-color);
}

@media only screen and (max-width: 1024px) {
  .slider-img img {
    max-width: 400px;
  }
}

@media only screen and (max-width: 599px) {
  .slider-img img {
    max-width: 280px;
  }

}

/* footer */
.slider-box img {
  width: 100%;
  max-width: 226px;
  margin: 0 10px;
}

.prev_icon2 {
  position: absolute;
  top: 35%;
  left: 0;
  width: 31px;
  z-index: 1;
}

.next_icon2 {
  position: absolute;
  top: 35%;
  right: 0;
  width: 31px;
  z-index: 1;
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slide-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
}

.slide-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 30px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
  color: var(--gray);
  border: 0;
  outline: none;
  background: transparent;
}

.slide-dots li button:hover,
.slide-dots li button:focus {
  outline: none;
}

.slide-dots li button:hover:before,
.slide-dots li button:focus:before {
  opacity: 1;
}

.slide-dots li button:before {
  font-size: 60px;
  line-height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  content: "•";
  text-align: center;
  color: var(--gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slide-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--main-color);
}

.slider-card-box {
  margin: 0 10px;
}

.slider-card-box a:hover {
  text-decoration: none;
}

.slider-card-box .card-img img {
  width: 100%;
  height: auto;
  max-width: 434px;
  max-height: 250px;
  min-height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

.slider-card-box .card-text {
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.slider-card-box .card-date {
  color: var(--green);
}

@media only screen and (max-width: 1024px) {
  .slider-card-box .card-img img {
    max-height: 200px;
    min-height: 200px;  
  }
}
/*----------------- flex -----------------*/
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-basis-65 {
  flex-basis: 65%;
}

.flex-basis-35 {
  flex-basis: 35%;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}

.flex-inner {
  width: 603px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.flex-ineer2 {
  width: calc(100% - 630px);
  display: flex;
}

.flex-ineer2 .box {
  border: 6px solid var(--text-color);
  border-radius: 17px;
  padding: 20px;
  background-color: #FFF;
}

@media only screen and (max-width: 1024px) {
  .flex-container {
    flex-direction: column-reverse;
  }

  .flex-inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .flex-ineer2 {
    width: 100%;
    margin-bottom: 20px;
  }

}

.tikyo-wrap {
  display: flex;
  justify-content: space-between;
}

.tikyo-col1 {
  display: flex;
  flex-direction: column;
  width: 300px;
  position: relative;
}

.tikyo-col1::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/bg_mie.png);
  background-size: contain;
  width: 397px;
  height: 700px;
  position: absolute;
  left: -130px;
  z-index: -1;
}

.tikyo-col1::after {
  content: "";
  display: inline-block;
  background-image: url(../img/common/icon_03.png);
  background-size: contain;
  width: 250px;
  height: 300px;
  position: absolute;
  bottom: 20px;
  right: 0;
}

.tikyo-col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: calc(100% - 340px);
}

.top-tikyo {
  display: none;
}

.card-box {
  width: calc(100% / 2 - 20px);
  margin-bottom: 20px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .2);
}

.card-box a {
  display: block;
  background-color: #FFF;
}

.card-box a:hover {
  text-decoration: none;
}

.card-box .card-img img {
  width: 100%;
  height: auto;
  max-height: 250px;
  min-height: 250px;
  object-fit: contain;
}

.card-box .card-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px;
}

.card-box .card-text {
  margin: 0 20px 20px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-box .card-cat {/*桑員*/
  color: #FFF;
  width: 120px;
  padding: 2px 10px;
  text-align: center;
  background-color: #B32E8B;
}

.card-box .card-cat.sanshi {/*三泗*/
  background-color: #064895;
}

.card-box .card-cat.suzuka {/*鈴鹿*/
  background-color: #548145;
}

.card-box .card-cat.kinan {/*紀南*/
  background-color: #E95D58;
}

.card-box .card-cat.kameyama {/*亀山*/
  background-color: #C48A03;
}

.card-box .card-cat.tsu {/*津*/
  background-color: #DE5AC0;
}

.card-box .card-cat.iga {/*伊賀*/
  background-color: #85913B;
}

.card-box .card-cat.matsuzaka {/*松阪多気*/
  background-color: #8A7347;
}

.card-box .card-cat.iseshima {/*伊勢志摩*/
  background-color: #2F8476;
}

.card-box .card-cat.kihoku {/*紀北*/
  background-color: #824880;
}


.news-box {
  width: 80%;
  margin: 0 auto;
  padding: 50px 40px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--main-color);
  border-radius: 5px;
}

.flexbox {
  display: flex;
  gap: 20px;
}

.col2 {
  flex-basis: calc(100% / 2);
}

.post-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}

.post-wrap::after, .post-wrap::before {
  content: "";
  display: block;
  width: 23%;
}

.post-wrap::before {
  order: 1;
}

.post-wrap .post {
  width: 23%;
  margin-bottom: 40px;
}

.post-wrap .post a:hover {
  text-decoration: none;
}

.post-wrap .post .post-img img {
  width: 100%;
  height: auto;
  max-height: 154px;
  min-height: 154px;
  object-fit: contain;
}

.post-wrap .post-data {
  display: flex;
  justify-content: space-between;
}

.post-wrap .post-data .day {
  width: calc(100% - 100px);
  height: 28px;
  background-color: var(--gray);
  padding: 2px 10px;
}

.post-wrap .post-data .cat {/*桑員*/
  width: 100px;
  color: #FFF;
  text-align: center;
  background-color: #B32E8B;
  padding: 2px 0;
}

.post-wrap .post-data .cat.sanshi {/*三泗*/
  background-color: #064895;
}

.post-wrap .post-data .cat.suzuka {/*鈴鹿*/
  background-color: #548145;
}

.post-wrap .post-data .cat.kinan {/*紀南*/
  background-color: #E95D58;
}

.post-wrap .post-data .cat.kameyama {/*亀山*/
  background-color: #C48A03;
}

.post-wrap .post-data .cat.tsu {/*津*/
  background-color: #DE5AC0;
}

.post-wrap .post-data .cat.iga {/*伊賀*/
  background-color: #85913B;
}

.post-wrap .post-data .cat.matsuzaka {/*松阪多気*/
  background-color: #8A7347; 
}

.post-wrap .post-data .cat.iseshima {/*伊勢志摩*/
  background-color: #2F8476;
}

.post-wrap .post-data .cat.kihoku {/*紀北*/
  background-color: #824880;
}

.post-wrap .post-txt {
  padding: 6px;
}

.post-wrap .post-txt .title {
  width: 100%;
  max-width: 264px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--link-text);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.post-wrap .post-txt .txt {
  width: 100%;
  max-width: 264px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* 活動報告 */
.post.katsudo .card-img img {
  width: 100%;
  height: auto;
  max-height: 154px;
  min-height: 154px;
  object-fit: contain;
}
.post.katsudo .card-text {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.post.katsudo .card-date {
  color: var(--green);
}

@media only screen and (max-width: 1024px) {
  .post-wrap .post {
    width: 48%;
  }

  .post-wrap .post .post-img img, .post.katsudo .card-img img {
    max-height: 200px;
    min-height: 200px;
  }
  .post-wrap .post-txt .title, .post-wrap .post-txt .txt {
    max-width: 100%;
  }

  .tikyo-wrap {
    flex-direction: column;
    align-items: center;
  }

  .tikyo-col1 {
    display: inline-block;
    width: auto;
  }

  .tikyo-col1::after {
    background-repeat: no-repeat;
    width: 67px;
    height: 80px;
    bottom: 60px;
    right: initial;
    left: -24px;
  }

  .tikyo-col1::before {
    display: none;
  }

  .tikyo-col2 {
    width: 100%;
  }

  .top-tikyo {
    display: inline-block;
  }

  .news-box {
    width: 90%;
    padding: 20px 30px;
  }

  .flexbox {
    flex-wrap: wrap;
  }

  .col2 {
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .post-wrap .post {
    width: 100%;
  }

  .card-box {
    width: 100%;
  }

  .news-box {
    width: 100%;
    padding: 20px 8px;
  }
}

/*----------------- list -----------------*/
.list-data li {
  margin-bottom: 20px;
}

.list-data li a {
  display: block;
  position: relative;
  color: var(--link-text);
}

.list-data li a:hover {
  text-decoration: none;
  background-color: #e1f0f7;
  opacity: .8;
}

.list-data .list-inner {
  display: flex;
}

.list-data .list-inner img {
  margin-right: 15px;
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: 141px;
  object-fit: contain;
}

.list-data dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--gray);
  padding: 0 30px 0 40px;
  position: relative;
}

.list-data dl dt {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}

.list-data.slim {
  margin-bottom: 60px;
}

.list-data.slim a {
  color: var(--text-color);
  font-size: 1rem;
}

.list-data li dl::after {
  content: "";
  width: 16px;
  height: 29px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.list-data.slim li {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 0;
}

.list-data.slim li:last-child {
  border-bottom: none;
}

.list-data.slim dl {
  padding: 12px 10px 12px 60px;
  position: relative;
  border-bottom: none;
}

.list-data li dl.arrow1::after {
  background-image: url(../img/svg/ico_arrow3.svg);
  filter: invert(23%) sepia(73%) saturate(1223%) hue-rotate(188deg) brightness(95%) contrast(97%);
  background-size: contain;
}

.list-data a.pdf::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_pdf.svg);
  filter: invert(25%) sepia(39%) saturate(6958%) hue-rotate(344deg) brightness(77%) contrast(93%);
  position: absolute;
  left: 10px;
  top: calc(50% - 15px);
}

.list-data .day {
  width: 110px;
  margin-left: auto;
}

.list-data .cate {
  color: #fff;
  max-width: 100px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-right: 15px;
  background-color: var(--green);
}

.list-data .cate.kabe {
  background-color: #4D4398;
}

.list-data.slim dt {
  width: 40em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-box .list-data dl {
  flex-wrap: nowrap;
  align-items: initial;
  flex-direction: column;
  justify-content: center;
}

.news-box .list-data .day {
  margin-left: initial;
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 14px;
}

.bnr-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.bnr-container li {
  width: 180px;
}

.bnr-container li a {
  display: inline-block;
  height: 100%;
}
.bnr-container li a img {
  width: 100%;
  min-width: 180px;
}

.new-list {
  display: flex;
  margin-bottom: 40px;
}

.new-list .new-tit {
  color: #FFF;
  background-color: #4784BF;
  width: 200px;
  font-size: 20px;
  font-weight: bold;
  padding: 30px 0;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.new-list ul {
  width: calc(100% - 220px);
}

.new-list ul li {
  border-top: 1px solid #707070;
}

.new-list ul li:last-child {
  border-bottom: 1px solid #707070;
}

.new-list ul li a {
  color: var(--link-text);
  display: block;
  width: 100%;
}

.new-list ul li a .new-in {
  width: 100%;
  padding: 10px;
  line-height: 1.7;
}

.new-list ul li a span.day {
  margin-right: 20px;
  color: var(--text-color);
}

.new-list ul li a span.tikyo {/*桑員*/
  color: #FFF;
  margin-left: 20px;
  padding: 2px 6px;
  background-color: #B32E8B;
}

.new-list ul li a span.tikyo.sanshi {/*三泗*/
  background-color: #064895;
}

.new-list ul li a span.tikyo.suzuka {/*鈴鹿*/
  background-color: #548145;
}

.new-list ul li a span.tikyo.kinan {/*紀南*/
  background-color: #E95D58;
}

.new-list ul li a span.tikyo.kameyama {/*亀山*/
  background-color: #C48A03;
}

.new-list ul li a span.tikyo.tsu {/*津*/
  background-color: #DE5AC0;
}

.new-list ul li a span.tikyo.iga {/*伊賀*/
  background-color: #85913B;
}

.new-list ul li a span.tikyo.matsuzaka {/*松阪多気*/
  background-color: #8A7347;
}

.new-list ul li a span.tikyo.iseshima {/*伊勢志摩*/
  background-color: #2F8476; 
}

.new-list ul li a span.tikyo.kihoku {/*紀北*/
  background-color: #824880;
}


.new-list ul li a:hover {
  text-decoration: none;
  background-color: #e1f0f7;
  opacity: .8;
}

.activity-list {
  margin-bottom: 80px;
}

.activity-list li {
  border-bottom: 1px solid #707070;
}

.activity-list li a {
  display: block;
  padding: 15px 0;
  position: relative;
}

.activity-list li a:hover {
  text-decoration: none;
  background-color: #e1f0f7;
  opacity: .8;
}

.activity-list .activity-inner {
  display: flex;
  align-items: center;
}

.activity-list .activity-inner img {
  margin-right: 20px;
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 170px;
  object-fit: contain;
}

.activity-list dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.activity-list dl .day {
  font-size: 14px;
  margin-bottom: 10px;
}

.activity-list dl .title {
  width: 100%;
  max-width: 880px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;  
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  word-break: break-word;
}

.activity-list dl dt {
  width: 100%;
  max-width: 880px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;  
  word-break: break-all;
}

@media only screen and (max-width: 1024px) {
  .list-data .day,
  .title-data .day {
    width: 90px;
    font-size: 13px;
  }

  .list-data .cate {
    font-size: 13px;
    max-width: 150px;
  }

  .title-data .cate {
    font-size: 13px;
  }

  .list-data dl {
    padding: 0 20px 0 25px;
  }

  .list-data dl dt {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }

  .list-data.simple dl dt {
    margin-top: 0;
  }

  .list-data li a {
    padding: 15px 4px 15px 4px;
  }

  .list-data li a::after {
    right: 15px;
  }

  .list-data.slim dl {
    padding: 0 30px 0 40px;
  }

  .new-list .new-tit {
    width: 120px;
  }

  .new-list ul {
    width: calc(100% - 120px);
  }

  .list-data .list-inner {
    align-items: center;
  }
  
  .list-data .list-inner img {
    max-width: 100px;
    max-height: 80px;
    height: 100%;
  }
  .activity-list {
    margin-bottom: 40px;
  }
  .activity-list dl .title {
    -webkit-line-clamp: 2;  

  }
  .activity-list .activity-inner img {
    max-width: 220px;
    max-height: 120px;
  }
  
}

@media only screen and (max-width: 599px) {
  .list-data li a {
    padding: 15px 4px 15px 4px;
  }

  .list-data.kaigi li a {
    padding: 15px 30px 15px 4px;
  }

  .list-data li a::after {
    right: 6px;
  }

  .list-data dl {
    padding: 0 10px 0 20px;
  }

  .list-data li dl.arrow1::after {
    width: 11px;
    height: 20px;
  }

  .list-data .day {
    margin-right: 0;
  }
  .list-data .cate {
    margin-right: 0;
  }

  .list-data.slim {
    margin-bottom: 20px;
  }

  .list-data.slim .day {
    margin-left: initial
  }

  .new-list {
    flex-direction: column;
  }

  .new-list .new-tit {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 20px;
  }

  .new-list ul {
    width: 100%;
  }
  
  .new-list ul li a .new-in {
    -webkit-line-clamp: 2;  
  }

  .bnr-container li {
    width: 45%;
    text-align: center;
  }

  .bnr-container li a img {
    min-width: auto;
  }
  .activity-list .activity-inner img {
    max-width: 150px;
    max-height: 100px;
  }

}


/* パンくず */
.pan {
  padding: 10px 0;
}

.pan ul {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pan li {
  display: inline;
  padding-left: 10px;
  font-size: 14px;
}

.pan li::before {
  content: "＞";
  color: #4d4d4d;
  padding-right: 10px;
}

.pan li:first-child {
  padding-left: 0;
}

.pan li:first-child::before {
  display: none;
}

.pan li.pan-top a {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.pan li.pan-top a img {
  width: 26px;
  vertical-align: bottom;
}

.pan li a {
  color: var(--main-color);
}

@media only screen and (max-width: 599px) {
  .pan {
    font-size: 13px;
  }

  .pan li {
    padding-left: 3px;
  }

  .pan li::before {
    padding-right: 5px;
  }

  .pan li a {
    font-size: 13px;
  }
}

.figure-c {
  text-align: center;
  margin-bottom: 40px;
}

.figure-c a {
  width: auto;
  display: inline-block;
}

.figure-c img {
  width: 100%;
  height: auto;
  max-width: 800px;
  max-height: 350px;
  object-fit: contain;
}

.figure-c figcaption {
  margin-top: 10px;
  padding: 0 15px;
}

.fig-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}

.fig-flex figure {
  width: calc(100% / 2 - 20px);
  text-align: center;
}

.fig-flex figure img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.paging {
  margin: 80px 0;
}

.paging ul {
  display: flex;
  justify-content: space-between;
}

.paging ul li a {
  color: var(--link-text);
  position: relative;
}

.paging ul li.next a {
  padding-left: 2rem;
}

.paging ul li.prev a {
  padding-right: 2rem;
}

.paging ul li a::before, .paging ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 24px;
  filter: var(--filter-navy);
}

.paging ul li.next a::before {
  background-image: url(../img/svg/ico_arrow3.svg);
  transform: scale(-1, 1) translateY(-50%);
  left: 0;
}

.paging ul li.prev a::after {
  background-image: url(../img/svg/ico_arrow3.svg);
  right: 0;
}

.content-wrap {
  margin-bottom: 40px;
}

.content-wrap ol, .content-wrap ul {
  margin: 0;
  padding-left: 22px;
}

.content-wrap ol li {
  list-style: decimal;
  margin: 0.5em 0px;
  line-height: 1.5em;
}

.content-wrap ul li {
  list-style: disc;
  margin: 0.5em 0px 0.5em 4px;
  line-height: 1.5em;
}

.table-container table, .table-container th, .table-container td {
  border: 1px solid;
}

.parent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.parent li {
  flex-basis: 48%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parent li iframe {
  max-width: 480px;
  width: 100%;
  height: 260px;
  margin-bottom: 10px;
}

.parent li a {
  display: inline-block;
  padding: 10px 0;
  font-weight: bold;
  position: relative;
  text-decoration: underline;
  font-size: 1.2rem;
  text-align: left;
  max-width: 480px;
}

.parent li a:hover {
  text-decoration: none;
}

.movie-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.movie-box a {
  margin-top: 10px;
}

.movie-box a[target="_blank"]::after {
  content: "";
  display: inline-block;
  background-image: url(../img/svg/ico_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
}


.box-sodan {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.box-sodan .text-box {
  width: 75%;
  color: #E73836;
  font-size: 2.4rem;
  font-weight: bold;
}

.box-sodan .text-box .small {
  color: var(--text-color);
  font-size: 2rem;
}

.box-sodan .img-box {
  width: 25%;
  position: relative;
}

.box-sodan .img-box::before {
  content: "";
  display: inline-block;
  width: 453px;
  height: 88px;
  background-image: url(../img/common/icon_01_comm.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20%;
  left: -65%;
}

.topi-box ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qa-wrap {
  background-color: #FFF;
  border-radius: 17px;
  padding: 40px 40px 20px;
}

.qa-box {
  border: 3px solid var(--main-color);
  border-radius: 17px;
  margin-bottom: 20px;
}

.qa-box dt {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 20px 20px 20px 90px;
  background-color: var(--main-color);
  border-radius: 12px 12px 0 0;
  position: relative;
}

.qa-box dt::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 25px);
  left: 20px;
}

.qa-box dt::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/svg/font_q.svg);
  filter: var(--filter-navy);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 11px);
  left: 36px;
}

.qa-box dd {
  padding: 20px;
}

.make-box {
  display: flex;
  align-items: end;
  margin-bottom: 40px;
}

.make-box .text-area {
  flex-basis: 60%;
}

.make-box .text-area > p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.make-box .text-area .in-txt {
  padding: 20px;
  background-color: #FBE6EE;
  border-radius: 17px;
  color: #E73836;
  font-size: 1.4rem;
  font-weight: bold;
}

.make-box .text-area .in-txt .f-big {
  color: var(--main-color);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 20px;
}

.make-box .text-area .in-txt .f-color-b {
  color: var(--text-color);
}

.make-box .make-img {
  flex-basis: 40%;
  text-align: center;
  position: relative;
}

.make-box .make-img::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/icon_02L_comm.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 435px;
  height: 88px;
  position: absolute;
  top: -34%;
  left: 5%;
}

.make-box .make-img img {
  max-width: 200px;
}

.rengo-wrap {
  background-color: #FFF;
  border-radius: 17px;
  padding: 60px 100px;
  position: relative;
}

.rengo-wrap::after {
  content: "";
  display: inline-block;
  background-image: url(../img/common/icon_03.png);
  background-size: contain;
  width: 250px;
  height: 300px;
  position: absolute;
  top: -40px;
  right: 0;
}

.rengo-wrap .font-bl {
  width: calc(100% - 300px);
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.rengo-wrap .font-bl > span {
  background: linear-gradient(transparent 60%, #FBE6EE 60%);
  font-size: 2rem;
}

  .nav-outline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  
  .nav-outline li {
    width: calc(100% / 4 - 10px);
  }
  
  .nav-outline li a {
    color: #FFF;
    width: 100%;
    display: inline-block;
    padding: 12px 40px 12px 12px;
    font-weight: bold;
    text-align: center;
    background-color: var(--link-text);
    border-radius: 7px;
    position: relative;
  }
  
  .nav-outline li a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 20px;
    background-image: url(../img/svg/ico_arrow2.svg);
    background-size: contain;
    filter: var(--filter-white);
    position: absolute;
    right: 20px;
    top: calc(50% - 10px);
    transform: rotate(90deg);
  }

  .nav-outline li a:hover {
    text-decoration: none;
  }


@media screen and (max-width: 1024px) {
  .rengo-wrap {
    padding: 20px;
  }

  .rengo-wrap::after {
    width: 160px;
    height: 192px;
  }

  .rengo-wrap .font-bl {
    width: calc(100% - 170px);
    font-size: 1.4rem;
  }
  .rengo-wrap .font-bl > span {
    font-size: 1.8rem;
  }
  .movie-box iframe {
    max-width: 480px;
    width: 100%;
    height: 260px;
    margin-bottom: 10px;
}

  .nav-outline li {
    width: calc(100% / 2 - 10px);
  }
  
  .box-sodan {
    display: block;
  }
  
  .box-sodan .text-box {
    width: 100%;
    font-size: 1.8rem;
  }
  .box-sodan .text-box .small {
    font-size: 1.4rem;
  }
  .box-sodan .img-box {
    width: 100%;
    text-align: right;
  }
  .box-sodan .img-box img{
    max-width: 180px;
  }
  .box-sodan .img-box::before {
    width: 250px;
    height: 56px;
    left: initial;
    top: 2%;
    right: 180px;
  }
  
  .qa-box dt {
    padding: 15px 15px 15px 65px;
    font-size: 1.1rem;
  }
  .qa-box dt::before {
    width: 34px;
    height: 34px;
    top: calc(50% - 17px);
    left: 15px;
  }
  .qa-box dt::after {
    width: 20px;
    height: 20px;
    top: calc(505 - 10px);
    left: 24px;
  }
  .qa-box dd {
    padding: 15px;
  }
  .make-box {
    display: block;
  }
  .make-box .text-area {
    margin-bottom: 20px
  }
  .make-box .text-area > p {
    font-size: 1rem;
  }
  .make-box .text-area .in-txt {
    font-size: 1.2rem;
  }
  .make-box .text-area .in-txt .f-big {
    font-size: 1.6rem;
  }
  .make-box .make-img {
    text-align: left;
  }
  .make-box .make-img::before {
    width: 220px;
    height: 60px;
    top: 0;
    left: 140px;
    transform: rotate(13deg);
  }
  .make-box .make-img img {
    max-width: 140px;
  }
  .parent {
    display: block;
  }
  .content-wrap {
    margin-bottom: 20px;
  }

  .table-container {
    position: relative;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .table-container table {
    white-space: nowrap;
  }

  .scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    line-height: 1.4;
    display: none;
    animation: scroll-hint-animation 2s infinite ease;
  }
  
  @keyframes scroll-hint-animation {
    0% {
      transform: translate(-50%, -50%);
    }
    50% {
      transform: translate(-40%, -50%);
    }
    100% {
      transform: translate(-50%, -50%);
    }
  }
  
  .scroll-hint--show {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .rengo-wrap {
    padding-bottom: 100px;
  }
  .rengo-wrap::after {
    width: 100px;
    height: 120px;
    top: initial;
    bottom: -24px;
  }

  .rengo-wrap .font-bl {
    width: 100%;
    font-size: 1.2rem;
  }
  .rengo-wrap .font-bl > span {
    font-size: 1.4rem;
  }

  .nav-outline {
    font-size: 14px;
  }
  .nav-outline li a {
    padding: 12px 20px 12px 12px;
  }
  .nav-outline li a::after {
    width: 8px;
    height: 14px;
    right: 10px;
    top: calc(50% - 7px);
  }
  .fig-flex {
    gap: 20px;
  }
  .fig-flex figure {
    width: 100%;
  }
  .box-sodan .img-box img{
    max-width: 156px;
  }
  .box-sodan .img-box::before {
    width: 190px;
    height: 42px;
    top: 4%;
    right: 125px;
  }
  .qa-wrap {
    padding: 20px 15px 20px;
  }
  .paging ul li.next a {
    padding-left: 1.5rem;
  }
  
  .paging ul li.prev a {
    padding-right: 1.5rem;
  }
}

.table {
  border-collapse: collapse;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 60px;
}

.table tr {
  background-color: #F5F5F5;
  border: 1px solid var(--main-color);
}

.table tr:nth-child(odd) {
  background-color: #fff;
}

.table th, .table td {
  padding: 20px;
}

.table th {
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
  border-right: 1px solid var(--main-color);
}

.table .t-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table .t-img img {
  width: 300px;
}

.table_design02 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.table_design02 tr {
  background-color: #e1f0f7;
  border: 1px solid var(--main-color);
}
.table_design02 tr:nth-child(even) {
  background-color: #fff;
}
.table_design02 th, .table_design02 td {
  padding: 1em;
}
.table_design02 thead th {
  background-color: var(--main-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.table_design02 th.chin {
  width: calc(100% - 200px);
  border-right: 1px solid #FFF;
}

.table_design02 th.time {
  width: 200px;
}

.table_design02 td.align-r {
  border-left: 1px solid var(--main-color);
}

.saigai-img {
  text-align: center;
} 

.saigai-img img {
  max-width: 260px;
}

.img-flex {
  display: flex;
  justify-content: space-around;
}

.img-flex img {
  max-width: calc(100% / 3 - 50px);
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .table {
    margin-bottom: 40px;
  }
  .table th {
    width: 30%;
  }
  .table .t-img {
    flex-direction: column;
    align-items: flex-start;
  }

  .table .t-img img {
    margin-top: 20px;
  }
  .table-wrap {/*safariレイアウト崩れ対策*/
    display: flex;
  }
  .table_design02 th.chin {
    width: calc(100% - 130px);
  }
  .table_design02 th.time {
    width: 130px;
  }
  .table_design02 th, .table_design02 td {
    padding: .6em;
  }
}

@media screen and (max-width: 599px) {
  .table_design02 th.chin {
    width: auto;
  }
  .table_design02 th.time {
    width: 100px;
  }
  .img-flex {
    flex-wrap: wrap;
  }
  .img-flex img {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.balloon{
  position: relative;
  background: #B9E8F5;
  padding: 20px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.balloon:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #B9E8F5 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.outline {
  border: 15px solid #B9E8F5;
  padding: 40px;
}

.outline .outline-top {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.outline .outline-top .dot {
  left: calc(50% - 2px);
  margin-top: 30px;
}

.outline .outline-top .dot.botm {
  margin-top: -30px;
}

.outline .outline-top .dot,
.outline .outline-top .dot::before,
.outline .outline-top .dot::after {
  display: block;
  position: absolute;
  border-radius: 50%;
  /* ドット1つのサイズ */
  width: 4px;
  height: 4px;
  /* ドットの色 */
  background-color: #333;
}

.outline .outline-top .dot::before, .outline .outline-top .dot::after {
  content: '';
}

.outline .outline-top .dot::before {
  /* 上側ドットの位置 */
  top: -16px;
}

.outline .outline-top .dot::after {
  /* 下側ドットの位置 */
  top: 16px;
}

.outline .outline-innr {
  color: var(--main-color);
  font-size: 2rem;
  font-weight: bold;
  background-color: #B9E7F5;
  margin-top: 80px;
  padding: 40px 20px;
  text-align: center;
}

.outline .outline-innr .outline-list {
  color: var(--text-color);
  padding: 40px 80px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: normal;
  background-color: #FFF;
  text-align: left;
}

.outline .outline-innr .outline-list ul {
  column-count: 2;
}

.outline .outline-innr .outline-list ul li {
  list-style: disc;
}

.soshiki-list {
  border: 1px solid var(--main-color);
  margin-bottom: 40px;
}

.soshiki-list p {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background-color: var(--main-color);
  padding: 20px;
}

.soshiki-list ul {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 40px;
  justify-content: space-between;
}

.soshiki-list ul li {
  flex-basis: 45%;
  list-style: disc;
}

.tikyo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tikyo-list .list-conte {
  flex-basis: 45%;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.tikyo-list .list-conte > p {
  min-height: 100px;
}

ul.sitemap-list {
  column-count: 2;
}

ul.sitemap-list li.deco-list {
  font-weight: normal;
  margin-bottom: 20px;
}

ul.sitemap-list li a {
  text-decoration: underline;
}

ul.sitemap-list li a:hover {
  text-decoration: none;
}

ol.ol-list {
  margin-left: 3em;
  margin-bottom: 15px;
}

ol.ol-list li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  padding-bottom: 10px;
}

ol.ol-list li::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -44px;
  width: 2em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

ol.maru-list {
  position: relative;
  margin-bottom: 15px;
}

ol.maru-list li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 3em;
  padding-bottom: 10px;
}

ol.maru-list li span {
  position: absolute;
  left: 0;
  margin-left: 1.1em;
}

.guidelines {
  display: flex;
  flex-wrap: wrap;
  font-weight: normal;
  margin-bottom: 10px;
}

.guidelines dt {
  width: 12%;
  text-align: center;
  margin-bottom: 5px;
  padding: 2px;
  background-color: #d3deed;
}

.guidelines dd {
  width: 88%;
  margin-bottom: 5px;
  padding: 2px 6px;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .balloon {
    font-size: 1.8rem;
    padding: 10px;
  }
  .outline {
    padding: 20px;
  }
  .outline .outline-innr {
    padding: 20px 16px;
  }
  .outline .outline-innr .outline-list {
    padding: 20px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .outline .outline-innr .outline-list ul {
    column-count: 1;
  }
  .soshiki-list ul {
    flex-direction: column;
  }
  .tikyo-list {
    flex-direction: column;
  }
  .guidelines dt {
    width: 20%;
  }
  .guidelines dd {
    width: 80%;
  }
}



.fileList li  {
  margin-bottom: 10px;
}

a.link-icon {
  color: var(--link-text);
}

a.link-icon[href$=".pdf"]::before, a.link-icon.icon-pdf::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_pdf.svg);
  filter: invert(25%) sepia(39%) saturate(6958%) hue-rotate(344deg) brightness(77%) contrast(93%);
  vertical-align: bottom;
  margin-right: 6px;
}

a.link-icon[href$=".doc"]::before, a.link-icon[href$=".docx"]::before, a.link-icon.icon-word::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_word.svg);
  filter: invert(24%) sepia(92%) saturate(933%) hue-rotate(193deg)
    brightness(86%) contrast(89%);
  vertical-align: bottom;
  margin-right: 6px;
}

a.link-icon[href$=".xls"]::before, a.link-icon[href$=".xlsx"]::before, a.link-icon.icon-excel::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_excel.svg);
  filter: invert(29%) sepia(95%) saturate(4793%) hue-rotate(152deg)
  brightness(102%) contrast(101%);
  vertical-align: bottom;
  margin-right: 6px;
}

a.link-icon[href$=".ppt"]::before, a.link-icon[href$=".pptx"]::before, a.link-icon.icon-ppt::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_ppt.svg);
  filter: invert(25%) sepia(63%) saturate(1895%) hue-rotate(347deg)
  brightness(110%) contrast(89%);
  vertical-align: bottom;
  margin-right: 6px;
}

a.link-icon[href$=".mp3"]::before, a.link-icon[href$=".mp4"]::before, a.link-icon[href$=".avi"]::before, a.link-icon[href$=".mov"]::before, a.link-icon[href$=".wmv"]::before, a.link-icon.icon-movie::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_movie.svg);
  filter: invert(53%) sepia(19%) saturate(5742%) hue-rotate(152deg) brightness(107%) contrast(101%);
  vertical-align: bottom;
  margin-right: 6px;
}

a.link-icon[href$=".jpg"]::before, a.link-icon[href$=".jpeg"]::before, a.link-icon[href$=".png"]::before, a.link-icon[href$=".gif"]::before, a.link-icon.icon-img::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-image: url(../img/svg/ico_img.svg);
  filter: invert(31%) sepia(50%) saturate(2839%) hue-rotate(165deg) brightness(97%) contrast(98%);;
  vertical-align: bottom;
  margin-right: 6px;
}

a.arrow-r {
  position: relative;
  padding-left: 20px;
}

a.arrow-r::before {
  content: "";
  width: 10px;
  height: 16px;
  background-image: url(../img/svg/ico_arrow2.svg);
  background-size: contain;
  filter: var(--filter-navy);
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
}

.saichin-box {
  background: linear-gradient(-45deg, #1962AC 25%, #FFFFFF 25%, #FFFFFF 50%, #1962AC 50%, #1962AC 75%, #FFFFFF 75%, #FFFFFF);
  background-size: 4px 4px;
  margin: 30px 0 20px;
  padding: 6px 6px;
}

.saichin-box .saichin {
  background-color: #FFFFFF;
  padding: 14px 10px 10px;
  word-break: break-all;
  font-size: 36px;
  font-weight: bold;
}

.torikumi-wrap p {
  flex-basis: calc(100% - 150px);
}

.torikumi-wrap .read-more {
  flex-basis: 130px;
  margin-left: 20px;
  padding-bottom: 0;
}

.torikumi-wrap .read-more::after {
  top: 40%;
  transform: initial;
}

.pdf-list {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.pdf-list li {
  margin-bottom: 10px;
}

.pdf-list li:last-child {
  margin-bottom: 0;
}

.primary-box {
  background-color: #f7f7f7;
  padding: 20px 20px 1px; 
}

.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 30px;
}

.container::after {
  content: "";
  display: block;
  width: 45%;
}

.container.giin::after {
  content: "";
  display: block;
  width: 32%;
}

.flex-box{
  display: flex;
  flex-direction: column;
  width: 49%;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  margin-bottom: 20px;
}

.container.giin .flex-box {
  width: 32%;
}

.flex-box h3{
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: var(--main-color);
  border-radius: 8px 8px 0 0;
}

.flex-box p{
  margin: 25px;
}

.flex-box .lnkbtn{
  display: block;
  width: 100%;
  max-width: 200px;
  margin: auto 20px 20px auto;
  padding: 10px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  background-color: var(--orange);
  position: relative;
}

.flex-box .lnkbtn::after{
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(../img/svg/ico_arrow2.svg);
  background-size: contain;
  filter: var(--filter-white);
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}

.flex-box dl {
  display: flex;
  margin: 20px;
}

.flex-box dl dt img {
  max-width: 110px;
  max-height: 120px;
}

.flex-box dl dd {
  margin-left: 20px;
}

.flex-box dl dd strong {
  font-size: 1.2rem;
}

.container.giin-city::after {
  content: "";
  display: block;
  width: 24%;
}
.container.giin-city .flex-box{
  width: 24%;
}
.container.giin-city .flex-box p{
  margin: 20px;
}
.container.giin-city .flex-box p strong{
  font-size: 1.2rem;
}

.map-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.giin-list {
  width: 46%;
}

.giin-list li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
  background-color: #efefef;
}

.giin-list li::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid var(--green);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}

.giin-list li a {
  color: var(--link-text);
  display: block;
  font-weight: bold;
}

.voteMap {
  margin-right: 100px;
}

.voteMap img {
  width: 100%;
  min-width: 320px;
}

.map-wrap.giin .voteMap {
  margin-right: 0;
}

div.slash-box {
  background: linear-gradient(-45deg, #1962AC 25%, #FFFFFF 25%, #FFFFFF 50%, #1962AC 50%, #1962AC 75%, #FFFFFF 75%, #FFFFFF);
  background-size: 4px 4px;
  margin: 30px 0 20px;
  padding: 6px 6px;
}
h3.slash-title{
  background-color: #FFFFFF;
  padding: 14px 10px 10px;
  word-break: break-all;
  font-size: 1.5em;
  font-weight:bold;
}
ul.ul-list{
  list-style-type: circle;
  padding-bottom: 10px;
  margin-left: 3em;
  margin-bottom: 15px;
}

img.taishoku_map {
  width: 20%;
}

@media only screen and (max-width: 1024px) {
  img.taishoku_map {
    width: initial;
    max-height: 160px;
  }
  .container.giin .flex-box {
    width: 47%;
  }
  .container.giin-city .flex-box {
    width: 47%;
  }
  .map-wrap {
    display: block;
    margin-bottom: 20px;
  }

  .voteMap {
    margin-right: 0;
    text-align: center;
  }
  .voteMap img {
    width: 100%;
    min-width: initial;
    max-width: 170px;
  }

  .map-wrap.giin {
    display: flex;
  }
  .map-wrap.giin .voteMap img {
    max-width: 220px;
  }
  .saichin {
    font-size: 32px;
  }
  .giin-list {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .sp-br {
    display: block;
  }
  .container {
    display: block;
  }
  .flex-box {
    width: 100%;
  }
  .container.giin .flex-box {
    width: 100%;
  }
  .flex-box dl {
    margin: 15px;
  }
  .container.giin-city .flex-box {
    width: 100%;
  }
  .saichin-box .saichin {
    font-size: 32px;
    text-align: center;
  }
  .saichin-box .saichin .f-sizeM {
    display: block;
  }
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 80px;
}
.pagination a {
  color: var(--link-text);
  display: inline-block;
  font-weight: bold;
  padding: .2rem .7rem;
  background-color: #FFF;
  text-decoration: none;
  border: 1px solid var(--link-text);
  margin: 0 6px;
}
.pagination a:hover, .pagination a:focus {
  background-color: var(--link-text);
  color: #FFF;
}
.pagination__items {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  counter-reset: pagination;
  margin: 0 1px;
}

.pagination__items .is-active a {
  background-color: #FFF;
  color: var(--link-text);
  border: none;
}

.pagination__items li {
  color: var(--link-text);
}

.pagination__items li.dot3 {
  padding: 0 .5rem;
}

@media only screen and (max-width: 1024px) {
  .pagination {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 599px) {
  .pagination {
    padding: 0 2%;
  }

}

/*---------- form /*----------*/
.form input[type="button"] {
  transition: .3s;
}
.form input[type="button"]:hover {
  opacity: .7;
  cursor: pointer;
}
.form input[type="text"]:focus,
.form input[type="password"]:focus,
.form textarea:focus,
.form select:focus {
  outline: 0;
  box-shadow: 0px 0px 4px 1px rgb(0, 160, 233);
  border-color: transparent;
}

.form input,
.form textarea {
  border: 1px solid #b1b1b1;
  padding: 8px;
}

.form input:focus,
.form textarea:focus {
  outline: 0;
  box-shadow: 0px 0px 4px 1px rgb(0, 160, 233);
  border-color: transparent;
}


/* contact */
.contact-list {
  margin-bottom: 20px;
}

.contact-list li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

.contact-list li::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}

.contact-list li a {
  color: var(--link-text);
}


.form-wrap {
  display: flex;
  flex-wrap: wrap;
}

.form-wrap .form_label {
  flex-basis: 25%;
  max-width: 25%;
  padding: 3.5em;
  display: flex;
  align-items: center;
  position: relative;
}

.form-wrap .form_label::after {
  position: absolute;
  right: 15px;
  top: initial;
  display: inline-block;
  content: "必須";
  color: #fff;
  background-color: #ef5440;
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 2px 8px;
}

.form-wrap .form_label.none::after {
  display: none;
}

.form-wrap .form_area {
  flex-basis: 75%;
  max-width: 75%;
}

.form-wrap .form_area input {
  max-width: 600px;
  margin-right: 0.8rem;
  margin-bottom: 0;
}

.form-wrap .form_label,
.form-wrap .form_area {
  padding: 15px;
  border-bottom: 1px solid #b3b3b3;
  box-sizing: border-box;
  word-break: break-all;
}

.form-wrap .form_label:first-of-type,
.form-wrap .form_area:first-of-type {
  border-top: 1px solid #b3b3b3;
}

.select-wrap {
  max-width: 600px;
}

.select-wrap select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
  border: 1px solid #b1b1b1;
  border-radius: 0;
  background-color: #FFF;
  padding: 8px;
  width: 100%;
  background-image: url(../img/svg/ico_arrow4.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.select-wrap select:focus {
  outline: #ff6c92;
}

.form_area textarea {
  background-color: #fff;
  padding: 8px;
  width: 100%;
}

.form_area.grn textarea {
  border: 1px solid var(--green);
}

/* エラーメッセージ */
.errorMsg {
  border: 1px solid #ef5440;
  padding: 15px 40px 6px;
  margin-bottom: 20px;
  color: #ef5440;
}

.errorMsg li {
  margin-bottom: 6px;
  list-style-type: circle;
}

/* 登録完了 */
.infoMsg {
  border: 1px solid var(--green);
  padding: 15px 40px 6px;
  margin-bottom: 20px;
  color: var(--green);
}

.infoMsg li {
  margin-bottom: 6px;
  list-style-type: circle;
}

.close-box {
  background-color: var(--gray);
  text-align: center;
  margin-bottom: 20px;
  padding: 6px;
}

.close-box p {
  font-weight: bold;
}

.normalMsg {
  border: 1px solid var(--green);
  padding: 15px 40px 6px;
  margin-bottom: 20px;
  color: var(--green);
}

.normalMsg li {
  margin-bottom: 6px;
  list-style-type: circle;
}

.file-sp {
  margin-bottom: 6px;
}

.file-bg {
  background-color: rgb(233, 233, 233);
}
@media only screen and (max-width: 1024px) {
  .form-wrap .form_label {
    flex-basis: 100%;
    max-width: none;
    border-bottom: none;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .form-wrap .form_label::after {
    position: initial;
    margin-left: 10px;
    padding: 0 10px;
  }

  .form-wrap .form_area {
    flex-basis: 100%;
    max-width: none;
    padding-top: 5px;
    padding-left: 0;
    padding-right: 0;
  }


  .form-wrap .form_label:first-of-type,
  .form-wrap .form_area:first-of-type {
    border-top: none;
  }
}

@media only screen and (max-width: 599px) {
  /* ファイル登録 */
  .form.file-wrap {
    display: block;
  }
  .form label.file-sel {
    font-size: 12px;
    margin-right: 5px;
    padding: 7px 8px;
  }
  .form .file-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .form .toroku {
    margin-bottom: 10px;
  }
  .form .kigen {
    text-align: right;
  }
  .kinyu.mail .in-half input {
    width: 62%;
  }
  .file-sp > input {
    width: 100%;
  }
  .file-sp > span a {
    padding-left: 10px;
  }
  
}

@media only screen and (max-width: 420px) {
  .form .file-b {
    flex-wrap: wrap;
  }
  .btn.btn-file {
    margin-left: 0;
  }
}


/* -------------------- footer -------------------- */
.fade-close {
  position: fixed;
  top: 88px;
  right: 6px;
  z-index: 102;
}
.fade-close:hover {
  cursor: pointer;
}
.fade-close.is-visible {
  display: block;
  transition: opacity 1s ease-in-out;
}

.fade-close.is-visible, .fade-close.is-visible #discuss {
  display: none;
}

.dli-close-circle {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  background-color: var(--green);
  line-height: 1;
  position: relative;
  z-index: 102;
  width: 1.2em;
  height: 1.2em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-close-circle > span {
  width: 52%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.dli-close-circle > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

#discuss {
  width: 105px;
  height: auto;
  position: fixed;
  right: 0;
  top: 50px;
  z-index: 101;
  display: none;
}
  
#discuss a {
  display: block;
}
  
#discuss a:hover {
  transform: translateY(-10px);
}

#page_top {
  width: 59px;
  height: 59px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 101;
  display: none;
}

#page_top a {
  display: block;
}

.foot-add .f-logo {
  margin-bottom: 20px;
}

.foot-add .f-logo img {
  max-width: 268px;
}

.foot-add .add {
  margin-bottom: 20px;
}
.foot-add .foot-sns {
  display: flex;
  gap: 20px;
}
.foot-add .foot-sns img {
  max-width: 35px;
}
.fb-page {
  width: 100%;
}

.gmap_iframe {
  aspect-ratio: 16 / 4;
  max-width: 1200px;
  width: 100%;
  height: auto;
}
.gmap_iframe.access {
  aspect-ratio: 16 / 6;
}


.footer {
  background-color: var(--main-color);
  margin-top: auto;
  /*下部固定*/
}

.footer-nav a {
  color: #FFF;
}

.footer-nav ul > li > ul.inr-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #FFF;
  padding: 30px 0;
}

.footer-nav ul > li > ul.inr-wrap a{
  font-weight: bold;
}

.footer-nav ul > li > ul.inr-wrap2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid #FFF;
  padding: 30px 0;
}

.copy {
  color: #FFF;
  padding: 30px 0;
}

.sitemap {
  font-size: 14px;
}

.sitemap ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.sitemap li {
  margin-left: 40px;
}

.sitemap li a {
  text-decoration: underline;
}

.sitemap li a:hover {
  text-decoration: none;
}

.sitemap p {
  text-align: center;
  padding-bottom: 10px;
}


.normal-list li {
  margin-top: 5px;
  padding-left: 10px;
}

/*以下は加盟と同じです*/
ul.sitemap-3clm {
  column-count: 3;
}

@media only screen and (max-width: 1024px) {
  .dli-close-circle {
    display: none;
  }
  .footer {
    padding-top: 0;
    padding-bottom: 130px;
  }

  .footer .sitewidth {
    padding: 0;
  }

  .f-2colum {
    flex-direction: column-reverse;
    justify-content: initial;
  }

  .company {
    text-align: center;
  }

  .company,
  .footer-nav {
    width: 100%;
  }

  .footer-nav {
    margin-bottom: 20px;
  }

  .footer-nav ul {
    justify-content: initial;
    flex-direction: column;
  }

  .footer-nav li {
    width: 100%;
    margin-bottom: 0;
  }

  .footer-nav .inr-wrap li:last-child, .footer-nav .inr-wrap2 li:last-child {
    border-bottom: 1px solid #e4e4e4;
  }

  .footer-nav ul.under li:first-child {
    border-top: none;
  }

  .footer-nav li a {
    display: block;
    padding: 15px;
  }

  .footer-nav li a::before {
    width: 1.4em;
    height: 1.4em;
    background-image: url(../img/svg/ico_arrow.svg);
    left: initial;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-nav li a:hover {
    text-decoration: none;
  }

  .footer-nav ul > li > ul.inr-wrap {
    border-bottom: none;
    padding: 20px;
  }

  .footer-nav ul > li > ul.inr-wrap2 {
    gap: 0;
    border-bottom: 0;
    padding: 0;
    margin: 0 20px;
  }

  .copy {
    padding: 10px 0 20px;
  }

  .sitemap {
    padding: 0 2%;
  }

  .sitemap ul {
    justify-content: center;
  }

  .sitemap li:first-child {
    margin-left: 0;
  }

  .sitemap li {
    margin-left: 16px;
  }

  .sitemap p {
    padding-bottom: 50px;
  }

  #discuss {
    width: 100%;
    top: initial;
    bottom: 0;
  }

  #discuss img {
    width: 100%;
    height: auto;
  }

  #discuss a:hover {
    transform: none;
  }
  
  #page_top {
    width: 50px;
    height: 50px;
    bottom: 150px;
  }
  .gmap_iframe {
    aspect-ratio: 14 / 6;
  }
}

@media screen and (max-width: 750px) {
  ul.sitemap-3clm {
    column-count: auto;
  }
}

@media only screen and (max-width: 599px) {
  .sitemap {
    padding: 0 3%;
    font-size: 13px;
  }
  .normal-list li {
    padding-left: 0;
    margin-top: 22px;
  }
  .deco-list.h-style-maru {
    padding-left: 17px;
  }
  .gmap_iframe {
    aspect-ratio: 10 / 6;
  }

  #page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 130px;
  }
  
}
@media only screen and (max-width: 390px) {
  .footer {
    padding-bottom: 100px;
  }
  #page_top {
    bottom: 120px;
  }

}

/* androidのみ */
@media (max-width: 599px) {
  body.android .header {
    height: 48px;
  }
  body.android .header .header_inner .logo {
    padding: 5px 0;
  }
  body.android .header .header_inner .tel img {
  max-width: 140px;
  }
  body.android .menu {
    margin-top: 48px;
  }
}