@charset "UTF-8";
/*=================追加のリセット=================*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

input, textarea {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 350;
  line-height: 1;
}

h2 {
  font-size: 24px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

p {
  font-size: 16px;
}

.en_txt {
  font-family: "Outfit";
}

a {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: bottom;
  /*==================フルードイメージ==================*/
  /* max-width: 100%; */
  width: 100%;
}

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

/*================追加のリセットここまで=================*/
/* ------- common ------- */
.hd_inner {
  max-width: 1400px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.inner {
  max-width: 900px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.no-wrap {
  white-space: nowrap;
}

span {
  display: inline-block;
}

.ttl_odd {
  position: relative;
}
.ttl_odd::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/sec_dc1-1.svg);
  background-repeat: no-repeat;
  width: 1400px;
  height: 20px;
  bottom: -22px;
  left: 200px;
}

.btm_dc_odd {
  padding-bottom: 300px;
  position: relative;
}
.btm_dc_odd::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/top_sec_dc.svg);
  background-repeat: no-repeat;
  width: 2500px;
  height: 140px;
  bottom: 50px;
  right: -620px;
}

.ttl_evn {
  color: #fff;
  position: relative;
}
.ttl_evn::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/sec_dc2-1.svg);
  background-repeat: no-repeat;
  width: 1400px;
  height: 20px;
  bottom: -22px;
  right: 200px;
}

.btm_dc_evn {
  position: relative;
}
.btm_dc_evn::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/top_sec_dc02.svg);
  background-repeat: no-repeat;
  width: 2500px;
  height: 140px;
  bottom: 50px;
  left: -100px;
}

.fb_area {
  text-align: center;
  margin: 0 auto;
}
.fb_area p {
  color: #fff;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
/* 先頭に戻るボタン */
.button_top {
  position: 0;
  background-color: #fff;
  border: 2px solid #006234;
  color: #006234;
  width: 70px;
  height: 60px;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  -webkit-transition: 0 0.5s;
  transition: 0 0.5s;
  margin-bottom: 20px;
  margin-right: 10px;
  z-index: 10000;
}

.button_top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #006234;
  border-right: 2px solid #006234;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button_top:hover {
  background-color: #006234;
  color: #fff;
}

.button_top:hover:before {
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.pageTop {
  -webkit-animation: ab 1s ease forwards;
          animation: ab 1s ease forwards;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  display: none;
  z-index: 10000;
}

@-webkit-keyframes ab {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ab {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 英語用フォント
<weight>: Use a value from 100 to 900
<uniquifier>: Use a unique and descriptive class name

.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
/* ------- /common ------- */
/* ------- ヘッダー ------- */
.header {
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.4901960784);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.header.change-color {
  background-color: #fff;
}
.header .hd_inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.header .hd_inner .logo {
  position: absolute;
  width: 350px;
  left: -5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header .hd_inner .logo:active {
  opacity: 0.6;
}
.header .hd_inner .nav {
  height: 80px;
  position: absolute;
  right: -30px;
}
.header .hd_inner .nav .nav_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header .hd_inner .nav .nav_list {
  width: 170px;
  height: 80px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header .hd_inner .nav .nav_list:hover .a_nav_li {
  height: 85px;
}
.header .hd_inner .nav .nav_list:hover .a_nav_li::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header .hd_inner .nav .nav_list:hover .subnav_list {
  display: block;
  -webkit-animation: nav_hover 0.5s ease;
          animation: nav_hover 0.5s ease;
}
@-webkit-keyframes nav_hover {
  0% {
    height: 0px;
  }
  100% {
    height: 50px;
  }
}
@keyframes nav_hover {
  0% {
    height: 0px;
  }
  100% {
    height: 50px;
  }
}
.header .hd_inner .nav .subnav_list {
  display: none;
  -webkit-animation: nav_remove 0.5s ease;
          animation: nav_remove 0.5s ease;
  height: 100%;
}
.header .hd_inner .nav a.a_nav_li {
  display: inline-block;
  height: 80px;
  width: 170px;
  padding-top: 25px;
  color: #006234;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
}
.header .hd_inner .nav a.a_nav_li:hover {
  color: color-mix(in srgb, #006234 50%, #fff);
  height: 85px;
}
.header .hd_inner .nav a.a_nav_li:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header .hd_inner .nav a.a_nav_li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -7px;
  left: 44%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 50%;
  background-color: #006234;
}
.header .hd_inner .nav .subnav_lists {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.header .hd_inner .nav .subnav_list a {
  color: #006234;
  display: block;
  padding-block: 10px;
  padding-inline: 10px;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header .hd_inner .nav .subnav_list a:hover {
  color: color-mix(in srgb, #006234 50%, #fff);
  background: #006234;
}
.header .hd_inner .nav .line {
  background-color: #006234;
  width: 2px;
  height: 40px;
  border-radius: 50px;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
.header .txt_menu {
  opacity: 0;
  position: fixed;
  top: 15px;
  color: #006234;
  font-weight: 700;
  font-size: 20px;
  display: inline;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.header .txt_menu :nth-child(2) {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.header .subMenu01 {
  color: #006234;
}

#trigger {
  display: none;
}

.trigger {
  display: none;
}

.hd_sns {
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  height: 150px;
  padding: 10px;
  position: absolute;
  left: -100vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 560px;
}
.hd_sns:hover .sns_comm {
  opacity: 0.7;
  bottom: 10px;
}
.hd_sns .imgs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 10px;
}
.hd_sns .fb_img,
.hd_sns .line_img {
  width: 50px;
  height: 50px;
  margin-inline: 15px;
}
.hd_sns .fb_img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 10;
}
.hd_sns .fb_img:hover {
  opacity: 0.5;
}
.hd_sns .line_img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 10;
}
.hd_sns .line_img:hover {
  opacity: 0.5;
}
.hd_sns .sns_comm {
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hd_sns .sns_comm .img {
  width: 150px;
  aspect-ratio: 13/1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: -1;
}
.hd_sns .sns_comm .comm {
  color: #006234;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

/* ------- /ヘッダー ------- */
/* ------- フッター ------- */
.footer {
  padding-top: 40px;
  width: 100%;
  background: #006234;
  text-align: center;
  position: relative;
  z-index: 100;
}

.addrNav {
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding-inline: 30px;
  padding-block: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.addrNav a {
  color: #fff;
}

.addr {
  text-align: left;
}

.addr h2 {
  font-size: 2.3rem;
  font-weight: 400;
}

.addr h3 {
  font-size: 2rem;
  padding-bottom: 5px;
  font-weight: 400;
}

.coopName {
  padding-bottom: 15px;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
}
.coopName::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50px;
  background-image: url(../images/common/bg_logo.svg);
  aspect-ratio: 189/153;
  width: 350px;
  z-index: -1;
}

.addr p {
  font-size: 1.5rem;
  padding-bottom: 3px;
}

.ftr_nav {
  width: 50%;
  padding-bottom: 20px;
  z-index: 1000;
}

.ftr_nav .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 50px;
}

.ftr_nav li a {
  cursor: pointer;
  width: 100%;
  padding-block: 15px;
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.ftr_nav li a:hover {
  color: #006234;
  background-color: #fff;
}

.copyRight {
  padding: 15px;
  background: #fff;
}

.footer small {
  color: #006234;
  font-weight: bold;
  font-size: 1.3rem;
}

.sns {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
}
.sns p {
  color: #fff;
}
.sns a {
  color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.sns a:hover {
  color: color-mix(in srgb, #006234 50%, #fff);
}

.sns_cont {
  width: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  position: relative;
  padding-block: 10px;
}

.addr p.sns_txt {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

.fb_link {
  position: relative;
  -webkit-transform: translate(0px);
          transform: translate(0px);
}
.fb_link::before {
  content: "";
  background-image: url(../images/top/facebook.svg);
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  height: 30px;
}

.sp_line {
  background-color: #fff;
  height: 30px;
  width: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.line_link {
  position: relative;
}
.line_link::before {
  content: "";
  background-image: url(../images/top/LINE.svg);
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  height: 30px;
}

/* ------- /フッター ------- */
.lower {
  overflow: hidden;
  /*****トップ写真*****/
}
.lower .top {
  position: relative;
  /*****無限マーク****/
}
.lower .top .deco {
  position: absolute;
  left: 50%;
  top: 80%;
  max-width: 57%;
  width: 540px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lower .top .sec_txt {
  color: #006234;
}
.lower .top h2 {
  margin-bottom: 15px;
  text-align: center;
}
.lower .top h3 {
  text-align: center;
  margin-top: 15px;
}
.lower .top h2.en_txt {
  text-transform: uppercase;
  font-size: 24px;
  color: rgba(194, 191, 191, 0.8156862745);
}
.lower .top_txt {
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.499);
}
.lower .top_txt span {
  text-transform: uppercase;
  font-size: 20px;
  padding-top: 10px;
  display: block;
  opacity: 0.7;
}
.lower .top_img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.75;
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
}

@media (max-width: 1220px) {
  .hd_inner {
    width: 95%;
  }
  .trigger {
    display: block;
    width: 60px;
    height: 50px;
    color: #006234;
    position: fixed;
    right: 5%;
    top: 15px;
    z-index: 10000;
  }
  .trigger:hover .bar {
    -webkit-animation: hover 0.7s ease-in-out backwards;
            animation: hover 0.7s ease-in-out backwards;
  }
  .trigger:hover .bar_txt {
    -webkit-animation: hover 0.7s ease-in-out backwards;
            animation: hover 0.7s ease-in-out backwards;
  }
  @-webkit-keyframes hover {
    50% {
      opacity: 0.5;
    }
  }
  @keyframes hover {
    50% {
      opacity: 0.5;
    }
  }
  .bar_txt {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .bar {
    background-color: #006234;
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .bar:nth-child(1) {
    top: 10%;
  }
  .bar:nth-child(3) {
    bottom: 10%;
  }
  /* ===============ナビ==================== */
  .header .hd_inner .nav_lists {
    -webkit-transition: 0.3s ease-in-out 0.2s;
    transition: 0.3s ease-in-out 0.2s;
  }
  .header .hd_inner .nav ul {
    width: 100vw;
    height: 0vh;
    background-color: rgba(255, 255, 255, 0.7607843137);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.8rem;
    position: fixed;
    left: 0vw;
    top: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .hd_inner .nav .nav_lists .subnav {
    display: none;
  }
  .header .hd_inner .nav .nav_list {
    left: -100vw;
  }
  .header .hd_inner .nav .line {
    height: 2px;
    width: 0%;
    z-index: 1;
  }
  .header .hd_inner .nav a.a_nav_li {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80vw;
  }
  .header .hd_inner .nav a.a_nav_li:hover {
    background: #006234;
    color: #fff;
  }
  .header .hd_inner .nav a.a_nav_li::before {
    display: none;
  }
  .header .hd_inner .nav .nav_lists {
    height: 0;
  }
  /* ===============ハンバーガーをタップしたら==================== */
  .open {
    overflow: hidden;
  }
  .open .trigger .bar:nth-child(1) {
    -webkit-animation: bar01 0.5s ease forwards;
            animation: bar01 0.5s ease forwards;
  }
  .open .trigger .bar:nth-child(3) {
    -webkit-animation: bar02 0.5s ease forwards;
            animation: bar02 0.5s ease forwards;
  }
  .open .trigger .bar_txt {
    -webkit-animation: bar_txt 0.5s ease forwards;
            animation: bar_txt 0.5s ease forwards;
  }
  .open .hd_sns {
    opacity: 1;
    left: 50%;
  }
  @-webkit-keyframes bar_txt {
    0% {
      opacity: 1;
    }
    90% {
      left: -300px;
      opacity: 0;
    }
    100% {
      left: -200px;
      opacity: 0;
      display: none;
    }
  }
  @keyframes bar_txt {
    0% {
      opacity: 1;
    }
    90% {
      left: -300px;
      opacity: 0;
    }
    100% {
      left: -200px;
      opacity: 0;
      display: none;
    }
  }
  @-webkit-keyframes bar01 {
    0% {
      top: 10%;
    }
    50% {
      top: 50%;
    }
    60% {
      height: 2px;
      top: 50%;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      height: 2px;
      top: 49%;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
    }
  }
  @keyframes bar01 {
    0% {
      top: 10%;
    }
    50% {
      top: 50%;
    }
    60% {
      height: 2px;
      top: 50%;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      height: 2px;
      top: 49%;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
    }
  }
  @-webkit-keyframes bar02 {
    0% {
      bottom: 10%;
    }
    50% {
      bottom: 50%;
    }
    60% {
      height: 2px;
      bottom: 50%;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      height: 2px;
      bottom: 49%;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
    }
  }
  @keyframes bar02 {
    0% {
      bottom: 10%;
    }
    50% {
      bottom: 50%;
    }
    60% {
      height: 2px;
      bottom: 50%;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      height: 2px;
      bottom: 49%;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
    }
  }
  .open .header .hd_inner .nav_lists {
    padding-top: 120px;
    top: 0;
    height: 100vh;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .open .header .hd_inner .nav_list {
    left: 0;
    opacity: 1;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .open .header .hd_inner .line {
    width: 80%;
    -webkit-transition: 0.3s ease-in-out 0.5s;
    transition: 0.3s ease-in-out 0.5s;
  }
  .open .header .hd_inner .subnav_list {
    height: 100%;
  }
  .open .txt_menu {
    opacity: 1;
    font-size: 30px;
    -webkit-transition: 0.2s ease-in-out 0.4s;
    transition: 0.2s ease-in-out 0.4s;
  }
}
@media (max-width: 1020px) {
  /* ===============ハンバーガー==================== */
  .hd_inner {
    width: 90%;
  }
}
@media (max-width: 580px) {
  .header .hd_inner {
    width: 90%;
  }
  .header .hd_inner .logo {
    width: 270px !important;
    -webkit-transform: translate(0, -45%);
            transform: translate(0, -45%);
  }
}
@media (max-width: 900px) {
  .ttl_odd {
    position: relative;
  }
  .ttl_odd::before {
    content: "";
    position: absolute;
    background-image: url(../images/common/sec_dc1-1.svg);
    background-repeat: no-repeat;
    width: 1400px;
    height: 20px;
    bottom: -22px;
    left: 0px;
  }
  .ttl_evn {
    color: #fff;
    position: relative;
  }
  .ttl_evn::before {
    content: "";
    position: absolute;
    background-image: url(../images/common/sec_dc2-1.svg);
    background-repeat: no-repeat;
    width: 1400px;
    height: 20px;
    bottom: -22px;
    right: 0px;
  }
}
@media (max-width: 700px) {
  .addrNav {
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .addr {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 5%;
  }
  .addr h3 {
    padding-bottom: 10px;
  }
  .coopName {
    padding-bottom: 15px;
    -moz-text-align-last: left;
         text-align-last: left;
    position: relative;
  }
  .coopName::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 100px;
    background-image: url(../images/common/bg_logo.svg);
    aspect-ratio: 189/153;
    width: 350px;
    z-index: -1;
  }
  .ftr_nav {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}/*# sourceMappingURL=common.css.map */