@charset "UTF-8";
/* ------------------------------


    mixin


------------------------------ */
/* ------------------------------


    reset


------------------------------ */
 :root {
  --font-rubik: "Rubik", sans-serif;
  --font-commissioner: "Commissioner", sans-serif;
  --color-black: #000;
  --color-green: #036f03;
  --color-green02: #34792F;
  --color-green03: #06C755;
}

/* html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
    font-size: clamp(8px, 0.6944444444vw, 10px);
  }
}
@media screen and (max-width: 767.9px) {
  html {
    font-size: 2.5641025641vw;
  } 
}

/* *, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", メイリオ, Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
} */

/* h2 {
  font-size: 4rem;
  font-weight: 700;
} */
/* 
h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

h4 {
  font-size: 2.4rem;
  font-weight: 700;
} */

/* p {
  font-size: 1.6rem;
  line-height: 2;
} */

/* input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
} */

/* select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object, video {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}  */

/* ------------------------------

    base

------------------------------ */
body {
  /* color: #fff; */
  font-size: 1.6rem;
  text-align: left;
  min-height: 100vh;
}

section {
  position: relative;
  z-index: 1;
}

.wrap {
  width: 96%;
  max-width: 104.5rem;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

.h-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
}

.v-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
}

.flex {
  display: flex;
  justify-content: space-between;
}

.rubik {
  font-family: "Rubik", sans-serif;
}

.color-green {
  color: var(03);
}

@media screen and (min-width: 768px) {
  .fade {
    transition: opacity 0.3s ease;
  }
  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .wrap {
    width: 87.7%;
    padding: 0;
  }
  input, textarea, select, .select {
    font-size: max(1.4rem, 16px) !important;
  }
  .pc_only {
    display: none;
  }
}
/* ------------------------------

    header

------------------------------ */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  color: var(--color-black);
  border-bottom: 1px solid #ccc; /* 追加するボーダー */
  padding-top: 0.5rem;
}
#header .wrap {
  width: 100%;
  max-width: 140rem;
  height: 7rem;
  padding: 1rem 3rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .wrap .logo {
  position: relative;
  width: 9rem;
}
#header .wrap .logo span {
  position: absolute;
  left: 6.2rem;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
#header nav {
  display: flex;
  align-items: center;
}
#header nav .tel {
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  margin-right: 2rem;
}
#header nav .tel .rubik {
  font-size: 3.2rem;
  font-weight: bold;
}
#header nav .btn_ico a {
  box-shadow: 1px 5px 1px rgba(0, 0, 0, 0.22);
  padding-right: 0.5rem;
}
#header nav .btn_ico a:hover {
  box-shadow: 1px 5px 1px rgba(0, 0, 0, 0.22);
}

@media screen and (max-width: 767.9px) {
  #header {
    position: static;
  }
  #header .wrap {
    height: 4rem;
  }
  #header .wrap .logo {
    width: 6rem;
  }
  #header .wrap .logo span {
    position: absolute;
    left: 4.7rem;
    font-size: 2.28rem;
    transform: scale(0.51);
    transform-origin: left top;
  }
}
/* ------------------------------

    footer

------------------------------ */
/* 既存のCSS */
#footer {
  padding: 2rem 0 2rem;
  color: var(--color-black);
  background-color: rgb(232, 232, 232);
}
#footer .logo a {
  width: 4rem; /* デフォルト（モバイル）サイズ */
}
#footer .info {
  font-size: 1.4rem;
  margin: 1em 0;
}
#footer .btn {
  margin: 1em 0;
}
#footer .btn a {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 0.5em 1em;
}
#footer .sns {
  display: flex;
  margin: 1em 0;
}
#footer .copy {
  font-size: 1.2rem;
}

@media screen and (max-width: 767.9px) {
  #footer {
    margin-bottom: 7rem;
  }
  main:has(#contact:first-child) + #footer {
    margin-bottom: 0;
  }
}
.fixed_nav {
  position: fixed;
  left: 0;
  bottom: 10px;
  z-index: 100;
  width: 100%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
}
.fixed_nav .tel {
  width: 6rem;
}
.fixed_nav .tel img {
  width: 100%;
}
.fixed_nav .btn_ico {
  flex: 1 1 auto;
  padding-left: 2vw;
}
.fixed_nav .btn_ico a {
  width: 100%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
}

/* 画像を親要素にフィットさせる */
#footer .logo a img {
  width: 5rem;
  height: auto;
  display: block;
}

#footer .sns a img {
  width: 100%;
  height: auto;
  display: block;
}

/* ロゴとSNSアイコンの親要素の幅をレスポンシブに調整 */
#footer .logo a {
  width: 4rem; /* デフォルト（モバイル）サイズ */
}

#footer .sns a {
  width: 4rem; /* デフォルト（モバイル）サイズ */
}

/* タブレット以上の画面サイズ */
@media (min-width: 768px) {
  #footer .logo a {
    width: 8rem; /* タブレット向けサイズ */
  }
  #footer .sns a {
    width: 6rem; /* タブレット向けサイズ */
  }
  
  /* フレックスレイアウトの調整 */
  #footer .wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

#footer .additional-info {
  font-size: 1.2rem; /* 文字サイズを小さめに設定 */
  color: #666666; /* グレー色に設定 */
  margin-top: 1.5em; /* 上部に余白を追加 */
}

/* デスクトップ以上の画面サイズ */
@media (min-width: 1024px) {
  #footer .logo a {
    width: 12rem; /* デスクトップ向けサイズ */
  }
  #footer .sns a {
    width: 8rem; /* デスクトップ向けサイズ */
  }
}

/* SNSアイコンの間隔を調整 */
#footer .sns a {
  margin: 0 0.5rem; /* 左右にマージンを追加 */
}

/* ------------------------------

    common

------------------------------ */
.heading_block {
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 5.5rem;
}

.heading_block > span {
  display: block;
}

.heading_block .heading_block__en {
  position: relative;
  left: -0.02em;
  font-size: 10rem;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  font-family: var(--font-commissioner);
}

@media screen and (max-width: 767.9px) {
  .heading_block {
    font-size: 2rem;
    margin-bottom: 3.1rem;
  }
  .heading_block .heading_block__en {
    font-size: 6rem;
    margin-bottom: 0.22rem;
  }
}
.btn_ico a, .btn_ico input {
  background: var(--color-green03) url(img/LINE_button2.png) no-repeat right 1.5em center/1em auto;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 20rem;
  height: 4rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.sec_tit {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 2.28rem;
}
@media screen and (max-width: 767.9px) {
  .sec_tit {
    font-size: 2.6rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
  }
}

.sec_illust,
.sec_visual {
  position: absolute;
  z-index: -1;
  max-width: 1000rem;
}

.bg_square_deco {
  --size: 130rem;
  position: absolute;
  display: block;
  width: var(--size);
  max-width: 1000rem;
  height: var(--size);
  transform: rotate(45deg);
  z-index: -10;
  pointer-events: none;
}

/* ------------------------------
    slider
------------------------------ */
@media screen and (max-width: 767.9px) {
  .slider_sp {
    opacity: 0;
    display: block !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }
  .slider_sp.slick-initialized {
    opacity: 1;
  }
  .slider_sp .slick-track {
    padding: 0.5rem 0;
    display: flex;
    align-items: stretch;
  }
  .slider_sp .slick-slide {
    height: auto;
    margin: 0 0.92rem;
  }
  .slider_sp .slick-slide > div,
  .slider_sp .slick-slide > div > div {
    height: 100%;
  }
  /***   dots   ***/
  .slider_sp .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.44rem auto 2rem;
    column-gap: 1.7rem;
    max-width: 100%;
  }
  .slider_sp .slick-dots li {
    --size: 1.6rem;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    display: block;
    background: #D9D9D9;
    opacity: 1;
    transition: background-color 0.51s ease-in-out;
    cursor: pointer;
  }
  .slider_sp .slick-dots li.slick-active {
    background: #fff;
  }
  .slider_sp .slick-dots li button {
    font-size: 0px;
    display: none;
  }
  .slick-dots {
    margin-top: 4rem;
  }
}
/* ------------------------------

    main

------------------------------ */
main {
  padding-top: 11.8rem;
  overflow-x: hidden;
  background: var(--color-green03);
}
@media screen and (max-width: 767.9px) {
  main {
    padding-top: 0;
  }
}

/* ------------------------------
    ofr
------------------------------ */
.sec_ofr {
  position: relative;
  z-index: 50;
}
.sec_ofr .wrap {
  padding: 10rem 0;
}
.sec_ofr .ofr_box {
  position: relative;
  width: 100%;
  max-width: 87rem;
  padding: 4.4rem 2rem;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  text-align: center;
  color: var(--color-black);
}
.sec_ofr .ofr_box > .box_corner {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 0;
}
.sec_ofr .ofr_box > .box_corner::before, .sec_ofr .ofr_box > .box_corner::after {
  --border: 1.1rem solid #fff;
  --margin: -2.9rem;
  --size: 7.7rem;
  content: "";
  position: absolute;
  display: block;
  width: var(--size);
  height: var(--size);
  border: var(--border);
}
.sec_ofr .ofr_box > .box_corner:first-of-type {
  top: 0;
}
.sec_ofr .ofr_box > .box_corner:first-of-type::before {
  top: var(--margin);
  left: var(--margin);
  border-right: none;
  border-bottom: none;
}
.sec_ofr .ofr_box > .box_corner:first-of-type::after {
  top: var(--margin);
  right: var(--margin);
  border-left: none;
  border-bottom: none;
}
.sec_ofr .ofr_box > .box_corner:last-of-type {
  bottom: 0;
}
.sec_ofr .ofr_box > .box_corner:last-of-type::before {
  bottom: var(--margin);
  left: var(--margin);
  border-right: none;
  border-top: none;
}
.sec_ofr .ofr_box > .box_corner:last-of-type::after {
  bottom: var(--margin);
  right: var(--margin);
  border-left: none;
  border-top: none;
}
.sec_ofr .ofr_box .heading {
  color: var(--color-green03);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.sec_ofr .btn_ico {
  margin: 1.6rem 0 2rem;
}
.sec_ofr .btn_ico a {
  background: #006400 url(../img/ico_btn.svg) no-repeat right 1.5em center/1em auto;
  width: 34rem;
  height: 7rem;
  font-size: 2rem;
}
.sec_ofr .tel {
  line-height: 1.3;
  font-size: 1.6rem;
}
.sec_ofr .tel .rubik {
  font-size: 4rem;
  font-weight: bold;
}

@media screen and (max-width: 767.9px) {
  .sec_ofr .wrap {
    padding: 5rem 0;
  }
  .sec_ofr .ofr_box {
    width: 32rem;
    padding: 3.1rem 0;
  }
  .sec_ofr .ofr_box > .box_corner::before, .sec_ofr .ofr_box > .box_corner::after {
    --border: 0.5rem solid #fff;
    --margin: -0.87rem;
    --size: 1.5rem;
  }
  .sec_ofr .ofr_box .heading {
    font-size: 2rem;
  }
  .sec_ofr .ofr_box .text {
    font-size: 1.5rem;
    line-height: 1.69;
  }
  .sec_ofr .btn_ico {
    margin: 1.15rem auto;
  }
  .sec_ofr .btn_ico a {
    width: 22.8rem;
    height: 4.5rem;
    font-size: 1.4rem;
  }
  .sec_ofr .tel {
    font-size: 1.19rem;
  }
  .sec_ofr .tel .rubik {
    font-size: 2.3rem;
  }
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959.9px) {
  .tb-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}

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