@charset "UTF-8";
/*=====================================
【common/リセット】
======================================*/
/*=============================================
【リセットCSS__A Modern CSS Reset】
==============================================*/
*****,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*=============================================
【リセットCSS__ここから追記部分】
==============================================*/
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  all: unset;
}

input {
  margin: 0;
}

/* Button要素のリセットCSS */
button, input[type=button], input[type=submit], input[type=reset] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを削除（アクセシビリティに注意） */
}

em {
  font-style: normal;
}

/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/ベース】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【共通_base】
======================================*/
body {
  font-family: "Noto Sans", sans-serif;
  color: #212121;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

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

/*=====================================
【components/親サイト共通】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【メインビジュアル】
======================================*/
#banner {
  height: 105px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/common/banner.jpg);
}
@media screen and (min-width: 768px) {
  #banner {
    height: 210px;
  }
}

#breadcrumb {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 60px;
  margin-bottom: 20px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    max-width: 1108px;
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 auto;
  }
}
#breadcrumb .links {
  width: 100%;
  overflow: auto;
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 2px 0;
}
#breadcrumb .links em {
  color: #4ea347;
}

#page_content h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #page_content h2 {
    font-size: 2rem;
    margin-bottom: 60px;
  }
}

/*=====================================
【components/フロントページ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【トップメインビジュアル】
======================================*/
.top-content {
  width: 100%;
  background: url(../img/common/index-bg.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-content__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 740px;
  padding: 32px 20px;
}
@media screen and (min-width: 768px) {
  .top-content__nav {
    flex-direction: row;
    align-items: stretch;
    padding: 45px 0;
  }
}
.top-content__nav-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  width: 100%;
  padding: 16px;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 768px) {
  .top-content__nav-header {
    border-right: none;
  }
}
.top-content__nav-header img {
  width: 72px;
  height: auto;
}
.top-content__nav-list {
  width: 100%;
  color: #fff;
  text-align: center;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .top-content__nav-list {
    border-top: 2px solid #fff;
  }
}
.top-content__nav-item {
  border-bottom: 2px solid #fff;
}
.top-content__nav-link {
  font-weight: 400;
  color: #595959;
  text-decoration: none;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 16px;
  background-color: rgba(78, 163, 71, 0.7);
  position: relative;
  font-weight: 500;
}
.top-content__nav-link:hover {
  text-decoration: underline;
  cursor: pointer;
}
.top-content__nav-link img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top-content__nav-link img.esg-e {
  left: 3px;
  width: 40px;
}
.top-content__nav-link img.esg-s {
  left: 6px;
  width: 32px;
}
.top-content__nav-link img.esg-g {
  left: 0;
  width: 46px;
}
.top-content__nav-link:hover {
  background-color: rgb(78, 163, 71);
}
@media screen and (min-width: 768px) {
  .top-content__nav-link {
    height: 60px;
    padding: 16px 8px;
  }
}

/*=====================================
【お知らせエリア】
======================================*/
.top-wrap-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .top-wrap-inner {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1108px;
  }
}
.top-wrap-inner__download {
  background-color: #E7F5E4;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .top-wrap-inner__download {
    max-width: 320px;
  }
}

.front-news {
  width: 100%;
}
.front-news__ttl-area {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .front-news {
    width: 750px;
  }
}

/*=====================================
【components/ブロックパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【全共通】
======================================*/
.content-wrap {
  width: 100%;
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.content-wrap__inner {
  width: 100%;
  max-width: 1108px;
  margin-top: 64px;
}
.content-wrap__inner:first-of-type {
  margin-top: 0;
}
.content-wrap__block {
  margin-top: 30px;
}
.content-wrap__block:first-of-type {
  margin-top: 0;
}

/*=====================================
【トップメッセージ】
======================================*/
.top-message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-message {
    flex-direction: row;
    gap: 60px;
    max-width: 1108px;
    align-items: flex-start;
  }
}
.top-message__txt {
  width: 100%;
  max-width: 650px;
}
.top-message__picture {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
.top-message__picture__caption {
  margin-top: 8px;
  display: flex;
  text-align: center;
  gap: 20px;
}

/*=====================================
【メッセージ】
======================================*/
.message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .message {
    flex-direction: row-reverse;
    padding: 0 20px;
    gap: 60px;
    max-width: 1108px;
    align-items: flex-start;
  }
}
.message__txt {
  width: 100%;
  max-width: 750px;
}
.message__picture {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.message__picture__caption {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .message__picture {
    width: 300px;
  }
}

/*=====================================
サステナビリティレポート・ESGデータ集
======================================*/
.report-cover {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .report-cover {
    float: left;
    margin-right: 32px;
  }
}

/*=====================================
サステナビリティ推進体制
======================================*/
.promotion_system__bnr {
  width: 150px;
  margin: 0 auto;
}

/*=====================================
【共通コンテンツ】
======================================*/
.content {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .content {
    max-width: 1108px;
  }
}

/*=====================================
【コラム】
======================================*/
.column {
  background-color: #F5EFD5;
  padding: 16px;
}
.column .ttl-02:first-child {
  margin-top: 0;
}
.column .ttl-03:first-child {
  margin-top: 0;
}
.column .ttl-04:first-child {
  margin-top: 0;
}
.column .ttl-05:first-child {
  margin-top: 0;
}

/*=====================================
【csr活動方針リスト】
======================================*/
.csr-dl {
  width: 100%;
  display: flex;
  border-left: 1px solid #9D9D9D;
  border-right: 1px solid #9D9D9D;
}
.csr-dl__dt-ttl {
  width: 35%;
  border-top: 1px solid #9D9D9D;
  border-right: 1px solid #9D9D9D;
  padding: 8px;
}
.csr-dl__desc {
  width: 65%;
}
.csr-dl__desc-inner {
  margin: 16px;
}
.csr-dl__desc section {
  border-top: 1px solid #9D9D9D;
}
.csr-dl__dd-ttl {
  background-color: #E7F5E4;
  padding: 8px;
  font-weight: 500;
}
.csr-dl__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.csr-dl__icons img {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .csr-dl__icons img {
    width: 100px;
    height: 100px;
  }
}
.csr-dl .last {
  border-bottom: 1px solid #9D9D9D;
}

/*=====================================
【hover透過】
======================================*/
.opacity {
  opacity: 1;
  transition: opacity 0.5s;
}
.opacity:hover {
  opacity: 0.6;
  cursor: pointer;
}

/*=====================================
【一括DLボタン】
======================================*/
.all-download {
  display: block;
  background-color: #4ea347;
  border-radius: 2px;
  color: #fff;
  padding: 16px;
  text-align: center;
}
.all-download__ico {
  width: 24px;
  height: 24px;
  margin: 8px auto 0;
}

/*=====================================
【ボタンリンク】
======================================*/
.btn-wrap {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .btn-wrap {
    flex-direction: row;
  }
}

.btn-link {
  border: 2px solid #4ea347;
  padding: 16px;
  width: 100%;
  display: block;
  border-radius: 2px;
}
.btn-link:hover {
  background-color: #E7F5E4;
}
@media screen and (min-width: 768px) {
  .btn-link {
    width: calc(33.33% - 16px);
  }
}
.btn-link:hover .btn-link__item {
  text-decoration: underline;
}
.btn-link__item {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.btn-link__item::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico-circle-arrow-grn.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
}

/*=====================================
【ビオトープ3列】
======================================*/
.biotope {
  display: flex;
  flex-direction: row;
  margin-top: 24px;
  gap: 16px;
}
.biotope__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* 任意：必要に応じて高さをそろえる */
  flex: 1; /* 幅も均等に */
}

/*=====================================
【1列-2列】
======================================*/
.column_1-2 {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .column_1-2 {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .column_1-2__item {
    width: 50%;
  }
}
.column_1-2 p:first-child {
  margin-top: 0;
}
.column_1-2 h2:first-child,
.column_1-2 h3:first-child,
.column_1-2 h4:first-child,
.column_1-2 h5:first-child,
.column_1-2 h6:first-child {
  margin-top: 0;
}

/*=====================================
【2列】
======================================*/
.column_2 {
  display: flex;
  margin-top: 24px;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .column_2 {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .column_2__item {
    width: 50%;
  }
}

/*=====================================
【社会貢献活動-2列】
======================================*/
.activities-column {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .activities-column {
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
  }
  .activities-column.reverse {
    flex-direction: row-reverse;
  }
}
.activities-column__img {
  width: 400px;
  margin: 0 auto;
}

/*=====================================
【サステナビリティ推進体制-主な団体・イニシアティブ】
======================================*/
.group-column {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .group-column {
    flex-direction: row;
  }
}
.group-column__item.item1 {
  flex: 1;
}
.group-column__item.item2 {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .group-column__item.item2 {
    margin: 16px 40px 0;
  }
}

/*=====================================
【components/見出しパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【共通コンテンツ　見出し】
======================================*/
.top-ttl {
  color: #4EA347;
  font-size: 22px;
  font-weight: 400;
}

.ttl-01 {
  font-size: clamp(1.5rem, 1.347rem + 0.76vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.ttl-02 {
  font-size: clamp(1.375rem, 1.324rem + 0.25vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  scroll-padding-top: 8px;
  border-top: solid 2px #4EA347;
  margin-bottom: 32px;
  padding-top: 8px;
}

.ttl-03 {
  font-size: 16px;
  font-weight: 500;
  background-color: #E7F5E4;
  padding: 8px;
  margin-top: 32px;
}

.ttl-04 {
  color: #1e7018;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

.ttl-05 {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 0 1.25rem;
  font-weight: 500;
  margin: 8px 0 0;
}
.ttl-05::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 0.9rem;
  height: 3px;
  display: inline-block;
  background-color: #4EA347;
}

/*=====================================
【メッセージ　見出し】
======================================*/
.ceo-ttl-01 {
  font-size: clamp(1.375rem, 1.324rem + 0.25vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: #AC1334;
  margin-bottom: 32px;
}

.ceo-ttl-02 {
  font-size: 16px;
  padding: 2px 4px;
  background-color: #F4E7EA;
  font-weight: 500;
}

.ceo-ttl-03 {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 0 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}
.ceo-ttl-03::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.9rem;
  height: 2px;
  display: inline-block;
  background-color: #AC1334;
}

.chart-ttl {
  font-weight: 500;
  font-size: 14px;
  color: #595959;
  margin: 16px 0 8px;
}

/*=====================================
【components/フォントパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【フォントスタイル】
======================================*/
.txt {
  margin-top: 8px;
}

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

.arign-l {
  text-align: left;
}

.arign-c {
  text-align: center;
}

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

.fw-medium {
  font-weight: 500;
}

.fw-normal {
  font-weight: 400;
}

.txt-inde01 {
  text-indent: -1.1rem;
  padding-left: 1.1rem;
}

.txt-inde02 {
  text-indent: -2rem;
  padding-left: 2rem;
}

.txt-inde-min {
  text-indent: -0.5rem;
  padding-left: 0.5rem;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f18 {
  font-size: 18px;
}

.f24 {
  font-size: 24px;
}

.txt-green {
  color: #1e7018;
}

/*=====================================
【テキストリンク】
======================================*/
.txt-link {
  font-weight: 400;
  color: #595959;
  text-decoration: none;
}
.txt-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.txt-inner-link {
  text-decoration: underline;
  color: #595959;
}
.txt-inner-link:hover {
  text-decoration: none !important;
}

/*=====================================
【円背景＞テキストリンク】
======================================*/
.arrow-link {
  font-weight: 400;
  color: #595959;
  text-decoration: none;
  position: relative;
  display: inline-flex;
}
.arrow-link:hover {
  text-decoration: underline;
  cursor: pointer;
}
.arrow-link__ico {
  width: 20px;
  height: 20px;
  margin: 4px 4px 0 0;
}

.dark-gray {
  color: #595959;
}

/*=====================================
【components/リストパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【コンテンツ リスト】
======================================*/
/*=====================================
【お知らせ リスト】
======================================*/
.list-news {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.list-news__item-front {
  padding: 24px 0;
  border-bottom: 1px dotted #9D9D9D;
  border-top: 1px dotted #9D9D9D;
}
.list-news__item {
  padding: 24px 0;
  border-bottom: 1px dotted #9D9D9D;
}
.list-news__item:first-child {
  padding-top: 0;
}
.list-news .date {
  display: block;
  font-size: 14px;
  color: #1e7018;
}

/*=====================================
【サステナビリティレポート・ESGデータ集 リスト】
======================================*/
.list-report {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 16px;
}
.list-report__item {
  text-indent: -1em;
  padding-left: 1em;
}
.list-report__item::before {
  content: "⚫︎";
  color: #595959;
  font-size: small;
}
.list-report__item:first-child {
  padding-top: 0;
}

/*=====================================
【テーブル横-２列】
======================================*/
.table-2col {
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 15px;
}
.table-2col th {
  font-weight: 400;
  background-color: #EBEBEB;
  padding: 8px 12px;
  border: 1px solid #9D9D9D;
  white-space: nowrap;
}
.table-2col th.w-200 {
  width: 120px;
  white-space: normal;
}
@media screen and (min-width: 768px) {
  .table-2col th.w-200 {
    width: 200px;
  }
}
.table-2col td {
  padding: 8px 12px;
  border: 1px solid #9D9D9D;
}

/*=====================================
【リスト ⚫︎】
======================================*/
.list-circle-bd__item {
  text-indent: -1rem;
  padding: 16px 0 16px 1rem;
  border-bottom: 1px solid #9D9D9D;
}
.list-circle-bd__item:first-child {
  padding-top: 8px;
}
.list-circle-bd__item:last-child {
  border: none;
}
.list-circle-bd__item::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #595959;
  border-radius: 50%;
  position: relative;
  top: -3px;
  left: 3px;
}

.list-circle__item {
  text-indent: -0.8rem;
  padding-left: 1rem;
  margin-top: 8px;
}
.list-circle__item .child__item {
  text-indent: -3rem;
  padding-left: 3rem;
}
.list-circle__item::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #595959;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
  top: -3px;
}

/*=====================================
【リスト ナンバリング】
======================================*/
.list-num {
  counter-reset: cnt;
}
.list-num__item {
  text-indent: -1.4rem;
  padding-left: 1.4rem;
  margin-top: 8px;
}
.list-num__item::before {
  counter-increment: cnt;
  content: counter(cnt) ".";
  margin-right: 0.5rem;
}

.list-num-column01 {
  counter-reset: cnt;
}
.list-num-column01__item {
  counter-increment: cnt;
  text-indent: -2.6rem;
  padding-left: 2.6rem;
  margin-top: 8px;
}
.list-num-column01__item::before {
  content: "（" counter(cnt) "）";
}
.list-num-column01__item .child__item {
  text-indent: -3rem;
  padding-left: 3rem;
}

/*=====================================
【リスト 何もなし】
======================================*/
.list-free {
  counter-reset: listnum;
}
.list-free__item {
  text-indent: -1rem;
  padding-left: 1rem;
}

/*=====================================
【リスト 表組】
======================================*/
.chart-list {
  display: flex;
  gap: 6px;
}
.chart-list__ttl {
  background-color: #d5d5d5;
  width: 5rem;
  text-align: center;
  padding: 0 3px;
}

/*=====================================
【components/その他_追加パーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【その他】
======================================*/
.mx-auto {
  margin: 0 auto;
}

.col-red {
  color: #AC1334;
}

.txt-delate {
  text-decoration: line-through;
}

.bd-btm {
  border-bottom: 1px solid #9D9D9D;
}

.bd-top {
  border-top: 1px solid #9D9D9D;
}

.bd-all {
  border: 1px solid #9D9D9D;
}

.width_full-half {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .width_full-half {
    margin: 0 auto;
    width: 50%;
  }
}

.width_full-80 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .width_full-80 {
    margin: 0 auto;
    width: 80%;
  }
}

.width_full-70 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .width_full-70 {
    margin: 0 auto;
    width: 70%;
  }
}

.width_full-60 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .width_full-60 {
    margin: 0 auto;
    width: 60%;
  }
}

.width_full-50 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .width_full-50 {
    margin: 0 auto;
    width: 50%;
  }
}

.width_50 {
  width: 50%;
}

.width_30 {
  width: 30%;
}

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

/*=====================================
【modify.scss__margin】
======================================*/
.mgT0 {
  margin-top: 0px;
}

.mgT4 {
  margin-top: 4px;
}

.mgT8 {
  margin-top: 8px;
}

.mgT16 {
  margin-top: 16px;
}

.mgT24 {
  margin-top: 24px;
}

.mgT32 {
  margin-top: 32px;
}

.mgT40 {
  margin-top: 40px;
}

.mgT48 {
  margin-top: 48px;
}

.mgT56 {
  margin-top: 56px;
}

.mgT64 {
  margin-top: 64px;
}

.mgT72 {
  margin-top: 72px;
}

.mgR0 {
  margin-right: 0px;
}

.mgR4 {
  margin-right: 4px;
}

.mgR8 {
  margin-right: 8px;
}

.mgR16 {
  margin-right: 16px;
}

.mgR24 {
  margin-right: 24px;
}

.mgR32 {
  margin-right: 32px;
}

.mgR40 {
  margin-right: 40px;
}

.mgR48 {
  margin-right: 48px;
}

.mgR56 {
  margin-right: 56px;
}

.mgB0 {
  margin-bottom: 0px;
}

.mgB4 {
  margin-bottom: 4px;
}

.mgB8 {
  margin-bottom: 8px;
}

.mgB16 {
  margin-bottom: 16px;
}

.mgB24 {
  margin-bottom: 24px;
}

.mgB32 {
  margin-bottom: 32px;
}

.mgB40 {
  margin-bottom: 40px;
}

.mgB48 {
  margin-bottom: 48px;
}

.mgB56 {
  margin-bottom: 56px;
}

.mgL0 {
  margin-left: 0px;
}

.mgL4 {
  margin-left: 4px;
}

.mgL8 {
  margin-left: 8px;
}

.mgL16 {
  margin-left: 16px;
}

.mgL24 {
  margin-left: 24px;
}

.mgL32 {
  margin-left: 32px;
}

.mgL40 {
  margin-left: 40px;
}

.mgL48 {
  margin-left: 48px;
}

.mgL56 {
  margin-left: 56px;
}

.mgL60 {
  margin-left: 60px;
}

.mgL65 {
  margin-left: 65px;
}

/*=====================================
【modify.scss__padding】
======================================*/
.pdT0 {
  padding-top: 0px;
}

.pdT4 {
  padding-top: 4px;
}

.pdT8 {
  padding-top: 8px;
}

.pdT16 {
  padding-top: 16px;
}

.pdT24 {
  padding-top: 24px;
}

.pdT32 {
  padding-top: 32px;
}

.pdT40 {
  padding-top: 40px;
}

.pdT48 {
  padding-top: 48px;
}

.pdT56 {
  padding-top: 56px;
}

.pdR0 {
  padding-right: 0px;
}

.pdR4 {
  padding-right: 4px;
}

.pdR8 {
  padding-right: 8px;
}

.pdR16 {
  padding-right: 16px;
}

.pdR24 {
  padding-right: 24px;
}

.pdR32 {
  padding-right: 32px;
}

.pdR40 {
  padding-right: 40px;
}

.pdR48 {
  padding-right: 48px;
}

.pdR56 {
  padding-right: 56px;
}

.pdB0 {
  padding-bottom: 0px;
}

.pdB4 {
  padding-bottom: 4px;
}

.pdB8 {
  padding-bottom: 8px;
}

.pdB16 {
  padding-bottom: 16px;
}

.pdB24 {
  padding-bottom: 24px;
}

.pdB32 {
  padding-bottom: 32px;
}

.pdB40 {
  padding-bottom: 40px;
}

.pdB48 {
  padding-bottom: 48px;
}

.pdB56 {
  padding-bottom: 56px;
}

.pdL0 {
  padding-left: 0px;
}

.pdL4 {
  padding-left: 4px;
}

.pdL8 {
  padding-left: 8px;
}

.pdL16 {
  padding-left: 16px;
}

.pdL24 {
  padding-left: 24px;
}

.pdL32 {
  padding-left: 32px;
}

.pdL40 {
  padding-left: 40px;
}

.pdL48 {
  padding-left: 48px;
}

.pdL56 {
  padding-left: 56px;
}

/*=====================================
【modify.scss__responsive__sp】
======================================*/
.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */