@charset "UTF-8";
/**
	* clamp関数の文字列を返す
	*
	* @param {Number} $size-at-min-width - 最小画面幅での要素のサイズ (px|rem|emなど)
	* @param {Number} $size-at-max-width - 最大画面幅での要素のサイズ (px|rem|emなど)
	* @param {Number} $min-width [optional] - 最小画面幅 (デフォルト: $min-width-default)
	* @param {Number} $max-width [optional] - 最大画面幅 (デフォルト: $max-width-default)
	* @return {String} CSS clamp関数を含む計算式
	*
	* @description
	* 画面幅に応じて値が滑らかに変化するレスポンシブな値を生成します。
	* 例えば、フォントサイズやマージン、パディングなどの値を画面幅に応じて
	* 自動的に調整することができます。
	*
	* @example
	*   // フォントサイズを16pxから24pxまで可変させる
	*   font-size: clamp-calc(16px, 24px);
	*
	*   // マージンを2remから4remまで可変させる（画面幅768px～1200px）
	*   margin: clamp-calc(2rem, 4rem, 768px, 1200px);
	*
	* @note
	* - 引数の単位は一貫している必要はありません（px, rem等が混在可能）
	* - 内部で全ての値をpxに変換して計算を行います
	* - 返り値は入力された$size-at-min-widthと同じ単位で返されます
	* - 負の値（マイナスマージンなど）にも対応しています
	*
	* @implementation
	* 1. 入力値を全てpxに変換
	* 2. 線形の傾きを計算
	* 3. y軸との交点を計算
	* 4. 必要に応じて最小値と最大値を入れ替え
	* 5. 元の単位に変換して最終的なclamp関数を構築
*/
/**
	* 与えられた値をピクセル(px)単位に変換する関数
	*
	* @param {Number} $value - 変換したい値（rem または px）
	* @return {Number} 変換後のピクセル値
	*
	* @example
	*   convert-to-px(1.5rem)  // 24px ($base-font-size が 16px の場合)
	*   convert-to-px(20px)    // 20px (そのまま返される)
	*   convert-to-px(2em)     // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - rem単位の場合: $base-font-sizeを基準にしてpxに変換
	* - px単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
 */
/**
	* ピクセル(px)単位の値をrem単位に変換する関数
	*
	* @param {Number} $px-value - 変換したい値（px または rem）
	* @return {Number} 変換後のrem値
	*
	* @example
	*   convert-to-rem(16px)   // 1rem ($base-font-size が 16px の場合)
	*   convert-to-rem(24px)   // 1.5rem ($base-font-size が 16px の場合)
	*   convert-to-rem(1.5rem) // 1.5rem (そのまま返される)
	*   convert-to-rem(2em)    // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - px単位の場合: $base-font-sizeを基準にしてremに変換
	* - rem単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @note
	* - レスポンシブデザインに適したrem単位への変換に使用
	* - $base-font-size はグローバルで定義されている必要がある
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
 */
/*
	* 補助関数：小数点以下の指定した桁数で四捨五入する関数
*/
/*
	* 補助関数：累乗を計算する関数
	* 引数：$number 底となる数
	*      $exponent 指数（正の整数のみ対応）
 */
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 100px;
}
@media (max-width: 1300px) {
  :target {
    scroll-margin-top: 70px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .wrapper {
    max-width: 600px;
    padding: 0 5%;
  }
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 280px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 41px;
  gap: 20px;
  background-color: #009B63;
  border-radius: 50px;
}

.btn::after {
  content: "";
  position: relative;
  display: block;
  width: 7px;
  height: 14px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn_center .btn {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .btn:hover {
    background-color: #F76F14;
  }
}

@media (min-width: 768px) {
  .btn:hover::after {
    right: -5px;
  }
}

.text_link {
  display: inline-block;
}

.text_link::after {
  content: "";
  display: block;
  width: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  border-bottom: 1px solid #F76F14;
  margin: auto;
}

@media (min-width: 768px) {
  .text_link:hover::after {
    width: 100%;
  }
}

.body.is_open {
  overflow: hidden;
}

/* Header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  height: 150px;
  top: 0;
  left: 0;
  z-index: 100;
  padding-top: 33px;
  background-color: #fff;
}
@media (max-width: 1300px) {
  .header {
    height: 100px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0;
  }
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.header.header_fixed {
  height: 100px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1300px) {
  .header.header_fixed {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
    padding: 0;
  }
}

.customize-support .header {
  top: 32px;
}
@media (max-width: 768px) {
  .customize-support .header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .customize-support .header.header_fixed {
    top: 0;
  }
}

.header_fixed {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_logo {
  position: relative;
  max-width: clamp(300px, 279.39px + 6.441vw, 376px);
  width: 100%;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 15px;
  z-index: 1;
}
@media (max-width: 1300px) {
  .header_logo {
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    max-width: unset;
    height: 30px;
    margin-top: 16px;
  }
}

.header_logo a {
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .header_logo a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .header_logo img {
    width: auto;
    height: 30px;
  }
}

.header_nav {
  position: relative;
  display: block;
}
@media (max-width: 1300px) {
  .header_nav {
    display: none;
  }
}

.header_inquiry_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header_inquiry_lang {
  position: relative;
  max-width: 145px;
  width: 100%;
  cursor: pointer;
}

.header_inquiry_lang::before {
  content: "";
  position: absolute;
  display: block;
  width: 19px;
  height: 19px;
  background: url(../images/common/icon_langOrange.svg) no-repeat center center/contain;
  top: 0;
  left: 9px;
  bottom: 0;
  margin: auto 0;
}

.header_inquiry_lang::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 12px;
  background: url(../images/common/arrow_rightOrange.svg) no-repeat center center/contain;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.header_inquiry_lang_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #F76F14;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 10px 8px 35px;
  border: 1px solid #F76F14;
  cursor: pointer;
}

.header_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 clamp(10px, 5.932px + 1.271vw, 25px);
  margin-top: 26px;
}

.header_list_link {
  display: inline-block;
  position: relative;
  color: #333;
  font-size: clamp(13px, 12.186px + 0.254vw, 16px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .header_list_link:hover {
    color: #F76F14;
  }
}

.header_list_modal_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 15px;
}

.header_list_modal {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 250px;
  background-color: rgba(0, 95, 163, 0.8);
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
}

.header_list_modal_item a {
  position: relative;
  display: block;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
}

.header_list_modal_item + .header_list_modal_item a {
  border-top: 1px solid #fff;
}

.header_list_modal_wrap .header_list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.header_list_modal_wrap .header_list_link::after {
  content: "";
  position: relative;
  display: block;
  width: 6px;
  height: 12px;
  background: url(../images/common/arrow_rightOrange.svg) no-repeat center center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (min-width: 768px) {
  .header_list_modal_wrap:hover > .header_list_modal {
    -webkit-transform: scaleY(1) translateX(-50%);
            transform: scaleY(1) translateX(-50%);
  }
}

@media (min-width: 768px) {
  .header_list_modal_item a:hover {
    background-color: #fff;
  }
}

/* //header_list_modal */
/* mega_menu */
.mega_menu {
  position: absolute;
  display: none;
  top: 100px;
  right: 170px;
  padding: clamp(20px, 16.203px + 1.186vw, 34px) clamp(15px, 10.39px + 1.441vw, 32px);
  background: #fff;
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
}

.mega_menu_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 690px;
  margin: 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 clamp(15px, 9.034px + 1.864vw, 37px);
}

.megamenu_title {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: clamp(14px, 10.203px + 1.186vw, 28px);
}

.megamenu_title_en {
  display: block;
  font-size: clamp(24px, 19.661px + 1.356vw, 40px);
  font-weight: 600;
  font-family: "Red Hat Display", sans-serif;
  line-height: 85%;
  letter-spacing: 0.02em;
}

.megamenu_title_ja {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 145%;
  padding: 2px 6px 3px;
}

.megamenu_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(10px, 7.559px + 0.763vw, 19px);
}

.megamenu_item {
  position: relative;
  max-width: clamp(120px, 107.797px + 3.814vw, 165px);
  width: 100%;
}

.megamenu_item a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 175%;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .megamenu_item a:hover {
    opacity: 0.8;
  }
}

.megamenu_item_img {
  position: relative;
  max-width: clamp(80px, 61.017px + 5.932vw, 150px);
  max-height: 100px;
  overflow: hidden;
  border-radius: 10px;
}

.megamenu_item_img img {
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .megamenu_item a:hover .megamenu_item_img img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

.megamenu_item_name {
  position: relative;
  margin-top: 14px;
}

/* //mega_menu */
.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #F76F14;
}
@media (max-width: 1300px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 60px;
    height: 60px;
  }
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header_hamburger_bar {
    width: 25px;
    height: 2px;
  }
}

.header_hamburger_bar:nth-of-type(1) {
  top: -24px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -12px;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -10px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -5px;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 4px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 3px;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -4px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_name {
  position: absolute;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_hamburger_name {
    font-size: 12px;
    bottom: 5px;
  }
}

.header_drawer {
  padding: 70px 0 30px;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  background-color: rgba(241, 241, 241, 0.9);
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 0 5%;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list_link {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  font-size: clamp(18px, 1.33vw, 20px);
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid #333;
}

@media (max-width: 768px) {
  .header_drawer_list_menus {
    display: none;
    padding: 10px 0;
  }
}

.header_drawer_list_menu a {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 15px 10px;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    padding: 7px 1em;
  }
}

@media (min-width: 768px) {
  .sp_fixed_lang {
    display: none;
  }
}

.sp_fixed_lang .header_hamburger {
  background-color: #F7F1E9;
  top: 0;
  right: 100px;
}
@media (max-width: 768px) {
  .sp_fixed_lang .header_hamburger {
    width: 60px;
    right: 60px;
  }
}

.header_hamburger_icon {
  position: absolute;
  width: 60px;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_hamburger_icon {
    width: 29px;
  }
}

.sp_fixed_lang .header_hamburger_name {
  color: #F76F14;
}
@media (max-width: 768px) {
  .sp_fixed_lang .header_hamburger_name {
    font-size: 10px;
    bottom: 3px;
  }
}

.lang_drawer {
  position: absolute;
  display: none;
  top: 80px;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .lang_drawer {
    top: 60px;
  }
}

.lang_drawer_lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lang_drawer_list:not(:last-child) {
  border-right: 1px solid #fff;
}

.lang_drawer_list_link {
  position: relative;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  background-color: #F76F14;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .lang_drawer_list_link {
    font-size: 14px;
    padding: 15px 0;
  }
}

main {
  margin-top: 150px;
}
@media (max-width: 1300px) {
  main {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  main {
    margin-top: 60px;
  }
}

/* top - top_mw
------------------------------ */
.top_mw {
  position: relative;
  display: block;
}

.top_mw::before {
  content: "";
  position: absolute;
  display: block;
  max-width: clamp(160px, 144.542px + 4.831vw, 217px);
  width: 100%;
  height: clamp(160px, 144.542px + 4.831vw, 217px);
  background: url(../images/top/top_mw_circle_gradeL.svg) no-repeat center center/contain;
  right: 37vw;
  bottom: 40px;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .top_mw::before {
    max-width: clamp(90px, 71.017px + 5.932vw, 160px);
    height: clamp(90px, 71.017px + 5.932vw, 160px);
    right: 5vw;
  }
}

.top_mw::after {
  content: "";
  position: absolute;
  display: block;
  width: 76%;
  height: 70%;
  background: linear-gradient(125deg, rgb(0, 155, 99) 0%, rgb(44, 186, 124) 100%);
  border-radius: 15px 0 0 15px;
  right: 0;
  bottom: 0;
  z-index: -2;
}
@media (max-width: 768px) {
  .top_mw::after {
    width: 98%;
    height: 42%;
    border-radius: 0 20px 20px 0;
    left: 0;
    right: auto;
  }
}

.top_mw_inner {
  position: relative;
  display: block;
  padding-bottom: 120px;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_mw_inner {
    padding: 30px 0 10%;
  }
}

.top_mw_inner::before {
  content: "";
  position: absolute;
  display: block;
  width: 60%;
  height: 53%;
  background-color: #F7F1E9;
  border-radius: 0 15px 15px 0;
  top: 15%;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .top_mw_inner::before {
    width: 100%;
    height: 43%;
    top: 15%;
    border-radius: 0;
  }
}

.top_mw_inner::after {
  content: "";
  position: absolute;
  display: block;
  max-width: clamp(170px, 151.831px + 5.678vw, 237px);
  width: 100%;
  height: clamp(170px, 151.831px + 5.678vw, 237px);
  background: url(../images/top/top_mw_circle_gradeR.svg) no-repeat center center/contain;
  right: 25px;
  bottom: 27%;
  opacity: 0.8;
  z-index: -1;
}
@media (max-width: 768px) {
  .top_mw_inner::after {
    z-index: -2;
  }
}

@media (max-width: 768px) {
  .top_mw_inner .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.top_mw_catch {
  position: absolute;
  display: block;
  color: #fff;
  font-size: clamp(30px, 21.864px + 2.542vw, 60px);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.21);
  right: clamp(73px, 53.203px + 6.186vw, 146px);
  bottom: -50px;
  z-index: 1;
}
@media (max-width: 1300px) {
  .top_mw_catch {
    font-size: clamp(25px, 20.932px + 1.271vw, 40px);
    right: 10%;
    bottom: -80px;
  }
}
@media (max-width: 768px) {
  .top_mw_catch {
    position: relative;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.05em;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    right: auto;
    bottom: auto;
  }
}

.top_mw_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  border-radius: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top_mw_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: contents;
  }
}

.top_mw_item_left {
  display: grid;
  max-width: clamp(618px, 596.576px + 6.695vw, 697px);
  width: 100%;
  gap: 30px 11px;
  grid-template-areas: "item01 item02 item02" "copy copy copy";
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 281px 1fr;
}
@media (max-width: 1300px) {
  .top_mw_item_left {
    gap: clamp(30px, 24.576px + 1.695vw, 50px) 11px;
    width: 55%;
    grid-template-rows: 48% 1fr;
  }
}
@media (max-width: 768px) {
  .top_mw_item_left {
    max-width: unset;
    width: 100%;
    gap: 10px 2%;
    grid-template-rows: auto;
    grid-template-areas: "item01 item02" "copy copy";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top_mw_left_pict01 {
  position: relative;
  display: grid;
  grid-area: item01;
  grid-template-rows: subgrid;
  overflow: hidden;
}

.top_mw_left_pict01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 429/281;
}

.top_mw_left_pict02 {
  position: relative;
  display: grid;
  grid-area: item02;
  grid-template-rows: subgrid;
  overflow: hidden;
}

.top_mw_left_pict02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 257/281;
}

.top_mw_item_copy {
  grid-area: copy;
}

.top_mw_item_copy_grad {
  position: relative;
  font-size: clamp(34px, 31.831px + 0.678vw, 42px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.1em;
  background: linear-gradient(15deg, #FD953A 0%, #F6660C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1300px) {
  .top_mw_item_copy_grad {
    font-size: clamp(20px, 16.203px + 1.186vw, 34px);
  }
}

.top_mw_item_copy_sub {
  position: relative;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top_mw_item_copy_sub {
    line-height: 130%;
    margin-top: 10px;
  }
}

.top_mw_item_right {
  display: grid;
  max-width: clamp(464px, 442.576px + 6.695vw, 543px);
  width: 100%;
  grid-template-areas: "item03 item03 item03" "item04 item05 item05";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 202px;
  gap: 10px;
}
@media (max-width: 1300px) {
  .top_mw_item_right {
    max-width: 44%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 768px) {
  .top_mw_item_right {
    max-width: 100%;
    grid-template-areas: "item03 item04 item05";
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.top_mw_right_pict01 {
  grid-area: item03;
}

.top_mw_right_pict01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_mw_right_pict02 {
  position: relative;
  grid-area: item04;
  border-radius: 0 0 0 15px;
  overflow: hidden;
}

.top_mw_right_pict02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 267/202;
}

.top_mw_right_pict03 {
  position: relative;
  grid-area: item05;
}

.top_mw_right_pict03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 266/202;
}

/* top - common
------------------------------ */
.top_section_title {
  position: relative;
  text-align: center;
}

.top_section_title_en {
  position: relative;
  font-size: clamp(45px, 32.797px + 3.814vw, 90px);
  font-weight: 800;
  font-family: "Red Hat Display", sans-serif;
  line-height: 100%;
  letter-spacing: 0.03em;
  background: linear-gradient(125deg, #FFA836 0%, #F76F14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1300px) {
  .top_section_title_en {
    font-size: clamp(32px, 27.119px + 1.525vw, 50px);
  }
}

.top_section_title_ja {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
}
@media (max-width: 768px) {
  .top_section_title_ja {
    line-height: 145%;
    font-size: clamp(16px, 13.831px + 0.678vw, 24px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_section_title_ja::before {
  content: "";
  position: relative;
  display: block;
  width: 23px;
  height: 10px;
  background: url(../images/top/top_section_title_deco.svg) no-repeat center center/contain;
}

/* top - top_business
------------------------------ */
.top_business {
  position: relative;
  display: block;
  padding-top: 92px;
}
@media (max-width: 768px) {
  .top_business {
    padding-top: 40px;
  }
}

.top_business_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .top_business_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.top_business_wrapper::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(180px, 143.119px + 11.525vw, 316px);
  height: clamp(180px, 143.119px + 11.525vw, 316px);
  background: #FEC92A;
  background: linear-gradient(61deg, rgb(254, 201, 42) 0%, rgb(255, 134, 35) 100%);
  border-radius: 50%;
  opacity: 0.13;
  top: -46%;
  left: -14%;
}

@media (max-width: 768px) {
  .top_business_head {
    display: contents;
  }
}

.top_business_title {
  text-align: left;
  padding-top: 13px;
}
@media (max-width: 768px) {
  .top_business_title {
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto;
    padding-top: 0;
  }
}

.top_business_title_ja {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top_business_btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .top_business_btn {
    max-width: 280px;
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 20px auto 0;
  }
}

.top_business_contents {
  position: relative;
  max-width: clamp(550px, 507.966px + 13.136vw, 705px);
  width: 100%;
}
@media (max-width: 1300px) {
  .top_business_contents {
    max-width: 57%;
  }
}
@media (max-width: 768px) {
  .top_business_contents {
    max-width: unset;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top_business_contents_text {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 220%;
  letter-spacing: 0.1em;
}
@media (max-width: 1300px) {
  .top_business_contents_text {
    font-size: 16px;
    letter-spacing: -0.01em;
  }
}

.top_business_cards {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .top_business_cards {
    margin-top: 50px;
  }
}

.top_business_card {
  position: relative;
  max-height: 460px;
  background-color: #F7F1E9;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .top_business_card {
    max-height: unset;
  }
}

.top_business_card + .top_business_card {
  margin-top: 170px;
}
@media (max-width: 1300px) {
  .top_business_card + .top_business_card {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .top_business_card + .top_business_card {
    margin-top: 20px;
  }
}

.top_business_card:nth-child(3) {
  margin-top: 220px;
}
@media (max-width: 1300px) {
  .top_business_card:nth-child(3) {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .top_business_card:nth-child(3) {
    margin-top: 20px;
  }
}

.top_business_card_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(40px, 33.22px + 2.119vw, 65px) clamp(20px, 15.932px + 1.271vw, 35px) clamp(50px, 44.576px + 1.695vw, 70px);
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
}
@media (max-width: 1300px) {
  .top_business_card_wrapper {
    padding: 8% 5%;
  }
}
@media (max-width: 768px) {
  .top_business_card_wrapper {
    padding: 8%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_business_card:nth-child(2n) .top_business_card_wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top_business_card:nth-child(2n) .top_business_card_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_business_card_contents {
  position: relative;
  display: block;
  max-width: clamp(480px, 432.542px + 14.831vw, 655px);
  width: 100%;
}
@media (max-width: 1300px) {
  .top_business_card_contents {
    max-width: 65%;
  }
}
@media (max-width: 768px) {
  .top_business_card_contents {
    max-width: unset;
    display: contents;
  }
}

.top_business_card_title {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  border-bottom: 1px solid #F99B43;
}
@media (max-width: 1300px) {
  .top_business_card_title {
    font-size: clamp(16px, 14.373px + 0.508vw, 22px);
  }
}
@media (max-width: 768px) {
  .top_business_card_title {
    width: 100%;
    line-height: 170%;
    padding-bottom: 10px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top_section_subtitle_grad {
  position: relative;
  font-size: clamp(36px, 33.831px + 0.678vw, 44px);
  background: linear-gradient(15deg, #FD953A 0%, #F6660C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1300px) {
  .top_section_subtitle_grad {
    font-size: clamp(24px, 20.746px + 1.017vw, 36px);
  }
}

.top_business_card_text {
  position: relative;
  min-height: 120px;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .top_business_card_text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
}

.top_business_card_btn {
  position: relative;
  margin-top: 46px;
}
@media (max-width: 768px) {
  .top_business_card_btn {
    margin: 0 auto;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.top_business_card_btn .btn {
  max-width: 230px;
  padding: 20px 33px 20px 36px;
}

.top_business_card_en {
  position: absolute;
  display: block;
  color: #fff;
  font-size: clamp(35px, 25.508px + 2.966vw, 70px);
  font-weight: 800;
  font-family: "Red Hat Display", sans-serif;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: right;
  right: 0;
  bottom: -10px;
}
@media (max-width: 1300px) {
  .top_business_card_en {
    font-size: clamp(20px, 15.932px + 1.271vw, 35px);
  }
}
@media (max-width: 768px) {
  .top_business_card_en {
    position: relative;
    width: 100%;
    font-size: 40px;
    text-align: right;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.top_business_card_img {
  position: relative;
  display: block;
  width: 100vw;
  max-height: 460px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top_business_card_img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top_business_card:nth-child(2n) .top_business_card_img {
  margin-right: auto;
  margin-left: calc(50% - 50vw);
  border-radius: 0 15px 15px 0;
}
@media (max-width: 768px) {
  .top_business_card:nth-child(2n) .top_business_card_img {
    margin: 0 auto;
    border-radius: 15px;
  }
}

.top_business_card:nth-child(2) .top_business_card_img {
  margin-top: 55px;
}
@media (max-width: 768px) {
  .top_business_card:nth-child(2) .top_business_card_img {
    margin: 0 auto;
  }
}

/* top - top_about
------------------------------ */
.top_about {
  position: relative;
  margin-top: 200px;
  padding-top: 120px;
  background: #2CBA7C;
  background: linear-gradient(125deg, rgb(0, 155, 99) 0%, rgb(44, 186, 124) 100%);
}
@media (min-width: 768px) {
  .top_about {
    overflow: hidden;
  }
}
@media (max-width: 1300px) {
  .top_about {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  .top_about {
    margin-top: 80px;
    padding: 60px 0;
  }
}

.top_about::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(250px, 201.186px + 15.254vw, 430px);
  height: clamp(250px, 201.186px + 15.254vw, 430px);
  background: #2CBA7C;
  background: linear-gradient(130deg, rgb(0, 155, 99) 0%, rgb(44, 186, 124) 100%);
  border-radius: 50%;
  opacity: 0.55;
  top: 30%;
  left: -5%;
}

.top_about::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 85px;
  background-color: #fff;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .top_about::after {
    height: 120px;
  }
}

.top_about_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 11.864px + 2.542vw, 50px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top_about_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.top_about_wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(280px, 228.475px + 16.102vw, 470px);
  height: clamp(280px, 228.475px + 16.102vw, 470px);
  background: #2CBA7C;
  background: linear-gradient(130deg, rgb(44, 186, 124) 0%, rgb(0, 155, 99) 100%);
  opacity: 0.62;
  border-radius: 50%;
  top: -33px;
  right: -46px;
}
@media (max-width: 768px) {
  .top_about_wrapper::after {
    width: clamp(180px, 152.881px + 8.475vw, 280px);
    height: clamp(180px, 152.881px + 8.475vw, 280px);
    right: 0;
  }
}

.top_about_pict {
  position: relative;
  display: block;
  max-width: clamp(350px, 306.61px + 13.559vw, 510px);
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .top_about_pict {
    max-width: 35%;
  }
}
@media (max-width: 768px) {
  .top_about_pict {
    max-width: unset;
    width: 90%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    z-index: 1;
  }
}

.top_about_contents {
  position: relative;
  max-width: clamp(450px, 384.915px + 20.339vw, 690px);
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_about_contents {
    display: contents;
  }
}

.top_about_title {
  text-align: left;
}
@media (max-width: 768px) {
  .top_about_title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
  }
}

.top_about_title_en {
  color: #fff;
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: inherit;
}

.top_about_title_ja {
  color: #fff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top_about_title_ja::before {
  background-image: url(../images/common/top_section_title_deco2.svg);
}

.top_about_contents_text {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 0;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .top_about_contents_text {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.top_about_desc {
  position: relative;
  margin-top: 85px;
}
@media (max-width: 768px) {
  .top_about_desc {
    margin-top: 40px;
  }
}

.top_about_desc_title {
  position: relative;
  display: block;
  padding: 26px 0;
  background-color: #fff;
  border-radius: 50px;
}

.top_about_desc_title::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 19px 0 19px;
  border-color: #fff transparent transparent transparent;
  left: 0;
  right: 0;
  bottom: -19px;
  margin: 0 auto;
}

.top_about_desc_title_wrapper {
  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;
  gap: 12px;
}
@media (max-width: 768px) {
  .top_about_desc_title_wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.top_about_desc_title_logo {
  position: relative;
  max-width: clamp(120px, 96.407px + 7.373vw, 207px);
  width: 100%;
}
@media (max-width: 768px) {
  .top_about_desc_title_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    max-width: unset;
    width: 85px;
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .top_about_desc_title_logo figcaption {
    color: #fff;
    font-size: clamp(16px, 14.373px + 0.508vw, 22px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
  }
}

.top_about_desc_title_ja {
  position: relative;
  color: #333;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .top_about_desc_title_ja {
    display: inline-block;
    font-size: clamp(16px, 14.373px + 0.508vw, 22px);
  }
}

.top_about_desc_wrapper {
  position: relative;
  margin-top: 74px;
}
@media (min-width: 768px) {
  .top_about_desc_wrapper {
    width: 1290px;
    margin-left: -25px;
  }
}
@media (max-width: 1300px) {
  .top_about_desc_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.top_about_desc_chart {
  position: relative;
  max-width: 1089px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .top_about_desc_chart {
    max-width: 490px;
  }
}

.top_about_desc_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 5.39px + 1.441vw, 27px);
}
@media (max-width: 1300px) {
  .top_about_desc_cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .top_about_desc_cards {
    grid-template-columns: 1fr;
  }
}

.top_about_desc_card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: clamp(200px, 173.966px + 8.136vw, 296px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(10px, 7.288px + 0.847vw, 20px);
  padding: 24px 16px 24px 20px;
  background-color: #fff;
  border-radius: 15px;
}
@media (max-width: 1300px) {
  .top_about_desc_card {
    padding: 8% 5%;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .top_about_desc_card {
    max-width: 296px;
  }
}

.top_about_desc_num {
  position: relative;
  max-width: clamp(30px, 26.746px + 1.017vw, 42px);
  width: 100%;
  height: clamp(30px, 26.746px + 1.017vw, 42px);
}

.top_about_desc_card_text {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 165%;
  letter-spacing: 0.05em;
}
@media (max-width: 1300px) {
  .top_about_desc_card_text {
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}

.top_about_btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  z-index: 1;
}
@media (max-width: 768px) {
  .top_about_btns {
    margin-top: 50px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.top_about_btn {
  position: relative;
  max-width: clamp(200px, 174.508px + 7.966vw, 294px);
  width: 100%;
}

.top_about_btn a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 31px 0;
  background-color: #F76F14;
  border-radius: 15px;
}
@media (max-width: 1300px) {
  .top_about_btn a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top_about_btn a {
    font-size: 13px;
    padding: 15px 0;
  }
}

.top_about_btn a::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 24px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  right: clamp(15px, 9.034px + 1.864vw, 37px);
  bottom: 30px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 1300px) {
  .top_about_btn a::after {
    width: 6px;
    height: 12px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .top_about_btn a::after {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 10px auto 0;
  }
}

@media (min-width: 768px) {
  .top_about_btn a:hover::after {
    right: clamp(10px, 4.034px + 1.864vw, 32px);
  }
}

.top_about_btn_img {
  position: relative;
  width: auto;
  max-height: 70px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top_about_btn_img {
    max-height: 35px;
  }
}

.top_about_btn_img img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top_about_btn_img img {
    height: 35px;
  }
}

.top_about_btn a span {
  position: relative;
  display: block;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top_about_btn a span {
    margin-top: 15px;
  }
}

/* top - top_products
------------------------------ */
.top_products {
  position: relative;
  padding-top: 120px;
  background: url(../images/top/top_products_decoTop.png) no-repeat top -5px right 15%/375px auto;
}
@media (max-width: 768px) {
  .top_products {
    padding-top: 60px;
    background-position: top right 0;
    background-size: 200px auto;
  }
}

.top_products_title_ja {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px;
}

.top_products_contents {
  position: relative;
  display: block;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_products_contents {
    margin-top: 20px;
  }
}

.top_products_outline {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: clamp(400px, 376.136px + 7.458vw, 488px);
  width: 100%;
  height: clamp(400px, 376.136px + 7.458vw, 488px);
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_products_outline {
    max-width: clamp(280px, 261.017px + 5.932vw, 350px);
    height: clamp(280px, 261.017px + 5.932vw, 350px);
  }
}

.top_products_outline_title_ja {
  position: relative;
  font-size: clamp(28px, 23.661px + 1.356vw, 44px);
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.1em;
  text-align: center;
  background: linear-gradient(125deg, #FFA836 0%, #F76F14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .top_products_outline_title_ja {
    font-size: clamp(20px, 17.831px + 0.678vw, 28px);
  }
}

.top_products_outline_text {
  position: relative;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .top_products_outline_text {
    font-size: 13px;
    text-align: center;
    line-height: 170%;
    margin-top: 10px;
    padding: 0 5%;
  }
}

.top_products_btn {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_products_btn {
    margin-top: 20px;
  }
}

.top_products_btn .btn {
  max-width: 230px;
  padding: 20px 33px 20px 36px;
}
@media (max-width: 768px) {
  .top_products_btn .btn {
    padding: 15px 25px 15px 20px;
  }
}

.top_products_slider_loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 20px;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .top_products_slider_loop + .top_products_slider_loop {
    margin-top: -35px;
  }
}

.top_products_slider_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.top_products_slider_loop:nth-of-type(2) .top_products_slider_items {
  margin-top: 20px;
  -webkit-animation: infinity-scroll-right 40s infinite linear 0.5s both;
          animation: infinity-scroll-right 40s infinite linear 0.5s both;
}

@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.top_products_slider_item {
  position: relative;
  display: block;
  width: 20vw;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .top_products_slider_item {
    width: 50vw;
  }
}

.top_products_slider_item img {
  border-radius: 15px;
}

/* top - top_works
------------------------------ */
.top_works {
  position: relative;
  margin-top: 130px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .top_works {
    margin-top: 80px;
    padding: 60px 0;
  }
}

.top_works_title::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(120px, 72.271px + 14.915vw, 296px);
  height: clamp(120px, 72.271px + 14.915vw, 296px);
  background: url(../images/common/circle_deco.png) no-repeat center center/contain;
  top: -230px;
  left: 30%;
}

.top_works_title_ja {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px;
}

.top_works_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 18.22px + 2.119vw, 50px) clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 70px;
}
@media (max-width: 1300px) {
  .top_works_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .top_works_items {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.top_works_item a {
  position: relative;
  display: block;
}

.top_works_item_img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 282px;
  border-radius: 15px;
  overflow: hidden;
}

.top_works_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .top_works_item a:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.top_works_item_contents {
  position: relative;
  margin-top: 20px;
}

.top_works_item_none {
  position: relative;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 70px;
}

.top_works_btn {
  position: relative;
  margin-top: 70px;
}

.top_works_btn .btn {
  max-width: 230px;
  margin: 0 auto;
  padding: 20px 33px 20px 36px;
}

/* top - top_topics
------------------------------ */
.top_topics {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .top_topics {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.top_topics_title_en {
  text-align: center;
}

.top_topics_title_ja {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.top_topics_wrapper::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(200px, 152.814px + 14.746vw, 374px);
  height: clamp(180px, 136.068px + 13.729vw, 342px);
  background: url(../images/common/circle_double_deco.png) no-repeat center center/contain;
  top: -275px;
  right: 0;
}
@media (max-width: 768px) {
  .top_topics_wrapper::before {
    width: clamp(180px, 152.881px + 8.475vw, 280px);
    height: clamp(150px, 122.881px + 8.475vw, 250px);
    top: -145px;
  }
}

.top_news, .top_event {
  position: relative;
  width: 100%;
}

.top_topics_title {
  text-align: left;
}
@media (max-width: 768px) {
  .top_topics_title {
    text-align: center;
  }
}

.top_topics_title_ja {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top_topics_lists {
  position: relative;
  margin-top: 20px;
}

.top_topics_list {
  position: relative;
  border-top: 1px solid #F99B43;
  border-bottom: 1px solid #F99B43;
  padding: 25px 0;
}

.top_topics_list_figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.top_topics_list_time {
  position: relative;
  color: #009B63;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.top_topics_list_tag {
  position: relative;
  min-width: 120px;
  color: #009B63;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .top_topics_list a:hover {
    color: #F76F14;
  }
}

.top_topics_list_title {
  position: relative;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0;
  margin-top: 20px;
}

.top_news_list_not_text {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.top_topics_btn {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .top_topics_btn {
    margin-top: 20px;
  }
}

.top_topics_btn .btn {
  max-width: 303px;
  padding: 21px 33px 22px 42px;
  margin: 0 auto;
}

/* cta
------------------------------ */
.cta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .cta_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta_method_contact,
.cta_method_recruit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cta_method_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 49px clamp(15px, 5.508px + 2.966vw, 50px) 33px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1300px) {
  .cta_method_inner {
    padding: 49px clamp(10px, 4.576px + 1.695vw, 30px) 33px;
  }
}

.cta_method_contact .cta_method_inner {
  background-color: #FFAE35;
}

@media (min-width: 768px) {
  .cta_method_contact .cta_method_inner:hover {
    background-color: #F76F14;
  }
}

.cta_method_recruit .cta_method_inner {
  background-color: #FF9429;
}

@media (min-width: 768px) {
  .cta_method_recruit .cta_method_inner:hover {
    background-color: #F76F14;
  }
}

.cta_method_inner::before {
  content: "";
  position: absolute;
  display: block;
  width: 81px;
  height: 67px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.4;
  top: 36px;
  right: 4vw;
}

.cta_method_contact .cta_method_inner::before {
  background-image: url(../images/common/cta_contact_icon.svg);
}

.cta_method_recruit .cta_method_inner::before {
  background-image: url(../images/common/cta_recruit_icon.svg);
}

.cta_method_inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 88px;
  height: 13px;
  background: url(../images/common/cta_arrow_rightWhite.svg) no-repeat center center/contain;
  right: 4vw;
  bottom: 60px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .cta_method_inner::after {
    width: 41px;
    height: 7px;
    bottom: 20px;
  }
}

@media (min-width: 768px) {
  .cta_method_inner:hover::after {
    right: 3vw;
  }
}

.cta_method_title_ja {
  position: relative;
  color: #fff;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-align: center;
}

.cta_method_outline {
  position: relative;
  color: #fff;
  font-weight: 700;
  line-height: 185%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 22px;
}

.cta_method_en {
  position: relative;
  width: 100%;
  color: #F76F14;
  font-size: clamp(50px, 36.441px + 4.237vw, 100px);
  font-weight: 800;
  font-family: "Red Hat Display", sans-serif;
  text-align: left;
  line-height: 100%;
  opacity: 0.3;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .cta_method_en {
    display: none;
  }
}

.cta_method_recruit .cta_method_en {
  opacity: 0.5;
}

/* sub
------------------------------ */
.section_main_title {
  position: relative;
  background: #2CBA7C;
  background: linear-gradient(145deg, rgb(0, 155, 99) 0%, rgb(44, 186, 124) 100%);
}

@media (max-width: 768px) {
  .section_maintitle_inner .wrapper {
    max-width: unset;
    padding: 0;
  }
}

.section_maintitle_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 30px;
}
@media (max-width: 768px) {
  .section_maintitle_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.section_maintitle_wrapper::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(150px, 112.034px + 11.864vw, 290px);
  height: clamp(150px, 112.034px + 11.864vw, 290px);
  background: #2CBA7C;
  background: linear-gradient(145deg, rgb(0, 155, 99) 0%, rgb(44, 186, 124) 100%);
  border-radius: 50%;
  top: 38px;
  left: clamp(20px, 8.61px + 3.559vw, 62px);
  opacity: 0.6;
}

.section_maintitle_wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(70px, 47.22px + 7.119vw, 154px);
  height: clamp(70px, 47.22px + 7.119vw, 154px);
  background: #2CBA7C;
  background: linear-gradient(145deg, rgb(0, 155, 99) 0%, rgb(44, 186, 124) 100%);
  border-radius: 50%;
  left: 40%;
  bottom: -16px;
  opacity: 0.6;
}

.section_maintitle_img {
  position: relative;
  max-width: 640px;
  width: 100%;
  max-height: 320px;
  border-radius: 0 0 0 15px;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 1300px) {
  .section_maintitle_img {
    display: block;
    max-width: 48%;
    height: 250px;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .section_maintitle_img {
    max-width: unset;
    max-height: unset;
    height: auto;
    border-radius: 0;
    margin: 0 auto;
  }
}

.section_maintitle_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 640/320;
}
@media (max-width: 1300px) {
  .section_maintitle_img img {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .section_maintitle_img img {
    height: auto;
    aspect-ratio: unset;
  }
}

@media (max-width: 768px) {
  .section_maintitle_box {
    position: relative;
    display: block;
    padding: 0 5%;
    z-index: 1;
  }
}

.section_maintitle_inner_en {
  position: relative;
  color: #fff;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section_maintitle_inner_en {
    font-size: 18px;
  }
}

.section_maintitle_inner_ja {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(26px, 21.661px + 1.356vw, 42px);
  font-weight: 700;
  line-height: 143%;
  letter-spacing: 0.1em;
  margin-top: 15px;
  z-index: 1;
}
@media (max-width: 768px) {
  .section_maintitle_inner_ja {
    margin-top: 10px;
  }
}

.sub_section_title {
  position: relative;
  display: block;
}

.sub_section_title::after {
  content: "";
  position: relative;
  display: block;
  width: 23px;
  height: 10px;
  background: url(../images/common/sub_section_title_deco.svg) no-repeat center center/contain;
  margin: 20px auto 0;
}

.sub_section_title_ja {
  position: relative;
  font-size: clamp(24px, 19.661px + 1.356vw, 40px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-align: center;
  background: linear-gradient(15deg, #FD953A 0%, #F6660C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .sub_section_title_ja {
    font-size: clamp(22px, 19.831px + 0.678vw, 30px);
    letter-spacing: 0.05em;
  }
}

.sub_section_subtitle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid #F99B43;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.sub_section_subtitle::before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #F76F14;
  border-radius: 50%;
}

.sub_section_subtitle_ja {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .sub_section_subtitle_ja {
    max-width: calc(100% - 30px);
    font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  }
}

.sub_section .btn {
  background-color: #F76F14;
}

@media (min-width: 768px) {
  .sub_section .btn:hover {
    background-color: #FFAE35;
  }
}

/* bread crumb
------------------------------ */
.bread_crumb {
  padding: 22px 0 30px;
}
@media (max-width: 768px) {
  .bread_crumb {
    padding: 22px 5% 20px;
  }
}

.breadcrumb_inner {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    font-size: 12px;
    line-height: 200%;
    padding: 16px 24px;
  }
}

.breadcrumb_inner br {
  display: none;
}

.breadcrumb_inner > span:not(:last-child)::after {
  content: "＞";
  position: relative;
  color: #fff;
  padding: 0 20px;
}

.breadcrumb_inner .home {
  color: #fff;
}

/* business
------------------------------ */
.business_about {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .business_about {
    margin-top: 60px;
  }
}

.business_about_subtitle {
  position: relative;
  display: block;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .business_about_subtitle {
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0.05em;
    margin-top: 30px;
  }
}

.business_about_contents {
  position: relative;
  display: block;
  margin-top: 20px;
}

.business_about_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .business_about_text {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.05em;
  }
}

.business_about_btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(10px, 5.661px + 1.356vw, 26px);
  margin-top: 60px;
}
@media (max-width: 1300px) {
  .business_about_btns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .business_about_btns {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}

.business_about_btn {
  position: relative;
  max-width: clamp(240px, 225.356px + 4.576vw, 294px);
  width: 100%;
}
@media (max-width: 768px) {
  .business_about_btn {
    max-width: 294px;
    margin: 0 auto;
  }
}

.page_internal_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #009B63;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px clamp(18px, 13.932px + 1.271vw, 33px);
  background-color: #DAEFE7;
  border-radius: 15px;
}

.page_internal_link::after {
  content: "";
  position: relative;
  display: block;
  width: 24px;
  height: 12px;
  background: url(../images/common/arrow_bottomGreen.svg) no-repeat center center/contain;
  bottom: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .page_internal_link:hover {
    color: #fff;
    background-color: #009B63;
  }
}

@media (min-width: 768px) {
  .page_internal_link:hover::after {
    background-image: url(../images/common/arrow_bottomWhite.svg);
    bottom: -5px;
  }
}

.business_wholesale {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .business_wholesale {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.business_section_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .business_section_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.business_section_pict {
  position: relative;
  display: block;
  max-width: clamp(250px, 209.322px + 12.712vw, 400px);
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .business_section_pict {
    max-width: 30%;
  }
}
@media (max-width: 768px) {
  .business_section_pict {
    max-width: 400px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.business_section_contents {
  position: relative;
  max-width: clamp(600px, 548.475px + 16.102vw, 790px);
  width: 100%;
}
@media (max-width: 768px) {
  .business_section_contents {
    max-width: unset;
    display: contents;
  }
}

.business_section_subtitle {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 1300px) {
  .business_section_subtitle {
    line-height: 145%;
  }
}
@media (max-width: 768px) {
  .business_section_subtitle {
    font-size: 20px;
    line-height: 145%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.business_section_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .business_section_text {
    line-height: 180%;
    letter-spacing: 0.07em;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
}

.business_section_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .business_section_items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .business_section_items {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
}

.business_section_item {
  position: relative;
  display: block;
  max-width: clamp(300px, 275.593px + 7.627vw, 390px);
  width: 100%;
}
@media (max-width: 768px) {
  .business_section_item {
    max-width: 390px;
    margin: 0 auto;
  }
}

.business_section_item::before {
  content: "";
  position: absolute;
  display: block;
  width: 101px;
  height: 101px;
  background: url(../images/business/business_item_title_deco.png) no-repeat center center/contain;
  top: -40px;
  left: -40px;
}
@media (max-width: 768px) {
  .business_section_item::before {
    width: 71px;
    height: 71px;
    top: -20px;
    left: -20px;
  }
}

.business_section_item_subtitle {
  position: relative;
  display: block;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #F99B43;
  padding-bottom: 24px;
  z-index: 1;
}
@media (max-width: 768px) {
  .business_section_item_subtitle {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
  }
}

.business_section_item_subtitle span {
  color: #009B63;
}

.business_section_item_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .business_section_item_text {
    line-height: 180%;
    letter-spacing: 0.1em;
    margin-top: 15px;
  }
}

.business_section_btn {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .business_section_btn {
    margin-top: 40px;
  }
}

.business_section_btn .btn {
  background-color: #009B63;
  margin: 0 auto;
}

.business_develop {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .business_develop {
    padding-top: 60px;
  }
}

.business_production {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .business_production {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.business_overseas {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 768px) {
  .business_overseas {
    padding: 60px 0;
  }
}

/* business - child
------------------------------ */
.child_about {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .child_about {
    margin-top: 60px;
  }
}

.child_about_case {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .child_about_case {
    margin-top: 30px;
  }
}

.child_about_case_title {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  .child_about_case_title {
    font-size: 20px;
    line-height: 145%;
  }
}

.child_about_case_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
  margin-top: 30px;
}
@media (max-width: 768px) {
  .child_about_case_items {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }
}

.child_about_case_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #009B63;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 165%;
  letter-spacing: 0.02em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px clamp(16px, 12.746px + 1.017vw, 28px) 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F7F1E9;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .child_about_case_item {
    font-size: 18px;
    letter-spacing: 0.05em;
    padding: 8% 5%;
  }
}

.child_about_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
  gap: clamp(20px, 9.153px + 3.39vw, 60px);
}
@media (max-width: 768px) {
  .child_about_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 50px;
  }
}

.child_about_pict {
  position: relative;
  display: block;
  max-width: clamp(300px, 272.881px + 8.475vw, 400px);
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .child_about_pict {
    max-width: 400px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.child_about_contents {
  position: relative;
  max-width: clamp(600px, 548.475px + 16.102vw, 790px);
}
@media (max-width: 768px) {
  .child_about_contents {
    display: contents;
    max-width: unset;
  }
}

.child_about_subtitle {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .child_about_subtitle {
    font-size: 20px;
    line-height: 145%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.child_about_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .child_about_text {
    line-height: 200%;
    letter-spacing: 0.07em;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.child_about_categories {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .child_about_categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .child_about_categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px 2%;
    margin-top: 30px;
  }
}

.child_about_category {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px clamp(10px, 7.559px + 0.763vw, 19px);
  background-color: #FFD453;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .child_about_category {
    font-size: 14px;
    padding: 8% 4%;
  }
}

.business_child_largebtn {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .business_child_largebtn {
    margin-top: 30px;
  }
}

.largebtn {
  position: relative;
  display: block;
  max-width: 864px;
  width: 100%;
  color: #fff;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto;
  padding: 50px 0;
  border-radius: 100px;
  background-color: #FFAE35;
}
@media (max-width: 768px) {
  .largebtn {
    font-size: 20px;
    line-height: 145%;
    padding: 20px 5%;
  }
}

.largebtn::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(39px, 33.576px + 1.695vw, 59px);
  height: clamp(29px, 23.576px + 1.695vw, 49px);
  background: url(../images/common/cta_contact_icon.svg) no-repeat center center/contain;
  top: 37px;
  right: clamp(60px, 43.186px + 5.254vw, 122px);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .largebtn::before {
    top: 10px;
    right: 30px;
  }
}

.largebtn::after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(30px, 22.136px + 2.458vw, 59px);
  height: clamp(8px, 7.186px + 0.254vw, 11px);
  background: url(../images/common/cta_arrow_rightWhite.svg) no-repeat center center/contain;
  top: 0;
  right: clamp(40px, 29.153px + 3.39vw, 80px);
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .largebtn:hover {
    background-color: #F76F14;
  }
}

@media (min-width: 768px) {
  .largebtn:hover::after {
    right: clamp(30px, 19.153px + 3.39vw, 70px);
  }
}

.largebtn span {
  position: relative;
  display: block;
  z-index: 1;
}

.largebtn_en {
  position: absolute;
  display: block;
  color: #F76F14;
  font-size: clamp(35px, 25.508px + 2.966vw, 70px);
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  line-height: 100%;
  letter-spacing: 0.03em;
  opacity: 0.3;
  left: clamp(20px, 7.525px + 3.898vw, 66px);
  bottom: 15px;
}

.child_features {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .child_features {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.child_features_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 9.153px + 3.39vw, 60px);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .child_features_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
    gap: 20px;
  }
}

.child_features_wrapper_pict {
  position: relative;
  display: block;
  max-width: clamp(350px, 309.322px + 12.712vw, 500px);
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .child_features_wrapper_pict {
    max-width: 500px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.child_features_wrapper_contents {
  position: relative;
  max-width: clamp(550px, 509.322px + 12.712vw, 700px);
  width: 100%;
}
@media (max-width: 768px) {
  .child_features_wrapper_contents {
    display: contents;
    max-width: unset;
  }
}

.child_features_wrapper_contents p {
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .child_features_wrapper_contents p {
    line-height: 190%;
    letter-spacing: 0.07em;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.child_features_group {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .child_features_group {
    margin-top: 40px;
  }
}

.child_features_subtitle::before {
  border-color: #009B63;
}

.child_features_items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
  margin-top: 60px;
}
@media (max-width: 1300px) {
  .child_features_items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .child_features_items {
    grid-template-columns: 1fr 1fr;
    gap: 10px 2%;
    margin-top: 30px;
  }
}

.child_features_item {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.child_features_item_title {
  position: relative;
  display: block;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding: 25px 0;
  background-color: #FFD453;
}
@media (max-width: 768px) {
  .child_features_item_title {
    padding: 16px 0;
  }
}

.child_point {
  position: relative;
  display: block;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .child_point {
    margin-top: 60px;
  }
}

.child_point_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(30px, 21.864px + 2.542vw, 60px);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .child_point_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}

.child_point_wrapper_img {
  position: relative;
  display: block;
  max-width: clamp(320px, 281.492px + 12.034vw, 462px);
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .child_point_wrapper_img {
    max-width: 30%;
  }
}
@media (max-width: 768px) {
  .child_point_wrapper_img {
    max-width: 462px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.child_point_wrapper_contents {
  position: relative;
  display: block;
  max-width: clamp(550px, 509.322px + 12.712vw, 700px);
  width: 100%;
}
@media (max-width: 768px) {
  .child_point_wrapper_contents {
    display: contents;
    max-width: unset;
  }
}

.child_point_wrapper_contents p {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .child_point_wrapper_contents p {
    line-height: 190%;
    letter-spacing: 0.07em;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.child_point_wrapper_contents a {
  color: #F76F14;
}

.child_point_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .child_point_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .child_point_items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.child_point_item {
  position: relative;
  border-radius: 15px;
  background-color: #F7F1E9;
  overflow: hidden;
}

.child_point_item_contents {
  position: relative;
  display: block;
  padding: 30px clamp(15px, 10.932px + 1.271vw, 30px) 36px;
}
@media (max-width: 768px) {
  .child_point_item_contents {
    padding: 7%;
  }
}

.child_point_item_subtitle {
  position: relative;
  display: block;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding-bottom: 26px;
  border-bottom: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .child_point_item_subtitle {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

.child_point_item_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .child_point_item_text {
    line-height: 190%;
    letter-spacing: 0.07em;
    margin-top: 10px;
  }
}

.child_case {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .child_case {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.business_child_case_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 70px;
}
@media (max-width: 768px) {
  .business_child_case_items {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }
}

.business_child_case_item a {
  position: relative;
  display: block;
}

.product_archive_item_img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 282px;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product_archive_item_img {
    margin: 0 auto;
  }
}

.product_archive_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 390/282;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .business_child_case_item a:hover .product_archive_item_img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.business_child_case_item_contents {
  position: relative;
  margin-top: 20px;
}

.business_child_case_item_tag {
  position: relative;
  display: block;
  max-width: 120px;
  width: 100%;
  color: #009B63;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding: 9px 0 10px;
  background-color: #fff;
  border-radius: 30px;
}

.business_child_case_item_title {
  position: relative;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.child_other {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #FBF8F4;
}
@media (max-width: 768px) {
  .child_other {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.child_other_btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .child_other_btns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .child_other_btns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.child_other_btn_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #009B63;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #DAEFE7;
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
  border-radius: 15px;
  overflow: hidden;
}

.child_other_btn_wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 12px;
  background: url(../images/common/arrow_bottomGreen.svg) no-repeat center center/contain;
  top: 0;
  right: clamp(15px, 10.932px + 1.271vw, 30px);
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .child_other_btn_wrapper::after {
    width: 12px;
    height: 6px;
  }
}

@media (min-width: 768px) {
  .child_other_btn_wrapper:hover {
    color: #fff;
    background-color: #009B63;
  }
}

@media (min-width: 768px) {
  .child_other_btn_wrapper:hover::after {
    background-image: url(../images/common/arrow_bottomWhite.svg);
    right: clamp(10px, 5.932px + 1.271vw, 25px);
  }
}

.child_other_btn_pict {
  position: relative;
  display: block;
  max-width: 160px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .child_other_btn_pict {
    max-width: 120px;
  }
}

.child_other_btn_pict img {
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .child_other_btn_wrapper:hover .child_other_btn_pict img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.child_contact {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 768px) {
  .child_contact {
    padding: 60px 0;
  }
}

.child_contact .sub_section_subtitle::before {
  border-color: #009B63;
}

.child_contact_outline {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .child_contact_outline {
    line-height: 190%;
    letter-spacing: 0.07em;
    margin-top: 30px;
  }
}

.child_contact .contact_form_title {
  padding: 0 clamp(15px, 10.932px + 1.271vw, 30px);
  background-color: #FFF5E9;
}
@media (max-width: 768px) {
  .child_contact .contact_form_title {
    padding: 5%;
    border-bottom: 1px solid #F99B43;
  }
}

@media (max-width: 768px) {
  .child_contact .contact_form_title.empty {
    padding: 0;
    border-bottom: 0;
  }
}

.child_contact .contact_form_input {
  border-left: 0;
}

.child_contact .contact_form_figure {
  margin-top: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #F99B43;
}

.child_contact .contact_form_figure dl {
  gap: 0;
}

.child_contact .contact_form_input.form_radio {
  padding-top: 28px;
}

.child_contact .form_guest .form_row {
  margin-top: 0;
}

.child_contact .form_guest .contact_form_figure {
  gap: 0;
}

.child_contact .form_guest .contact_form_figure + .contact_form_figure {
  margin-top: 0;
}

.child_contact .form_guest .contact_form_input {
  padding: 15px 30px;
}
@media (max-width: 768px) {
  .child_contact .form_guest .contact_form_input {
    padding: 5% 0;
  }
}

.child_contact .contact_form_input_group_title {
  color: #F76F14;
}

.child_contact textarea,
.child_contact .contact_form_input input {
  border-radius: 0;
}

.contact_form_postalcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.contact_form_postalcode input[type=text] {
  max-width: 206px;
}

.child_contact .form_privacy {
  background-color: #FFF5E9;
  border-radius: 0;
}

.child_contact .form_privacy_title {
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
}

.child_contact .form_privacy_subtitle {
  font-size: 16px;
  line-height: 250%;
  margin-top: 0;
}

.child_contact .form_checkbox_parts::before {
  background-color: #FFF5E9;
  border-radius: 0;
}

.child_point_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 8.492px + 2.034vw, 39px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .child_point_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .child_point_cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }
}

.child_point_card_subtitle {
  position: relative;
  display: block;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  padding: 20px 0 21px;
  border-bottom: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .child_point_card_subtitle {
    padding: 20px 10px 15px;
  }
}

.child_point_card_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .child_point_card_text {
    line-height: 190%;
    letter-spacing: 0.07em;
    margin-top: 15px;
  }
}

.child_point_subtitle {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .child_point_subtitle {
    font-size: 20px;
    line-height: 170%;
  }
}

.child_point_wrapper_contents_text {
  position: relative;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .child_point_wrapper_contents_text {
    margin-top: 0;
  }
}

.child_point_text {
  position: relative;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.child_point_text::before {
  content: "●";
  color: #F76F14;
}

.child_point_text:nth-child(2),
.child_point_wrapper_contents_text p:last-child {
  margin-top: 1em;
}

/* business - sweets
------------------------------ */
.sweets_about_wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .sweets_about_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sweets_features_wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .sweets_features_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* business - develop
------------------------------ */
.child_features_item {
  background-color: #fff;
}

.child_features_item_subtitle {
  line-height: 155%;
}

.develop_point {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .develop_point {
    margin-top: 40px;
  }
}

.develop_point_flow_items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 6.746px + 1.017vw, 22px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .develop_point_flow_items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .develop_point_flow_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 40px;
  }
}

.develop_point_flow_item {
  position: relative;
  padding: 26px clamp(10px, 8.644px + 0.424vw, 15px);
  border-radius: 15px;
  background-color: #FFD453;
}

.develop_point_flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  width: 43px;
  height: 36px;
  background: url(../images/common/arrow_thickGreen.svg) no-repeat center center/contain;
  top: 32px;
  right: -32px;
  z-index: 1;
}

@media (max-width: 768px) {
  .develop_point_flow_item:nth-child(2n)::after {
    -webkit-transform: rotate(125deg);
            transform: rotate(125deg);
    top: auto;
    left: -25px;
    right: auto;
    bottom: -25px;
  }
}

.develop_point_flow_num {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  color: #009B63;
  font-size: 26px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
  padding: 12px 0;
  background-color: #fff;
}

.develop_point_flow_title {
  position: relative;
  display: block;
  color: #009B63;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 20px;
}

.develop_point_flow_text {
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0;
  margin-top: 15px;
}

/* business - product
------------------------------ */
.product_about .child_about_case_item:nth-last-child(2),
.product_about .child_about_case_item:last-child {
  letter-spacing: 0;
}

.product_point_group {
  position: relative;
  margin-top: 80px;
}

.child_point_subtitle::before {
  border-color: #009B63;
}

.product_point_cards {
  grid-template-columns: repeat(4, 1fr);
}

.product_point_card .child_point_card_subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 155%;
  letter-spacing: 0.09em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 21px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 768px) {
  .product_point_card .child_point_card_subtitle {
    min-height: unset;
    padding: 15px 0 12px;
  }
}

/* business - overseas
------------------------------ */
.overseas_about .child_about_case_item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.overseas_about .child_about_case_item:first-child,
.overseas_about .child_about_case_item:last-child {
  letter-spacing: 0;
}

.overseas_features_wrapper_pict {
  max-width: clamp(450px, 382.203px + 21.186vw, 700px);
}

.overseas_features_wrapper .child_features_wrapper_contents {
  max-width: clamp(350px, 312.034px + 11.864vw, 490px);
}

.overseas_point_item .child_point_item_subtitle {
  line-height: 153%;
}

.overseas_point_wrapper .child_point_subtitle_ja {
  position: relative;
  font-size: clamp(20px, 17.831px + 0.678vw, 28px);
  line-height: 100%;
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F99B43;
}

.overseas_point_wrapper .child_point_wrapper_contents p:last-child {
  margin-top: 20px;
}

/* wholesale
------------------------------ */
.wholesale_philosophy {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .wholesale_philosophy {
    padding-top: 60px;
  }
}

.wholesale_philosophy_outline {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1026px;
  width: 100%;
  margin: 70px auto 0;
  padding: 32px 0 34px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F7F1E9;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .wholesale_philosophy_outline {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px 20%;
  }
}

.wholesale_philosophy_outline::before,
.wholesale_philosophy_outline::after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(32px, 25.492px + 2.034vw, 56px);
  height: clamp(31px, 26.661px + 1.356vw, 47px);
  background-image: url(../images/wholesale/wholesale_philosophy_decoL.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: -17px;
  left: clamp(20px, 11.864px + 2.542vw, 50px);
}

.wholesale_philosophy_outline::after {
  background-image: url(../images/wholesale/wholesale_philosophy_decoR.svg);
  top: auto;
  left: auto;
  right: clamp(18px, 10.949px + 2.203vw, 44px);
  bottom: -16px;
}

.wholesale_philosophy_grade {
  position: relative;
  color: #F76F14;
  font-size: clamp(24px, 19.661px + 1.356vw, 40px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .wholesale_philosophy_grade {
    line-height: 145%;
  }
}

.wholesale_philosophy_small {
  position: relative;
  font-size: clamp(16px, 11.661px + 1.356vw, 32px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .wholesale_philosophy_small {
    line-height: 145%;
  }
}

.wholesale_philosophy_text {
  position: relative;
  font-size: clamp(24px, 19.661px + 1.356vw, 40px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .wholesale_philosophy_text {
    line-height: 145%;
  }
}

.wholesale_greeting {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .wholesale_greeting {
    padding-top: 60px;
  }
}

.wholesale_greeting_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 920px;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
  margin: 70px auto 0;
}
@media (max-width: 768px) {
  .wholesale_greeting_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.wholesale_greeting_pict {
  position: relative;
  max-width: 350px;
  width: 100%;
}
@media (max-width: 768px) {
  .wholesale_greeting_pict {
    max-width: 280px;
    margin: 0 auto;
  }
}

.wholesale_greeting_pict img {
  border-radius: 15px;
}

.wholesale_greeting_pict figcaption {
  position: relative;
  font-size: clamp(13px, 12.186px + 0.254vw, 16px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  text-align: right;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .wholesale_greeting_pict figcaption {
    text-align: center;
  }
}

.wholesale_greeting_pict figcaption span {
  font-size: clamp(18px, 14.746px + 1.017vw, 30px);
  line-height: 150%;
  background: linear-gradient(15deg, #FD953A 0%, #F6660C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wholesale_greeting_text {
  position: relative;
  width: 100%;
}

.wholesale_greeting_text p {
  font-weight: 700;
  line-height: 250%;
  letter-spacing: 0;
}

.wholesale_greeting_text p + p {
  margin-top: 1em;
}

.wholesale_greeting_btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 13.763px + 1.949vw, 43px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
@media (max-width: 1300px) {
  .wholesale_greeting_btns {
    gap: clamp(10px, 5.932px + 1.271vw, 25px);
  }
}
@media (max-width: 768px) {
  .wholesale_greeting_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}

.wholesale_greeting_btn {
  position: relative;
  max-width: 280px;
  width: 100%;
}
@media (max-width: 768px) {
  .wholesale_greeting_btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .wholesale_greeting_btn .btn {
    margin: 0 auto;
  }
}

.wholesale_actnow {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .wholesale_actnow {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.wholesale_actnow_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(281px, 1fr));
  gap: clamp(20px, 14.305px + 1.78vw, 41px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .wholesale_actnow_items {
    max-width: 578px;
    gap: clamp(10px, 5.932px + 1.271vw, 25px);
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .wholesale_actnow_items {
    max-width: 312px;
    margin-top: 30px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .wholesale_actnow_item {
    position: relative;
    max-width: 150px;
  }
}

.wholesale_actnow_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 281px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFD453;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .wholesale_actnow_item_inner {
    min-height: 150px;
  }
}

.wholesale_actnow_item_inner::after {
  content: "";
  position: relative;
  display: block;
  width: 65px;
  height: 12px;
  background: url(../images/common/arrow_rightGreen.svg) no-repeat center center/contain;
  right: 0;
  margin: 32px auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .wholesale_actnow_item_inner::after {
    width: 40px;
    height: 8px;
    margin-top: 14px;
  }
}

@media (min-width: 768px) {
  .wholesale_actnow_item_inner:hover {
    color: #fff;
    background-color: #F76F14;
  }
}

@media (min-width: 768px) {
  .wholesale_actnow_item_inner:hover::after {
    background-image: url(../images/common/cta_arrow_rightWhite.svg);
    right: -10px;
  }
}

.wholesale_actnow_item_en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40px;
  color: #fff;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .wholesale_actnow_item_en {
    min-height: 34px;
  }
}

.wholesale_actnow_item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 66px;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .wholesale_actnow_item_title {
    min-height: 45px;
    font-size: 16px;
  }
}

.wholesale_actnow_btn {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .wholesale_actnow_btn {
    margin-top: 30px;
  }
}

.wholesale_actnow_btn .btn {
  margin: 0 auto;
}

.wholesale_access {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .wholesale_access {
    padding-top: 60px;
  }
}

.wholesale_access_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(30px, 21.864px + 2.542vw, 60px);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .wholesale_access_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}

.wholesale_access_figure {
  position: relative;
  margin-top: 40px;
}

.wholesale_access_figure dl {
  position: relative;
  padding-left: 36px;
}

.wholesale_access_figure dl dt {
  position: relative;
  display: block;
  color: #F76F14;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.wholesale_access_figure dl dt::before {
  content: "";
  position: absolute;
  display: block;
  width: 27px;
  height: 23px;
  background: url(../images/common/icon_trainOrange.svg) no-repeat center center/contain;
  top: 0;
  left: -36px;
}

.wholesale_access_figure dl dt:not(:first-child) {
  margin-top: 1.5em;
}

.wholesale_access_figure dl dd {
  position: relative;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 1em;
}
@media (max-width: 1300px) {
  .wholesale_access_figure dl dd {
    line-height: 145%;
  }
}
@media (max-width: 768px) {
  .wholesale_access_figure dl dd {
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}

.wholesale_access_figure dl dd p {
  line-height: 145%;
}

.wholesale_access_figure dl dd p + p {
  margin-top: 1em;
}

.wholesale_access_pict {
  position: relative;
  max-width: clamp(250px, 209.322px + 12.712vw, 400px);
  width: 100%;
}
@media (max-width: 768px) {
  .wholesale_access_pict {
    max-width: 400px;
    margin: 0 auto;
  }
}

.wholesale_access_pict figure {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.wholesale_access_ggmap {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .wholesale_access_ggmap {
    margin-top: 20px;
  }
}

.wholesale_access_outline {
  position: relative;
  padding-top: 100px;
}

.wholesale_access_outline_wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 768px) {
  .wholesale_access_outline_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.wholesale_access_contents p {
  position: relative;
  display: block;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
}

.wholesale_access_contents p + p {
  margin-top: 1.5em;
}

.wholesale_access_slider_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 40px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .wholesale_access_slider_wrapper {
    margin-top: 30px;
  }
}

.wholesale_access_slider_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
@media (max-width: 768px) {
  .wholesale_access_slider_items {
    gap: 20px;
  }
}

.wholesale_access_slider_item {
  position: relative;
  display: block;
  width: 25vw;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .wholesale_access_slider_item {
    width: 50vw;
  }
}

.wholesale_cta01 {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .wholesale_cta01 {
    margin-top: 60px;
  }
}

/* wholesale - profile
------------------------------ */
.profile_outline {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .profile_outline {
    margin-top: 60px;
  }
}

.profile_outline_figure dl {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-top: 1px solid #F99B43;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .profile_outline_figure dl {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.profile_outline_figure dl dt {
  position: relative;
  color: #F76F14;
  line-height: 100%;
  letter-spacing: 0;
  padding: 28px 30px 24px;
  border-bottom: 1px solid #F99B43;
  background-color: #FFF5E9;
}
@media (max-width: 768px) {
  .profile_outline_figure dl dt {
    letter-spacing: 0.05em;
    padding: 5%;
  }
}

.profile_outline_figure dl dd {
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  padding: 20px 30px 19px;
  border-bottom: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .profile_outline_figure dl dd {
    letter-spacing: 0.05em;
    padding: 5%;
  }
}

.profile_office_group + .profile_office_group {
  position: relative;
  margin-top: 80px;
}

.profile_office {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .profile_office {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.profile_office_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .profile_office_items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.profile_office_item {
  position: relative;
  padding: 32px 31px 30px;
  border-radius: 15px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .profile_office_item {
    padding: 8% 5%;
  }
}

.profile_office_item p:nth-child(2) {
  margin-top: 18px;
}

.profile_office_name {
  position: relative;
  color: #F76F14;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.profile_office_address {
  position: relative;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .profile_office_address {
    line-height: 170%;
    letter-spacing: 0.05em;
  }
}

.profile_office_tel_title {
  font-weight: 700;
}

.profile_related {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .profile_related {
    margin-top: 60px;
  }
}

.profile_related_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .profile_related_items {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 20px;
  }
}

.profile_related_item {
  position: relative;
  padding: 30px;
  background-color: #F7F1E9;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .profile_related_item {
    padding: 5%;
  }
}

.profile_related_item_title {
  position: relative;
  display: block;
  color: #F76F14;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 195%;
  letter-spacing: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #F76F14;
}
@media (max-width: 768px) {
  .profile_related_item_title {
    letter-spacing: 0.05em;
    padding: 0 0 10px 5px;
  }
}

.profile_related_item_title_small {
  position: relative;
  display: block;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  line-height: 195%;
}
@media (max-width: 768px) {
  .profile_related_item_title_small {
    line-height: 160%;
  }
}

.profile_related_item_link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .profile_related_item_link {
    word-break: break-all;
    line-height: 145%;
    letter-spacing: 0.05em;
    margin-top: 12px;
  }
}

@media (min-width: 768px) {
  .profile_related_item_link:hover {
    color: #F76F14;
  }
}

.profile_history {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .profile_history {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.profile_history_group {
  position: relative;
  padding: 40px clamp(20px, 14.576px + 1.695vw, 40px) 70px clamp(25px, 18.22px + 2.119vw, 50px);
  border-radius: 15px;
  background-color: #fff;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .profile_history_group {
    padding: 8% 20px;
  }
}

.profile_history_group::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 91%;
  background-color: #F99B43;
  top: 83px;
  left: clamp(30px, 21.864px + 2.542vw, 60px);
  z-index: 1;
}
@media (max-width: 768px) {
  .profile_history_group::before {
    top: 44.5%;
    left: 30px;
    height: 53.5%;
  }
}

.profile_history_group_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px;
}
@media (max-width: 768px) {
  .profile_history_group_wrapper {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 1;
    gap: 30px;
  }
}

.profile_history_group_img {
  position: relative;
  display: block;
  max-width: clamp(200px, 159.322px + 12.712vw, 350px);
  width: 100%;
}
@media (max-width: 768px) {
  .profile_history_group_img {
    max-width: 350px;
    margin: 0 auto;
  }
}

.profile_history_group_img figure + figure {
  margin-top: 20px;
}

.profile_history_group_img figure img {
  position: relative;
  display: block;
  border-radius: 15px;
}

.profile_history_group_img figcaption {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .profile_history_group_img figcaption {
    text-align: center;
    margin-top: 10px;
  }
}

.profile_history_group_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.profile_history_group_title::before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #F76F14;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

.profile_history_group_title_ja {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.profile_history_group_title_year {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  line-height: 140%;
  padding: 14px clamp(9px, 6.559px + 0.763vw, 18px) 9px;
  background-color: #F76F14;
  border-radius: 15px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .profile_history_group_title_year {
    margin-left: 10px;
  }
}

.profile_history_group_title_year span {
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
}

.profile_history_group_figure {
  position: relative;
  padding: 30px 0 0 50px;
}
@media (max-width: 768px) {
  .profile_history_group_figure {
    padding: 20px 0 0 40px;
  }
}

.profile_history_group_figure dl dt {
  position: relative;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-family: "Red Hat Display", sans-serif;
  line-height: 100%;
  letter-spacing: 0.03em;
}

.profile_history_group_figure dl dt:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .profile_history_group_figure dl dt:not(:first-child) {
    margin-top: 30px;
  }
}

.profile_history_group_figure dl dt span {
  color: #F76F14;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  line-height: 100%;
  letter-spacing: 0.03em;
}

.profile_history_group_figure dl dt::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #F76F14;
  border-radius: 50%;
  top: 11px;
  left: -47px;
  z-index: 1;
}
@media (max-width: 768px) {
  .profile_history_group_figure dl dt::before {
    top: 0;
    left: -37px;
  }
}

.profile_history_group_figure dl dd {
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .profile_history_group_figure dl dd {
    line-height: 170%;
    letter-spacing: 0.05em;
    margin-top: 5px;
  }
}

/* products - archive
------------------------------ */
.products_archive_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 11.864px + 2.542vw, 50px);
  margin-top: 120px;
}
@media (max-width: 1300px) {
  .products_archive_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .products_archive_wrapper {
    gap: 50px;
    margin-top: 60px;
  }
}

.products_archive_group + .products_archive_group {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .products_archive_group + .products_archive_group {
    margin-top: 40px;
  }
}

.products_archive_group .sub_section_subtitle {
  border-bottom: 0;
  padding-bottom: 0;
}

.products_archive_group .sub_section_subtitle::before {
  border-color: #009B63;
}

@media (max-width: 768px) {
  .products_archive_contents {
    width: 100%;
  }
}

.products_brand_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 10.661px + 1.356vw, 31px);
  margin-top: 40px;
}
@media (max-width: 768px) {
  .products_brand_lists {
    grid-template-columns: 1fr 1fr;
    gap: 10px 2%;
    margin-top: 20px;
  }
}

.products_brand_list {
  position: relative;
  max-width: 280px;
  width: 100%;
  height: 144px;
}
@media (max-width: 768px) {
  .products_brand_list {
    max-width: unset;
    height: 100px;
  }
}

.products_brand_list a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  border: 1px solid #CECECE;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products_brand_list a img {
  width: auto;
  max-height: 97px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .products_brand_list a img {
    max-height: 60px;
  }
}

.products_archive_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  gap: clamp(25px, 18.22px + 2.119vw, 50px) clamp(10px, 5.119px + 1.525vw, 28px);
}
@media (max-width: 1300px) {
  .products_archive_items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products_archive_items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
}

.products_archive_item {
  position: relative;
  max-width: 204px;
  width: 100%;
}
@media (max-width: 768px) {
  .products_archive_item {
    max-width: 315px;
    margin: 0 auto;
  }
}

.products_archive_item a {
  position: relative;
  display: block;
}

.products_archive_item_img {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.products_archive_item_img img {
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .products_archive_item a:hover .products_archive_item_img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.products_archive_item_title {
  position: relative;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 700;
  line-height: 165%;
  letter-spacing: 0;
  margin-top: 20px;
}

/* products - single
------------------------------ */
.products_single_title {
  position: relative;
  margin-top: 140px;
}
@media (max-width: 768px) {
  .products_single_title {
    margin-top: 60px;
  }
}

.products_single_title_ja {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .products_single_title_ja {
    font-size: 20px;
  }
}

.products_single_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
  margin-top: 54px;
}
@media (max-width: 1300px) {
  .products_single_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .products_single_wrapper {
    gap: 20px;
    margin-top: 30px;
  }
}

.products_single_contents_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
}
@media (max-width: 768px) {
  .products_single_contents_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.products_single_img {
  position: relative;
  max-width: 460px;
  width: 100%;
}
@media (max-width: 768px) {
  .products_single_img {
    max-width: 315px;
    margin: 0 auto;
  }
}

.products_single_main_pic_swiper_container {
  position: relative;
  display: block;
  max-height: 460px;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .products_single_main_pic_swiper_container {
    max-width: 315px;
    margin: 0 auto;
  }
}

.products_single_sub_pic_swiper_container {
  position: relative;
  margin-top: 14px;
}

.products_single_sub_pic_slide {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.products_single_sub_pic_swiper_container .slick-list {
  margin: 0 -13px;
}

.products_single_sub_pic_swiper_container .slick-slide {
  cursor: pointer;
  margin: 0 13px;
}

.products_single_outline_title {
  position: relative;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 165%;
  letter-spacing: 0;
}

.products_single_outline_figure {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .products_single_outline_figure {
    margin-top: 20px;
  }
}

.products_single_outline_figure dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px 0;
  place-items: baseline;
}

.products_single_outline_figure dl dt {
  line-height: 100%;
  letter-spacing: 0;
}

.products_single_tag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: clamp(150px, 133.729px + 5.085vw, 210px);
  color: #009B63;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11px;
  border: 1px solid #009B63;
  border-radius: 10px;
}

.products_single_raw {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .products_single_raw {
    margin-top: 50px;
  }
}

.products_single_subtitle {
  padding-bottom: 0;
  border-bottom: 0;
}

.products_single_subtitle::before {
  border-color: #009B63;
}

.products_single_raw_text {
  position: relative;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .products_single_raw_text {
    line-height: 190%;
    letter-spacing: 0.07em;
    margin-top: 10px;
  }
}

.products_single_raw_figure dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #F99B43;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .products_single_raw_figure dl {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.products_single_raw_figure dl dt {
  color: #F76F14;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  padding: 26px clamp(15px, 10.932px + 1.271vw, 30px);
  background-color: #F7F1E9;
  border-top: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .products_single_raw_figure dl dt {
    letter-spacing: 0.07em;
    padding: 5%;
  }
}

.products_single_raw_figure dl dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 215%;
  letter-spacing: 0;
  padding: 19px 10px 25px clamp(15px, 10.932px + 1.271vw, 30px);
  border-top: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .products_single_raw_figure dl dd {
    line-height: 190%;
    letter-spacing: 0.07em;
    padding: 5%;
  }
}

.products_single_raw_btns {
  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;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
  margin-top: 70px;
}
@media (max-width: 768px) {
  .products_single_raw_btns {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.products_single_raw_btn {
  position: relative;
  max-width: 280px;
  width: 100%;
}
@media (max-width: 768px) {
  .products_single_raw_btn {
    margin: 0 auto;
  }
}

.products_foot_cta {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .products_foot_cta {
    margin-top: 60px;
  }
}

/* news - archive
------------------------------ */
.news_archive {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .news_archive {
    margin-top: 60px;
  }
}

.news_archive_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .news_archive_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.news_archive_item {
  position: relative;
  padding: clamp(15px, 10.932px + 1.271vw, 30px);
  background-color: #F7F1E9;
  border-radius: 15px;
}

.news_archive_item + .news_archive_item {
  margin-top: 40px;
}

.news_archive_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(10px, 4.576px + 1.695vw, 30px);
}
@media (max-width: 768px) {
  .news_archive_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.news_archive_group {
  position: relative;
  max-width: clamp(650px, 579.492px + 22.034vw, 910px);
  width: 100%;
}

.news_archive_item_img {
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news_archive_item_img {
    max-width: 350px;
    margin: 0 auto;
  }
}

.news_archive_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}

.news_archive_date {
  position: relative;
  color: #F76F14;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.news_archive_cat {
  position: relative;
  min-width: 127px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 7px 0;
  border-radius: 30px;
  background-color: #F76F14;
}

.news_archive_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F99B43;
}

.news_archive_title::before {
  content: "";
  position: relative;
  display: block;
  width: clamp(15px, 13.644px + 0.424vw, 20px);
  height: clamp(15px, 13.644px + 0.424vw, 20px);
  border: 4px solid #F76F14;
  border-radius: 50%;
}

.news_archive_item_title {
  position: relative;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.1em;
}

.news_archive_text {
  position: relative;
  min-height: 60px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  margin-top: 23px;
}

.news_archive_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 23px;
}
@media (max-width: 768px) {
  .news_archive_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.news_archive_btn .btn {
  max-width: 230px;
  padding: 20px 33px 20px 36px;
}

.news_cta01 {
  margin-top: 120px;
}

/* pagenavi */
.pagenavi {
  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;
  gap: 10px;
  margin-top: 50px;
}

.pagenavi span {
  position: relative;
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding-top: 7px;
}

.pagenavi a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding-top: 7px;
  background-color: rgba(77, 139, 240, 0.2);
}

@media (min-width: 768px) {
  .pagenavi a:hover {
    color: #fff;
  }
}

/* news - single
------------------------------ */
.news_single_main {
  position: relative;
  max-width: 880px;
  width: 100%;
}

.news_single_content {
  position: relative;
  margin-top: 40px;
}

.news_single_content p {
  position: relative;
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 0;
}

.news_archive_img {
  position: relative;
  display: inline-block;
  max-width: 754px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 45px;
}

.news_archive_img img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.news_single_content table {
  width: 100%;
  table-layout: fixed;
}
@media (max-width: 768px) {
  .news_single_content table {
    table-layout: auto;
  }
}

.news_single_content table tr td {
  padding: 20px;
  border: 1px solid #333;
}
@media (max-width: 768px) {
  .news_single_content table tr td {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .news_single_content table tr td:first-child {
    white-space: nowrap;
  }
}

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

.news_archive_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 120px;
  padding-top: 50px;
  gap: clamp(20px, -0.339px + 6.356vw, 95px);
  border-top: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .news_archive_buttons {
    gap: 10px;
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.news_archive_button {
  position: relative;
  max-width: 230px;
  width: 100%;
}

.news_archive_button a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 33px 21px 36px;
  background-color: #009B63;
  border-radius: 50px;
}

.news_archive_button_previous a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.news_archive_button a::after {
  content: "";
  position: relative;
  display: block;
  width: 7px;
  height: 14px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .news_archive_button a::after {
    width: 12px;
    height: 12px;
  }
}

.news_archive_button_previous a::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: auto;
  left: 0;
}

.news_archive_button_all a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news_archive_button_all a::after {
  display: none;
}

@media (min-width: 768px) {
  .news_archive_button a:hover {
    background-color: #F76F14;
  }
}

@media (min-width: 768px) {
  .news_archive_button a:hover::after {
    right: -5px;
  }
}

.news_archive_button_previous a:hover::after {
  left: -5px;
  right: auto;
}

/* aside
------------------------------ */
.section_side {
  position: relative;
  max-width: clamp(200px, 172.881px + 8.475vw, 300px);
  width: 100%;
}
@media (max-width: 1300px) {
  .section_side {
    max-width: 300px;
    margin: 0 auto;
  }
}

.section_side_title {
  position: relative;
  color: #fff;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  padding: 26px clamp(10px, 5.932px + 1.271vw, 25px);
  background-color: #F76F14;
  border-radius: 15px 15px 0 0;
}

.products_section_side .section_side_title {
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  padding: 24px clamp(15px, 10.932px + 1.271vw, 30px);
  border-radius: 15px;
}

.section_side_list {
  position: relative;
  display: block;
}

.section_side_list:not(:nth-last-child(2))::after {
  content: "";
  position: absolute;
  display: block;
  width: 87%;
  height: 1px;
  background-color: #F99B43;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.section_side_list_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  padding: 30px clamp(10px, 7.288px + 0.847vw, 20px) 26px;
  background-color: #F7F1E9;
}

.section_side_list_link::before {
  content: "";
  position: relative;
  display: block;
  width: clamp(10px, 7.288px + 0.847vw, 20px);
  height: clamp(10px, 7.288px + 0.847vw, 20px);
  border: 4px solid #F76F14;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .section_side_list_link::before {
    width: 20px;
    height: 20px;
  }
}

.section_side_list_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 14px;
  background: url(../images/common/arrow_rightOrange.svg) no-repeat center center/contain;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .section_side_list_link:hover {
    color: #fff;
    background-color: #F76F14;
  }
}

@media (min-width: 768px) {
  .section_side_list_link:hover::before {
    border-color: #fff;
  }
}

@media (min-width: 768px) {
  .section_side_list_link:hover::after {
    background-image: url(../images/common/arrow_rightWhite.svg);
  }
}

.section_side_category_list_link {
  position: relative;
  display: block;
  color: #F76F14;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  padding: 24px clamp(15px, 10.932px + 1.271vw, 30px);
  border-bottom: 1px solid #F99B43;
}

.section_side_category_list_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 14px;
  background: url(../images/common/arrow_rightOrange.svg) no-repeat center center/contain;
  top: 0;
  right: clamp(15px, 10.932px + 1.271vw, 30px);
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .section_side_category_list_link:hover {
    background-color: #F7F1E9;
  }
}

@media (min-width: 768px) {
  .section_side_category_list_link:hover::after {
    right: clamp(10px, 5.932px + 1.271vw, 25px);
  }
}

.news_archive_wrapper .section_side_list:last-child {
  display: none;
}

/* contact
------------------------------ */
.contact_tel {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .contact_tel {
    margin-top: 60px;
  }
}

.contact_tel_outline {
  position: relative;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .contact_tel_outline {
    line-height: 170%;
    letter-spacing: 0.05em;
    margin-top: 30px;
  }
}

.contact_tel_figure {
  position: relative;
  max-width: clamp(400px, 358.508px + 12.966vw, 553px);
  width: 100%;
  margin: 40px auto 0;
  padding: clamp(21px, 15.034px + 1.864vw, 43px) clamp(20px, 14.576px + 1.695vw, 40px);
  background-color: #FFF5E9;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .contact_tel_figure {
    margin-top: 20px;
  }
}

.contact_tel_number a {
  position: relative;
  display: block;
  max-width: 324px;
  width: 100%;
  margin: 0 auto;
}

.contact_tel_hour {
  position: relative;
  display: block;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  border-top: 1px solid #F99B43;
  margin-top: 22px;
  padding-top: 22px;
}

.contact_mail {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .contact_mail {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.contact_mail_outline {
  position: relative;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .contact_mail_outline {
    letter-spacing: 0.05em;
    margin-top: 30px;
  }
}

.form_info {
  position: relative;
  margin-top: 40px;
}

.contact_form_figure {
  position: relative;
  display: block;
  margin-top: 50px;
  padding: clamp(13px, 9.475px + 1.102vw, 26px) clamp(15px, 9.847px + 1.61vw, 34px);
  border-radius: 15px;
  background-color: #fff;
}

.contact_form_figure dl {
  display: grid;
  grid-template-columns: 367px 1fr;
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
}
@media (max-width: 1300px) {
  .contact_form_figure dl {
    grid-template-columns: 280px 1fr;
  }
}
@media (max-width: 768px) {
  .contact_form_figure dl {
    grid-template-columns: 1fr;
  }
}

.contact_form_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #F76F14;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact_form_title_must {
  position: relative;
  max-width: 70px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
  padding: 7px 20px;
  background-color: #F76F14;
  border-radius: 30px;
}

.form_radio_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #F99B43;
}

.contact_form_input {
  padding: 18px 28px;
  border-left: 1px solid #F99B43;
}
@media (max-width: 768px) {
  .contact_form_input {
    padding: 0;
    border-left: 0;
  }
}

.contact_form_input.form_radio {
  padding: 0 28px;
}
@media (max-width: 768px) {
  .contact_form_input.form_radio {
    padding: 0;
  }
}

.form_guest .form_row {
  position: relative;
  margin-top: 50px;
}

.form_guest .contact_form_figure {
  display: grid;
  grid-template-columns: 362px 1fr;
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
}
@media (max-width: 1300px) {
  .form_guest .contact_form_figure {
    grid-template-columns: 280px 1fr;
  }
}
@media (max-width: 768px) {
  .form_guest .contact_form_figure {
    grid-template-columns: 1fr;
  }
}

.form_guest .contact_form_figure + .contact_form_figure {
  margin-top: 10px;
}

.form_radio_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
}

.form_radio_button label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  line-height: 100%;
  letter-spacing: 0.08em;
}

.form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  max-width: 100%;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  background-color: #FFF5E9 !important;
  outline: none;
  border-radius: 50%;
  padding: 0;
}

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
  -webkit-transition: all ease-out 250ms;
  transition: all ease-out 250ms;
}

.form_radio_button input[type=radio]:checked:before {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  background-color: #F76F14;
}

.contact_form_input_group {
  position: relative;
}
@media (max-width: 768px) {
  .contact_form_input_group {
    padding: 5% 0;
  }
}

@media (min-width: 768px) {
  #toggle_materials {
    padding-top: 40px;
  }
}

.contact_form_input_group_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .contact_form_input_group_wrapper {
    gap: 10px;
  }
}

.contact_form_input_group:nth-of-type(2),
.contact_form_input_group_wrapper:nth-of-type(3),
.contact_form_input_group_wrapper:nth-of-type(4),
.contact_form_input_group_wrapper:nth-of-type(5),
.contact_form_input_group_wrapper:nth-of-type(6) {
  margin-top: 40px;
}

.contact_form_input_group_title {
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .contact_form_input_group_title {
    line-height: 145%;
    letter-spacing: 0.03em;
  }
}

.contact_form_input_group .contact_form_input {
  padding: 18px 0;
  border-left: 0;
}

.contact_form_input_group .contact_form_input p {
  position: relative;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

textarea {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 200px;
  background-color: #FFF5E9 !important;
  padding: 15px;
  margin-top: 30px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  textarea {
    min-height: 180px;
    margin-top: 10px;
  }
}

.contact_form_input input {
  width: 100%;
  height: 50px;
  background-color: #FFF5E9 !important;
  padding: 0 10px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .contact_form_input input {
    height: 40px;
  }
}

.contact_form_input_name input {
  max-width: 440px;
}

.contact_form_input select {
  width: 100%;
  color: #F76F14;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  padding: 15px 20px 16px;
  background-color: #FFF5E9;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact_form_input select {
    font-size: 16px;
  }
}

.contact_form_input .contact_form_figure_group select {
  min-width: 200px;
}

.contact_form_select {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin-top: 30px;
}

.contact_form_select::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/common/select_after_arrowOrange.svg) no-repeat center center/contain;
  top: 0;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.form_guest {
  position: relative;
  margin-top: 54px;
}

.form_guest .contact_form_input {
  padding: 0 28px;
}
@media (max-width: 768px) {
  .form_guest .contact_form_input {
    padding: 0;
  }
}

.form_privacy {
  position: relative;
  margin-top: 60px;
  padding: 30px clamp(23px, 18.39px + 1.441vw, 40px);
  background-color: #fff;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .form_privacy {
    margin-top: 30px;
  }
}

.form_privacy_content {
  position: relative;
  display: block;
  max-height: 190px;
  overflow: hidden scroll;
}

.form_privacy_content::-webkit-scrollbar {
  width: 14px;
}

.form_privacy_content::-webkit-scrollbar-thumb {
  background: #F76F14;
  border-radius: 30px;
}

.form_privacy_content::-webkit-scrollbar-track {
  background: #F7F1E9;
  border-radius: 30px;
}

.form_privacy_title {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 100%;
}

.form_privacy_text {
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  margin-top: 20px;
}

.form_privacy_subtitle {
  position: relative;
  display: block;
  color: #F76F14;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.form_check_text {
  position: relative;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 40px;
}

.form_checkbox_confirmation {
  position: relative;
  text-align: center;
}

.form_checkbox_label.none {
  display: none;
}

.form_checkbox_label {
  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;
  margin: 60px auto 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .form_checkbox_label {
    margin-top: 40px;
  }
}

.form_checkbox_parts {
  position: relative;
  display: inline-block;
  padding-left: 43px;
}
@media (max-width: 768px) {
  .form_checkbox_parts {
    padding-left: 26px;
  }
}

.form_checkbox_parts::before {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
  border: none;
  background-color: #fff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .form_checkbox_parts::before {
    width: 20px;
    height: 20px;
  }
}

.form_checkbox_input:checked + .form_checkbox_parts::after {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 18px;
  top: 1px;
  left: 8px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-right: 3px solid #F76F14;
  border-bottom: 3px solid #F76F14;
}
@media (max-width: 768px) {
  .form_checkbox_input:checked + .form_checkbox_parts::after {
    width: 11px;
    height: 17px;
    top: 2px;
    left: 8px;
    border-right-width: 4px;
    border-bottom-width: 4px;
  }
}

.form_btn {
  position: relative;
  margin-top: 50px;
}

.form_btn .btn {
  background-color: #009B63;
}

/* thanks
------------------------------ */
.contact_thanks_contents p {
  position: relative;
  display: block;
  text-align: center;
  line-height: 220%;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

.contact_thanks_btn {
  margin-top: 50px;
}

.thanks_cta01 {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .thanks_cta01 {
    margin-top: 60px;
  }
}

/* 404
------------------------------ */
.not_found {
  position: relative;
  padding: 120px 0;
}

.not_found_text {
  position: relative;
  font-size: clamp(16px, 14.373px + 0.508vw, 22px);
  line-height: 180%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 30px;
}

.not_found_btn {
  margin-top: 30px;
}

/* footer
------------------------------ */
.footer {
  margin-top: 110px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 50px;
  }
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 1300px) {
  .footer_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_logo {
  position: relative;
  max-width: 207px;
  width: 100%;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .footer_logo {
    margin: 0 auto;
  }
}

.footer_company_name {
  position: relative;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0;
  margin-top: 23px;
}
@media (max-width: 768px) {
  .footer_company_name {
    text-align: center;
  }
}

.footer_info {
  position: relative;
}
@media (max-width: 1300px) {
  .footer_info {
    text-align: center;
  }
}

.footer_info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 215%;
  letter-spacing: 0;
}

.footer_nav {
  max-width: 884px;
  width: 100%;
}

.footer_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 11.864px + 2.542vw, 50px);
}
@media (max-width: 768px) {
  .footer_lists {
    display: none;
  }
}

.footer_list a {
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .footer_list a {
    font-size: 14px;
    white-space: normal;
  }
}

.footer_list_parent {
  position: relative;
  display: block;
  line-height: 265%;
  padding-left: 1em;
  text-indent: -1em;
}

.footer_list_parent::before {
  content: "●";
  color: #009B63;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer_list_parent a:hover {
    color: #009B63;
  }
}

.footer_list_child_item {
  position: relative;
  line-height: 200%;
  padding-left: 2.5em;
}
@media (max-width: 1300px) {
  .footer_list_child_item {
    padding-left: 1.5em;
  }
}

.footer_list_child_item a {
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer_list_child_item a:hover {
    color: #009B63;
  }
}

.footer_copyright {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 100%;
  text-align: center;
  margin-top: 120px;
  padding: 35px 0 36px;
  background-color: #F7F1E9;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 30px;
    padding-bottom: 180px;
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: -5px 0 8px rgba(0, 0, 0, 0.5);
          box-shadow: -5px 0 8px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 768px) {
  .foot_menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_recruit {
  width: 50%;
}

.foot_menu_recruit a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 145%;
  font-weight: 700;
  padding: 10px 0 15px;
  background-color: #FF9429;
}

.foot_menu_recruit a::before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_recruitWhite.svg) no-repeat center center/contain;
  margin: 0 auto 5px;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 10px 0 15px;
  background-color: #FFAE35;
}

.foot_menu_mail a::before {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  background: url(../images/common/icon_mailWhite.svg) no-repeat center center/contain;
  margin: 0 auto 5px;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  background-image: url(../images/common/arrow_bottomWhite.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  background-color: #F76F14;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 50;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 768px) {
  .page_top {
    right: 5%;
    bottom: 105px;
  }
}
@media (max-width: 768px) {
  .page_top {
    bottom: 80px;
  }
}

@media (min-width: 768px) {
  .page_top:hover {
    opacity: 0.7;
  }
}

/* foot_menu
------------------------------ */
.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_tel a {
  position: relative;
}