/* ========================================

common

======================================== */
.en_r {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
}

.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.replace_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .l_tel {
    pointer-events: auto;
  }
}
/* ========================================

link

======================================== */
.link_arrow a::after {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 800px) {
  .link_arrow a:hover {
    opacity: 0.7;
  }
  .link_arrow a:hover::after {
    translate: 4px 0px;
  }
}

.cmn_link {
  position: relative;
  padding: 120px 0;
  z-index: 10;
}
.cmn_link_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cmn_link .link {
  width: 48.3334%;
}
.cmn_link .link a {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.06em;
  width: 100%;
  height: 150px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
}
.cmn_link .link a::after {
  width: 116px;
  height: 122px;
  display: block;
  position: absolute;
  right: 48px;
  bottom: 0;
  content: '';
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
}
@media screen and (min-width: 800px) {
  .cmn_link .link a:hover {
    opacity: 0.6;
  }
}
.cmn_link .link._about a {
  background-color: var(--c_blue);
}
.cmn_link .link._about a::after {
  background-image: url(../img/common/cmn_link_illust01.png);
}
.cmn_link .link._initiative a {
  background-color: var(--c_orange);
}
.cmn_link .link._initiative a::after {
  background-image: url(../img/common/cmn_link_illust02.png);
}

@media screen and (max-width: 800px) {
  .cmn_link {
    padding: 0;
  }
  .cmn_link .link {
    width: 50%;
  }
  .cmn_link .link a {
    font-size: 13px;
    height: 110px;
    border-radius: 0;
  }
  .cmn_link .link a::after {
    width: 100%;
    height: 58px;
    right: 0;
    position: absolute;
    bottom: 50%;
    translate: 0% -29px;
  }
  .cmn_link .link a span {
    width: 83.7334%;
    height: 58px;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn_link .link._about a {
    color: var(--c_blue);
    background-color: var(--c_blue);
  }
  .cmn_link .link._about a::after {
    background-image: url(../img/common/cmn_link_illust01_sp.png);
  }
  .cmn_link .link._initiative a {
    color: var(--c_orange);
    background-color: var(--c_orange);
  }
  .cmn_link .link._initiative a::after {
    background-image: url(../img/common/cmn_link_illust02_sp.png);
  }
}
/* ========================================

column

======================================== */
.column_list_item a, .cmn_column_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .column_list_item a:hover .img img, .cmn_column_list_item a:hover .img img {
    opacity: 0.7;
  }
  .column_list_item a:hover h3, .cmn_column_list_item a:hover h3,
  .column_list_item a:hover .date,
  .cmn_column_list_item a:hover .date,
  .column_list_item a:hover .txt,
  .cmn_column_list_item a:hover .txt {
    color: var(--c_blue);
  }
}
.column_list_item .img, .cmn_column_list_item .img {
  aspect-ratio: 335 / 216;
  overflow: hidden;
  margin-bottom: 22px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.column_list_item .img img, .cmn_column_list_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item h3, .cmn_column_list_item h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .cat, .cmn_column_list_item .cat {
  margin-bottom: 16px;
}
.column_list_item .cat span, .cmn_column_list_item .cat span {
  color: var(--c_blue);
  font-size: 13px;
  display: inline-block;
  padding: 5.5px 13px;
  border: 1px solid var(--c_blue);
  border-radius: 50px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.column_list_item .date, .cmn_column_list_item .date {
  color: #666;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .txt, .cmn_column_list_item .txt {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 800px) {
  .column_list_item .img, .cmn_column_list_item .img {
    margin-bottom: 6px;
    background-color: transparent;
    border-radius: 7px;
  }
  .column_list_item h3, .cmn_column_list_item h3 {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .column_list_item .cat, .cmn_column_list_item .cat {
    margin-bottom: 3px;
    scale: 0.8;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .column_list_item .cat span, .cmn_column_list_item .cat span {
    font-size: 10px;
  }
  .column_list_item .date, .cmn_column_list_item .date {
    font-size: 10px;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* ========================================

column

======================================== */
.cmn_column {
  padding: 85px 0;
  background-image: url(../img/common/cmn_column_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cmn_column_title {
  max-width: 1086px;
  margin: 0 auto 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cmn_column_title .illust {
  width: 157px;
  margin-right: 48px;
}
.cmn_column_title h2 {
  width: 194px;
  margin-bottom: 15px;
}
.cmn_column_title .desc {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.cmn_column_list {
  width: 100%;
}
.cmn_column_list_inner {
  margin-bottom: 68px;
}
.cmn_column_list_inner .slick-arrow {
  width: 48px;
  height: 48px;
  top: 108px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.cmn_column_list_inner .slick-arrow::before {
  width: 12px;
  height: 8.5px;
  display: block;
  content: '';
  background-color: #000;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.cmn_column_list_inner .slick-arrow.slick-prev {
  left: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-prev::before {
  margin-right: 2px;
  scale: -1 1;
}
.cmn_column_list_inner .slick-arrow.slick-next {
  right: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-next::before {
  margin-left: 2px;
}
.cmn_column_list_inner .slick-arrow:hover {
  opacity: 0.4;
}
.cmn_column_list_item {
  width: 335px;
  margin-left: 46px;
}
.cmn_column .link {
  position: relative;
  z-index: 2;
}
.cmn_column .link a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.06em;
  width: 300px;
  height: 50px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 20px 2px;
  background-color: var(--c_blue);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cmn_column .link a::after {
  width: 9px;
  height: 5.8px;
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 2.4px);
  right: 18px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 800px) {
  .cmn_column {
    padding: 28px 0 48px;
  }
  .cmn_column_title {
    display: block;
    margin-bottom: 32px;
  }
  .cmn_column_title .illust {
    width: 141px;
    margin: 0 auto 24px;
  }
  .cmn_column_title h2 {
    width: 187px;
    margin: 0 auto 10px;
  }
  .cmn_column_title .desc {
    font-size: 17px;
    line-height: 1.76;
    letter-spacing: 0;
    width: 82.1334%;
    margin: 0 auto;
  }
  .cmn_column_list {
    width: 89.3334%;
    margin: 0 auto 40px;
  }
  .cmn_column_list_inner {
    margin-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cmn_column_list_item {
    width: 45.7972%;
    margin: 0 0 15px;
  }
}
/* ========================================

page_title

======================================== */
.page_title {
  color: var(--c_orange);
  max-width: 1100px;
  position: relative;
  margin: 0 auto 82px;
  padding-top: 82px;
  padding-bottom: 18px;
  border-bottom: 2px solid #c4c4c4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_title::before {
  width: 136px;
  height: 2px;
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: var(--c_orange);
  z-index: 2;
}
.page_title::after {
  width: 82px;
  height: 90px;
  display: block;
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
  z-index: 2;
}
.page_title h1 {
  font-size: 30px;
  letter-spacing: 0.1em;
}
.page_title .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (max-width: 800px) {
  .page_title {
    width: 86.4307%;
    margin-bottom: 30px;
    padding: 0 0 12px;
  }
  .page_title h1 {
    font-size: 18px;
  }
  .page_title .en {
    font-size: 10px;
    scale: 0.8;
    margin-bottom: 6px;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}
/* ========================================

hl01

======================================== */
.hl01 {
  color: var(--c_orange);
  font-size: 24px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hl01::before {
  width: 4px;
  height: 22px;
  display: block;
  content: '';
  margin-right: 24px;
  background-color: var(--c_orange);
  translate: 0 2px;
}

@media screen and (max-width: 800px) {
  .hl01 {
    font-size: 15px;
  }
  .hl01::before {
    width: 3px;
    height: 14px;
    margin-right: 15px;
    translate: 0 1px;
  }
}
@media screen and (min-width: 801px) {
  .cmn_link {
    padding: 105px 0;
    background-color: #e4e4e4;
  }
}
/* ========================================

intro

======================================== */
.intro {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: -100px;
  padding: 192px 0 206px;
  background-image: url(../img/initiative/intro_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.intro::before {
  width: 100%;
  height: 50px;
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/initiative/intro_bg_bottom.png);
  background-repeat: repeat-x;
  background-position: 50% 0%;
  background-size: auto 100%;
  z-index: 2;
}
.intro_inner::before {
  width: 244px;
  height: 446px;
  display: block;
  content: '';
  position: absolute;
  right: calc(50% + 318px);
  bottom: 0;
  background-image: url(../img/initiative/intro_illust01.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  z-index: 3;
}
.intro_inner::after {
  width: 438px;
  height: 311px;
  display: block;
  content: '';
  position: absolute;
  left: calc(50% + 230px);
  bottom: 0px;
  background-image: url(../img/initiative/intro_illust02.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  z-index: 1;
}
.intro h1 {
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  height: 38px;
  margin-bottom: 40px;
  background-image: url(../img/initiative/intro_title_bg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro h2 {
  text-align: center;
  margin-bottom: 40px;
}
.intro h2 img {
  width: 428px;
}
.intro .txt {
  font-size: 18px;
  line-height: 1.94;
  letter-spacing: 0.18em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .intro {
    padding: 149px 0 220px 0;
  }
  .intro_inner::before {
    width: 105px;
    height: 192px;
    right: auto;
    left: 20px;
  }
  .intro_inner::after {
    width: 280px;
    height: 199px;
    left: auto;
    right: -28px;
    bottom: -10px;
  }
  .intro h1 {
    font-size: 15.5px;
    font-weight: 400;
    height: 28px;
    margin-bottom: 32px;
    background-image: url(../img/initiative/intro_title_bg_sp.png);
  }
  .intro h2 {
    margin-bottom: 25px;
  }
  .intro h2 img {
    width: 288px;
  }
  .intro .txt {
    font-size: 16px;
    line-height: 1.875;
    width: 78.6667%;
    margin: 0 auto;
  }
}
/* ========================================

point

======================================== */
.point {
  position: relative;
  padding: 110px 0 160px;
  background-color: #fff0d7;
  z-index: 1;
}
.point_list {
  max-width: 1000px;
  margin: 0 auto;
}
.point_list_item {
  position: relative;
  padding: 145px 0 85px;
  background-color: #fff;
  border-radius: 15px;
}
.point_list_item:not(:last-of-type) {
  margin-bottom: 75px;
}
.point_list_item h2 {
  color: var(--c_orange);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 42px;
}
.point_list_item .icon {
  width: 92px;
  position: absolute;
  top: -32px;
  left: 50%;
  translate: -50% 0;
}
.point_list_item .txt {
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.06em;
  max-width: 750px;
  margin: 0 auto 40px;
}
.point_list_item .box_img {
  max-width: 750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.point_list_item .box_img .img {
  width: 48%;
}
.point_list_item .box_img .img img {
  border-radius: 12.5px;
}

@media screen and (max-width: 800px) {
  .point {
    padding: 62px 0 56px;
  }
  .point_list {
    width: calc(100% - 36px);
  }
  .point_list_item {
    padding: 125px 0 46px;
    border-radius: 20px;
  }
  .point_list_item:not(:last-of-type) {
    margin-bottom: 56px;
  }
  .point_list_item h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .point_list_item .icon {
    width: 92px;
    height: 125px;
    top: -30px;
  }
  .point_list_item .txt {
    width: 86.1357%;
    line-height: 2;
    letter-spacing: 0.06em;
    margin-bottom: 25px;
  }
  .point_list_item .box_img {
    width: 86.1357%;
    margin: 0 auto;
    display: block;
  }
  .point_list_item .box_img .img {
    width: 100%;
  }
  .point_list_item .box_img .img:not(:last-of-type) {
    margin-bottom: 24px;
  }
}

/*# sourceMappingURL=initiative.css.map */