@charset "UTF-8";
/******
フォント

Noto Sans JP
font-family: "Noto Sans JP", sans-serif;

M Plus Rounded 1c
font-family: m-plus-rounded-1c, sans-serif;
font-weight: 400;
font-style: normal;

DinRound Bold
font-family: din-2014-rounded-variable, sans-serif;
font-weight: 700;
font-style: normal;

*******/

/* -------------------------------------
common
------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  color: #000;
  overflow-wrap: break-word;
}

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

.hover--opacity {
  transition: opacity 0.3s;
}
.hover--opacity:hover {
  opacity: 0.7;
}

a.sptel {
  cursor: default;
  pointer-events: none;
}

.ilblk {
  display: inline-block;
}

.sp {
  display: none;
}

.inner-448 {
  width: 92%;
  margin: 0 auto;
}

.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.br-980 {
  display: none;
}
.ttl {
  margin-bottom: 19px;
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  font-size: clamp(25px, 2.29vw, 33px);
  color: #fff;
  text-align: center;
}
.txt {
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
}

.bg-green {
  background-color: #00a461;
}
.bg-green02 {
  background: #f5fff5;
}
.bg-white {
  background-color: #fff;
}
.top {
  width: 55px;
  position: fixed;
  bottom: 10px;
  right: 14px;
  z-index: 99;
}

@media screen and (max-width: 980px) {
  .br-980 {
    display: block;
  }
}

/* -------------------------------------
bg
------------------------------------- */

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.bg::before,
.bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease-in-out;
}

.bg::before {
  background-image: url("../imgs/bg01.jpg");
  opacity: 1;
  z-index: 1;
}

.bg::after {
  background-image: url("../imgs/bg02.jpg");
  opacity: 0;
  z-index: 2;
}
.bg.bg-change::after {
  opacity: 1;
}
.bg.bg-change::before {
  opacity: 0;
}
/* --------------------------------
left_blk
--------------------------------- */
.left_blk {
  width: 100%;
  height: auto;
  flex: 1;
  order: 1;
  position: relative;
}

.left_fix {
  position: fixed;
  top: 27%;
  left: 9%;
  /* z-index: 2; */
}
.left__title {
  margin-bottom: 10px;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(33px, 3.472vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-align: center;
}
.left__title--big {
  display: block;
  margin-bottom: 28px;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(35px, 4.166vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}
.left__txt {
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(14px, 1.111vw, 16px);
  font-weight: 400;
  line-height: 2.47;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1070px) {
  .left_fix {
    left: 2%;
  }
}
@media screen and (max-width: 860px) {
  .left_blk {
    display: none;
  }
}

/* --------------------------------
center_blk
--------------------------------- */
.center_blk {
  width: 490px;
  margin-right: 16%;
  /* box-shadow: 0 0 8px gray; */
  position: relative;
  overflow: hidden;
  z-index: 0;
  /* background: #fff; */
  order: 2;
}
.center_blk header {
  width: 100%;
}

.mv {
  height: 100vh;
  min-height: 800px;
  background: url(../imgs/fv.jpg) center center / cover no-repeat;
  position: relative;
}
.mv__logo.--pc {
  max-width: 416px;
  margin: 0 auto;
  padding-top: 86px;
}
.mv__logo.--sp {
  display: none;
  width: 90%;
  max-width: 407px;
  padding-top: 186px;
  margin: 0 auto;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
}

/* ====== sp MENU ======= */
/* 追加 */

.ham {
  width: 55px;
  height: 55px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  z-index: 9999;
  /* display: none; */
  position: fixed;
  top: 19px;
  right: 14px;
}

.ham__lineWrapper {
  position: relative;
  width: 20px;
  height: 14px;
}

.ham__lineWrapper span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00a461;
  position: absolute;
  left: 50%;
  transition: 0.3s;
}

.ham__lineWrapper span:nth-child(1) {
  transform: translateX(-50%);
  top: 0px;
}

.ham__lineWrapper span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ham__lineWrapper span:nth-child(3) {
  transform: translateX(-50%);
  bottom: 0px;
}

.ham.open {
}

.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(33deg);
  top: 50%;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}
.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-33deg);
  top: 50%;
}

.header__inner {
  width: 100%;
}
.header__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header__bnr {
  max-width: 330px;
  background: #fff;
  padding: 15px;
}
.header__bnr .furusato__ttl {
  /* background: #fff; */
  font-size: clamp(14px, 1.25vw, 18px);
  /* color: #00a461; */
}

.header__nav-list:last-of-type {
  padding-bottom: 90px;
}
.header__nav-list + .header__nav-list {
  padding-top: 40px;
  border-top: 2px solid #fff;
}
.header__nav-listItem {
  margin-bottom: 17px;
}
.header__nav-listLink {
  display: block;
  width: fit-content;
  padding: 5px 5px 0 5px;
  font-family: din-2014-rounded-variable, sans-serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  transition: 0.4s;
  text-decoration: none;
}
.header__nav-listLink .ja {
  display: block;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.header__spWrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__navWrap {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  padding-top: 67px;
  background-color: #00a461;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -99;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.header__navWrap.panelactive {
  opacity: 1;
  pointer-events: all;
  z-index: 999;
}
/*ナビゲーションの縦スクロール*/
.header__navWrap.panelactive .header__navScroll {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header__navInner {
  flex-direction: column;
  align-items: flex-start;
  /* max-width: 290px; */
  max-width: 700px;
  min-height: 350px;
  padding-top: 16px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 50px;
  margin: 0 auto;
}

@media screen and (max-width: 1360px) {
  .center_blk {
    margin-right: 2%;
  }
}
@media screen and (max-width: 860px) {
  .center_blk {
    margin-right: 0;
    margin: 0 auto;
  }
  .mv {
    background: url(../imgs/fv_sp.jpg) center center / cover no-repeat;
  }
  .mv__logo.--pc {
    display: none;
  }
  .mv__logo.--sp {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .header__nav {
    flex-direction: column;
  }
  .header__navInner {
    max-width: 290px;
  }
  .header__bnr {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 520px) {
  .center_blk {
    width: 100%;
  }
}

/* --------------------------------
intro
--------------------------------- */
.intro {
  /* padding: 41px 15px; */
}
.intro__wrap {
  padding: 60px 0 39px;
}
.intro__ttl {
  max-width: 284px;
  margin: 0 auto 46px;
}
.intro__catch {
  margin-bottom: 60px;
  font-size: clamp(15px, 1.108vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.65;
  text-align: center;
}
.intro__txt {
  font-weight: 400;
  font-size: clamp(14px, 1.108vw, 17px);
  letter-spacing: 0.06em;
  line-height: 1.65;
}
.intro__txt + .intro__txt {
  margin-top: 34px;
}
.intro__txt:last-of-type {
  margin-bottom: 74px;
}
.intro__container {
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
}

.intro__box01 {
  grid-area: 1 / 1 / 2 / 3;
}
.intro__box02 {
  grid-area: 2 / 1 / 3 / 2;
}
.intro__box03 {
  grid-area: 2 / 2 / 3 / 3;
}

/* --------------------------------
experience
--------------------------------- */
.experience {
  padding-bottom: 116px;
}
.experience .mt-10 {
  margin-top: -10px;
}
.experience__wrap {
  padding: 44px 0 166px;
}
.experience .ttl {
  max-width: 298px;
  margin: 0 auto 34px;
}

/* .experience__txt--gold {
  max-width: 400px;
  margin: 0 auto 28px;
} */
.experience__txt--white {
  font-weight: 700;
  font-size: clamp(17px, 1.46vw, 21px);
  letter-spacing: 0.06em;
  line-height: 1.61;
  color: #fff;
  text-align: center;
}
.experience__box {
  margin-top: -58px;
}
.experience__pic + .experience__pic {
  margin-top: 20px;
}
.experience__pic:last-of-type {
  margin-bottom: 32px;
}
.experience__deco {
  position: relative;
}
.experience__deco::before {
  display: block;
  content: "";
  max-width: 178px;
  width: 39%;
  padding-top: 26%;
  background: url(../imgs/experience_deco.png) center center / cover no-repeat;
  position: absolute;
  top: -14%;
  left: -3%;
}
/* --------------------------------
flow
--------------------------------- */
.content_area {
  width: 100%;
}

.tab-container {
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.tab {
  width: calc(100% / 2 - 5px);
  padding: 12px 5px 6px;
  background-color: #66c9a0;
  cursor: pointer;
  font-size: clamp(18px, 1.597vw, 23px);
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.tab.active {
  background-color: #fff;
  color: #00a461;
}
.content-container {
  padding-top: 108px;
  border-left: 1px solid #000;
  position: relative;
}
.content-container::before {
  display: block;
  content: "(START)";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 1px;
  left: 7px;
}
.content {
  display: none; /*必須*/
}
.content.show {
  display: block; /*必須*/
}
.flow {
  padding: 72px 0 100px;
}
.flow .ttl {
  margin-bottom: 33px;
}
.flow__ttlInner {
  width: 92%;
  margin: 0 auto 70px;
}
.flow__txt {
  color: #fff;
  text-align: center;
}
.flow__contentBox {
  padding-top: 60px;
  /* padding-bottom: 292px; */
  padding-bottom: 50px;
}
.flow__list {
  padding-left: 35px;
}
.flow__item + .flow__item {
  margin-top: 39px;
}
.flow__itemTtl {
  padding-left: 13px;
  margin-bottom: 18px;
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.66vw, 24px);
  position: relative;
}
.flow__itemTtl::before {
  display: block;
  content: "";
  width: 36px;
  height: 7px;
  background: url(../imgs/pin.png) center center / cover no-repeat;
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.flow__itemTtl .num {
  display: inline-block;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(20px, 2.36vw, 34px);
  color: #00a461;
}
.flow__pic {
  margin-bottom: 18px;
}
.flow .txt + .flow__pic {
  margin-top: 18px;
}

/* --------------------------------
message
--------------------------------- */
.message {
  position: relative;
}
.message__bg {
  width: 100%;
  height: 250px;
  box-shadow: #00a461 0px 1px 0px;
  border-radius: 50% / 100% 100% 0px 0px;
  background: #00a461;
}
.message__wrap {
  background: #00a461;
  padding-bottom: 90px;
}
.message__head {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  text-align: center;
}

.message__ttl--en {
  color: #fff;
  font-size: clamp(11px, 1.041vw, 15px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
}
.message__ttl--ja {
  color: #fff;
  font-size: clamp(24px, 2.361vw, 34px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  line-height: 1.24;
}
.message__fittingText1 {
  margin-bottom: 1em;
  font-size: clamp(19px, 1.944vw, 28px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  line-height: 1.69;
  color: #fff;
}
.message__fittingText2 {
  margin-bottom: 30px;
  font-size: clamp(16px, 1.319vw, 19px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  line-height: 1.74;
  color: #fff;
}
.message__img {
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .message__bg {
    height: 180px;
  }
  .message__head {
    top: 50px;
  }
}
/* --------------------------------
made
--------------------------------- */
.made {
  padding: 72px 0 50px;
}
.made__item + .made__item {
  margin-top: 39px;
}
.made__pic {
  margin-bottom: 18px;
}
/* --------------------------------
toda
--------------------------------- */
.toda {
  margin-bottom: 65px;
}
.toda__wrap {
  background-color: #ffffda;
  padding: 50px 0 95px;
  border-radius: 30px;
}

.toda__head {
  position: relative;
  padding-bottom: 45px;
  margin-bottom: 20px;
}
.toda__ttl--en,
.toda__ttl--ja {
  color: #00a461;
}
.toda__ttl--en {
  margin-bottom: 5px;
  font-size: clamp(11px, 1.041vw, 15px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
}
.toda__ttl--ja {
  font-size: clamp(20px, 2.083vw, 30px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.21;
}
.toda__character {
  width: clamp(180px, 15.41vw, 222px);
  position: absolute;
  top: 12px;
  right: 0;
}
.dota__box {
  margin-bottom: 50px;
}
.dota__subttl {
  font-size: clamp(18px, 1.736vw, 25px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  line-height: 1.53;
  margin-bottom: 25px;
  text-align: center;
  color: #00a461;
}
.dota__box.box1 {
  margin-bottom: 100px;
}
.dota__box.box3 {
  margin-bottom: 0;
}
.toda__img {
  margin-bottom: 20px;
  position: relative;
}
.box2 .toda__img {
  margin-bottom: 32px;
}
.box3 .toda__img {
  margin-bottom: 32px;
}
.toda__imgCap {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  width: 90%;
  max-width: 378px;
  padding: 5px 0;
  background-color: #00a461;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 1.388vw, 20px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
}
.toda__dlWrap {
  display: flex;
  justify-content: start;
  align-items: start;
}
.toda__dl--ttl {
  width: 75px;
}
.toda__dl--txt {
  width: calc(100% - 75px);
}
a.toda__tel {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 1160px) {
  .dota__box.box1 {
    margin-bottom: 50px;
  }
  .toda__wrap {
    padding-bottom: 50px;
  }
}

/* --------------------------------
custom
--------------------------------- */
.custom {
  padding: 90px 0;
}
.custom__ttl {
  margin-bottom: 32px;
}
.custom__topTxt {
  margin-bottom: 72px;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(16px, 1.319vw, 19px);
  font-weight: 500;
  line-height: 1.75;
}
.custom__numBox {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  position: relative;
}
.custom__numBox::before {
  display: block;
  content: "";
  width: 93%;
  height: 2px;
  background: #33a823;
  position: absolute;
  bottom: 18%;
  right: 0;
}
.custom__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 5.55vw, 80px);
  height: clamp(50px, 5.55vw, 80px);
  border-radius: 50%;
  background: #33a823;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(14px, 1.527vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.custom__heading {
  flex: 1;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 500;
  color: #33a823;
}
.custom__pic {
  margin-bottom: 20px;
}
.custom__txt {
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 500;
  line-height: 1.75;
}
.custom__slide .swiper-button-prev,
.custom__slide .swiper-button-next {
  width: 40px; /* 画像サイズに合わせて調整 */
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.custom__slide .swiper-button-prev {
  background-image: url("../imgs/custom_back.png");
}
.custom__slide .swiper-button-next {
  background-image: url("../imgs/custom_next.png");
}

/* デフォルトの矢印アイコンを消す */
.custom__slide .swiper-button-prev::after,
.custom__slide .swiper-button-next::after {
  display: none;
}

/* --------------------------------
furusato
--------------------------------- */
.furusato {
  margin-bottom: 70px;
}
.furusato.furusato01 {
  margin-bottom: 0;
}

/* .furusato.furusato01 .furusato__wrap {
  padding-top: 100px;
}
.furusato.furusato02 .furusato__wrap {
  padding-top: 100px;
} */

.furusato__wrap {
  padding-top: 100px;
  padding-bottom: 50px;
  /* border-radius: 30px; */
}
.furusato__ttl {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 30px;
  padding: 13px 0;
  background-color: #00a461;
  color: #fff;
  font-size: clamp(18px, 1.875vw, 27px);
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
}
.furusato__list {
  max-width: 300px;
  margin: 0 auto;
}
.furusato__item {
  padding: 15px 0;
  position: relative;
}
.furusato__item:not(:last-of-type) ::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: url(../imgs/line.png);
  position: absolute;
  bottom: 0;
  left: 0;
}
.furusato__item img {
  object-fit: contain;
  max-height: 85px;
}

@media screen and (max-width: 1160px) {
  .furusato.furusato02 .furusato__wrap {
    padding-top: 70px;
  }
}

/* --------------------------------
footer
--------------------------------- */
footer {
  margin-bottom: 215px;
  box-shadow: none;
}

.footer_logo {
  width: 179px;
  margin: 0 auto 20px;
}
.footer_txt {
  margin: 0 auto;
  width: 100%;
  max-width: 366px;
  text-align: center;
}

@media screen and (max-width: 1160px) {
  footer {
    margin-bottom: max(100px, 14.93vw);
  }
}
