@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて14pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.sp_only {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color-01: #009E23;
  --main-color-02: #FFF7DB;
  --main-color-03: #FFD8AC;
  --font-color-01: #000000;
  --font-color-02: #354655;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
body {
  background: url(../images/main-bg.png) center center/100% repeat-y;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.header {
  position: fixed;
  z-index: 9999;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.hamburger {
  position: fixed;
  z-index: 999;
  top: 30px;
  right: 30px;
  background: white;
  width: 50px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 17.5%;
  height: 2px;
  width: 65%;
  border-radius: 100vh;
  background: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 30%;
}
.hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}
.hamburger span:nth-child(3) {
  bottom: 30%;
}
.hamburger.is-open span:nth-child(1) {
  width: 13px;
  top: 41%;
  left: 28px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.hamburger.is-open span:nth-child(3) {
  width: 13px;
  bottom: 42%;
  left: 28px;
  -webkit-transform: rotate(30deg);
  transform: rotate(-30deg);
}

.g-nav {
  width: 1000px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 997;
  /* -webkit-transform: translateX(50%); */
  -webkit-transform: translate(100%, 39%);
          transform: translate(100%, 39%);
  background: rgb(0, 158, 35);
  border-radius: 83% 58% 60% 70%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-nav.is-open {
  -webkit-transform: translate(47%, 59%);
          transform: translate(47%, 59%);
}

.g-nav-links {
  position: absolute;
  z-index: 998;
  top: 100px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(490px, -100px) rotate(20deg);
          transform: translate(490px, -100px) rotate(20deg);
}
.g-nav-links.is-open {
  -webkit-transform: translate(0%, 0%) rotate(0);
          transform: translate(0%, 0%) rotate(0);
}
.g-nav-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1rem;
}
.g-nav-links ul li {
  text-align: right;
}
.g-nav-links ul li a {
  position: relative;
  display: block;
  font-size: 1rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  background: var(--main-color-01);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.5rem;
  cursor: pointer;
}
.g-nav-links ul li a:hover:before {
  content: "▲";
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-120%) rotate(90deg);
          transform: translateX(-120%) rotate(90deg);
  color: white;
}
.g-nav-links .nav-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** mv
******************************************************************************
----------------------------------------------------------------------------*/
.mv {
  width: 100%;
  aspect-ratio: 1440/726;
  background: url(../images/mv.png) center center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 7%;
}

.mv-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.mv-title-box__inner {
  max-width: 730px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 1.5rem;
}

.sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub-title span {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  background: var(--main-color-01);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.5rem;
}

.title-exp {
  grid-area: 2/1/3/3;
  background: var(--main-color-02);
  font-weight: bold;
  font-size: 1.125rem;
  padding: 1rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.title-exp p:first-child {
  margin-bottom: 1rem;
  line-height: 1.8em;
}

.con1 {
  background: url(../images/con1-bg.png) center top/cover no-repeat;
  padding-top: 12.5rem;
}

.con1-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.con1-box__reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.con1-box__1 {
  position: relative;
  margin-bottom: 3.125rem;
}
.con1-box__1:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: -11%;
  right: 15%;
  width: clamp(150px, 21vw, 352px);
  aspect-ratio: 352/322;
  background: url(../images/con1-deco.png) center center/contain no-repeat;
}

.con1-box__2 {
  position: relative;
  margin-bottom: 3.125rem;
}
.con1-box__2:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: -11%;
  right: 5%;
  width: clamp(70px, 11vw, 133px);
  aspect-ratio: 133/113;
  background: url(../images/illust_bird.png) center center/contain no-repeat;
}
.con1-box__2:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: -11%;
  left: 15%;
  width: clamp(150px, 21vw, 352px);
  aspect-ratio: 352/322;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/con1-deco2.png) center center/contain no-repeat;
}
.con1-box__2 h2:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: -20px;
  left: -16px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: clamp(70px, 15vw, 137px);
  aspect-ratio: 172/197;
  background: url(../images/illust-guitar.png) center center/contain no-repeat;
}

.con1-item {
  width: 100%;
  position: relative;
}
.con1-item h2 {
  position: relative;
  z-index: 2;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1.125rem;
  font-size: 2rem;
  color: white;
  font-weight: 700;
  background: var(--main-color-01);
  margin-left: 2rem;
}
.con1-item .bg-text {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2em;
  z-index: 1;
}
.con1-item .bg-text:before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  inset: 0;
}

.con1-item__1 {
  width: 100%;
  max-width: 748px;
}
.con1-item__1 .bg-text__1 {
  padding: 2.5rem 3.75rem 8.6rem 5.625rem;
}
.con1-item__1 .bg-text__1:before {
  background: url(../images/con1-textbg-1.png) center bottom/contain no-repeat;
  overflow: visible;
}
.con1-item__1 h2 {
  position: relative;
}
.con1-item__1 h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 106px;
  height: 172px;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/hatena-icon.png) center center/contain no-repeat;
}

.con1-item__2 {
  width: 100%;
  max-width: 896px;
}
.con1-item__2 .bg-text__2 {
  padding: 3.5rem 3.75rem 7.4rem 6.625rem;
}
.con1-item__2 .bg-text__2 li {
  list-style: decimal;
}
.con1-item__2 .bg-text__2:before {
  background: url(../images/con1-textbg-2.png) center bottom/contain no-repeat;
}

.con2 {
  padding: 240px 0;
  background: url(../images/con2-bg.png) center top/115% 100% no-repeat, -webkit-gradient(linear, left top, left bottom, from(#73c7af));
  background: url(../images/con2-bg.png) center top/115% 100% no-repeat, linear-gradient(#73c7af);
}
.con2 h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.con2 p.lead {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
.con2 .con2-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.con2 .con2-box__item {
  width: calc((100% - 2rem) / 3);
  padding: 1rem;
  background: white;
}
.con2 .con2-box__item figure {
  aspect-ratio: 16/9;
}
.con2 .con2-box__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.con2 .con2-box__item h3 {
  font-size: 1.25rem;
  min-height: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.con2 .con2-box__item .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.con2 .con2-box__item .address:before {
  content: "";
  display: block;
  width: 13px;
  height: 15px;
  margin-right: 0.375rem;
  background: url(../images/address-icon.png) center center/contain no-repeat;
}
.con2 .con2-box__item .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--font-color-02);
}
.con2 .con2-box__item .tel:before {
  content: "";
  display: block;
  width: 13px;
  height: 15px;
  margin-right: 0.375rem;
  background: url(../images/tel-icon.png) center center/contain no-repeat;
}
.con2 .con2-box:after {
  content: "";
  display: block;
  width: calc((100% - 2rem) / 3);
}
.con2 .con2-box:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: clamp(200px, 25vw, 404px);
  aspect-ratio: 404/388;
  background: url(../images/con2-deco1.png) center center/contain no-repeat;
}

.con3 {
  background: #A2E4DF;
  padding-bottom: 9.375rem;
  position: relative;
}
.con3:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  width: 122px;
  aspect-ratio: 191/121;
  background: url(../images/illust-cloud.png) center center/contain no-repeat;
}

.con3-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 1.25rem;
}
.con3-box .title-area {
  grid-area: 1/1/2/3;
}
.con3-box .title-area h2 {
  font-size: 2rem;
  color: var(--font-color-02);
}
.con3-box__item {
  width: 100%;
  background: white;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.con3-box__item figure {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.con3-box__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.con3-box__item h3 {
  font-size: 1.25rem;
}
.con3-box__item .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.con3-box__item .address:before {
  content: "";
  display: block;
  width: 13px;
  height: 15px;
  margin-right: 0.375rem;
  background: url(../images/address-icon.png) center center/contain no-repeat;
}

.con4 {
  margin-bottom: 1.875rem;
  padding: 8.125rem 0 21.875rem;
  background: url(../images/con4-bg.png) center center/100% 100% no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(50%, #A2E4DF), color-stop(50%, rgba(0, 0, 0, 0)));
  background: url(../images/con4-bg.png) center center/100% 100% no-repeat, linear-gradient(#A2E4DF 50%, rgba(0, 0, 0, 0) 50%);
  position: relative;
}
.con4:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 40px;
  width: 111px;
  aspect-ratio: 111/229;
  background: url(../images/illust-tree.png) center center/contain no-repeat;
}
.con4:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 2654/434;
  background: url(../images/con4-bottom.png) center center/contain no-repeat;
}

.con4-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
}
.con4-box__item {
  width: calc((100% - 10rem) / 3);
}
.con4-box__item .title {
  margin: 0;
  height: 77px;
}
.con4-box__item .thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.con4-box__item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.con4-box__item .text {
  font-weight: bold;
  color: var(--font-color-02);
}
.con4-box__item:nth-child(3n) {
  margin-top: 14.125rem;
  margin-bottom: -14.125rem;
}
.con4-box__item:nth-child(3n-1) {
  margin-top: 5rem;
  margin-bottom: -5rem;
}
.con4-box__item:nth-child(3n-2) {
  margin-top: 0;
}

.con4-title-re {
  position: relative;
}

.con4-titlearea {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.con4-titlearea h2 {
  display: block;
  max-width: 363px;
}
.con4-titlearea h2 img {
  width: 100%;
}
.con4-titlearea__lead {
  text-align: right;
  font-weight: bold;
  color: var(--font-color-02);
}

.ft_bg {
  background: url(../images/illust-footer.png) center 92%/85% no-repeat, -webkit-gradient(linear, left top, left bottom, from(rgba(96, 138, 154, 0.5))), url(../images/footer-bg.png) center bottom/cover no-repeat;
  background: url(../images/illust-footer.png) center 92%/85% no-repeat, linear-gradient(rgba(96, 138, 154, 0.5)), url(../images/footer-bg.png) center bottom/cover no-repeat;
}

.pt_wrap {
  position: fixed;
  right: 10%;
  bottom: 10%;
}

.ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 40.5625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5rem 0 2.5rem;
}

.ft-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 47px;
  margin-bottom: 2.375rem;
}
.ft-box__logo {
  width: 222px;
}
.ft-box__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.ft-box__logo:before {
  content: "";
  position: absolute;
  display: block;
  left: -60px;
  top: -40px;
  width: 73.73px;
  height: 62px;
  background: url(../images/illust-ft-bird.png) center center/contain no-repeat;
}
.ft-box__links-btn-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.btn-border {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.1875rem 1rem;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
  color: white;
  border: solid 1px white;
  border-radius: 100vh;
  font-size: 0.8em;
}
.btn-border--insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 3em;
}
.btn-border--insta span {
  display: inline-block;
  width: 1.5em;
  aspect-ratio: 1/1;
  margin-right: 1em;
  background: url(../images/instagram-icon.png) center center/contain no-repeat;
}

.pagelink-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  color: white;
  margin-bottom: 2rem;
}
.pagelink-box ul li {
  font-weight: bold;
}
.pagelink-box ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0;
}
.pagelink-box ul span {
  display: block;
  height: 1.5rem;
  width: 1px;
  background: white;
}

.ft_copy {
  text-align: center;
  color: white;
}/*# sourceMappingURL=style.css.map */